/*
*
*
Theme Name: destination
Theme URI: designcrazzy.com/demo/destination_wp
Description: Wordpress Theme, best suited for personal blogs, News and Blogs
Author: Mazik Themes
Author URI: https://www.designcrazzy.com
Version: 1.0
License: Themeforest Licence
License URI: http://themeforest.net/licenses
Text Domain: destination
Tags: custom-header, custom-menu, editor-style, featured-images, post-formats, sticky-post, translation-ready
*
*
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
  #Reset
  #Basic Styles
  #Site Styles
  #Typography
  #Links
  #Lists
  #Images
  #Buttons
  #Forms
  #Misc
  #Home Slider
  #Latest Blog Home
  #Footer
  #Blog Page
  #Pagniation
  #Sidebar
  #Blog Detail Page
  #Audio

*/


/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */

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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

iframe {
    width: 100%;
    height: 450px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    display: block;
    clear: both;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

p:empty,
a:empty { 
    display:none !important; 
}

.widget:empty {
    display: none !important;
}

embed, img {
    max-width: 100%;
    height: auto;
    border: none;
}


/* #Basic Styles
================================================== */

body {
    background: #f1f1f1;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

button,
select,
input {
    font-family: 'Montserrat', sans-serif;
}


/* #Typography
================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #101010;
    font-weight: bold;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: inherit;
}

h1 {
    font-size: 70px;
    line-height: 90px;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
}

h4 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
}

h5 {
    font-size: 17px;
    line-height: 24px;
}

h6 {
    font-size: 14px;
    line-height: 21px;
}

p {
    margin: 0 0 20px 0;
}

p img {
    margin: 0;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

a:hover {
    text-decoration:none;
}


/*  Blockquotes  */

blockquote,
blockquote p {
    font-size: 18px;
    line-height: 30px;
    color: #999;
    font-style: italic;
    font-weight: 300;
}

blockquote {
    padding: 20px 20px 20px 20px;
    border: none;
    border-left: 6px solid #ddd;
    border-radius: 1px;
    margin-bottom: 20px;
    margin-top: 20px;
}

blockquote cite {
    display: block;
    font-size: 12px;
    color: #555;
}

blockquote cite:before {
    content: "\2014 \0020";
}

blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited {
    color: #555;
}

hr {
    border: solid #ddd;
    border-width: 1px 0 0;
    clear: both;
    margin: 10px 0 30px;
    height: 0;
}


/* #Links
================================================== */

a {
    transition: color 0.2s ease-out;
}

a,
a:visited,
a:before,
a:after {
    color: #000;
    text-decoration: none;
    outline: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

a:hover,
a:focus {
    color: #000;
    text-decoration: underline;
}

p a,
p a:visited {
    line-height: inherit;
}


/* #Lists
================================================== */

ul,
ol {
    margin-bottom: 20px;
}

ul {
    list-style: none outside;
}

ol {
    list-style: decimal;
}

ol,
ul.square,
ul.circle,
ul.disc {
    margin-left: 30px;
}

ul.square {
    list-style: square outside;
}

ul.circle {
    list-style: circle outside;
}

ul.disc {
    list-style: disc outside;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 4px 0 5px 30px;
    font-size: 90%;
}

ul ul li,
ul ol li,
ol ol li,
ol ul li {
    margin-bottom: 6px;
}

li {
    line-height: 18px;
    margin-bottom: 12px;
}

ul.large li {
    line-height: 21px;
}

li p {
    line-height: 21px;
}


/* #Images
================================================== */

img {
    max-width: 100%;
    height: auto;
}


/* #Buttons
================================================== */

a.btn,
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    background: #000;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 45px;
    padding: 0 20px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    letter-spacing: 1px;
    /* min-width: 170px; */
    box-sizing: border-box;
    position: relative;
    border: none;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    color: #fff;
    background: #333;
}

.btn:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    color: #fff;
    background: #000;
}

.btn.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
}

.btn.btn-primary:hover {
    background: #000;
    border: none;
}


/* Fix for odd Mozilla border & padding issues */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.btn-lg {
    font-size: 12px;
    padding: 16px 44px 16px 34px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.btn-secondary {
    background-color: #DC143C;
    color: #fff;
    border-bottom: 2px solid #fff;
}


/* #Forms
================================================== */

form {
    margin-bottom: 20px;
}

fieldset {
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea,
select {
    border: 1px solid #dedede;
    padding: 6px 29px;
    outline: none;
    font-size: 16px;
    color: #52626f;
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: block;
    margin-bottom: 30px;
    background: #fff;
    height: 48px;
    box-sizing: border-box;
}

select {
    padding: 0;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
    border: 1px solid #aaa;
    color: #444;
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

textarea {
    min-height: 150px;
}

label,
legend {
    display: block;
    font-weight: bold;
    font-size: 13px;
}

select {
    width: 220px;
}

input[type="checkbox"] {
    display: inline;
}

label span,
legend span {
    font-weight: normal;
    font-size: 13px;
    color: #444;
}

.section {
    width: 100%;
    padding: 150px 0;
    clear: both;
}

.container,
.container .row {
    padding: 0;
}

.btn {
    font-family: 'Montserrat', sans-serif;
}


/*Header bar*/

.header-bar {
    background: #260a0a;
    padding: 8px 0px;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    position: relative;
}

.entry-header {
    float: left;
    width: 100%;
}


/*social-icon*/

.header-bar .social-icons {
    float: left;
    margin: 3px 0 0 0;
}

.header-bar .social-icons li {
    float: left;
    margin-bottom: 0;
    margin-right: 10px;
    width: 32px;
    text-align: center;
}

.header-bar .social-icons i {
    color: #000;
    font-size: 30px;
    line-height: 30px;
}

.header-bar .social-icons i:hover {
    color: #666;
}

.header-bar .social-icons a {
    color: #fff;
}


/*search-bar*/

.header-bar input[type="text"].search-bar {
    float: right;
    width: 255px;
    margin: 0;
    height: 35px;
    border: 1px solid #f1f1f1;
    padding: 6px 15px;
    padding-top: 10px;
    background: #f1f1f1;
    color: #666;
    font-size: 12px;
    border-radius: 0;
    font-weight: 600;
}




.header-bar ::-webkit-input-placeholder {
    color: #111111;
    font-size: 18px;
}



.header-bar input[type="text"].search-bar:focus {

}



/*search-icon*/

.header-bar .search-outer {
    position: relative;
    float: right;
    margin: 0;
}

.header-bar .search-icon {
    position: absolute;
    top: 0;
    right: 3px;
    height: 100%;
    width: 34px;
    min-width: 34px;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 34px;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    float: right;
}

.header-bar .search-icon:hover {
    background: transparent;
}

.header-bar .search-icon i {
    color: #000;
    font-size: 16px;
    line-height: 30px;
}

.header-bar .search-icon i:hover {
    color: #000;
}

.header-bar .search-icon a {
    color: #fff;
}


/*Masonary Layout*/

.masonry-row {
    width: 100%;
    margin: 0;
}

.masonry {
    margin-bottom: 15px;
}


/* clearfix */

.masonry-row:after {
    content: '';
    display: block;
    clear: both;
}

.masonry .mb-post-outer {
    margin-bottom: 20px!important;
}


/* Header */

.header-bg {
    background-color: #f1f1f1;
    padding: 70px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo-outer {
    display: table;
    width: 100%;
    text-align: center;
}

.logo {
    text-align: center;
    margin-bottom: 0;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.logo-outer h1 {
    margin-bottom: 0;
    line-height: 50px;
}

.logo-outer a {
    display: inline-block;
}

.logo-outer img {
    display: block;
}


/* navigation menu*/

.navbar {
    border-radius: 0;
}

.navbar-default {
    background: #000;
    margin-bottom: 0;
    border-width: 0px 0 0 0;
}

.navbar-nav {
    text-align: center;
    float: none;
}

.navbar-default .navbar-nav>li>a {
    color: #000;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li:hover>a {
    color: #fff;
    background: #000;
}

.navbar-nav>li>.sub-menu {
    border-radius: 0;
    border: none;
    padding: 5px;
    position: absolute;
    background: #FFFFFF;
    min-width: 130px;
    text-align: left;
    left: -30px;
    top: 50px;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    display: none;
    z-index: 100;
}

ul.sub-menu {
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.navbar-toggle {
    background: transparent;
    border: none;
    border-radius: 0;
    margin-right: 15px;
    min-width: 36px;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background: #000;
}

.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
    background: #fff;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.nav-section {
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
}

.nav-section .nav li {
    display: inline-block;
    margin-right: 0px;
    margin-bottom: 0;
    position: relative;
    float: none;
}

.nav-section .nav li a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    display: block;
    -o-transition: .25s;
    -ms-transition: .25s;
    -moz-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
}

.nav-section .nav li a:hover {
    color: #fff;
}

.nav-section .nav>li.menu-item-has-children>a:after {
    font-family: FontAwesome;
    content: "\f107";
    margin-left: 7px;
    color: #999;
    font-size: 13px;
}


/* Dropdown **********/

.nav-section .nav .sub-menu,
.nav-section .nav .children {
    background-color: #fff;
    display: none;
    padding: 0;
    position: absolute;
    margin-top: 0;
    left: 0;
    z-index: 99999;
}

.nav-section ul.nav ul a,
.nav-section .nav ul ul a {
    color: #000;
    margin: 0;
    font-size: 12px;
    letter-spacing: 0px;
    padding: 12px 15px;
    min-width: 175px;
    line-height: 20px;
    -o-transition: .25s;
    -ms-transition: .25s;
    -moz-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    font-weight: 600;
}

.nav-section ul.nav ul li,
.nav-section .nav ul ul li {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.nav-section ul.nav ul a:hover,
.nav-section .nav ul ul a:hover {
    color: #fff;
    background: #000;
    text-decoration: none;
}

.nav-section ul.nav li:hover>ul,
.nav-section .nav ul li:hover>ul {
    display: block;
    margin-left: 0;
}

.nav-section .nav .sub-menu ul,
.nav-section .nav .children ul {
    left: 100%;
    top: 0;
}


/* Home Slider */

.owl-carousel {
    float: left;
}

.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.home-slider {
    float: left;
    width: 100%;
    overflow: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.home-slider .item {
    position: relative;
    margin: 0px;
}

.home-slider .item img {
    display: block;
    width: 100%;
    height: auto;
}

.home-slider .typo {
    position: absolute;
    left: 90px;
    top: 294px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 70px;
    line-height: 70px;
    letter-spacing: 3.6px;
    z-index: 10;
}

.home-slider .typo h2 {
    color: #fff;
    font-size: 70px;
}

.home-slider .typo .highlighted {
    background: #000;
    padding: 0 10px;
}

.home-slider:hover .owl-nav .owl-next {
    right: 15px;
}

.dc-slider-container .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-slider .typo-wrapper {
    position: relative;
}

.home-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.home-slider .owl-nav i {
    color: #000;
}



.home-slider .owl-nav .owl-prev {
    left: -100px;
}

.home-slider .owl-nav .owl-next {
    right: -100px;
}

.home-slider:hover .owl-nav .owl-prev {
    left: 15px;
}

.home-slider:hover .owl-nav .owl-next {
    right: 15px;
}

.home-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9999999999;
}

.home-slider .owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50px;
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
    background: transparent;
    border: 2px solid #fff;
}

.home-slider .owl-dot.active,
.home-slider .owl-dot:hover {
    width: 14px;
    height: 14px;
    background: #fff;
}

.home-slider .item {
    background-repeat: no-repeat;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
}

.home-slider .container {
    position: relative;
    z-index: 1;
}

.slider-content {
    padding: 170px 0 170px 0;
}

.owl-height {
    height: auto !important;
}


/*slider2post*/

.home-slider .container.slider2-post {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-top: 0;
    padding-left: 20px;
}

.home-slider .container.slider2-post .mb-post-title a {
    color: #fff;
}

.home-slider .container.slider2-post .mb-post-date time {
    color: #ddd;
}

.home-slider .container.slider2-post .mb-blog-post-text {
    color: #fff;
}

.slider2-post .mb-post-content {
    opacity: 0;
}

.slider2-post {
    width: 100%;
    float: left;
    padding-left: 20px;
    opacity: 1;
    -webkit-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform: translateY(60px);
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.25s ease-out 0s;
}

.owl-carousel2 .item:hover .slider2-post {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.owl-carousel2 .item:hover .slider2-post .mb-post-content {
    opacity: 1;
}


.slider-content .category {
    margin-bottom: 10px;
    display: inline-block;
}

.slider-content .category a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    color: #999;
}

.slider-content .category a:hover {
    text-decoration: none;
    color: #000;
}

.slider-content .heading-area {
    background: #fff;
    padding: 50px;
    max-width: 50%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-content .heading-area>div {
    float: left;
    width: 100%;
}

.slider-content .post-categories {
    margin-left: 0;
}

.slider-content .post-categories li {
    display: inline-block;
    margin-bottom: 0;
}

.slider-content .post-categories li a {
    display: block;
    border-radius: 3px;
    padding: 0px 8px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 24px;
}

.slider-content .post-categories li a:hover {
    text-decoration: none;
}

.slider-content p {
    margin-bottom: 15px;
    color: #999;
}

.slider-content h2,
.slider-content h2 a {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
}

.slider-content h2 a:hover {
    text-decoration: none;
    color: #000;
}

.bg {
    background-color: #fff;
    padding-top: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.banner-text {
    padding-top: 10px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding-bottom: 20px;
}

.text-center {
    text-align: center;
}

.share {
    float: right;
}

.share a {
    margin: 0 8px;
    transition: .3s;
}


/*Slider Style 2 */

.slider-style2 .slider-post-list {
    height: 500px;
    float: left;
    width: 100%;
    margin-top: 40px;
}

.slider-style2 .slider-post {
    width: 65%;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
}

.slider-style2 .slider-post:nth-child(2),
.slider-style2 .slider-post:nth-child(3) {
    width: 35%;
    height: 250px;
}

.slider-style2 .slider-post .slider-content {
    padding: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    float: left;
    height: 100%;
}

.slider4 .slider-item .slider-content h2,
.slider4 .slider-item .slider-content h2 a {
    color: #fff;
    text-align: left;
    font-size: 30px;
    clear: both;
    margin-bottom: 0px;
}

.slider4 .slider-item .heading-area {
    background: transparent;
    width: 100%;
    max-width: 100%;
    float: left;
    padding: 20px;
    padding-left: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
}

.slider-style2 .slider-post .post-categories {
    margin: 0;
    padding: 0;
}

.slider-style2 .slider-post .post-categories a {
    padding: 4px 0px;
    color: #fff;
    font-size: 11px;
}

.slider-style2 .slider-post .post-categories a:hover {
    color: #fff;
    text-decoration: none;
}

.slider-style2 .slider-post .post-categories li {
    float: left;
    margin-right: 5px;
}

.slider-style2 .md-post-meta {
    text-align: left;
    color: #fff;
}

.slider-style2 .md-post-meta .comment-count a {
    color: #fff;
}

.slider-style2 .md-post-meta .comment-count a:hover {
    color: #eee;
}

.item-video {
    margin-top:35px;
}


/*SLIDER STYLE 3*/

#owl-carousel2 .slider-content .heading-area {
    background: transparent;
    padding-top: 180px;
    max-width: 100%;
    margin: 0 auto;
}

#owl-carousel2 .slider-content .heading-area a {
    font-weight: 400;
    color: #fff;
}

#owl-carousel2 .slider-content {
    padding: 32px 0 60px 0;
    width: 100%;
    height: 490px;
}

#owl-carousel2 .slider-content p {
    margin-bottom: 15px;
    color: #fff;
    width: 100%;
}

#owl-carousel2 .slider-content h2 a {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 36px;
    font-weight: normal;
    line-height: 40px;
    font-style: italic;
    width: 50%;
}

#owl-carousel2 .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9999999999;
}

.read-more {
    margin-top: 10px;
    font-size: 14px;
    float: left;
    width: 100%;
}

.read-more a {
    border-radius: 100px;
    padding: 8px 20px;
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
    display: inline-block;
}

.read-more a:hover {
    color: #000;
    background-color: #fff;
}


/*Gallery Post Design*/

.owl-carousel {
    overflow: hidden;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.blog-post-thumb img {
    width: 100%;
    height: auto;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-carousel .owl-nav i {
    color: #4e4e4e;
}


.owl-carousel .owl-nav .owl-prev {
    left: -100px;
    display: block !important;
}

.owl-carousel .owl-nav .owl-next {
    right: -100px;
    display: block !important;
}

.owl-carousel:hover .owl-nav .owl-prev {
    left: 15px;
}

.owl-carousel:hover .owl-nav .owl-next {
    right: 15px;
}

.owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9999999999;
}

.owl-carousel .owl-dot {
    display: inline-block;
    background: transparent;
}

.blog-post-gallery-image a {
    display: block;
}

.blog-post-gallery-wrapper {
    margin-bottom: 30px;
}


/* page title */

.page-title-section {
    padding: 50px 0 0;
    float: left;
    width: 100%;
    width: 100%;
    text-align: center;
}

.page-title-section span {
    font-size: 24px;
    font-weight: 300;
    color: #666;
}

.page-title-section strong {
    font-size: 36px;
    font-weight: 700;
    color: #4e4e4e;
}


/* Blog Post Home */

.featured-post-section {
    width: 100%;
    float: left;
    border-width: 1px;
    border-style: solid;
    padding: 20px;
    border-color: #eee;
    background-color: #fff;
    padding-top: 80px;
}

.featured-post-section-like {
    width: 100%;
    float: left;
    margin-top: 12px;
}

.mb-section-heading-like {
    font-weight: normal;
    text-align: left;
    color: #000;
    font-weight: normal;
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 12px;
    font-weight: 300;
}

.mb-post-outer {
    float: left;
    width: 100%;
}

.mb-post {
    width: 100%;
    float: left;
}

.mb-post .entry-header {
    float: left;
    width: 100%;
    padding:0 30px;
}

.mb-post .mb-post-container {
    float: left;
    width: 100%;
    padding: 0px 30px 0 30px;
}

.big-post .mb-post .mb-post-container {
    margin-top:30px;
}

.home1 .mb-post-media {
    overflow: hidden;
    position: relative;
    float: left;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.home4 .mb-post-media {
    overflow: hidden;
}

.home4 .big-post .mb-post-media {
    overflow: hidden;
}

.home1 .mb-post-media img {
    position: relative;
    float: left;
}

.home2 .media {
    margin-bottom: 30px;
}

.mb-post-media img {
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
}

.mb-post-media img:hover {
    opacity: 0.8;
}

.mb-post-media {
    width: 100%;
    float: left;
    overflow: hidden;
}

.single .mb-post .entry-header {
    padding: 0px 30px 0 30px;
}

.single .mb-post-media {
    margin-bottom: 20px;
}

.single-main {
    background: #fff;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    padding-bottom: 30px;
}

.prev-next {
    clear:both;
    margin: 30px 0;
    float: left;
    width:100%;
    padding: 0 30px;
}

.next-prev-postlink {
    display: flex;
}

.next-prev-postlink > div {
    position: relative;
    -ms-flex: 1 0 0px;
    flex: 1; 
}

.next-prev-postlink .np-meta {
    font-size:12px;
    text-transform: uppercase;
    color: #999;
}

.next-prev-postlink a.meta { 
    display: block;
    position: absolute;
    padding: 0 10px 0 128px;
    transition: margin 0.2s linear;
}

.next-prev-postlink a.meta:hover {
    text-decoration: none;
    color:#333;
}

.next-prev-postlink h4 {
    font-size: 14px;
    line-height: 1.2;
    margin: 0 0 0;
    transition: all 0.2s ease-out;
}

.next-prev-postlink a.post-thumb {
    padding:0;
    width: 115px;
    float:left;
    margin-right:10px;
}

.page-template-about .mb-post-media {
    margin-bottom: 30px;
}

.comment-single,
.share-single {
    width: 100%;
    float: left;
    padding: 0 30px;
}

.home1 .big-post .mb-post-media {
    max-height: 500px;
    overflow: hidden;
}

.mb-post-media a,
.mb-post-media a img {
    float: left;
    width: 100%;
    display: block;
}

.mb-post-container,
.mb-post-content {
    width: 100%;
    float: left;
}

.mb-post-container {
    margin-bottom: 30px;
}

.featured-post-section .mb-post-container {
    margin-bottom: 26px;
}

.mb-section-heading {
    text-align: center;
    color: #000;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 50px;
}

.mb-section-heading a {
    color: #4e4e4e;
}

.del {
    margin-bottom: 50px;
}

.mb-post-date {
    font-size: 14px;
    text-transform: uppercase;
    float: left;
    width: 100%;
    text-align: center;
}

.mb-post-category {
    text-align: center;
    font-size: 11px;
    margin-top: 30px;
}

.mb-post-category .category {
    display: inline-block;
}

.mb-post-category a {
    color: #fff;
    text-transform: uppercase;
    display: block;
    border-radius: 3px;
    background-color: #e13044;
    padding: 0px 8px;
    font-size: 11px;
}


.mb-post-category a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #000;
    text-decoration: none;
}

.md-post-meta {
    color: #999;
    width: 100%;
    margin: 0;
    font-size: 11px;
    margin-bottom: 10px;
    clear: both;
    text-align: center;
}

.md-post-meta .time,
.md-post-meta .author-name,
.md-post-meta .comment-count,
.md-post-meta .comment-count a {
    position: relative;
    padding-right: 14px;
    color: #999;
}


.md-post-meta .time:after,
.md-post-meta .author-name:after,
.md-post-meta .comment-count:after {
    width: 2px;
    height: 10px;
    background: #ccc;
    margin-top: 7px;
    margin-left: 6px;
    position: absolute;
    content: '';
}

.md-post-meta span:last-child {
    padding-right: 0;
}

.md-post-meta span:last-child:after {
    width: 0;
}

.mb-post-date .time {
    color: #999;
}

.mb-post-date-center {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

h3.col-3-post,
h3.col-3-post a {
    text-align: center;
    font-size: 24px !important;
    line-height: 40px;
    color: #000;
    font-weight: 300;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.mb-post-title {
    margin-top: 5px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 7px;
    color: #4e4e4e;
    text-transform: none;
    float: left;
    width: 100%;
    text-align: center;
    letter-spacing: -1px;
}

.mb-post-title a,
.mb-post-title a:active {
    color: #000;
}

.mb-post-title a:hover {
    text-decoration: none;
    color: #333;
}

.mb-blog-post-text {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
    color:#666;
}

.mb-blog-post-text p {
    margin-bottom: 20px;
}

.home1 .mb-blog-post-text {
    min-height: 50px;
}

.mb-read-more {
    margin-top: 10px;
    font-size: 14px;
    float: left;
    width: 100%;
}

.mb-read-more a {
    border-radius: 100px;
    padding: 10px 20px;
    color: #000;
    background-color: transparent;
    border: 1px solid #000;
    display: inline-block;
}

.mb-read-more i {
    padding-left: 10px;
    color: #000;
}

.mb-read-more a:hover {
    text-decoration: none;
    background-color: #000;
    color: #fff;
}

.mb-read-more a:hover i {
    color: #fff;
}

.recent-post-home-section {
    width: 100%;
    float: left;
    margin-top: 50px;
}

.big-post .mb-post-title {
    margin-bottom: 10px;
    margin-top: 15px;
}

.big-post .mb-post-title,
.big-post .mb-post-title a {
    text-align: center;
    font-size: 36px;
    line-height: 40px;
    color: #000;
    font-weight: 700;
}

.big-post .mb-post-date {
    text-align: center;
    margin-bottom: 30px;
}

.recent-post-home-section .mb-post-outer {
    background-color: #fff;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
}

.row-2 {
    top: 500px;
}

.mb-post {
    top: 500px;
}

.mb-ad {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

.blog-post-con .post-img,
.blog-post-con .post-img a,
.blog-post-con .post-img a img {
    float: left;
}

.blog-post-home {
    float: left;
}

.blog-post-home .post-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #4e4e4e;
    text-transform: uppercase;
    margin: 24px 0 8px 0;
}

.blog-post-home .post-time {
    color: #999999;
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 9px;
}

.post-description {
    float: left;
    width: 100%;
    margin-bottom: 13px;
    color: #52626f;
    font-size: 16px;
    line-height: 24px;
}

.blog-post-home .read-more {
    font-weight: 700;
}

.blog-post-home .read-more:hover {
    text-decoration: underline;
}

.posts-navigation {
    clear: both;
    margin-bottom: 50px;
}


/* Post type style */

.post-mark {
    position: absolute;
    right: 0;
    top: 0;
}

.icon-triangle {
    border-bottom: 62px solid transparent;
    border-right: 62px solid rgba(238, 238, 238, 0.40);
    height: 0;
    margin: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: background-color 0.3s ease-in-out 0s;
    width: 0;
}

.post-mark .post-icon {
    font-size: 25px;
    top: 8px;
}

.post-mark .post-icon {
    color: #000;
    font-size: 22px;
    position: absolute;
    right: 7px;
    top: 10px;
}

.unordered-list {
    padding-left: 25px;
}

.unordered-list ul {
    display: block;
    margin: 0;
    padding: 0;
}

.unordered-list ul>li {
    font-family: inherit;
    font-size: 14px;
    position: relative;
    font-weight: 600;
}


/* Insta feed section */

.insta-feeds-widget {
    width: 100%;
    float: left;
    clear: both;
    overflow: hidden;
}

.widget.destination-widget-instagram-feed {
    margin-bottom: 0;
}

.widget.destination-widget-instagram-feed h4 {
    display: none;
}

.insta-feeds-widget .insta-feeds {
    width: 100%;
    float: left;
    margin-bottom: 0;
}

.insta-feeds-widget .insta-item {
    float: left;
    margin-bottom: 0;
    width: 12.5%!important;
}

.insta-feeds-widget .insta-item a,
.insta-feeds-widget .insta-item a img {
    display: block;
    float: left;
    position: relative;
}

.insta-feeds-widget .insta-item a:before {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0;
    z-index: 1;
    content: "";
}

.insta-feeds-widget .insta-item a:hover:before {
    opacity: 0.80;
}

.insta-feeds-widget .insta-item a:after {
    content: "\f16d";
    font-family: FontAwesome;
    color: #fff;
    font-size: 40px;
    opacity: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
    -khtml-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    width: 30px;
    z-index: 2;
}

.insta-feeds-widget .insta-item a:hover:after {
    opacity: 1;
}

.insta-feeds-widget .widget-title {
    text-align: center;
}

.footer.widget ul {
    padding-left: 0;
    margin-left: 0;
    list-style: none;
}

.footer {
    margin-bottom: 0 !Important;
}


/* social Bar */

.social-bar-widget,
.social-bar {
    width: 100%;
    float: left;
}

.social-bar {
    background: #101010;
    padding: 30px 0;
}

.social-bar ul.social-icons {
    float: left;
    margin-bottom: 0;
    margin-top: 0px;
}

.social-bar ul.social-icons li {
    float: left;
    margin: 13px 50px 0 0;
}

.social-bar ul.social-icons li i {
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
}

.social-bar ul.social-icons li a {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px;
    position: relative;
}

.social-bar ul.social-icons li a:hover {
    color: #000;
    text-decoration: none;
}

.social-bar ul.social-icons li a:hover i {
    color: #000;
}

.subcribe-mail {
    float: right;
}

.subcribe-mail input[type="email"] {
    width: 225px;
    background: #000;
    border: 1px solid #fff;
    height: 40px;
    padding: 0 10px;
    float: left;
    margin-right: 10px;
    color: #fff;
    margin-bottom: 0;
}

.subcribe-mail input:focus {
    color: #fff;
}

.subcribe-mail .subcribe-btn {
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    min-width: 104px;
    padding: 0 20px;
    float: left;
    line-height: 38px;
    letter-spacing: .5px;
}

.subcribe-mail .subcribe-btn:hover {
    background: #000;
    color: #fff;
}

.subcribe-mail form {
    margin: 0 0 5px 0;
}


/* footer bottom bar */

.footer {
    width: 100%;
    clear: both;
    float: left;
    margin-top: 30px;
}

.footer-bottom-section {
    width: 100%;
    float: left;
    clear: both;
}

.copyrights-block {
    width: 100%;
    float: left;
    background: #000000;
    padding: 40px 0;
    text-align: center;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.copyrights-block p {
    margin-bottom: 0;
}

.bypostauthor {
    font-weight: inherit;
}


/* Blog Page */

.Author-Bio {
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.Author-Bio-inner {
    display: table;
}

.Author-Bio-image {
    display: table-cell;
    padding-right: 18px;
    vertical-align: top;
    width: 90px;
}

.Author-Bio.Author-Bio-Text-holder.Author-name-email {
    margin-bottom: 11px;
}

.Author-Bio-Text-holder.Author-Text p {
    font-size: 14px;
    margin-top: 4px;
}

.mb-post-meta {
    float: left;
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.post-tags {
    float: left;
    padding-left: 15px;
}

.post-tags i {
    font-size: 12px;
    padding: 5px;
}

.post-tags span {
    color: #666666;
}

.post-tags span a {
    font-size: 12px;
    line-height: 18px;
    color: #999;
    text-transform: uppercase;
    margin: 0 10px 0px 0;
    padding: 4px 10px;
    display: inline-block;
    background-color: #fafafa;

}

.post-tags span a:hover {
    color: #fff;
    background-color: #151515;
    text-decoration: none;
}

.mb-post-share {
    float: right;
}

.mb-post-comment-box {
    float: left;
    width: 100%;
}

.mb-post-comment-box {
    margin-bottom: 30px;
}

.comment-reply-title {
    font-size: 20px;
    color: #4e4e4e;
    font-weight: 700;
    text-align: center;
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 30px;
    margin-top: 30px;
}

.comment-reply-title:after {
    position: absolute;
    content: "";
    width: 100px;
    background: transparent;
    border-bottom: 2px solid #000;
    bottom: -15px;
    left: 50%;
    padding-top: 20px;
    margin-left: -50px;
}


/* Pagniation */

.styled-pagination {
    position: relative;
    padding-top: 50px;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin: 0px 3px 10px;
}

.styled-pagination li a.prev {
    padding: 6px 15px;
}

.styled-pagination li a {
    position: relative;
    display: block;
    line-height: 21px;
    padding: 6px 5px;
    font-size: 15px;
    text-transform: uppercase;
    min-width: 34px;
    background: #ececec;
    color: #1a1a1a;
    text-align: center;
    box-sizing: border-box;
}

.styled-pagination li a:hover {
    text-decoration: none;
    background: #4e4e4e;
    color: #fff;
}

.styled-pagination li a.next {
    padding: 6px 15px;
    background: #000;
}

.styled-pagination li a.active {
    color: #000;
}

.styled-pagination li a.active:hover {
    background: #ececec;
    cursor: default;
}

.styled-pagination li a i,
.styled-pagination li a:hover i {
    color: #fff;
}


/* Sidebar */

.widget {
    width: 100%;
    float: left;
    clear: both;
    margin-bottom: 30px;
}

.about-widget p {
    font-size: 14px;
    /* line-height: 20px; */
    line-height: 1.7em;
    margin-top:10px;
    /* text-align:center; */
}

.color {
    background-color: #fff;
}

.sidebar {
    padding-top: 0px;
}

.sidebar-outer {
    padding-left: 20px;
}

.sidebar-outer .widget {
    background: #fff;
    padding: 20px 30px;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
}

.sidebar-outer .widget:nth-child(1) {
    background-color: #f8c528;
    color: white;
    text-align: left;
}

.sidebar-outer .widget:nth-child(1) h5 {
    color: #311515;
    border-bottom: 2px solid #311515;
}

.sidebar-outer .widget:nth-child(2) {
    background-color: #311515;
}

.sidebar-outer .widget:nth-child(2) h5 {
    color: white;
    border-bottom: 2px solid white;
}


.sidebar-outer .widget:nth-child(3) {
    background-color: #9c2727;
}

.sidebar-outer .widget:nth-child(3) ul li a {
    color: white;
}

.sidebar-outer .widget:nth-child(3) h5 {
    color: white;
    border-bottom: 2px solid white;
}

.sidebar-outer .widget:nth-child(4) {
    background-color: #9c2727;
}
.sidebar-outer .widget:nth-child(4) h5 {
    color: white;
    border-bottom: 2px solid white;
}


.widget ul {
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

.widget .recent-post ul li {
    float: left;
    clear: both;
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

.widget ul li a {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.widget ul li a:hover {
    color: #666;
    text-decoration: none;
}

.widget .post-content {
    overflow: hidden;
}

.widget .widget-latest-post {
    position: relative;
    float: left;
    min-height: 60px;
}

.widget .widget-latest-post:last-child {
    margin-bottom: 0;
}

.widget>h5 {
    margin: 0 0 20px 0;
    font-family: 'Montserrat', sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;
    padding: 15px 0 4px 0px;
    font-size: 18px;
    text-align: left;
    color: #000;
    font-weight: 700;
    border-bottom: 2px solid #000;
    letter-spacing: -0.5px;
}

.widget .screen-reader-text {
    display: none;
}

.widget select {
    padding: 10px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 0;
}

.widget table {
    width: 100%;
}

.widget table caption {
    line-height: 38px;
    font-size: 14px;
}

.widget .rss-date {
    font-size: 12px;
    color: #999;
    display: block;
}

.widget .rssSummary {
    font-size: 14px;
    line-height: 22px;
}

.widget.widget_search .search-outer {
    position: relative;
}

.widget.widget_search button.search-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    line-height: 48px;
    background: transparent;
    min-width: 50px;
}

.widget ul li {
    line-height: 30px;
    font-weight: 700;
    color: #999;
}

.widget ul li div {
    font-weight: 400;
}

.widget-ad {
    margin: 40px 0;
    max-width: 728px;
}

.widget-latest-post li {
    width: 100%;
    clear: both;
    float: left;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.widget-latest-post .featured-image {
    float: left;
    margin-right: 16px;
    max-width: 80px;
}

.widget-latest-post .post-content p {
    line-height: 16px;
    margin-bottom: 1px;
}

.widget-latest-post .post-content span,
.widget-latest-post .post-content span a {
    font-size: 11px;
    color: #999797;
    font-weight: 400;
    line-height: 13px;
}

.widget-latest-post li:after {
    clear: both;
}

.widget-latest-post .post-content span.category:after {
    content: '/';
    margin-left: 4px;
}

.widget-latest-post .post-title,
.widget-latest-post .post-title a {
    font-size: 14px;
    color: #4e4e4e;
    line-height: 20px;
}

.widget-latest-post .post-title a:hover {
    color: #000;
}

.widget-social ul {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}

.widget.widget-social ul li {
    margin-bottom: 0;
    display: block;
    width: 45px;
    clear: none;
    float: left;
}

.widget.widget-social ul li a {
    width: 45px;
    height: 45px;
    float: left;
    display: block;
    /* border: 1px solid #000; */
    /* border-right: none; */
    line-height: 45px;
    text-align: center;
    color: #000;
    /* background: #fff; */
}

.widget.widget-social ul li:last-child a {
    /* border-right: 1px solid #000; */
}

.widget.widget-social ul li a i {
    color: #000;
    line-height: 45px;
}

.widget.widget-social ul li a:hover {
    background: #000;
}

.widget.widget-social ul li a:hover i {
    color: #fff;
}


/* widget categories */

.widget_categories ul li {
    width: 100%;
    border-bottom: .5px solid rgba(230,230,230,.3);
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    /* color: #999; */
}

.widget_categories ul.children li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_categories ul li:first-child {
    padding-top: 0;
}

.widget_categories ul li a {
    color: white;
    font-size: 14px;
    line-height: 30px;
    font-weight: 700;
    margin-right: .4em;
}

.widget_categories ul li a:hover {
    text-decoration: none;
    color: #666;
}

.widget_categories ul li a span {
    float: right;
}

.widget.widget_nav_menu .sub-menu {
    box-shadow: none;
    font-size: 14px;
}


/*footer widget rules*/

.footer .widget_archive {
    color: #666;
}

.footer .widget_archive li a,
.footer .widget_categories li a {
    color: #f1f1f1;
}

.footer .widget_archive li a:hover,
.footer .widget_categories li a:hover {
    color: #000;
    text-decoration: none;
}

.footer .widget_categories ul li {
    border-bottom: 1px solid #333;
}

.footer .widget-title {
    background: transparent;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
    color: #f1f1f1;
    font-weight: 700;
    border-bottom: 1px solid #333;
}

.footer table {
    width: 100%;
    color: #666;
}

.footer ul.sub-menu {
    box-shadow: none;
}

.footer select {
    width: 100%;
}

.footer .widget_pages a {
    color: #f1f1f1;
}

.footer .widget_pages a:hover {
    color: #000;
    text-decoration: none;
}

.footer .widget_rss {
    color: #999;
}

.footer .widget_rss li {
    margin-bottom: 20px;
}

.footer .widget_rss .rssSummary {
    font-size: 14px;
    line-height: 22px;
}

.footer .widget_rss .rss-date {
    font-size: 12px;
    color: #666;
    display: block;
    line-height: 30px;
}

.footer .widget_meta a,
.footer .recentcomments a,
.footer .widget_recent_entries a,
.footer .widget_rss a {
    color: #f1f1f1;
}

.footer .widget_meta a:hover,
.footer .recentcomments a:hover,
.footer .widget_recent_entries a:hover,
.footer .widget_rss a:hover {
    color: #000;
    text-decoration: none;
}

.footer .widget_recent_comments {
    color: #999;
}

.footer .widget_search form {
    position: relative;
}

.footer .widget_search button.search-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    line-height: 48px;
    background: transparent;
    min-width: 50px;
}

.footer .widget_text img {
    margin: 10px 0;
}

.footer .widget_nav_menu a {
    color: #f1f1f1;
    font-size: 14px;
}

.footer .widget_nav_menu a:hover {
    color: #000;
    text-decoration: none;
}

.footer .widget_tag_cloud a {
    color: #f1f1f1;
    border: 1px solid #f1f1f1;
}

.footer .widget_tag_cloud a:hover {
    border: 1px solid #000;
}

.footer .widget_categories label,
.footer .widget_archive label {
    display: none;
}

.footer .wp-caption {
    margin: 0 !important;
}


/* widget tags */

.widget-tag li {
    float: left;
    margin: 0 3px 3px 0;
    width: auto;
    padding: 0;
}

.tagcloud {
    float: left;
}

.tagcloud a {
    font-size: 12px !important;
    text-transform: uppercase;
    color: #000;
    border: 1px solid #000;
    padding: 5px 10px;
    display: inline-block;
    font-weight: 400;
    margin: 0 5px 5px 0;
    float: left;
}

.tagcloud a:hover {
    text-decoration: none;
    background: #333;
    color: #fff;
}

.widget-ad .widget-title {
    display: none;
}


/* Recent Post */

.widget.widget-recent-post .post {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 16px;
    padding-bottom: 20px;
    padding-left: 88px;
    position: relative;
}

.widget.widget-recent-post .post:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.sidebar .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 2px;
    width: 76px;
    height: 60px;
}

.sidebar .recent-posts .post {
    position: relative;
    font-size: 13px;
    color: #cccccc;
    padding-left: 90px;
    padding-top: 8px;
}

.sidebar .recent-posts .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 76px;
    height: 60px;
}

.post-thumb i {
    color: #00BFFF;
}

.sidebar .recent-posts .post .post-thumb img {
    display: block;
    width: 100%;
}


/* Social Bio */

.social-bio {
    width: 100%;
    padding-top: 12px;
    text-align: left;
}

.widget ul.social-bio li {
    float: left;
    margin: 0 10px 0 0;
    width: 34px;
    height: 34px;
    line-height: 34px;
}

.social-bio i {
    color: #fff;
    font-size: 16px;
}

.social-bio a {
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
    background: #4e4e4e;
}

.social-bio a:hover {
    color: #fff;
    background: #000;
}


/* Recent Tweets */

.widget-recent-tweets .tweets {
    position: relative;
    font-size: 13px;
    color: #cccccc;
    padding-left: 20px;
    padding-top: 0px;
    margin-bottom: 20px;
}

.link {
    color: #DC143C;
}

.widget-recent-tweets .tweets .post-thumb {
    position: absolute;
    left: 2px;
    top: 4px;
    width: 25px;
}

.widget-recent-tweets .tweets .post-thumb i {
    color: #00BFFF;
    font-size: 16px;
}

.widget-recent-tweets .tweets .post-thumb img {
    display: block;
    width: 100%;
}

.widget-recent-tweets .tweets h4 {
    font-size: 14px;
    margin: 0px 0px 3px;
    line-height: 24px;
    color: #52626f;
    font-weight: 600;
    text-transform: lowercase;
}

.widget-recent-tweets .tweets h4 a {
    color: #000;
}

.widget-recent-tweets .post-info {
    font-size: 13px;
    color: #777777;
    text-transform: uppercase;
}


/* Instagram Gallery */

.widget-instagram .gallery {
    width: 102%;
    overflow: hidden;
}

.instagram-images {
    float: left;
    margin-bottom: 0;
    overflow: hidden;
}

.instagram-images li {
    float: left;
    width: 14.285%;
    flex-basis: 14.285%;
    margin: 0 0px 0px 0;
    box-sizing: border-box;
}

.instagram-images li img {
    float: left;
}


/* popular tags */

.widget-popular-tags .tags li {
    float: left;
    margin: 0 10px 10px 0;
}

.widget-popular-tags .tags a {
    position: relative;
    display: inline-block;
    line-height: 26px;
    padding: 1px 14px;
    border: 1px solid #eeeeee;
    color: #52626f;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.widget-popular-tags .tags a:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.widget-popular-tags .tags {
    padding-bottom: 36px;
}


/* Blog Detail Page */

.single-post .entry-title h2 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: #4e4e4e;
    margin-top: -6px;
}

.single-post .entry-meta {
    margin-bottom: 28px;
}

.entry-meta li {
    float: left;
    margin-right: 12px;
}

.entry-meta li a {
    color: #000;
}

.single-post .entry-image {
    float: left;
    margin-bottom: 37px;
}

.single-post .entry-image img {
    width: 100%;
    float: left;
}

.single-post .entry-content {
    font-size: 16px;
    line-height: 26px;
    color: #52626f;
    float: left;
    width: 100%;
}

.blockquote {
    border: 1px solid #4e4e4e;
    border-left: 10px solid #4e4e4e;
    margin: 0 0 0 19px;
}

.quote {
    padding: 20px 20px 20px 20px;
    border: 1px solid #ddd;
    border-left: 6px solid #ddd;
    border-radius: 1px;
    margin-bottom: 20px;
}

.quote h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-bottom: 0 !important;
}

.quote p {
    text-align: left;
    color: #ddd;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}

.single-post .tags {
    float: right;
    clear: both;
    margin-top: 20px;
    color: #999999;
    font-size: 14px;
    font-weight: 600;
}

.single-post .tags span {
    text-transform: uppercase;
    padding-right: 5px;
}

.single-post .tags a {
    color: #4e4e4e;
}

.single-post .tags a:hover {
    color: #000;
}

.single-page .author-box-con {
    margin-bottom: 30px;
}

.author-box-con {
    background: #ffffff;
    padding: 30px;
    margin: 20px 0;
    min-height: 160px;
    width: 100%;
    float: left;
}

.author-box-con .author-box {
    position: relative;
    padding-left: 130px;
}

.author-box-con .author-box {
    position: relative;
    padding-left: 130px;
}

.author-box-con .author-box img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    margin: 0;
}

.author-box-con .author-box h5 {
    font-size: 16px;
    line-height: 1;
    font-family: inherit;
    margin-bottom: 10px;
}

.author-box-con .author-box p {
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 12px;
}

.author-box-con .author-box .author-url {
    margin-bottom:10px;
}

.author-box-con .author-url a {
    color:#999;
}


/* Post navigation */

.post-navigation {
    float: left;
    width: 100%;
    padding: 30px 0 30px 0;
}

.post-navigation a {
    display: inline-block;
    background: #4e4e4e;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase;
    min-width: 124px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.post-navigation a:hover {
    background: #000;
    text-decoration: none;
}

.post-navigation a.left-nav i {
    color: #fff;
    padding-right: 10px;
}

.post-navigation a.right-nav i {
    color: #fff;
    padding-left: 10px;
}


/* About Author */

.author-bio-con {
    position: relative;
    padding: 15px 0 0px 0;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.author-bio-con .post-thumb {
    color: #00BFFF;
    width: 130px;
    height: 130px;
    float: left;
    margin-right: 18px;
}

.author-bio-con .post-thumb img {
    display: block;
    width: 100%;
}

.author-bio-con .post-info {
    position: relative;
    color: #999999;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}

.author-bio-con h4 {
    font-size: 20px;
    margin: 0px 0px 12px;
    line-height: 20px;
    color: #4e4e4e;
    text-transform: none;
}

.author-bio-con h4 a {
    color: #4e4e4e;
}

.author-bio-info {
    float: left;
    width: 620px;
}

.author-bio-con .social-bio {
    width: 100%;
    text-align: left;
    float: left;
    padding: 0;
    margin-bottom: 28px;
}

.author-bio-con ul.social-bio li {
    float: left;
    margin: 0 10px 0 0;
    width: 34px;
    height: 34px;
    line-height: 34px;
}

.author-bio-con .social-bio i {
    color: #fff;
    font-size: 16px;
}

.author-bio-con .social-bio a {
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
    background: #4e4e4e;
}

.author-bio-con .social-bio a:hover {
    color: #fff;
    background: #000;
}

.about-author {
    list-style: none;
}


/* Post Comments */

.comments-section {
    width: 100%;
    float: left;
}

.comments-section .title {
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    background: rgba(238, 238, 238, 1);
    padding: 10px 0;
    color: #666;
}

.comments {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    list-style: none;
}

.thecomment {
    border-bottom: 1px dotted #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.title-comment {
    float: left;
    width: 100%;
    margin-bottom: 29px;
}

.thecomment .author-img {
    float: left;
    margin-right: 20px;
}

.thecomment .comment-text {
    overflow: hidden;
}

.thecomment .comment-text h6.author,
.thecomment .comment-text h6.author a {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #333;
}

.thecomment .comment-text span.date {
    font-size: 12px;
    color: #999;
    font-style: italic;
    display: block;
    margin-bottom: 10px;
}

.title-comment h4 {
    font-size: 30px;
    line-height: 20px;
    text-transform: none;
}

.write-comment-link {
    float: right;
    font-size: 16px;
    line-height: 32px;
    color: #4e4e4e;
    font-weight: 700;
    margin-top: -8px;
}

.write-comment-link div.icon {
    width: 32px;
    height: 32px;
    display: block;
    border: 1px solid #4e4e4e;
    line-height: 30px;
    text-align: center;
    float: left;
    margin-right: 10px;
}

.write-comment-link i {
    color: #4e4e4e;
}

.comment-body {
    position: relative;
}

.comment-body a.reply {
    background: #4e4e4e;
    color: #fff;
    display: inline-block;
    margin: 4px;
    cursor: pointer;
    text-transform: uppercase;
    position: absolute;
    top: 26px;
    right: 10px;
    padding: 3px 8px;
}

.comment-body a.reply:hover {
    text-decoration: none;
    background: #000;
}

.comments {
    padding: 0;
    margin: 0;
    width: 100%;
    float: left;
}

.comments li {
    list-style: none;
    margin-bottom: 20px;
}

.comments li.parent {
    position: relative;
}

.comments li .comment-body {
    position: relative;
}

.comments li .comment-body .comment-meta {
    margin: 0 0 15px 0;
    float: left;
    width: 100%;
}

.comments li .comment-body .comment-meta .comment-author img {
    margin-right: 23px;
    background: #ddd;
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 60px;
    height: 60px;
    float: left;
    border-radius: 50%;
}

.comments li .comment-body .comment-meta .comment-author a {
    color: #4e4e4e;
    font-size: 18px;
    font-weight: 700;
}

.comments li .comment-body .comment-meta .comment-author b {
    font-weight: 600;
}

.comments li .comment-body .comment-meta .comment-metadata {
    font-size: 13px;
    line-height: 13px;
    color: #999999;
    font-weight: 700;
    margin-top: 9px;
}

.comments li .comment-body .comment-meta .comment-metadata a {
    color: #7e8890;
    font-weight: 400;
    text-transform: uppercase;
}

.comments li .comment-body .comment-meta .comment-metadata a:hover {
    color: #000;
    text-decoration: none;
}

.comments li .comment-body .comment-content {
    padding: 0 0 20px 0;
    font-size: 14px;
    line-height: 24px;
    clear: both;
}

.comments li .comment-body .comment-content p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

.comments li .children {
    margin: 20px 0;
    padding: 0 0 0 50px;
    position: relative;
}

.comments li .children li {
    position: relative;
}

.comment-metadata>a {
    font-size: 12px;
    color: #999;
}

.comments-closed {
    text-align: center;
    margin: 50px 0;
}

.comment-respond {
    position: relative;
    z-index: 99;
}

.comments li .reply {
    padding-bottom: 20px;
}

.comments li .reply a {
    text-transform: uppercase;
    font-size: 13px;
    color: #7e8890;
}

.comments li .reply a:hover {
    color: #000;
    text-decoration: none;
}

.comments li .comment-body {
    border-bottom: 1px solid #eceeef;
    padding: 10px 0;
}


/* Comment Form */

.leave-comment {
    text-align: left;
    float: left;
    width: 100%;
}

.margin-top-50 {
    margin-top: 50px;
}

.leave-comment .main-title-2 {
    text-align: left;
}

.main-title-2 h2 {
    font-size: 20px;
    position: relative;
    margin-bottom: 50px;
    text-align: left;
    text-transform: uppercase;
}

.comment-form {
    width: 100%;
    float: left;
    margin-top: 15px;
}

.comment-form-title h4 {
    font-size: 20px;
    color: #4e4e4e;
    text-transform: none;
    margin-bottom: 14px;
}

.comment-form input {
    height: 44px;
    margin-bottom: 20px;
}

.comment-form textarea {
    min-height: 110px;
    margin-bottom: 20px;
}


/* Map Section */

.map-section {
    padding: 0;
}

#map-canvas {
    height: 500px;
}

.our-address {
    background: #fdf2f3;
    padding: 90px;
    margin-top: 100px;
    color: #000;
}

.our-address h5 {
    color: #333;
    margin-bottom: 10px;
}

.our-address p {
    margin-bottom: 0;
}

.get-connected {
    padding-top: 0;
}


/* contact form */

.page-heading {
    font-size: 36px;
    color: black;
    font-weight: 700;
    text-align: center;
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 50px;
    margin-top: 50px;
}

.page-heading:after {
    position: absolute;
    content: "";
    width: 100px;
    background: transparent;
    border-bottom: 2px solid #e13044;
    bottom: -15px;
    left: 50%;
    padding-top: 20px;
    margin-left: -50px;
}

.contact-form {
    padding: 0px 0 100px;
}

.btn-style {
    display: inline-block;
    position: relative;
    background: transparent;
}

.btn-style input[type="submit"] {
    position: relative;
    z-index: 0;
    padding: 0 30px;
}


/* about page */

.about-page {
    margin-top: 50px;
}

.about-page-content {
    background: #fff;
}

.author-social-profile {
    padding: 80px 0 0;
}

.author-social-profile ul {
    margin: 0;
    text-align: center;
}

.author-social-profile ul li {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    margin-bottom: 0;
}

.author-social-profile ul li a {
    display: block;
    color: #000;
    font-size: 18px;
    line-height: 40px;
}

.author-social-profile ul li a i {
    color: #000;
}

.author-social-profile ul li a:hover {
    color: #fff;
    background: #000;
}

.author-social-profile ul li a:hover i {
    color: #fff;
}


/*Audio*/

audio .controls {
    width: 400px;
}


/*Video*/

.video-holder.video-item {
    max-width: 100%;
    position: relative;
    width: 100%;
}

.video-holder {
    height: 300px;
    width: 100%;
}


/* Font Awesome icon */

.fa {
    color: #101010;
}


/* You may also like */

.related-posts {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}


/*extra*/

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*Bx Slider*/

.bx-wrapper .bx-next {
    right: 10px;
    background: url(images/controls.png) no-repeat -43px -32px;
}


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
    position: relative;
    margin: 0 auto 60px;
    padding: 0;
    *zoom: 1;
}

.bx-wrapper img {
    max-width: 100%;
    display: block;
}


/** THEME
===================================*/

.bx-wrapper .bx-viewport {
    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
    border: 5px solid #fff;
    left: -5px;
    background: #fff;
    /*fix other elements on the page moving (on Chrome)*/
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: -30px;
    width: 100%;
}


/* LOADER */

.bx-wrapper .bx-loading {
    min-height: 50px;
    background: url(images/bx_loader.gif) center center no-repeat #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
}


/* PAGER */

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: bold;
    color: #666;
    padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    *zoom: 1;
    *display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #000;
}


/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
    left: 10px;
    background: url(images/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
    right: 10px;
    background: url(images/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
    background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
    background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: none;
}


/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
    text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 11px;
    outline: 0;
    background: url(images/controls.png) -86px -11px no-repeat;
    margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
    background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
    display: block;
    text-indent: -9999px;
    width: 9px;
    height: 11px;
    outline: 0;
    background: url(images/controls.png) -86px -44px no-repeat;
    margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
    background-position: -86px -33px;
}


/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px;
}


/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(80, 80, 80, 0.75);
    width: 100%;
}

.bx-wrapper .bx-caption span {
    color: #fff;
    font-family: Arial;
    display: block;
    font-size: .85em;
    padding: 10px;
}

.pager-wrapper {
    display: none;
}


/*search Result Page*/

.search-result-form {
    position: relative;
    float: left;
    margin: 0;
    width: 100%;
}

.search-result-form .search-icon {
    position: absolute;
    top: -16px;
    right: 3px;
    height: 100%;
    width: 34px;
    min-width: 34px;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 34px;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    float: right;
}

.nothing-found {
    margin: 30px 0 0 0;
    float: left;
    width: 100%;
}


/*pagination*/

.pagination {
    float: left;
    width: 100%;
    clear: both;
    padding: 0 15px;
    background: #fff;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .02);
}

.page-numbers {
    text-align: center;
    margin-bottom: 0;
    margin-left: 0;
}

.page-numbers li {
    display: inline-block;
    margin: 0 0 0 0;
}

.page-numbers li a,
.page-numbers li span {
    display: block;
    width: 40px;
    height: 60px;
    line-height: 60px;
    font-weight: 700;
    font-size: 18px;
}

.page-numbers li>span {
    color: #888888;
}

.page-numbers li a:hover {
    text-decoration: none;
    color: #333;
}

.page-numbers li a i {
    font-size: 22px;
    color: #000;
    font-weight: 700;
}

.page-numbers li a i:hover {
    color: #333;
}


/*Default Style for editor*/

table,
th,
td {
    border: 1px solid #d1d1d1;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.75em;
    table-layout: fixed;
    /* Prevents HTML tables from becoming too wide */
    width: 100%;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

.calendar_wrap th {
    color: #000;
    text-align: center;
}

.calendar_wrap td {
    font-size:12px;
    text-align: center;
}

th {
    border-width: 0 1px 1px 0;
    font-weight: 700;
}

td {
    border-width: 0 1px 1px 0;
}

th,
td {
    padding: 0.4375em;
}

ul,
ol {
    margin: 0 0 1.75em 1.25em;
    padding: 0;
}

ol {
    list-style: decimal;
    margin-left: 1.5em;
}

li>ul,
li>ol {
    margin-bottom: 0;
}

dl {
    margin: 0 0 1.75em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 0 1.75em;
}

.mb-post-content ul {
    margin-left: 15px;
    margin-bottom: 0px;
    list-style-type: circle;
}

.mb-post-content>div>ul,
.mb-post-content>div>ol {
    margin-bottom: 15px;
}

.mb-post-content ol {
    margin-left: 15px;
    margin-bottom: 0px;
}

.mb-post-content ul li,
.mb-post-content ol li {
    line-height: 28px;
    font-size: 14px;
    margin-bottom: 5px;
}


/*Custom Wordpress Style*/

.sticky.post .post-header {
    border: 1px dashed #eee;
    padding: 20px 0;
}

.wp-caption {
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 16px;
    font-style: italic;
    color: #888;
    line-height: 17px;
    margin: 8px 0 0;
}

.gallery {
    margin-bottom: 20px !important;
}

.gallery .gallery-caption {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    font-style: italic;
}

.gallery .gallery-icon img {
    border-radius: 2px;
    border: 1px solid #eee !important;
    padding: 7px;
}

.gallery .gallery-icon img:hover {
    border: 1px solid #ccc !important;
}


/* Slicknav CSS
/****************************************/

.slicknav_btn {
    position: relative;
    display: block;
    vertical-align: middle;
    float: left;
    line-height: 27px;
    cursor: pointer;
    height: 27px;
}

.slicknav_menu .slicknav_menutxt {
    display: block;
    line-height: 1.188em;
    float: left;
}

.slicknav_menu .slicknav_icon {
    float: left;
    margin: 0.188em 0 0 0.438em;
    font-size: 19px;
}

.slicknav_menu .slicknav_no-text {
    margin: 0;
}

.slicknav_menu .slicknav_icon-bar {
    display: block;
    width: 1.125em;
    height: 0.125em;
}

.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar {
    margin-top: 0.188em
}

.slicknav_nav {
    clear: both;
}

.slicknav_nav ul,
.slicknav_nav li {
    display: block
}

.slicknav_nav .slicknav_arrow {
    font-size: 0.8em;
    margin: 0 0 0 0.4em;
}

.slicknav_nav .slicknav_item {
    cursor: pointer;
}

.slicknav_nav .slicknav_row {
    display: block;
}

.slicknav_nav a {
    display: block;
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
    display: inline;
}

.slicknav_menu:before,
.slicknav_menu:after {
    content: " ";
    display: table;
}

.slicknav_menu:after {
    clear: both;
}

.slicknav_menu {
    *zoom: 1;
}

.slicknav_btn {
    margin: 5px 5px 6px;
    margin-left: 0;
}

.slicknav_menu .slicknav_icon-bar {
    background-color: #000;
}

.slicknav_menu {
    background: #9c2727;
    padding: 6px;
    display: none;
}

.slicknav_nav {
    margin: 0;
    padding: 0;
}

.slicknav_nav,
.slicknav_nav ul {
    list-style: none;
    overflow: hidden;
}

.slicknav_nav ul {
    padding: 0;
    margin: 0 0 0 20px;
}

.slicknav_nav .slicknav_row {
    padding: 5px 10px;
    margin: 2px 5px;
}

.slicknav_nav a {
    padding: 0px 15px;
    margin: 0px 0px;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
    padding: 0;
    margin: 0;
}

.slicknav_nav a:hover {
    color: #fff;
    text-decoration: none;
}

.slicknav_nav .slicknav_txtnode {
    margin-left: 15px;
}

.slicknav_menu .slicknav_no-text {
    margin-top: 7px;
}

.slicknav_nav li {
    line-height: 34px;
}

.slicknav_arrow {
    color: #000;
}

.backtohome {
    text-align: center;
    margin: 50px 0 100px 0;
}

.fourzero {
    font-size: 200px;
    margin: 100px 0;
}



/* Style to edit */


/* --------------------- Slider Area --------------------- */
.dc-slider{
    position: relative;
    overflow: hidden;
}
.dc-slider .owl-carousel{
    display: block;
}
.dc-slider .owl-carousel:not(.owl-loaded) .slider-item:not(:first-child){
    display: none;
}
.dc-slider .slider-item{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 0;
    background-color: #999;
}
.dc-slider .slider-img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    z-index: 1;
    transition: all 0.15s ease;
}
.dc-slider .slider-img:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0.2;
    transition: all 0.2s ease-out;
}
.dc-slider .slider-item-inner:hover .slider-img:before{
    opacity: 0.5;
}
.dc-slider.slider1 .slider-item .slider-content {
    position: relative;
    padding: 0;
    padding-bottom: 30px;
}
.dc-slider .slider-item .slider-content {
    max-width: 600px;
    position: absolute;
    left: 0;
    padding: 30px;
    z-index: 2;
    opacity: 0;
    bottom: -6px;
    -webkit-transition-property: opacity,bottom,color;
    transition-property: opacity,bottom,color;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
}
.dc-slider .md-post-meta{
    margin-bottom: 0;
    text-align: left;
}
.dc-slider .md-post-meta,
.dc-slider .entry-title a:hover,
.dc-slider .time a,
.dc-slider .time a:hover,
.dc-slider .comment-count a,
.dc-slider .author-name a,
.single-media-content .md-post-meta{
    color: #fff;
    text-decoration: none;
}
.single-media-content a,
.dc-slider a{
    transition: opacity 0.2s ease-out;
}
.dc-slider a:focus{
    color: inherit;
}
.single-media-content a:hover,
.dc-slider a:hover{
    color: #fff;
    opacity: 0.8;
}
.dc-slider .post-cats,
.dc-slider .post-cats a,
.single-media-content .post-cats{
    color: #fff;
    margin-bottom: 0;
    padding: 4px 0px;
    font-size: 11px;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 24px;
}

.dc-slider .post-cats a:hover {
    text-decoration: none;

}

.dc-slider .entry-title,
.single-media-content .entry-title{
    color: #fff;
    font-size: 36px;
    margin-bottom: 9px;
}
.dc-slider .owl-nav i,
.blog-post-media .owl-nav i{
    position: absolute;
    top: 50%;
    left: 20px;
    width: 40px;
    height: 60px;
    margin-top: -30px;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    background-color: rgba(0,0,0,.5);
    color: #fff;
    z-index: 1;
    transition: all 0.15s ease-out;
    opacity: 0;
    cursor: pointer;
}
.dc-slider .owl-prev i:hover:before,
.blog-post-media .owl-prev i:hover:before {
    animation: toLeftFromRight 0.3s forwards;
}
.dc-slider .owl-next i:hover:before,
.blog-post-media .owl-next i:hover:before {
    animation: toRightFromLeft 0.3s forwards;
}

@keyframes toLeftFromRight {
    49% {
        transform: translate(-100%);
    }
    50% {
        opacity: 0;
        transform: translate(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

.dc-slider .owl-nav i:hover,
.blog-post-media .owl-nav i:hover{
    background-color: #000;
}
.dc-slider .owl-nav .owl-next i,
.blog-post-media .owl-nav .owl-next i{
    left: auto;
    right: 20px;
}
.dc-slider:hover .owl-nav .owl-prev i,
.blog-post-media:hover .owl-nav .owl-prev i{
    opacity: 1;
    left: 0;
}
.dc-slider:hover .owl-nav .owl-next i,
.blog-post-media:hover .owl-nav .owl-next i{
    opacity: 1;
    right: 0;
}
.dc-slider .owl-carousel .owl-stage-outer{
    overflow: visible;
}
.dc-slider .owl-item.cloned.active.owl-item-large .slider-item .slider-content{
    opacity: 0;
}
.dc-slider .owl-item.active.owl-item-large .slider-item .slider-content{
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.dc-slider .owl-carousel:not(.sliding) .active .slider-item .slider-content{
    opacity: 1;
}
.dc-slider.slider2,
.dc-slider.slider3,
.dc-slider.slider4,
.single-large-media2{
    margin-top: 30px;
}
.dc-slider.slider3 .slider-item{
    display: block; 
    overflow: visible;
    background-color: transparent;
}
.dc-slider.slider3 .slider-img{
    background-size: auto;
}
.dc-slider.slider3 .slider-item-inner{
    position: relative;
    background-color: #999;
    height: 100%;
}
.dc-slider.slider3 .slider3-trans .slider-item{
    transition: width .8s linear;
}
.dc-slider.slider4 .entry-title,
.dc-slider.slider3 .entry-title{
    font-size: 30px;
    margin-bottom: 16px;
    padding-top: 3px;
    transition: all 0.3s ease;
}

.dc-slider.slider3 .slider-item .slider-content{
    max-width: 560px;
}

.dc-slider.slider4 .col-md-4 .entry-title,
.dc-slider.slider3 .owl-item-small .entry-title{
    font-size: 20px;
    margin-bottom: 13px;
    padding-top: 5px;
}


.dc-slider.slider4 .slider-item .slider-content{
    opacity: 1;
}
.feature-area div.feature-title{
    margin-top: 65px;
    padding: 10px 30px 10px;
    text-align: center;
    line-height: 1;
}
.feature-title h1{
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 0;
}
.feature-area .feature-title > p{
    margin: 20px auto 0;
    max-width: 600px;
    line-height: 1.6;
}

/* Slider 4 */

.dc-slider.slider4 {
    height:500px;
}

.dc-slider.slider4 .slider-item {
    width: 65%;
    height: 500px;
    float: left;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #333;
    clear:none;
}

.dc-slider.slider4 .slider-item:nth-child(2),
.dc-slider.slider4 .slider-item:nth-child(3) {
    width: 35%;
    height: 250px;
}

/* Slider 5 */
.dc-slider.slider5 .slider-item .slider-content {
    text-align: center;
    transform: translateY(-50%);
    top: 50%;
    bottom:unset;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.8);
    color:#000;
}


.dc-slider.slider5 .md-post-meta {
    text-align:center;
}

.dc-slider.slider5 a {
    color: #000;
}

.dc-slider.slider5 a:hover {
    color:#000;
}






/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/* 
 *  Owl Carousel - Core
 */
 .owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1; }
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d; 
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-nav .disabled,
.owl-carousel .owl-dots.disabled {
    display: none; 
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}
.owl-carousel.owl-loaded {
    display: block; 
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
 }
.owl-carousel.owl-hidden {
    opacity: 0; }
.owl-carousel .owl-refresh .owl-item {
    visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
.owl-carousel .owl-grab {
    cursor: move;
    cursor: grab; }
.owl-carousel.owl-rtl {
    direction: rtl; }
.owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
    display: block; 
}

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; 
}

.owl-carousel .owl-animated-in {
    z-index: 0; 
}

.owl-carousel .owl-animated-out {
    z-index: 1; 
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1; }
    100% {
        opacity: 0; } }

@keyframes fadeOut {
    0% {
        opacity: 1; }
    100% {
        opacity: 0; } 
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 0.5s ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 0.2s ease; }

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; }

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000; }

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none; }

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.2s ease; }

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%; }




/* 
 * 	Core Owl Carousel Theme CSS File
 */

.owl-carousel .owl-dots{
    text-align: center;
    margin-top: 30px;
    margin-bottom: -5px;
}

/* Styling Pagination*/

.owl-carousel .owl-dots .owl-dot{
    display: inline-block;
    padding: 3px;
    zoom: 1;
    *display: inline;/*IE7 life-saver */
}
.owl-carousel .owl-dot span{
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    background: rgba(230,230,230,.5);
    border-radius: 50%;
}

.owl-carousel .owl-dot.active span,
.owl-carousel .owl-dot:hover span{
    background-color: #ffffff;
}


.footer-ultimo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-wrap: wrap;
}


.texto-copyright {
    display: flex;
    align-items: center;
    text-align: center;
}

.icones-footer {
    display: flex;
    align-items: center;
}

.redes-sociais ul li  {

    display: flex;
    align-items: center;
    
}
.redes-sociais ul li a  {
    font-size: 30px;
    margin-right: 40px;
    
}

.redes-sociais ul li:last-child a  {
    font-size: 30px;
    margin-right: 0px;
    
}


.redes-sociais ul li a i.fa {
    font-size: 30px;
    color: white;
    
}

.logo-criasol {
    display: flex;
    align-items: center;
}


@media (max-width: 768px) {
    .footer-ultimo {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
    }

    .icones-footer {
        margin-top: 2em;
    }

    .logo-criasol {
        margin-top: 2em;
    }
}

.newsletter {
    display: flex;
    align-items: center;
    height: 190px ;
    background-color: #9c2727;
    margin-bottom: 0;
}


.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(max-width: 425px) {
    .newsletter-inner {

        flex-direction: column;

    }
}
.titulo {
    display: inline;
    flex: 1;
}

.titulo h4 {
    color: white;
    margin-bottom: 0px;
    font-size: 18px;
}


.formulario {
    flex: 1.5;
    display: flex;
    align-items: center;
    margin-bottom: 0px;

}

@media(max-width: 425px) {
    
    .formulario {

        flex-direction: column;

    }

    .formulario input {
        margin-top: 2em;
    }

    .formulario button {
        margin-top: 2em;
    }
}

.formulario input {
    height: 40px;
    background-color: #9c2727;
    border: 1px solid white;
    color: white;
    margin-bottom: 0px;
    margin-right: 12px;
    box-sizing: border-box;
    padding-right: 15px; 
}

.formulario input:focus {
    color: white;
    
}

.formulario button {
    height: 40px;
    background-color: white;
    border: 1px solid white;
    min-width: 170px;
    padding-bottom: 40px;
}

.formulario button span {
    color: black;
    text-transform: none;
}

.formulario ::-webkit-input-placeholder {
    color: white;
    font-weight: 600;
}


.about-widget .mais-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: none;
    text-align: center;
    font-size: 14px;
    border: 1px solid white;
    height: 30px;
    color: white;
    font-weight: 600;
    width: 160px;
}

.wpcf7-form label {
    color: black;
}

