/*
######## 0. Hide small screen stuff
*/
#tap-menu,
.asl_w_container {
	display: none;
}
#main-menu-small-screens {
	display: none;
}
/*
######## 1. Fonts
*/
@font-face {
    font-family: 'OldClaude';
    src: url('../fonts/oldclaude.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Arsenal';
    src: url('../fonts/arsenal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Calson';
    src: url('../fonts/LibreCaslonItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
/*
######## 2. Body of screen
*/
body {
	font-family: "Arsenal",'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #fff;
	background-color: #000;
	font-size: 1.3em;
}
/*
######## 3. Header
*/
header{
	background-color: #000;
	height: auto;
	padding: 0em;
	top: 0;
	width: 100%;
	z-index: 20;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
#branding-section #main-logo {
	display: flex;
  	align-items: center;
  	justify-content: center;
}
/*
######## 4. All Navigation elements
*/
nav#menu {
	margin-top: 2rem;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
nav#menu #main-menu {
	align-items: center;
    justify-content: center;
    display: flex;
	background-color: #151000;
  	padding: 0.5rem 1rem 0.4rem 1rem;
  	border-radius: 4px;
}
nav#menu #main-menu ul {
	list-style-type: none;
	margin-bottom: 0;
}
nav#menu #main-menu ul li {
	margin-bottom: 0;
	float: left;
	margin-right: 1.2em;
}
nav#menu #main-menu ul li a {
	font-family: "OldClaude",'Times New Roman', Times, serif;
	font-size: 1.4rem;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
}
nav#menu #main-menu ul li a:hover {
	color: #666;
}
.asl_w_container {
	margin-top:1rem;
	margin-bottom: 0;
}
.asl_w_container input {
	width: 100%;
	margin-bottom: 0;
	color: #000!important;
}
/*
######## 5. 'main-container'
*/
#main-container {
	font-size: 1.3em;
	margin-top: 1.2em;
}
#main-container h2,
#main-container h3 {
	font-family: "OldClaude";
}
#main-container a,
footer a {
	color: #d17e0a;
}
#main-container a:hover,
footer a:hover  {
	opacity: 80%;
}
#main-container .page-content {
	margin-bottom: 2em;
}
#main-container .jumpsections {
	padding: 1.6em;
	background-color: #1f0202;
	border-radius: 10px;
	margin-bottom: 1.2em;
}
/*
######## 6. Sectional elements of the 'Home' page
*/
#home-content {
	margin-bottom: 4rem;
}
.home-block {
	background-color: #000;
	border: 1px solid #392a02;
  	border-radius: 10px;
  	margin-bottom: 4rem;
	padding: 1rem;
}
.home-block a {
	display:inline-block;
    width:100%;
    height:100%;
	text-decoration: none;
}
.home-block a h3,
.home-block a p {
	color: #ccc!important;
}
.home-block a h3 {
	font-style:italic;
}
.home-block a p {
	font-family: "Calson",'Times New Roman', Times, serif;
}
.home-block a:hover {
	opacity: 80%;
}
#reading-list-home {
	background: url("../img/pl-bg.jpg") no-repeat 0em -10px;
}
#principles-home {
	background: url("../img/sv-bg.jpg") no-repeat 0em -10px;
	background-color: rgba(0,0,0,0.6);
    background-blend-mode: darken;
}
#rituals-home {
	background: url("../img/rituals-bg.jpg") no-repeat 0em -100px;
}
#articles-home {
	background: url("../img/articles-bg.jpg") no-repeat 0em -100px;
}
#about-home {
	background: url("../img/about-bg.jpg") no-repeat 0em -100px;
}
#media-home {
	background: url("../img/media-bg.jpg") no-repeat 0em -100px;
}
#whatis-home {
	background: url("../img/whatis-bg.jpg") no-repeat 0em -100px;
	background-color: rgba(0,0,0,0.4);
    background-blend-mode: darken;
}
#participate-home {
	background: url("../img/participate-bg.jpg") no-repeat 0em -100px;
}
h2 {
	color: #fff;
	font-size: 2em;
}
h3 {
	color: #fff;
	font-size: 1.3em;
}
.media-item {
	margin-bottom: 2rem;
	padding: 1rem;
  	background-color: #151515;
  	border-radius: 4px;
}
.media-item p {
	margin-bottom: 0;
}
.media-item p:last-child {
	margin-top: 2rem;
}
/*
######## 7. Misc styles
*/
img {
	height: auto;
	max-width: 100%;
}
img.media-thumb {
	float: left;
	margin-right: 1em;
	margin-bottom: 1em;
	padding:1px;
	border: 1px solid #201e1e;
}
time {
	display: block;
	font-size: 0.8em;
	color: #a56608;
	padding-bottom: 1em;
}
.video-wrapper {
	position: relative;
  	padding-bottom: 56.25%; /* 16:9 */
  	height: 0;
  	margin-bottom: 3em;
}
.video-wrapper video {
    position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
	border: 1px solid #201e1e;
}
.video-wrapper iframe {
	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
	border: 1px solid #201e1e;
}
strong,
b {
	font-weight: bold;
}
hr {
	border: 1px solid #151515;
}
.toggle-switch {
	display: none;
}
#home-quote {
	text-align: center;
}
#home-quote p {
	font-family: "OldClaude";
	font-size: 1.2rem;
}
q {
	display: block;
	font-family: "Calson",'Times New Roman', Times, serif;
	font-size: 2rem;
	margin-bottom: 1.2rem
}
#toggleAudio {
	position: absolute;
  	bottom: 0px;
  	right: 10px;
}
#toggleAudio:hover {
	cursor: pointer;
}
#cclis {
	background-color: #18181a;
  	padding: 1rem 2rem 0 2rem;
  	text-align: center;
  	font-size: 1.3rem;
  	font-style: italic;
  	border-radius: 4px;
	margin: 2rem 0;
	display: flex;
  	align-content: center;
  	justify-content: center;
}
#cclis p {
	margin: 0rem;
}
#cclis a {
	color: #666;
}
#cclis img {
	max-width: 2em;
  	max-height: 2em;
  	margin-left: 0.6em;
}
.individual-ritual {
  margin-bottom: 3rem;
}
.latest-articles ul {
	list-style-type: none;
}
.latest-articles ul li {
	padding: 2rem;
  	background-color: #151515;
  	border-radius: 5px;
}
.latest-articles ul li a {
	display: flex;
	width: 100%;
  	height: 100%;
	text-decoration: none;
	align-items: center;
}
.latest-articles ul li a:hover {
	opacity: 80%;
}
.latest-articles h3 {
	margin-bottom: 0.2rem;
}
.latest-articles small {
	color: #666;
}
/*
########### Contact Page
*/
html.page-contact #home-content ul {
	display: flex;
  	align-content: center;
	list-style-type: none;
}
html.page-contact #home-content ul li {
	margin-right: 1rem;
}
/*
######## 9. Application Forms
*/
label {
	font-weight: 400;
}
/*  forms*/
#wpcf7-f103-o1 input,
#wpcf7-f103-o1 select,
#wpcf7-f103-o1 textarea,
#wpcf7-f6-p37-o1 input,
#wpcf7-f6-p37-o1 select,
#wpcf7-f6-p37-o1 textarea {
	width:90%;
}
#wpcf7-f103-o1 textarea,
#wpcf7-f6-p37-o1 textarea {
	min-height: 300px;
}
#wpcf7-f103-o1 input.wpcf7-submit,
#wpcf7-f6-p37-o1 input.wpcf7-submit {
	width: auto!important;
	border: 1px solid #2c2c31 !important;
	background-color: #222226 !important;
  	color: #fff !important;
}
#wpcf7-f103-o1 input.wpcf7-submit:hover,
#wpcf7-f6-p37-o1 input.wpcf7-submit:hover {
	opacity: 80%;
}
/*
######## 10. Footer and nested elements
*/
footer {
	background-color: #000;
	height: auto;
	padding: 0.8em 0em 0.8em 0em;
	border-top: 1px solid #201e1e;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
footer section {
	margin-top: 1em !important;
	padding: 0 !important;
}
footer section p {
	text-align: center;
	color: #565656;
}
footer ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
}
footer ul li {
	margin-right: 1em;
}
footer ul li img {
	max-height: 20px;
	opacity: 0.3;
}
footer ul li img:hover {
	opacity: 0.6;
}
/*
######## 14. Small screens
*/
@media (max-width: 1200px) { /* When screen size is below 1200px wide... */

	nav#menu #main-menu ul li a {
		font-size: 1.5em;
	}

}
@media (max-width: 1010px) { /* When screen size is below 1010px wide... */

	#tap-menu {
		display: block;
		position: fixed;
		top: 10px;
		right: 10px;
		padding:0;
		margin:0;
		z-index:999;
		background-color: #000;
	}
	#tap-menu a {
		float: right;
	}
	#tap-menu a img {
		border: 1px solid #fff;
		border-radius: 4px;
	}
	#main-menu {
		display: none !important;
	}
	header #branding-section {
		display: block !important;
	}
	header #branding-section .one-third {
		margin-bottom:2rem;
	}
	#main-menu-small-screens {
		display: none; /* controlled by jquery */
		background-color: #000;
		height: auto;
		padding: 1.2em 0em 0.8em 0em;
		margin-top: -3.1em;
		margin-bottom: 2em;
		border: 1px solid #201e1e;
		border-top: 0;
	}
	#main-menu-small-screens ul {
		list-style-type: none;
	}
	#main-menu-small-screens ul li {
		float: none;
		text-align: center;
	}
	#main-menu-small-screens ul li a {
		font-family: "MartelBold";
		font-size: 1.2em;
		color: #fff;
		text-transform: uppercase;
		text-decoration: none;
	}
	#main-menu-small-screens ul li a:hover {
		color: #a56608;
	}
	img.media-thumb {
		float: none;
	}
}