@charset "UTF-8";
/* */
/* Eden. V1.0.0 */
/* Copyright 2017, Aaron Conway */
/* http://www.designofeden.com */
/* */
.animation {
  animation-timing-function: ease-in-out;
  animation-duration: 0.5s; }
  .animation.on-scroll, .animation.on-delay {
    animation-play-state: paused; }
  .animation.animated {
    animation-play-state: running; }

@keyframes slideInLeft {
  0% {
    transform: translate3d(40px, 0px, 0px); }
  100% {
    transform: none; } }

.slide-in-left {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  0% {
    transform: translate3d(-40px, 0px, 0px); }
  100% {
    transform: none; } }

.slide-in-right {
  animation-name: slideInRight; }

@keyframes slideInUp {
  0% {
    transform: translate3d(0px, 40px, 0px); }
  100% {
    transform: none; } }

.slide-in-up {
  animation-name: slideInUp; }

@keyframes slideInDown {
  0% {
    transform: translate3d(0px, -40px, 0px); }
  100% {
    transform: none; } }

.slide-in-down {
  animation-name: slideInDown; }

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

.fade-in {
  animation-name: fadeIn; }

.fade-in-left {
  animation-name: fadeIn, slideInLeft; }

.fade-in-right {
  animation-name: fadeIn, slideInRight; }

.fade-in-up {
  animation-name: fadeIn, slideInUp; }

.fade-in-down {
  animation-name: fadeIn, SlideInDown; }

@keyframes pop-out {
  0% {
    transform: scale3d(0, 0, 0); }
  90% {
    transform: scale3d(1.4, 1.4, 1.4); }
  100% {
    transform: scale3d(1, 1, 1); } }

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html.no-scroll, body.no-scroll {
  overflow: hidden;
  height: 100%; }

.dark {
  background-color: #2f2f2f;
  color: #ececec; }

.light {
  background-color: #ececec;
  color: #2f2f2f; }

.eden {
  background-color: #52ae76;
  color: #ececec; }

.transparent {
  background-color: transparent;
  color: #2f2f2f; }

.bg-black {
  background-color: black; }

.bg-white {
  background-color: white; }

.float-left {
  float: left; }

.float-right {
  float: right; }

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

.clear:after {
  clear: both; }

.bg-center {
  background-position: center;
  background-size: cover; }

.transition {
  transition: all 0.3s ease-in-out; }

.fill-y {
  height: 100%; }

.fill-x {
  width: 100%; }

hr {
  border-width: 1px;
  border-style: solid; }
  hr.center {
    margin-left: auto;
    margin-right: auto; }
  hr.quarter {
    width: 25%; }
  hr.half {
    width: 50%; }
  hr.three-quarters {
    width: 75%; }

:root {
  font-size: 12pt; }

body {
  font-family: "Source Sans Pro", "Lato", "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 900; }

h1 {
  font-size: 4rem; }

h2 {
  font-size: 3.5rem; }

h3 {
  font-size: 3rem; }

h4 {
  font-size: 2.5rem; }

h5 {
  font-size: 2rem; }

h6 {
  font-size: 1.5rem; }

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

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

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

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

.uppercase {
  text-transform: uppercase; }

.lowercase {
  text-transform: lowercase; }

.space {
  letter-spacing: 0.2em; }

.container {
  position: relative;
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box; }
  @media (max-width: 640px) {
    .container {
      width: 85%; } }
  @media (max-width: 425px) {
    .container {
      width: 80%; } }

.wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box; }

.center-center {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }

.left-top, .top-left {
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start; }

.right-bottom, .bottom-right {
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: end;
      align-items: flex-end; }

@media screen and (max-width: 768px) {
  .tab-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important; } }

@media screen and (max-width: 768px) {
  .tab-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important; } }

@media screen and (max-width: 425px) {
  .mob-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important; } }

@media screen and (max-width: 425px) {
  .mob-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important; } }

@media screen and (max-width: 768px) {
  .tab-col {
    -ms-flex-direction: column !important;
        flex-direction: column !important; } }

@media screen and (max-width: 768px) {
  .tab-col-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important; } }

@media screen and (max-width: 768px) {
  .tab-col .col, .tab-col-reverse .col {
    margin-bottom: 4%;
    margin-left: 0px; }
    .tab-col .col:last-of-type, .tab-col-reverse .col:last-of-type {
      margin-bottom: 0px; } }

@media screen and (max-width: 425px) {
  .mob-col {
    -ms-flex-direction: column !important;
        flex-direction: column !important; } }

@media screen and (max-width: 425px) {
  .mob-col-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important; } }

.row {
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .row.wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .row.reverse {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse; }
  .row.left-center {
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: center;
        align-items: center; }
  .row.left-bottom, .row.bottom-left {
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: end;
        align-items: flex-end; }
  .row.center-top {
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: start;
        align-items: flex-start; }
  .row.center-bottom {
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: end;
        align-items: flex-end; }
  .row.right-top, .row.top-right {
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: start;
        align-items: flex-start; }
  .row.right-center {
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center; }
  .row .col {
    margin-left: 4%; }
  .row.fluid .col {
    margin-left: 0px; }

.col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%; }
  .col.reverse {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse; }
  .col:first-child {
    margin-left: 0px; }
  .col.one {
    width: 4.66666666667%; }
  .col.two, .col.sixth {
    width: 13.3333333333%; }
  .col.three, .col.quarter {
    width: 22%; }
  .col.four, .col.third {
    width: 30.6666666667%; }
  .col.five {
    width: 39.3333333333%; }
  .col.six, .col.half {
    width: 48%; }
  .col.seven {
    width: 56.6666666667%; }
  .col.eight, .col.two-thirds {
    width: 65.3333333333%; }
  .col.nine, .col.three-quarters {
    width: 74.0%; }
  .col.ten, .col.five-sixths {
    width: 82.6666666667%; }
  .col.eleven {
    width: 91.3333333333%; }
  .col.twelve, .col.full {
    width: 100%;
    margin-left: 0; }
  @media screen and (max-width: 768px) {
    .col.tab-one {
      width: 4.66666666667% !important; }
    .col.tab-two, .col.tab-sixth {
      width: 13.3333333333% !important; }
    .col.tab-three, .col.tab-quarter {
      width: 22% !important; }
    .col.tab-four, .col.tab-third {
      width: 30.6666666667% !important; }
    .col.tab-five {
      width: 39.3333333333% !important; }
    .col.tab-six, .col.tab-half {
      width: 48% !important; }
    .col.tab-seven {
      width: 56.6666666667% !important; }
    .col.tab-eight, .col.tab-two-thirds {
      width: 65.3333333333% !important; }
    .col.tab-nine, .col.tab-three-quarters {
      width: 74.0% !important; }
    .col.tab-ten, .col.tab-five-sixths {
      width: 82.6666666667% !important; }
    .col.tab-eleven {
      width: 91.3333333333% !important; }
    .col.tab-twelve, .col.tab-full {
      width: 100% !important;
      margin-left: 0;
      margin-bottom: 3%; }
      .col.tab-twelve:last-of-type, .col.tab-full:last-of-type {
        margin-bottom: 0%; } }
  @media screen and (max-width: 425px) {
    .col.mob-one {
      width: 4.66666666667% !important; }
    .col.mob-two, .col.mob-sixth {
      width: 13.3333333333% !important; }
    .col.mob-three, .col.mob-quarter {
      width: 22% !important; }
    .col.mob-four, .col.mob-third {
      width: 30.6666666667% !important; }
    .col.mob-five {
      width: 39.3333333333% !important; }
    .col.mob-six, .col.mob-half {
      width: 48% !important; }
    .col.mob-seven {
      width: 56.6666666667% !important; }
    .col.mob-eight, .col.mob-two-thirds {
      width: 65.3333333333% !important; }
    .col.mob-nine, .col.mob-three-quarters {
      width: 74.0% !important; }
    .col.mob-ten, .col.mob-five-sixths {
      width: 82.6666666667% !important; }
    .col.mob-eleven {
      width: 91.3333333333% !important; }
    .col.mob-twelve, .col.mob-full {
      width: 100% !important;
      margin-left: 0;
      margin-bottom: 3%; }
      .col.mob-twelve:last-of-type, .col.mob-full:last-of-type {
        margin-bottom: 0%; } }
  .col.left-center {
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: start;
        align-items: flex-start; }
  .col.left-bottom, .col.bottom-left {
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: start;
        align-items: flex-start; }
  .col.center-top {
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: center;
        align-items: center; }
  .col.center-bottom {
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center; }
  .col.right-top, .col.top-right {
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: end;
        align-items: flex-end; }
  .col.right-center {
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: end;
        align-items: flex-end; }

a {
  text-decoration: none;
  color: inherit; }
  a.button {
    font-size: 0.75rem; }

.nav {
  width: 100%;
  height: 70px;
  padding: 0px 15px;
  z-index: 98;
  background-color: #52ae76;
  font-size: 0.9rem; }
  .nav.sidebar {
    height: 100%;
    width: 200px; }
    .nav.sidebar.skinny {
      width: 100px; }
    .nav.sidebar.fat {
      width: 300px; }
    .nav.sidebar ul li {
      display: block;
      padding: 0px !important; }
  .nav.padded {
    padding: 0px 10%; }
    @media screen and (max-width: 768px) {
      .nav.padded {
        padding: 0px 15px; } }
    .nav.padded .brand.float-left {
      margin-right: 3em; }
    .nav.padded .brand.float-right {
      margin-left: 3em; }
    .nav.padded .nav-options > li {
      padding: 0px 2em; }
  .nav.fixed {
    position: fixed !important;
    top: 0px; }
  .nav.centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; }
    @media screen and (max-width: 768px) {
      .nav.centered {
        -ms-flex-pack: justify;
            justify-content: space-between; } }
    .nav.centered .nav-options > li {
      padding: 0px 20px !important; }
    .nav.centered .nav-options .dropdown .dropdown-content {
      left: -50%; }
  .nav.short {
    height: 50px;
    font-size: 0.8rem; }
    .nav.short .brand {
      line-height: 50px; }
      .nav.short .brand img.logo {
        height: 25px; }
    .nav.short .nav-options {
      line-height: 50px; }
      .nav.short .nav-options button {
        padding: 0.5em 1.5em; }
    .nav.short ul li {
      height: 50px; }
    .nav.short .mob-nav {
      line-height: 50px; }
  .nav.tall {
    height: 90px; }
    .nav.tall .brand {
      line-height: 90px; }
      .nav.tall .brand img.logo {
        height: 60px; }
    .nav.tall .nav-options {
      line-height: 90px; }
    .nav.tall ul li {
      height: 90px; }
    .nav.tall .mob-nav {
      line-height: 90px; }
  .nav.dark {
    background-color: #2f2f2f;
    color: #ececec; }
    .nav.dark .nav-options button {
      background-color: #ececec;
      color: #2f2f2f; }
    .nav.dark .nav-options .dropdown .dropdown-content {
      background-color: #bbbbbb;
      color: #2f2f2f; }
      .nav.dark .nav-options .dropdown .dropdown-content li a:hover {
        opacity: 1;
        background-color: #2f2f2f;
        color: #ececec; }
    .nav.dark .mob-nav .nav-options {
      background-color: #bbbbbb; }
      .nav.dark .mob-nav .nav-options li a:hover {
        opacity: 1;
        background-color: rgba(47, 47, 47, 0.75);
        color: #ececec; }
  .nav.light {
    background-color: #ececec;
    color: #2f2f2f; }
    .nav.light .nav-options button {
      background-color: #bbbbbb;
      color: #2f2f2f; }
    .nav.light .nav-options .dropdown .dropdown-content {
      background-color: #bbbbbb;
      color: #2f2f2f; }
      .nav.light .nav-options .dropdown .dropdown-content li a:hover {
        opacity: 1;
        background-color: #ececec;
        color: #2f2f2f; }
    .nav.light .mob-nav .nav-options {
      background-color: #bbbbbb; }
      .nav.light .mob-nav .nav-options li a:hover {
        opacity: 1;
        background-color: #ececec;
        color: #2f2f2f; }
  .nav.transparent {
    background-color: transparent;
    color: #2f2f2f; }
    .nav.transparent .nav-options button {
      background-color: #ececec;
      color: #2f2f2f; }
    .nav.transparent .nav-options .dropdown .dropdown-content {
      background-color: #ececec; }
      .nav.transparent .nav-options .dropdown .dropdown-content li a:hover {
        opacity: 1;
        background-color: #bbbbbb;
        color: #2f2f2f; }
    .nav.transparent .mob-nav .nav-options {
      background-color: #ececec; }
      .nav.transparent .mob-nav .nav-options li a:hover {
        opacity: 1;
        background-color: #bbbbbb;
        color: #2f2f2f; }
  .nav .brand {
    line-height: 70px;
    text-transform: uppercase;
    transition: opacity 0.3s ease-in-out; }
    .nav .brand:hover {
      opacity: 0.75;
      cursor: pointer; }
    .nav .brand.float-left {
      margin-right: 1.5em; }
    .nav .brand.float-right {
      margin-left: 1.5em; }
    .nav .brand span {
      font-weight: 900; }
    .nav .brand img.logo {
      height: 35px;
      vertical-align: middle;
      margin-right: 10px; }
  .nav ul li {
    display: inline-block;
    height: 70px; }
    .nav ul li.nav-text {
      opacity: 0.5; }
    .nav ul li a {
      transition: opacity 0.3s ease-in-out; }
      .nav ul li a:hover {
        opacity: 0.5; }
  .nav .nav-options {
    line-height: 70px; }
    @media screen and (max-width: 768px) {
      .nav .nav-options {
        display: none; } }
    .nav .nav-options > li {
      padding: 0px 1em;
      margin-left: -5px; }
      .nav .nav-options > li.active {
        background-color: rgba(255, 255, 255, 0.25); }
      .nav .nav-options > li:first-of-type {
        padding-left: 0px; }
      .nav .nav-options > li:last-of-type {
        padding-right: 0px; }
    .nav .nav-options button {
      padding: 1.5em 2em;
      border: none;
      transition: all 0.3s ease-in-out; }
      .nav .nav-options button.full {
        height: 100%;
        transform: translate3d(0px, -1px, 0px); }
      .nav .nav-options button.short {
        padding: 1em 2em; }
      .nav .nav-options button.tall {
        padding: 2em 2em; }
      .nav .nav-options button:hover {
        cursor: pointer;
        letter-spacing: 0.3em; }
    .nav .nav-options .dropdown {
      position: relative; }
      .nav .nav-options .dropdown:after {
        content: "▿";
        opacity: 0.5; }
      .nav .nav-options .dropdown:hover {
        cursor: pointer; }
        .nav .nav-options .dropdown:hover .dropdown-content {
          display: block; }
      .nav .nav-options .dropdown .dropdown-content {
        position: absolute;
        min-width: 200px;
        list-style: none;
        text-align: center;
        z-index: 99;
        font-size: 0.9em;
        display: none; }
        .nav .nav-options .dropdown .dropdown-content li {
          width: 100%;
          height: 100%; }
          .nav .nav-options .dropdown .dropdown-content li a {
            display: inline-block;
            width: 100%;
            height: 100%;
            padding: 0px 12px;
            transition: all 0.3s ease-in-out; }
            .nav .nav-options .dropdown .dropdown-content li a:hover {
              background-color: black;
              color: white;
              cursor: pointer; }
    .nav .nav-options.float-left.push-to-end {
      margin-left: -15px; }
    .nav .nav-options.float-left .dropdown .dropdown-content {
      left: 0px;
      text-align: left; }
    .nav .nav-options.float-right.push-to-end {
      margin-right: -15px; }
    .nav .nav-options.float-right .dropdown .dropdown-content {
      right: 0px;
      text-align: right; }
  .nav .mob-nav {
    display: none;
    line-height: 70px; }
    @media screen and (max-width: 768px) {
      .nav .mob-nav {
        display: block; } }
    .nav .mob-nav .mob-toggle {
      display: none; }
      .nav .mob-nav .mob-toggle:checked ~ .nav-options {
        display: block; }
      .nav .mob-nav .mob-toggle:checked ~ .sidebar {
        width: 250px; }
        .nav .mob-nav .mob-toggle:checked ~ .sidebar.skinny {
          width: 200px; }
        .nav .mob-nav .mob-toggle:checked ~ .sidebar.fat {
          width: 300px; }
        .nav .mob-nav .mob-toggle:checked ~ .sidebar.full {
          width: 100%; }
      .nav .mob-nav .mob-toggle:checked ~ label .hamburger:nth-of-type(1) {
        top: 50%;
        transform: rotate(-45deg); }
      .nav .mob-nav .mob-toggle:checked ~ label .hamburger:nth-of-type(2) {
        opacity: 0; }
      .nav .mob-nav .mob-toggle:checked ~ label .hamburger:nth-of-type(3) {
        top: 50%;
        bottom: auto;
        transform: rotate(45deg); }
    .nav .mob-nav .bun {
      margin-top: 25px;
      position: relative;
      width: 25px;
      height: 20px;
      z-index: 100;
      cursor: pointer;
      background-color: transparent !important; }
      .nav .mob-nav .bun.light .hamburger {
        background-color: #ececec; }
      .nav .mob-nav .bun.dark .hamburger {
        background-color: #2f2f2f; }
      .nav .mob-nav .bun .hamburger {
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: #52ae76;
        transition: all 0.3s ease-in-out; }
        .nav .mob-nav .bun .hamburger:nth-of-type(1) {
          top: 0px; }
        .nav .mob-nav .bun .hamburger:nth-of-type(2) {
          top: 50%;
          transform: translate3d(0px, -50%, 0px); }
        .nav .mob-nav .bun .hamburger:nth-of-type(3) {
          bottom: 0px; }
      .nav .mob-nav .bun.skinny .hamburger {
        width: 20px; }
      .nav .mob-nav .bun.fat .hamburger {
        width: 30px; }
      .nav .mob-nav .bun.short {
        height: 15px; }
      .nav .mob-nav .bun.tall {
        height: 25px; }
      .nav .mob-nav .bun.thin .hamburger {
        height: 2px; }
      .nav .mob-nav .bun.thick .hamburger {
        height: 5px; }
    .nav .mob-nav .sidebar {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 99;
      top: 0;
      left: 0;
      overflow-x: hidden;
      background-color: #52ae76;
      transition: all 0.3s ease-in-out; }
      .nav .mob-nav .sidebar.light .nav-options {
        color: #2f2f2f; }
      .nav .mob-nav .sidebar.dark .nav-options {
        color: #ececec; }
      .nav .mob-nav .sidebar.light {
        left: 0;
        right: auto; }
        .nav .mob-nav .sidebar.light.shadow {
          box-shadow: -5px 0px 25px -5px rgba(0, 0, 0, 0.75) inset; }
      .nav .mob-nav .sidebar.right {
        right: 0;
        left: auto; }
        .nav .mob-nav .sidebar.right.shadow {
          box-shadow: 5px 0px 25px -5px rgba(0, 0, 0, 0.75) inset; }
      .nav .mob-nav .sidebar .nav-options {
        display: block;
        background-color: transparent;
        color: #2f2f2f; }
        .nav .mob-nav .sidebar .nav-options li {
          margin: 0;
          padding: 0;
          display: block; }
          .nav .mob-nav .sidebar .nav-options li a:hover {
            background: none;
            color: inherit;
            opacity: 0.75; }

.hero {
  height: 100vh;
  width: 100vw;
  margin-left: auto;
  margin-right: auto;
  background-position-x: 50%;
  background-position-y: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden; }
  .hero.short {
    height: 50vh; }
  .hero.tall {
    height: 75vh; }
  .hero.skinny {
    width: 50vw; }
  .hero.fat {
    width: 75vw; }
  @media screen and (max-width: 768px) {
    .hero.skinny, .hero.fat {
      width: 100vw; } }

button, .button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  text-align: center;
  padding: 1em 3em;
  outline: none;
  border: none;
  transition: all 0.3s ease-in-out;
  background-color: #52ae76;
  color: #ececec; }
  button:hover, .button:hover {
    cursor: pointer;
    background-color: #418c5e; }
  button.border, .button.border {
    border: 0.1em solid #2f2f2f; }
  button.light, .button.light {
    background-color: #ececec;
    color: #2f2f2f; }
    button.light.border, .button.light.border {
      border: 0.1em solid #bbbbbb; }
    button.light:hover, .button.light:hover {
      background-color: lightgray; }
  button.dark, .button.dark {
    background-color: #2f2f2f;
    color: #ececec; }
    button.dark.border, .button.dark.border {
      border: 0.1em solid #ececec; }
    button.dark:hover, .button.dark:hover {
      background-color: #161616; }
  button.transparent, .button.transparent {
    background-color: transparent;
    color: #2f2f2f; }
    button.transparent.border, .button.transparent.border {
      border: 0.1em solid #bbbbbb; }
    button.transparent:hover, .button.transparent:hover {
      background-color: #ececec; }
  button.short, .button.short {
    padding-top: 0.5em;
    padding-bottom: 0.5em; }
  button.tall, .button.tall {
    padding-top: 1.5em;
    padding-bottom: 1.5em; }
  button.skinny, .button.skinny {
    padding-left: 2em;
    padding-right: 2em; }
  button.fat, .button.fat {
    padding-left: 4em;
    padding-right: 4em; }
  button.rounded, .button.rounded {
    border-radius: 0.25em; }
  button.pill, .button.pill {
    border-radius: 100px; }
  button.shadow, .button.shadow {
    box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.75); }

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  display: none;
  overflow: auto;
  z-index: 99; }
  .modal.is-open {
    display: block; }
  .modal > .content {
    background-color: #52ae76;
    color: #ececec; }
    .modal > .content > .close.inside {
      color: #ececec; }
  .modal.light {
    background-color: none; }
    .modal.light > .content {
      background-color: #ececec;
      color: #2f2f2f; }
      .modal.light > .content > .close.inside {
        color: #2f2f2f; }
      .modal.light > .content > .close.outside {
        color: #ececec; }
  .modal.dark {
    background-color: none; }
    .modal.dark > .content {
      background-color: #2f2f2f;
      color: #ececec; }
      .modal.dark > .content > .close.inside {
        color: #ececec; }
  .modal.dark-bg {
    background-color: rgba(0, 0, 0, 0.75); }
    .modal.dark-bg > .content > .close.outside {
      color: #ececec; }
  .modal.light-bg {
    background-color: rgba(255, 255, 255, 0.75); }
    .modal.light-bg > .content > .close.outside {
      color: #2f2f2f; }
  .modal.eden-bg {
    background-color: rgba(82, 174, 118, 0.75); }
    .modal.eden-bg > .content > .close.outside {
      color: #ececec; }
  .modal.shadow > .content {
    box-shadow: 0px 0px 100px -10px rgba(0, 0, 0, 0.75); }
  .modal.rounded > .content {
    border-radius: 7.5px; }
  .modal.border > .content {
    border: 1px solid black; }
  .modal.top > .content {
    margin: 0% auto 7.5% auto;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top: none; }
    .modal.top > .content > .close.outside {
      right: -1.5em;
      top: 0.5em; }
  .modal > .content {
    position: relative;
    width: 75%;
    margin: 7.6% auto; }
    .modal > .content > .close {
      position: absolute;
      opacity: 0.5;
      transition: all 0.3s ease-in-out;
      color: #52ae76;
      background-color: transparent; }
      .modal > .content > .close:hover {
        opacity: 1;
        cursor: pointer; }
      .modal > .content > .close.dark {
        color: #2f2f2f !important;
        background-color: transparent !important; }
      .modal > .content > .close.light {
        color: #ececec !important;
        background-color: transparent !important; }
      .modal > .content > .close.inside {
        right: 15px;
        top: 12px; }
      .modal > .content > .close.outside {
        right: -1.25em;
        top: -1.25em; }
      .modal > .content > .close.corner {
        right: -1em;
        top: -1em;
        background-color: black;
        border: 1px solid white;
        border-radius: 100%;
        color: white;
        width: 2em;
        height: 2em;
        text-align: center;
        opacity: 1;
        padding-top: 2px;
        transition: all 0.3s ease-in-out; }
        .modal > .content > .close.corner span {
          vertical-align: middle; }
        .modal > .content > .close.corner:hover {
          background-color: #333333;
          cursor: pointer; }
      .modal > .content > .close.rotate {
        right: -2em;
        top: 1em;
        transform: rotate3d(0, 0, 1, 90deg); }

.code {
  padding: 2px 4px;
  background-color: #282c34;
  color: #ececec;
  font-family: monospace;
  margin-bottom: 50px; }
  .code:last-child {
    margin-bottom: 0px; }
  .code.block {
    margin-top: 10px;
    position: relative;
    padding: 75px; }
    .code.block.short {
      padding: 50px; }
    @media screen and (max-width: 768px) {
      .code.block {
        padding: 25px !important;
        font-size: 0.8rem; } }
  .code.light {
    background-color: #ececec;
    color: #2f2f2f; }
  .code.dark {
    background-color: #2f2f2f;
    color: #ececec; }

span.code {
  font-size: 0.8em;
  border: 1px solid #bbbbbb;
  border-radius: 0.2em; }

.tool-tip {
  position: relative; }
  .tool-tip .tool-tip-text {
    visibility: hidden;
    display: inline-block;
    font-size: 0.9em;
    bottom: 100%;
    margin-bottom: 10px;
    left: 0px;
    background-color: #52ae76;
    color: #ececec;
    padding: 0.5em 1em;
    border-radius: 0.2em;
    white-space: nowrap;
    position: absolute;
    z-index: 1; }
    .tool-tip .tool-tip-text.dark {
      background-color: #2f2f2f;
      color: #ececec; }
    .tool-tip .tool-tip-text.light {
      background-color: #ececec;
      color: #2f2f2f; }
    .tool-tip .tool-tip-text.center {
      left: 50%;
      transform: translate3d(-50%, 0px, 0px); }
      .tool-tip .tool-tip-text.center:after {
        left: 50%; }
    .tool-tip .tool-tip-text.right {
      left: auto;
      right: 0px; }
      .tool-tip .tool-tip-text.right:after {
        left: auto;
        right: 10px; }
    .tool-tip .tool-tip-text.sharp {
      border-radius: 0px; }
    .tool-tip .tool-tip-text.short {
      padding-top: 0.25em;
      padding-bottom: 0.25em; }
    .tool-tip .tool-tip-text.tall {
      padding-top: 0.75em;
      padding-bottom: 0.75em; }
    .tool-tip .tool-tip-text.skinny {
      padding-left: 0.5em;
      padding-right: 0.5em; }
    .tool-tip .tool-tip-text.fat {
      padding-left: 1.5em;
      padding-right: 1.5em; }
    .tool-tip .tool-tip-text.dark:after {
      border-color: #2f2f2f transparent transparent transparent; }
    .tool-tip .tool-tip-text.light:after {
      border-color: #ececec transparent transparent transparent; }
    .tool-tip .tool-tip-text.eden:after {
      border-color: #52ae76 transparent transparent transparent; }
    .tool-tip .tool-tip-text:after {
      content: " ";
      position: absolute;
      top: 100%;
      left: 10px;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: black transparent transparent transparent; }
  .tool-tip:hover {
    cursor: help; }
    .tool-tip:hover > .tool-tip-text {
      visibility: visible; }

input, textarea, select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: none;
  outline: none;
  padding: 1em 2em;
  vertical-align: bottom;
  display: inline-block;
  width: 100%;
  background: none; }
  input.fat, textarea.fat, select.fat {
    padding-left: 3em;
    padding-right: 3em; }
  input.skinny, textarea.skinny, select.skinny {
    padding-left: 1em;
    padding-right: 1em; }
  input.tall, textarea.tall, select.tall {
    padding-top: 1.5em;
    padding-bottom: 1.5em; }
  input.short, textarea.short, select.short {
    padding-top: 0.5em;
    padding-bottom: 0.5em; }
  input.dark.border, textarea.dark.border, select.dark.border {
    border: 1px solid #ececec; }
    input.dark.border-bottom, textarea.dark.border-bottom, select.dark.border-bottom {
      border-bottom: 1px solid #ececec; }
  input.eden.border, textarea.eden.border, select.eden.border {
    border: 1px solid #2f2f2f; }
    input.eden.border-bottom, textarea.eden.border-bottom, select.eden.border-bottom {
      border-bottom: 1px solid #2f2f2f; }
  input.border, textarea.border, select.border {
    border: 1px solid #bbbbbb; }
    input.border-bottom, textarea.border-bottom, select.border-bottom {
      border-bottom: 1px solid #bbbbbb; }
      input.border-bottom.transparent, textarea.border-bottom.transparent, select.border-bottom.transparent {
        padding-left: 0px; }
  input.rounded, textarea.rounded, select.rounded {
    border-radius: 0.25em; }
  input.sharp, textarea.sharp, select.sharp {
    border-radius: 0px; }
  input.round, textarea.round, select.round {
    border-radius: 100px; }

input[type="submit"], input[type="reset"] {
  transition: all 0.3s ease-in-out;
  cursor: pointer; }
  input[type="submit"]:hover, input[type="reset"]:hover {
    background-color: #418c5e; }
  input[type="submit"].dark:hover, input[type="reset"].dark:hover {
    background-color: #161616; }
  input[type="submit"].light:hover, input[type="reset"].light:hover {
    background-color: lightgray; }
  input[type="submit"].eden:hover, input[type="reset"].eden:hover {
    background-color: #418c5e; }
  input[type="submit"].transparent, input[type="reset"].transparent {
    opacity: 0.7; }
    input[type="submit"].transparent:hover, input[type="reset"].transparent:hover {
      opacity: 1; }

input.animated-search:focus {
  width: 100%; }

.select {
  position: relative;
  cursor: pointer;
  display: block; }
  .select:after {
    content: '\f0dc';
    font-family: 'FontAwesome';
    color: #52ae76;
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    top: 50%;
    transform: translate3d(0px, -50%, 0px);
    right: 1em;
    pointer-events: none; }
  .select.dark:after {
    color: #ececec; }
  .select.light:after {
    color: #2f2f2f; }

textarea {
  height: 150px; }

.checkbox {
  cursor: pointer;
  color: #666; }
  .checkbox input[type="checkbox"] {
    display: none; }
    .checkbox input[type="checkbox"] + .label-text:before {
      content: '\f096';
      font-family: 'FontAwesome';
      width: 1em;
      margin-right: 0.2em;
      display: inline-block; }
    .checkbox input[type="checkbox"]:checked + .label-text:before {
      content: '\f14a';
      color: #52ae76;
      animation: pop-out 180ms ease-in; }
    .checkbox input[type="checkbox"]:disabled + .label-text {
      color: #aaa; }
      .checkbox input[type="checkbox"]:disabled + .label-text:before {
        content: '\f0c8';
        color: #ccc; }

.toggle {
  cursor: pointer; }
  .toggle.round {
    border-radius: 100px; }
    .toggle.round .toggle-control {
      border-radius: 100px; }
    .toggle.round .handle {
      border-radius: 100px; }
  .toggle.light .toggle-control {
    background-color: #ececec;
    color: #2f2f2f; }
  .toggle.dark .toggle-control {
    background-color: #2f2f2f;
    color: #ececec; }
  .toggle.eden .toggle-control {
    background-color: #52ae76;
    color: #ececec; }
  .toggle.transparent .toggle-control {
    background-color: transparent;
    border: 0.1em solid black; }
    .toggle.transparent .toggle-control .handle {
      border: 0.1em solid black; }
  .toggle.tall .toggle-control {
    padding-top: 1.5em;
    padding-bottom: 1.5em; }
  .toggle.short .toggle-control {
    padding-top: 0.5em;
    padding-bottom: 0.5em; }
  .toggle input[type="checkbox"] {
    display: none; }
    .toggle input[type="checkbox"]:checked + .toggle-control > .option-1 {
      opacity: 0; }
    .toggle input[type="checkbox"]:checked + .toggle-control > .option-2 {
      opacity: 1; }
    .toggle input[type="checkbox"]:checked + .toggle-control > .handle {
      transform: scaleY(0.9) scaleX(0.98) translate3d(-100%, 0px, 0px); }
  .toggle .toggle-control {
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    padding: 1em 0em;
    position: relative;
    transition: all 0.5s ease-in-out; }
    .toggle .toggle-control .option-1 {
      width: 50%; }
    .toggle .toggle-control .option-2 {
      width: 50%;
      opacity: 0; }
    .toggle .toggle-control .handle {
      position: absolute;
      right: 0px;
      top: 0px;
      height: 100%;
      width: 50%;
      transform-origin: left;
      transform: scaleY(0.9) scaleX(0.98);
      background-color: white;
      transition: transform 0.5s ease-in-out; }
      .toggle .toggle-control .handle.shadow {
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); }

.slider {
  position: relative;
  overflow: hidden;
  height: 300px; }
  .slider.short {
    height: 200px; }
  .slider.tall {
    height: 600px; }
  .slider.full {
    height: 100vh; }
  .slider .slides {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    transition: all 1s ease-in-out; }
    .slider .slides .slide {
      width: 100%;
      height: 100%; }
  .slider .slider-control {
    position: absolute;
    top: 50%;
    transform: translate3d(0px, -50%, 0px);
    opacity: 0.5;
    transition: all 0.3s ease-in-out; }
    .slider .slider-control:hover {
      opacity: 1;
      cursor: pointer; }
    .slider .slider-control.slide-left {
      left: 10px; }
    .slider .slider-control.slide-right {
      right: 10px; }
  .slider .dots {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%; }
    .slider .dots .dot {
      display: inline-block;
      height: 10px;
      width: 10px;
      border-radius: 100%;
      margin: 0 5px;
      opacity: 0.5;
      cursor: pointer;
      transition: all 0.3s ease-in-out; }
      .slider .dots .dot:hover {
        opacity: 1; }
      .slider .dots .dot.is-active {
        opacity: 1; }

.lightbox {
  cursor: pointer;
  transition: all 0.3s ease-in-out; }
  .lightbox > .caption {
    display: none; }
  .lightbox .modal.is-open {
    display: -ms-flexbox;
    display: flex; }
  .lightbox .modal .content {
    text-align: center;
    background-color: transparent; }
    .lightbox .modal .content .active-img {
      position: relative; }
      .lightbox .modal .content .active-img img {
        width: auto !important;
        height: auto !important;
        max-width: 100%;
        max-height: 60vh; }
      .lightbox .modal .content .active-img .caption {
        font-style: italic;
        margin: 10px 0px; }
      .lightbox .modal .content .active-img .slider-control {
        position: absolute;
        top: 50%;
        transform: translate3d(0px, -50%, 0px);
        opacity: 0.5;
        cursor: pointer;
        transition: all 0.3s ease-in-out; }
        .lightbox .modal .content .active-img .slider-control.slide-left {
          left: -20px; }
        .lightbox .modal .content .active-img .slider-control.slide-right {
          right: -20px; }
    .lightbox .modal .content .close {
      position: fixed; }

.masonry {
  -moz-column-gap: 4px;
       column-gap: 4px; }
  .masonry.fluid {
    -moz-column-gap: 0px;
         column-gap: 0px; }
    .masonry.fluid .item {
      margin-bottom: -4px; }
  .masonry.col-2 {
    -moz-column-count: 2;
         column-count: 2; }
  .masonry.col-3 {
    -moz-column-count: 3;
         column-count: 3; }
  .masonry.col-4 {
    -moz-column-count: 4;
         column-count: 4; }
  .masonry.col-5 {
    -moz-column-count: 5;
         column-count: 5; }
  .masonry .item {
    width: 100%;
    display: inline-block; }
  @media screen and (max-width: 768px) {
    .masonry.tab-col-1 {
      -moz-column-count: 1;
           column-count: 1; }
    .masonry.tab-col-2 {
      -moz-column-count: 2;
           column-count: 2; }
    .masonry.tab-col-3 {
      -moz-column-count: 3;
           column-count: 3; }
    .masonry.tab-col-4 {
      -moz-column-count: 4;
           column-count: 4; }
    .masonry.tab-col-5 {
      -moz-column-count: 5;
           column-count: 5; } }
  @media screen and (max-width: 425px) {
    .masonry.mob-col-1 {
      -moz-column-count: 1;
           column-count: 1; }
    .masonry.mob-col-2 {
      -moz-column-count: 2;
           column-count: 2; }
    .masonry.mob-col-3 {
      -moz-column-count: 3;
           column-count: 3; }
    .masonry.mob-col-4 {
      -moz-column-count: 4;
           column-count: 4; }
    .masonry.mob-col-5 {
      -moz-column-count: 5;
           column-count: 5; } }

.overlay {
  position: relative;
  z-index: 0; }
  .overlay:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.75;
    background-color: #52ae76; }
  .overlay.dark:after {
    background-color: #2f2f2f; }
  .overlay.light:after {
    background-color: #ececec; }
  .overlay.solid:after {
    opacity: 1; }
  .overlay.circle:after {
    border-radius: 100%; }
  .overlay.on-hover:after, .overlay.on-hover .content {
    transition: all 0.5s ease; }
  .overlay.on-hover.fade:after, .overlay.on-hover.fade .content {
    opacity: 0; }
  .overlay.on-hover.fade.solid:hover:after, .overlay.on-hover.fade.solid:hover .content {
    opacity: 1; }
  .overlay.on-hover.fade:hover:after, .overlay.on-hover.fade:hover .content {
    opacity: 0.75; }
  .overlay.on-hover.slide-right:hover:after, .overlay.on-hover.slide-right:hover .content, .overlay.on-hover.slide-left:hover:after, .overlay.on-hover.slide-left:hover .content, .overlay.on-hover.slide-up:hover:after, .overlay.on-hover.slide-up:hover .content, .overlay.on-hover.slide-down:hover:after, .overlay.on-hover.slide-down:hover .content {
    transform: none; }
  .overlay.on-hover.slide-right:after, .overlay.on-hover.slide-right .content, .overlay.on-hover.slide-left:after, .overlay.on-hover.slide-left .content {
    transform: scale3d(0, 1, 1); }
  .overlay.on-hover.slide-up:after, .overlay.on-hover.slide-up .content, .overlay.on-hover.slide-down:after, .overlay.on-hover.slide-down .content {
    transform: scale3d(1, 0, 1); }
  .overlay.on-hover.slide-right:after, .overlay.on-hover.slide-right .content {
    transform-origin: left; }
  .overlay.on-hover.slide-left:after, .overlay.on-hover.slide-left .content {
    transform-origin: right; }
  .overlay.on-hover.slide-up:after, .overlay.on-hover.slide-up .content {
    transform-origin: bottom; }
  .overlay.on-hover.slide-down:after, .overlay.on-hover.slide-down .content {
    transform-origin: top; }
  .overlay.on-hover.img-overlay {
    display: inline-block; }
    .overlay.on-hover.img-overlay .content {
      position: absolute;
      left: 0px;
      top: 0px;
      z-index: 1; }
    .overlay.on-hover.img-overlay:after {
      z-index: 0;
      height: 98.5%; }

.responsive-media {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
  height: 100%; }
  .responsive-media iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%; }

.video {
  position: relative; }
  .video.overlay:after {
    z-index: 0; }
  .video .content {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1; }
    .video .content i {
      color: #ececec;
      font-size: 5rem;
      cursor: pointer; }
      .video .content i:hover {
        opacity: 0.75; }
  .video video {
    width: 100%; }
  .video .play {
    display: block; }
  .video .pause {
    display: none; }
  .video.is-playing .play {
    display: none; }
  .video.is-playing .pause {
    display: block; }
  .video.is-playing .content {
    display: none; }
  .video.is-playing:after {
    display: none; }
  .video.is-playing:hover .content {
    display: -ms-flexbox;
    display: flex; }
  .video.is-playing:hover:after {
    display: block; }

img.circle, .img.circle {
  border-radius: 100%; }

img.shadow, .img.shadow {
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.75); }

.table {
  display: table;
  width: 100%; }
  .table.border .table-cell {
    border: 1px solid #bbbbbb; }
  .table.col-border .table-cell {
    border-right: 1px solid #bbbbbb; }
    .table.col-border .table-cell:last-of-type {
      border-right: none; }
  .table.row-border .table-cell {
    border-bottom: 1px solid #bbbbbb; }
  .table.row-border .table-body .table-row:last-of-type .table-cell {
    border-bottom: none; }
  .table .table-heading {
    background-color: #52ae76;
    color: #ececec;
    display: table-header-group;
    font-weight: bold; }
    .table .table-heading.border-bottom .table-cell {
      border-bottom: 1px solid #2f2f2f !important; }
    .table .table-heading.dark {
      background-color: #2f2f2f; }
    .table .table-heading.light {
      background-color: #ececec;
      color: #2f2f2f; }
    .table .table-heading.transparent {
      background-color: transparent;
      color: #2f2f2f; }
  .table .table-body {
    display: table-row-group;
    background-color: #52ae76; }
    .table .table-body.dark {
      background-color: #2f2f2f; }
    .table .table-body.light {
      background-color: #ececec;
      color: #2f2f2f; }
    .table .table-body.transparent {
      background-color: transparent;
      color: #2f2f2f; }
    .table .table-body.light.striped .table-row:nth-of-type(even) {
      background-color: #f9f9f9; }
    .table .table-body.dark.striped .table-row:nth-of-type(even) {
      background-color: #3c3c3c; }
  .table .table-row {
    display: table-row; }
    .table .table-row .table-cell {
      display: table-cell;
      padding: 3px 10px; }

.responsive-table {
  overflow-x: auto; }

ul.indent, ol.indent {
  list-style-position: inside; }

ul li, ol li {
  margin-bottom: 0.5em; }
  ul li:last-of-type, ol li:last-of-type {
    margin-bottom: 0px; }

ul {
  list-style: none; }
  ul.bullet {
    list-style: initial; }
  ul.inline li {
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 0.5em; }
    ul.inline li:last-of-type {
      margin-right: 0px; }

.collapsible .panel.is-open .content {
  padding: 20px 0px; }

.collapsible .show-content {
  display: block;
  width: 100%;
  cursor: pointer; }

.collapsible .content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in; }

.tab .tab-headings {
  background-color: #52ae76;
  color: #ececec; }
  .tab .tab-headings .tab-heading {
    padding: 10px 30px;
    width: 100%;
    cursor: pointer; }
    .tab .tab-headings .tab-heading:hover, .tab .tab-headings .tab-heading.is-active {
      background-color: #418c5e; }
    .tab .tab-headings .tab-heading.is-active {
      pointer-events: none; }

.tab .tab-contents {
  padding-top: 10px; }
  .tab .tab-contents .tab-content {
    display: none; }
    .tab .tab-contents .tab-content.is-open {
      display: block; }

.tab.light {
  background-color: transparent; }
  .tab.light .tab-headings {
    background-color: #ececec;
    color: #2f2f2f; }
    .tab.light .tab-headings .tab-heading:hover, .tab.light .tab-headings .tab-heading.is-active {
      background-color: lightgray; }

.tab.dark {
  background-color: transparent; }
  .tab.dark .tab-headings {
    background-color: #2f2f2f;
    color: #ececec; }
    .tab.dark .tab-headings .tab-heading:hover, .tab.dark .tab-headings .tab-heading.is-active {
      background-color: #161616; }
  .tab.dark .tab-content {
    color: #2f2f2f; }

.tab.outline .tab-headings {
  background-color: transparent;
  color: #2f2f2f; }

.tab.outline .tab-heading {
  border-bottom: 1px solid #ececec;
  transition: background-color 0.3s ease-in-out; }
  .tab.outline .tab-heading:hover {
    color: #ececec; }
  .tab.outline .tab-heading.is-active {
    background-color: transparent;
    border-top: 3px solid #52ae76;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid transparent; }

.tab.outline.light .tab-heading:hover {
  color: #2f2f2f; }

.tab.outline.light .tab-heading.is-active {
  background-color: transparent;
  border-top: 3px solid #ececec; }

.tab.outline.dark .tab-heading:hover {
  background-color: #eee;
  color: #2f2f2f; }

.tab.outline.dark .tab-heading.is-active {
  background-color: transparent;
  border-top: 3px solid #2f2f2f; }

.tab.arrow .tab-headings {
  margin-bottom: 20px; }
  .tab.arrow .tab-headings .is-active {
    position: relative; }
    .tab.arrow .tab-headings .is-active:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translate3d(-50%, 0px, 0px);
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 10px solid #418c5e; }

.tab.arrow.light .tab-headings .is-active:after {
  border-top: 10px solid lightgray; }

.tab.arrow.dark .tab-headings .is-active:after {
  border-top: 10px solid #161616; }

footer {
  background-color: #52ae76;
  padding: 10px 50px;
  font-size: 0.9rem; }
  footer.fixed {
    position: fixed;
    width: 100%;
    bottom: 0px; }
  footer.padded {
    padding: 10px 100px; }
  footer.short {
    height: 100px; }
  footer.tall {
    height: 300px; }
