/*!
 * fullPage 3.0.8
 * https://github.com/alvarotrigo/fullPage.js
 *
 * @license GPLv3 for open source use only
 * or Fullpage Commercial License for commercial use
 * http://alvarotrigo.com/fullPage/pricing/
 *
 * Copyright (C) 2018 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}
.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: hidden;
    position: relative;
}
.fp-scroller{
    overflow: hidden;
}
.iScrollIndicator{
    border: 0 !important;
}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.fp-right {
    right: 17px;
}
#fp-nav.fp-left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    left: 0 !important;
    right: 0;
    margin: 0 auto !important;
}
.fp-slidesNav.fp-bottom {
    bottom: 17px;
}
.fp-slidesNav.fp-top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
 }
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.fp-right {
    right: 20px;
}
#fp-nav ul li .fp-tooltip.fp-left {
    left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}

/*Only display content to screen readers*/
.fp-sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* latin */
@font-face {
  font-family: "Londrina Solid";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Londrina Solid Regular"), local("LondrinaSolid-Regular"), url(https://fonts.gstatic.com/s/londrinasolid/v9/flUhRq6sw40kQEJxWNgkLuudGfNeKBM.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  margin: 0;
  padding: 0;
  color: #4a6223;
  font-family: "Open Sans", "Segoe UI", Tahoma, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

svg.icon {
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
}

.visuallyhidden, .sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

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

.clearfix:after {
  clear: both;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.align-left {
  text-align: left;
  display: block;
}

.align-right {
  text-align: right;
  display: block;
}

.nobr {
  white-space: nowrap;
}

.mobile-only {
  display: block;
}
@media screen and (min-width: 31.25em) {
  .mobile-only {
    display: none;
  }
}

.css--failed {
  display: none !important;
}

.css--passed {
  display: block !important;
}

/* ==========================================================================
Typography
========================================================================== */
h1, h2, h3, h4 {
  color: #4a6223;
  font-family: "Londrina Solid", Tahoma, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1.1;
}

h1 {
  font-size: 75px;
  font-size: 4.6875rem;
  color: #fff;
}

h2 {
  font-size: 44px;
  font-size: 2.75rem;
  margin: 0 20px 10px;
}
@media screen and (min-width: 48em) {
  h2 {
    font-size: 68px;
    font-size: 4.25rem;
    line-height: 76px;
    margin: 0 auto 30px;
  }
}

h3 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 30px;
}

h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 20px;
}

p {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 25px;
}
p.intro {
  font-size: 21px;
  font-size: 1.3125rem;
  font-style: italic;
}
@media screen and (min-width: 48em) {
  p.intro {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

a {
  color: red;
  text-decoration: none;
  background: transparent;
}
a:active, a:hover, a:focus {
  color: red;
  text-decoration: underline;
  outline: 0;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn {
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  background-color: #4a6223;
  border: 0;
  cursor: pointer;
  color: #fff;
  font-family: "Londrina Solid", Tahoma, sans-serif;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 7px 7px 0px 0px #2b412a;
  padding: 0 35px;
  margin: 0.5em 0;
  width: 100%;
  transition: all 0.2s linear;
}
.btn:active, .btn:hover, .btn:focus {
  color: #E5B637;
  cursor: pointer;
}
@media screen and (min-width: 31.25em) {
  .btn {
    width: auto;
    margin: 0.5em 0.4em 0.5em 0;
  }
}
.btn:hover, .btn:focus {
  text-decoration: none;
  outline: 0;
}

.section {
  overflow: hidden;
}
.section__wrapper {
  display: flex;
  flex-direction: column;
}
.section__heading {
  padding: 50px 20px 0;
  text-align: center;
  z-index: 10;
}
@media screen and (min-width: 48em) {
  .section__heading {
    padding: 20px;
  }
}
.section__heading h2 {
  max-width: 900px;
}
.section__content {
  display: flex;
  flex-flow: row wrap;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (min-width: 48em) {
  .section__content {
    flex-flow: row nowrap;
  }
}
.section .fp-tableCell h2,
.section .fp-tableCell p {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
@media screen and (min-width: 48em) {
  .section .fp-tableCell h2,
.section .fp-tableCell p {
    opacity: 0;
  }
}
.section.active > .fp-tableCell h2 {
  opacity: 1;
}
.section.active > .fp-tableCell p {
  opacity: 1;
  transition-delay: 0.2s;
}
.section.active > .fp-tableCell p + p {
  transition-delay: 0.4s;
}
.section.active > .fp-tableCell p + p + p {
  transition-delay: 0.6s;
}
.section.active > .fp-tableCell p + p + p + p {
  transition-delay: 0.8s;
}

.photo {
  border: 10px solid white;
  max-width: 270px;
  position: absolute;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 31.25em) {
  .photo {
    max-width: 300px;
  }
}
@media screen and (min-width: 48em) {
  .photo {
    max-width: 250px;
  }
}
@media screen and (min-width: 65.625em) {
  .photo {
    max-width: 350px;
  }
}
@media screen and (min-width: 105em) {
  .photo {
    max-width: 446px;
  }
}

#section-video {
  background: url(/bkg_hero_mobile.ec6f4b51.jpg) no-repeat;
  background-size: contain;
  background-position: top center;
}
@media screen and (min-width: 48em) {
  #section-video {
    background: url(/bkg_hero.771cbcc4.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
  }
}

#hero-video {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-position: center center;
  background-size: contain;
  object-fit: cover;
}

.video__portrait {
  display: block;
}
@media screen and (min-width: 48em) {
  .video__portrait {
    display: none;
  }
}
.video__landscape {
  display: none;
}
@media screen and (min-width: 48em) {
  .video__landscape {
    display: block;
  }
}

#section-welcome {
  background: #12321a url(/bkg_welcome.775bce41.jpg);
  background-size: cover;
  background-position: top;
}
#section-welcome p, #section-welcome h2 {
  color: #fff;
}

.welcome .section__content {
  align-items: center;
}
.welcome__content {
  flex: 1 0 100%;
  padding: 20px 20px 40px;
  margin: 0 auto;
}
@media screen and (min-width: 48em) {
  .welcome__content {
    flex: 1 0 60%;
  }
}
@media screen and (min-width: 65.625em) {
  .welcome__content {
    flex: 1 0 50%;
    padding: 20px 120px 40px 20px;
  }
}
.welcome__photos {
  flex: 1 0 100%;
  position: relative;
  padding: 20px;
  text-align: center;
  min-height: 300px;
  margin-bottom: 29vh;
  transition: all 0.5s ease;
}
@media screen and (min-width: 48em) {
  .welcome__photos {
    flex: 1 0 40%;
    min-height: 400px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 65.625em) {
  .welcome__photos {
    flex: 1 0 50%;
    min-height: 600px;
  }
}
.welcome__photos .photo-1 {
  transform: rotate(-5deg);
  top: -10%;
  left: 0;
}
@media screen and (min-width: 31.25em) {
  .welcome__photos .photo-1 {
    left: 12vw;
  }
}
@media screen and (min-width: 48em) {
  .welcome__photos .photo-1 {
    left: 0;
  }
}
@media screen and (min-width: 65.625em) {
  .welcome__photos .photo-1 {
    top: 0;
  }
}
@media screen and (min-width: 80em) {
  .welcome__photos .photo-1 {
    top: 7%;
    left: -10%;
  }
}
@media screen and (min-width: 105em) {
  .welcome__photos .photo-1 {
    top: 2%;
    left: -7%;
  }
}
.welcome__photos .photo-2 {
  transform: rotate(4deg);
  bottom: -20%;
  right: 0;
}
@media screen and (min-width: 31.25em) {
  .welcome__photos .photo-2 {
    right: 12vw;
    bottom: -10%;
  }
}
@media screen and (min-width: 48em) {
  .welcome__photos .photo-2 {
    left: 0;
  }
}
@media screen and (min-width: 80em) {
  .welcome__photos .photo-2 {
    bottom: 3%;
    left: 22%;
  }
}
@media screen and (min-width: 105em) {
  .welcome__photos .photo-2 {
    bottom: -7%;
  }
}
.welcome__photos .photo-3 {
  transform: rotate(-2deg);
  top: 26%;
  right: -8%;
  display: none;
}
@media screen and (min-width: 48em) {
  .welcome__photos .photo-3 {
    display: block;
  }
}
@media screen and (min-width: 65.625em) {
  .welcome__photos .photo-3 {
    top: 39%;
  }
}
@media screen and (min-width: 80em) {
  .welcome__photos .photo-3 {
    top: 19%;
    right: 1%;
  }
}
@media screen and (min-width: 105em) {
  .welcome__photos .photo-3 {
    top: 22%;
    right: -9%;
  }
}

@keyframes echidna-run {
  0% {
    left: 100vw;
  }
  100% {
    left: 40vw;
  }
}
@media screen and (min-width: 48em) {
  @keyframes echidna-run {
    0% {
      left: 100vw;
    }
    100% {
      left: 60vw;
    }
  }
}
@media screen and (min-width: 65.625em) {
  @keyframes echidna-run {
    0% {
      left: 100vw;
    }
    100% {
      left: 40vw;
    }
  }
}
.echidna {
  opacity: 0;
  position: absolute;
  bottom: 3vh;
  left: 40vw;
  width: 60vw;
  max-width: 331px;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
@media screen and (min-width: 48em) {
  .echidna {
    width: 40vw;
    left: 60vw;
  }
}
@media screen and (min-width: 65.625em) {
  .echidna {
    left: 40vw;
  }
}
.echidna.active {
  opacity: 1;
  animation-name: echidna-run;
  animation-fill-mode: forwards;
  animation-duration: 3s;
}

#section-book {
  background: #fbceb9 url(/bkg_book.72d9fd25.jpg);
  background-size: cover;
  background-position: top;
}

#section-book-spread {
  background: #fbceb9 url(/bkg_book_180.20bb6213.jpg);
  background-size: cover;
  background-position: bottom;
}

.book__cover {
  flex: 1 0 100%;
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .book__cover {
    flex: 1 0 50%;
  }
}
.book__cover .bookcover {
  width: 100%;
  max-width: 730px;
  box-shadow: -12px -5px 23px 2px rgba(0, 0, 0, 0.28);
}
.book__content {
  flex: 1 0 100%;
  padding: 20px;
  max-width: 760px;
  margin: 0 auto;
}
@media screen and (min-width: 48em) {
  .book__content {
    flex: 1 0 50%;
  }
}
.book-spread {
  background: url(/layout_shadow.abd6e609.png);
  background-size: 81%;
  background-position: top;
  background-repeat: no-repeat;
  height: 0;
  overflow: hidden;
  padding-bottom: 50%;
  width: 100%;
  max-width: 1600px;
  margin: 1vh auto 0;
}
@media screen and (min-width: 48em) {
  .book-spread {
    background: url(/layout_shadow.abd6e609.png);
    background-size: 91%;
    background-position: top;
    background-repeat: no-repeat;
    padding-bottom: 52%;
  }
}
@media screen and (min-width: 105em) {
  .book-spread {
    padding-bottom: 840px;
  }
}
.book-pages {
  background: url(/layout_01.ff16c1a3.jpg);
  background-size: 82%;
  background-position: top;
  background-repeat: no-repeat;
  height: 0;
  overflow: hidden;
  padding-bottom: 50%;
}
.book-pages--2 {
  background: url(/layout_02.58d6f4ee.jpg);
  background-size: 82%;
  background-position: top;
  background-repeat: no-repeat;
}
.book-pages--3 {
  background: url(/layout_03.889820b9.jpg);
  background-size: 82%;
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (min-width: 48em) {
  .book-pages {
    background: url(/layout_01.ff16c1a3.jpg);
    background-size: 92%;
    background-position: top;
    background-repeat: no-repeat;
    padding-bottom: 55%;
  }
  .book-pages--2 {
    background: url(/layout_02.58d6f4ee.jpg);
    background-size: 92%;
    background-position: top;
    background-repeat: no-repeat;
  }
  .book-pages--3 {
    background: url(/layout_03.889820b9.jpg);
    background-size: 92%;
    background-position: top;
    background-repeat: no-repeat;
  }
}

.fp-slidesContainer {
  padding: 1em 0 2em;
}
@media screen and (min-width: 48em) {
  .fp-slidesContainer {
    padding: 0;
  }
}

.fp-controlArrow.fp-prev {
  left: 8px;
  border-width: 18px 15px 18px 0;
  border-color: transparent #968b4a transparent transparent;
}
@media screen and (min-width: 48em) {
  .fp-controlArrow.fp-prev {
    left: 10px;
  }
}
.fp-controlArrow.fp-next {
  right: 8px;
  border-width: 18px 0 18px 15px;
  border-color: transparent transparent transparent #968b4a;
}
@media screen and (min-width: 48em) {
  .fp-controlArrow.fp-next {
    right: 10px;
  }
}

#section-aboutus {
  background: #fbceb9 url(/bkg_aboutus.132100a9.jpg);
  background-size: cover;
  background-position: top;
}
#section-aboutus p, #section-aboutus h2 {
  color: #473328;
}

.aboutus__content {
  flex: 1 0 100%;
  padding: 20px 20px 0;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (min-width: 48em) {
  .aboutus__content {
    flex: 1 0 70%;
    padding: 20px 20px 40px;
  }
}
@media screen and (min-width: 65.625em) {
  .aboutus__content {
    flex: 1 0 50%;
  }
}
.aboutus__photos {
  flex: 1 0 100%;
  position: relative;
  padding: 20px;
  text-align: center;
  min-height: 450px;
}
@media screen and (min-width: 48em) {
  .aboutus__photos {
    flex: 1 0 30%;
  }
}
@media screen and (min-width: 65.625em) {
  .aboutus__photos {
    flex: 1 0 50%;
  }
}
.aboutus__photos .photo-us {
  transform: rotate(5deg);
  top: 0;
  left: 3vw;
}
@media screen and (min-width: 48em) {
  .aboutus__photos .photo-us {
    top: 10%;
    left: 0;
  }
}
@media screen and (min-width: 65.625em) {
  .aboutus__photos .photo-us {
    top: 4%;
    left: 5vw;
  }
}

.koala {
  position: absolute;
  width: 33vh;
  display: block;
  bottom: 0;
  right: 0;
}
.koala__eyes {
  opacity: 1;
  position: absolute;
  width: 100%;
  animation: blink 3s infinite alternate;
}

@keyframes blink {
  40% {
    opacity: 0.8;
  }
  41% {
    opacity: 0;
  }
  45% {
    opacity: 0.1;
  }
  46% {
    opacity: 0.8;
  }
}
#section-footer {
  background: #fff;
}
#section-footer .fp-tableCell {
  vertical-align: top;
}
@media screen and (min-width: 48em) {
  #section-footer .fp-tableCell {
    padding-top: 10vh;
  }
}
@media screen and (min-width: 48em) {
  #section-footer .fp-tableCell {
    padding-top: 10vh;
  }
}

.footer__content {
  flex: 1 0 100%;
  padding: 20px 20px 0;
  position: relative;
  margin: 0 auto;
  max-width: 1050px;
  text-align: center;
  z-index: 10;
}
@media screen and (min-width: 48em) {
  .footer__content {
    flex: 1 0 70%;
  }
}
@media screen and (min-width: 65.625em) {
  .footer__content {
    flex: 1 0 50%;
  }
}
.footer__content a {
  color: #4a6223;
}
.footer__sponsors {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 20px 10px;
  z-index: 5;
}
@media screen and (min-width: 65.625em) {
  .footer__sponsors {
    flex-wrap: nowrap;
    max-width: 1600px;
    margin: 40px 10px;
  }
}
@media screen and (min-width: 105em) {
  .footer__sponsors {
    margin: 40px auto;
  }
}
.footer__sponsor-item {
  background-color: #dfe2c8;
  flex: 1 40%;
  padding: 20px;
  margin: 10px;
}
@media screen and (min-width: 65.625em) {
  .footer__sponsor-item {
    flex: 1 20%;
  }
}
.footer__bkg {
  background: url(/bkg_footer.a7d7bd3f.jpg);
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  height: 0;
  overflow: hidden;
  padding-top: 28.75%;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.kangaroo {
  position: absolute;
  display: block;
  bottom: 6vh;
  right: 10.8%;
  max-width: 24vw;
}

.windmill {
  position: absolute;
  width: 4%;
  display: block;
  top: 17%;
  left: 10.8%;
}
.windmill__head {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.windmill__head img {
  display: block;
}
.windmill__head img .rotate {
  animation: rotate 10s ease-in-out infinite;
  animation-direction: normal;
}

.rotate {
  animation: rotate 14s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.plants__overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 50;
}
@media screen and (min-width: 48em) {
  .plants__overlay {
    display: block;
  }
}
.plants__banksia {
  position: absolute;
  top: calc(100vh * 3.85);
  left: -19vw;
  width: 30vw;
  animation: sway-banksia 6s infinite cubic-bezier(0.5, 0, 0.2, 1) alternate;
  transform-origin: 51% 100%;
}
.plants__banksia .banksia-leaves {
  position: absolute;
  top: 0;
  left: 0;
  animation: swaying 6s infinite cubic-bezier(0.5, 0, 0.2, 1) alternate;
  transform-origin: 51% 60%;
}

@keyframes sway-banksia {
  from {
    transform: rotate(35deg);
  }
  to {
    transform: rotate(50deg);
  }
}
@keyframes swaying {
  from {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(5deg);
  }
}

/*# sourceMappingURL=/styles.cbb799b3.css.map */