/*--------------------------------------------------------------
## Colors and Fonts
COLORS:
	PURPLE	=	#03000f, rgba(3,0,15,1)
		PURPLE (SECONDARY) = #12005c, rgba(18,0,92,1) #000099 #330099
		PURPLE (SECONDARY - 90%) = #1c1927, rgba(28,25,39,1)
		PURPLE (SECONDARY - 80%) = #35333f, rgba(53,51,63,1)

	YELLOW	=	#fff200, rgba(255,242,0,1)

	ORANGE	=	#f26522, rgba(242,101,34,1)
		CYAN (ORANGE COMPLIMENTARY) = #22aff2, rgb(34,175,242)
		PURPLE (ORANGE TRIADIC) = #6522f2, rgb(101,34,242)

	GREY	=	#e6e6e6
				rgba(230,230,230,1)

FONTS:
	HEADINGS/LINKS	=	font-family: 'Montserrat', sans-serif; (will fall back to stock sans-serif font)
	BODY TEXT 		=	font-family: 'Source Sans Pro', sans-serif; (will fall back to stock serif font)

## Begin general styles (dev only, final deployed in style.css
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header:before {
	content: none;
}
.site-header {
	background: rgba(3,0,15,1);
	padding: 0 1rem;
	position: fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	left: 0;
	height: 4rem;
}
.site-header-content {
	max-width: 64rem;
	height: 100%;
	margin: auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}
.site-branding {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	max-width: 60%;
}
.site-title {
	overflow: auto;
	position: relative;
}
.site-title img {
	display: inline-block;
	vertical-align: bottom;
}
.site-title {
	margin: 0;
	padding: 0;
	max-width: 35%;
}
@media screen and (min-width: 48em) {
	.site-title {
		max-width: 7.75rem;
	}
}
@media screen and (min-width: 63em) {
	.site-title {
		max-width: 12rem;
	}
}
.site-description {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.5rem;
	font-weight: bold;
	text-transform: uppercase;;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
	width: 60%;
	padding: 0 0 0 1rem;
}
.nav-wrapper {
	width: 40%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}
/* -- Header Search -- */
.header-search {
	margin-right: 2rem;
	width: 50%;
}
.header-search .search-form {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
}
.header-search button {
	border: 0;
	border-color: transparent;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: rgba(242,101,34,1);
	font-size: 1.1rem;
	line-height: 1;
	margin-top: .1rem;
	padding: 0 0 0 .6rem;
	text-shadow: none;
}
.header-search label {
	width: 100%;
	color: rgba(242,101,34,.8);
	background: rgba(255, 255, 255, .9);
	border: none;
	border-radius: 2px;
}
.header-search input::placeholder {
	color: rgba(3,0,15,1);
}
.header-search input[type="search"] {
	color: rgba(3,0,15,1);
	border: 0;
	background: none;
}

/*-- Social List --*/
.social-list-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: #f26522;
}
.social-list-wrapper .social-list {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
}
.social-list-wrapper .social-list-item a {
	color: #ffffff;
	font-size: 1.5rem;
}

/* ----- Main NAvigation ----- */
#nav-icon {
  width: 30px;
  height: 23px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #f26522;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}
#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 9px;
}
#nav-icon span:nth-child(4) {
  top: 18px;
}
#nav-icon.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 25%;
}
#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 25%;
}

.main-navigation {
	display: none;
	position: fixed;
	top: 4rem;
	left: 0;
	bottom: 3rem;
	width: 100%;
	background: rgba(3,0,15,.9);
	border-top: 1px solid #f26522;
}
.main-navigation ul {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 0;
	height: 100%;
	text-align: center;
}
.main-navigation ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
	height: 20%;
}
.main-navigation ul li a {
	color: #f26522;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	font-size: 1.7rem;
	width: 100%;
}
/* ----- Ads ----- */
.header-ad .adsbygoogle,
.archive-ad .adsbygoogle,
#secondary .adsbygoogle,
.related .adsbygoogle {
	background: transparent;
}
.adsbygoogle ins {
	background: transparent;
}
.ad-id {
	font-size: .8rem;
	text-align: center;
	margin: 0;
	color: rgba(255,255,255,0.5);
	grid-column: 2;
}
.archive-ad .ad-id,
#secondary .ad-id {
	color: rgba(0,0,0,0.5);
}
.header-ad {
	margin: 1rem 0;
	text-align: center;
	grid-column: 1 / span 3;
}
.header-ad img {
	margin: auto;
}
.archive-ad {
	margin: 1rem 0;
}

.site-content {
	max-width: 64rem;
  margin: auto;
  display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

/*--------------------------------------------------------------
# Home Page ('index.php')
--------------------------------------------------------------*/
.featured-container {
	grid-column: 1 / span 3;
	display: grid;
	grid-template-columns: 1fr;
	background-color: rgba(3,0,15,1);
	padding: 1rem;
	margin-top: 4rem;
}
.featured-container img {
	margin: auto;
}
.featured-container a {
	color: rgba(242,101,34,1);
}
.featured-container p {
	color: #ffffff;
}
.home .content-area {
	margin-top: 1rem;
}
.home .page-header {
	display: none;
}
#watchMe {
	padding: 1rem 0;
}

/*--------------------------------------------------------------
# Sidebar elements (sidebar.php)
--------------------------------------------------------------*/
#secondary {
	grid-column: 1 / span 3;
	padding: 1rem;
	background-color: #ffffff;
}
.newsletter,
.events-widget {
	color: #ffffff;
	padding: 1rem;
	background: #5f4ab5; /* Old browsers */
	background: -moz-linear-gradient(top, #5f4ab5 0%, #110056 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #5f4ab5 0%,#110056 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #5f4ab5 0%,#110056 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f4ab5', endColorstr='#110056',GradientType=0 ); /* IE6-9 */
	border-radius: 3px;
}
.widget-title {
	color: #ffffff;
	/* color: rgba(18,0,92,1); */
	font-size: 1.8rem;
	text-align: center;
	border-bottom: 1px solid #ffffff;
	-webkit-text-stroke: 1px #ffffff;
	padding: 0 0 .5rem 0;
}
.newsletter input {
	border-radius: 2px;
}
.newsletter .email {
	width: 100%;
	margin-bottom: 0.2rem;
}
.newsletter .name {
	width: 100%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}
.newsletter .fname,
.newsletter .lname {
	width: 47.5%;
}
.newsletter .button {
	width: 100%;
	margin-top: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.5rem;
	color: #ffffff;
	background: rgba(242,101,34,1);
	/* background: rgba(18,0,92,1); */
	border: none;
	border-radius: 2px;
}
.tribe-list-widget {
	padding: 0;
}
.tribe-events-list-widget-events {
	padding: 0 !important;
}
.events-widget a {
	color: rgba(242,101,34,1);
}
.tribe-events-widget-link {
	margin-bottom: 0;
	text-align: center;
	text-transform: uppercase;
}

/*--------------------------------------------------------------
# Archive / Category Pages (Home Page excerpt styles)
--------------------------------------------------------------*/
.content-area {
	grid-column: 1 / span 3;
	margin-top: 4rem;
	background: #ffffff;
}
.site-main {
	margin: auto;
	padding: 0 1rem;
}
.home .excerpt,
.archive .excerpt {
  padding: 1rem 0;
  margin: 0;
  border-bottom: 1px solid #000000;
}
.home .excerpt .entry-thumbnail img,
.archive .excerpt .entry-thumbnail img {
	margin: auto;
}
.home .excerpt .entry-content,
.archive .excerpt .entry-content {
  margin: 0;
	padding: 0 1rem;
}
.home .excerpt .entry-content p,
.archive .excerpt .entry-content p {
  margin: 0;
}
.home .excerpt .entry-title,
.archive .excerpt .entry-title {
  margin: 0 0 1rem 0;
}
.home .excerpt .entry-title a,
.archive .excerpt .entry-title a {
	color: rgba(242,101,34,1);
}
.archive .page-header {
	width: 100%;
	margin: 0 auto 1.5rem;
	text-align: center;
	border-bottom: 1px solid rgba(242,101,34,1);
}
.archive-description {
	margin-bottom: 1rem;
}
.home .pagination,
.archive .pagination {
	width: 100%;
	padding: .5rem 0;
}
.nav-links a,
.nav-links .current {
	font-size: 1.8rem;
	font-weight: bold;
	color: rgba(242,101,34,1);
	padding: 0.2rem 0.5rem;
}
.nav-links .current {
	background: #5f4ab5; /* Old browsers */
	background: -moz-linear-gradient(top, #5f4ab5 0%, #110056 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #5f4ab5 0%,#110056 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #5f4ab5 0%,#110056 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f4ab5', endColorstr='#110056',GradientType=0 ); /* IE6-9 */
	border-radius: 3px;
}

/*--------------------------------------------------------------
# Single Pages
--------------------------------------------------------------*/
.single .content-area {
	grid-column: 1 / span 3;
}
.single-thumbnail {
	margin: auto;
}
.single-thumbnail img {
	width: 100%;
}
.single .entry-title,
.single .entry-meta a {
	color: rgba(242,101,34,1);
}
.single .entry-meta {
	text-align: center;
	color: #000000;
	margin-bottom: 1.5rem;
}
.single .entry-meta a {
	font-weight: bold;
}
.single .entry-content,
.single .author-card,
.single .entry-footer,
.single .comments-area {
	margin: 3rem auto 0;
}
.single .entry-content a {
	-moz-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
	color: rgba(242,101,34,1);
	font-weight: 700;
	-webkit-box-shadow: inset 0 -4px 0 rgba(242,101,34,0); /* Thanks Wired! */
	box-shadow: inset 0 -4px 0 rgba(242,101,34,0);
	border-bottom: 3px solid rgba(242,101,34,0);
}
.single .entry-content a:hover {
	/*-webkit-box-shadow: inset 0 -4px 0 rgba(242,101,34,.8); /* Thanks Wired! */
	border-bottom: 3px solid rgba(242,101,34,.8);
}
.single h3 {
	font-size: 1.3rem;
}
.single .wp-caption-text:before,
.single .wp-caption-text:after {
	content: '"';
}
.single .wp-caption-text {
	font-size: .8rem;
	font-style: italic;
	color: rgba(0,0,0,0.7);
	text-align: left;
	margin: 0;
	padding: 0.5rem 1rem;
}
.x-star {
	display: inline-block;
}
.jp-sharing-input-touch .sd-content ul li {
	padding-left: 0 !important;
}
.sd-content ul li {
	margin: 0 .9rem .9rem 0 !important;
}
div.sharedaddy h3.sd-title {
	line-height: 1.5rem !important;
}
div.sharedaddy h3.sd-title:before {
	border-top: 0 !important;
}
.related {
	padding: 3rem 0 0 0;
}
#recentcomments {
	margin: 0;
	padding: 0 1rem;
	list-style: none;
}
.recentcomments {
	font-weight: 700;
	padding: 1rem 0;
	border-bottom: 1px solid #000;
}
.recentcomments:last-child {
	border-bottom: 0;
}
.single .entry-footer-container {
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(3,0,15,1);
	border-bottom: 1px solid rgba(3,0,15,1);
}
.single .author-card {
	width: 100%;
}
.single .author-card a {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	border: none;
}
.single .author-card a:hover {
	border: none;
}
.single .author-avatar {
	width: auto;
	margin: 0 1rem 0 0;
}
.single .author-content {
	width: 80%;
}
.single .author-name {
	margin-top: 0;
}
.single .author-bio {
	font-weight: normal;
	color: #000000;
}
.single .entry-footer {
	width: 100%;
	flex-flow: row wrap;
	text-transform: uppercase;
	font-size: .9rem;
}
.single .entry-footer .cat-links {
	width: 100%;
	margin-bottom: 1.5rem;
}
.comments-container {
	margin: 1.5rem 0;
}
.comment-list {
	margin: 0 0 1.5rem 0;
	padding-left: 1rem;
}

/* ----- Single - Review ----- */
.single .review-entry-title {
	margin-top: 0;
	color: #f26522;
}
.single .review-meta {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
}
.single .category-goty .review-meta {
	display: none;
}
.single .review-art img {
	width: 100%;
}
.single .review-score {
	display: flex;
	align-items: center;
	width:25%;
	text-align: center;
	background: #03000f;
}
.single .review-details {
	width:75%;
	margin:0;
}
.single .review-details table {
  margin:0;
	font-size: .9rem;
	background: #03000f;
	color: #fff;
}
.single .review-details tr {
	background: rgba(255,255,255,0.1);
}
.single .review-details tr:nth-child(even) {
	background:none;
}
.single .review-details td {
	padding:.5em;
}
.single .review-details p {
	margin:0;
}
.single .review-info-title {
	font-family: 'Orbitron', sans-serif;
	font-weight: bold;
	color:#ffffff;
}
.single .review-title-data {
	font-weight:bold;
}
.single-post-sidebar {
	margin-bottom: 3rem;
}

/* -- Single Post Navigation -- */
.single-post-nav {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: flex-start;
	text-align: center;
	margin: 0;
	margin-top: 3rem;
}
.single-post-nav a {
	width: 47.5%;
}
.single-post-nav .nav-desc {
	width: 70%;
	margin: auto;
	font-size: .8rem;
	text-align: center;
	border-bottom: 1px solid rgba(0,0,0,.5);
}
.single-post-nav .nav-title {
	font-size: .7rem;
	margin: 1rem 0;
}
.single-post-nav .nav-box {
	width: 40%;
}
.single-post-nav p {
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
}
.single-post-nav h3 {
	font-size: 1rem;
}
.single-post-nav .previous {
	padding-right: 5%;
}
.single-post-nav .next {
	padding-left: 5%;
	border-left: 1px solid #737279;
}
/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
	margin-bottom: 52px;
}
.site-footer,
#infinite-footer .container {
	font-size: .8rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: row nowrap;
	background: #03000f !important;
}
.footer-menu {
	list-style: none;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}
.footer-menu li {
	margin: 0 1.5rem 0 0;
}
.footer-menu li a,
.site-copyright p {
	color: #f26522;
	font-weight: bold;
	margin: 0;
}
.site-copyright p {
	text-align: right;
}
/*--------------------------------------------------------------
# Tablet three column layout (screens > 768px)
--------------------------------------------------------------*/
@media screen and (min-width: 48em) {
	.site-main {
		padding: 0;
	}
	.site-header {
		height: 5rem;
	}
	.site-branding {
		width: 50%;
	}
	.nav-wrapper {
		width: 50%;
		justify-content: flex-end;
	}
	.header-search {
		margin-right: 3rem;
		width: 37%;
	}
	.main-navigation {
		top: 5rem;
	}
	.site-content {
		margin-top: 5rem;-+
	}
	.content-area {
		grid-column: 1 / span 2;
		padding: 0 1rem;
	}
	.widget-area {
		grid-column: 3;
	}

	/* -- Featured -- */
	.featured-container {
		padding: 2.5rem .5rem 2rem .5rem;
		margin: 0;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.featured-container article {
		margin: 0;
		padding: 0 0.5rem;
	}
	.featured-container .entry-title {
		margin-top: 0;
	}
	.featured-container p {
		margin-bottom: 0;
	}

	/* -- Sidebar -- */
	#secondary {
		grid-column: 3;
	}
	.widget-title {
		margin-top: 0;
	}

	/* -- Home / Archive Pages -- */
	.home .content-area,
	.archive .content-area,
	.page .content-area {
		margin-top: 0;
	}
	.home .excerpt,
	.archive .excerpt {
	  display: grid;
	  grid-template-columns: 35% 65%;
	  align-items: center;
	  padding: 1rem 0;
	  margin: 0;
	  border-bottom: 1px solid #000000;
	}
	.home .excerpt .entry-thumbnail,
	.archive .excerpt .entry-thumbnail {
	  grid-column: 1;
	}
	.home .excerpt .entry-content,
	.archive .excerpt .entry-content {
	  grid-column: 2;
	  margin: 0;
	}
	.archive .page-header {
		width: 100%;
	}

	/*-- Single Post / Reviews --*/
	.single .content-area {
		margin: auto;
		padding: 0;
	}
	.single-tribe_events .content-area {
		grid-column: 1 / span 2;
	}
	.single article {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.single .entry-header,
	.single .entry-graphics,
	.single .entry-footer-container {
		grid-column: 1 / span 3;
	}
	.single .entry-header {
		background-color: rgba(3,0,15,1);
		padding: 1em 1em 6rem 1em;
	}
	.single .entry-title {
		font-size: 2rem;
		text-align: center;
		text-shadow: 0px 0px 10px rgba(242,101,34,1);
	}
	.single .entry-meta {
		padding: 0 0 2rem 0;
		color: rgba(255, 255, 255, .8);
	}
	.single .entry-graphics {
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		margin-top: -7rem;
		margin-bottom: 2rem;
	}
	.post .single .single-thumbnail {
		width: 100%;
	}
	.single .category-reviews .single-thumbnail {
		width: 55%;
		border-top: solid 1px rgba(242,101,34,1);
		border-bottom: solid 1px rgba(242,101,34,1);
		border-left: solid 1px rgba(242,101,34,1);
	}
	.single .category-goty .single-thumbnail {
		width: 100%;
		border-top: none;
		border-bottom: none;
		border-left: none;
	}
	.single .review-meta {
		width: 45%;
		flex-flow: row wrap;
		-webkit-box-shadow: -11px 0px 20px 0px rgba(0,0,0,0.50);
		-moz-box-shadow: -11px 0px 20px 0px rgba(0,0,0,0.50);
		box-shadow: -11px 0px 20px 0px rgba(0,0,0,0.50);
		border-top: 1px solid rgba(242,101,34,1);
		border-right: 1px solid rgba(242,101,34,1);
		border-bottom: 1px solid rgba(242,101,34,1);
	}
	.single .entry-content {
		grid-column: 1 / span 2;
		margin: 0;
		padding: 0 1rem;
	}
	.single-tribe_events .entry-content {
		grid-column: 1 / span 3 !important;
	}
	.site-footer {
		margin-bottom: 52px;
	}
}
/*--------------------------------------------------------------
# Desktop/Laptop three column layout (screens > 1000px)
--------------------------------------------------------------*/
@media screen and (min-width: 64rem) {
	/* ----- Site Header - Desktop ----- */
	.site-header {
		height: 100px;
		padding: 0;
	}
	.site-header-content {
		align-items: center;
	}
	.site-branding {
		width: 50%;
	}
	.site-title {
		width: 35%;
	}
	.site-description {
		width: 65%;
		font-size: 0.9rem;
	}
	.nav-wrapper {
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-end;
		width: 50%;
	}
	.header-search {
		margin-right: 3rem;
		width: 27%;
	}
	/*-- Social List --*/
	.social-list-wrapper {
		position: relative;
		bottom: auto;
		left: auto;
		width: auto;
		z-index: auto;
		background: none;
		width: 50%;
	}
	.social-list-wrapper .social-list {
		flex-flow: row nowrap;
		justify-content: flex-end;
		align-items: flex-start;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.social-list-wrapper .social-list-item a {
		color: rgba(255,255,255,.5);
		font-size: 1.5rem;
		margin: 0 0 0 1.5rem;
	}
	.social-list-wrapper .social-list-item a:hover {
		color: rgba(255,255,255,.7)
	}

	/* ----- Navigation ----- */
	#nav-icon {
		display: none;
	}
	.main-navigation {
		display: block;
		position: relative;
		top: auto;
		left: auto;
		bottom: auto;
		width: auto;
		background: none;
		border: 0;
		margin-top: 1rem;
	}
	.main-navigation ul {
		flex-flow: row nowrap;
		align-items: flex-end;
		justify-content: flex-end;
		text-align: right;
	}
	.main-navigation ul li {
		width: auto;
		margin-left: 1.5rem;
	}
	.main-navigation ul li a {
		-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
		color: rgba(242,101,34,.8);
		font-size: 1rem;
		text-shadow: 0px 0px 0px rgba(242,101,34,0);
	}
	.main-navigation ul li a:hover {
		color: rgba(242,101,34,1);
		text-shadow: 0px 0px 7px rgba(242,101,34,1);
	}
	.main-navigation .current-menu-item a {
		color: rgba(242,101,34,1);
		border-bottom: 5px solid rgba(242,101,34,1);
		margin-bottom: -5px;
	}

	/* ----- Site Content - Desktop ----- */
	.site-content {
		margin-top: 100px;
	}
	.site-main {
		margin: auto;
	}
	.featured-container a {
		-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
		color: rgba(242,101,34,.8);
		text-shadow: 0px 0px 0px rgba(242,101,34,0);
	}
	.featured-container a:hover {
		color: rgba(242,101,34,1);
		text-shadow: 0px 0px 7px rgba(242,101,34,1);
	}
	.home .excerpt .entry-title a,
	.archive .excerpt .entry-title a {
		-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
		color: rgba(242,101,34,.8);
	}
	.home .excerpt .entry-title a:hover,
	.archive .excerpt .entry-title a:hover {
		color: rgba(242,101,34,1);
	}

	/* -- single post 3 column grid -- */
	.single article {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.single .entry-header,
	.single .entry-graphics,
	.single .entry-footer-container {
		grid-column: 1 / span 3;
	}
	.single .entry-header {
		background-color: rgba(3,0,15,1);
		padding: 1rem 0 6rem 0;
	}
	.single .entry-title {
		font-size: 2.5rem;
		padding: 0 1.5rem;
	}
	.single .entry-meta {
		padding: 0 0 2rem 0;
	}
	.single .entry-graphics {
		margin-top: -6rem;
	}
	.single .category-reviews .single-thumbnail {
		width: 60%;
	}
	.single .review-meta {
		width: 40%;
	}
	.single .entry-content {
		grid-column: 1 / span 2;
		margin: 0;
	}
	.single-tribe_events .entry-content {
		grid-column: 1 / span 3;
	}
	.single .author-card {
		padding: 0;
	}
	.single .entry-footer {
		padding: 0;
	}
	.single .sidebar-1 {
		grid-column: 3;
		margin-top: 0;
	}
	.single .entry-footer-container {
		padding: 1rem 0;
	}
	.site-footer {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 75rem) {
	.single .category-reviews .entry-graphics {
		width: 110%;
		margin-left: -5%;
	}
	.single .category-reviews .single-thumbnail {
		border-radius: 20px 0 0 20px;
	}
	.single .category-reviews .single-thumbnail img {
		border-radius: 20px 0 0 20px;
	}
	.single .review-meta {
		border-radius: 0 20px 20px 0;
	}
	.single .review-art img {
		border-radius: 0 20px 0 0;
	}
	.single .review-details table {
		border-radius: 0 0 20px 0;
	}
}
