/*
Theme Name: bgor
Theme URI: https://wp.alfisahr.com/bgor
Description: Bgor, a WordPress theme for blogger dedicated for lifestyle or fashion blog.
Author: Alfisahr
Author URI: https://themeforest.net/user/alfisahr
Version: 1.0.4
License: GPL
License URI: license.txt
Tags: white, black, light, two-columns, right-sidebar, responsive-layout, custom-menu, featured-images, translation-ready


Bgor (C) 2016 Alfisahr.

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Typography
2. Elements
	2.1 Shortcodes
3. Forms
4. Navigation
	4.1 Links
	4.2 Menus
		4.2.1 Primary Menu
		4.2.2 Secondary Menu
	4.3 Modular Navigation
5. Accessibility
6. Alignments
7. Clearings
8. Widgets
9. Header
10. Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11. Infinite scroll
12. Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
1. Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

h1 {font-size: 36px;}
h2 {font-size: 30px;}
h3 {font-size: 26px;}
h4 {font-size: 24px;}
h5 {font-size: 20px;}
h6 {font-size: 18px;}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 1.5em 0;
	font-family: 'Playfair Display', sans-serif;
	border:none;
	text-align:center;
	border-top:1px solid #efefef;
	border-bottom:1px solid #efefef;
	font-size:20px;
	padding:20px 25px;
}
blockquote cite {
	font-weight:700;
	font-family: 'Playfair Display', sans-serif;
	font-style:normal;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #000;
	font-size: 13px;
	border-radius:0;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
	color:#ddd;
	border:none;
}

code,
kbd,
tt,
var {
	font-size: 13px;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
2. Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
	font-size: 15px;
	font-family: 'Hind', sans-serif;
	overflow-x: hidden;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #efefef;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 0;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
2.1 Shortcodes
--------------------------------------------------------------*/
span.highlight {
	background:#F7F7A3;
	display:inline-block;
	padding:0 5px;
}
span.spoiler {
	border:1px dotted #999;
	color:#fff;
	display:inline-block;
	padding:0 5px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
span.spoiler:hover {
	color:#444;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
code {
	background-color:#eee;
	color:#444;
}
span.pull-right {
	text-transform:uppercase;
	display:block;
	float:right;
	margin:0 0 20px 30px;
	color:#ccc;
	width:30%;
	font-size:22px;
	text-align:right;
}
span.pull-left {
	text-transform:uppercase;
	display:block;
	float:left;
	margin:0 30px 20px 0;
	color:#ccc;
	width:30%;
	font-size:22px;
	line-height:27px;
}
span.intro {
	text-transform:uppercase;
	text-align:center;
	padding:20px 25px;
	margin:20px 0;
	border-top:1px solid #eee;
	border-bottom:1px solid #eee;
	color:#999;
	display:block;
}
span.dropcap {
	font-weight: 700;
	display:block;
	float: left;
	padding:0px 10px 0 5px;
	line-height:36px;
	font-size: 35px;
	text-transform: uppercase;
}

/*--------------------------------------------------------------
3. Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 0;
	border-color: #ccc #ccc #bbb;
	border-radius: 5px;
	background: #222;
	color: rgba(0, 0, 0, .8);
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1;
	color:#fff;
	padding: .8em 1.3em .8em;
	text-shadow: 0 0 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ddd;
	border-radius: 0;
	width:100%;
	font-size: 15px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
	outline:0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
	padding: 8px 16px;
}

textarea {
	padding: 5px 10px;
	width: 100%;
}

/*--------------------------------------------------------------
3.1 Search Form
--------------------------------------------------------------*/
.form-search button[type="submit"] {
	border-bottom-left-radius:0;
	border-top-left-radius:0;
}

/*--------------------------------------------------------------
4. Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
4.1 More (read more) Links
--------------------------------------------------------------*/
.more-link {
	display:none;
}
/*--------------------------------------------------------------
4.1 Links
--------------------------------------------------------------*/
a {
	color: #c93961;
}

a:visited {
}

a:hover,
a:focus,
a:active {
	color:none;
	text-decoration:none;
}

a:focus {
	outline: 0;
	text-decoration:none;
}

a:hover,
a:active {
	outline: 0;
	text-decoration:none;
}

/*--------------------------------------------------------------
4.2 Menus
--------------------------------------------------------------*/

/*--------------------------------------------------------------
4.2.1 Primary Menu
--------------------------------------------------------------*/
.fix-nav {
    z-index: 9900;
    position: fixed;
    left: 0;
    width: 100%;
	background-color:#ffffff;
	border-top:1px solid #ececec;
	border-bottom:5px solid #000;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.6);
}
.nav-top-margin {
	top:0;
}
.nav-top-margin-adm {
	top: 28px;
}
.main-menu-container {
	border-bottom:5px solid #000;
	border-top:1px solid #ececec;
}
.main-menu {
	margin:0 auto;
	display:table;
}
.main-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 999;
	display:block;
}
.main-menu ul:after,
.main-menu:after {
	content: ' ';
	display: block;
	font-size: 0;
	height: 0;
	clear: both;
	visibility: hidden;
}
.main-menu ul li {
	margin: 0;
	padding: 0;
	display: block;
	position: relative;
}
.main-menu ul li a {
	text-decoration: none;
	display: block;
	margin: 0;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.main-menu ul li ul {
	position: absolute;
	left: -9999px;
	top: auto;
	border-right:3px solid #000;
	border-left:3px solid #000;
	border-bottom:3px solid #000;
	background: #fff;
}
.main-menu ul li ul li {
	max-height: 0;
	position: absolute;
	-webkit-transition: max-height 0.4s ease-out;
	-moz-transition: max-height 0.4s ease-out;
	-ms-transition: max-height 0.4s ease-out;
	-o-transition: max-height 0.4s ease-out;
	transition: max-height 0.4s ease-out;
}
.main-menu ul li ul li.has-sub:after {
	display: block;
	position: absolute;
	content: '';
	height: 10px;
	width: 10px;
	border-radius: 0;
	z-index: 1;
	top: 13px;
	right: 15px;
}
.main-menu ul li ul li.has-sub:before:hover {
	border-left-color: #000000;
}
.main-menu.align-right ul li ul li.has-sub:after {
	right: auto;
	left: 15px;
}
.main-menu ul li ul li.has-sub:before {
	display: block;
	position: absolute;
	content: '';
	height: 0;
	width: 0;
	border: 3px solid transparent;
	border-left-color: #000000;
	z-index: 2;
	top: 15px;
	right: 15px;
}
.main-menu.align-right ul li ul li.has-sub:before {
	right: auto;
	left: 15px;
}
.main-menu ul li ul li a {
	font-size: 14px;
	font-weight: 400;
	text-transform: none;
	color: #000;
	letter-spacing: 0;
	display: block;
	width: 200px;
	padding: 8px 10px;
}
.main-menu ul li ul li:hover > a,
.main-menu ul li ul li.active > a {
	color: #c93961;
}
.main-menu ul li ul li:hover:before,
.main-menu ul li ul li.active:before {
	border-left-color: #c93961;
}
.main-menu ul li ul li:hover > ul {
	left: 100%;
	top: 0;
}
.main-menu ul li ul li:hover > ul > li {
	max-height: 72px;
	position: relative;
}
.main-menu > ul > li {
	float: left;
}
.main-menu.align-center > ul > li {
	float: none;
	display: inline-block;
}
.main-menu.align-center > ul {
	text-align: center;
}
.main-menu.align-center ul ul {
	text-align: left;
}
.main-menu.align-right > ul {
	float: right;
}
.main-menu.align-right > ul > li:hover > ul {
	left: auto;
	right: 0;
}
.main-menu.align-right ul ul li:hover > ul {
	right: 100%;
	left: auto;
}
.main-menu.align-right ul ul li a {
	text-align: right;
}
.main-menu > ul > li:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	z-index: 0;
	-webkit-transition: height .3s;
	-moz-transition: height .3s;
	-ms-transition: height .3s;
	-o-transition: height .3s;
	transition: height .3s;
}
.main-menu > ul > li.has-sub > a {
	padding-right: 15px;
}
.main-menu > ul > li.has-sub > a:after {
	display: block;
	content: '';
	height: 12px;
	width: 12px;
	position: absolute;
	right: 14px;
	top: 13px;
}
.main-menu > ul > li.has-sub > a:before {
	display: block;
	content: '';
	border: 4px solid transparent;
	border-top-color: #000000;
	z-index: 2;
	height: 0;
	width: 0;
	position: absolute;
	right: 0px;
	top: 22px;
}
.main-menu > ul > li > a {
	color: #000;
	padding: 10px 20px;
	font-family: 'Fjalla One', serif;
	text-transform: uppercase;
	font-size:18px;
	z-index: 2;
	position: relative;
}
.main-menu > ul > li:hover:after,
.main-menu > ul > li.active:after {
	height: 100%;
}
.main-menu > ul > li:hover > a,
.main-menu > ul > li.active > a {
	color: #c93961;
}
.main-menu > ul > li.active > a {
}
.main-menu > ul > li:hover > a:before,
.main-menu > ul > li.active > a:before {
	border-top-color: #c93961;
}
.main-menu > ul > li:hover > ul {
	left: 0;
}
.main-menu > ul > li:hover > ul > li {
	max-height: 72px;
	position: relative;
}
/*Special*/
.main-menu ul li ul li.has-sub:hover > a:before {
border-left-color: #ff0000;
background:#ff0000;
}

.main-menu #primary-button {
  display: none;
}
.main-menu > ul > li > a {
  display: block;
}
.main-menu > ul > li {
  width: auto;
}
.main-menu > ul > li > ul {
  width: 200px;
  display: block;
}
.main-menu > ul > li > ul > li {
  width: 200px;
  display: block;
}

/*--------------------------------------------------------------
4.2.2 Secondary Menu
--------------------------------------------------------------*/
.topnav {
	background: #000;
}
.topnav .navsearch,
.topnav .header-icons-share {
	float:right;
}.topnav .navsearch a,
.topnav .header-icons-share a {
	color:#999;
	display:inline-block;
	padding:5px 10px;
}

.searchbar {
	position:relative;
	width:100%;
	display:none;
}
.search-area {
	background:#ccc;
	text-align:center;
	position:absolute;
	padding:20px 0;
	width:100%;
}
.searchcontainer {
	width:30%;margin:0 auto;
}
.searchbar-active {
	background:#ccc;
}

.secondary-menu {
	display:block;
}
.secondary-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 999;
	display:block;
}
.secondary-menu ul:after,
.secondary-menu:after {
	content: ' ';
	display: block;
	font-size: 0;
	height: 0;
	clear: both;
	visibility: hidden;
}
.secondary-menu ul li {
	margin: 0;
	padding: 0;
	display: block;
	position: relative;
}
.secondary-menu ul li a {
	text-decoration: none;
	display: block;
	margin: 0;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.secondary-menu ul li ul {
	position: absolute;
	left: -9999px;
	top: auto;
	padding-top:3px;
}
.secondary-menu ul li ul li {
	max-height: 0;
	position: absolute;
	-webkit-transition: max-height 0.4s ease-out;
	-moz-transition: max-height 0.4s ease-out;
	-ms-transition: max-height 0.4s ease-out;
	-o-transition: max-height 0.4s ease-out;
	transition: max-height 0.4s ease-out;
}
.secondary-menu ul li ul li.has-sub:after {
	display: block;
	position: absolute;
	content: '';
	height: 10px;
	width: 10px;
	border-radius: 0;
	z-index: 1;
	top: 13px;
	right: 15px;
}
.secondary-menu ul li ul li.has-sub:before:hover {
	border-left-color: #999;
}
.secondary-menu.align-right ul li ul li.has-sub:after {
	right: auto;
	left: 15px;
}
.secondary-menu ul li ul li.has-sub:before {
	display: block;
	position: absolute;
	content: '';
	height: 0;
	width: 0;
	border: 3px solid transparent;
	border-left-color: #999;
	z-index: 2;
	top: 10px;
	right: 15px;
}
.secondary-menu.align-right ul li ul li.has-sub:before {
	right: auto;
	left: 15px;
}
.secondary-menu ul li ul li a {
	font-size: 14px;
	font-weight: 400;
	text-transform: none;
	color: #fff;
	letter-spacing: 0;
	display: block;
	width: 150px;
	padding: 3px 10px;
	background: #000;
}
.secondary-menu ul li ul li:hover > a,
.secondary-menu ul li ul li.active > a {
	color: #c93961;
}
.secondary-menu ul li ul li:hover:before,
.secondary-menu ul li ul li.active:before {
	border-left-color: #c93961;
}
.secondary-menu ul li ul li:hover > ul {
	left: 100%;
	top: 0;
}
.secondary-menu ul li ul li:hover > ul > li {
	max-height: 72px;
	position: relative;
}
.secondary-menu > ul > li {
	float: left;
}
.secondary-menu.align-center > ul > li {
	float: none;
	display: inline-block;
}
.secondary-menu.align-center > ul {
	text-align: center;
}
.secondary-menu.align-center ul ul {
	text-align: left;
}
.secondary-menu.align-right > ul {
	float: right;
}
.secondary-menu.align-right > ul > li:hover > ul {
	left: auto;
	right: 0;
}
.secondary-menu.align-right ul ul li:hover > ul {
	right: 100%;
	left: auto;
}
.secondary-menu.align-right ul ul li a {
	text-align: right;
}
.secondary-menu > ul > li:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	z-index: 0;
	-webkit-transition: height .3s;
	-moz-transition: height .3s;
	-ms-transition: height .3s;
	-o-transition: height .3s;
	transition: height .3s;
}
.secondary-menu > ul > li.has-sub > a {
	padding-right: 25px;
}
.secondary-menu > ul > li.has-sub > a:after {
	display: block;
	content: '';
	height: 12px;
	width: 12px;
	position: absolute;
	right: 14px;
	top: 13px;
}
.secondary-menu > ul > li.has-sub > a:before {
	display: block;
	content: '';
	border: 4px solid transparent;
	border-top-color: #999;
	z-index: 2;
	height: 0;
	width: 0;
	position: absolute;
	right: 13px;
	top: 11px;
}
.secondary-menu > ul > li > a {
	color: #999;
	padding: 5px 20px 5px 0;
	text-transform: uppercase;
	font-size:13px;
	z-index: 2;
	position: relative;
}
.secondary-menu > ul > li:hover:after,
.secondary-menu > ul > li.active:after {
	height: 100%;
}
.secondary-menu > ul > li:hover > a,
.secondary-menu > ul > li.active > a {
	color: #c93961;
}
.secondary-menu > ul > li.active > a {
	font-weight:700;
}
.secondary-menu > ul > li:hover > a:before,
.secondary-menu > ul > li.active > a:before {
	border-top-color: #c93961;
}
.secondary-menu > ul > li:hover > ul {
	left: 0;
}
.secondary-menu > ul > li:hover > ul > li {
	max-height: 72px;
	position: relative;
}
/*Special*/
.secondary-menu ul li ul li.has-sub:hover > a:before {
border-left-color: #ff0000;
background:#ff0000;
}

.secondary-menu #menu-button {
  display: none;
}
.secondary-menu > ul > li > a {
  display: block;
}
.secondary-menu > ul > li {
  width: auto;
}
.secondary-menu > ul > li > ul {
  width: 150px;
  display: block;
}
.secondary-menu > ul > li > ul > li {
  width: 150px;
  display: block;
}

/*--------------------------------------------------------------
4.3 Modular navigation
--------------------------------------------------------------*/

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

.nav-links {
	padding:20px 0;
	border-bottom:1px solid #ececec;
	margin-bottom:30px;
}
.nav-links .nav-previous a,
.nav-links .nav-next a {
	font-family: 'Playfair Display', sans-serif;
	font-size:20px;
	color:#444;
}
.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover {
	color:#c93961;
}
.nav-links .nav-previous a span,
.nav-links .nav-next a span {
	font-family: 'Fjalla One', sans-serif;
	color: #bbb;
	text-transform:uppercase;
	font-size:14px;
	letter-spacing:0.2em;
}

#pagination {
	text-align:center;
}
#pagination .page-numbers {
	display:inline-block;
	padding:2px 8px;
	font-size:18px;
}
#pagination span,
#pagination a:hover {
	border:1px solid #c93961;
	color: #444;
}
#pagination a {
	border:1px solid #ececec;
	color: #bbb;
}

.displaynone {
	display:none;
}
.relative {
	position:relative;
}
.marginbottom {
	margin-bottom:20px;
}
.margintop {
	margin-top:20px;
}

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

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

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

/*--------------------------------------------------------------
6. Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
7. Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
8. Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 2.3em;
	border:1px solid #ececec;
	padding:30px 20px;
	float:left;
	width:100%;
}
.widget.no-padding {
	padding:0;
	border:none;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

.widget-title {
	font-family: 'Fjalla One', sans-serif;
	text-align:center;
	text-transform:uppercase;
	font-size:14px;
	margin:-36px 0 20px 0;
	color: #c93961;
}
.widget-title span {
	display:inline-block;
	padding:0 10px;
	background:#fff;
}

.widget ul {
	padding:0;
	margin:0;
	list-style: none;
	color: #ececec;
}
.widget ul li {
	border-bottom:1px solid #efefef;
	padding:10px 0;
}
.widget ul li {
	color: #444;
}

.widget a {
	color: #555;
}
.widget a:hover {
	color: #c93961;
}

.blog-post-author {
	background: #efefef;
	padding:15px;
}
.blog-post-author .author-name,
.blog-post-author .author-name a {
	color: #000;
	font-family: 'Playfair Display', sans-serif;
}
.blog-post-author .author-name a:hover {
	color:#c93961;
}

.widget .tagcloud a {
	border:1px solid #efefef;
	display:inline-block;
	padding:3px 5px 2px 5px;
	margin:0 1px 2px 0;
	font-size:14px !important;
}
.widget .tagcloud a:hover {
	border:1px solid #c93961;
}

.recent-popular {
	float:left;
	width:100%;
}
ul.recent-popular li {
	padding:10px 0;
	width:100%;
	float:left;
	list-style:none;
}
.recent-popular .post-thumb {
	float:left;
	width:40%;
	padding-right:20px;
	max-height:80px;
	overflow:hidden;
}
.recent-popular .post-thumb img {
	width:100%;
}
.recent-popular .post-thumb img.noimg {
	max-width:none;
	width:100%;
}
.recent-popular .post-thumb .no-img {
	background: #ddd;
	width:100%;
	height:84px;
	color: #fff;
	text-align:center;
	font-size:30px;
}
.recent-popular .post-thumb .no-img i.fa {
	margin-top:28px;
}
.recent-popular .post-title {
	float:left;
	width:60%;
}
.recent-popular .post-title .title {
	display:block;
}
.recent-popular .post-title span.subcon {
	font-size:12px;
	color:#999;
}

.bgor-blog-author {
	text-align:center;
	font-size: 13px;
	color: #666;
}
.bgor-blog-author .author-photo {
	margin:0 auto;
	margin-bottom:20px;
	border:3px solid #fff;
}
.bgor-blog-author .author-photo img.img-round {
	border-radius:100%;
}
.bgor-blog-author .author-photo img {
	border:1px solid #ccc;
	padding:5px;
}
.bgor-blog-author h4,
.bgor-blog-author h4 a{
	margin:0;
	text-align:center;
	color: #444;
	font-weight:700;
}
.bgor-blog-author span.ocup {
	display:block;
	margin-bottom:10px;
	color: #c93961;
}
.bgor-blog-author #socmed {
	display:block;
	text-align:center;
	padding-top:10px;
}
.bgor-blog-author #socmed a {
	font-size:15px;
	display:inline-block;
	margin:0 4px;
}

.bgor-cats-widget li span {
	float:right;
	display:inline-block;
	border:1px solid #efefef;
	padding:0 5px;
	font-size:13px;
	color:#999;
}
.bgor-cats-widget li:hover span {
	border:1px solid #c93961;
	color:#c93961;
}

.bgor-social-icons a {
	display:inline-block;
	width:40px;
	height:40px;
	border:1px solid #efefef;
	text-align:center;
	margin:0 2px 3px 0;
	line-height:40px;
	font-size:20px;
}
.bgor-social-icons a:hover {
	border:1px solid #c93961;
}

.bgor-cats-widget ul,
.widget_recent_entries ul,
.widget_meta ul,
.widget_pages ul,
.widget_categories ul {
	list-style-type: circle;
	list-style-position: inside;
}

/* Latest Tweets */
.widget_tp_widget_recent_tweets ul {
}

.widget_tp_widget_recent_tweets li {
    background: none;
    padding-left: 40px !important;
    position: relative;
}

.widget_tp_widget_recent_tweets ul li:before {
    content: '\f099';
    font-family: 'FontAwesome';
    font-size: 20px;
    color: #55acee;
    position: absolute;
    top: 12px;
    left: 0;
}

.ads-330x400 {
	width:330px;
	height:400px;
	margin:0 auto;
	overflow:hidden;
}

/*--------------------------------------------------------------
9. Header
--------------------------------------------------------------*/
.container {
	width:1100px;
}
.site-header {
}
.site-branding {
	text-align:center;
	margin: 50px 0;
}
.site-title,
.site-title a {
	font-family: 'Playfair Display', sans-serif;
	color:#000;
	font-weight:700;
	font-size:70px;
	margin:0;
	line-height:65px;
	padding:0;
	text-transform:uppercase;
}
.site-title a:hover,
.site-title a:focus {
	text-decoration:none;
}
.site-description {
	color: #c93961;
}

/*-------------------------------------------------
Slider
------------------------------------------*/
.canvas {
	background: #000;
	margin-top:1px;
}
.responsive-slider,
.single-slider {
	position:relative;
}
.responsive-slider {
/*	padding:10px 15px;*/
	padding:10px 0;
}
.single-slider {
	padding:20px 0;
}
.responsive-slider .prev-arr,
.responsive-slider .next-arr,
.single-slider .prev-arr,
.single-slider .next-arr {
	display:block;
	position:absolute;
	color: #fff;
	cursor:pointer;
	z-index:20;
}
.responsive-slider .prev-arr,
.responsive-slider .next-arr {
	font-size:22px;
	top:40%;
}
.single-slider .prev-arr,
.single-slider .next-arr {
	font-size:26px;
	top:45%;
}
.responsive-slider .prev-arr {
	left:15px;
}
.single-slider .prev-arr {
	left:-15px;
}
.responsive-slider .next-arr {
	right:15px;
}
.single-slider .next-arr {
	right:-15px;
}
.responsive-slider .slide-items {
	padding:10px;
}
.responsive-slider .slide-items .nav-link,
.single-slider .slide-items .nav-link {
	display:block;
	width:100%;
	position:relative;
	overflow:hidden;
}
.responsive-slider .slide-items .nav-link {
	height:260px;
}
.single-slider .slide-items .nav-link {
	height:550px;
}
.responsive-slider .slide-items .nav-link img,
.single-slider .slide-items .nav-link img {
	width:100%;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
.responsive-slider .slide-items .nav-link .overlay,
.single-slider .slide-items .nav-link .overlay {
	position:absolute;
	height:50%;
	bottom:0;
	width:100%;
	background:#000;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
	background: -webkit-linear-gradient(top, transparent, #000);
	background: -moz-linear-gradient(top, transparent, #000);
	background: -ms-linear-gradient(top, transparent, #000);
	background: -o-linear-gradient(top, transparent, #000);
	opacity:0.8;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
.responsive-slider .slide-items .nav-link .frame,
.single-slider .slide-items .nav-link .frame {
	position:absolute;
	width:100%;
	height:100%;
	padding:0;
	top:0;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
.responsive-slider .slide-items .nav-link .line,
.single-slider .slide-items .nav-link .line {
	border:1px solid #666;
	width:100%;
	height:100%;
}
.responsive-slider .slide-items .nav-link .caption,
.single-slider .slide-items .nav-link .caption {
	bottom:0;
	position:absolute;
	width:100%;
	padding:5px 15px 30px 15px;
	text-align:center;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
.responsive-slider .slide-items .nav-link .caption h2,
.single-slider .slide-items .nav-link .caption h2 {
	font-family:'Playfair Display', sans-serif;
	padding:0;
	margin:0 0 5px 0;
	color: #fff;
	font-weight:300;
}
.responsive-slider .slide-items .nav-link .caption h2 {
	font-size:28px;
}
.single-slider .slide-items .nav-link .caption h2 {
	font-size:35px;
}
.responsive-slider .slide-items .nav-link .caption .badge,
.single-slider .slide-items .nav-link .caption .badge {
	background:transparent;
	font-size:12px;
	color: #fff;
	font-weight:normal;
}
.responsive-slider .slide-items .nav-link .caption .meta,
.single-slider .slide-items .nav-link .caption .meta {
	color: #aaa;
}
.responsive-slider .slide-items .nav-link .caption .meta {
	font-size:13px;
}
.single-slider .slide-items .nav-link .caption .meta {
	font-size:15px;
}
.responsive-slider .slide-items .nav-link .caption .meta span.cat,
.single-slider .slide-items .nav-link .caption .meta span.cat {
	color:#c93961;
}
.responsive-slider .slide-items .nav-link:hover .overlay,
.single-slider .slide-items .nav-link:hover .overlay {
	opacity:1;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
.responsive-slider .slide-items .nav-link:hover .frame,
.single-slider .slide-items .nav-link:hover .frame {
	padding:10px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
.responsive-slider .slide-items .nav-link:hover .frame .line,
.single-slider .slide-items .nav-link:hover .frame .line {
	border:1px solid #fff;
}
.responsive-slider .slide-items .nav-link:hover .caption,
.single-slider .slide-items .nav-link:hover .caption {
	padding:5px 15px 40px 15px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
.responsive-slider .slide-items .nav-link:hover img,
.single-slider .slide-items .nav-link:hover img {
	-moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
 }

/*--------------------------------------------------------------
10. Content
--------------------------------------------------------------*/
.site-content {
	margin-top:70px;
}

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display:block;
}
.sticky-badge {
	position:absolute;
	left:0;
	top:0;
	font-size:30px;
	color: #f7b670;
	line-height:18px;
	z-index: 700;
}
.badge {
	background:#fff;
	color: #999;
	border:1px solid #eee;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
	text-align:center;
	margin-top:20px;
	line-height:20px;
	color:#999;
}
.page-links span {
	display:inline-block;
	padding:3px 8px;
	border:1px solid #c93961;
	color:#000;
	font-size:18px;
}
.page-links a span{
	background:#fff;
	color:#ccc;
	font-size:18px;
	display:inline-block;
	padding:3px 8px;
	border:1px solid #ececec;
}
.page-links a:hover span{
	border:1px solid #c93961;
	color:#000;
}

.blog-item-wrap {
	margin-bottom:70px;
	border-bottom: 1px solid #ececec;
}

.entry-header {
	text-align:center;
	margin-bottom:30px;
	padding:0 20px;
	margin-top:0;
}
h1.entry-title,
h2.entry-title {
	margin:0 0 8px 0;
	padding:0;
	font-size: 32px;
}
.entry-title,
.entry-title a {
	font-family: 'Playfair Display';
	color: #000;
}
.entry-title a:hover {
	color: #c93961;
}

.entry-thumb .single-featured-box {
	display:block;
	width:100%;
	height:100%;
	position:relative;
	overflow:hidden;
}
.entry-thumb .single-featured-box .frame-container {
	position:absolute;
	padding:0;
	width:100%;
	height:100%;
	top:0;
	z-index:20;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
.entry-thumb .single-featured-box .frame-container .frame {
	height:100%;
	width:100%;
	border:0px solid #ff0000;
}
.entry-thumb .single-featured-box img {
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
	z-index:10;
}
.entry-thumb .single-featured-box:hover {
}
.entry-thumb .single-featured-box:hover .frame-container {
	padding:10px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}
.entry-thumb .single-featured-box:hover .frame-container .frame {
	border:1px solid #fff;
}
.entry-thumb .single-featured-box:hover img {
	-moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}

.thumbnail-icon {
	position:absolute;
	width:100%;
	top: 50%;
	font-size:55px;
	color: #fff;
	text-align:center;
	z-index:30;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.entry-meta,
.entry-meta a {
	color: #999;
	font-size:13px;
}
.entry-meta span.byline,
.entry-meta b.middot {
	margin-left:5px;
}
.entry-meta span.edit-link {
	margin-right:5px;
}
.entry-meta span.edit-link b.middot {
	margin-right:5px;
}
.entry-meta span.categories a {
	color: #c93961;
}
.entry-meta span b {
	margin-left:5px;
}

.entry-footer {
	margin-top:20px;
}
.entry-footer span {
	display:block;
}
.entry-footer span.tags-links,
.entry-footer span.tags-links a,
.entry-footer span.comments-link,
.entry-footer span.comments-link a {
	color: #999;
}
.entry-footer span.tags-links i.fa,
.entry-footer span.comments-link i.fa {
	color:#ddd;
	display:inline-block;
	margin-right:10px;
}
.read-more {
	text-align:center;
}
.read-more a {
	color:#000;
	display:inline-block;
	font-family:'Playfair Display';
	padding:2px 10px;
	border:1px solid #ececec;
	font-size: 18px;
}
.read-more a:hover {
	border:1px solid #c93961;
	color: #c93961;
}
.social-share {
	text-align:center;
	margin-bottom:-15px;
	margin-top:40px;
}
.social-share a {
	display:inline-block;
	width:30px;
	border:1px solid #efefef;
	color:#444;
	margin:0 2px;
	padding:4px 0 3px 0;
	background:#fff;
}
.social-share a:hover {
	border:1px solid #c93961;
	color: #c93961;
}

.unsingle-item-wrap {
	position:relative;
	margin-bottom:30px;
	background:#ccc;
	min-height:300px;
}
.unsingle-item-wrap .overlay {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	background:#000;
	background:rgba(0,0,0,0.5);
}
.unsingle-item-wrap #entry-top {
	position:absolute;
	width:100%;
	top:0;
	padding:10px 15px;
}
.unsingle-item-wrap #entry-top #icon {
	float:left;
}
.unsingle-item-wrap #entry-footer {
	position:absolute;
	width:100%;
	bottom:0;
	padding:10px 15px;
}
.unsingle-item-wrap #entry-footer #entry-meta {
	float:left;
	color: #ccc;
	font-size:13px;
}
.unsingle-item-wrap #entry-footer #entry-meta a {
	color: #ccc;
}
.unsingle-item-wrap #entry-footer #social-share {
	float:right;
}
.unsingle-item-wrap #entry-footer #social-share a {
	color: #ccc;
	display:inline-block;
	margin-left:5px;
}
.link-container {
	position:absolute;
	width:100%;
	margin:0;
	padding:0 10px;
	border:0;
	background:transparent;
	top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.link-container a {
	display:table;
	margin:0 auto;
	background:#000;
	background:rgba(0,0,0,0.5);
	color:#fff;
	padding:10px 20px;
	font-size:22px;
	text-align:center;
}
.link-container a i.fa {
	display:block;
	color: #999;
}
.quote-container {
	position:absolute;
	width:100%;
	margin:0;
	padding:10px 20px;
	border:0;
	background:transparent;
	top: 50%;
	color:#fff;
	font-size:25px;
	font-weight:300;
	text-align:center;
	font-family: 'Playfair Display', sans-serif;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.quote-container span {
	display:block;
	font-weight: 700;
}

.vid-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
	margin:0 0 30px 0;
}
.vid-container iframe.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header {
	text-align:center;
	padding:0 0 30px 0;
	border-bottom:1px solid #ececec;
	margin:0 0 50px 0;
}
.page-title {
	padding:0;
	margin:0;
	font-weight: 700;
	font-family: 'Playfair Display';
}
.page-title span.subtitle {
	display:block;
	font-size:15px;
	font-weight: 300;
	margin-bottom:10px;
	font-family: 'Fjalla One';
	color: #999;
	text-transform:uppercase;
}

.related-posts {
	margin-bottom: 40px;
	border-bottom:1px solid #ececec;
	padding-bottom:10px;
}
.related-posts .post-thumb {
	max-height:150px;
	overflow:hidden;
}
.related-posts .post-thumb img {
	width:100%;
}
.related-posts .post-thumb .no-img {
	background: #ddd;
	width:100%;
	height:150px;
	color: #fff;
	text-align:center;
	font-size:50px;
}
.related-posts .post-thumb .no-img i.fa {
	margin-top:50px;
}
.related-posts .post-title {
	padding:10px 0;
}
.related-posts .post-title a {
	color: #444;
}
.related-posts .post-title a:hover {
	color:#c93961;
}
.related-posts h3.title {
	font-family: 'Fjalla One';
	margin:0 0 30px 0;
	color:#c93961;
	text-align:center;
	text-transform:uppercase;
	font-size:20px;
}

/*------------------------------------------------------------
Fullwidth
-------------------------------------------------------------*/
.fullwidth {
	padding:0 70px;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}
.comments-area {
	float:left;
	width:100%;
	padding:0;
}
h2.comments-title,
h3.comment-reply-title {
	font-family: 'Fjalla One';
	margin:0 0 40px 0;
	color:#c93961;
	text-align:center;
	text-transform:uppercase;
	font-size:20px;
}

h2.comments-title {
	margin:0 0 40px 0;
}
ol.comment-list {
	padding:0;
	float:left;
	width:100%;
	margin:0 0 30px 0;
}
ol.comment-list li {
	list-style:none;
	float:left;
	width:100%;
}
.comment-body {
	border-bottom:1px solid #efefef;
	margin-bottom:20px;
	position:relative;
	float:left;
	width:100%;
}
.comment-author {
	float:left;
	width:100%;
}
.comment-author img.avatar {
	margin:0 40px 0 0;
	float:left;
	width:70px;
	height:70px;
	border-radius:50%;
}
.comment-author .fn {
	padding-top:-20px;
	padding-right:10px;
	display:inline-block;
	float:left;
}
.comment-author span.says {
	display:none;
}
.comment-metadata {
	float:left;
	padding:0 0 0 110px;
	margin:-50px 0 0 0;
	font-size:12px;
}
p.comment-awaiting-moderation {
	float:left;
	margin:0 0 20px 110px;
	background: #ececec;
	padding:0 10px;
	font-size:13px;
	display:inline-block;
}
.comment-metadata a {
	color: #999;
	font-style:italic;
}
.comment-metadata a:hover {
	color: #c93961;
}
.comment-content {
	padding:0 0 0 110px;
	margin:0;
	float:left;
	width:100%;
}
.comment-body .reply {
	position:absolute;
	right:0;
	display:none;
}
.comment-body:hover .reply {
	display:inline;
}
.reply a.comment-reply-link {
	border-radius:0;
	padding:0;
	font-size:13px;
}
.reply a.comment-reply-link:hover {
	background:none;
}
.comment-list li.byuser .comment-author img.avatar {
	border-radius:100%;
}
.comment-list li.byuser .comment-author img {
	border:1px solid #ccc;
	padding:5px;
}
#commentform {
	padding-bottom:80px;
}

#cancel-comment-reply-link {
	display:block;
	margin:10px 0 0 0;
	color: #444;
	text-transform: lowercase;
	font-family: 'Hind', sans-serif;
}

/*--------------------------------------------------------------
12.4 404
--------------------------------------------------------------*/
.error-404 {}
.error-404 .page-title {
	font-family: 'Fjalla One', sans-serif;
	font-size:80px;
	font-weight:700;
	margin:0;
	padding:0;
}
.error-404 h3 {
}
.error-404 .page-content {
	text-align:center;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	width: 100%;
	border:0;
}

img.single-featured {
	width:100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom:20px;
	float:left;
}
.gallery img {
	max-width:none;
	height:none;
}
.gallery-item {
	position:relative;
	float: left;
	margin: 0 2px 2px 0;
	overflow:hidden;
}
.gallery.gallery-size-thumbnail .gallery-item img {
	max-width:100%;
}
.gallery-columns-1.gallery-size-thumbnail .gallery-item,
.gallery-columns-2.gallery-size-thumbnail .gallery-item,
.gallery-columns-3.gallery-size-thumbnail .gallery-item,
.gallery-columns-4.gallery-size-thumbnail .gallery-item {
	max-width: 25%;
	max-width: -webkit-calc(25% - 2px);
	max-width:         calc(25% - 2px);
}
.gallery-columns-5.gallery-size-thumbnail .gallery-item {
	max-width: 20%;
	max-width: -webkit-calc(20% - 2px);
	max-width:         calc(20% - 2px);
}
.gallery-columns-6.gallery-size-thumbnail .gallery-item {
	max-width: 15%;
	max-width: -webkit-calc(16.7% - 2px);
	max-width:         calc(16.7% - 2px);
}
.gallery-columns-7.gallery-size-thumbnail .gallery-item {
	max-width: 13%;
	max-width: -webkit-calc(14.28% - 2px);
	max-width:         calc(14.28% - 2px);
}
.gallery-columns-8.gallery-size-thumbnail .gallery-item {
	max-width: 11%;
	max-width: -webkit-calc(12.5% - 2px);
	max-width:         calc(12.5% - 2px);
}
.gallery-columns-9.gallery-size-thumbnail .gallery-item {
	max-width: 9%;
	max-width: -webkit-calc(11.1% - 2px);
	max-width:         calc(11.1% - 2px);
}
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
  clear: left;
}

.gallery-columns-1.gallery-size-medium .gallery-item {
	width: 40%;
	width: -webkit-calc(40% - 2px);
	width:         calc(40% - 2px);
	max-height:180px;
	clear:left;
}
.gallery-columns-2.gallery-size-medium .gallery-item {
	width: 40%;
	width: -webkit-calc(40% - 2px);
	width:         calc(40% - 2px);
	height:180px;
}
.gallery-columns-3.gallery-size-medium .gallery-item,
.gallery-columns-3.gallery-size-large .gallery-item {
	width: 32%;
	width: -webkit-calc(33.3% - 2px);
	width:         calc(33.3% - 2px);
	height:180px;
}
.gallery-columns-4.gallery-size-medium .gallery-item,
.gallery-columns-4.gallery-size-large .gallery-item {
	width: 25%;
	width: -webkit-calc(25% - 2px);
	width:         calc(25% - 2px);
	height:150px;
}
.gallery-columns-5.gallery-size-medium .gallery-item,
.gallery-columns-5.gallery-size-large .gallery-item {
	width: 20%;
	width: -webkit-calc(20% - 2px);
	width:         calc(20% - 2px);
	height:140px;
}
.gallery-columns-6.gallery-size-medium .gallery-item,
.gallery-columns-6.gallery-size-large .gallery-item {
	width: 16%;
	width: -webkit-calc(16.6% - 2px);
	width:         calc(16.6% - 2px);
	height:100px;
}
.gallery-columns-7.gallery-size-medium .gallery-item,
.gallery-columns-7.gallery-size-large .gallery-item {
	width: 14%;
	width: -webkit-calc(14.28% - 2px);
	width:         calc(14.28% - 2px);
	height:90px;
}
.gallery-columns-8.gallery-size-medium .gallery-item,
.gallery-columns-8.gallery-size-large .gallery-item {
	width: 12%;
	width: -webkit-calc(12.5% - 2px);
	width:         calc(12.5% - 2px);
	height:75px;
}
.gallery-columns-9.gallery-size-medium .gallery-item,
.gallery-columns-9.gallery-size-large .gallery-item {
	width: 11%;
	width: -webkit-calc(11.1% - 2px);
	width:         calc(11.1% - 2px);
	height:60px;
}
.gallery-size-medium .gallery-item .landscape a img,
.gallery-size-large .gallery-item .landscape a img {
	height:100%;
	width:auto;
}
.gallery-size-medium .gallery-item .portrait a img,
.gallery-size-large .gallery-item .portrait a img {
	height:auto;
	width:100%;
}

.gallery-item .gallery-caption {
	display:none;
}

.gallery-columns-1 .gallery-item .gallery-caption,
.gallery-columns-2 .gallery-item .gallery-caption,
.gallery-columns-3 .gallery-item .gallery-caption,
.gallery-columns-4 .gallery-item .gallery-caption,
.gallery-columns-5 .gallery-item .gallery-caption {
	position:absolute;
	bottom:0;
	padding:2px;
	line-height:18px;
	font-size:13px;
	width:100%;
	color:#ddd;
	background:#000;
	background:rgba(0,0,0,0.5);
}
.gallery-columns-1 .gallery-item:hover .gallery-caption,
.gallery-columns-2 .gallery-item:hover .gallery-caption,
.gallery-columns-3 .gallery-item:hover .gallery-caption,
.gallery-columns-4 .gallery-item:hover .gallery-caption,
.gallery-columns-5 .gallery-item:hover .gallery-caption {
	display:inline;
}

.entry-thumb-galleries {
	height:450px;
	overflow:hidden;
	position:relative;
}
.entry-thumb-galleries .prev-arr,
.entry-thumb-galleries .next-arr {
	position:absolute;
	top:45%;
	cursor:pointer;
	color: #fff;
	background:#000;
	background:rgba(0,0,0,0.5);
	padding:4px 0 0 0;
	display:block;
	height:30px;
	width:30px;
	border-radius: 50%;
	text-align:center;
	z-index:20;
}
.entry-thumb-galleries .prev-arr {
	left:10px;
}
.entry-thumb-galleries .next-arr {
	right:10px;
}


#footer {
	background:#000;
	color:#fff;
	padding:70px 0 30px 0;
	margin-top:40px;
}

#footer .widget {
	border:1px solid #222;
}
#footer .widget .widget-title {
	color: #999;
}
#footer .widget .widget-title span {
	background: #000;
}
#footer .widget ul li {
	border-bottom:1px solid #111;
}
	
#footer #sidebar-row {
	border-bottom:1px solid #222;
	margin-bottom:20px;
}
#footer #colophon {
	text-align:center;
	font-size:13px;
}
#footer #colophon,
#footer #colophon a {
	color: #666;
}
#footer #colophon a {
	text-decoration:underline;
}

#footer .widget .tagcloud a {
	border:1px solid #111;
}

#footer .widget .tagcloud a:hover,
#footer .bgor-social-icons a:hover {
	border:1px solid #c93961;
}
#footer .about-site h3 {
	font-family: 'Playfair Display', sans-serif;
	margin:-20px 0 20px 0;
	font-size: 50px;
	color: #c93961;
}
#footer .about-site {
	color: #777;
}

#footer .bgor-social-icons a {
	border:1px solid #111;
}
#to-top {
	position: fixed;
	right: 30px;
	bottom: -100px;
	z-index: 55;
	width: 50px;
	height: 50px;
	text-align: center;
	overflow: auto;
	padding: 18px 14px 14px;
	font-size: 18px;
	line-height: 5px;
	cursor: pointer;
	background-color: #c93961;
	color: #fff;
	-moz-transition: all .7s ease-in-out;
	-o-transition: all .7s ease-in-out;
	-webkit-transition: all .7s ease-in-out;
	transition: all .7s ease-in-out;
	z-index: 111;
	border-radius: 50px;
}
/*
     FILE ARCHIVED ON 10:46:05 Apr 07, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 10:48:39 Jun 19, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 1.554
  exclusion.robots: 0.078
  exclusion.robots.policy: 0.061
  esindex: 0.012
  cdx.remote: 20.422
  LoadShardBlock: 52.705 (3)
  PetaboxLoader3.datanode: 79.068 (4)
  load_resource: 66.836
  PetaboxLoader3.resolve: 36.689
*/