/*
Theme Name: Coding Sessions
Theme URI: http://underscores.me/
Author: Chris M Heath
Author URI: http://chrismheath.com
Description: Standard theme for Caleb Lewis Music
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coding-sessions
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Coding Sessions is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
	font-family: 'langdon';
    src: url('fonts/langdon/langdon-webfont.woff2') format('woff2'),
         url('fonts/langdon/langdon-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #3F3F3F;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.7;
}

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

	font-family: 'Langdon';
	font-weight: 400;
	text-transform: uppercase;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

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

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

big {
	font-size: 125%;
}

@media screen and (max-width: 1199px) {
	body,
	button,
	input,
	select,
	textarea {
		font-size: 18px;
		font-size: 1.125rem;
	}
	p {
		margin-block-start: 0;
	}
}

/*--------------------------------------------------------------
# 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 http://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. */
}

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

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

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

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

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

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. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.anchor-button {
	display: block;
	width: 10rem;
	padding: 1.25rem 0;

	background-color: #97C2BF;

	border: 0;

	line-height: 0.75rem;
	font-family: 'Langdon';
	font-size: 1.75rem;
	color: white;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;

	transition: 0.4s background-color ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.anchor-button:hover {
	background-color: #b1d1cf;
	color: white;
}

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,
.anchor-button:active,
.anchor-button:focus {
	background-color: #71928f;
	color: white;

}

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 {
	width: 100%;
	padding: 0.5rem 0.75rem;

	background-color: #58595B;

	border: 0;

	color: #DFDFDF;

}

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: white;
}

textarea {
	width: 100%;
}

label {
	font-family: 'Langdon';
	color: #97C2BF;
	text-transform: uppercase;
}

.regular-link {
	width: auto;
	padding: 0;

	background-color: transparent;

	line-height: inherit;
	font-family: 'Source Sans Pro';
	font-size: 1rem;
	color: #97C2BF;
}

.regular-link:hover,
.regular-link:active,
.regular-link:focus {
	background-color: transparent;
	color: #b1d1cf;
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #97C2BF;
}

a:hover,
a:focus,
a:active {
	color: #b1d1cf;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

/* Actual nav button */

.site-nav-menu-button {
	float: right;

	width: 150px;
	height: 30px;
	margin: 45px 0;
	padding: 0;

	background-color: transparent !important;
	background-image: url('img/nav-menu-white.svg');
	background-position: right;
	background-size: contain;
	background-repeat: no-repeat;

	border: 0;
	border-radius: 0;

	box-shadow: none;

	transition: 0.4s margin ease;
}

.site-nav-menu-button:hover,
.site-nav-menu-button:active,
.site-nav-menu-button:focus {
	box-shadow: none;
}

	/* When the scroll hits */
	.site-header-container.scrolled:not(.menu-toggled) .site-nav-menu-button {
		margin: 25px 0;

		background-image: url('img/nav-menu-dark.svg');
	}
	/* When the nav button's nutted */
	.site-header-container.menu-toggled .site-nav-menu-button {
		background-image: url('img/nav-menu-x.svg');
	}


.main-navigation {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;

	visibility: hidden;
	width: 100%;
	height: 100%;
	padding-top: 120px;

	background-image: linear-gradient( white 30%, rgba(255,255,255, 0.5) );
	opacity: 0;

	transition: 0.4s opacity ease;
}

	/* When there's a WP menu bar */
	body.admin-bar .main-navigation,
	body.admin-bar .main-navigation-bg {
		top: 32px;
	}
	@media screen and (max-width: 782px) {
		body.admin-bar .main-navigation,
		body.admin-bar .main-navigation-bg {
			top: 46px;
		}
	}

.main-navigation.menu-toggled {
	visibility: visible;
	opacity: 1;
}

.main-navigation-bg {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -99;

	display: none;
	width: 100%;
	height: 100%;
	opacity: 0;

	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;

	transition: 0.4s background ease;

}

.site-header-container.menu-toggled .main-navigation-bg {
	display: block;
}

.main-navigation div ul {
	list-style: none;
	margin: 4rem 0 0;
	padding-left: 0;

	text-align: center;
}

.main-navigation div li {
	position: relative;
	clear: both;
}

.main-navigation div a {
	box-sizing: content-box;
	display: inline-block;
	padding: 1rem;

	font-family: 'Langdon';
	font-size: 2rem;
	text-transform: uppercase;
	text-decoration: none;
	color: #222;

	transition: 0.4s color ease;
}

.main-navigation div li > a:hover,
.main-navigation div li > a:active,
.main-navigation div li.focus > a {
	color: #97C2BF;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
	color: #97C2BF;
	text-shadow: 0 0 0.5rem rgba(255,255,255,0.25);
}

@media screen and (max-width: 1199px) {
	.site-nav-menu-button {
		width: 100px;
		height: 25px;
		margin: 23px 15px 22px 0;
	}
	.site-header-container.scrolled:not(.menu-toggled) .site-nav-menu-button {
		margin: 18px 10px 17px 0;
	}
	.main-navigation {
		padding-top: 70px;
	}
	.main-navigation div ul {
		margin-top: 1rem;
	}
	.main-navigation div a {
		height: 2rem;

		line-height: 2rem;
		font-size: 1.75rem;
	}
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header-container {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;

	width: 100%;

	background: linear-gradient(to bottom, #1F1F1F, rgba(0,0,0,0));
}

.site-header {
	position: relative;
	z-index: 999;
}

.site-header-background {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -10;

	width: 100%;
	height: 100%;

	transition: 0.4s background ease;
}

.site-branding {
	float: left;
}

.site-title {
	display: none;
	left: -99999;
	width: 0;
	height: 0;
}

.site-logo-link {
	display: block;
	padding: 35px 0;

	transition: 0.4s padding ease;
}

.site-logo-icon {
	float: left;

	display: block;
	width: 30px;
	height: 30px;
	margin: 10px;

	background-image: url('img/logo-icon-white.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.site-logo-text {
	float: left;

	display: block;
	width: 185px;
	height: 30px;
	margin: 10px 0 10px 30px;

	background-image: url('img/logo-text-white.svg');
	background-position: left;
	background-size: contain;
	background-repeat: no-repeat;

	transition: 0.25s margin ease;
}

	/* When the scroll hits */
	.site-header-container.scrolled .site-header-background {
		background: white;
		box-shadow: 0 0 5px #999;
	}
	.site-header-container.scrolled:not(.menu-toggled) .site-logo-link {
		padding: 15px 0;
	}
	.site-header-container.scrolled .site-logo-icon {
		background-image: url('img/logo-icon.svg');
	}
	.site-header-container.scrolled .site-logo-text {
		background-image: url('img/logo-text.svg');
	}
	.site-header-container.scrolled:not(.menu-toggled) .site-logo-text {
		margin-left: 20px;
	}
	/* When the button's nutted */
	.site-header-container.menu-toggled .site-logo-icon {
		background-image: url('img/logo-icon.svg');
	}
	.site-header-container.menu-toggled .site-logo-text {
		background-image: url('img/logo-text.svg');
	}

	/* When there's a WP menu bar */

	body.admin-bar .site-header-container {
		top: 32px;
	}
	@media screen and (max-width: 782px) {
		body.admin-bar .site-header-container {
			top: 46px;
		}
	}

.nav-menu-social-media-list {
	position: absolute;
	bottom: 100px;
	left: 0;

	width: 100%;
	margin: 0;
	padding: 0;

	list-style-type: none;
	text-align: center;
}

.nav-menu-social-media-list-item {
	display: inline-block;
	margin: 0 1rem;
	padding: 0;
}

.nav-menu-social-media-link {
	display: block;
	width: 35px;
	height: 35px;

	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.nav-menu-social-media-link.facebook {
	background-image: url('img/icons/sm-facebook-dark.svg');
}
.nav-menu-social-media-link.instagram {
	background-image: url('img/icons/sm-instagram-dark.svg');
}
.nav-menu-social-media-link.youtube {
	background-image: url('img/icons/sm-youtube-dark.svg');
}
.nav-menu-social-media-link.spotify {
	background-image: url('img/icons/sm-spotify-dark.svg');
}

@media screen and (max-width: 1199px) {
	.site-logo-link {
		padding: 15px 0 15px 10px;
	}
	.site-logo-icon {
		width: 20px;
		height: 20px;
	}
	.site-logo-text {
		width: 125px;
		height: 20px;
		margin-left: 10px;
	}
	.site-header-container.scrolled:not(.menu-toggled) .site-logo-text {
		margin-left: 0;
	}
	.site-header-container.scrolled:not(.menu-toggled) .site-logo-link {
		padding: 10px 0;
	}
	.nav-menu-social-media-list {
		bottom: 0;
		right: 0;

		padding: 0 0.5rem 0 0;
	}
	.nav-menu-social-media-list-item {
		float: right;
		clear: both;

		margin: 0.5rem 0;
	}
	.nav-menu-social-media-link {
		width: 30px;
		height: 30px;
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer-info {
	padding: 5rem 0;

	background: #2F2F2F;
}

.site-footer-legal {
	padding: 0.75rem 0;
	background: #1F1F1F;

	font-size: 1.125rem;
	font-weight: 700;
	color: white;
	text-align: center;
}

.footer-social-media-list {
	display: block;
	margin: 0;
	padding: 0;

	list-style-type: none;

	text-align: center;
}

.footer-social-media-list-item {
	display: inline-block;
	margin: 0 1.5rem;
	padding: 0;
}

.footer-social-media-list-item-link {
	display: block;
	width: 35px;
	height: 35px;

	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.footer-social-media-list-item-link.facebook {
	background-image: url('img/icons/sm-facebook.svg');
}
.footer-social-media-list-item-link.instagram {
	background-image: url('img/icons/sm-instagram.svg');
}
.footer-social-media-list-item-link.youtube {
	background-image: url('img/icons/sm-youtube.svg');
}
.footer-social-media-list-item-link.spotify {
	background-image: url('img/icons/sm-spotify.svg');
}

.footer-social-media-list-item-link.facebook:hover,
.footer-social-media-list-item-link.facebook:active,
.footer-social-media-list-item-link.facebook:focus {
	background-image: url('img/icons/sm-facebook-aqua.svg');
}
.footer-social-media-list-item-link.instagram:hover,
.footer-social-media-list-item-link.instagram:active,
.footer-social-media-list-item-link.instagram:focus {
	background-image: url('img/icons/sm-instagram-aqua.svg');
}
.footer-social-media-list-item-link.youtube:hover,
.footer-social-media-list-item-link.youtube:active,
.footer-social-media-list-item-link.youtube:focus {
	background-image: url('img/icons/sm-youtube-aqua.svg');
}
.footer-social-media-list-item-link.spotify:hover,
.footer-social-media-list-item-link.spotify:active,
.footer-social-media-list-item-link.spotify:focus {
	background-image: url('img/icons/sm-spotify-aqua.svg');
}

.footer-page-links-list {
	margin: 2.5rem 0 0;
	padding: 0;

	list-style-type: none;

	text-align: center;
}

.footer-page-links-list-item {
	display: inline-block;
	margin: 0 1.5rem;
	padding: 0;
}

.footer-page-links-list-separator {
	display: inline-block;
	margin: 0;
	padding: 0;

	color: white;
	font-weight: 700;
}

.footer-page-links-list-item-link {
	display: block;

	font-size: 1.25rem;
	font-weight: 700;

	text-decoration: none;

	transition: 0.3s color ease;
}

@media screen and (max-width: 1199px) {
	.site-footer-info {
		padding: 3rem 0;
	}
	.footer-social-media-list-item {
		margin: 0;
	}
	.footer-social-media-list-item:not(:last-of-type) {
		margin-right: 2rem;
	}
	.footer-social-media-list-item-link {
		width: 30px;
		height: 30px;
	}
	.footer-page-links-list {
		margin-top: 1.5rem;
	}
	.footer-page-links-list li {
		margin: 0;
	}
	.footer-page-links-list li:not(:last-of-type) {
		margin-right: 1rem;
	}
	.footer-page-links-list-item-link {
		font-size: 1.125rem;
	}
	.site-footer-legal {
		font-size: 1rem;
	}
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.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;
}

.page-content-container {
	max-width: 1200px;
	margin: 0 auto;
}

.text-content-container {
	max-width: 800px;
	margin: 0 auto;
}

.entry-header {
	position: relative;

	width: 100%;
	height: 500px;

	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
}

.entry-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	margin: 0;

	font-size: 5rem;
	color: white;
	text-shadow: 0 0 2rem #222;
}

.entry-content {
	margin-top: 3rem;
}

@media screen and (max-width: 1199px) {
	.entry-header {
		height: 250px;
	}

	.entry-title {
		margin-top: 1rem;
		font-size: 3.5rem;
	}

	.page-content,
	.entry-content,
	.entry-summary {
		margin-top: 1.5rem;
	}

	.text-content-container {
		padding: 0 1rem;
	}
}

/*--------------------------------------------------------------
### Front Page
--------------------------------------------------------------*/
.front-page-landing-section {
	height: 100vh;
	width: 100%;

	background-image: linear-gradient(86deg, rgb(11, 7, 8) 0%, rgb(82, 62, 55) 64%, rgb(86, 67, 61) 97%, rgb(60, 49, 47) 100%);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.front-page-landing-section-content-container {
	position: absolute;
	bottom: 100px;

	width: 100%;

	text-align: center;
}

.front-page-landing-section-heading {
	margin: 0 0 1rem;

	line-height: 1;
	font-size: 8rem;
	color: white;
	text-shadow: 0 0 1rem #1F1F1F;
}

.front-page-landing-section-subtext {
	margin: 0 0 4rem;

	line-height: 1;
	font-size: 4rem;
	color: #DFDFDF;
	text-shadow: 0 0 1rem #1F1F1F;
}

.front-page-landing-section-listen-now {
	display: inline-block;
	width: 12rem;
}


.front-page-instagram-feed-container {
	padding: 6rem 0;
	background-color: #1F1F1F;
}

.front-page-instagram-feed {
	float: left;
}

.front-page-instagram-feed-list {
	position: relative;
	float: left;

	width: 850px;
	margin: 0;
	padding: 0;
	overflow: hidden;

	white-space: nowrap;

	list-style-type: none;
}

.front-page-instagram-feed-loading {
	width: 100%;
	height: 221px;
	margin: 0;
	padding: 0;

	background-image: url('img/loading.svg');
	background-size: 60px;
	background-position: center;
	background-repeat: no-repeat;

	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.instagram-feed-left {
	float: left;

	background-image: url('img/icons/ig-feed-left.svg');
}

.instagram-feed-right {
	float: right;

	background-image: url('img/icons/ig-feed-right.svg');
}


.instagram-feed-left:after {
	content: '';

	position: absolute;
	top: 0;
	right: -12px;
	z-index: 99;

	display: block;
	width: 12px;
	height: 100%;

	background-image: linear-gradient(to right, #1F1F1F, rgba(0,0,0,0));
}

.instagram-feed-right:before {
	content: '';

	position: absolute;
	top: 0;
	left: -12px;
	z-index: 99;

	display: block;
	width: 12px;
	height: 100%;

	background-image: linear-gradient(to left, #1F1F1F, rgba(0,0,0,0));
}

.instagram-feed-control-button {
	position: relative;

   display: block;
   width: 50px;
   height: 221px;
   padding: 0;

   background-color: #58595B;
   background-position: center;
   background-size: 25px;
   background-repeat: no-repeat;
}

.front-page-instagram-feed-list-item {
	display: inline-block;
	margin: 0 0.125rem;
	padding: 0;

	border: 3px solid #58595B;
}

.front-page-instagram-feed-list-item:first-of-type {
	margin-left: 0.5rem;
}
.front-page-instagram-feed-list-item:last-of-type {
	margin-right: 0.5rem;
}

.front-page-instagram-feed-list-item img {
	display: block;
	width: 215px;
	height: 215px;
}

.front-page-instagram-feed-link-container {
	border-color: #97C2BF;
}

.front-page-instagram-feed-link {
	float: left;

	width: 221px;
	height: 221px;
	margin-left: 0.5rem;

	background-image: url('img/icons/sm-instagram.svg');
	background-size: 60px;
	background-position: 50% 45%;
	background-repeat: no-repeat;

	line-height: 285px;
	text-align: center;
	text-decoration: none;

	transition: 0.4s background-color ease;
}

.front-page-instagram-feed-link:hover,
.front-page-instagram-feed-link:active,
.front-page-instagram-feed-link:focus {
	color: white;
}

.front-page-separator-background {
	height: 450px;

	background: transparent;
}

.front-page-youtube-feed-container {
	padding: 6rem 0;
	background-color: #1F1F1F;
}

.player-main-container {
	float: left;
}

.front-page-youtube-feed-right-container {
	float: right;

	width: 350px;
}

.right-video-container {
	/*height: 200px;*/
	margin-bottom: 0.8rem;
}

.front-page-youtube-feed-right-container .coming-soon {
	height: 200px;
	margin-bottom: 25px;

	background: #2F2F2F;

	line-height: 190px;
	font-family: 'Langdon';
	color: white;
	font-size: 2rem;
	text-transform: uppercase;
	text-align: center;
}

.front-page-youtube-feed-link {
	float: right;

	width: 100%;
	height: 100px;
	padding: 0 0 0 65px;

	background-image: url('img/icons/sm-youtube.svg');
	background-size: 60px;
	background-position: 65% 50%;
	background-repeat: no-repeat;

	line-height: 95px;
	text-align: left;
	text-decoration: none;

	transition: 0.4s background-color ease;
}

.front-page-youtube-feed-link:hover,
.front-page-youtube-feed-link:active,
.front-page-youtube-feed-link:focus {
	color: white;
}

@media screen and (max-width:1199px) {
	.front-page-landing-section-content-container {
		bottom: 25px;
	}
	.front-page-landing-section-heading {
		margin-top: 6rem;
		margin-bottom: 0.5rem;

		font-size: 4.5rem;
	}
	.front-page-landing-section-subtext {
		margin-bottom: 2.5rem;

		font-size: 2.25rem;
	}
	.front-page-instagram-feed-container {
		padding: 3rem 0.5rem;
	}
	.instagram-feed-control-button {
		width: 30px;
		height: 150px;

		background-size: 20px;
	}
	.instagram-feed-left:after {
		right: -8px;

		width: 8px;
	}
	.instagram-feed-right:before {
		left: -8px;

		width: 8px;
	}
	.front-page-instagram-feed-list {
		width: 260px;
		width: calc(100% - 60px );
	}
	.front-page-instagram-feed-list-item {
		margin: 0;
	}
	.front-page-instagram-feed-list-item:first-of-type {
		margin-left: 0.25rem;
	}
	.front-page-instagram-feed-list-item img {
		width: 144px;
		height: 144px;
	}
	.front-page-instagram-feed-link {
		width: 100%;
		height: 60px;
		margin: 0;
		padding: 0 0 0 8%;

		background-size: 30px;
		background-position: 90% 50%;

		line-height: 60px;
		text-align: left;
	}
	.front-page-instagram-feed-loading {
		width: 150px;
		height: 150px;
	}
	.front-page-separator-background {
		height: 200px;
	}
	.front-page-youtube-feed-container {
		padding: 3rem 0.5rem;
	}
	.player-main-container {
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.front-page-youtube-feed-right-container {
		width: 100%;
	}
	.right-video-container {
		float: left;

		margin-bottom: 0.5rem;
	}
	.front-page-youtube-feed-link {
		width: 100%;
		height: 60px;
		margin: 0;
		padding: 0 0 0 8%;
		background-size: 35px;
		background-position: 90% 50%;
		line-height: 60px;
		text-align: left;
	}
}

/*--------------------------------------------------------------
### Music Page
--------------------------------------------------------------*/

.music-page-album-container {
	margin-bottom: 3rem;
}

.music-page-album-meta {
	float: left;

	width: 35%;
}

.music-page-album-art {
	display: block;
}

.music-page-links-list {
	margin: 0.5rem 0 0;
	padding: 0;

	list-style-type: none;
}

.music-page-links-list-item {
	width: 100%;
	margin: 0.5rem 0;
	padding: 0;
}

.music-page-link {
	width: 100%;

	text-align: center;
}


.music-page-track-list {
	float: left;

	display: block;
	width: 65%;
	margin: 0;
	padding: 0 0 0 3rem;

	list-style-type: none;
	counter-reset: tracks;
}

.music-page-track-list-item {
	position: relative;

	margin: 0 0 0.5rem;
	padding: 0 0 0 2.5rem;

	font-family: 'Source Sans Pro';
}

.music-page-track-list-item:before {
	counter-increment: tracks;
	content: counter(tracks);

	position: absolute;
	top: 13px;
	left: 0;

	font-size: 1.45rem;
	font-weight: 600;
	color: #888A8D;
}

.music-page-track {
	height: 4rem;

	line-height: 4rem;
	font-size: 1.45rem;
	font-weight: 600;

	text-transform: none;
}

.music-page-track-toggle-container {
	float: right;
}

.music-page-track-toggle {
	float: left;

	width: auto;
	margin-top: 12px;
	padding: 0.875rem 0.75rem;

	font-size: 1.125rem;
}

.music-page-track-std-toggle {
	height: 40px;
	width: 60px;

	background-image: url('img/icons/play-button.svg');
	background-position: 53% 50%;
	background-size: 16px;
	background-repeat: no-repeat;
}

.music-page-track-toggle:not(:last-of-type) {
	margin-right: 0.5rem;
}

.music-page-track-toggle.coming-soon {
	background-color: #58595B;
}

.music-page-track-toggle.coming-soon:hover,
.music-page-track-toggle.coming-soon:active,
.music-page-track-toggle.coming-soon:focus {
	background-color: #888A8D;
}

.music-page-track-lyrics {
	display: none;
	margin: 1.5rem 0 3rem;

	line-height: 1.6;
	font-family: 'Source Sans Pro';
	font-size: 1.25rem;
	font-weight: 300;
	text-transform: none;
}

.music-page-track-lyrics p:first-of-type {
	margin-top: 0;
}

.music-page-track-lyrics p:last-of-type {
	margin-bottom: 0;
}

.music-page-track-bts {
	display: none;
	margin: 1rem 0;
}

.music-page-track-std {
	display: none;
	margin: 1rem 0;
}

.music-coming-soon {
	font-family: 'Source Sans Pro';
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

@media screen and (max-width: 1199px) {
	.music-page-album-container {
		padding: 0 1rem;
	}
	.music-page-album-meta {
		width: 100%;
	}
	.music-page-track-list {
		width: 100%;
		margin-top: 1rem;
		padding-left: 0;
	}
	.music-page-track-list-item {
		margin-bottom: 1.5rem;
		padding-left: 1.5rem;
	}
	.music-page-track-list-item:before {
		top: 0;

		line-height: 1.5rem;
		font-size: 1.25rem;
	}
	.music-page-track {
		height: auto;

		line-height: 1.5rem;
		font-size: 1.25rem;
	}
	.music-page-track-toggle-container {
		float: left;

		width: 100%;
	}
	.music-page-track-toggle {
		margin-top: 0.5rem;
		padding: 0.75rem 0.4125rem;
	}
	.music-page-track-toggle:not(:last-of-type) {
		margin-right: 0.25rem;
	}
	.music-page-track-std-toggle {
		width: 40px;
		height: 36px;
	}
	.music-page-track-lyrics p {
		margin-bottom: 1rem;

		font-size: 1rem;
	}
}

/*--------------------------------------------------------------
### Contact Page
--------------------------------------------------------------*/

.contact-details-list {
	margin: 0 0 4rem;
	padding: 0;

	list-style-type: none;
}

.contact-details-list-item {
	float: left;
	clear: both;

	margin: 0;
	padding: 0;

	line-height: 55px;
	font-weight: 700;
}

.contact-details-list-item:not(:last-of-type) {
	margin-bottom: 1.5rem;
}

.contact-details-list-item a {
	color: #404040;
	text-decoration: none;

	transition: 0.4s color ease;
}

.contact-details-list-item a:hover,
.contact-details-list-item a:active,
.contact-details-list-item a:focus {
	color: #97C2BF;
}

.contact-details-list-item-icon {
	float: left;

	width: 60px;
	height: 60px;
	margin-right: 1rem;

	background-color: #97C2BF;
	background-position: center;
	background-size: 30px;
	background-repeat: no-repeat;
}

.contact-details-list-item-icon.phone {
	background-image: url('img/icons/contact-phone.svg');
}
.contact-details-list-item-icon.email {
	background-image: url('img/icons/contact-email.svg');
}

.contact-form-container {
	margin: 2rem 0 1rem;
}

.contact-form-container p {
	margin: 0 0 1rem;
}

.contact-form-container .wpcf7-validation-errors {
	margin: 1rem 0 0;
	padding: 0.5rem 1rem 0.75rem;

	border: 2px solid #97C2BF;

	line-height: 1.5rem;
	font-family: 'Langdon';
	font-size: 1.5rem;
	color: #58595B;
	text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
	.contact-details-list {
		margin-bottom: 1.5rem;
	}
	.contact-details-list-item {
		line-height: 47px;
	}
	.contact-details-list-item-icon {
		width: 50px;
		height: 50px;
		margin-right: 0.5rem;

		background-size: 25px;
	}
}

/*--------------------------------------------------------------
### 404 Page
--------------------------------------------------------------*/
.article-404 {
	background-image: url('img/404.jpg');
	background-position: bottom;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-404-container {
	height: 16rem;
	text-align: center;
}

.home-button-404 {
	display: inline-block;

	box-shadow: 0 0 0.5rem #2F2F2F;

	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 {
	max-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: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## Snippets
--------------------------------------------------------------*/

 .clearfix:after {
     content: ".";
 	visibility: hidden;
 	display: block;
 	height: 0;
 	clear: both;
 	overflow: hidden;
 }
