/*!
Theme Name: FOB (NEW)
Theme URI: http://voidthemes.net
Author: Void Themes
Author URI: http://voidthemes.net
Description: An easy to use, customizable, responsive Wordpress theme
Version: 1.0
Requires at least: 5.0
Text Domain: void-wp01
Tags: blog, grid-layout, one-column, two-columns, left-sidebar, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks
*/
/* >>> TABLE OF CONTENTS:
------------------------------------------
1.0 - Colors and Fonts
2.0 - Global Styling
	2.1 - Typography
	2.2 - Elements
	2.3 - Forms
3.0 - Structure
4.0 - Navigation
	4.1 - Links
	4.2 - Primary Menu
	4.3 - Pagination
5.0 - Header
	5.1 - Site Header
	5.2 - Mobile Header
6.0 - Content
	6.1 - General styling 
	6.2 - Posts grid (blog, gallery, video)
	6.3 - Singular
	6.4 - Gallery / Video archives
	6.5 - Gallery single
	6.6 - Discography
	6.7 - Videography
	6.8 - Archive, Search Results
	6.9 - 404, Search No Results
7.0 - Footer
8.0 - Blocks
9.0 - Features
10.0 - Plugins
11.0 - Utilities
------------------------------------------ */


/* 1.0 Colors and Fonts
------------------------------------------ */
:root {
	--font-primary: "Roboto Condensed", Helvetica, Arial, Verdana, sans-serif;
	--font-secondary: "Sofia Sans Condensed", "Palatino Linotype", "Book Antiqua", Palatino, serif; 

  --color-accent: #4eaba1;
  --color-accent-alt: #126d76;
  --color-background: #ffffff;
	--color-background-alt: #f2f2f2;
	--color-background-mobile: #153449;
  --color-site-title: #ffffff;
  --color-primary: #8c8c8c;
  --color-secondary: #2e2e2e;
  --color-link: var(--color-accent);
  --color-hover: var(--color-secondary);
  --color-050: #f6f6f6;
  --color-100: #e6e6e6;
  --color-200: #cbcbcb;
  --color-300: #a9a9a9;
  --color-400: #8c8c8c;
  --color-500: #5c5c5c;
  --color-600: #565656;
  --color-700: #2e2e2e;
	--color-contrast-dark: #2e2e2e;
	--color-contrast-light: #ffffff;
  --color-rgba: 0, 0, 0;
}


/* 2.0 Global Styling
------------------------------------------ */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
}
body {
  background: var(--color-background);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}
body.no-sidebar {
  overflow-x: hidden;
}

/* 2.1 Typography
------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.2;
}
h1 {
  font-size: 23px;
}
h2 {
  font-size: 20.24px;
}
h3 {
  font-size: 17.48px;
}
h4 {
  font-size: 15.64px;
}
h5, h6 {
  font-size: 12.88px;
}
em, i {
  color: var(--color-600);
  font-style: italic;
}
b, strong {
  font-weight: 700;
}
u {
  text-decoration: underline solid var(--color-accent) 1px;
}

/* 2.2 Elements
------------------------------------------ */
/* Horizontal line --------------- */
hr {
  height: 1px;
  background: rgba(var(--color-rgba), 0.08);
}

/* Lists --------------- */
ul,
ol {
  padding-left: 36px;
}
ul {
  list-style: square;
}
ol {
  list-style: decimal;
  counter-reset: item;
}

/* 2.3 Forms
------------------------------------------ */
label {
  display: block;
  color: var(--color-600);
  font-size: 11px;
  text-transform: uppercase;
}
input,
textarea,
select {
  max-width: 380px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(var(--color-rgba), 0.2);
  background: transparent;
  color: var(--color-primary);
  font-size: 13px;
}
input[type="checkbox"],
input[type="radio"] {
  width: auto;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  width: auto;
  padding: 10px 16px;
  border: none;
  background: var(--color-secondary);
  color: var(--color-200);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: var(--color-accent);
  color: var(--color-contrast-100);
}
::placeholder {
  color: var(--color-primary);
  opacity: 0.6;
}


/* 3.0 Structure
------------------------------------------ */
.wrap {
  max-width: 1104px;
  margin: 0 auto;
}
.site-content {
  width: 100%;
  margin: 20px auto 60px auto;
}
.content-full {
  width: 100%;
}
.content-medium {
  width: 74%;
  margin: 0 auto;
}
.content-small {
  width: 73%;
}
.content-side {
  width: 25%;
}
.content-div {
	display: flex;
	flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1120px) {
  .wrap {
    max-width: calc(100% - 60px);
  }
}
@media screen and (max-width: 900px) {
  .content-full,
	.content-medium,
	.content-small,
  .content-side 	{
    width: 100%;
  }
	.content-side {
    margin-bottom: 18px;
  }
	.content-div {
		flex-direction: row;
		flex-wrap: wrap;
	}
}


/* 4.0 Navigation
------------------------------------------ */
/* 4.1 Links
------------------------------------------ */
a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--color-hover);
}

/* 4.2 Primary Menu
------------------------------------------ */
.main-navigation {
}
.main-navigation a {
  display: block;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
}
.main-navigation a:hover,
.main-navigation a:focus {
	color: #ffffff;
}
.main-navigation ul {
  display: block;
  padding-left: 0;
  text-align: center;
}
.main-navigation li {
  position: relative;
  display: inline-block;
}
.main-navigation li:not(.dark-mode):hover {
  background: rgba(0, 0, 0, 0.25);
}
.main-navigation ul ul {
  float: left;
  position: absolute;
  left: -999em;
  background: rgba(0, 0, 0, 0.25);
  z-index: 99999;
}
.main-navigation ul ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  text-align: left;
	line-height: 24px;
}
.main-navigation ul ul li:last-of-type {
  border-bottom: none;
}
.main-navigation ul ul a {
  width: 220px;
  padding: 6px 12px;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
  margin-top: 0px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}
.main-navigation .menu-item-has-children a,
.main-navigation .page_item_has_children a {
  padding-right: 18px;
}
.main-navigation .menu-item-has-children:after,
.main-navigation .page_item_has_children:after,
.main-navigation .sub-menu .menu-item-has-children:after,
.main-navigation .sub-menu .page_item_has_children:after {
  content: "\f107";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  transform: translateY(-50%);
}
.main-navigation .sub-menu .menu-item-has-children:after,
.main-navigation .sub-menu .page_item_has_children:after {
  content: "\f105";
}

/* 4.3 Pagination
------------------------------------------ */
.pagination {
  margin: 18px auto 0 auto!important;
  color: var(--color-400);
  font-size: 13px;
	font-style: italic;
	text-transform: lowercase;
  text-align: center;
}
.pagination .nav-links {
	display: inline-block;
	border-bottom: 1px solid rgba(var(--color-rgba), 0.08);
}
.pagination .page-numbers {
  display: inline-block;
  padding: 6px!important;
  margin: 0 4px 0 0;
  text-decoration: none;
}
.pagination .page-numbers:last-of-type {
	margin: 0;
}
.pagination .current {
  color: var(--color-secondary);
}
.pagination a {
  color: var(--color-400);
}
.pagination a:hover,
.pagination a:focus {
  color: var(--color-accent);
}
.pagination a.next:after,
.pagination a.prev:before {
  content: "\f105";
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
}
.pagination a.prev:before {
  content: "\f104";
}


/* 5.0 Header
------------------------------------------ */
/* 5.1 Site Header
------------------------------------------ */
.site-header {
	position: relative;
  width: 100%;
  min-height: 48px;
}
.site-navigation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.site-navigation .wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 0;
}

/* Site branding --------------- */
.site-branding {
}

/* Site title --------------- */
.site-title {
  margin: 0px;
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.site-title,
.site-title a {
  color: var(--color-site-title);
}

/* Custom header --------------- */
.custom-header {
  position: relative;
	min-height: 140px;
	padding-bottom: min(43.71%, 420px);
  background-image: url(images/header.jpg);
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}

/* 5.2 Mobile Header
------------------------------------------ */
.mobile-header {
  background: var(--color-background-mobile);
  color: rgba(255,255,255, 0.65);
}
.mobile-header-bar {
  display: flex;
  align-items: center;
  padding: 16px 10px;
}
.mobile-header a,
.mobile-header .dark-mode-button,
.mobile-header .social-navigation a {
  color: rgba(255,255,255, 0.65);
}
.mobile-header a:hover,
.mobile-header .fa-solid:hover,
.mobile-header .dark-mode-button:hover,
.mobile-header .social-navigation a:hover{
  color: rgba(255,255,255, 0.90);
}
.mobile-header-branding {
	width: calc(100% - 90px);
}
.mobile-header-title,
.mobile-header-title a {
  color: rgba(255,255,255, 0.75);
  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 1.2;
	text-transform: uppercase;
}
.mobile-header-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
  width: 90px;
	padding-right: 2px;
}
.mobile-header > div:not(.mobile-header-bar) {
  display: none;
}
.mobile-header-nav > div {
  width: 26px;
  text-align: right;
  cursor: pointer;
}
.mobile-header-nav > div span {
  font-size: 13px;
}

/* Search and social navigation --------------- */
.mobile-header-search,
.mobile-header-social {
  padding: 18px 0px;
  border-top: 1px solid rgba(255,255,255, 0.08);
  text-align: center;
}
.mobile-header-social {
  padding: 14px 0px;
}
.mobile-header-search input {
	width: 86%;
  max-width: 400px!important;
	margin: 0!important;
  color: rgba(255,255,255, 0.65);
	border-color: rgba(255,255,255, 0.35);
}

/* Mobile Navigation --------------- */
.mobile-header-menu {
  padding: 0;
  border-top: 1px solid rgba(255,255,255), 0.08);
}
@media screen and (max-width: 900px) {
  .mobile-navigation a {
		display: block;
		padding: 14px 20px;
		font-size: 11px;
    text-transform: uppercase;
  }
  .mobile-navigation ul {
    padding: 0;
    list-style: none;
  }
	.mobile-navigation ul ul a {
		padding-left: 30px;
	}
	.mobile-navigation ul ul ul a {
		padding-left: 40px;
	}
  .mobile-navigation li {
		position: relative;
    line-height: 1;
  }
	.mobile-navigation li:before {
    content: "";
    position: absolute;
		top: 0;
		left: 0;
    width: 100%;
    height: 1px;
		background: rgba(255,255,255, 0.08);
  }
  .mobile-navigation > ul > li:first-of-type:before {
    background: transparent;
  }
  .mobile-navigation li.menu-item-has-children:after {
    content: "\f107";
    display: inline-block;
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
  }
  .mobile-navigation li.menu-item-has-children.menu-item-has-children-open:after {
    content: "\f106";
  }
  .mobile-navigation ul.sub-menu {
    display: none;
  }
  .mobile-navigation ul.sub-menu.sub-menu-open {
    display: block;
  }
}


/* 6.0 Content
------------------------------------------ */
/* 6.1 General styling 
------------------------------------------ */
/* Featured image --------------- */
.post-thumbnail {
  width: 100%;
  max-height: 320px;
  z-index: 0;
  overflow: hidden;
	margin: 0 0 16px 0;
}
.post-thumbnail img {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  border: none;
}

/* Titles --------------- */
.entry-title,
.page-title,
.secondary-title {
	position: relative;
  margin: 0 0 12px 0;
	padding: 0 0 4px 0;
  font-family: var(--font-secondary);
  font-size: 24px;
  text-transform: uppercase;
	text-align: center;
}
.secondary-title {
	font-size: 20px;
}
.entry-title:after,
.page-title:after,
.secondary-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: calc(50% - 50px);
	height: 2px;
	width: 100px;
	background: var(--color-accent);
}
.entry-title,
.entry-title a,
.page-title,
.secondary-title {
	color: var(--color-secondary);
}
.entry-title a:hover {
	color: var(--color-accent-alt);
}

/* Entry meta --------------- */
.entry-meta {
	margin: 8px 0 0 0;
  font-size: 13px;
  font-style: italic;
  text-transform: lowercase;
  text-align: center;
  line-height: 1;
}
.entry-meta,
.entry-meta a {
	color: var(--color-300);
}
.entry-meta a:hover {
	color: var(--color-500);
}
.entry-meta > div {
  position: relative;
  display: inline-block;
  padding-left: 58px;
}
.entry-meta > div:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0px;
  width: 50px;
  height: 1px;
  background: var(--color-200);
}
.entry-meta > div > span {
  display: inline-block;
}
.entry-meta > div > span + span:before {
  content: "\2022";
  margin: 0 6px;
	font-size: 11px;
}

/* 6.2 Posts grid (blog, gallery, video)
------------------------------------------ */
#mgrid {
  margin: 0 0 0 -18px;
}
#mgrid .entry {
	display: block;
  float: left;
  width: calc(33.333333% - 18px);
	padding: 16px;
	margin: 0 0 18px 18px;
	background: var(--color-background-alt);
}
#mgrid .entry-header,
.recent-posts .entry-header {
	margin: 0 0 4px 0;
}
#mgrid .entry-title,
.recent-posts .entry-title {
	padding: 0 0 4px 0;
	margin: 0;
  font-size: 19px;
}
.recent-posts .entry-title,
.post-type-archive-gallery #mgrid .entry-title,
.post-type-archive-videos #mgrid .entry-title {
  font-size: 17px;
}
#mgrid .entry-title:after,
.recent-posts .entry-title:after {
	left: calc(50% - 25px);
	height: 1px;
	width: 50px;
}
#mgrid .entry-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; 
  -webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 6px 0 0 0;
	font-size: 14px;
	line-height: 1.55;
}
@media screen and (max-width: 720px) {
	#mgrid .entry {
		width: calc(50% - 18px);
	}
}
@media screen and (max-width: 470px) {
	#mgrid {
		margin: 0;
	}
	#mgrid .entry {
		width: 100%;
		margin: 0 0 18px 0;
	}
}

/* 6.3 Singular
------------------------------------------ */
/* Entry Content --------------- */
.entry-content {
  margin: 24px 0 0 0;
}
.entry-content > * {
  max-width: 100%;
  margin: 0 auto 18px auto;
}
.entry-content > *:last-child,
.entry-content > * > *:last-child {
  margin-bottom: 0;
}

/* Images --------------- */
.entry-gallery img {
	border: 8px solid var(--color-background-alt);
}
.entry-content img:hover {
	border-color: var(--color-200);
}

/* 6.4 Gallery / Video archives 
------------------------------------------ */
/* Archives side menu --------------- */
.content-side {
	padding: 16px;
	background: var(--color-background-alt);
}
.content-menu {
	width: 100%;
}
.content-menu .menu-item {
	padding: 0 4px 12px 4px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(var(--color-rgba), 0.08);
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
}
.content-menu .menu-item a {
	color: var(--color-500);
}
.content-menu .menu-item a:hover {
	color: var(--color-accent);
}
.menu-cat {
	font-family: var(--font-secondary);
	font-size: 18px;
}
.menu-subcat {
	margin: 3px 0 0 0;
	font-size: 11px;
	line-height: 1.4;
}
.menu-subcat a {
	padding: 0 2px;
}

/* Archives search --------------- */
.content-search{
	background: var(--color-100);
	height: 35px;
}
.content-search input[type=text],
.content-search input[type=submit] {
	height: 35px;
	background: transparent;
	border: none;
}
.content-search input[type=text] {
	width: 83%;
	padding: 10px;
}
.content-search input[type=submit] {
	width: 15%;
	color: var(--color-200);
	font-family:'Font Awesome 6 Free';
	font-size: 13px;
}
.content-search input:focus,
.content-search input:hover{
	border: none;
}

/* 6.5 Gallery single
------------------------------------------ */
article.gallery {
	display: block;
}
.entry-gallery {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media screen and (max-width: 600px) {
	.entry-gallery {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
}
@media screen and (max-width: 400px) {
	.entry-gallery {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
}

/* 6.6 Discography
------------------------------------------ */
.void-discography-section:not(:last-of-type) {
	margin: 0 0 56px 0
}
.void-discography-section-title {
	position: relative;
  margin: 0 0 12px 0;
	padding: 0 0 6px 0;
	color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: 20px;
  text-transform: uppercase;
	text-align: center;
}
.void-discography-section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: calc(50% - 50px);
	height: 2px;
	width: 100px;
	background: var(--color-accent);
}
.void-discography-info {
	display: flex;
	flex-direction: row;
  align-items: flex-start;
	margin: 24px 0 0 0;
}
.void-discography-cover {
  width: 50%;
  padding-right: 20px;
}
.images-slider {
	margin: 0 0 12px 0;
}
.discography-links {
  font-size: 10px;
  text-transform: uppercase;
	text-align: center;
	line-height: 1;
}
.discography-links > span + span:before {
  content: "\2022";
  margin: 0 6px;
	font-size: 11px;
}
.discography-links a {
	color: var(--color-500);
}
.discography-links a:hover {
	color: var(--color-accent);
}
.void-discography-details {
	width: 50%;
}
@media screen and (max-width: 540px) {
	.void-discography-info {
		flex-direction: column;
	}
	.void-discography-cover,
	.void-discography-details {
		width: 100%;
	}
	.void-discography-cover {
		padding-right: 0;
		margin-bottom: 20px;
	}
}

/* Lyrics --------------- */
.void-discography-lyrics > div:first-of-type .void-discography-lyrics-accordion {
	margin-top: 0px;
}
.void-discography-lyrics-accordion-item {
	overflow: hidden;
}
.void-discography-lyrics-accordion {
  position: relative;
  display: table;
  width: 100%;
	padding: 8px;
  border-bottom: 1px solid rgba(var(--color-rgba), 0.05);
  cursor: pointer;
}
.void-discography-lyrics > div:last-of-type .void-discography-lyrics-accordion {
	padding-bottom: 0;
	border-bottom: none;
}
.void-discography-lyrics > div:last-of-type .void-discography-lyrics-accordion.active {
	padding: 8px;
	border-bottom: 1px solid rgba(var(--color-rgba), 0.05);
}
.void-discography-lyrics-accordion-title,
.void-discography-lyrics-accordion-duration {
  display: table-cell;
  vertical-align: middle;
  line-height: 16px;  
}
.void-discography-lyrics-accordion-title {
  padding-right: 15px;
	color: var(--color-500);
  font-size: 11px;
	line-height: 1.3;
	text-transform: uppercase;
}
.void-discography-lyrics-accordion-duration {
  width: 35px;
  font-size: 10px;
}
.void-discography-lyrics-accordion-duration:after {
  content: '\2B63'!important;
  position: absolute;
  top: calc(50% - 7px);
  right: 5px;
  font-size: 14px;
}
.void-discography-lyrics > div:last-of-type .void-discography-lyrics-accordion-duration:after {
	top: calc(50% - 1px);
}
.void-discography-lyrics > div:last-of-type .active .void-discography-lyrics-accordion-duration:after {
	top: calc(50% - 7px);
}
.active .void-discography-lyrics-accordion-duration:after {
  content: '\2B61'!important;
}
.void-discography-lyrics-accordion-panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: all 0.2s ease-out;
  opacity: 0;
}
.active .void-discography-lyrics-accordion-panel {
	opacity: 1;
}
.void-discography-lyrics-accordion-panel div {
  padding: 5px 12px;
  border-bottom: 1px solid rgba(var(--color-rgba), 0.05);
}
.void-discography-lyrics-accordion-panel div p,
.void-discography-lyrics-accordion-panel div {
  margin: 0;
  font-size: 12px;
	line-height: 1.6;
}


/* Music videos and singles --------------- */
.void-discography-videos-item,
.void-discography-single-item {
	padding: 16px;
	background: var(--color-background-alt);
}
.void-discography-videos-img img,
.void-discography-single-cover img {
	padding: 0!important;
	margin: 0!important;
	border: 0!important;
	box-shadow: none!important;
}
.void-discography-videos-title,
.void-discography-single-title {
  margin: 8px 0 2px 0;
	color: var(--color-500);
  font-size: 11px;
	font-weight: bold;
  text-transform: uppercase;
	line-height: 1.3;
}
.void-discography-videos-details,
.void-discography-single-details {
	font-size: 10px;
  text-transform: uppercase;
	line-height: 1;
}

/* Music videos --------------- */
.void-discography-videos {
  display: grid;
	grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.void-discography-videos-info {
	padding: 0 6px;
	text-align: center;
}
.void-discography-videos-title,
.void-discography-videos-details {
	text-align: center;
}
@media screen and (max-width: 620px) {
	.void-discography-videos {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 420px) {
	.void-discography-videos {
		grid-template-columns: 1fr;
	}
}

/* Singles --------------- */
.void-discography-single {
	padding: 0 0 8px 0;
  display: grid;
	grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.void-discography-single-item {
  display: table;
}
.void-discography-single-cover,
.void-discography-single-info {
	display: table-cell;
	vertical-align: middle;
}
.void-discography-single-cover {
  width: 80px;
  padding: 6px 10px 6px 0;
  border-right: 1px solid rgba(var(--color-rgba), 0.05);
}
.void-discography-single-info {
	padding-left: 10px;
}
.void-discography-single-title {
	margin: 0 0 2px 0;
}
.void-discography-single-details div {
	margin-top: 5px;
}
@media screen and (max-width: 720px) {
	.void-discography-single {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 480px) {
	.void-discography-single {
		grid-template-columns: 1fr;
	}
}

/* 6.7 Videography
------------------------------------------ */
.videography {
	position: relative;
	padding: 10px 0;
	margin-top: 24px;
	margin-bottom: 0;
}
.videography:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -1px;
	height: 100%;
	width: 2px;
	background: var(--color-background-alt);
}
.timeline-block {
	position: relative;
	margin: 0;
}
.timeline-block:not(:first-child) {
	margin: -80px 0 0 0;
}
.timeline-mark {
	position: absolute;
	top: 0;
	width: 10px;
	height: 10px;
	left: 50%;
	margin-left: -5px;
	background: var(--color-accent);
	border-radius: 50%;
}
.timeline-mark:before {
	content: "";
	position: absolute;
	width: 30px;
	height: 1px;
	top: 5px;
	left: -24px;	
	background: var(--color-accent);
}
.timeline-block:nth-child(even) .timeline-mark:before {
	left: 6px;
}
.timeline-content {
	position: relative;
	margin: 0px;
	padding: 16px;
	width: 45%;
	background: var(--color-background-alt)
}
.timeline-block:nth-child(even) .timeline-content {
	float: right;
}
.timeline-img img {
	width:100%;
	padding: 0;
	margin:0;
	border:0;
}
.timeline-title {
  margin: 8px 0 2px 0;
	color: var(--color-500);
  font-size: 11px;
	font-weight: bold;
	text-align: center;
  text-transform: uppercase;
	line-height: 1.3;
}
.timeline-date {
	font-size: 10px;
  text-transform: uppercase;
	text-align: center;
	line-height: 1;
}
@media screen and (max-width: 740px) {
	.timeline-mark:before {
		width: 24px;
		left: -18px;
	}
}
@media screen and (max-width: 620px) {
	.timeline-mark:before {
		width: 18px;
		left: -12px;
	}
}
@media screen and (max-width: 520px) {
	.videography:before {
		left: 8%;
		margin-left: 0;
	}
	.timeline-block:not(:first-child) {
		margin: 20px 0 0 0;
	}
	.timeline-mark {
		left: calc(8% - 4px);
		margin-left: 0;
	}
	.timeline-mark:before,
	.timeline-block:nth-child(even) .timeline-mark:before {
		left: 8%;
		width: 30px;
	}
	.timeline-content,
	.timeline-block:nth-child(even) .timeline-content {
		float: left;
		margin-left: calc(8% + 38px);
		width: calc(84% - 38px);
	}
}

/* 6.8 Archive, Search Results
------------------------------------------ */
.page-header {
  margin: 0 0 32px 0;
}
.archive .page-title {
  margin-bottom: 6px;
}
.archive-description {
  margin: -4px 0 0 0;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1.6;
}
.page-content {
	text-align: center;
}

/* 6.9 404, Search No Results
------------------------------------------ */
.error-404 .page-title {
  text-align: center;
}
.page-content > * {
  max-width: 100%;
  margin: 0 auto 18px auto;
}
.page-content > *:last-child {
  margin-bottom: 0;
}
.error404 .page-content {
  text-align: center;
}
.error404 .page-content .search-form input,
.search-no-results .page-content .search-form input {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .error404 .page-content .search-form input,
  .search-no-results .page-content .search-form input {
    width: 90%;
  }
}

/* Recent posts --------------- */
.recent-posts {
  margin: 36px 0 0 0;
}
.recent-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
}
.recent-posts-grid article {
  padding: 16px;
	background: var(--color-background-alt);
}
@media screen and (max-width: 700px) {
	.recent-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	.recent-posts-grid article:nth-of-type(n+3) {
    display: none;
  }
}
@media screen and (max-width: 470px) {
  .recent-posts-grid {
    grid-template-columns: 1fr;
		grid-row-gap: 18px;
  }
}


/* 7.0 Footer
------------------------------------------ */
.site-footer {
	display: flex;
	align-items: center;
	height: 80px;
	margin-top: 24px;
  background-image: url(images/footer.jpg);
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}

/* Copyright --------------- */
.site-info {
	display: inline-block;
	padding: 4px 6px;
	color: rgba(255,255,255, 0.85);
  line-height: 1.4;
}
.site-info span {
  padding: 0 6px;
  font-size: 10px;
  text-transform: uppercase;
}
.site-info a {
	color: rgba(255,255,255, 0.85);
	border-bottom: 1px solid rgba(255,255,255, 0.35);
}
.site-info a:hover {
	color: #ffffff;
}


/* 8.0 Blocks
------------------------------------------ */
/* General Block Styles
------------------------------------------ */
/* Alignment (left / right) --------------- */
.has-text-align-center {
  text-align: center;
}
.has-text-align-left {
  text-align: left;
}
.has-text-align-right {
  text-align: right;
}
.entry .entry-content > *.alignleft {
  float: left;
  margin: 5px 18px 5px 0;
  max-width: 324px;
}
.entry .entry-content > *.alignright {
  float: right;
  margin: 5px 0 5px 18px;
  max-width: 324px;
}
@media screen and (max-width: 500px) {
  .entry .entry-content > *.alignleft,
  .entry .entry-content > *.alignright {
    float: none;
    margin: 18px 0!important;
    width: 100%;
    max-width: 100%;
  }
}

/* Alignment (wide / full) --------------- */
.no-sidebar .alignfull,
.no-sidebar .alignwide {
  position: relative;
  margin-left: calc( -100vw / 2 + 100% / 2);
  margin-right: calc( -100vw / 2 + 100% / 2);
  max-width: 100vw;
}
@media screen and (min-width: 952px) {
  .no-sidebar .alignwide {
    margin-left: -64px;
    margin-right: -64px;
    max-width: 992px;
  }
}

/* Figcaption --------------- */
.wp-block-table figcaption,
.wp-block-image figcaption,
.wp-block-gallery figcaption.blocks-gallery-caption,
.wp-block-audio figcaption,
.wp-block-video figcaption,
.wp-block-embed figcaption {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  line-height: 18px;
}

/* Text blocks
------------------------------------------ */
/* Paragraph --------------- */
p.has-background {
  padding: 20px 26px;
}
p.alignfull:not(.has-background) {
  padding: 0 26px;
}

/* Quote / Pullquote --------------- */
blockquote {
  position: relative;
  width: 90%;
  margin-left: 5%!important;
  padding: 6px 0px 6px 10px;
  border-left: 2px solid var(--color-accent);
  line-height: 1.5;
}
.wp-block-pullquote {
  position: relative;
  padding: 36px 18px 18px 18px;
  color: var(--color-600);
  border-top: 2px solid var(--color-600);
  border-bottom: 2px solid var(--color-600);
}
.wp-block-pullquote.has-background {
	border: none;
}
.wp-block-pullquote:before {
  content: "\275D";
  position: absolute;
  top: 18px;
  left: calc(50% - 8px);
  font-size: 30px;
  line-height: 1;
}
.wp-block-pullquote blockquote {
  width: 100%;
  padding: 0;
  margin: 0!important;
  border-left: none;
}
.wp-block-quote cite,
.wp-block-pullquote cite {
  display: block;
  margin-top: 0;
  font-size: 9px;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
}

/* Code / Prefomatted --------------- */
.wp-block-code {
  padding: 18px;
  border: 1px solid rgba(var(--color-rgba), 0.08);
}

/* Table --------------- */
.wp-block-table.is-style-stripes {
  border-bottom: none;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background: rgba(var(--color-rgba), 0.025);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background: rgba(var(--color-rgba), 0.01);
}
.wp-block-table thead,
.wp-block-table td,
.wp-block-table th {
  border: none;
}
.wp-block-table figcaption {
  margin-top: 6px;
  font-size: 13px;
}
.wp-block-table:not(.is-style-stripes) td {
  border-bottom: 1px solid rgba(var(--color-rgba), 0.08);
}

/* Details --------------- */
.wp-block-details {
	padding: 18px;
	background: rgba(var(--color-rgba), 0.045);
}
.wp-block-details summary {
	font-size: .83em;
	text-transform: uppercase;
}
.wp-block-details summary + * {
	margin: 4px 0 0 0;
}

/* Footnotes --------------- */
sup.fn a,
ol.wp-block-footnotes li a {
	color: var(--color-500);
}
sup.fn a {
	font-weight: 700;
}
sup.fn a:hover,
ol.wp-block-footnotes li a:hover {
	color: var(--color-accent);
}
ol.wp-block-footnotes {
	padding-left: 0px;
	font-size: .9em;
}
ol.wp-block-footnotes li:before {
	padding-right: 4px;
	color: var(--color-500);
	font-size: .9em;
	font-weight: 700;
}

/* Media blocks
------------------------------------------ */
/* Image --------------- */
.wp-block-image {
  max-width: 100%;
}

/* Gallery --------------- */
.wp-block-gallery img {
  margin: 0px;
}
.wp-block-gallery figure.wp-block-image {
  border: 4px solid transparent;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  width: calc(100% - 10px);
  padding: 6px 0 6px 0;
  margin: 0 0 5px 5px!important;
  background: rgba(0, 0, 0, 0.4);
}

/* Audio --------------- */
.wp-block-audio {
  line-height: 0;
}

/* Cover --------------- */
.wp-block-cover.alignwide {
  width: 992px;
}
.wp-block-cover.alignfull {
  width: 100vw;
}

/* File --------------- */
.wp-block-file a {
  color: var(--color-secondary);
  font-size: 12px;
}
.wp-block-file a:hover,
.wp-block-file a:focus {
  color: var(--color-accent);
}
.wp-block-file .wp-block-file__button {
  background: var(--color-secondary);
  color: var(--color-200);
  border-radius: 4px;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}
.wp-block-file .wp-block-file__button:hover,
.wp-block-file .wp-block-file__button:focus,
.wp-block-file .wp-block-file__button:active {
  background: var(--color-accent);
  color: var(--color-contrast-100);
}

/* Video --------------- */
.wp-block-video {
  line-height: 0;
}

/* Design blocks
------------------------------------------ */
/* Button --------------- */
.wp-block-button__link {
  border-radius: 7px;
  background-color: var(--color-secondary);
  color: var(--color-200);
}
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  background-color: var(--color-accent);
  color: var(--color-contrast-100);
}

/* Columns --------------- */
.wp-block-column > * {
  margin: 0px!important;
}
.wp-block-columns.alignfull .wp-block-column:first-child {
  padding-left: 18px;
}
.wp-block-columns.alignfull .wp-block-column:last-child {
  padding-right: 18px;
}
@media (min-width: 600px) {
  .wp-block-columns {
    flex-wrap: nowrap!important;
  }
}
@media (max-width: 600px) {
  .wp-block-columns {
    gap: 18px!important;
  }
  .wp-block-columns.alignfull .wp-block-column:first-child,
  .wp-block-columns.alignfull .wp-block-column:last-child {
    padding: 0 18px;
  }
}

/* Separator --------------- */
.wp-block-separator:not(.is-style-dots),
.wp-block-separator.is-style-wide {
  height: 0;
  width: 140px;
  margin-left: auto!important;
  margin-right: auto!important;
  border-top: none;
  border-bottom: 1px solid rgba(var(--color-rgba), 0.08);
}
.wp-block-separator.is-style-wide {
  width: 100%;
}
.wp-block-separator.is-style-dots::before {
  color: var(--color-secondary);
}

/* Spacer --------------- */
.wp-block-spacer {
  margin: 0!important;
}

/* Embed blocks
------------------------------------------ */
.wp-block-embed.alignwide embed,
.wp-block-embed.alignwide iframe,
.wp-block-embed.alignwide object,
.wp-block-embed.alignwide video,
.wp-block-embed.alignfull embed,
.wp-block-embed.alignfull iframe,
.wp-block-embed.alignfull object,
.wp-block-embed.alignfull video {
  width: 100%!important;
  max-width: 100%!important;
}


/* 9.0 Features
------------------------------------------ */
/* Back to top --------------- */
.back-to-top {
  display: inline-block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-size: 28px;
	line-height: 24px;
  text-align: center;
  opacity: 0;
  z-index: 10;
}
.back-to-top span {
  padding-top: 3px;
}
.back-to-top.back-to-top-is-visible {
  visibility: visible;
  opacity: .15;
}
.no-touch .back-to-top:hover,
.no-touch .back-to-top:focus,
.back-to-top:hover,
.back-to-top:focus {
  color: #fff;
  opacity: .3;
}
@media only screen and (max-width: 1024px) {
  .back-to-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .back-to-top {
    right: 10px;
    bottom: 10px;
  }
}

/* Dark mode --------------- */
.dark-mode-button {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  margin-left: 8px;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}
.dark-mode-button:hover,
.dark-mode-button:focus {
  color: #ffffff
}
.dark-mode-button.active:after {
  content: "\f185";
}
.dark-mode-button:after {
  content: "\f186";
}
@media screen and (max-width: 900px) {
  .mobile-navigation li.dark-mode {
    display: none;
  }
	.dark-mode-button {
		margin: 0;
		font-size: 13px;
	}
}
body.dark-mode {
	--color-accent: #126d76;
  --color-accent-alt: #126d76;
  --color-background: #222629;
	--color-background-alt: #1e2224;
  --color-primary: #909294;
  --color-secondary: #d2d3d4;
  --color-link: var(--color-accent);
  --color-hover: var(--color-secondary);
  --color-050: #383b3e;
  --color-100: #4e5153;
  --color-200: #646769;
  --color-300: #7a7c7e;
  --color-400: #909294;
  --color-500: #a6a8a9;
  --color-600: #bcbdbe;
  --color-700: #d2d3d4;
  --color-rgba: 255,255,255;
}
body.dark-mode .content-search{
	background: #292d2f;
}
body.dark-mode .content-search input[type=submit] {
	color: var(--color-100);
}


/* 10.0 Plugins
------------------------------------------ */
/* Jetpack Carousel, Tiled gallery, Slideshow and Image Compare --------------- */
.jp-carousel img,
.wp-block-jetpack-tiled-gallery img,
.wp-block-jetpack-slideshow img,
.wp-block-jetpack-image-compare img {
  padding: 0;
  margin: 0;
  border: none;
}

/* 11.0 Utilities
------------------------------------------ */
/* Accessibility --------------- */
.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;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4);
  clip: auto!important;
  clip-path: none;
  color: #21759b;
  display: block;
  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;
}
#content[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments --------------- */
.alignleft {
  float: left;
  margin: 5px 18px 5px 0;
}
.alignright {
  float: right;
  margin: 5px 0 5px 18px;
}
.aligncenter {
	clear: both;
	display: block;
	float: none;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.float-none {
  float: none;
}

/* Clearings --------------- */
.clear:not(.sticky):after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:not(.sticky):after {
  clear: both;
}

/* Font awesome --------------- */
i.fa-solid, i.fa-regular, i.fa-brands {
  color: inherit;
  font-style: normal;
}

/* Hidden elements --------------- */
.hide,
.hide-on-mobile,
.hide-on-desktop {
  display: none;
}
@media screen and (max-width: 900px) {
  .hide-on-desktop {
    display: block;
  }
}
@media screen and (min-width: 901px) {
  .hide-on-mobile {
    display: block;
  }
}

/* Media --------------- */
embed,
iframe,
object,
video {
  max-width: 100%;
  width: 100%;
}
iframe {
  border-width: 0;
  outline: 0;
  vertical-align: middle;
}
.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Gallery --------------- */
.gallery {
  display: grid;
  grid-row-gap: 12px;
  grid-column-gap: 12px;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.gallery-item {
  display: inline-block;
  width: 100%;
  text-align: center;
}
figure.gallery-item {
  margin: 0;
}
.gallery-item img {
  margin: 0;
}
.gallery-caption {
  display: block;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}
@media screen and (max-width: 600px) {
  .gallery-columns-7,
  .gallery-columns-8,
  .gallery-columns-9 {
    grid-template-columns: repeat(5, 1fr);
  }
  .gallery-caption {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .gallery-columns-5,
  .gallery-columns-6,
  .gallery-columns-7,
  .gallery-columns-8,
  .gallery-columns-9 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Captions --------------- */
.gallery dd {
  margin: 0px;
}
.wp-caption,
.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
  margin-bottom: 0;
}
.wp-caption {
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0;
}
.wp-caption-text,
.gallery-caption,
.entry-caption {
  padding: 0;
  font-size: 13px;
  text-align: center;
  font-style: italic;
}

/* Slider --------------- */
.vps-box.vps-loading .vps-slides-wrap, 
.vps-box.vps-loading .vps-pager {
	visibility: hidden;
}
.vps-slides-wrap {
	position: relative;
	height: 100%;
	width: 100%;
}
.vps-slides-wrap li,
.vps-slides-wrap .void-project-item {
	border: none!important;
}
.vps-slides-crop {
	height: 100%;
	width: 100%;
	position: absolute;
	overflow: hidden;
}
.vps-list {
	width: 100%;
	height: 100%;
	list-style: none;
	margin: 0!important;
	padding: 0!important;
	position: absolute;
}
.vps-list.horizontal {
	-webkit-transition: left ease;
	-o-transition: left ease;
	transition: left ease;
}
.vps-slide {
	position: absolute;
	width: 100%;
	z-index: 2;
}
li.vps-slide {
	padding: 0px!important;
}
.vps-slide.vps-active {
	z-index: 3;
}
.vps-pager {
	clear: both;
	display: block;
	width: 100%;
	margin: 10px 0 0 0!important;
	padding: 0!important;
	list-style: none;
	text-align: center;
	line-height: 0;
}
.vps-pager li {
	display: inline-block;
	padding: 0!important;
	margin: 0!important;
	border: none!important;
}
.vps-pager li a {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 5px;
	background: rgba(var(--color-rgba), 0.1);
	border-radius: 50%;
	text-indent: -9999px;
}
.vps-pager li.vps-active a {
	background: rgba(var(--color-rgba), 0.4);
}
.vps-filler {
	width: 100%;
}
.vps-filler.ready {
	-webkit-transition: padding 600ms ease;
	-o-transition: padding 600ms ease;
	transition: padding 600ms ease;
}
.vps-controls {
  list-style: none;
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 0;
  margin: 0;
}
.vps-controls li {
	position: absolute;
	width: 10%;
	min-width: 2.8em;
	height: 100%;
	z-index: 33;
}
.vps-controls li.vps-prev {
	left: 0;
	top: 0; 
}
.vps-controls li.vps-prev a:after {
	background-position: -5% 0;
}
.vps-controls li.vps-next {
	right: 0;
	top: 0;
}
.vps-controls li.vps-next a:after {
	background-position: 105% 0;
}
.vps-controls li a {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
	text-indent: -9999px;
}
.vps-controls li a:link, .vps-controls li a:visited {
	opacity: 0.4;
}
.vps-controls li a:hover, .vps-controls li a:focus {
	opacity: 0.8;
	outline: none;
}
.vps-controls li a:after {
	content: "";
	background: #fff;
	background-image: url("images/arrows.svg");
	background-repeat: no-repeat;
	-webkit-background-size: cover;
					background-size: cover;
	text-align: center;
	text-indent: 0;
	line-height: 2em;
	color: #111;
	font-weight: 800;
	position: absolute;
	width: 2em;
	height: 2em;
	left: 50%;
	top: 50%;
	margin-top: -1em;
	margin-left: -1em;
	border-radius: 50%;
}
@media only screen and (max-device-width: 600px) {
	.vps-controls {
		display: block;
	}
	.vps-controls li {
		min-width: 2.1em;
	}
	.vps-controls li a:after {
		width: 1.4em;
		height: 1.4em;
		margin-top: -0.7em;
		margin-left: -0.7em;
	}
}

/* Transitions --------------- */
a,
a img,
img,
input,
textarea,
button {
  transition: all .3s ease-in-out;
}

/* Scrollbar --------------- */
::-webkit-scrollbar {
  background: var(--color-background);
  height: 10px;
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-background-mobile);
  height: 10px;
}

/* Selection --------------- */
::selection {
  background: var(--color-accent);
  color: var(--color-contrast-100);
}