/*
Theme Name: myTheme Responsive
Theme URI: http://perfectnote.net/myTheme
Description: SEO friendly, simple and clean theme comes with custom menu, custom header background, custom body background, wordpress thumbnail, adsense spot ready, breadcrumbs ready and custom logo & favicon uploader. It has 7 different color schemes and also included stylesheet for print document. Compatible with WordPress 3.2 and above, valid XHTML5 & CSS3, sticky posts, widget-ready, fullwidth page ready, and threaded comments ready.
Version: 3.16
Author: Sonvh
Author URI: http://perfectnote.net
Tags: blue, black, red, green, gray, purple, brown, two-columns, fixed-width, custom-header, custom-background, threaded-comments, custom-menu, theme-options, full-width-template, sticky-post

License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,400i|Raleway:400,400i,600,600i,700,700i|Roboto:400,400i');
@font-face {
    font-family: 'droid_serifregular';
    src: url('fonts/droidserif-regular-webfont.eot');
    src: url('fonts/droidserif-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/droidserif-regular-webfont.woff2') format('woff2'),
         url('fonts/droidserif-regular-webfont.woff') format('woff'),
         url('fonts/droidserif-regular-webfont.svg#droid_serifregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
    background-color: #fff;
    color: #666;
    color: rgba(0,0,0,.6);
    font-size: 1em;
    font-family: 'droid_serifregular',Georgia,Times,serif;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/*
 *  Media queries addedd by Doug Watt - April 2019. 
 *  added because background-attachment:fixed does not work on iOS devices.
 *  These media queries add background-attachment:scroll to ALL DEVICES with device width < 1024pixels (even Samsung),
 *  but iOS devices make up the vast majority of viewing devices to this site.
 * 
 */

@media only screen and (max-device-width: 1024px) {
	#header {
		background-attachment: scroll !important;
		min-height: 100vh;
	}
}
@media only screen and (max-device-width: 768px) {
	#banner .row {
    padding: 0 8% 3em !important;
}
	#banner {
		padding: 0 !important;
	}
	#logo {
		margin-top: 0px !important;
	}
}

/* End of editing of media queries */



h1,h2,h3,h4,h5,h6 {
    color: rgba(0,0,0,.8);
    font-family: 'Playfair Display',Georgia,serif;
    font-weight: 400;
    line-height: 1.1;
    margin: 6px 0;
    padding: 6px 0;
}
h1 {
    font-size: 3.2em;
    letter-spacing: -.8px;
}
h2 {
    font-size: 2.8em;
    letter-spacing: -.6px;
}
h3 {
    font-size: 2.4em;
    letter-spacing: -.4px;
}
h4 {
    font-size: 2em;
}


/*Layout
============================================*/
#wrapper {
    overflow: hidden;
}

.clearfix {
    clear: both;
}
hr {
    background-color: #E6E6E6;
    border: 0 none;
    clear: both;
    height: 1px;
    margin: 0 0 15px;
}
pre, .attachment img, .commentlist li, .navigation .wp-pagenavi .extend, .navigation .wp-pagenavi span.pages {
    border: 1px solid #E0E0E0;
}
pre,  .attachment img, .post-pages a span, .post-pages span, .commentlist code {
    padding: 5px;
}
ol, ul {
    list-style: none outside none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: none;
}
:focus {
    outline: 0 none;
}
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link {
    color: rgba(0,0,0,.4);
text-decoration: underline;
    transition: background .25s,color .25s;
    -moz-transition: background .25s,color .25s;
    -webkit-transition: background .25s,color .25s;
    -o-transition: background .25s,color .25s;
}
a:focus, a:hover, a:active {
    color: #000;
    color: rgba(0,0,0,1);
}
strong {
    font-weight: 700;
    color: #000;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, h1 a:link, h2 a:link, h3 a:link, h4 a:link, h5 a:link, h6 a:link, h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited {
    color: rgba(0,0,0,.8);
    text-decoration: none;
    border: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, h1 a:focus, h2 a:focus, h3 a:focus, h4 a:focus, h5 a:focus, h6 a:focus, h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6 a:active {
    color: #bf930e;
    text-decoration: none;
    border: none;
}
iframe {
    max-width: 100%;
    width: 100%;
}
/*Header
========================================*/
#header {
    background-repeat: no-repeat;
    background-attachment: fixed;
	background-position: center center;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    margin-bottom: 3rem;
}
#header.disable-height {
    min-height:39.44vw;
    max-height: 800px;
    height: auto;
}
.home #header  {
    margin-bottom: 0;
}
.has_overlay::before,
#header::before {
    content: " ";
    background-color: rgba(0,0,0,.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
}


#header > div ,#header > nav {
    position: relative;
    z-index: 8;
}
#logo {
    line-height: 0;
    margin-top: 50px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
}

/*Main menu */
#header > nav {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 9999;
}
.navbar-expand-lg .navbar-nav {
    margin: 0 auto;
}
.navbar-light .navbar-nav .nav-link {
    font-family: 'Raleway','Helvetica Neue',Arial,Helvetica,sans-serif;
    font-size: .7em;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    padding: 0 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    color: #ffffff;
}

.navbar-light .navbar-nav >li.has_logo img {
    visibility: hidden;
}
.navbar-light .navbar-nav >li > .nav-link {
        border-left: 1px solid rgba(255,255,255,.24);
}
.navbar-light .navbar-nav >li:first-child  > .nav-link ,
.navbar-light .navbar-nav >li:nth-child(5) > .nav-link,
.navbar-light .navbar-nav >li.has_logo  > .nav-link {
    border: 0;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 2px rgba(0,0,0,.2);
    padding: 0;
    min-width: 15rem;
    left: -50%;
}
.navbar-expand-lg .navbar-nav ul.dropdown-menu ul {
    left: 100%;
    top: -3px;
}
.navbar-expand-lg .navbar-nav > li > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -3px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #f9f9f9;
    z-index: 9;
}
.navbar-light .navbar-nav li li .nav-link {
    color: rgba(0,0,0,.5);
    display: block;
    width: auto;
    background: 0 0;
    font-family: 'Roboto';
    font-size: 0.8em;
    font-weight: 500;
    text-align: left;
    text-transform: none;
    line-height: 1.5;
    margin: 0;
    padding: 10px 18px;
    border-left: none !important;
    border-top: 1px solid rgba(0,0,0,.08);
}
.navbar-light .navbar-nav li li.active  .nav-link,
.navbar-light .navbar-nav li li .nav-link:hover {
    color: #000000!important;
}
.navbar-light .navbar-toggler {
    padding: 0.35rem 15px;
    border: 0;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.4)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/*Main content
=========================================*/

 .alignleft, img.alignleft {
    display: inline;
    float: left;
    margin-right: 24px;
    margin-top: 4px;
    clear: both;
}
 .alignright,  img.alignright {
    display: inline;
    float: right;
    margin-left: 24px;
    margin-top: 4px;
}
.aligncenter,  img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
  img.alignleft,  img.alignright,   img.aligncenter {
    margin-bottom: 12px;
}
.widget .title {
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
}
.textwidget h4 {
    margin: 24px 0 0 !important;
}
.title {
    font-size: 1em;
    font-weight: 700;
    font-family: 'Raleway';
    letter-spacing: 1px;
    text-transform: uppercase;
    word-wrap: break-word;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}
 .alignnone {

}
.navigation {
    padding:0 0 2rem 0;
}
#content .wp-caption {
    background: transparent;
    border: 0;
    padding: 0;
    text-align: left;
    font-style: italic;
}
#content .wp-caption img {
    border: 0 none;
    margin: 5px 0 0 0;
    padding: 0;
}
#content .wp-caption p.wp-caption-text {
    font-size: 90%;
    font-weight: 400;
    line-height: 12px;
    margin: 0;
    padding: 0;
}
.gallery-caption ,
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 100%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 0px 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;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}
.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
	border: 1px solid #333;
	padding: 2px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/*Sidebar */
#sidebar {

}
#sidebar .widget {
    margin-bottom: 3rem;
}
h3.widgettitle {

}
.widget ul, .widget li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.widget li {
    display: block;
    margin: 0;
    padding: 0;
    border-top: 1px solid #000;
}
.widget li a {
    display: inline-block;
    margin: 0;
    padding: 6px 0 2px;
    border-bottom: 4px solid rgba(0,0,0,0);
    transition: all .25s;
    -moz-transition: all .25s;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
}
#calendar_wrap {
    margin: 0 auto 0px;
    padding: 0;
}
#wp-calendar {
    width: 100%;
    text-align: center;
}
#wp-calendar caption {
    font-size: 1rem;
    margin: 5px 0;
}
table thead, table tfoot {
    border: 1px solid #e4e4e4;
}
table thead th, table tfoot td {
    border: none;
}
table th {
    background: #eee;
    font-size: 1.2em;
    text-align: center;
    margin: 0;
    padding: 8px 2px;
    border: 1px solid #e4e4e4;
}
#wp-calendar #prev a {
    float: left;
    margin: 0;
    text-align: left;
    padding-left: 12px;
}
table td {
    padding: 5px 2px;
    margin: 0;
    border: 1px solid #e4e4e4;
}
#wp-calendar #today {
    background: #f4f4f4;
    background: rgba(0,0,0,.08);
    color: #000;
    font-weight: 700;
}
/*Comment */
#respond {
    clear: both;
    margin: 15px 0;
}
#respond p {
    color: #777777;
    margin: 0 0 10px;
}
h3.responds {
    font-size: 1.5em;
}
#commentform {
    margin: 10px 0 0;
}
#commentform label {
    font-size: 12px;
}
#commentform input.txt, #commentform textarea {
    border-color: #CCCCCC #EFEFEF #EFEFEF #CCCCCC;
    border-style: solid;
    border-width: 1px;
    font-size: 14px;
    line-height: 14px;
}
#commentform input.txt {
    background: none repeat scroll 0 0 #FCFCFC;
    clear: both;
    float: left;
    margin: 0 5px 10px 0;
    padding: 5px 7px;
    width: 170px;
}
#commentform textarea {
    background: none repeat scroll 0 0 #FCFCFC;
    line-height: 130%;
    padding: 7px;
    width: 97% !important;
}
#commentform #submit {
    border-color: #DDDDDD #CCCCCC #CCCCCC #DDDDDD;
    border-style: double;
    border-width: 3px;
    cursor: pointer;
    font-size: 1.2em;
    margin-top: 10px;
    outline-color: #DDDDDD;
    padding: 5px;
    width: 170px;
}
.button, .reply a, #searchsubmit, #prevLink a, #nextLink a, a.more-link, a.read-more, #submit, input[type="submit"], #comments #respond input#submit, .container .gform_wrapper input.button, #wrapper #infinite-handle span {
    display: inline-block;
    position: relative;
    background-color: #e2b42b;
    color: #ccc;
    color: rgba(255,255,255,.7);
    font-family: 'Raleway';
    font-size: .75em;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 12px 0;
    padding: 8px 18px;
    border-radius: 3px;
    border: none;
    -webkit-appearance: none;
}
.big-button {
    cursor: pointer;
    font-size: 1rem;
    color: #ffffff !important;
    text-decoration: none !important;
}
.form-group label {
    font-weight: 700;
}
.button:hover, .reply a:hover, #searchsubmit:hover, #prevLink a:hover, #nextLink a:hover, a.more-link:hover, a.read-more:hover, input[type="submit"]:hover, #submit:hover, #comments #respond input#submit:hover, .container .gform_wrapper input.button:hover, #wrapper #infinite-handle span:hover {
    background-color: #bf930e;
    color: #fff;
    text-decoration: none;
    text-shadow: -1px -1px 0px rgba(0,0,0,.15);
    box-shadow: inset 0px 3px 0px rgba(0,0,0,.2);
    cursor: pointer;
}
.comments-box {
    padding: 10px 0 0;
}
#content .comments-box h3 {
    border: medium none;
    display: block;
    font-size: 1.2em;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
}
#content p.comment-notes {
    font-size: 12px;
}
a#cancel-comment-reply-link {
    display: block;
    font-size: 11px;
    margin-top: 10px;
    padding: 0 5px;
    width: 68px;
}
cite.fn {
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.05em;
    padding-top: 0;
}
.text {
    border: 1px solid #E6E6E6;
    color: #777777;
    padding: 2px;
    width: 200px;
}
.nopassword {
    color: #AAAAAA;
    font-size: 24px;
    font-weight: 100;
    margin: 26px 0;
    text-align: center;
}
ul.children {
    margin-left: 0;
}
ol.commentlist {
    margin: 0;
    padding: 0;
}
.commentlist li {
    list-style: none outside none;
    margin: 10px 0 0;
    padding: 15px;
}
.commentlist li.depth-2, .commentlist li.depth-4 {
    background: none repeat scroll 0 0 #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    margin-left: 15px;
}
.commentlist li.depth-3, .commentlist li.depth-5 {
    background: none repeat scroll 0 0 #FAFAFA;
    border-bottom: 1px solid #E0E0E0;
    margin-left: 15px;
}
.commentlist li blockquote {
    background: url("images/quote-comment.png") no-repeat scroll 0 8px transparent;
    margin: 0 0 11px;
    padding: 0 0 0 25px;
}
.commentlist code {
    background: none repeat scroll 0 0 #E6E6E6;
}
.commentlist p {
    clear: both;
    font-size: 1.1em;
    line-height: 1.6em;
    padding: 0;
}
.commentlist .moderation {
    color: #660000;
    margin-top: 10px;
}
.commentlist .thread-even {
    background: none repeat scroll 0 0 #FAFAFA;
}
.commentlist .children {
    margin-top: 15px;
}
.commentlist .comment-author {
    margin-bottom: 5px;
}
#content .commentlist .avatar {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #E9E9E9;
    float: left;
    margin-right: 10px;
    padding: 3px;
}
.commentlist .reply {
    margin: 5px 0 0;
    text-align: right;
}
#content .commentlist .reply a, #content .commentlist .reply a:visited, #content .cancel-comment-reply a {
    background: none repeat scroll 0 0 transparent;
    color: #FFFFFF;
    font-size: 11px;
    padding: 0 6px 1px !important;
    text-align: center;
    text-decoration: none !important;
}
.commentlist .comment-meta {
    float: left;
    margin-bottom: 15px;
}
.commentlist .comment-date a, .commentlist .comment-date a:visited {
    color: #888888;
    font-size: 1.1em;
}
.commentlist .comment-meta a {
    color: #666666 !important;
    text-decoration: none;
}
.metadata a:hover, cite.fn a, cite.fn a:hover {
    text-decoration: none;

}
/* Blog
=================================================*/
.post-holder, .page-holder, .blog-holder, .archive-holder {
    display: block;
    position: relative;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    overflow: hidden;
    border-bottom: 1px solid #000;

}
.post-thumbnail {
    overflow: hidden;
    width: 100%;
}
.feature-img, .feature-vid {
    display: block;
    position: relative;
    max-width: 100%;
    text-align: center;
    line-height: 0;
    margin: 0 auto 0px;
    background-color: rgba(0,0,0,.4);
    background-image: -webkit-gradient(radial,50% 50%,0,50% 50%,200,from(rgba(0,0,0,1)),to(rgba(0,0,0,.4)));
    background-image: -webkit-radial-gradient(50% 50%,rgba(0,0,0,.4),rgba(0,0,0,1));
    background-image: -moz-radial-gradient(50% 50%,rgba(0,0,0,.4),rgba(0,0,0,1));
    background-image: -o-radial-gradient(50% 50%,rgba(0,0,0,.4),rgba(0,0,0,1));
    background-image: -ms-radial-gradient(50% 50%,rgba(0,0,0,.4),rgba(0,0,0,1));
    background-image: radial-gradient(50% 50%,rgba(0,0,0,.4),rgba(0,0,0,1));
    overflow: hidden;
    z-index: 1;
}
.vertical-center {
    top: 50%;
    position: absolute !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 7;
}
.horizontal-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 7;
}
a.feature-img span.read-icon {
    display: block;
    color: #fff;
    font-family: 'Playfair Display';
    font-size: 72px;
    line-height: 28px;
    position: absolute;
    min-height: 36px;
    min-width: 36px;
    margin-top: -48px;
    padding: 24px;
    border: 2px solid #fff;
    opacity: 0;
    transition: opacity .25s;
    -moz-transition: opacity .25s;
    -webkit-transition: opacity .25s;
    -o-transition: opacity .25s;
}
a.feature-img img {
    opacity: 1;
    transition: opacity .25s;
    -moz-transition: opacity .25s;
    -webkit-transition: opacity .25s;
    -o-transition: opacity .25s;
    position: relative;
    z-index: 8;
    width: 100%;
}
a.feature-img:hover span.read-icon {
    opacity: 1;
}
a.feature-img img:hover {
    opacity: .4;
}
.entry.overlay {
    margin-top: -64px;
    background-color: #ffffff;
    float: right;
    display: inline-block;
    position: relative;
    background: #fff;
    max-width: 56%;
    min-width: 32%;
    padding: 24px 0 12px 6%;
    overflow: hidden;
    z-index: 6;
}
.search .entry.overlay {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
}
.content-holder > p:first-child::first-letter {
    float: left;
    font-family: "Playfair Display";
    font-size: 3.2em;
    font-weight: 400;
    line-height: .6;
    text-shadow: 3px 3px 0px rgba(0,0,0,.12);
    margin: 0;
    padding: 8px 6px 0 0;
}
.post-date {
    display: block;
    color: #999;
    color: rgba(0,0,0,.5);
    font-family: 'Playfair Display';
    font-size: .9em;
    margin: 0 0 12px;
    padding: 0 0 6px;
    border-bottom: 1px solid #000;
}
.post-author {
    display: block;
    color: #999;
    color: rgba(0,0,0,.5);
    width: 100%;
    font-family: 'Playfair Display';
    font-size: 1.2em;
    margin: -12px 0 0;
    padding: 6px 0;
}
.divider-small {
    display: inline-block;
    color: #000;
    background: #000;
    height: 4px;
    width: 18%;
    margin: 6px 0 12px;
}

.article {
    display: block;
    position: relative;
    padding: 0 0 24px 12%;
}
.search .article  {
    padding-left: 0;
}
i.format-icon-tag {
    position: absolute;
    top: 0;
    left: 12px;
    background: #000;
    color: #fff;
    font-size: 22px;
    line-height: 48px;
    text-align: center;
    min-height: 48px;
    min-width: 48px;
    margin-top: -2px;
    padding: 0;
    z-index: 9;
}
i.format-icon-tag {
    box-shadow: 3px 0px 0px rgba(0,0,0,.12);
}
.search i.format-icon-tag {
    display: none;
}
i.format-icon-tag .triangle-left {
    position: absolute;
    left: 0;
    bottom: -24px;
    width: 0;
    height: 0;
    border-top: 24px solid #000;
    border-right: 24px solid transparent;
}
i.format-icon-tag .triangle-right {
    position: absolute;
    right: 0;
    bottom: -24px;
    width: 0;
    height: 0;
    border-top: 24px solid #000;
    border-left: 24px solid transparent;
}
i.format-icon-tag .triangle-right {
    box-shadow: 3px 0px 0px rgba(0,0,0,.12);
}
.post-info {
    float: right;
    display: inline-block;
    position: relative;
    background: #fff;
    max-width: 56%;
    min-width: 32%;
    margin-top: 0;
    padding: 0px 0 12px 6%;
    overflow: hidden;
    z-index: 6;
}
.post-meta {
    display: inline-block;
    color: #999;
    width: 100%;
    font-size: .9em;
    margin: 24px 0 0;
    padding: 12px 0 0;
    overflow: hidden;
    border-top: 1px solid #000;
}
.post-meta i.fas.fa-tags {
    margin-left: 8px;
}
.nav-links {
    clear: both;
    padding-top: 1rem;
    overflow: hidden;
    padding-bottom: 12px;
}
.nav-previous {
    float: left;
}
.nav-next {
    float: right;
}
/*Footer
=============================================*/
#footer {
    background: #121212;
    padding-top: 5rem;
    color: #ccc;
}
#footer .widget {
    margin-bottom: 2rem;
}
#footer h3.widgettitle {
    font-size: 1em;
    font-weight: 700;
    font-family: 'Raleway';
    color: #fff!important;
    letter-spacing: 1px;
    text-transform: uppercase;
    word-wrap: break-word;
    line-height: 1.2;
    margin: 0;
    color: inherit;
    padding: 0;
    padding-bottom: 0px;
    margin-bottom: 12px;
    border-bottom: none;
}
#footer a {
    color: #999;
}
#footer a:hover {
    color: #fff;
    text-decoration: none;
}
.copyright {
    background: #000;
color: rgba(255,255,255,.4);
padding: 3rem 0;
overflow: hidden;
}
.copyright ul.socials {
    float: right;

}
/* Gallery
=============================================*/
.gallery { margin: 0 -15px 18px; overflow: hidden; }
.gallery .gallery-item {
    float: left;
    margin: 0;
    padding: 15px;
    text-align: center;
    width: 33%;
}
.gallery-columns-2 .gallery-item { width: 50%; }
.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1) {
    clear: both;
}
.gallery-columns-4 .gallery-item { width: 25%; }
.gallery img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
.gallery img:hover {
    background: white;
}

.gallery .gallery-caption {
    color: #888;
    font-size: 12px;
    margin: 0 0 12px;
}
.gallery dl, .gallery dt { margin: 0; }
.gallery br+br { display: none; }
/*Other
=============================================*/
#banner {
    color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em 0 2em;
}
#banner h1 {
    color: inherit;
}
#banner .container {
    display: contents;
}
#banner .col-md-8 {
    margin: 0 auto;
    text-align: center;
}
.headline.img-headline {
    color: #fff;
    position: absolute;
    top: 50%;
    width: 76%;
    font-size: 4em;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-top: 48px;
    padding: 0 12% 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 7;
}
.single .headline.img-headline  {
    font-size: 2.8em;
}
#banner .headline.img-headline {
    position: relative;
    top: auto;
    margin: auto;
    padding: 24px 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
#banner .headline.img-headline::after {
    position: absolute;
    color: #fff;
    content: '';
    bottom: 0;
    left: 50%;
    width: 180px;
    margin-left: -90px;
    border-bottom: 4px solid #fff;
}
#banner .row {
    padding: 6em 8% 3em;
}
ul.socials {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.socials  li {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.socials  li  a {
    display: block;
    color: rgba(0,0,0,.4);
border: 1px solid rgba(0,0,0,.12);
border-radius: 18px;
    text-align: center;
    text-decoration: none;
    line-height: 36px;
    min-width: 36px;
    margin: 4px;
    padding: 0;
    font-size: 14px;
}
ul.socials  li  a:hover {
    color: #000;
    border: 1px solid #000;
}
.widget_media_gallery .gallery  {
    margin: -2px;
}

.widget_media_gallery .gallery .gallery-item {
    margin: 0;
    width: calc(100%/3);
    display: inline-block;
    padding: 2px;
    float: none;
}
.widget_media_gallery .gallery .gallery-item:first-child {
    width: 100%;
}
.vc_wp_search.wpb_content_element {
    margin-bottom: 0;
}
.search-form .search-field, .search-form #s {
    float: left;
    background: #fff;
    color: #999;
    width: 81%;
    height: 32px;
    font-family: 'Helvetica Neue',Arial,sans-serif;
    font-size: .9em;
    line-height: 32px;
    margin: 0;
    padding: 0 8px !important;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 0;
    box-shadow: none;
}
.search-form .search-field:focus, .search-form #s:focus {
    border: 1px solid #000;
}
#submit, #searchsubmit {
    transition: background .25s,color .25s;
    -moz-transition: background .25s,color .25s;
    -webkit-transition: background .25s,color .25s;
    -o-transition: background .25s,color .25s;
}
#searchsubmit {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 6px 5% !important;
}
.lvca-posts-carousel {
    max-width: 100%;
    width: 100%;
}
._form-title,
h1.vc_custom_heading {
    font-size: 3em;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    word-wrap: break-word;
    margin: 0;
    padding: 0 0 18px;
}
.region_grid .vc_grid-item-mini,
.lvca-posts-carousel .lvca-posts-carousel-item .hentry {
    border-radius: 0;
    box-shadow: 0px 0px 12px rgba(0,0,0,.12);
-moz-box-shadow: 0px 0px 12px rgba(0,0,0,.12);
-webkit-box-shadow: 0px 0px 12px rgba(0,0,0,.12);
}
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap {
    text-align: left;
    font-size: .8em;
    padding: 24px;
}
.region_grid .vc_grid-item-mini .vc_gitem-post-data {
    margin-bottom: 0;
}
.region_grid .vc_grid-item-mini h3,
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title {
    font-size: 1em;
    font-weight: 700;
    font-family: 'Raleway';
    letter-spacing: 1px;
    text-transform: uppercase;
    word-wrap: break-word;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}
.region_grid .vc_grid-item-mini h3 a ,
.lvca-posts-carousel .lvca-posts-carousel-item .hentry a,
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title a {
    color: rgba(0,0,0,.8);
       text-decoration: none;
}
.region_grid .vc_grid-item-mini h3 a:hover,
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title a:hover {
   color: #bf930e;
   text-decoration: none;
}
.lvca-container button.slick-prev, .lvca-container button.slick-next {
    width: 38px;
    height: 38px;
    cursor: pointer;
}
.lvca-container button.slick-prev::before ,.lvca-container button.slick-next::before{
    font-family: "Font Awesome 5 Free"!important;
    font-weight: 900;
    content: "\f137";
    color: rgba(0,0,0,.2);
    font-size: 2.2rem;
}
.lvca-container button.slick-next::before {
    content: "\f138";
}
.lvca-container button:hover::before  {
    color: #000!important;

}
.has_overlay {
    position: relative;
    color: #ffffff;
}
.has_overlay * {
    color: inherit;
}
.has_overlay > div {
    position: relative;
    z-index: 6;
}
#_form_1_submit,
body .vc_btn3.vc_btn3-color-orange, .vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat {
    font-family: 'Raleway';
    font-size: .75em;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #e2b42b;
}
#_form_1_submit {
	padding: 14px 20px;
	border: 0;
	margin-top: 1.5rem;
}
._error {
	color: red;
}
.has_overlay a {
    color: inherit;
}
h2.comments-title {
    font-size: 2em;
    margin: 4px 0 8px;
    padding: 4px 0 8px;
}
.entry-content ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
}
.contact-form label {
    margin-bottom: 3px;
    margin-top: 6px;
    float: none;
    font-weight: 700;
    display: block;
}
.contact-form > div {
    display: block;
    margin-bottom: 8px;
    overflow: hidden;
}
.contact-form label span {
    color: #aaa;
    margin-left: 4px;
    font-weight: 400;
}
._form-content input[type="text"] ,
.contact-form textarea,
.contact-form  input[type="email"], .contact-form input[type="text"] {
    width: 40%;
    display: block;
    background: #f9f9f9;
    font-size: 1em;
    line-height: 1.4;
    margin: 4px 12px 4px 0;
    padding: 8px 6px;
    border: 1px inset rgba(0,0,0,.08);
    border-radius: 3px;
    box-shadow: inset 1px 1px 1px rgba(0,0,0,.1);
    max-width: 98%;
}
._form-label {
font-weight: bold;
padding-top: 1rem;
display: none;
}
._form-content input[type="text"] {
	display: inline-block;
	margin-bottom: 1rem!important;
	color: #000;
}
.contact-form textarea {
    height: 200px;
    width: 96%;
    float: none;
    margin-bottom: 13px;
}
._html-code {
	font-size: 1.5em;
padding-bottom: 1.2rem;
}
.flex-direction-nav a {
    height: 50px;

}
div.flexslider {
    margin: 0 0 5px;
    border: 0;
}
ul.list-meta {
    padding: 0;
}
.vc_tta-panel-body ul,
ul.list-meta ul {
    list-style: disc;
    padding-left: 15px;
}
.tabs-section {
    padding-top: 2rem;
}
.wpb-js-composer .vc_tta-tabs:not([class*="vc_tta-gap"]):not(.vc_tta-o-no-fill).vc_tta-tabs-position-top .vc_tta-tab > a {
    font-weight: 700;
    color: #000;
}
.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    padding: 3px 10px;
}
._form-branding {
	display: none;
}
@media (min-width: 1024px) {
    #sidebar {
        padding-left: 3rem;
        border-left: 1px solid #000;
        margin-bottom: 3rem;
    }
    #content.col-md-8 {
        padding-right: 3rem;
    }
    .nav-links > div {
    max-width: 48%;
}

}
/* CSS for tablet
--------------------------------------------------------*/
@media (max-width: 1024px) {
.lvca-container button.slick-prev, .lvca-container button.slick-next {
    display: block !important;
}
.lvca-posts-carousel {
    width: 96%;
}
}

/* CSS for phablet
--------------------------------------------------------*/
@media (max-width: 768px) {
    #banner .headline.img-headline,
    h1 {
    font-size: 2.2rem;
    line-height: 1.4;
}
    h2 {
    font-size: 1.8rem;
    letter-spacing: 0px;
}
    #header > nav {
    background: #121212 !important;
    position: relative;
    border-bottom: 1px solid #333;
    margin-bottom: 1.5rem;
}
.navbar-light .navbar-nav > li {
    display: block;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.12);
}
.navbar-light .navbar-nav  li  .nav-link {
    border-left: 0;
    display: block;
    color: rgba(255,255,255,.4);
    font-size: 0.8em;
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 15px;
}

.navbar-light .navbar-nav  li  .nav-link:hover {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,1);
    text-decoration: none;
}
.navbar-expand-lg .navbar-nav > li > .dropdown-menu::before {
    display: none;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: transparent;
    border-radius: 0;
    box-shadow: 0 0 0;
    padding: 0;
    min-width: 100%;
    left: 0;
    padding-left: 15px;
}
.navbar-light .navbar-nav li li .nav-link {
    color: rgba(255,255,255,.4);
}
.navbar-light .navbar-nav li li .nav-link:hover {
     color: rgba(255,255,255,1)!important;
}
._form-content input[type="text"] ,
.contact-form textarea,
.contact-form  input[type="email"], .contact-form input[type="text"] {
	width: 100%;
	}
i.format-icon-tag {
    display: none;
}
ul.socials {
    text-align: center;
}
.search-form .search-field, .search-form #s {
    width: 85%;
}
.entry.overlay {
    max-width: 68%;
}
.copyright ul.socials {
    float: none;
}
    .lvca-container button.slick-prev::before, .lvca-container button.slick-next::before {
    color: rgba(0,0,0,.6);
}
.lvca-container button.slick-prev {
    left: 7px;
    z-index: 6;
}
.lvca-container button.slick-next {
    right: 7px;
    z-index: 6;
}
.copyright {
    text-align: center;
}
}

/* CSS for phone
--------------------------------------------------------*/
@media (max-width: 480px) {
    .search-form .search-field, .search-form #s {
    width: 82%;
}
}
