@font-face {
	font-family: 'League Spartan';
    src: url('../fonts/leaguespartan-bold.ttf'),
    	 url('../fonts/leaguespartan-bold.eot'),
		 url('../fonts/leaguespartan-bold.svg'),
		 url('../fonts/leaguespartan-bold.woff'),
		 url('../fonts/leaguespartan-bold.woff2');
    font-weight: bold;
    font-style: normal;
}
* {
	box-sizing: border-box;
}
body {
	background-color: #E6E7E8;
}
a {
	text-decoration: none;
}
p {
	font-family: 'Libre Baskerville', serif;
	font-size: 16px;
	line-height: 1.4;
	color: #330D2B;
}
h1 {
	font-family: 'League Spartan';
	font-size: 40px;
	color: #330D2B;
	margin: 0 0 5px 0;
}
h2 {
	font-family: 'League Spartan';
	font-size: 18px;
	color: #9B3E83;
	margin: 0;
}
h3 {
	font-family: 'League Spartan';
	font-size: 16px;
	color: #330D2B;
	margin: 0;
}
h4 {
	font-family: 'League Spartan';
	font-size: 18px;
	color: #330D2B;
	margin: 0;
}
h5 {
	font-family: 'League Spartan';
	letter-spacing: 3px;
	font-size: 90px;
	color: #fff;
}
.btn {
	font-family: 'League Spartan';
	font-size: 15px;
	letter-spacing: 1.1px;
	color: #fff;
	background-color: #9B3E83;
	padding: 13px 13px 9px 13px;
	display: inline-block;
	border: 0;
}
.btn:hover {
	background-color: #C38BB5;
}

/* SIDEBAR / NAV */
aside {
	width: 30%;
	height: 100vh;
	position: fixed;
	background-color: #fff;
	overflow: hidden;
	float: left;
}
.masthead {
	padding: 50px;
	width: 100%;
	float: left;
	overflow: hidden;
}
.masthead img {
	display: block;
	margin-bottom: 15px;
}
.masthead a.logo {
	font-family: 'League Spartan';
	font-size: 32px;
	letter-spacing: 1.5px;
	color: #9B3E83;
	display: block;
	margin-bottom: 15px;
	text-align: left;
	width: 200px;
}
.masthead hr {
	width: 100px;
	color: #ABABAB;
	margin: 0;
	padding: 0;
}
.masthead p {
	font-style: italic;
	float: left;
	clear: both;
	margin-top: 25px;
}
#bar span {
	display: block;
	width: 40px;
	height: 5px;
	background-color: #eb86d0;
	float: left;
}
nav {
	position: absolute;
	bottom: 0;
	padding-left: 50px;
	margin-bottom: 25px;
	float: left;
}
nav ul {
	width: 100%;
	padding: 0;
	margin: 0;
}
nav ul li {
	padding: 20px 0 10px 0;
}
nav li a {
	font-family: 'League Spartan';
	font-size: 18px;
	color: #330D2B;
	text-align: left;
	display: block;
}
nav li a:hover {
	color: #9B3E83;
}
.social {
	float: left;
	clear: both;
	padding-top: 20px;
}
.social i {
	color: #9B3E83;
	font-size: 1.5em;
	padding-right: 10px;
}
.social i:hover {
	color: #C38BB5;
}
.hamburger {
	position: absolute;
	top:30px;
	right:15px;
	z-index: 100;
	display: none;
}
.hamburger span {
	display: block;
	width: 30px;
	height: 4px;
	background-color: #9B3E83;
	margin: 5px 0;
}

/* Nav Mobile Styles */
@media only screen and (max-width: 768px) {
	aside {
		width: 100%;
		height: auto;
		position: relative;
	}
	.masthead {
		padding: 25px;
	}
	.masthead a.logo {
		margin-bottom: 10px;
		font-size: 30px;
	}
	.masthead p {
		margin: 0;
	}
	#bar {
		display: none;
	}
	nav {
		width: 100%;
		display: none;
		float: none;
		position: fixed;
		top: 0;
		left: 0;
		background-color: #330D2B;
		padding: 50px 0 0 0;
		margin: 0;
	}
	nav ul li {
		border-bottom: 1px solid #9B3E83;
		padding: 20px 0 15px 15px;
	}
	nav li a {
		color: #fff;
		text-align: left;
		display: block;
	}
	nav li a:hover {
		color: #9B3E83;
	}
	.social {
		float: left;
	}
	.social i {
		font-size: 2em;
		padding-left: 15px;
	}
	.hamburger {
		display: block;
	}
}
/* NAV TABLET */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
	aside {
		width: 35%;
	}
	.masthead {
		padding: 25px;
	}
	.masthead a.logo {
		font-size: 30px;
	}
	nav {
		padding-left: 25px;
	}
}

/* MAIN SECTION */
section {
	width: 70%;
	float: right;
	overflow: hidden;
}
.splash {
	background-image: url("../images/home-bg.jpg");
	background-size: cover;
	height: 100vh;
}
#consume-box {
	text-align: center;
	height: 100%;
	margin: 0 auto;
	display: table;
}
.consume {
	display: table-cell;
	vertical-align: middle;
	opacity: .7;
}
.consume h5 {
	padding: 35px 35px 20px 35px;
}
/* Main Mobile Styles */
@media only screen and (max-width: 768px) {
	section {
		width: 100%;
		float: none;
	}
	.splash {
		height: 75vh;
	}
}
@media only screen and (max-width: 568px) {
	.consume h5 {
		font-size: 50px;
		padding: 25px;
	}
}
/* Main Tablet */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
	section {
		width: 65%;
	}
}

/* PUBLICATION PAGES */
.container {
	width: 100%;
	margin: 60px 0 25px 0;
	padding: 0 40px;
}
.container:after{
    clear: both;
    content: "";
    display: block;
}
.title {
	width: 100%;
	margin-bottom: 25px;
	padding: 0;
}
.title p a {
	font-family: 'League Spartan';
	font-size: 18px;
	color: #9B3E83;
}
.title p a:hover {
	opacity: .7;
}
.single-pub-cover {
	float: left;
	width: 55%;
	overflow: hidden;
}
.single-pub-cover img {
	width: 100%;
}
.single-pub-description {
	float: left;
	width: 45%;
	padding-left: 50px;
}
.single-pub-description h2 a {
	color: #9B3E83;
}
.single-pub-description h2 a:hover {
	opacity: .7;
}
.single-pub-description h3 {
	margin-bottom: -5px;
	padding-top: 10px;
	border-bottom: 1px solid #BBBBBB;
}
.single-pub-description .btn {
	margin: -5px 10px 15px 0;
}
h3.back, h3.next {
	border: none;
	margin: 10px 25px 0 0;
	float: left;
}
.back a, .next a {
	color: #330D2B;
}
.back a:hover, .next a:hover {
	color: #9B3E83;
}
h4.subtitle {
	margin: -5px 0 10px 0;
	font-style: italic;
}
/* SINGLE PUB Mobile & Tablet */
@media only screen and (max-width: 1024px) {
	.single-pub-cover, .single-pub-description {
		width: 100%;
		float: none;
	}
	.single-pub-description {
		padding: 0;
	}
	.single-pub-description h2 {
		font-size: 24px;
		margin-top: 15px;
	}
	.single-pub-description .btn {
		margin: 0 15px 15px 0;
		font-size: 18px;
		float: none;
		padding: 20px 15px 15px 15px;
	}
	.single-pub-description h3 {
		font-size: 22px;
	}
	h3.back, h3.next {
		margin: 5px 0 25px 0;
		font-size: 18px;
	}
	h3.next {
		float: right;
	}
}

/* PUBLICATIONS GRID */
.pub {
	float: left;
	width: 50%;
	margin-bottom: 30px;
	overflow: hidden;
}
.pub-inner-wrap {
	width: 100%;
	background-color: #fff;
}
.pub-left {
	padding-right: 15px;
}
.pub-right {
	padding-left: 15px;
}
.pub img {
	width: 100%;
}
.pub-text {
	width: 100%;
	padding: 15px;
}
.pub h3 {
	font-size: 20px;
}
.pub p {
	margin: 0;
	font-style: italic;
}
.pub a:hover {
	opacity: .7;
}
/* TITLE COLORS */
.pub-tc1 {
	color: #9B3E83;
}
.pub-tc2 {
	color: #309E9C;
}
.pub-tc3 {
	color: #ec5633;
}
.pub-tbw {
	color: #56857B;
}
.pub-ssf {
	color: #9B7415;
}
.pub-wwlg {
	color: #ED4439;
}
.pub-tr {
	color: #807D52;
}
.pub-aob {
	color: #1da1f3;
}

/* PUBLICATIONS Mobile */
@media only screen and (max-width: 568px) {
	.title {
		margin-bottom: 10px;
	}
	.title h1 {
		font-size: 32px;
	}
	.pub {
		width: 100%;
		float: none;
		margin: 0;
	}
	.pub-left, .pub-right {
		margin-bottom: 35px;
		padding: 0;
	}
}

/* SUBSCRIBE */
.subscribe {
	background-image: url("../images/subscribe-bg.jpg");
	background-size: cover;
	display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.form-wrap {
	width: 100%;
}
form {
	background-color: rgba(255,255,255,.9);
	text-align: left;
	padding: 60px 60px 40px 60px;
	width: 65%;
	margin: 0 auto;
}
form h3 {
	font-size: 28px;
	letter-spacing: 1.5px;
}
input {
	padding: 10px;
}
a.tinyletter {
	font-size: 14px;
	font-style: italic;
	color: #9B3E83;
}
a.tinyletter:hover	 {
	color: #C38BB5;
}

/* Subscribe Mobile Styles */
@media only screen and (max-width: 768px) {
	.subscribe {
		display: block;
		height: auto;
	}
	form {
		width: 80%;
		height: 100%;
		margin: 25% auto;
	}
}
@media only screen and (max-width: 660px) {
	.subscribe {
		height: auto;
	}
	form {
		padding: 40px 40px 25px 40px;
		margin: 50px auto;
	}
	form h3 {
		font-size: 20px;
	}
}

/* ABOUT */
.def {
	font-family: 'Libre Baskerville', serif;
	font-size: 16px;
	color: #330D2B;
	margin: 10px 0 20PX 0;
}
.def li {
	padding-bottom: 10px;
}
.about-text-left {
	width: 50%;
	float: left;
	padding-right: 20px;
}
.about-text-right {
	width: 50%;
	float: right;
	padding-left: 20px;
}
.about-top {
	width: 100%;
	height: 47vh;
}
.about-top p {
	margin-bottom: 2em;
}
.about-top h4 {
	margin-bottom: .5em;
}
.about-top .links a {
	margin-bottom: .1em;
}
.about-bottom {
	width: 100%;
	height: 50vh;
}
.about-img {
	width: 100%;
	height: 100%;
	background-image: url(../images/about.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left center;
}
.about-img h5 {
	padding: 100px auto;
	margin: 0;
}
.links {
	width: 50%;
	float: left;
	text-align: left;
}
.links a {
	font-family: 'League Spartan', sans-serif;
	font-size: 14px;
	color: #9B3E83;
	display: block;
	padding: 5px 10px 0 0;
}
.copyright {
	font-size: 14px;
	font-style: italic;
	opacity: .75;
}

/* ABOUT Mobile & Tablet */
@media only screen and (max-width: 1024px) {
	.container {
		width: 100%;
		margin: 0;
		padding: 25px 40px 0 40px;
	}
	.about-text-left, .about-text-right {
		width: 100%;
		float: none;
		padding: 0 0 15px 0;
	}
	h1 {
		font-size: 36px;
		padding: 0;
		margin: 0;
	}
	.def {
		margin-bottom: 10px;
	}
	.links {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
	.links a {
		display: inline-block;
		font-size: 16px;
		padding: 10px 20px 0 0;
	}
}

/* WEBCOMICS */
.title img {
	width: 100%;
	padding-top: 15px;
}
.webcomics {
	width: 100%;
	overflow: hidden;
}
.webcomics h3 {
	font-size: 24px;
	padding: 10px 0 15px 0;
}
.webthumb {
	float: left;
	width: 33.3%;
	height: auto;
	overflow: hidden;
}
.webthumb h4 {
	font-size: 16px;
	padding: 10px 0 20px 0;
	text-align: center;
	display: block;
}
.webthumb-inner-wrap {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.webthumb-left {
	padding-right: 12px;
}
.webthumb-right {
	padding-left: 12px;
}
.webthumb-ctr {
	padding: 0 6px;
}
.webthumb img {
	width: 100%;
}
.webthumb a:hover {
	opacity: .7;
}
@media only screen and (min-width: 569px) and (max-width: 1024px) {
	.webthumb {
		width: 50%;
	}
	.webthumb-left, .webthumb-right, .webthumb-ctr {
		padding: 0;
	}
	.webthumb:nth-child(even) {
		padding-right: 10px;
	}
	.webthumb:nth-child(odd) {
		padding-left: 10px;
	}
}

@media only screen and (max-width: 568px) {
	.webthumb {
		float: none;
		width: 100%;
	}
	.webthumb-left, .webthumb-right, .webthumb-ctr {
		padding: 0;
	}
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: #000;
    text-align:center;
    z-index: 100;
}
#lightbox i {
    color: #9B3E83;
    font-size: 2.5em;
    cursor: pointer;
}
#lightbox i.close {
    position: fixed;
    top: 0;
    right: 0;
    margin: 10px 15px 0 0;
}
#lightbox i.prev {
	float: left;
	padding-right: 15px;
}
#lightbox i.next {
	float: right;
	padding-left: 15px;
}
#lightbox #content {
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
#lightbox img {
	height: 100%;
	width: auto;
	cursor: pointer;
}
.hidden {
	display: none;
}

/* LIGHTBOX Mobile */
@media only screen and (max-width: 768px) {
	#lightbox #content img {
		object-fit: contain;
		width: 100%;
		max-height: 100%;
	}
	#lightbox i.close {
		background-color: #330D2B;
		width: 100%;
		text-align: right;
		margin: 0;
	}
	#lightbox i {
		padding: 10px 15px 10px 0;
		display: none;
	}
	.ui-loader {
		display: none;
	}
}
