@charset "utf-8";


/* GLOBAL: VARIABLES
-------------------------------------------------------------------------------*/
:root {
	--font-sans: 'Open Sans', Helvetica, Arial, sans-serif;
	--color-black: #000000;
	--color-ink: #242321;
	--color-charcoal: #666666;
	--color-silver: #D4D4D4;
	--color-white: #FFFFFF;
}


/* GLOBAL: COLOR
-------------------------------------------------------------------------------*/
.has-black-color {
	color: #000000;
}
.has-black-background-color {
	background-color: #000000;
}
.has-ink-color {
	color: #242321;
}
.has-ink-background-color {
	background-color: #242321;
}
.has-charcoal-color {
	color: #666666;
}
.has-charcoal-background-color {
	background-color: #666666;
}
.has-silver-color {
	color: #D4D4D4;
}
.has-silver-background-color {
	background-color: #D4D4D4;
}
.has-white-color {
	color: #FFFFFF;
}
.has-white-background-color {
	background-color: #FFFFFF;
}


/* GLOBAL: DEFAULTS
-------------------------------------------------------------------------------*/
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body {
	background-color: #FFF;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
	line-height: 0;
}
svg {
  position: relative;
	vertical-align: top;
}


/* GLOBAL: TYPOGRAPHY
-------------------------------------------------------------------------------*/
body {
	font-size: 14px;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
	body {
		font-size: 14px;
	}
}
@media (min-width: 980px) {
	body {
		font-size: 15px;
	}
}
@media (min-width: 1300px) {
	body {
		font-size: 16px;
	}
}
body, select, input, textarea, .text-normal {
	color: var(--color-charcoal);
	font-family: var(--font-sans);
	font-weight: 500;
	line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-sans);
	font-weight: 500;
	letter-spacing: -0.4px;
	color: var(--color-black);
}
h1 {
	line-height: 1.35em;
}
p {
	margin-bottom: 1em;
}
ul, ol {
	margin: 0 0 2em 0;
	padding: 0 0 0 1.15em;
}
ul li,
ol li {
	margin-bottom: 0;
}
blockquote p,
.wp-block-quote p {
	font-style: normal !important;
}
code {
	font-size: 0.9em;
	background-color: var(--color-charcoal);
	padding: 6px;
	border-radius: 3px;
	font-weight: bold;
}
small {
	font-size: .7em;
	text-align: center;
}


/* GLOBAL: FORMS
-------------------------------------------------------------------------------*/
label {
	color: var(--color-charcoal);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="url"],
textarea {
	height: auto;
	width: 100%;
	max-width: 480px;
}
[type=text],
[type=email],
[type=password],
[type=number],
[type=date],
[type=search],
[type=tel],
[type=url],
[type=submit],
textarea {
	border: 1px solid #595655;
	padding: .5em .865em;
	height: auto;
}
select {
	display: block;
	font-size: 15px;
	font-family: var(--font-sans);
	line-height: 1.3;
	padding: .5em 1.4em .5em .8em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid var(--color-charcoal);
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image:
		url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23888888%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
		linear-gradient(to bottom, #F0F5FA 0%, #F0F5FA 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}
select::-ms-expand {
	display: none;
}
select:hover {
	border-color: #888;
}
select:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222;
	outline: none;
}
select option {
	font-weight:normal;
}

[type=submit] {
	border-color: var(--color-charcoal);
	background-color: var(--color-charcoal);
	color: var(--color-white);
	font-weight: 700;
}
[type=submit]:hover {
	cursor: pointer;
	border-color: var(--color-black);
	background-color: var(--color-black);
}
.searchform input[type="text"] {
	max-width: 300px;
	margin-right: 8px;
}


/* GLOBAL: LINKS
-------------------------------------------------------------------------------*/
a {
	color: var(--color-black);
	text-decoration: none;
	transition: 
		background-color 300ms ease-in-out,
		color 300ms ease-in-out;
}
a:link {
	-webkit-tap-highlight-color: rgba(242, 228, 212, 0.5);
}
::-moz-selection {
	background: var(--color-ink);
	color: var(--color-white);
	text-shadow: none;
}
::selection {
	background: var(--color-ink);
	color: var(--color-white);
	text-shadow: none;
}

/* HOVER ANIMATION */
.header-nav a,
.main a {
  position: relative;
}
.header-nav a:after,
.main a:after {
	content:'';
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: -1px;
	display: block;
	width: 0;
	height: 1px;
	background-color: var(--color-black);
	transition: all 300ms cubic-bezier(.175,.885,.32,1.075);
}
.header-nav a:hover,
.main a:hover {
  text-decoration: none;
}
.header-nav a:hover:after,
.main a:hover:after {
	width: 100%;
}

/* PREVENT ANIMATION */
.button:hover:after,
.page-numbers:hover:after,
.single-nav:hover:after,
.gallery a:hover:after {
	display: none;
}


/* UTILITY: BUTTONS
-------------------------------------------------------------------------------*/
button,
.button {
	font-weight: 900;
	border: 0;
	padding: .5em .865em;
	text-transform: uppercase;
	letter-spacing: .1em;
	border: 1px solid var(--color-charcoal);
	background-color: var(--color-white);
	color: var(--color-black) !important;
	box-shadow: 0 3px 3px rgba(0,0,0,0), 0 1px 0 rgba(0,0,0,0);
}
button:hover,
.button:hover {
	transform: translateY(-1px);
	box-shadow: 0 3px 3px rgba(0,0,0,.2), 0 1px 0 rgba(0,0,0,.3);
	background-color: var(--color-black) !important;
	color: var(--color-white) !important;
	text-decoration: none;
}


/* UTILITY: SCALING
-------------------------------------------------------------------------------*/
.has-small-font-size {
	font-size: 0.85em;
	line-height: 1.5;
}
.has-normal-font-size,
.has-regular-font-size {
	font-size: 1em;
	line-height: 1.5;
}
.has-medium-font-size {
	font-size: 1.2em;
	line-height: 1.5;
}
.has-large-font-size {
	font-size: 1.35em;
	line-height: 1.5;
}
.has-huge-font-size,
.has-larger-font-size,
.text-large {
	font-size: 1.555em;
	font-size: 1.5em;
	line-height: 1.214;
	line-height: 1.5;
}


/* UTILITIES: ALIGNMENT
-------------------------------------------------------------------------------*/
.alignmiddle {
	display: grid;
	place-items: center;
	justify-items: center;
	align-items: center;
}
.alignfull,
.alignwide {
	margin-left: calc( -100vw / 2 + 100% / 2 );
	margin-right: calc( -100vw / 2 + 100% / 2 );
	max-width: 100vw;
	width: 100vw;
}
@media only screen and ( min-width: 980px ) {
	.alignwide {
		margin-left: auto;
		margin-right: auto;
		max-width: 1300px;
		width: 100%;
	}
}
@media (min-width: 768px) {
	.alignleft,
	.alignright {
		max-width: 400px;
		margin: 0.5em 1em 0.5em 1em;
	}
	.alignleft {
		float: left;
		margin: 0.25em 1em 0.5em 0;
	}
	.alignright {
		float: right;
		margin: 0.25em 0 0.5em 1em;
	}
	.alignleft img,
	.alignright img {
		width: 100%;
	}
}


/* UTILITY: LISTS
-------------------------------------------------------------------------------*/
.list-reset {
	margin: 0;
	padding: 0;
}
.list-reset li {
	list-style: none;
}


/* UTILITY: TABLES
-------------------------------------------------------------------------------*/
table tbody td,
table tbody th,
table tfoot td,
table tfoot th,
table thead td,
table thead th {
	padding: 0.35em 0;
}
.table-grid {
	margin: 0;
}
.table-grid td {
	vertical-align: top;
}
.table-grid p {
	margin-bottom: 0;
	line-height: 1.5;
}
.table-grid tr:last-child td {
	border-bottom: 0;
}
.table-grid h1,
.table-grid h2,
.table-grid h3 {
	margin-top: 0;
}


/* UTILITIES: SEPARATOR
-------------------------------------------------------------------------------*/
hr, .hr {
	background: var(--color-charcoal);
	border: 0;
	height: 1px;
	margin-top: 50px;
	margin-bottom: 50px;
}
hr.wp-block-separator {
	margin: 1.5em auto;
	height: 4px !important;
}
hr.wp-block-separator.is-style-wide {
	height: 1px !important;
	border: none;
}


/* UTILITIES: EMBED
-------------------------------------------------------------------------------*/
.iframe-container {
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
}
.iframe-container iframe {
	border: 0;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.wp-block-gallery img {
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 0 auto 2em auto;
}


/* UTILITIES: FLAIR
-------------------------------------------------------------------------------*/
.is-bordered {
	border: 1px solid var(--color-ink);
}
.is-photo-circle {
	border-radius: 50% !important;
}
.is-icon-circle {
	display: flex;
	align-content: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 100px;
	margin: 0 auto 30px auto !important;
}
.is-title {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
	

/* COMPONENTS: EXCERPT
-------------------------------------------------------------------------------*/
.excerpt {
	background-color: var(--color-white);
	margin: 0;
	margin-bottom: 32px;
}
.excerpt-image {
	padding: 0;
	line-height: 0;
	border-width: 0 0 1px 0;
	background-color: var(--color-silver);
}
.excerpt-image img {
	width: 100%;
	height: 100%;
	max-height: 300px;
	object-fit: cover;
}
.excerpt-wrap {
	padding: 40px 32px;
}
.excerpt-title {
	line-height: 1;
	padding-right: 3%;
}
.excerpt-title a {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.4px;
	font-weight: 600;
}
.excerpt-content {
	font-size: 15.5px;
	color: var(--color-ink);
}
.excerpt-more {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
@media (min-width: 768px) {
	.excerpt-image {
		 border-width: 0 1px 0 0;
	}
	.excerpt-thumb {
		max-height: inherit;
	}
}

/* COMPONENTS: THUMBNAIL
-------------------------------------------------------------------------------*/
.thumbnails {
	flex-flow: row wrap;
	margin: 0 -5px;
}
.thumbnail {
	width: 100%;
	border: 5px solid transparent;
}
@media (min-width: 481px) {
	.thumbnail {
    	width: 50%;
	}
}
@media (min-width: 650px) {
	.thumbnail {
    	width: 25%;
	}
}

.thumbnail a {
	display: block;
	position: relative;
	line-height: 0;
}
.thumbnail img {
	width: 100%;
}
.thumbnail-hover {
	background-color: rgba(36, 35, 33, .90);
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
.thumbnail h2 {
	font-size: 16px;
	color: var(--color-white);
	text-align: center;
	font-weight: 600;
	height: 100%;
	padding: 40px;
	line-height: 1.5;
}


/* Animations */
.thumbnail .thumbnail-hover,
.thumbnail:hover .thumbnail-hover,
.thumbnail h2,
.thumbnail:hover h2 {
	transition:
		opacity .1s ease-in,
		transform .2s ease-out;
}
.thumbnail .thumbnail-hover {
	opacity: 0;
}
.thumbnail:hover .thumbnail-hover {
  opacity: 1;
}
.thumbnail h2 {
	position: relative;
	transform: translateY(8px);
	opacity: 0;
}
.thumbnail:hover h2 {
	top: 0;
	transform: translateY(0px);
	opacity: 1;
}


/* COMPONENTS: META
-------------------------------------------------------------------------------*/
.meta {
	font-size: 14px;
	line-height: 20px;
}
.meta span {
	display: inline-block;
	margin-right: 10px;
}
.meta .svg-symbol {
	display: inline-block;
	width: 20px;
	height: 20px;
	fill: #BBB;
}
.meta a {
	color: var(--color-charcoal);
}
.meta a:hover {
	color: var(--color-black);
}


/* COMPONENTS: BOX
-------------------------------------------------------------------------------*/
.cards {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 10px;
	padding: 0 10px;
}
.cards li,
.cards.is-grid li {
	width: 100%;
	overflow: hidden;
	border-radius: 3px;
	background-color: var(--color-white);
	transform: box-shadow 0.1s ease-in;
	margin: 0;
}
.cards li:hover {
	box-shadow: 0 0 1px rgba(0,0,0,0.3);
}
.cards li a {
	display: inline-block;
	color: #000;
}
@media (min-width: 768px) {
	.cards {
		gap: 16px;
		padding: 0 18px;
	}
	.cards li {
		flex: 0 48%;
	}
}
@media (min-width: 980px) {
	.cards {
		gap: 24px;
	}
	.cards li {
		flex: 0 31%;
	}
}


/* COMPONENTS: SECTION
-------------------------------------------------------------------------------*/
.section-title {
	margin-top: 0;
	margin-bottom: 24px;
	min-height: 200px;
}


/* COMPONENTS: PAGINATION
-------------------------------------------------------------------------------*/
.pagination {
	border: 1px solid var(--color-ink);
}
.pagination .page-numbers {
	background: var(--color-white);
	color: var(--color-black);
	padding: 8px 16px;
	margin: 0 8px;
	border: 1px solid transparent;
}
.pagination a:hover {
	background: var(--color-black);
	color: var(--color-white);
	text-decoration: none;
	border: 1px solid var(--color-ink);
}
.pagination .current {
	color: var(--color-black);
	background: var(--color-white);
	border: 1px solid var(--color-ink);
}
.pagination .dots {
	display: none;
}


/* COMPONENTS: ENTRY
-------------------------------------------------------------------------------*/
.entry-featured {
	width: 100%;
}
.entry-hero {
	margin-bottom: 48px;
}
.entry-title {
	width: 100%;
	margin: 0;
	min-height: 200px;
	padding: 0 1em;
	text-align: center;
}
.entry-meta {
	text-align: center;
	padding: 18px;
	border-top: 0;
}
.entry-comments {
	margin-bottom: 50px;
}


/* COMPONENTS: COMMENTS
-------------------------------------------------------------------------------*/
.comments-title {
	padding: 18px;
	border: 1px solid var(--color-black);
	margin-bottom: 1em;
	margin-top: 50px;
}
.comments-list {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 50px;
}
.comment {
	margin: 1em 0 2em 0;
	border-top: 1px solid var(--color-silver);
}
.comment:first-of-type {
	border-top: 0;
}
.comment.thread-alt {
	margin-left: 50px;
}
.comment-head {
	display: flex;
	margin-top: 20px;
}
.comment-head .avatar {
	width: 50px;
	height: 50px;
	border-radius: 50px;
	margin: 0 10px 0 0;
}
.comment-meta {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
}
.comment-author {
	font-size: 20px;
	color: var(--color-black);
}
.comment-date {
	font-size: 12px;
}
.comment-date a {
	color: var(--color-charcoal) !important;
}
.comment-reply-title {
	padding: 18px;
	border: 1px solid var(--color-black);
}
.comment-respond label {
	display: block;
	font-weight: bold;
	color: var(--color-black);
}
.comment-respond textarea {
  width: 100%;
	max-width: 100%;
	border: 1px solid var(--color-black);
}
.comment-form-cookies-consent label {
	font-weight: normal;
	display: inline-block;
	
}
.akismet_comment_form_privacy_notice {
	font-size: 12px;
}


/* COMPONENTS: FILTER BUTTONS
-------------------------------------------------------------------------------*/
.filter-group {
	margin: 10px -5px 30px -5px;
	flex-flow: column nowrap;
}
@media (min-width: 650px) {
	.filter-group {
		flex-flow: row nowrap;
	}
}
.filter-button {
	padding: 5px 10px;
	margin: 5px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 600;
	border: 1px solid var(--color-silver);
}
.filter-button:hover {
	transform: translateY(0);
	cursor: pointer;
	border-color: var(--color-black);
}
.filter-button.is-active {
	border-color: var(--color-charcoal);
	background-color: var(--color-charcoal);
	color: var(--color-white) !important;
}


/* COMPONENTS: SINGLE NAV
-------------------------------------------------------------------------------*/
.single-toolbar {
	margin-top: 70px;
	margin-bottom: 70px;
}
.single-nav {
	display: flex;
	flex-flow: column;
	align-items: stretch;
	height: 100%;
	padding: 1em;
	font-weight: 500;
}
.single-nav:hover {
	background-color: #F0F0F0;
}
.single-home a {
	display: flex;
	align-items: center;
	justify-content: center;
}
.single-home svg {
	width: 40px;
	height: 40px;
}


/* BLOCKS: GALLERY
-------------------------------------------------------------------------------*/
.blocks-gallery-caption,
.blocks-gallery-caption a {
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: normal;
	font-style: normal;
	letter-spacing: -0.2px;
	text-align: right;
}


/* STRUCTURE: HEADER
-------------------------------------------------------------------------------*/
.header {
	overflow: hidden;
}
.header a,
.header a:hover {
	text-decoration: none;
}
a.header-logo {
	color: var(--color-black);
	text-transform: uppercase;
	font-size: 26px;
}
.header-menu li {
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
	padding: 6px 15px;
}
.header-menu li:last-of-type {
	margin-right: -15px;
}


/* STRUCTURE: MOBILE NAV
-------------------------------------------------------------------------------*/
.mobnav-toggle {
	position: absolute;
	overflow: hidden;
	top: 0;
	right: 15px;
	width: 48px;
	height: 48px;
	padding: 17px 11px;
	transition: all 300ms ease-in-out;
}
.mobnav-toggle:hover {
	background-color: #F0F0F0;
}
.mobnav-toggle:before,
.mobnav-toggle:after {
	background-color: var(--color-charcoal);
	content: '';
	display: block;
	height: 3px;
	width: 26px;
	transition: all 300ms ease-in-out;
}
.mobnav-toggle:hover:before,
.mobnav-toggle:hover:after {
	background-color: var(--color-black);
}
.mobnav-toggle:before {
	margin-bottom: 8px;
}
.mobnav.mm-spn--light {
	background: var(--color-white) !important;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-weight: 600;
	font-size: 16px;
}


/* STRUCTURE: FOOTER
-------------------------------------------------------------------------------*/
.footer {
	font-size: 13px;
}
.footer,
.footer a {
	color: var(--color-charcoal);
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
}
.footer h2 {
	color: #FBAF3D;
}
.footer img {
	max-width: 129px;
}


/* OVERRIDES
-------------------------------------------------------------------------------*/
.mwl {
	background: rgba(0,0,0,0.8); 
}
li.post-attachment {
	background: none !important;
	padding-left: 0 !important;
}