/* @group reset - eric myer reset v2.0 | 20110126
-----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Import Fonts (Google Fonts Imported in header.php)
-----------------------------------------------------------------*/
@font-face {
	font-family: 'Posterama1927-SemiBold';
	src: 	url('fonts/38D383_0_0.eot');
	src: 	url('fonts/38D383_0_0.eot?#iefix') format('embedded-opentype'),
			url('fonts/38D383_0_0.woff2') format('woff2'),
			url('fonts/38D383_0_0.woff') format('woff'),
			url('fonts/38D383_0_0.ttf') format('truetype');
	font-weight: normal;
}

/* Set CSS Variables
-----------------------------------------------------------------*/
:root {
	--text-color: #fff;
	--primary-color: #0d0726;
	--alt-color: #e31999;
	--primary-color-transparent: rgba(13, 7, 38, .7);
	--main-font: montserrat, arial, helvetica, sans-serif;
	--heading-font: Posterama1927-SemiBold, montserrat, arial, helvetica, sans-serif;
	--alt-font: adelle, arial, helvetica, sans-serif;
}

/* Set tags and general classes
-----------------------------------------------------------------*/
* {
	box-sizing: border-box;
	outline: none;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--main-font);
	font-size: 20px;
	color: var(--text-color);
	line-height: 1.7;
	min-width: 320px;
	background-color: #fff;
}

h1, h2, h3 {
	font-family: var(--heading-font);
	text-transform: uppercase;
	font-weight: bold;
	font-size: 90px;
	line-height: 1.1;
	margin-bottom: 25px;
}
h2 {
	font-size: 48px;
}
h3 {
	font-size: 32px;
	margin-bottom: 20px;
}
h4 {
	font-family: var(--heading-font);
	font-size: 24px;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: 1px;
}
h5 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 20px;
}
@media all and (max-width: 1139px) {
	body {
		font-size: 18px;
		line-height: 1.5;
	}
	h1 {
		font-size: 74px;
	}
	h2 {
		font-size: 40px;
	}
	h3 {
		font-size: 26px;
	}
	h4 {
		font-size: 22px;
	}
}
@media all and (max-width: 619px) {
	h1 {
		font-size: 50px;
	}
	h2 {
		font-size: 34px;
	}
	h3 {
		font-size: 22px;
	}
	h4 {
		font-size: 20px;
	}
}

a {
	color: var(--alt-color);
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}
a:hover {
	color: #856ec5;
	cursor: pointer;
}

input, select, textarea, button {
	font: inherit;
}

img, iframe, video {
	display: block;
	max-width: 100%;
}

p {
	margin-bottom: 30px;
}

.bold, strong, b {
	font-weight: bold;
}
.italic, em, i {
	font-style: italic;
}

.error {
	color: #ff3333;
}

.center {
	text-align: center;
}

/* Custom
-----------------------------------------------------------------*/
#page-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
}
.content-wrapper, .content-wrapper-text {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
.content-wrapper-text {
	max-width: 1100px;
}
@media all and (max-width: 1400px) {
	.content-wrapper .content-wrapper-text {
		padding: 0;
	}
}

.padding {
	padding-top: 80px;
	padding-bottom: 80px;
}
.padding-bottom {
	padding-bottom: 80px;
}
.padding-top {
	padding-top: 80px;
}

.wysiwyg-content ul {
	list-style: disc;
	margin: 0 0 25px 30px;
}
.wysiwyg-content ol {
	list-style: decimal;
	margin: 0 0 25px 30px;
}
.wysiwyg-content li ul, .wysiwyg-content li ol {
	margin-bottom: 0;
}
.wysiwyg-content img {
	height: auto;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video-wrapper iframe, .video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

input {
	display: block !important;
	padding: 10px 15px !important;
	font-size: 18px !important;
	width: 400px !important;
	max-width: calc(100vw - 40px) !important;
	margin: 20px auto 0 auto !important;
	border: 2px solid var(--primary-color) !important;
	border-radius: 5px !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
	background-image: linear-gradient(transparent, transparent) !important;
	transition: all .3s !important;
}
input:focus {
	border-color: var(--alt-color) !important;
}
#mc_embed_shell,
#mc_embed_signup,
#mc_embed_signup form {
	padding: 0 !important;
	margin: 0 !important;
}
#mc_embed_signup .mc-field-group {
	width: 100% !important;
	margin: 0 !important;
	padding: 0% !important;
	box-sizing: border-box !important;
}
#mc_embed_signup div.mce_inline_error {
	margin: 5px auto !important;
	width: 400px !important;
	max-width: 100% !important;
	border-radius: 5px !important;
	display: block !important;
}
#mc_embed_signup div.response {
	margin: 0 auto 25px auto !important;
	padding: 0 !important;
	float: none !important;
	top: 0 !important;
	width: 790px !important;
	max-width: 100% !important;
	text-align: center !important;
	line-height: 1.3 !important;
}
#mc_embed_signup #mce-success-response {
	background: transparent !important;
	color: #9e3de8 !important;
}

/* Site Specific
-----------------------------------------------------------------*/
.white {
	color: #fff !important;
}
.purple-bg {
	background: var(--primary-color);
}
.light-purple-bg {
	background: #1f0c41;
}
.purple-bg h2, .purple-bg h3, .purple-bg h4, .purple-bg h5, .light-purple-bg h2, .light-purple-bg h3, .light-purple-bg h4, .light-purple-bg h5 {
	color: #cebefa;
}
.btn {
	position: relative;
	overflow: hidden;
	padding: 17px 7px;
	border-radius: 30px;
	width: 400px;
	max-width: 100%;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--heading-font);
	display: inline-block;
	z-index: 999;
	margin-top: 20px;
	border: 0;
	cursor: pointer;
	line-height: 1.3;
}
.btn::before {
    content: "";
    background-image: linear-gradient(#5123f2, #31d1ff, #a116e4);
    position: absolute;
    height: 200%;
	width: 100%;
    top: -100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all .3s;
}
.btn:hover {
	color: #fff;
}
.btn:hover::before {
    top: 0%;
}
button.btn {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.dual-buttons .btn {
	width: 200px;
	max-width: 50%;
}
.dual-buttons .btn:nth-of-type(odd) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: #000 1px solid;
	
}
.dual-buttons .btn:nth-of-type(even) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.dual-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.dual-content > div {
	flex-basis: calc(50% - 25px);
}
@media all and (max-width: 959px) {
	.dual-content > div {
		flex-basis: 100%;
	}
}
.dual-content img {
	margin-top: 40px;
	margin-bottom: 40px;
}

.arrow-mask::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid var(--primary-color);
}

header {
	position: relative;
	background: var(--primary-color);
}
#home header {
	min-height: 100vh;
	overflow: hidden;
}
#home header::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 250px;
	z-index: 15;
	background-image: linear-gradient(rgba(13, 7, 38, 0), rgba(13, 7, 38, 1));
}
header #nav-wrapper {
	position: relative;
	z-index: 20;
	background: var(--primary-color);
}
#home header #nav-wrapper {
	background: transparent;
}
#banner {
	position: relative;
	overflow: hidden;
}
#banner::after {
	content: "";
	width: 100%;
	height: 15px;
	background: var(--primary-color);
	position: relative;
	display: block;
	z-index: 29;
}
#banner h1 {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 29;
	color: #0f0629;
	width: 100%;
	padding: 0 20px;
	text-align: center;
	margin-top: -8px;
}
.parallax {
	position: relative;
	width: 100%;
	height: 565px;
	margin-top: -160px;
	z-index: 10;
	transform: translate3d(0, 0, 0);
}
#home .parallax {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-top: 0;
	height: 100%;
}
.background {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: no-repeat top center;
	background-size: cover;
	z-index: 10;
}
#home .background {
	background: no-repeat bottom center;
	background-size: cover;
}
#home header.loaded .background {
	transform: scale(1.1);
	animation-name: header-anim;
	animation-duration: 5s;
}
@keyframes header-anim {
  0%   {transform: scale(1);}
  100% {transform: scale(1.1);}
}
#banner-foreground {
	position: absolute;
	top: 140px;
	left: 50%;
	transform: translateX(-50%) translate3d(0, 0, 0);
	height: 450px;
	width: auto;
	max-width: none;
	z-index: 30;
}
header .content-wrapper {
	position: relative;
	z-index: 11;
	padding-top: 30px;
	padding-bottom: 30px;
}
header .content-wrapper::after {
	content: "";
	display: table;
	clear: both;
}
header #logo {
	float: left;
}
header #logo img {
	width: 334px;
	max-width: 60vw;
}
header nav {
	float: right;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	padding-top: 20px;
}
header nav a {
	color: #fff;
	text-transform: uppercase;
	font-family: var(--heading-font);
	margin-left: 30px;
	padding: 3px 0;
}
header nav a:hover, header nav a.active {
	color: var(--alt-color);
}
header nav a.btn {
	padding: 6px 20px;
	border-radius: 20px;
	width: auto;
	margin-top: 1px;
}
header nav a.btn:hover {
	color: #fff;
}
header #open-mobile-nav {
	display: none;
	position: absolute;
	top: 55px;
	right: 40px;
	z-index: 9999;
	cursor: pointer;
}
@media all and (max-width: 539px) {
	header #open-mobile-nav {
		top: 45px;
	}
}
@media all and (max-width: 419px) {
	header #open-mobile-nav {
		right: 20px;
	}
}
header #open-mobile-nav > div {
	width: 42px;
	height: 5px;
	margin-bottom: 7px;
	background: #fff;
	opacity: 1;
	transition: all .3s;
}
header #open-mobile-nav.open > div:first-of-type {
	transform: rotate(45deg);
	margin-top: 12px;
}
header #open-mobile-nav.open > div:nth-of-type(2) {
	opacity: 0;
}
header #open-mobile-nav.open > div:last-of-type {
	transform: rotate(-45deg);
	margin-top: -24px;
}
header #hero-logo-wrapper::before {
	content: "";
	display: table;
	clear: both;
}
header #hero-logo {
	margin: 65px auto;
	width: 400px;
	max-width: 66%;
	opacity: 0;
}
header.loaded #hero-logo {
	animation-name: header-logo-anim;
	animation-duration: 5s;
	opacity: 1;
}
@keyframes header-logo-anim {
	0% {
		opacity: 0;
		transform: scale(1.15);
	}
	60% {
		opacity: 1;
	}
	100% {
		transform: scale(1);
	}
}
@media all and (max-width: 1139px) {
	header {
		z-index: 9999;
	}
	header .content-wrapper {
		position: relative;
		z-index: 999;
		min-height: 157px;
	}
	header nav {
		display: block;
		position: absolute;
		top: 157px;
		min-height: calc(100vh - 157px);
		right: -100vw;
		background-image: linear-gradient(60deg, #cd247e, #5174d7);
		width: 100vw;
		z-index: 1000;
		padding: 50px 0 20px 0;
		transition: right .3s;
	}
	header nav.open {
		right: 0;
	}
	header nav a, header nav a.btn, header nav a.active, header nav a:hover {
		display: block;
		margin: 0;
		width: 100%;
		padding: 8px 40px;
		color: #fff;
		border-radius: 0;
		text-align: center;
		font-size: 25px;
	}
	header nav a.btn::before {
		display: none;
	}
	header #open-mobile-nav {
		display: block;
	}
	header #hero-logo {
		width: 280px;
	}
	.parallax {
		height: 525px;
	}
	#banner-foreground {
		height: 410px;
	}
}
@media all and (max-width: 759px) {
	.parallax {
		height: 485px;
	}
	#banner-foreground {
		height: 370px;
	}
}
@media all and (max-width: 549px) {
	header nav {
		top: calc(47px + 20vw);
		min-height: calc(100vh - (47px + 20vw));
	}
	.parallax {
		height: 425px;
	}
	#banner-foreground {
		top: calc(30px + 20vw);
		height: 310px;
	}
	header .content-wrapper {
		min-height: calc(47px + 20vw);
		padding-bottom: 0;
	}
}
header #hero-content {
	text-align: center;
	padding-bottom: 80px;
	opacity: 0;
}
header.loaded #hero-content {
	animation-name: header-content-anim;
	animation-duration: 5s;
	opacity: 1;
}
@keyframes header-content-anim {
  0%   {opacity: 0;}
  40%  {opacity: 0;}
  100% {opacity: 1;}
}
header #hero-content a img {
	width: 35px;
	margin: 90px auto 0 auto;
}
@media all and (max-width: 1139px) {
	header #hero-content a img {
		margin-top: 55px;
	}
}
.bounce {
	animation: bounce .3s;
	animation-direction: alternate;
	animation-timing-function: cubic-bezier(.5, 1, .05, .5);
	animation-iteration-count: infinite;
}
@keyframes bounce {
	from {transform: translateY(0);}
	to   {transform: translateY(-10px);}
}

#home-room-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-top: 60px;
}
#home-room-wrapper > * {
	flex-basis: calc(33.333% - 30px);
	width: calc(33.333% - 30px);
	transform: translateY(0);
}
#home-room-wrapper-two {
	max-width: 940px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-top: 0;
}
#home-room-wrapper-two > * {
	flex-basis: calc(50% - 30px);
	width: calc(50% - 30px);
	transform: translateY(0);
}
@media all and (max-width: 1039px) {
	#home-room-wrapper {
		justify-content: space-around;
		padding-bottom: 0;
	}
	#home-room-wrapper > * {
		flex-basis: 100%;
		margin-bottom: 40px;
		max-width: 620px;
	}
	#home-room-wrapper-two {
		justify-content: space-around;
		padding-bottom: 0;
	}
	#home-room-wrapper-two > * {
		flex-basis: 100%;
		margin-bottom: 40px;
		max-width: 620px;
	}
}
#home-room-wrapper img, #home-room-wrapper-two img {
	border-radius: 10px;
	box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .7);
	transition: transform .3s, box-shadow .3s;
}
#home-room-wrapper img:hover, #home-room-wrapper-two img:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 12px 5px rgba(0, 0, 0, .7);
}

#gift-cards-wrapper {
	padding-top: 70px;
	background-image: linear-gradient(60deg, #cd247e, #5174d7);
}
#gift-cards-wrapper > div > img {
	position: relative;
	z-index: 50;
	max-height: 510px;
	margin: 20px auto -120px auto;
}
#gift-cards-wrapper .dual-buttons {
	padding-top: 5px;
}
#gift-cards-wrapper .btn::before {
	background-image: linear-gradient(#5123f2, #35c8fd, #5a1387);
}

#how-it-works-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#how-it-works-wrapper > div {
	flex-basis: calc(33.333% - 30px);
	margin-bottom: 20px;
}
#how-it-works-wrapper > div img {
	margin: 20px auto 45px auto;
	max-width: 360px;
	width: calc(100% - 40px);
	padding: 0 20px;
}
#how-it-works-wrapper h3 {
	margin-bottom: 15px;
}
@media all and (max-width: 1039px) {
	#how-it-works-wrapper > div {
		flex-basis: 100%;
	}	
}

#signup-wrapper {
	background: #fff;
	color: #212121;
}
#signup-wrapper h2, #bookeo h2 {
	display: inline-block;
	background: #212121;
	color: #fff;
	padding: 20px 50px 15px 50px;
	min-width: 600px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 40px;
}
@media all and (max-width: 844px) {
	#signup-wrapper {
		padding-top: 100px;
	}
	#signup-wrapper h2 {
		padding: 10px 20px;
	}
}
@media all and (max-width: 640px) {
	#signup-wrapper h2, #bookeo h2 {
		min-width: 0;
	}
}
#signup-wrapper a:hover {
	color: #212121;
}
#signup-wrapper .btn {
	margin-top: 25px;
}
.footnote {
	margin-top: 45px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
}

#reviews-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#reviews-wrapper > div {
	flex-basis: calc(33.333% - 30px);
	margin-bottom: 30px;
}
@media all and (max-width: 1039px) {
	#reviews-wrapper > div {
		flex-basis: 100%;
	}
}
#reviews-wrapper .reviewer {
	margin: 25px auto;
	width: 180px;
	border-radius: 50%;
}
#reviews-wrapper .rating {
	margin: 15px auto;
	width: 120px;
}
#reviews-wrapper > div p {
	font-size: 16px;
}
#reviews-wrapper > div p:last-of-type {
	font-style: italic;
}

#games .game-wrapper {
	padding-top: 60px;
}
#games .game-wrapper.curse {
	padding-top: 100px;
}
#games .summary {
	margin-top: 50px;
	margin-bottom: 25px;
}
#games .summary > p:last-of-type {
	margin-bottom: 0;
}
@media all and (max-width: 659px) {
	.game-wrapper img {
		border-radius: 10px;
	}
}
.game-wrapper > div {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: flex-start;
	max-width: 1200px;
	padding: 0 20px;
	margin: -40px auto 20px auto;
}
.game-wrapper > div > div {
	flex-basis: 25%;
	font-size: 16px;
	padding: 25px 20px;
}
.game-wrapper > div > div img {
	height: 45px;
	margin: 0 auto 10px auto;
}
.game-wrapper > div > div p {
	margin-bottom: 0;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
}
.game-wrapper > div > div span {
	opacity: .7;
}
.game-wrapper > div > div:nth-of-type(1) {
	background-color: #9799b2;
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
}
.game-wrapper > div > div:nth-of-type(2) {
	background-color: #4c87b3;
}
.game-wrapper > div > div:nth-of-type(3) {
	background-color: #5074b1;
}
.game-wrapper > div > div:nth-of-type(4) {
	background-color: #2a34ac;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
}
.game-wrapper.curse > div > div:nth-of-type(1) {
	background-color: #ffa348;
}
.game-wrapper.curse > div > div:nth-of-type(2) {
	background-color: #ff854d;
}
.game-wrapper.curse > div > div:nth-of-type(3) {
	background-color: #da533b;
}
.game-wrapper.curse > div > div:nth-of-type(4) {
	background-color: #d33a27;
}
.game-wrapper.chaos > div > div:nth-of-type(1) {
	background-color: #546d59;
}
.game-wrapper.chaos > div > div:nth-of-type(2) {
	background-color: #d38836;
}
.game-wrapper.chaos > div > div:nth-of-type(3) {
	background-color: #a95d37;
}
.game-wrapper.chaos > div > div:nth-of-type(4) {
	background-color: #6d3c2d;
}
.game-wrapper.train > div > div:nth-of-type(1) {
	background-color: #b9a04f;
}
.game-wrapper.train > div > div:nth-of-type(2) {
	background-color: #967a3e;
}
.game-wrapper.train > div > div:nth-of-type(3) {
	background-color: #915b36;
}
.game-wrapper.train > div > div:nth-of-type(4) {
	background-color: #6d431e;
}
@media all and (max-width: 759px) {
	.game-wrapper > div {
		max-width: 500px;
		margin-top: -25px;
	}
	.game-wrapper > div > div {
		flex-basis: 50%;
	}
	.game-wrapper > div > div:nth-of-type(1) {
		border-bottom-left-radius: 0;
	}
	.game-wrapper > div > div:nth-of-type(2) {
		border-top-right-radius: 7px;
	}
	.game-wrapper > div > div:nth-of-type(3) {
		border-bottom-left-radius: 7px;
	}
	.game-wrapper > div > div:nth-of-type(4) {
		border-top-right-radius: 0;
	}
}
@media all and (max-width: 419px) {
	.game-wrapper > div {
		padding: 0;
		margin-top: -10px;
	}
	.game-wrapper > div > div {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.game-description {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	text-align: left;
	max-width: 1160px;
	margin: 0 auto;
}
.game-description > h3 {
	flex-basis: calc(25% - 30px);
	margin-top: 4px;
}
.game-description > div {
	flex-basis: 75%;
}
.game-description > div > p:first-of-type {
	font-weight: bold;
}
@media all and (max-width: 779px) {
	.game-description > h3, .game-description > div {
		flex-basis: 100%;
	}
}

#contact-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
#contact-wrapper > div {
	flex-basis: calc(50% - 20px);
	padding-bottom: 80px;
}
@media all and (max-width: 649px) {
	#contact-wrapper > div {
		flex-basis: 100%;
	}
}

#bookeo {
	position: relative;
}
#bookeo > div {
	margin-top: 30px;
}

#map {
	width: 100%;
	height: 550px;
}

#question-wrapper.padding-top {
	padding-bottom: 20px;
}
#question-wrapper img {
	margin: 0 auto 25px auto;
	width: 180px;
}
#question-wrapper h4 {
	margin-bottom: 5px;
}
#question-wrapper span {
	font-size: 18px;
}

#faq h2 {
	font-size: 36px;
	margin-bottom: 5px;
}
#faq .dual-content h4 {
	font-size: 20px;
	margin-bottom: 2px;
}
#faq .dual-content h4::before {
	content: "";
	display: block;
	height: 1px;
	width: 50px;
	background: #531a93;
	margin: 40px 0;
}
#faq-wrapper {
	margin-top: -20px;
}
#faq-wrapper a {
	position: relative;
	display: block;
	width: 100%;
	padding: 20px 30px 20px 0;
	border-top: 1px solid #531a93;
}
#faq-wrapper a:first-of-type {
	border-top: 0;
}
#faq-wrapper a::before, #faq-wrapper a::after {
	content: "";
	position: absolute;
	top: calc(50% - 8px);
	right: 0;
	height: 15px;
	width: 15px;
	background: url('images/icon-mobile-collapse.svg') no-repeat center center;
	background-size: 15px;
}
#faq-wrapper a::after {
	transform: rotate(90deg);
	transform-style: preserve-3d;
	transition: all .3s;
}
#faq-wrapper a.open::after {
	transform: rotate(0deg);
}
#faq-wrapper > div {
	height: 0;
	overflow: hidden;
	transition: all .3s;
}
#faq-wrapper > div > div {
	padding-bottom: 20px;
}
#faq-wrapper p {
	font-size: 18px;
}

@media all and (min-width: 620px) {
	#about h3 {
		font-size: 30px;
	}
}
@media all and (min-width: 1140px) {
	#about h3 {
		font-size: 36px;
	}
}

#pre-footer {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	min-height: 500px;
	background: url('images/footer-background.jpg') no-repeat bottom center;
	background-size: cover;
}
#pre-footer::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 250px;
	z-index: 15;
	background-image: linear-gradient(rgba(13, 7, 38, 1), rgba(13, 7, 38, 0));
}
#pre-footer::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 75px;
	z-index: 15;
	background: url('images/footer-curve.png') no-repeat center center;
	background-size: auto 75px;
}
#pre-footer img {
	width: 170px;
	margin-bottom: 50px;
}
footer {
	font-size: 18px;
}
@media all and (min-width: 620px) {
	footer h4 {
		font-size: 22px;
	}
}
footer > div:first-of-type {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
footer > div:first-of-type > div {
	flex-basis: calc(33.333% - 30px);
	margin-bottom: 30px;
}
@media all and (max-width: 819px) {
	footer > div:first-of-type > div {
		flex-basis: 100%;
	}
	footer > div:first-of-type > div:nth-of-type(1) {
		order: 1;
	}
	footer > div:first-of-type > div:nth-of-type(2) {
		order: 3;
	}
	footer > div:first-of-type > div:nth-of-type(3) {
		order: 2;
	}
}
footer > div:last-of-type {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
footer > div:last-of-type > * {
	display: inline-block;
	text-transform: uppercase;
	margin: 0 15px;
	font-size: 12px;
	color: #856ec5;
	font-weight: 600;
}
footer > div:last-of-type > a:hover {
	color: var(--alt-color) !important;
}
@media all and (max-width: 519px) {
	footer > div:last-of-type > * {
		flex-basis: 100%;
		margin-bottom: 15px;
	}
	footer > div:last-of-type > p {
		order: 3;
	}
}
footer > div:last-of-type > a:hover {
	color: #fff;
}
footer #social {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
footer #social a {
	flex-basis: 40px;
	width: 40px;
	display: block;
	border-radius: 50%;
	margin: 0 10px 20px 10px;
	padding: 0;
}
