@font-face {
  font-family: "Moranga";
  src: url("../fonts/moranga/Moranga-Black.otf") format("opentype");
  font-weight: 900;
}
@font-face {
  font-family: "Moranga";
  src: url("../fonts/moranga/Moranga-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Moranga";
  src: url("../fonts/moranga/Moranga-Light.otf") format("opentype");
  font-weight: 400;
}
/* utilities like mixins, animations, etc */
/* Colors */
/* Font families */
/*Font weights */
/* time */
/* easing */
/* Flex */
/* animation mixins */
/* browser specific overrides */
@keyframes growFadeOut {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes opacityOne {
  to {
    opacity: 1;
  }
}
@keyframes opacityZero {
  to {
    opacity: 0;
  }
}
@keyframes wave {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(10px);
  }
}
@keyframes noTransform {
  to {
    transform: none;
  }
}
@keyframes removeTransOp {
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes downScale {
  50% {
    transform: scale(0.95);
  }
}
@keyframes downScaleTri {
  50% {
    transform: scale(0.8) translate(-50%, -50%);
  }
}
/*@keyframes animateHeroText {
  0% {
    content: "Party";
  }
  33% {
    content: "GameDay";
  }
  66% {
    content: "Tuesday";
  }
}*/
/*@keyframes heroSlides {
	33% {
		opacity: 1;
	}
	66% {
		opacity: 0;
	}
}*/
@keyframes pulse {
  0%, 80%, 100% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(1.25) rotate(-180deg);
  }
}
@keyframes pop {
  50% {
    transform: scale(1.075);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes backNforth {
  50% {
    transform: translateX(-10px);
  }
  to {
    transform: translateX(10px);
  }
}
@keyframes upNdownOne {
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  to {
    transform: translateY(5px) rotate(1deg);
  }
}
@keyframes upNdownTwo {
  50% {
    transform: translateY(-50%) rotate(-2deg) translateX(5px);
  }
  to {
    transform: translateY(-50%) rotate(2deg) translateX(2px);
  }
}
@keyframes dotsGrow {
  to {
    transform: scaleX(1.1) translateY(-50%);
  }
}
@keyframes skewIt {
  to {
    transform: skew(-6deg) translateY(-50%);
  }
}
@keyframes lefty {
  to {
    left: 0;
  }
}
@keyframes fillOpOne {
  to {
    fill-opacity: 1;
  }
}
/* base styles n such */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: #fdc602;
  color: black;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  top: 0px !important;
  overflow-x: hidden;
  position: relative;
  opacity: 0;
  animation: opacityOne 1s ease-in forwards;
  font-family: freight-sans-pro, sans-serif;
  background: white;
}

p, li, h1, h2, h3, h4, h5, h6, a {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}

h1 {
  font-size: 2rem;
}
@media all and (min-width: 640px) {
  h1 {
    font-size: 2.85rem;
  }
}
@media all and (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 1.75rem;
}
@media all and (min-width: 640px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media all and (min-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}
h2.big {
  font-size: 2.25rem;
}
@media all and (min-width: 640px) {
  h2.big {
    font-size: 3.25rem;
  }
}
@media all and (min-width: 1024px) {
  h2.big {
    font-size: 4rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media all and (min-width: 640px) {
  h3 {
    font-size: 2.25rem;
  }
}
@media all and (min-width: 1024px) {
  h3 {
    font-size: 2.75rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media all and (min-width: 640px) {
  h4 {
    font-size: 1.75rem;
  }
}
@media all and (min-width: 1024px) {
  h4 {
    font-size: 2.25rem;
  }
}

h5 {
  font-size: 1rem;
}
@media all and (min-width: 640px) {
  h5 {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1024px) {
  h5 {
    font-size: 1.75rem;
  }
}

h6 {
  font-size: 0.85rem;
}
@media all and (min-width: 640px) {
  h6 {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 1024px) {
  h6 {
    font-size: 1.5rem;
  }
}

ul ul, ol ul, ul ol, ol ol {
  margin-left: 0;
  margin-bottom: 0;
}

p, li {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: inherit;
}

p, li, a, div {
  color: #2c2c2c;
}

ul, ol {
  margin: 0;
  padding: 0;
}
ul li, ol li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  list-style: disc outside;
}
ul li ul, ul li ol {
  margin-bottom: 0;
}

ol li {
  list-style: decimal;
}
ol li ul, ol li ol {
  margin-bottom: 0;
}

.hide {
  display: none;
}

.show-for-medium {
  display: none;
}
@media all and (min-width: 640px) {
  .show-for-medium {
    display: block;
  }
}

.show-for-large {
  display: none;
}
@media all and (min-width: 1024px) {
  .show-for-large {
    display: block;
  }
}

.show-for-xlarge {
  display: none;
}
@media (min-width: 1200px) {
  .show-for-xlarge {
    display: block;
  }
}

.italic {
  font-style: italic;
}

.no-transform {
  transform: none !important;
}

.revealer, .revealer--long {
  opacity: 0;
  transition: 0.3s opacity cubic-bezier(0.39, 0.01, 0.43, 1.01);
}
.revealer:nth-of-type(even), .revealer--long:nth-of-type(even) {
  transition-delay: 0.3s;
}

.revealer--long {
  transition-delay: 1s;
}

.show-revealer {
  transform: none;
  opacity: 1;
}

.reveal-op {
  opacity: 0;
}

.show-op {
  opacity: 1 !important;
  transition-delay: 1s;
}

.caps {
  text-transform: uppercase;
}

.bold {
  font-weight: 700;
}

.disp-none {
  display: none;
}

/* most of the layout stuff */
.navbar {
  display: grid;
  grid-template-columns: 66% 33%;
  align-content: center;
  z-index: 5;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.navbar--interior {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 100%;
  height: 225px;
}
.navbar--home {
  background: #5bd0d5;
  height: 80px;
}
.navbar--book, .navbar--connect {
  background: #008ed2;
}
.navbar--about, .navbar--tour {
  background: #9f499b;
}
.navbar--podcast, .navbar--404 {
  background: #f16e20;
}
.navbar--keysforkids {
  background: #5bd0d5;
}
.navbar__left {
  display: grid;
  justify-content: center;
  padding: 1.66rem 0 3.33rem;
  position: relative;
  transition: 0.15s padding-top ease-in-out;
  margin-left: 15%;
}
@media (min-width: 1440px) {
  .navbar__left {
    margin-left: 17%;
  }
}
.navbar__left__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.navbar__left__inner a, .navbar__left__inner h1 {
  color: #fff;
  font-family: "Moranga";
  text-transform: capitalize;
}
.navbar__left__inner a {
  position: relative;
  z-index: 10;
  font-size: 18px;
  font-weight: 700;
  transition: 0.15s font-size ease-in-out, 0.3s clip-oath ease-in-out;
}
.navbar__left__inner a::before {
  position: absolute;
  content: attr(data-content);
  color: #fdc602;
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #fdc602;
  clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
  transition: 0.3s clip-path ease-in-out;
}
.navbar__left__inner a:hover::before, .navbar__left__inner a:focus::before, .navbar__left__inner a:active::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media all and (min-width: 640px) {
  .navbar__left__inner a {
    font-size: 22px;
  }
}
.navbar__left__inner h1 {
  z-index: 1;
}
.navbar #logo {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  z-index: 10;
}
@media all and (min-width: 640px) {
  .navbar #logo {
    top: 20%;
  }
}
@media all and (min-width: 1024px) {
  .navbar #logo {
    top: 40%;
  }
}
.navbar #logo img {
  width: 150px;
  display: inline-block;
  transition: 0.15s width ease-in-out;
}
@media all and (min-width: 640px) {
  .navbar #logo img {
    width: 200px;
  }
}
@media all and (min-width: 1024px) {
  .navbar #logo img {
    width: 250px;
  }
}
@media all and (min-width: 640px) {
  .navbar #logo.menu-open img {
    width: 125px;
  }
}
@media all and (min-width: 1024px) {
  .navbar #logo.menu-open img {
    width: 150px;
  }
}
.navbar .menu-trigger-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 15%;
}
@media (min-width: 1200px) {
  .navbar .menu-trigger-wrap {
    margin-right: 25%;
  }
}
.navbar .menu-trigger-wrap--interior {
  justify-content: flex-start;
  padding-top: 0.66rem;
}
.navbar .menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  transition: 0.15s background ease-in-out;
}
.navbar .menu-trigger:hover, .navbar .menu-trigger:active, .navbar .menu-trigger:focus {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.1);
}
.navbar .menu-trigger__dots {
  display: flex;
  justify-content: center;
  transition: 0.15s transform ease-in-out;
}
.navbar .menu-trigger__dots .dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #2c2c2c;
  transition: 0.15s transform cubic-bezier(0.39, 0.01, 0.43, 1.01), 0.15s opacity ease-in-out;
}
.navbar .menu-trigger__dots .dot:not(:first-of-type) {
  margin-left: 0.33rem;
}
.navbar .menu-trigger p {
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  color: #2c2c2c;
  margin-bottom: 0;
}
.navbar .menu-trigger.active {
  background: rgba(0, 0, 0, 0.1);
}
.navbar .menu-trigger.active .menu-trigger__dots {
  transform: translateY(-3px);
}
.navbar .menu-trigger.active .menu-trigger__dots .dot {
  border-radius: 10px;
  height: 16px;
  width: 2px;
  margin-left: 0;
}
.navbar .menu-trigger.active .menu-trigger__dots .dot:nth-of-type(1) {
  transform: rotate(45deg) translateX(3px) scale(1.5);
}
.navbar .menu-trigger.active .menu-trigger__dots .dot:nth-of-type(2) {
  transform: scale(0);
  opacity: 0;
}
.navbar .menu-trigger.active .menu-trigger__dots .dot:nth-of-type(3) {
  transform: rotate(-45deg) translateX(-3px) scale(1.5);
}

.mobile-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  align-content: center;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.15s opacity ease-in-out;
}
@media all and (min-width: 640px) {
  .mobile-menu {
    grid-template-columns: repeat(4, 1fr);
  }
}
.mobile-menu--home {
  background-color: #5bd0d5;
}
.mobile-menu--book, .mobile-menu--connect {
  background: #008ed2;
}
.mobile-menu--about, .mobile-menu--tour {
  background: #9f499b;
}
.mobile-menu--book {
  background: #008ed2;
}
.mobile-menu--podcast, .mobile-menu--404 {
  background: #f16e20;
}
.mobile-menu--keysforkids {
  background: #5bd0d5;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .nav-item {
  padding: 0.66rem;
  transition: 0.15s background ease-in-out, 0.15s transform ease-in-out;
  text-align: center;
  width: 100%;
  transform: translateY(-10px);
  opacity: 0;
  font-size: 24px;
  color: #2c2c2c;
  font-family: "Moranga";
  align-self: center;
  font-weight: 700;
  background: #fff;
}
@media all and (min-width: 640px) {
  .mobile-menu .nav-item {
    font-size: 20px;
  }
}
@media all and (min-width: 1024px) {
  .mobile-menu .nav-item {
    font-size: 22px;
  }
}
.mobile-menu .nav-item:hover, .mobile-menu .nav-item:active, .mobile-menu .nav-item:focus {
  background: #fdc602;
  transform: translateX(10px);
}
.mobile-menu .nav-item.menu-open {
  animation: removeTransOp 0.15s ease-in-out forwards;
}
.mobile-menu .nav-item.menu-open:nth-of-type(1) {
  animation-delay: 0.05s;
}
.mobile-menu .nav-item.menu-open:nth-of-type(2) {
  animation-delay: 0.1s;
}
.mobile-menu .nav-item.menu-open:nth-of-type(3) {
  animation-delay: 0.15s;
}
.mobile-menu .nav-item.menu-open:nth-of-type(4) {
  animation-delay: 0.2s;
}
.mobile-menu .nav-item.menu-open:nth-of-type(5) {
  animation-delay: 0.25s;
}
.mobile-menu .nav-item.menu-open:nth-of-type(6) {
  animation-delay: 0.3s;
}
.mobile-menu .nav-item.menu-open:nth-of-type(7) {
  animation-delay: 0.35s;
}
.mobile-menu .nav-item.menu-open:nth-of-type(8) {
  animation-delay: 0.4s;
}
.mobile-menu .nav-item.menu-open:nth-of-type(9) {
  animation-delay: 0.45s;
}
.mobile-menu .nav-item.menu-open:nth-of-type(10) {
  animation-delay: 0.5s;
}
.mobile-menu .wave-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
}
.mobile-menu .waves {
  display: flex;
  flex: 1;
  width: 100%;
}
.mobile-menu .waves .wave {
  height: 1px;
  flex: 1;
  background: rgba(0, 0, 0, 0.05);
  animation: wave 1s cubic-bezier(0.39, 0.01, 0.43, 1.01) infinite alternate;
}
.mobile-menu .waves .wave:nth-of-type(1) {
  animation-delay: 0.01s;
}
.mobile-menu .waves .wave:nth-of-type(2) {
  animation-delay: 0.02s;
}
.mobile-menu .waves .wave:nth-of-type(3) {
  animation-delay: 0.03s;
}
.mobile-menu .waves .wave:nth-of-type(4) {
  animation-delay: 0.04s;
}
.mobile-menu .waves .wave:nth-of-type(5) {
  animation-delay: 0.05s;
}
.mobile-menu .waves .wave:nth-of-type(6) {
  animation-delay: 0.06s;
}
.mobile-menu .waves .wave:nth-of-type(7) {
  animation-delay: 0.07s;
}
.mobile-menu .waves .wave:nth-of-type(8) {
  animation-delay: 0.08s;
}
.mobile-menu .waves .wave:nth-of-type(9) {
  animation-delay: 0.09s;
}
.mobile-menu .waves .wave:nth-of-type(10) {
  animation-delay: 0.1s;
}
.mobile-menu .waves .wave:nth-of-type(11) {
  animation-delay: 0.11s;
}
.mobile-menu .waves .wave:nth-of-type(12) {
  animation-delay: 0.12s;
}
.mobile-menu .waves .wave:nth-of-type(13) {
  animation-delay: 0.13s;
}
.mobile-menu .waves .wave:nth-of-type(14) {
  animation-delay: 0.14s;
}
.mobile-menu .waves .wave:nth-of-type(15) {
  animation-delay: 0.15s;
}
.mobile-menu .waves .wave:nth-of-type(16) {
  animation-delay: 0.16s;
}
.mobile-menu .waves .wave:nth-of-type(17) {
  animation-delay: 0.17s;
}
.mobile-menu .waves .wave:nth-of-type(18) {
  animation-delay: 0.18s;
}
.mobile-menu .waves .wave:nth-of-type(19) {
  animation-delay: 0.19s;
}
.mobile-menu .waves .wave:nth-of-type(20) {
  animation-delay: 0.2s;
}
.mobile-menu .waves .wave:nth-of-type(21) {
  animation-delay: 0.21s;
}
.mobile-menu .waves .wave:nth-of-type(22) {
  animation-delay: 0.22s;
}
.mobile-menu .waves .wave:nth-of-type(23) {
  animation-delay: 0.23s;
}
.mobile-menu .waves .wave:nth-of-type(24) {
  animation-delay: 0.24s;
}
.mobile-menu .waves .wave:nth-of-type(25) {
  animation-delay: 0.25s;
}
.mobile-menu .waves .wave:nth-of-type(26) {
  animation-delay: 0.26s;
}
.mobile-menu .waves .wave:nth-of-type(27) {
  animation-delay: 0.27s;
}
.mobile-menu .waves .wave:nth-of-type(28) {
  animation-delay: 0.28s;
}
.mobile-menu .waves .wave:nth-of-type(29) {
  animation-delay: 0.29s;
}
.mobile-menu .waves .wave:nth-of-type(30) {
  animation-delay: 0.3s;
}
.mobile-menu .waves .wave:nth-of-type(31) {
  animation-delay: 0.31s;
}
.mobile-menu .waves .wave:nth-of-type(32) {
  animation-delay: 0.32s;
}
.mobile-menu .waves .wave:nth-of-type(33) {
  animation-delay: 0.33s;
}
.mobile-menu .waves .wave:nth-of-type(34) {
  animation-delay: 0.34s;
}
.mobile-menu .waves .wave:nth-of-type(35) {
  animation-delay: 0.35s;
}
.mobile-menu .waves .wave:nth-of-type(36) {
  animation-delay: 0.36s;
}
.mobile-menu .waves .wave:nth-of-type(37) {
  animation-delay: 0.37s;
}
.mobile-menu .waves .wave:nth-of-type(38) {
  animation-delay: 0.38s;
}
.mobile-menu .waves .wave:nth-of-type(39) {
  animation-delay: 0.39s;
}
.mobile-menu .waves .wave:nth-of-type(40) {
  animation-delay: 0.4s;
}
.mobile-menu .waves .wave:nth-of-type(41) {
  animation-delay: 0.41s;
}
.mobile-menu .waves .wave:nth-of-type(42) {
  animation-delay: 0.42s;
}
.mobile-menu .waves .wave:nth-of-type(43) {
  animation-delay: 0.43s;
}
.mobile-menu .waves .wave:nth-of-type(44) {
  animation-delay: 0.44s;
}
.mobile-menu .waves .wave:nth-of-type(45) {
  animation-delay: 0.45s;
}
.mobile-menu .waves .wave:nth-of-type(46) {
  animation-delay: 0.46s;
}
.mobile-menu .waves .wave:nth-of-type(47) {
  animation-delay: 0.47s;
}
.mobile-menu .waves .wave:nth-of-type(48) {
  animation-delay: 0.48s;
}
.mobile-menu .waves .wave:nth-of-type(49) {
  animation-delay: 0.49s;
}
.mobile-menu .waves .wave:nth-of-type(50) {
  animation-delay: 0.5s;
}

.navbar__icon {
  position: absolute;
  pointer-events: none;
}
.navbar__icon--dots {
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  max-width: 200px;
  z-index: 0;
  animation: dotsGrow 12s 4s ease-in-out infinite alternate;
}
@media all and (min-width: 1024px) {
  .navbar__icon--dots {
    max-width: 260px;
  }
}
.navbar__icon--circles {
  right: 30%;
  bottom: -15%;
  max-width: 100px;
  z-index: 1;
}
@media all and (min-width: 1024px) {
  .navbar__icon--circles {
    max-width: 120px;
  }
}

.navbar-big-circle-wrap {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.navbar__circle {
  position: absolute;
  border-radius: 50%;
}
.navbar__circle--big {
  height: 350px;
  width: 350px;
  top: -5%;
  left: 25%;
  z-index: 0;
  background: #ff3600;
  animation: backNforth 16s ease-in-out infinite alternate;
}
.navbar__circle--small {
  height: 150px;
  width: 150px;
  right: 10%;
  bottom: -10%;
  animation: pop 8s ease-in-out infinite alternate;
}
.navbar__circle--small--about {
  background: #fdc602;
}
.navbar__circle--small--book {
  background: #f16e20;
}
.navbar__circle--small--podcast, .navbar__circle--small--connect {
  background: #fdc602;
}
.navbar__circle--small--tour {
  background: #5bd0d5;
}
.navbar__circle--small--404 {
  background: #008ed2;
}
.navbar__circle--small--keysforkids {
  background: #fdc602;
}

.navbar__illustration {
  position: absolute;
  z-index: 1;
  animation: upNdownOne 12s 3s ease-in-out infinite alternate;
}
.navbar__illustration--about {
  max-width: 80px;
  right: 3%;
  top: 35%;
}
@media all and (min-width: 640px) {
  .navbar__illustration--about {
    max-width: 120px;
    top: 5%;
  }
}
.navbar__illustration--book {
  max-width: 80px;
  left: 45%;
  top: 25%;
  animation: upNdownTwo 12s 3s ease-in-out infinite alternate;
}
@media all and (min-width: 640px) {
  .navbar__illustration--book {
    max-width: 180px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.navbar__illustration--podcast {
  max-width: 80px;
  right: 45%;
  top: 25%;
  animation: upNdownTwo 12s 3s ease-in-out infinite alternate;
}
@media all and (min-width: 640px) {
  .navbar__illustration--podcast {
    max-width: 150px;
    right: 22%;
    top: 55%;
    transform: translateY(-50%);
  }
}
.navbar__illustration--tour {
  max-width: 80px;
  left: 45%;
  top: 25%;
  animation: upNdownTwo 12s 3s ease-in-out infinite alternate;
}
@media all and (min-width: 640px) {
  .navbar__illustration--tour {
    max-width: 150px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.navbar__illustration--keysforkids {
  max-width: 80px;
  left: 45%;
  top: 25%;
  animation: upNdownTwo 12s 3s ease-in-out infinite alternate;
}
@media all and (min-width: 640px) {
  .navbar__illustration--keysforkids {
    max-width: 150px;
    left: auto;
    right: 31%;
    top: 35%;
    transform: translateY(-50%);
  }
}
.navbar__illustration--connect, .navbar__illustration--404 {
  display: none;
}

#home-banner {
  position: relative;
  overflow: hidden;
}
#home-banner .hb-decor {
  position: absolute;
}
#home-banner .hb-decor--waves {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 150px;
}
@media all and (min-width: 1024px) {
  #home-banner .hb-decor--waves {
    max-width: 220px;
  }
}
#home-banner .hb-decor--circles {
  top: -5%;
  right: -5%;
  max-width: 100px;
}
@media all and (min-width: 1024px) {
  #home-banner .hb-decor--circles {
    max-width: 300px;
  }
}
#home-banner .hb-decor--dots {
  bottom: 10%;
  right: 20%;
  max-width: 60px;
}
@media all and (min-width: 1024px) {
  #home-banner .hb-decor--dots {
    max-width: 150px;
  }
}

.inner-nav-wrap {
  position: relative;
  border-top: 10px solid #fdc602;
  padding: 4rem 0;
}

.inner-nav {
  max-width: 62.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.66rem;
  padding: 0 1rem;
}
@media all and (min-width: 640px) {
  .inner-nav {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media all and (min-width: 1024px) {
  .inner-nav {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
.inner-nav__item {
  margin: 0;
  border: 3px solid transparent;
  transition: 0.15s border-color ease-in-out, 0.15s box-shadow ease-in-out;
}
.inner-nav__item:hover, .inner-nav__item:active, .inner-nav__item:focus {
  box-shadow: 0px 12px 1px -6px #fdc602;
  border-color: #5bd0d5;
}
.inner-nav__item__image {
  height: 80px;
  width: 80px;
  margin-top: 1rem;
  background: center/contain no-repeat;
}
@media all and (min-width: 640px) {
  .inner-nav__item__image {
    height: 120px;
    width: 120px;
  }
}
.inner-nav__item__image--tour {
  background-image: url("../images/nav-icon-tour.svg");
}
.inner-nav__item__image--merch {
  background-image: url("../images/nav-icon-merch.svg");
}
.inner-nav__item__image--photography {
  background-image: url("../images/nav-icon-photo.svg");
}
.inner-nav__item__image--book {
  background-image: url("../images/nav-icon-book.svg");
}
.inner-nav__item__image--podcast {
  background-image: url("../images/nav-icon-podcast.svg");
}
.inner-nav__item__image--charity {
  background-image: url("../images/nav-icon-charity.svg");
}
.inner-nav__item__title {
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 700;
  color: #2c2c2c;
  font-size: 14px;
}

.videoBlock {
  padding: 40px 0;
}
.videoBlock h4 {
  font-family: "Moranga";
  color: #fff;
  text-transform: none;
}

.content-wrap {
  position: relative;
}

.interior-icon {
  position: absolute;
  display: none;
  pointer-events: none;
}
@media all and (min-width: 1024px) {
  .interior-icon {
    display: inline-block;
    z-index: 1;
  }
}
.interior-icon--waves {
  top: -2.5%;
  left: -20%;
  max-width: 300px;
  transform: rotate(6deg);
}
.interior-icon--circles {
  bottom: 5%;
  right: -15%;
  max-width: 200px;
}

.about-wrap {
  padding-bottom: 60px;
}
.about-wrap img {
  margin-bottom: 1.66rem;
}
@media all and (min-width: 1024px) {
  .about-wrap img {
    float: left;
    margin: 0 1rem 0 0;
  }
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: auto;
  align-items: start;
  grid-gap: 1.66rem;
  margin: 2rem 0 4rem;
}
.book-grid__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-grid__item__button {
  display: inline-block;
  margin-top: 1.33rem;
  background: #ff3600;
  padding: 0.66rem 1.33rem;
  color: #fff;
  text-align: center;
  font-size: 16px;
  transition: 0.15s background ease-in-out, 0.15s color ease-in-out;
}
.book-grid__item__button:hover, .book-grid__item__button:focus, .book-grid__item__button:active {
  background: #e63100;
  color: #fff;
}

.book-info {
  padding-bottom: 4rem;
}
.book-info h1, .book-info h2, .book-info h3, .book-info h4, .book-info h5 {
  text-transform: none;
}
.book-info .quote {
  margin: 1.66rem 0;
}
.book-info .quote-icon {
  margin-bottom: 1rem;
}
.book-info span {
  font-weight: 700;
}

.podcast-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
  grid-gap: 1.66rem;
}

.podcast-listen {
  max-width: 90%;
  margin: 4rem auto;
}
.podcast-listen p a {
  color: #008ed2;
  text-decoration: underline;
}
.podcast-listen p a:hover, .podcast-listen p a:active, .podcast-listen p a:focus {
  color: #ff3600;
}

.listen-grid {
  padding: 0 0 2rem;
}

.section-title {
  font-family: "Moranga";
  font-weight: 700;
}
@media all and (min-width: 1024px) {
  .section-title {
    font-size: 22px;
  }
}

.tour-wrap {
  max-width: 670px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.tour-intro {
  display: flex;
  flex-direction: column;
  padding: 0 1.66rem;
}
@media all and (min-width: 640px) {
  .tour-intro {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.tour-intro .tour-link {
  color: #ff3600;
  font-family: "Moranga";
}

.tour-intro-sub {
  font-style: italic;
  margin-left: 1.66rem;
  color: #595959;
}
.tour-intro-sub a {
  color: #ff3600;
}

.tourDate {
  margin: 0.66rem 0;
  padding: 1.66rem 1.66rem 0.66rem;
}
.tourDate h1, .tourDate h2, .tourDate h3, .tourDate h4, .tourDate h5 {
  text-transform: none;
  color: #ff3600;
  font-family: "Moranga";
}
.tourDate p {
  color: #595959;
}
.tourDate a {
  font-weight: normal;
}

.button {
  font-weight: normal !important;
}

.contact-wrap {
  max-width: 760px;
  margin: 2rem auto;
}
.contact-wrap__inner {
  padding: 2rem 0;
}
.contact-wrap #subcontact {
  width: 150px;
}

.not-found {
  width: min(70rem, 85%);
  margin: 4rem auto;
  padding: 2rem 2rem calc(2rem + 60px);
}
.not-found__inner h1 {
  text-transform: none;
  font-family: "Moranga";
  color: #008ed2;
  margin-bottom: 1.66rem;
}
.not-found__inner p a {
  color: #008ed2;
  text-decoration: underline;
}
.not-found__inner p a:hover, .not-found__inner p a:active, .not-found__inner p a:focus {
  color: #ff3600;
}

.charity-wrap {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 0 2rem;
}
.charity-wrap figure {
  text-align: center;
}
.charity-wrap figure blockquote {
  border: none;
}
.charity-wrap figure blockquote p {
  font-weight: 900;
  font-family: "Moranga";
  font-style: italic;
  color: #ff3600;
  text-align: center;
}
@media all and (min-width: 640px) {
  .charity-wrap figure blockquote p {
    font-size: 20px;
  }
}
@media all and (min-width: 1024px) {
  .charity-wrap figure blockquote p {
    font-size: 28px;
  }
}
.charity-wrap figure figcaption cite {
  color: #5bd0d5;
  font-weight: 900;
  font-family: "Moranga";
  font-style: normal;
}
@media all and (min-width: 640px) {
  .charity-wrap figure figcaption cite {
    font-size: 20px;
  }
}
@media all and (min-width: 1024px) {
  .charity-wrap figure figcaption cite {
    font-size: 22px;
  }
}
.charity-wrap__content {
  display: block;
  margin: 4rem auto;
}
@media all and (min-width: 640px) {
  .charity-wrap__content {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 35% 65%;
  }
}
.charity-wrap__content__photo {
  display: flex;
  justify-content: center;
  margin-bottom: 2.33rem;
}
@media all and (min-width: 640px) {
  .charity-wrap__content__photo {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 2.33rem;
    margin-top: -2.33rem;
  }
}
.charity-wrap__content__photo img {
  max-width: 250px;
}
@media all and (min-width: 640px) {
  .charity-wrap__content__photo img {
    max-width: 100%;
  }
}
.charity-wrap__content .button {
  margin-top: 1.33rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media all and (min-width: 640px) {
  .charity-wrap__content .button {
    margin-top: -4rem;
    margin-bottom: 4rem;
    margin-left: 4rem;
    width: auto;
  }
}
@media all and (min-width: 1024px) {
  .charity-wrap__content .button {
    margin-left: 0;
  }
}
.charity-wrap__content__copy {
  max-width: 95%;
}
@media all and (min-width: 1024px) {
  .charity-wrap__content__copy {
    max-width: none;
  }
}
.charity-wrap__content__copy__split {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (min-width: 640px) {
  .charity-wrap__content__copy__split {
    flex-direction: row;
  }
}
.charity-wrap__content__copy__split .charity-wrap__content__photo {
  margin-top: 1.33rem;
  width: 100%;
}
@media all and (min-width: 640px) {
  .charity-wrap__content__copy__split .charity-wrap__content__photo {
    order: -1;
    margin-top: -1.33rem;
    margin-left: -15.66rem;
    margin-right: 0;
  }
}
@media all and (min-width: 1024px) {
  .charity-wrap__content__copy__split .charity-wrap__content__photo {
    order: 1;
    margin-left: 1.33rem;
    margin-right: -1.66rem;
  }
}
@media all and (min-width: 640px) {
  .charity-wrap__content__copy__split .charity-wrap__content__photo img {
    min-width: 250px;
  }
}
.charity-wrap__video {
  width: 100%;
  margin: 2rem auto 8rem;
}
.charity-wrap__video__wrap {
  position: relative;
  padding-bottom: 56.25%;
}
.charity-wrap__video__wrap iframe {
  position: absolute;
  height: 100%;
  width: 100%;
}
.charity-wrap__video__wrap #current-video-title {
  position: absolute;
  top: 102%;
  left: 0;
  max-width: 90%;
  color: #008ed2;
}
.charity-wrap__gallery {
  border-top: 6px solid #ff3600;
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-gap: 1rem;
}
@media all and (min-width: 640px) {
  .charity-wrap__gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.charity-wrap__gallery:hover .charity-wrap__gallery__item:not(:hover) {
  filter: grayscale(100%);
}
.charity-wrap__gallery__item {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
  max-height: 10000px;
  transition: 0.15s 0.15s transform ease-in-out, 0.15s filter ease-in-out, 0.15s opacity ease-in-out, 0.15s 0.15s max-height ease-in-out;
}
.charity-wrap__gallery__item.hide-video {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
  max-height: 0;
}
.charity-wrap__gallery__item:hover {
  cursor: pointer;
}
.charity-wrap__gallery__item__title {
  line-height: 1.4rem;
  max-height: 1.4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 700;
  color: #008ed2;
}
.charity-wrap #load-more.hide-button {
  display: none;
}

.signup-container {
  display: none;
}

@keyframes test {
  to {
    background-position: 200%;
  }
}
.how-to-donate {
  margin-top: 3.66rem;
}
.how-to-donate p {
  margin-top: 0.66rem;
  text-align: right;
}

.charity-partners {
  background: #fdc602;
  margin-top: 2.33rem;
}
.charity-partners__inner {
  max-width: 62.5rem;
  padding: 3.33rem 2.33rem;
  margin: 0 auto;
}
.charity-partners__inner h6 {
  margin-bottom: 1.33rem;
  color: black !important;
  text-transform: none;
  font-family: "Moranga";
  letter-spacing: 0;
}
.charity-partners__inner__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
.charity-partners__inner__list img {
  margin: 2.33rem;
  max-width: 250px;
}

#footer {
  background: url("../images/footer-bg.png") repeat fixed;
  padding: 6rem 0;
}
@media all and (min-width: 1024px) {
  #footer {
    padding: 8rem 0;
  }
}
#footer .footer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media all and (min-width: 1024px) {
  #footer .footer-list {
    display: flex;
    flex-flow: row wrap;
  }
}
#footer .footer-list li {
  list-style: none;
  margin-top: 0.66rem;
  margin-bottom: 0.66rem;
}
@media all and (min-width: 1024px) {
  #footer .footer-list li:not(:first-of-type) {
    margin-left: 1rem;
  }
}
#footer .footer-list li a {
  color: #2c2c2c;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: 0.15s border-color ease-in-out;
}
#footer .footer-list li a:hover, #footer .footer-list li a:active, #footer .footer-list li a:focus {
  color: #2c2c2c;
  border-color: #2c2c2c;
}
#footer #copy {
  color: #2c2c2c;
  margin-left: 0;
}

.footer-logo img {
  width: 150px;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row wrap;
  margin: 1.33rem auto;
}
.footer-social a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.15s background ease-in-out;
}
.footer-social a:not(:first-of-type) {
  margin-left: 0.66rem;
}
.footer-social a i {
  color: #5bd0d5;
  transition: 0.15s color ease-in-out;
}
.footer-social a:hover, .footer-social a:active, .footer-social a:focus {
  background: #2c2c2c;
}
.footer-social a:hover i, .footer-social a:active i, .footer-social a:focus i {
  color: #5bd0d5;
}
.footer-social a svg {
  transform: scale(0.4);
}

/*# sourceMappingURL=main.css.map */
