/* ------------------------------------- */
/* Main                                  */
/* ------------------------------------- */
* {
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	color: #222;
	font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    line-height: 26px;
	margin: 0;
	min-height: 100%;
	padding: 0;
}

a {
	color: #d2840f;
	text-decoration: none;

		    transition: all .2s ease-in; 
	   -moz-transition: all .2s ease-in;
	     -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
}

a:hover {
	color: #d2840f;
	text-decoration: none;
}

img	{
	vertical-align: text-bottom;
}

button {
	cursor: pointer;
}

a:focus, button:focus {
	outline: none;
}


/* Navigation
---------------------------------------- */
nav {
	background-color: transparent;
	font-size: 14px;
	font-weight: 700;
	padding: 20px 0;
	width: 100%;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

body.has-shadow nav {
	background-color: #fff;
	webkit-box-shadow: 0 8px 6px -6px rgba( 153, 153, 153, 0.5 );
    -moz-box-shadow: 0 8px 6px -6px rgba( 153, 153, 153, 0.5 );
    box-shadow: 0 8px 6px -6px rgba( 153, 153, 153, 0.5 );
    position: relative;
    z-index: 1;
}

nav .logo {
	float: left;
	position: relative;
	z-index: 2;
}

nav .logo img {
	display: block;
	height: 50px;
	width: auto;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

nav ul {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
}

nav .menu-item {
	float: left;
	line-height: 50px;
	margin-right: 30px;
}

nav .menu-item.menu-item-1 {
	display: none;
}

nav .menu-item:last-child {
	margin-right: 0;
}

nav .menu-item > a {
	color: #000;
}

nav .menu-item > a.active {
	color: #d2840f;
	text-decoration: none;
}

.nav-bars {
	cursor: pointer;
	display: none !important;
	float: right;
	font-size: 22px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

body.take-the-quiz .nav-bars {
	color: #fff;
}

.nav-overlay {
	background-color: #000;
	height: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.nav-overlay:not(.active) {
	z-index: 0 !important;
	pointer-events: none;
}

.nav-overlay-content {
	position: relative;
	margin-top: 80px;
	text-align: center;
	width: 100%;
}

.nav-overlay ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-overlay a {
	color: #fff;
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: bold;
	line-height: 3.29;
	padding: 2px;
	text-decoration: none;
}

.nav-overlay a:hover, .nav-overlay a.active {
	color: #007bff;
}

.nav-close {
	color: #fff;
    cursor: pointer;
    font-size: 28px;
    position: absolute;
    right: 28px;
    top: 22px;
}

.nav-close:hover {
	color: #af0000;
}


.menu-item.has-children {
	position: relative;
}

.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	min-width: 180px;
}

.menu-item:hover > .submenu {
	display: block;
}

.submenu li a {
	display: block;
	padding: 10px 15px;
	color: #000;
	background-color: #fff;
	white-space: nowrap;
	font-weight: 600;
	text-decoration: none;
}

.submenu li a:hover {
	background-color: #f0f0f0;
	color: #d2840f;
}

/* Nav colors for home page */
.home .submenu {
	background-color: #003c55;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.home .submenu li a {
	color: #fff;
	background-color: #003c55;
}

.home .submenu li a:hover {
	background-color: #005d82;
	color: #d2840f;
}

/* Nav colors for quiz page */
.take-the-quiz .submenu, .flip-match .submenu {
	background-color: #111;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.take-the-quiz .submenu li a, .flip-match .submenu li a {
	color: #fff;
	background-color: #111;
}

.take-the-quiz .submenu li a:hover, .flip-match .submenu li a:hover {
	background-color: #222;
	color: #d2840f;
}


/* Body
---------------------------------------- */
header {
}

.content {
	margin: 0 auto;
	width: 960px;
	
		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

header .content.hero-image {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	height: 500px;
}

header .hero-content {
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	width: 470px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

header .hero-text h2 {
	color: #fff;
	margin: 0;
	padding: 0;
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.27;
	letter-spacing: -1px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

header .hero-text span {
	color: #fff;
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	margin-top: 25px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

header .hero-form {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 3px;
	box-shadow: 0 3px 9px -6px rgba( 0, 0, 0, 0.5 );
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	height: 59px;
	margin-top: 40px;
	position: relative;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

header .hero-form:before {
	color: #9da6b8;
	content: "\f002";
	font-family: 'Font Awesome 5 Pro';
	font-size: 15px;
	left: 24px;
	position: absolute;
	top: 50%;
	transform: translateY( -50% );

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

header .hero-form.active {
	border-color: #f44343;
}

header .hero-form input {
	border: none;
	box-sizing: border-box;
	flex-grow: 2;
	padding: 0 0 0 49px;
}

header .hero-form input:focus {
	outline: none;
}

header .hero-form button {
	color: #fff;
	background-color: #e3232e;
	border: 0;
	border-radius: 2px;
	box-shadow: 0 3px 9px -5px #f44343;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	height: 41px;
	line-height: 39px;
	letter-spacing: normal;
	margin: 9px 10px 0 0;
	text-align: center;	
	width: 110px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

footer {
	background-color: #F3F3F3;
	margin-top: 50px;
	padding: 30px 0;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

footer .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.footer-logo {
	width: 250px;
}

.footer-menu {
	flex: 1;
}

footer .logo img {
	display: block;
	height: 50px;
	width: auto;
}

footer a {
	color: #737474;
}

.footer-menu ul {
	text-align: right;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.footer-menu ul li {
	display: inline-block;
    font-size: 14px;
	line-height: 50px;
	margin-left: 30px;
}

.footer-menu ul li:first-of-type {
	margin: 0;
}


/* Home
---------------------------------------- */
body.home header {
	background-color: #06648e;
}

body.home nav .logo, body.home nav ul > li > a {
	color: #fff;
}

body.home > header > .content {
	background-image: url( '/images/header-illustration.png' );
	background-repeat: no-repeat;
	background-position: center right;
	height: 470px;
	position: relative;
}

main {
	min-height: 100vh;
}

.section-home-explore {
	padding: 66px 0 66px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.home-species-category {
	margin-bottom: 77px;
}

.section-home-explore span {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	text-align: center;
}

.section-home-explore h2 {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: bold;
	line-height: 1.67;
	letter-spacing: normal;
	margin: 9px 0 30px;
	text-align: center;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.section-home-explore-species {
	padding: 0 0 93px;
}

.explore-text {
	color: #000;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.section-home-explore-species h3 {
	color: #000;
	font-family: 'Playfair Display', serif;
	font-size: 24px;
    font-weight: normal;
	letter-spacing: normal;
	line-height: 1.46;
	margin: 0 0 27px;
}

.home-species-list {
	height: 254px;
}

.explore-item {
	border: 1px solid transparent;
	border-radius: 5px;
	box-sizing: border-box;
	color: #000;
	display: inline-block;
	height: 234px;
	margin: 0 8px;
	padding: 10px;
	vertical-align: top;
	width: 200px;

		    transition: border .4s ease-in; 
	   -moz-transition: border .4s ease-in;
	     -o-transition: border .4s ease-in;
    -webkit-transition: border .4s ease-in;
}

.explore-item:hover {
	border-color: #000;
	color: #000;
}

.species-list {
}

.species-list .explore-item {
	color: #000;
	margin-bottom: 20px;
}

.explore-item-image {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 165px;
}

.explore-item-title {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	margin-top: 5px;
	text-align: center;
}

.explore-item-subtitle {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	text-align: center;
}

.explore-view-all {
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	line-height: 2.19;
}

.explore-view-all i {
	font-size: 14px;
	margin-left: 10px;
}

.section-home-quiz {
	background-image: #000;
	padding: 94px 0 91px;
	text-align: center;
}

.section-home-quiz h3 {
	color: #007bff;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 1px;
	margin: 0;
	text-transform: uppercase;
}

.section-home-quiz h2 {
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	line-height: 1.04;
    margin: 20px 0 0;
}

.section-home-quiz a {
	background-color: #e3232e;
	border-radius: 2px;
	box-shadow: 0 3px 9px -5px #f44343;
	color: #fff;
	display: inline-block;
	line-height: 50px;
    margin-top: 50px;
	text-align: center;
	width: 228px;
}

.section-home-explore-location {
	padding: 87px 0 130px;
}

.section-home-explore-location h3 {
	color: #000;
	font-family: 'Playfair Display', serif;
	font-size: 24px;
    font-weight: normal;
	letter-spacing: normal;
	line-height: 1.46;
	margin: 0 0 27px;
}

.location-top:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	visibility: hidden;
}

.location-section {
	margin-top: 40px;
}

.location-list {
}

.location-item {
	display: inline-block;
	border-radius: 3px;
	box-shadow: 0 2px 6px -3px rgba( 0, 0, 0, 0.5 );
	border: solid 1px #e7e7e7;
	height: 300px;
	margin: 0 7px 20px;
	vertical-align: top;
	width: 220px;
}

.location-image {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 3px;
	height: 200px;
	width: 220px;
}

.location-content {
	padding: 10px 19px 0;
	text-align: left;
}

.location-title {
	color: #000;
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	line-height: 1.44;
	letter-spacing: normal;
}

.location-subtitle {
	color: #333;
	font-family: 'Playfair Display', serif;
	font-size: 12px;
	letter-spacing: normal;
}

.location-description {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	letter-spacing: -0.4px;
}

#location-map {
	height: 400px;
	margin-top: 30px;
	width: 100%;
}


/* Map
---------------------------------------- */
.section-map {
	display: flex;
}

.map-list {
	background-color: #fbf7f1;
	padding: 32px 20px;
	width: 380px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.map-form {
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 2px 6px 0 rgba( 144, 144, 144, 0.5 );
	display: flex;
	flex-direction: row;
	height: 40px;
	position: relative;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.map-form:before {
	color: #9da6b8;
	content: "\f002";
	font-family: 'Font Awesome 5 Pro';
	font-size: 15px;
	left: 24px;
	position: absolute;
	top: 50%;
	transform: translateY( -50% );

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.map-form input {
	border: none;
	box-sizing: border-box;
	flex-grow: 2;
	padding: 0 0 0 49px;
}

.map-form input:focus {
	outline: none;
}

.map-results {
		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.fas.map-results-hide, .fas.map-results-show {
	cursor: pointer;
	display: none;
	font-size: 22px;
	position: absolute;
	right: 15px;
	top: 10px;
}

.map-number {
	color: #000;
	font-size: 14px;
	margin: 24px 0 16px 4px;
}

.map-species {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 2px 8px -5px rgba( 0, 0, 0, 0.5 );
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	height: 104px;
	margin-bottom: 20px;
	padding: 12px 20px;
}

.map-species.active {
	border: 2px solid #808080;
}

.map-species-left {
	flex: 1;
}

.map-species-title {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.94;
	color: #000;
}

.map-species-image {
	background-position: center center;
	background-size: contain;
	border-radius: 3px;
	height: 80px;
	width: 80px;
}

.map-canvas {
	flex: 1;
	height: 100vh;
	min-height: 500px;
	width: 100%;
	display: block;
}

.map-window-container {
	padding: 10px 20px;
}

.map-window-title {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.94;
}

.map-window-distance {
	margin-bottom: 10px;
}

.map-window-more {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 2;
}

.map-window-more i {
    font-size: 14px;
    margin-left: 10px;
}


/* Take the quiz!
---------------------------------------- */
body.take-the-quiz {
	background-image: linear-gradient( to bottom, #040507, #1a1b30 100% );
}

body.take-the-quiz nav .logo, body.take-the-quiz nav ul > li > a {
	color: #fff;
}

nav ul > li > a.active {
	color: #d2840f;
	text-decoration: none;
}

.section-start-quiz {
}

.section-start-quiz h2 {
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.25;
	margin: 100px 0 30px;
	text-align: center;
}

.section-start-quiz h3 {
	color: #007bff;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 1px;
	margin-bottom: 60px;
	text-align: center;
	text-transform: uppercase;
}

.section-start-quiz a {
	background-color: #e3232e;
	box-shadow: 0 3px 9px -5px #f44343;
}

.section-start h2 {
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.25;
	margin-top: 100px;
	text-align: center;
}

.section-quiz h2 {
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 38px;
	font-weight: bold;
	letter-spacing: normal;
	line-height: 1.58;
	margin: 100px 0 10px;
	text-align: center;
}

.section-quiz h3 {
	color: #007bff;
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 1px;
	margin: 0 0 40px;
	text-align: center;
	text-transform: uppercase;
}

#quiz-difficulty {
	background: url( '/images/bg_dots.png' ) top center no-repeat;
}

.take-quiz-button {
	border-radius: 2px;
	color: #fff;
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	line-height: 50px;
	letter-spacing: normal;
	margin: 20px auto 0;
	text-align: center;
	width: 228px;
}

.take-quiz-button:hover {
	filter: brightness( 120% );
	color: #fff;
}


/* Flip Match
---------------------------------------- */
body.flip-match {
	background-image: linear-gradient( to bottom, #040507, #1a1b30 100% );
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	text-align: center;
}


body.flip-match nav .logo, body.flip-match nav ul > li > a {
	color: #fff;
}

nav ul > li > a.active {
	color: #d2840f;
	text-decoration: none;
}

#flip-match-difficulty {
	background: url( '/images/bg_dots.png' ) top center no-repeat;
}

.flip-match-button {
	border-radius: 2px;
	color: #fff;
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	line-height: 50px;
	letter-spacing: normal;
	margin: 20px auto 0;
	text-align: center;
	width: 228px;
}

.flip-match-button:hover {
	filter: brightness( 120% );
	color: #fff;
}






.section-start-quiz h2 {
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.25;
	margin: 100px 0 30px;
	text-align: center;
}

.section-start-quiz h3 {
	color: #007bff;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 1px;
	margin-bottom: 60px;
	text-align: center;
	text-transform: uppercase;
}

.section-start-quiz a {
	background-color: #e3232e;
	box-shadow: 0 3px 9px -5px #f44343;
}

.section-start h2 {
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.25;
	margin-top: 100px;
	text-align: center;
}

.section-quiz h2 {
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 38px;
	font-weight: bold;
	letter-spacing: normal;
	line-height: 1.58;
	margin: 100px 0 10px;
	text-align: center;
}

.section-quiz h3 {
	color: #007bff;
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 1px;
	margin: 0 0 40px;
	text-align: center;
	text-transform: uppercase;
}

#win-message {
	color: #fff;
	display: none;
	text-align: center;
	font-size: 1.5rem;
	margin-top: 20px;
}

#play-again {
	background-color: #e3232e;
	border: none;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 1.2rem;
	margin-top: 20px;
	padding: 10px 20px;
	transition: all 0.2s ease-in;
}







		#game-container {
			min-height: 50vh;
			width: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
			box-sizing: border-box;
		}
		
		#game-board {
            align-items: center;
            display: grid;
            gap: 10px;
            height: auto;
            justify-content: center;
            margin: 20px 10px;
            max-width: 800px;
            width: calc(100% - 20px);
            box-sizing: border-box;
        }

        #game-settings {
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-bottom: 10px;
        }

        #match-counter, #score-board {
			color: #fff;
            display: none;
            font-size: 1.2rem;
            margin-top: 10px;
        }


        .card {
			border: 2px solid #60110d;
            border-radius: 10px;
            box-sizing: border-box;
            cursor: pointer;
            padding-top: 60%;
            perspective: 1000px;
            position: relative;
            transition: transform 0.3s;
			width: 100%;
        }

        .card-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 10px;
        }

        .card-back {
            background-color: #fff;
            background-image: url( '/images/logo-only.png' );
            background-position: center;
            background-repeat: no-repeat;
            background-size: 30%;
            backface-visibility: hidden;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            position: absolute;
            width: 100%;
        }

        .card-front {
			background-size: contain;
			background-position: center;
			background-repeat: no-repeat;
            background-color: #fff;
            backface-visibility: hidden;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            position: absolute;
            transform: rotateY(180deg);
            width: 100%;
        }

        .card-inner {
            border-radius: 10px;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
            width: 100%;
        }

        .card.flipped .card-inner {
            transform: rotateY(180deg);
        }



        .difficulty-button:hover {
            background-color: #ff7043;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .card {
                height: 80px;
            }
        }



/* Species
---------------------------------------- */
.section-species {
}

.section-species h2 {
	color: #050608;
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.25;
	letter-spacing: -1px;
	margin-top: 32px;
	text-align: center;	
}

.section-species-category {
	margin: 64px 0;
}

.section-species-category .content {
	text-align: center;
}

.section-species-category button {
	border: none;
	background-color: #f0f0f0;
	border-radius: 20px;
	color: #979797;
	cursor: pointer;
	display: inline-block;
	margin: 0 10px;
	height: 24px;
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	height: 40px;
	text-align: center;
	width: 120px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.section-species-category .mixitup-control-active, .section-species-category button:hover {
	background-color: #050608;
	color: #fff;
}

.section-species .content {
	margin-top: 100px;
	overflow: hidden;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.species-left {
	float: left;
	margin-right: 80px;
	width: 500px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.species-left h2 {
	color: #000;
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	line-height: 0.78;
	margin: 0;
}

.species-left h3 {
	color: #000;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 22px;
	font-weight: normal;
	font-style: normal;
	margin-top: 20px;
}

.species-left h3.species-subtitle {
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.46;
    margin: 0 0 27px;
}

.species-play-audio {
	background-color: #e3232e;
	border-radius: 3px;
	box-shadow: 0 3px 9px -5px #f44343;
	color: #fff;
	border: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	line-height: 2.19;
	margin-top: 15px;
	padding: 0 50px;
	text-align: center;
}

.species-play-audio .fas {
	margin-right: 16px;
}

.species-overview {
	line-height: 32px;
	margin-top: 30px;
}

.species-image {
	margin: 70px 0 68px;
}

.species-image a {
    background-position: center center;
    background-repeat: no-repeat;	
    background-size: cover;
	display: inline-block;
	height: 180px;
	margin-right: 22px;
	width: 238px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.species-image a:nth-child( 2 ) {
	margin-right: 0;
}

.species-right {
	float: left;
	width: 380px;

		    transition: all .4s ease-in; 
	   -moz-transition: all .4s ease-in;
	     -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
}

.species-fun-facts {
	border-radius: 2px;
	background-image: linear-gradient( to bottom, #040507, #06070c );
	color: #fff;
	padding: 12px 43px 36px;
}

.species-fun-facts h4 {
	color: #007bff;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 34px 0 10px;
	text-transform: uppercase;
}


/* Places Near You
---------------------------------------- */
body.places-near-you header.hero-location {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	height: 500px;
}

.section-location {
}

.section-location h2 {
	color: #050608;
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.25;
	letter-spacing: -1px;
}

.section-location .content {
	margin-top: 75px;
	overflow: hidden;
}

.location-left {
	float: left;
	margin-right: 80px;
	width: 500px;
}

.location-left h2 {
	color: #000;
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	line-height: 1;
	margin: 0;
}

.location-left h3 {
    color: #000;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    margin-top: 20px;
}

h3.location-text {
	color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.46;
    margin: 0 0 27px;
}

.location-play-audio {
	background-color: #e3232e;
	border-radius: 3px;
	box-shadow: 0 3px 9px -5px #f44343;
	color: #fff;
	border: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	line-height: 2.19;
	margin-top: 15px;
	padding: 0 50px;
	text-align: center;
}

.location-play-audio .fas {
	margin-right: 16px;
}

.location-overview {
	line-height: 32px;
	margin-top: 30px;
}

.location-right {
	float: left;
	width: 380px;
}

.location-fun-facts {
	border-radius: 2px;
	background-image: linear-gradient(to bottom, #040507, #06070c);
	color: #fff;
	padding: 12px 43px 36px;
}

.location-fun-facts h4 {
	color: #007bff;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 34px 0 10px;
	text-transform: uppercase;
}


/* Miscellaneous
---------------------------------------- */
.hidden {
	display: none;
	visibility: hidden;
}

.clearfix::after {
	content: '';
	display: table;
	clear: both;
}

.text-center {
	text-align: center;
}

.owl-stage {
	margin-left: -8px;
}

.cycle-slideshow, .cycle-slideshow * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.cycle-slideshow {
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 5;
}

.cycle-pager {
	overflow: hidden;
	text-align: center;
	width: 100%;
	z-index: 500;
}

.cycle-pager span {
	cursor: pointer;
    display: inline-block;
	font-size: 50px;
	line-height: 24px;
	margin: 0 11px;

		    transition: color .2s ease-in; 
	   -moz-transition: color .2s ease-in;
	     -o-transition: color .2s ease-in;
    -webkit-transition: color .2s ease-in;
}

.cycle-pager span:hover, .cycle-pager span.cycle-pager-active {
	color: #d2840f;
}

.cycle-pager > * {
	cursor: pointer;
}

.ui-autocomplete {
	height: 100px;
	overflow-y: auto;
	overflow-x: hidden;
}


@media only screen and (min-width: 769px) {
	.menu-item.has-children {
		position: relative;
	}

	.submenu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background: white;
		border: 1px solid #ccc;
		list-style: none;
		padding: 0;
		margin: 0;
		z-index: 1000;
	}

	.menu-item:hover > .submenu {
		display: block;
	}
}


/* ------------------------------------- */
/* Responsive - Tablet                   */
/* ------------------------------------- */
@media only screen and (max-width: 1040px) {
	.content {
		width: 740px;
	}

	header .hero-content {
		width: 320px;
	}

	header .hero-text h2 {
		font-size: 28px;
	}

	header .hero-text span {
		font-size: 14px;
	}

	header .hero-form {
		height: 48px;
	}

	header .hero-form:before {
		font-size: 12px;
		left: 18px;
	}

	header .hero-form button {
		font-size: 14px;
		height: 32px;
		line-height: 29px;
		margin: 8px 8px 0 0;
		width: 90px;
	}


	/* Home
	---------------------------------------- */
	body.home > header > .content {
		background-size: 50%;
		height: 320px;
	}

	.section-home-explore {
		padding: 70px 0 35px;
	}
	
	
	.map-list {
		width: 320px;
	}


	/* Species
	---------------------------------------- */
	.species-left {
		margin-right: 40px;
		width: 400px;
	}

	.species-image a {
		height: 160px;
		margin-right: 15px;
		width: 192px;
	}

	.species-right {
		width: 300px;
	}


	/* Places Near You
	---------------------------------------- */
	.location-left {
		margin-right: 40px;
		width: 400px;
	}
	
	.location-right {
		width: 300px;
	}
}



/* ------------------------------------- */
/* Responsive - Mobile                   */
/* ------------------------------------- */
@media only screen and (max-width: 768px) {
	/* Navigation
	---------------------------------------- */
	nav {
		left: auto;
		padding: 10px 0;
		transform: none;
	}
	
	nav .logo {

	}

	nav ul {
		display: none !important;
		float: none;
		text-align: center;
	}
	
	.nav-bars {
		display: inline-block !important;
		margin-top: 14px;
	}
	
	.nav-bars.white {
		color: #fff;
	}

	.menu-item {
		float: none;
		margin: 10px 0;
	}

	.menu-item.has-children .submenu {
		background-color: transparent !important;
		border: none !important;
		box-shadow: none !important;
		display: block !important;
		position: static !important;
		background: none;
		border: none;
		margin: 0;
		padding: 0;
		text-align: center;
	}

	.menu-item.has-children .submenu li {
		display: block;
		margin: 2px 0;
	}

	.menu-item.has-children .submenu li a {
		background-color: transparent !important;
		color: #fff !important;
		padding: 6px 0;
		font-size: 13px;
		color: #aaa;
		line-height: 1.4;
	}

	.menu-item.has-children .submenu li a:hover {
		background-color: transparent !important;
		color: #d2840f !important;
	}
	

	/* Body
	---------------------------------------- */
	.content {
		margin: 0 5%;
		width: 90%;
	}

	header .hero-content {
		position: relative;
		text-align: center;
		top: auto;
		transform: none;
		width: 100%;
	}

	header .hero-text h2 {
		font-size: 33px;
		line-height: 1.21;
		letter-spacing: normal;
		padding-top: 20px;
	}

	header .hero-text span {
		font-size: 14px;
	}

	header .hero-form {
		display: block;
		height: 40px;
	}

	header .hero-form input {
	    height: 40px;
		text-align: left;
		width: 100%;
	}

	header .hero-form button {
		font-size: 16px;
		height: 40px;
		margin: 20px 0 0 0;
		width: 100%
	}

	footer .content {
		display: block;
	}

	.footer-logo {
		width: 100%;
	}
	
	footer .logo img {
		margin: 0 auto;
	}

	.footer-menu {
		flex: initial;
		margin-top: 30px;
	}

	.footer-menu ul {
		text-align: center;
	}

	.footer-menu ul li {
		line-height: 20px;
		margin-left: 10px;
	}


	/* Home
	---------------------------------------- */
	body.home > header > .content {
		background-image: url( '/images/header-illustration.png' );
		background-position: bottom 30px center;
		background-size: 317px 225px;
		height: 600px;
	}

	.section-home-explore {
		padding: 103px 0 50px;
	}

	.section-home-explore h2 {
		margin: 15px 0 40px;
	}

	.species-list .explore-item {
		margin: 0 10px 10px !important;
	}
	
	.home-species-list {
		height: 200px;
	}

	.explore-item {
		height: 194px;
		width: 160px;
	}

	.explore-item-image {
		height: 140px;
	}

	.explore-item-title {
		font-size: 14px;
	}


	/* Map
	---------------------------------------- */
	.section-map {
		display: block;
		position: relative;
	}

	.map-list {
		background-color: transparent;
    	box-sizing: border-box;
		height: 0;
		padding: 40px;
		position: absolute;
		width: 100%;
		z-index: 1;
	}
	
	.fas.map-results-hide {
		display: block;
	}

	.map-results {
		background-color: #fbf7f1;
		border-radius: 12px;
		bottom: 0;
		box-shadow: 0 -3px 4px -2px rgba( 154, 154, 154, 0.5 );
	    box-sizing: border-box;
		height: 200px;
		left: 0;
		overflow-y: scroll;
		padding: 0 20px 20px;
	    position: fixed;
	    width: 100%;
	}
	
	.map-number {
		margin: 8px 0 20px;
		text-align: center;
	}


	/* Species
	---------------------------------------- */
	body.species header .content.hero-image {
		height: 400px;
	}

	.section-species h2 {
		font-size: 31px;
	}

	.section-species-category button {
		cursor: pointer;
		margin: 0 7px;
		font-size: 14px;
		height: 26px;
		padding: 0 18px;
		text-align: center;
		width: auto;
	}

	.section-species .content {
		margin: 50px 0 0;
		width: 100%;
	}

	.species-left {
		float: none;
		margin: 0 5%;
		width: 90%;
	}

	.species-play-audio {
		display: block;
		padding: 0;
		width: 100%;
	}

	.species-image {
		margin: 40px auto 20px;
		width: 80%;
	}
	
	.species-image a {
		height: 240px;
		width: 100%;
	}

	.species-right {
		float: none;
		margin-top: 60px;
		width: 100%;
	}


	/* Places Near You
	---------------------------------------- */
	body.places-near-you header.hero-image {
		height: 300px;
	}

	.section-location .content {
		margin: 50px 0 0;
		width: 100%;
	}

	.location-left {
		float: none;
		margin: 0 5%;
		width: 90%;
	}

	.location-left h2 {
		font-size: 38px;
	}

	.location-play-audio {
		display: block;
		padding: 0;
		width: 100%;
	}

	.location-right {
		float: none;
		margin-top: 60px;
		width: 100%;
	}
	
	.location-section {
		margin: 40px 5% 0;
	}
}



/* ------------------------------------- */
/* Responsive - Mobile                   */
/* ------------------------------------- */
@media only screen and (max-width: 488px) {
	/* Species
	---------------------------------------- */
	.section-species-category {
		margin: 34px 0;
	}

	.section-species-category button {
		margin: 0 4px;
		font-size: 12px;
		height: 22px;
		padding: 0 14px;
	}
	
	.explore-item {
		height: 194px;
		width: 156px;
	}

	.species-list .explore-item {
		margin: 0 5px 10px !important;
	}
}
