html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	overflow-x: hidden;
	margin: 0 auto;
	background: #fff;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	display: flex;
	flex-direction: column;
	padding-top: env(safe-area-inset-top);
	padding-bottom: env(safe-area-inset-bottom);
}

#page-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
}

#page {
	flex: 1 0 auto;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

figure {
	margin: 0;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

a {
	text-decoration: none;
	transition: 0.07s ease-in-out;
}

/* =============================================================================
   2.0 - TYPOGRAPHY (from atomic-blocks.css)
   ============================================================================= */

body,
button {
	line-height: 1.7;
}
@media (max-width: 1000px) {
	body,
	button {
		font-size: 17px;
	}
}
@media (max-width: 600px) {
	body,
	button {
		font-size: 16px;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: "Muli", "Nunito Sans", "Helvetica Neue", Helvetica, Arial,
		sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 3%;
	text-transform: uppercase;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	font-size: 1.4em;
}

h4 {
	font-size: 1.2em;
}

h5 {
	font-size: 1.1em;
}

h6 {
	font-size: 1em;
}

p {
	margin-bottom: 1.2em;
}

b,
strong {
	font-weight: bold;
}

blockquote {
	color: #272c30;
	font-weight: bold;
	line-height: 1.4;
	margin: 1em 0 1.2em 0;
	position: relative;
	padding: 0 0 0 30px;
	border-left: solid 3px #272c30;
}

ol,
ul {
	box-sizing: border-box;
	margin: 0 0 1.4em 20px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

dt {
	font-weight: bold;
}

/* =============================================================================
   3.0 - LAYOUT CLASSES (from atomic-blocks.css)
   ============================================================================= */

.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 8%;
	display: block;
}
@media only screen and (max-width: 1000px) {
	.container {
		padding: 0 4%;
		padding-left: max(4%, env(safe-area-inset-left));
		padding-right: max(4%, env(safe-area-inset-right));
	}
}
@media (max-width: 600px) {
	.container {
		padding: 0 15px;
		padding-left: max(15px, env(safe-area-inset-left));
		padding-right: max(15px, env(safe-area-inset-right));
	}
}
.container:before,
.container:after {
	content: "";
	display: table;
}
.container:after {
	clear: both;
}

.site,
.hfeed {
	display: block;
	width: 100%;
}

#page {
	padding-top: 1em;
}

/* =============================================================================
   4.0 - SITE HEADER (from atomic-blocks.css)
   ============================================================================= */

.site-header {
	padding: 0;
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 100;
}
@media (max-width: 1000px) {
	.site-header {
		overflow: visible;
	}
}

.site-header .container {
	display: block;
}

.site-header:before,
.site-header:after {
	content: "";
	display: table;
}

.site-header:after {
	clear: both;
}

body.admin-bar .is-sticky .site-header {
	margin-top: 32px;
}

.site-identity {
	padding: 3% 0;
	position: relative;
	z-index: 30;
}
@media (max-width: 1000px) {
	.site-identity {
		padding: 5% 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
		z-index: 30;
	}
	.site-header .container {
		background: #00000033;
		position: relative;
		z-index: 30;
		transition: background-color 0.3s ease;
	}
	.drawer-open .site-header .container {
		background-color: transparent;
	}
}
@media (max-width: 600px) {
	.site-identity {
		padding: 12% 0;
	}
}

.site-title-wrap {
	display: inline-block;
	vertical-align: top;
	max-width: 30%;
	width: 100%;
	position: relative;
}
@media (max-width: 1000px) {
	.site-title-wrap {
		flex: 1;
		min-width: 0;
	}
}

.site-title {
	font-size: 26px;
	font-weight: bold;
	display: inline-block;
	width: 100%;
	margin-bottom: 0;
	margin-right: 8px;
	line-height: 1.2;
}
.site-title a {
	color: #272c30;
	transition: 0.1s ease-in;
	position: relative;
}

.site-identity .main-navigation ul {
	line-height: 3;
}

.top-navigation {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 10;
}
@media (max-width: 1000px) {
	.top-navigation {
		overflow: visible;
	}
}

.top-navigation-right {
	float: right;
	display: inline-block;
	max-width: 70%;
}
@media (max-width: 1000px) {
	.top-navigation-right {
		display: none;
	}
}

/* =============================================================================
   5.0 - NAVIGATION (from atomic-blocks.css)
   ============================================================================= */

.main-navigation {
	font-size: 17px;
	font-weight: bold;
	display: inline-block;
	width: 70%;
	vertical-align: top;
}
@media (max-width: 1000px) {
	.main-navigation {
		display: none;
	}
}

.main-navigation ul {
	margin: 0;
}
.main-navigation ul li {
	display: inline-block;
	list-style-type: none;
	padding: 0 15px;
	position: relative;
}
.main-navigation ul li a {
	display: inline-block;
	margin: 0 0 10px 0;
	line-height: 2;
}
.main-navigation ul li a:active,
.main-navigation ul li a:focus {
	outline: none;
}
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current-page-item a {
	color: #5a3fd6;
}
.main-navigation ul li.current-menu-item ul a,
.main-navigation ul li.current-page-item ul a {
	color: #b8bfcb;
}
.main-navigation ul .sub-menu li.current-menu-item a,
.main-navigation ul .sub-menu li.current-page-item a {
	color: #fff;
}

.main-navigation .menu-cta a {
	border: solid 1px #fff;
	border-color: rgba(255, 255, 255, 0.7);
	border-radius: 50px;
	color: #fff;
	color: rgba(255, 255, 255, 0.7);
	padding: 2px 10px;
}
.main-navigation .menu-cta a:hover {
	color: #272c30;
	background: #fff;
}

.site-header .menu-item-has-children,
.site-header .page_item_has_children {
	position: relative;
}
.site-header .menu-item-has-children a,
.site-header .page_item_has_children a {
	position: relative;
}
.site-header .menu-item-has-children > a:after,
.site-header .page_item_has_children > a:after {
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	padding-left: 5px;
	right: 0;
}

.site-header .menu-item-has-children:hover {
	cursor: pointer;
}
.site-header .menu-item-has-children:hover ul {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.main-navigation .sub-menu,
.main-navigation .children {
	position: absolute;
	width: 200px;
	top: 52px;
	left: 0;
	text-align: left;
	font-weight: 400;
	font-size: 13px;
	margin: 0;
	background: #15171a;
	left: -999em;
	z-index: 100;
	border-radius: 3px;
	text-align: center;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.main-navigation li ul {
	z-index: 100;
}

.main-navigation li ul li {
	padding: 0;
	margin: 0;
	width: 100%;
	margin-top: 0;
	border-top: none;
	transition: 0.3s ease;
}
.main-navigation li ul li:hover {
	background: rgba(255, 255, 255, 0.02);
	border-top: none;
}
.main-navigation li ul li:hover ul {
	left: 100%;
}

.main-navigation li ul li:last-child a {
	border-bottom: none;
}

.main-navigation li ul a,
.main-navigation li ul li a {
	width: 100%;
	display: inline-block;
	border-bottom: dotted 1px rgba(255, 255, 255, 0.15);
	padding: 15px 20px;
	margin: 0;
	font-weight: normal;
	text-transform: none;
	line-height: 1.6;
	color: #b8bfcb;
}
.main-navigation li ul a:hover,
.main-navigation li ul li a:hover {
	color: #fff;
}

.main-navigation li ul li ul {
	padding: 0;
}

.main-navigation ul ul {
	top: 0;
}

.main-navigation ul ul ul {
	left: -999em;
}

.main-navigation li ul ul.sub-menu,
.main-navigation li ul ul.children {
	top: 0;
	margin: 0;
	z-index: 50;
	position: absolute;
	margin-left: 1px !important;
}
.main-navigation li ul ul.sub-menu:before,
.main-navigation li ul ul.children:before {
	display: none;
}

.main-navigation li.focus > ul,
.main-navigation li:hover > ul,
.main-navigation li li a:hover > ul {
	left: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.site-header .sub-menu:before {
	position: absolute;
	top: -8px;
	left: 50%;
	margin-left: -8px;
	content: " ";
	display: block;
}

.sub-menu .menu-item-has-children > a:after,
.sub-menu .page_item_has_children > a:after {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	float: right;
}

.menu,
.sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.current-menu-item {
	/* Additional styling handled in navigation rules above */
}

/* Search Drawer */
.search-drawer {
	display: none;
	background: #fff;
}
.search-drawer .search-input {
	border: none;
	text-align: center;
	font-size: 30px;
}
.search-drawer .search-input:focus,
.search-drawer .search-input:active {
	box-shadow: none;
	background: transparent;
}
.search-drawer .searchsubmit {
	margin-right: -15px;
}
.search-drawer .searchsubmit:focus,
.search-drawer .searchsubmit:active {
	box-shadow: none;
}
.search-drawer .searchsubmit i {
	font-size: 18px;
}
.search-drawer .searchsubmit span {
	display: none;
}

.search-toggle {
	text-align: center;
	width: 20px;
}

/* Drawer Container */
.drawer-wrap {
	position: relative;
}
@media (max-width: 1000px) {
	.drawer-wrap {
		position: static;
	}
}

.drawer-wrap .searchform {
	margin-top: 25px;
}
.drawer-wrap .searchform .search-input {
	border: none;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

.searchform {
	position: relative;
}

.searchform .search-input {
	width: 100%;
	font-size: 16px;
}

.searchform .searchsubmit {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background: transparent !important;
	background-color: none !important;
	color: #627083;
	padding: 14px 15px;
	font-size: 15px;
	line-height: 1.4;
}
.searchform .searchsubmit:hover {
	color: #272c30;
}
.searchform .searchsubmit i {
	-webkit-font-smoothing: antialiased;
	line-height: 1.3;
	font-size: 16px;
	vertical-align: top;
}
@media (max-width: 1000px) {
	.searchform .searchsubmit i {
		line-height: 1;
	}
}

@media (max-width: 1000px) {
	.searchform .searchsubmit span {
		display: none;
	}
}
.widget-area .searchform .searchsubmit span {
	display: none;
}

.drawer {
	padding: 10px 0 15px 0;
	background: #22262a;
	background: rgba(21, 23, 26, 0.7);
	font-size: 16px;
	display: none;
	z-index: 30;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	overflow-x: hidden;
}
@media only screen and (max-width: 1000px) {
	.drawer {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #fe2e5a;
		z-index: 20;
		display: block;
		transform: translateY(-100%);
		transition: transform 0.4s ease-in-out;
		overflow-y: auto;
		padding-top: env(safe-area-inset-top);
		padding-bottom: env(safe-area-inset-bottom);
	}
	.drawer.show-drawer {
		transform: translateY(0);
	}
	.drawer .drawer-navigation {
		margin-top: 50px;
	}
}
@media only screen and (max-width: 1000px) and (max-width: 600px) {
	.drawer .drawer-navigation {
		margin-top: 60px;
	}
}
@media only screen and (min-width: 1000px) {
	.drawer {
		display: none !important;
	}
}

.drawer-menu-explore {
	padding-top: 0;
	padding-bottom: 0;
}
@media (max-width: 1000px) {
	.drawer-menu-explore {
		background: #fe2e5a;
		padding: 20px 5% 30px 5%;
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
}

.drawer-menu-explore .container {
	padding: 0;
}

.show-drawer {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	display: inline-block !important;
}

.admin-bar .drawer-open .drawer {
	margin-top: 35px;
}

/* Mobile Navigation */
.mobile-navigation {
	display: none;
}
@media (max-width: 1000px) {
	.mobile-navigation {
		display: flex;
		padding: 0;
		width: auto;
		flex-shrink: 0;
	}
}

.menu-toggle {
	display: none;
}
@media (max-width: 1000px) {
	.menu-toggle {
		display: block;
	}
}

.button-toggle {
	background: #fe2e5a;
	padding: 0;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.button-toggle span {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
}
.button-toggle .menu-icon i {
	font-size: 20px;
}
.button-toggle .close-icon {
	display: none;
}

/* Custom sharp close icon */
.close-icon-inner {
	position: relative;
	width: 30px;
	height: 30px;
	display: block;
}
.close-icon-inner::before,
.close-icon-inner::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 27px;
	height: 2px;
	background: #fff;
	transform-origin: center;
}
.close-icon-inner::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.close-icon-inner::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.button-toggle:hover,
.button-toggle:active,
.button-toggle:focus {
	box-shadow: none;
	color: #fff;
	background-color: #fe2e5a;
	opacity: 0.8;
}

/* Rotate menu icon when drawer is open */
.drawer-open .button-toggle {
	transform: rotate(90deg);
}
.drawer-open .button-toggle .menu-icon {
	display: none;
}
.drawer-open .button-toggle .close-icon {
	display: flex;
}

.drawer-menu-toggle {
	display: none;
}
@media (max-width: 1000px) {
	.drawer-menu-toggle {
		display: inline-block;
	}
}

.drawer .drawer-navigation {
	width: 100%;
	max-width: 100%;
	z-index: 40;
	position: relative;
}
@media (max-width: 1000px) {
	.drawer .drawer-navigation {
		font-size: 17px;
		display: inline-block;
	}
}
.drawer .drawer-navigation .menu {
	margin: 0;
}
.drawer .drawer-navigation ul {
	margin: 0;
	padding: 0;
}
.drawer .drawer-navigation ul li {
	width: 100%;
	padding: 0 0;
	list-style-type: none;
	border-bottom: dotted 1px rgba(255, 255, 255, 0.2);
	transition: none;
	position: relative;
	z-index: 50;
	border-top: none;
}
.drawer .drawer-navigation ul li:hover {
	border-top: none;
}
.drawer .drawer-navigation ul li:last-child {
	border-bottom: none;
}
@media (max-width: 1000px) {
	.drawer .drawer-navigation ul li {
		border-bottom: dotted 1px rgba(0, 0, 0, 0.2);
	}
}
.drawer .drawer-navigation ul li a {
	display: inline-block;
	padding: 15px 10px 15px 0;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	border-bottom: none;
	position: relative;
	transition: none;
}
.drawer .drawer-navigation a {
	color: #fff;
	color: rgba(255, 255, 255, 0.7);
	padding-left: 0;
	line-height: 1.4;
}
.drawer .drawer-navigation a:hover {
	color: #fff;
}
@media (max-width: 1000px) {
	.drawer .drawer-navigation a {
		color: #272c30;
		font-weight: bold;
	}
	.drawer .drawer-navigation a:hover {
		color: #000;
	}
}
.drawer .drawer-navigation .sub-menu,
.drawer .drawer-navigation .children {
	display: none;
	position: relative;
	width: 100%;
	left: 0;
	top: auto;
	margin: 0 0 0 15px;
	padding: 0 15px 0 0;
	border: none;
	background: transparent;
	box-shadow: none;
}
.drawer .drawer-navigation .sub-menu:before,
.drawer .drawer-navigation .children:before {
	display: none;
}
.drawer .drawer-navigation li ul a,
.drawer .drawer-navigation li ul li a {
	padding: 15px 0;
}
.drawer .drawer-navigation .sub-menu li:first-child {
	border-top: dotted 1px rgba(255, 255, 255, 0.2);
}
@media (max-width: 1000px) {
	.drawer .drawer-navigation .sub-menu li:first-child {
		border-top: dotted 1px rgba(0, 0, 0, 0.2);
	}
}

/* Mobile drawer footer with store buttons */
.mobile-drawer-footer {
	display: none;
}

@media (max-width: 1000px) {
	.mobile-drawer-footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 30px 0;
		margin-top: auto;
	}

	.mobile-store-buttons {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.mobile-store-buttons .appStoreLink {
		display: block;
	}

	.mobile-store-buttons .appStoreLink img {
		width: 200px;
		height: auto;
		display: block;
	}
}

.drawer nav {
	padding: 2% 0 0 0;
}

.drawer .drawer-navigation .drop-open ul.drop-active {
	display: block;
}

.drawer .menu-item-has-children .toggle-sub {
	color: #fff;
	cursor: pointer;
	background: #424851;
	border-radius: 0;
}
.drawer .menu-item-has-children .toggle-sub:hover {
	box-shadow: none;
	color: #fff;
}

.search-toggle {
	text-align: center;
	width: 20px;
}
@media only screen and (min-width: 1000px) {
	.search-toggle {
		display: none;
	}
}
.search-toggle .fa-times {
	display: none;
}
.search-toggle:hover {
	color: #62707c;
	cursor: pointer;
}
@media (max-width: 1000px) {
	.search-toggle {
		display: none;
	}
}

/* =============================================================================
   6.0 - SITE FOOTER (from atomic-blocks.css)
   ============================================================================= */

.site-footer {
	padding: 0 0 2.5% 0;
	font-size: 17px;
	line-height: 1.5;
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: #f2f2f2;
	color: #272c30;
	flex-shrink: 0;
	margin-top: auto;
}
.site-footer a {
	transition: 0.3s ease;
	color: #5a3fd6;
}
.site-footer a:hover {
	color: #272c30;
	text-decoration: underline;
}

.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.site-footer:after {
	clear: both;
}

.footer-bottom {
	display: inline-block;
	width: 100%;
	padding-top: 4%;
}

/* =============================================================================
   7.0 - CONTENT / POSTS (from atomic-blocks.css)
   ============================================================================= */

.post {
	width: 100%;
	display: inline-block;
	position: relative;
}

.post .entry-header {
	position: relative;
	margin-bottom: 5%;
}

.entry-header {
	position: relative;
}

.entry-title {
	font-weight: bold;
	line-height: 1.2;
}

.entry-content {
	vertical-align: top;
}
.entry-content p a {
	box-shadow: inset 0 -1px 0 #fff7d0;
	transition: 0.3s ease;
}
.entry-content p a:hover {
	box-shadow: inset 0 -2px 0 #fff7d0;
}

.entry-content a.no-underline,
.entry-content a.no-underline:hover {
	border-bottom: none;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.8em;
}

.entry-content li {
	margin-bottom: 2%;
}

.entry-content .meta-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: bold;
}
.entry-content .meta-list li {
	display: inline-block;
	margin: 0 20px 0 0;
}
.entry-content .meta-list a {
	font-weight: normal;
	color: #5a3fd6;
}
.entry-content .meta-list a:hover {
	color: #272c30;
}

.entry-content:before,
.entry-content:after {
	content: "";
	display: table;
}

.entry-content:after {
	clear: both;
}

/* =============================================================================
   8.0 - UTILITY CLASSES (from atomic-blocks.css)
   ============================================================================= */

.clear:before,
.clear:after {
	content: "";
	display: table;
}

.clear:after {
	clear: both;
}

/* =============================================================================
   9.0 - THEME STYLES (from theme.css)
   ============================================================================= */

body {
	color: #ddd;
	font-size: 18px;
	font-family: Helvetica, Arial, sans-serif;

	background-color: #0a0a0a;
	background-image: url("/img/bg.png");

	background-repeat: repeat;
	background-attachment: scroll;
}
.main-navigation ul li.current-menu-item a {
	color: #fe2e5a;
}

input[type="submit"],
button {
	background-color: #fe2e5a;
	text-transform: uppercase;
	color: white;
	border: none;
	padding: 0.5em 1em;
	border-radius: 0.5em;
	cursor: pointer;
	font-size: 100%;
	transition: background-color 0.3s ease, color 0.3s ease;
}

input[type="submit"]:hover,
button:hover:not(.menu-toggle) {
	background-color: #01d1fd;
	color: black;
}

.entry-byline {
	display: none;
}
table thead {
	background-color: #00000055;
}

body pre {
	background: rgba(255, 255, 255, 0.1);
}
blockquote {
	border-left: 3px #fe2e5a solid;
	color: inherit;
}
table tr:nth-child(even) {
	background-color: #ffffff33;
}
div[id^="contact-form"] {
	background-color: #ffffff22;
	border-radius: 1em;
	padding: 1em;
	margin-bottom: 1em;
}
#main .contact-form label span {
	color: #ccc;
}
#page .mailerlite-subscribe-submit {
	background-color: #fe2e5a;
	border-radius: 0.5em;
}
.mailerlite-form-field {
	display: inline;
	width: 50%;
}
.mailerlite-subscribe-button-container {
	display: inline;
}
.mailerlite-form-field input[type="email"] {
	width: 50%;
}
.mailerlite-form {
	margin-bottom: 2em;
}

.site-footer {
	background-color: transparent;
	padding: 0;
}
.site-header {
	background-color: #00000033;
	border-bottom: 1px #ffffff33 solid;
	transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}
@media (max-width: 1000px) {
	.drawer-open .site-header {
		background-color: transparent;
		border-bottom-color: transparent;
	}
}

.wp-image-174,
.wp-image-175 {
	width: 100%;
}
.site-identity {
	/* display: flex; */
	align-items: center;
	justify-content: space-between;
}
.top-navigation-right {
	margin-top: 0.5em;
}

@media (max-width: 1000px) {
	.site-identity {
		text-align: left;
		justify-content: space-between;
	}
	body .site-title-wrap {
		max-width: calc(100% - 70px);
		flex: 1;
		min-width: 0;
	}
	.site-title {
		font-size: 20px;
		margin-right: 0;
	}
	.site-title a {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: block;
	}
	.mobile-navigation {
		margin-left: 10px;
	}
}
@media (max-width: 600px) {
	.site-title {
		font-size: 18px;
	}
}
body.page-id-281 {
	background-image: url(wp-content/uploads/2021/04/bg-1.png);
}

body.page-id-242 {
	background-image: url(wp-content/uploads/2021/04/samurai-bg.png);
}

.bpress-article-content p {
	font-size: 130%;
}

.bpress-wrap .bpress-page-header p {
	display: block;
	margin-bottom: 1em;
	color: white;
}
.bpress-wrap .bpress-page-header .bpress-search-suggest p {
	color: black;
}
.bpress-page-header a {
	font-weight: normal;
}
.bpress-searchbar-wrap .bpress-search li {
	padding: 1em;
}
.bpress-searchbar-wrap {
	margin-top: 0;
}
.bpress-search-suggest ul li a b {
	color: #f51964;
}

a,
.site-footer a {
	color: #fff7d0;
	font-weight: bold;
}
a:active {
	color: #fe2e5a;
}
a:hover,
.site-footer a:hover,
.social-navigation a:hover {
	color: #fe2e5a;
	text-decoration: none;
}

.site-footer {
	color: inherit;
}
.site-description {
	display: none;
}
.site-title-wrap {
	max-width: 50%;
}
p.site-title a {
	font-size: 200%;
}
.mobile-navigation {
	background-color: transparent;
}
@media (max-width: 1000px) {
	p.site-title {
		text-align: left;
	}
}
p.site-title a,
h1,
h2,
h3 {
	color: #fe2e5a;
	text-transform: uppercase;
	font-family: "Dosis", sans-serif;
}

p.site-title a {
	transition: color 0.3s ease;
}

@media (max-width: 1000px) {
	.drawer-open p.site-title a {
		color: #272c30;
	}
}

li::marker {
	color: #fe2e5a;
}
.footer-navigation {
	display: block;
	width: 100%;
	margin-bottom: 1em;
}

.social-navigation {
	display: block;
	width: 100%;
}

.social-navigation .social-links {
	display: flex;
	justify-content: center;
	gap: 1.5em;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-navigation .social-links li {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Social Navigation Icons */
.social-navigation a:before {
	font-size: 26px;
	font-family: "Font Awesome 5 Brands";
	padding: 0;
	display: inline-block;
	text-align: center;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	color: inherit;
}
@media (max-width: 1000px) {
	.social-navigation a:before {
		font-size: 22px;
	}
}

.social-navigation a[href*="twitter.com"] {
	font-size: 0;
}
.social-navigation a[href*="twitter.com"]:before {
	content: "\f081";
	font-size: 26px;
}

.social-navigation a[href*="facebook.com"] {
	font-size: 0;
}
.social-navigation a[href*="facebook.com"]:before {
	content: "\f09a";
	font-size: 26px;
}

.social-navigation a[href*="instagram.com"] {
	font-size: 0;
}
.social-navigation a[href*="instagram.com"]:before {
	content: "\f16d";
	font-size: 26px;
}

.social-navigation a[href*="youtube.com"] {
	font-size: 0;
}
.social-navigation a[href*="youtube.com"]:before {
	content: "\f167";
	font-size: 26px;
}

.footer-tagline {
	width: 100%;
	text-align: center;
	margin-top: 2em;
	font-size: 70%;
}
#menu-footer-menu {
	width: 100%;
	align-items: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5em 1.5em;
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu-footer-menu li {
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (max-width: 600px) {
	#menu-footer-menu {
		flex-direction: column;
		gap: 0.75em;
		text-align: center;
	}

	.footer-navigation {
		margin-bottom: 1.5em;
	}

	.social-navigation .social-links {
		gap: 2em;
	}
}
.footer-tagline a {
	border: none;
}
.footer-bottom {
	padding-top: 1em;
}
.main-navigation {
	font-family: "Dosis", sans-serif;
	text-transform: uppercase;
}

h3 {
	font-weight: normal;
	font-size: 115%;
}
.main-navigation a {
	color: white;
}
.main-navigation a:hover {
	color: #fff7d0;
}

.titles-wrap .site-title {
	padding: 0;
}
.site-identity {
	padding: 1em 0;
	/* display: flex; */
	align-items: center;
}

.footer-bottom {
	border-top: solid 1px #ffffff33;
	background-color: #00000055;
	padding-bottom: 1em;
}
.elf-link {
	display: block;
	margin-bottom: 1em;
}
.elf-link img {
	width: 5em;
}
.hoverSpin {
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
}

#menu-main-menu-1 {
	display: flex;
}
.site-title,
#menu-main-menu-1 li {
	white-space: nowrap;
}
#menu-main-menu-1 .sub-menu {
	white-space: normal;
}

.main-navigation li ul li a {
	text-transform: uppercase;
}

.hoverSpin:hover {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
.drawer-navigation,
.menu-toggle {
	font-family: "Dosis", Helvetica, sans-serif;
	text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="tel"],
input[type="time"],
input[type="month"],
textarea,
select {
	color: #7c8a96;
	background: #fff;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	padding: 15px;
	border: solid 1px #d4dde5;
	transition: 0.1s ease-in-out;
	border-radius: 0.5em;
	font-size: 100%;
	width: 100%;
}

@media (max-width: 1000px) {
	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="date"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="week"],
	input[type="tel"],
	input[type="time"],
	input[type="month"],
	textarea,
	select {
		padding: 12px 10px;
		font-size: 15px;
	}
}

.select2-results__option {
	color: #555;
}

.appStoreLink img {
	margin-bottom: 1em;
	width: 48%;
}

.youtube-player {
	border-radius: 0.5em;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

/* Responsive video containers */
.jetpack-video-wrapper,
.wp-block-embed__wrapper {
	position: relative;
	width: 100%;
}

.jetpack-video-wrapper iframe,
.wp-block-embed__wrapper iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

/* Fallback for older browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
	.jetpack-video-wrapper,
	.wp-block-embed__wrapper {
		position: relative;
		padding-bottom: 56.25%; /* 16:9 aspect ratio */
		height: 0;
		overflow: hidden;
	}

	.jetpack-video-wrapper iframe,
	.wp-block-embed__wrapper iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

main.narrow {
	width: 70%;
	margin: 0 auto;
}

@media (max-width: 1000px) {
	main.narrow {
		width: 100%;
	}
}

/* =============================================================================
   10.0 - MAILERLITE STYLES (from koala-mailerlite.css)
   ============================================================================= */

.ml-form-horizontalRow {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5em;
}

/* =============================================================================
   10.0 - ALIGNMENTS
   ============================================================================= */

#page .alignleft {
	display: inline;
	float: left;
	margin: 0.5em 2em 1.5em 0;
}
@media (max-width: 600px) {
	#page .alignleft {
		max-width: 100%;
		margin-right: 0;
		width: 100%;
	}
	#page .alignleft img {
		width: 100%;
	}
}

#page .alignright {
	display: inline;
	float: right;
	margin: 0.5em 0 1.5em 2em;
}
@media (max-width: 600px) {
	#page .alignright {
		max-width: 100%;
		margin-right: 0;
		width: 100%;
	}
	#page .alignright img {
		width: 100%;
	}
}

#page .aligncenter {
	clear: both;
	margin: 0 auto 1.5em auto;
}

/* =============================================================================
   11.0 - WORDPRESS BLOCK STYLES (from wp-blocks.css)
   ============================================================================= */

/* 11.1 - WordPress Columns Block */
.wp-block-columns {
	align-items: normal !important;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap !important;
	margin-bottom: 1.2em;
}
@media (min-width: 782px) {
	.wp-block-columns {
		flex-wrap: nowrap !important;
	}
}

.wp-block-columns.are-vertically-aligned-bottom {
	align-items: flex-end;
}
@media (max-width: 781px) {
	.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
		flex-basis: 100% !important;
	}
}
@media (min-width: 782px) {
	.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
		flex-basis: 0;
		flex-grow: 1;
	}
	.wp-block-columns:not(.is-not-stacked-on-mobile)
		> .wp-block-column[style*="flex-basis"] {
		flex-grow: 0;
	}
}

:where(.wp-block-columns) {
	margin-bottom: 1.75em;
}

.wp-block-column {
	flex-grow: 1;
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-word;
}

/* 11.2 - WordPress Image Block */
.wp-block-image > a,
.wp-block-image > figure > a {
	display: inline-block;
}
.wp-block-image img {
	box-sizing: border-box;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
@media not (prefers-reduced-motion) {
	.wp-block-image img.hide {
		visibility: hidden;
	}
	.wp-block-image img.show {
		animation: show-content-image 0.4s;
	}
}
.wp-block-image[style*="border-radius"] img,
.wp-block-image[style*="border-radius"] > a {
	border-radius: inherit;
}
.wp-block-image.has-custom-border img {
	box-sizing: border-box;
}
.wp-block-image.aligncenter {
	text-align: center;
}
.wp-block-image.alignfull > a,
.wp-block-image.alignwide > a {
	width: 100%;
}
.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
	height: auto;
	width: 100%;
}
.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image.aligncenter,
.wp-block-image.alignleft,
.wp-block-image.alignright {
	display: table;
}
.wp-block-image .aligncenter > figcaption,
.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image.aligncenter > figcaption,
.wp-block-image.alignleft > figcaption,
.wp-block-image.alignright > figcaption {
	caption-side: bottom;
	display: table-caption;
}
.wp-block-image .alignleft {
	float: left;
	margin: 0.5em 1em 0.5em 0;
}
.wp-block-image .alignright {
	float: right;
	margin: 0.5em 0 0.5em 1em;
}
.wp-block-image .aligncenter {
	margin-left: auto;
	margin-right: auto;
}
.wp-block-image :where(figcaption) {
	margin-bottom: 1em;
	margin-top: 0.5em;
}

/* =============================================================================
   12.0 - INLINE STYLES FROM TEMPLATE (from template.html)
   ============================================================================= */

/* Image optimization */
img:is([sizes="auto" i], [sizes^="auto," i]) {
	contain-intrinsic-size: 3000px 1500px;
}

/* WordPress block layouts */
.wp-block:not([data-align="full"]):not([data-align="wide"]) {
	max-width: 70%;
}

:where(.is-layout-flex) {
	gap: 0.5em;
}
body .is-layout-flex {
	display: flex;
}
.is-layout-flex {
	flex-wrap: wrap;
	align-items: center;
}
.is-layout-flex > :is(*, div) {
	margin: 0;
}

/* Animations */
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.centred {
	text-align: center;
}
