/*
Theme Name: Spacetime by Code Sharks
Theme URI: http://www.codesharks.io/
Description: Spacetime by Robert Nickson / Code Sharks
Version: 1.0
Author: Robert Nickson / Code Sharks
Author URI: http://www.codesharks.io
*/


/* CUSTOM FONTS */

@font-face {
    font-family: 'TradeGothicLTCom';
    src: url(_fonts/TradeGothicLTCom.eot);
    src: url(_fonts/TradeGothicLTCom.eot?#iefix) format("embedded-opentype"), url(_fonts/TradeGothicLTCom.woff) format("woff"), url(_fonts/TradeGothicLTCom.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'TradeGothicLTCom-Cn18';
    src: url(_fonts/TradeGothicLTCom-Cn18.eot);
    src: url(_fonts/TradeGothicLTCom-Cn18.eot?#iefix) format("embedded-opentype"), url(_fonts/TradeGothicLTCom-Cn18.woff) format("woff"), url(_fonts/TradeGothicLTCom-Cn18.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'TradeGothicLTCom-BdCn20';
    src: url(_fonts/TradeGothicLTCom-BdCn20.eot);
    src: url(_fonts/TradeGothicLTCom-BdCn20.eot?#iefix) format("embedded-opentype"), url(_fonts/TradeGothicLTCom-BdCn20.woff) format("woff"), url(_fonts/TradeGothicLTCom-BdCn20.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}


/* HTML / BODY */

html {
	height: 100%;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	font-smoothing: antialiased !important;
}

body {
	min-height: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	color: #666666;
	background: #ffffff;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}


/* FONTS */

h1, h2, h3, h4, h5, h6, p, li {
	font-family: 'Lato', sans-serif;
}

h1 {
	font-size: 72px;
	font-weight: 100;
	letter-spacing: 18px;
	margin: 0;
}

h1 strong {
  font-weight: 900;
  letter-spacing: 0px;
}

h2 {
	font-size: 32px;
	font-weight: 300;
	letter-spacing: 4px;
	margin: 0 0 20px 0;
}

h2 strong {
  font-weight: 500;
}

h3 {
	font-size: 24px;
	font-weight: 300;
	text-align: left;
	letter-spacing: 0;
	margin-bottom: 0px;
}

h3 strong {
  font-weight: 700;
}

h4 {
	font-size: 16px;
	font-weight: 300;
	margin: 10px 0 10px 0;
}

h4 strong {
  font-weight: 900;
}

h5 {
	font-size: 14px;
	font-weight: 300;
	margin: 10px 0 10px 0;
}

h5 strong {
  font-weight: 900;
}

h6 {
	font-size: 12px;
	font-weight: 100;
	letter-spacing: 0px;
	margin: 40px 0 40px 0;
}

h6 strong {
  font-weight: 900;
}

p {
  /* color: #666666; */
	font-size: 13px;
    font-weight: 400;
	line-height: 36px;
	margin: 0 0 20px 0;
}

p strong {
  font-weight: 700;
}

pre {
	font-family: 'Crimson Text', serif;
	font-size: 20px;
	font-weight: 700;
	font-style: italic;
	margin: 40px;
}

p:empty {
  display: none;
}


/* LINKS */

a {
	color: #4a4a4a;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

a:hover {
	color: #333333;
}

ol {
	padding-left: 28px;
}

ol li {
	font-family: 'TradeGothicLTCom-BdCn20';
	font-size: 13px;
	font-weight: 400;
	line-height: 20px
}

hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  margin: 30px 0;
}


/* MAX BUTTONS */

a.maxbutton-button-dark, a.maxbutton-button-light {
  font-family: 'TradeGothicLTCom-BdCn20';
  font-size: 16px;
  color: #ffffff;
  background: #161616;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  padding: 10px 15px;
  margin: 10px 0;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  outline: none;
  cursor: pointer;
}

a.maxbutton-button-dark:hover {
  color: #161616;
  background: #ffffff;
}

a.maxbutton-button-light {
  color: #161616;
  background: #ffffff;
}

a.maxbutton-button-light:hover {
  color: #ffffff;
  background: #161616;
}


/* HEADER */

.header {
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0px;
	z-index: 1000;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-webkit-animation: slide-in-top 250 cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-top 250 cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-top {
	0% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
		}
	}

@keyframes slide-in-top {
	0% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

.header-container {
	width: 100%;
	height: 100%;
	display: flex;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.header-left {
	display: flex;
	flex: 1;
  margin-left: 20px;
	justify-content: flex-start;
	align-items: center;
}

.header-center {
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;
}

.header-right {
	display: flex;
	flex: 1;
  margin-right: 20px;
	justify-content: flex-end;
	align-items: center;
}

.logo img {
	height: 30px;
	width: auto;
	margin-top: 4px;
	opacity: 0.78;
	cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}


/* NAVIGATION */

.navigation {
  display: flex;
}

.navigation.menu-main-container {
  height: 100%;
  display: flex;
  float: left;
}

.navigation ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation ul li {
  display: flex;
  align-items: center;
  height: 80px;
}

.navigation ul li a {
  color: rgba(0,0,0,0.7);
  font-family: 'TradeGothicLTCom-BdCn20';
  font-size: 14px;
  font-weight: 100;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 80px;
  display: block;
  padding: 0px 10px;
  background: #ffffff;
  mix-blend-mode: screen;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.navigation ul li a .fab {
  font-size: 14px;
}

.navigation ul li:hover > a, .menu-search:hover ul li > a, .navigation .current_page_item a, .navigation .current_page_item > a:hover, .navigation .current-menu-item a, .navigation .current-menu-ancestor a {
  color: rgba(0,0,0,1);
  line-height: 74px;
}

.navigation-spacer {
  width: 20px;
  background: #ffffff;
  mix-blend-mode: screen;
}

.navigation-social ul li a {
  padding: 0px 5px;
}


/* NAVIGATION SUB */

.navigation ul li ul {
  width: 0px;
  height: 0px;
  opacity: 0;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.navigation ul li:hover ul.sub-menu {
  display: block;
  width: initial;
  height: initial;
  position: absolute;
  top: 80px;
  opacity: 1;
  z-index: 1;
}

.navigation ul li ul li {
  height: 40px;
}

.navigation ul li:hover ul.sub-menu li {
  background: #ffffff;
  position: relative;
  padding: 5px 10px 5px 0;
}

.navigation ul li:hover ul.sub-menu li a {
  color: rgba(0,0,0,0.55);
  letter-spacing: 0px;
  line-height: 20px;
  padding: 0;
  margin: 4px 20px;
  background: transparent;
  mix-blend-mode: initial;
}

.navigation ul li:hover ul.sub-menu li:hover > a, .navigation ul li:hover ul.sub-menu li.current-menu-item > a {
  color: rgba(0, 166, 255, 1);
  cursor: pointer;
}

.navigation .menu-item-has-children > a::after {
  content: '';
  color: rgba(0,0,0,0.7);
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  display: inline-block;
  transform: rotate(45deg);
  position: relative;
  left: 4px;
  bottom: 0px;
  margin: 0 6px 0 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0);
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,0));
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0));
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.navigation ul li:hover > a::after {
  bottom: 3px;
  transform: rotate(135deg);
  text-shadow: 1px 1px 2px rgba(0,0,0,0);
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,0));
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0));
}

.header.active .navigation ul li.current-menu-item a::after {
    color: rgba(0,0,0,0.7);;
}


/* SEARCH */

#search-activate {
	cursor: pointer;
}

#search-icon {
	font-size: 16px;
  font-weight: 900;
	text-decoration: none;
  display: inline;
  position: relative;
  top: 2px;
}

.search-box {
  width: 100vw;
  height: 0vh;
  background: rgba(0,0,0,0.85);
  position: fixed;
  z-index: 1;
  opacity: 0;
}

#nav-search {
}

.search-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100vw;
  opacity: 0;
}

.search-bar input {
  font-family: 'TradeGothicLTCom-BdCn20';
  color: rgba(0,0,0,0.8);
  font-size: 32px;
  width: calc(80vw - 70px);
  height: 100px;
  border: none;
  padding: 0 20px 0 40px;
  outline: none;
}

.search-bar input:focus, .search-bar input:hover {
  border: none;
  outline: none;
}

.search-bar input::placeholder {
  font-family: 'TradeGothicLTCom-BdCn20';
  font-size: 32px;
  color: rgba(0,0,0,0.2);
}

.search-bar input:-ms-input-placeholder {
  font-family: 'TradeGothicLTCom-BdCn20';
  font-size: 32px;
  color: rgba(0,0,0,0.2);
}

.search-bar input::-ms-input-placeholder {
  font-family: 'TradeGothicLTCom-BdCn20';
  font-size: 32px;
  color: rgba(0,0,0,0.2);
}

.search-bar i.lni-close {
  color: rgba(0,0,0,0.2);
  font-size: 48px;
  cursor: pointer;
  position: relative;
  right: 3px;
  top: 7px;
  background: #fd1e43;
  line-height: 100px;
  padding: 0px 32px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search-bar i.lni-close:hover {
  color: rgba(255,255,255,1);
}

.search-bar-submit {
  display: none;
}


/* NAVIGATION ACTIVE */

.header.active {
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}

.header.active .logo img {
  filter: invert(100%);
  -webkit-filter: invert(100%);
  -moz-filter: invert(100%);
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header.active .navigation {
  background: rgba(255,255,255,0);
}

.header.active .navigation ul li a {
  color: rgba(255,255,255,1);
  line-height: 31px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  background: none;
}

.header.active .navigation-spacer {
  background: none;
}

.header.active .navigation ul li:hover a, .header.active .navigation .current_page_item > a, .header.active .navigation .current-menu-ancestor a {
  color: rgba(0,0,0,0.7);
  line-height: 31px;
  background: rgba(255,255,255,1);
  text-shadow: none;
}

.header.active .navigation ul li:hover ul.sub-menu li a {
  background: rgba(0,0,255,0);
}

.header.active .navigation .menu-item-has-children > a::after {
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,1));
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,1));
  color: rgba(255,255,255,1);
}


/* NAVIGATION SUB ACTIVE */

.header.active .menu-main-container ul li:hover ul.sub-menu {
  top: 45px;
}

.header.active .menu-main-container ul li:hover ul.sub-menu li {
  position: static;
  right: 0;
  padding: 5px 0px 5px 0;
}

.header.active .menu-main-container ul li:hover ul.sub-menu li a {
  text-shadow: none;
}

.header.active .menu-main-container ul li:hover > a::after {
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,0));
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0));
}

.header.active .navigation ul li:hover a::after, .header.active .navigation .current_page_item > a::after, .header.active .navigation .current-menu-ancestor a::after {
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,0));
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0));
  transform: rotate(45deg);
  bottom: 0px;
}

.header.active .navigation ul li:hover a::after {
  transform: rotate(135deg);
  bottom: 3px;
  color: rgba(0,0,0,0.7);
}


/* NAVIGATION MOBILE */

.navigation-mobile {
  display: none;
  flex: 1;
  margin-right: 20px;
  justify-content: flex-end;
  align-items: center;
}

#menuToggle {
  display: block;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: #666666;
  border-radius: 0px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0,.67,.17,1),
              background 0.5s cubic-bezier(0,.67,.17,1),
              opacity 0.5s ease;
}

.header.active #menuToggle span {
  background: #ffffff;
}

#menuToggle span:nth-child(3) {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-child(4) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(405deg) translate(-4px, -2px);
  background: #666666;
  transition: transform 0.5s cubic-bezier(0,.67,.17,1),
              background 0.5s cubic-bezier(0,.67,.17,1),
              opacity 0.5s ease;
}

#menuToggle input:checked ~ span:nth-child(3) {
  opacity: 0;
  transform: rotate(0deg) translate(-200px, 0px);
  transition: transform 0.5s cubic-bezier(0,.67,.17,1),
              background 0.5s cubic-bezier(0,.67,.17,1),
              opacity 0.5s ease;
}

#menuToggle input:checked ~ span:nth-child(4) {
  transform: rotate(-45deg) translate(0, -1px);
  transition: transform 0.5s cubic-bezier(0,.67,.17,1),
              background 0.5s cubic-bezier(0,.67,.17,1),
              opacity 0.5s ease;
}

.header.active #menuToggle input:checked ~ span {
  background: #666666;
}

#mobile-menu {
  position: fixed;
  width: calc(100vw + 1px);
  height: calc(100vh + 80px);
  max-height: 100vh;
  overflow: scroll !important;
  margin-top: -52px;
  transform-origin: 0% 0%;
  transform: translateX(calc(100% + 53px));
  transition: transform 0.5s cubic-bezier(0, 0.67, 0.17, 1);
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

#mobile-menu::before {
}

#mobile-menu li {
  padding: 10px 0;
}

#menuToggle input:checked ~ #mobile-menu {
  transform: translateX(calc(-100% + 53px));
}

.navigation-mobile .menu-main-container {
  display: flex;
  flex-grow: 1;
  margin: 0 40px;
}

.mobile-menu-logo {
  height: 80px;
  margin-left: 35px;
}

.mobile-menu-logo img {
  height: 40px;
  width: auto;
  margin-top: 24px;
  opacity: 0.78;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.navigation-mobile ul {
  list-style: none;
  padding: 0px;
}

.navigation-mobile li a {
  color: rgba(0,0,0,0.6);
  font-family: 'TradeGothicLTCom-BdCn20';
  font-size: 32px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 36px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation-mobile-social ul {
  display: flex;
  justify-content: space-evenly;
  background: #161616;
  margin: 0;
  padding: 0;
}

.navigation-mobile-social ul li {
  display: inline;
}

.navigation-mobile-social ul li a {
  font-size: 20px;
  color: #666666;
  line-height: 40px;
}

.navigation-mobile .sub-menu li {
  margin: 0 0 0 30px;
}

.navigation-mobile .sub-menu li a {
  font-size: 24px;
  line-height: 30px;
}

ul.sub-menu {
  padding-top: 0;
}

.header.active ul.sub-menu {
  padding-top: 10px;
}

.sdf {
  color: rgba(0, 166, 255, 1);
}

.navigation-mobile li:hover > a, .navigation-mobile .current_page_item > a, .navigation-mobile .current_page_item > a:hover, .navigation-mobile .current-menu-item > a, .navigation-mobile .current-menu-ancestor > a {
  color: rgba(0, 166, 255, 1);
}

.navigation-mobile .fa-search:after {
    content:"SEARCH";
    font-family: 'TradeGothicLTCom-BdCn20';
    font-size: 16px;
    font-weight: normal;
    position: relative;
    left: 8px;
}

.navigation-mobile .fa-search:hover:after {
  color: rgba(0, 166, 255, 1);
}


/* PAGE CONTAINER */

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* MAIN */

.section {
	width: 100%;
	overflow: auto;
}

.section-row {
	margin: 0 auto;
	width: 100%;
	clear: both
}

.section-container-full {
	width: 100%;
}

.section-container-one-half {
	width: calc(50% - 16px);
	float: left;
}

.halfs {
	margin-right: 32px;
}

.halfs:last-child, .halfs:nth-child(2n) {
	margin-right: 0;
}

.section-container-one-third {
	width: calc(33.3333% - 20px);
	float: left;
}

.section-container-two-thirds {
	width: calc(66.6666% - 10px);
	float: left;
}

.thirds {
	margin-right: 30px;
}

.thirds:last-child, .thirds:nth-child(3n) {
	margin-right: 0;
}

.section-container-one-fourth {
	width: calc(25% - 24px);
	float: left;
}

.section-container-two-fourths {
	width: calc(50% - 16px);
	float: left;
}

.section-container-three-fourths {
	width: calc(75% - 8px);
	float: left;
}

.fourths {
	margin-right: 32px;
}

.fourths:last-child, .fourths:nth-child(4n) {
	margin-right: 0;
}


/* POSTS */

.post-details {
  display: flex;
  margin: 20px 0 10px 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.post-title {
  color: #666666;
  font-size: 30px;
  text-decoration: none;
}

.post-date, .post-postedin, .post-postedin a, .post-category, .post-category a, .post-tag, .post-tag a, .post-source p {
  font-family: 'TradeGothicLTCom-BdCn20';
  justify-content: flex-start;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 15px 0;
}

.post-postedin a:hover, .post-category a:hover, .post-tag a:hover {
  color: #333333;
}

.post-video {
  margin-bottom: 50px;
}

.post-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 50px;
  background: rgba(27, 27, 27, 1);
}

.post-video video, .post-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-image img {
  width: 100%;
  height: auto;
}

.post-title {
  font-size: 32px;
  font-family: 'TradeGothicLTCom-BdCn20';
}

.post-date, .post-postedin, .post-category, .post-tag {
  margin-right: 25px;
  float: left;
}

.post-category a:hover, .post-postedin a:hover, .post-tag a:hover {
  color: #161616;
  text-decoration: underline;
}

.chevron-right {
  margin: 0 3px;
}

.post-content {
  clear: both;
}

.post-source {
  margin: 50px 0 0 0;
  border-top: 1px solid #dddddd;
}

.post-source p a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-source p a:hover {
  text-decoration: underline;
}


/* SEARCH PAGE */

.search-results-header {
  margin: 0 0 20px 0;
}

.search-results-header p {
  font-size: 13px;
  margin: 0;
}

.search-results-header span {
  font-size: 20px;
}

.search-results-header-info {
  font-family: 'TradeGothicLTCom-Cn18';
  font-size: 20px;
  text-transform: uppercase;
  padding: 20px 0 10px 0;
}

.search-results-header-info span {
  font-family: 'TradeGothicLTCom-BdCn20';
}

.search-results {
  display: flex;
  margin-bottom: 40px;
}

.search-results-image {
  display: flex;
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: relative;
  margin-right: 50px;
  background: #000000;
}

.search-results-image-img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search-results-info {
  display: flex;
  flex: 3 0 0;
  justify-content: flex-start;
  align-items: flex-start;
}

.search-results-info-title a {
  color: #666666;
  font-size: 24px;
  text-decoration: none;
}

.search-results-info-title a:hover {
  color: #333333;
}

.search-results-info-date {
  font-family: 'TradeGothicLTCom-BdCn20';
  justify-content: flex-start;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 15px 0;
}

.search-results-link {
  margin: 20px 0 0 0;
}

.search-results-link a {
  color: #666666;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 15px 10px 15px;
  border: 1px solid #cccccc;
}

.search-results-link a:hover {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #666666;
  background: #666666;
  cursor: pointer;
}

.search-results .far, .search-results .search-results, .search-results .fab {
  margin-right: 5px;
}

.search404 {
  width: 100%;
  margin: 0 0 20px 0;
}

.search404-search-bar {
  height: 100%;
  width: 100%;
}

input#search404-nav-search {
  font-family: 'TradeGothicLTCom-BdCn20';
  color: rgba(0,0,0,0.8);
  font-size: 16px;
  width: calc(100% - 89px);
  height: 46px;
  border: 1px solid #eeeeee;
  border-right: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 0 20px 0 20px;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

input#search404-nav-search:focus, input#search404-nav-search:hover {
  border: 1px solid #cccccc;
  border-right: none;
  outline: none;
}

.search404-submit {
  width: 48px;
  height: 48px;
  position: relative;
  float: right;
}

input#search404-search-bar-submit {
  width: 100%;
  height: 100%;
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.search404-search-bar i.lni-search-alt {
  background: rgba(0,0,0,0.8);
  font-size: 20px;
  position: absolute;
  background: rgba(0,0,0,0.3);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0px 14px;
  line-height: 48px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search404-submit:hover i.lni-search-alt {
  color: rgba(255,255,255,1);
  background: #fd1e43;
}

.search404-search-bar input::placeholder {
  font-family: 'TradeGothicLTCom-BdCn20';
  font-size: 20px;
  color: rgba(0,0,0,0.2);
}

.search404-search-bar input:-ms-input-placeholder {
  font-family: 'TradeGothicLTCom-BdCn20';
  font-size: 20px;
  color: rgba(0,0,0,0.2);
}

.search404-search-bar input::-ms-input-placeholder {
  font-family: 'TradeGothicLTCom-BdCn20';
  font-size: 20px;
  color: rgba(0,0,0,0.2);
}

/* PAGINATION */

.pagination-container {
  display: flex;
  justify-content: center;
  clear: both;
}

.pagination {
  background: linear-gradient(90deg, #00a6ff 0%, #0003ff 50%, #ff0094 100%);
}
.page-numbers {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  padding: 15px 23px;
  margin: 0 -2px;
  mix-blend-mode: screen;
  background: #ffffff;
  line-height: 45px;
}

a.page-numbers {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a.page-numbers:hover, .pagination .current {
  color: rgba(0,0,0,1);
  padding: 13px 23px;
}

.pagination .fas {
  font-size: 20px;
  vertical-align: middle;
}


/* WP BLOCKS */

.wp-block-column  .one-third {
  flex-basis: 33%;
}

.wp-block-column .two-thirds {
  flex-basis: 67%;
}

.wp-block-embed-youtube, .wp-block-embed-vimeo, .wp-block-embed__wrapper {
  margin-left: 0;
  margin-right: 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.wp-block-embed-youtube iframe, .wp-block-embed-vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-embed-soundcloud {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.wp-block-embed-soundcloud iframe {
  width: 100%;
  height: 600px;
}


/* FOOTER */

.footer-section {
  background: #25262d;
  min-height: 80px;
  width: 100%;
  margin-top: auto;
}

.footer-container {
	display: flex;
  padding: 0 5%;
}

.footer-left {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
}

.footer-social ul {
	padding: 0;
	margin: 0;
}

.footer-social li {
	margin: 0 20px 0 0;
	position: relative;
	display: inline-block;
	text-align: center;
}

.footer-social li:nth-last-child(1) {
	margin-right: 0;
}

.footer-social li a {
	font-size: 32px;
	line-height: 80px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
}

.footer-social li a i.fab {
	color: #ffffff;
	font-size: 16px;
	padding: 0;
	position: relative;
	top: -6px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.footer-social li a i.fab:hover {
	color: #fd1e43;
}

.footer-right {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.footer-info {
	font-family: 'TradeGothicLTCom-BdCn20';
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 100;
	color: rgba(255, 255, 255, 0.8);
}

.terms, .privacy, .sponsor, .copyright, .credits {
	float: left;
}

.footer-info a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.footer-info a:hover {
	color: rgba(255, 255, 255, 1);
}

.footer-spacer {
	font-weight: 300;
	color: rgba(255,255,255,0.5);
	padding: 0 4px 0 4px;
  float: left;
}

.footer-spacer:first-child {
  display: none;
}

.credits {
	float: right;
}

.credits img {
	height: 32px;
	width: auto;
	margin: 0 0 0 8px;
	cursor: pointer;
	opacity: 0.75;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
}

.credits img:hover {
	opacity: 1;
}


/* TABLET */

@media only screen and (min-width: 800px) and (max-width: 1200px) {
  .navigation-spacer, .navigation-social {
    display: none;
  }

  .section-container-one-third {
  	width: calc(50% - 20px);
  	float: left;
  }

  .section-container-two-thirds {
  	width: calc(50% - 10px);
  	float: left;
  }

  .thirds {
  	margin-right: 30px;
  }

  .thirds:last-child, .thirds:nth-child(3n) {
  	margin-right: 0;
  }

  .section-container-one-fourth {
  	width: calc(50% - 24px);
  	float: left;
  }

  .section-container-two-fourths {
  	width: 100%;
  	float: left;
  }

  .section-container-three-fourths {
  	width: 100%;
  	float: left;
  }

  .page-numbers, .pagination .current, a.page-numbers:hover {
      padding: 18px 10px;
  }
}


/* MOBILE */

@media only screen and (min-width: 1px) and (max-width: 799px) {
  h1 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 4px;
  }

  .logo img {
    height: 20px;
  }

  .menu-main-container, ul.menu-search, .navigation-spacer, .navigation-social {
    display: none;
  }

  .navigation-mobile {
    display: flex;
  }

  .section-row {
    width: 90% !important;
  }

  .section-container-one-half, .section-container-one-third, .section-container-two-third, .section-container-one-fourth, .section-container-two-fourths, .section-container-three-fourths {
    width: 100%;
  }

  .page-numbers, .pagination .current, a.page-numbers:hover {
      padding: 18px 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .reverse-columns {
    flex-direction: column-reverse;
  }
}