/** Styles.scss
    Main SCSS file.
**/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  list-style: none; }

a {
  text-decoration: none; }

body {
  font-family: "Fira Sans"; }

html {
  font-size: 16px; }
  @media screen and (min-width: 320px) {
    html {
      font-size: calc(16px + 8 * ((100vw - 320px) / 1024)); } }
  @media screen and (min-width: 1344px) {
    html {
      font-size: 24px; } }

h1 {
  font-size: 2.0736rem; }
  h1 {
    font-size: 33.1776px; }
    @media screen and (min-width: 320px) {
      h1 {
        font-size: calc(33.1776px + 47.8224 * ((100vw - 320px) / 1024)); } }
    @media screen and (min-width: 1344px) {
      h1 {
        font-size: 81px; } }

h2 {
  font-size: 1.728rem; }
  h2 {
    font-size: 27.648px; }
    @media screen and (min-width: 320px) {
      h2 {
        font-size: calc(27.648px + 26.352 * ((100vw - 320px) / 1024)); } }
    @media screen and (min-width: 1344px) {
      h2 {
        font-size: 54px; } }

h3 {
  font-size: 1.44rem; }
  h3 {
    font-size: 23.04px; }
    @media screen and (min-width: 320px) {
      h3 {
        font-size: calc(23.04px + 12.96 * ((100vw - 320px) / 1024)); } }
    @media screen and (min-width: 1344px) {
      h3 {
        font-size: 36px; } }

.container-lg {
  max-width: 1340px; }

.container-md {
  max-width: 1140px; }

.container-lg, .container-md {
  padding: 0px 40px;
  margin: 0px auto; }
  @media (min-width: 600px) {
    .container-lg, .container-md {
      padding: 0px 48px; } }
  @media (min-width: 900px) {
    .container-lg, .container-md {
      padding: 0px 56px; } }
  @media (min-width: 1200px) {
    .container-lg, .container-md {
      padding: 0px 64px; } }

.nav {
  grid-area: menu;
  align-self: center;
  justify-self: flex-end;
  padding: 25px 0px 25px 25px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center; }

.nav__stripe {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
  height: 4px;
  width: 28px;
  background-color: #04ab3b; }
  .nav__stripe::before {
    content: "";
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: absolute;
    top: -10px;
    height: 4px;
    width: 28px;
    background-color: #04ab3b; }
  .nav__stripe::after {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    content: "";
    position: absolute;
    top: 10px;
    height: 4px;
    width: 22px;
    background-color: #04ab3b; }

.nav__menu-text {
  color: #04ab3b;
  margin-left: 10px; }

.header {
  padding: 20px 0px;
  border-bottom: 3px solid #099cf5; }

.header__grid {
  display: grid;
  grid-template: [row1-start] "logo menu" auto [row1-end]/1fr 1fr; }
  @media (min-width: 900px) {
    .header__grid {
      grid-template: [row1-start] " . logo menu" [row1-end]/1fr 1fr 1fr; } }

.header__logo-link {
  grid-area: logo;
  justify-self: flex-start;
  align-self: center; }
  @media (min-width: 900px) {
    .header__logo-link {
      justify-self: center; } }

.header__logo {
  width: 160px; }
  @media (min-width: 600px) {
    .header__logo {
      width: 250px; } }

.menu {
  position: fixed;
  width: 0;
  height: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: flex;
  place-content: center; }

.menu__content {
  position: relative;
  text-align: center; }

.menu__nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center; }

.menu__link {
  font-size: 36px;
  text-decoration: none;
  color: #818181;
  text-transform: uppercase; }
  .menu__link:hover {
    color: #f1f1f1; }
  .menu__link.is-active {
    color: #099cf5; }

.menu__close {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  color: #818181; }
  .menu__close:hover {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    color: #f1f1f1; }

.footer {
  background: #099cf5; }

.footer__flex {
  display: grid;
  grid-template: 1fr 1fr/1fr; }
  @media (min-width: 600px) {
    .footer__flex {
      grid-template: 1fr/ 1fr 2fr; } }

.footer__tc {
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 0px;
  justify-self: center;
  align-self: center; }
  @media (min-width: 600px) {
    .footer__tc {
      justify-self: flex-start; } }

@media (min-width: 600px) {
  .footer__tc--ss {
    justify-self: flex-end; } }

.footer__sslink {
  color: #fff; }
  .footer__sslink:hover {
    color: #1bc8fb; }

.main-container {
  height: calc(100vh - 185px);
  min-height: 400px; }
  @media (min-width: 600px) {
    .main-container {
      height: calc(100vh - 188px); } }

.main-container--inner {
  min-height: calc(100vh - 345px);
  height: auto; }
  @media (min-width: 600px) {
    .main-container--inner {
      min-height: calc(100vh - 348px); } }
  @media (min-width: 900px) {
    .main-container--inner {
      min-height: calc(100vh - 282px); } }

/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: 0; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333; }

.flickity-button:hover {
  background: #fff;
  cursor: pointer; }

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f; }

.flickity-button:active {
  opacity: .6; }

.flickity-button:disabled {
  opacity: .3;
  cursor: auto;
  pointer-events: none; }

.flickity-button-icon {
  fill: currentColor; }

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: .25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0; }

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1; }

.carousel {
  position: relative; }

.carousel__cell {
  width: 100%;
  height: calc(100vh - 185px);
  min-height: 400px;
  background-size: cover;
  background-origin: content-box;
  background-position: center; }
  @media (min-width: 600px) {
    .carousel__cell {
      height: calc(100vh - 182px); } }

.carousel__content-wrap {
  position: absolute;
  z-index: 50;
  height: calc(100vh - 185px);
  width: 100%;
  display: -webkit-box;
  display: flex;
  background: transparent;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.2); }
  @media (min-width: 600px) {
    .carousel__content-wrap {
      height: calc(100vh - 182px); } }

.carousel__btn-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center; }

.carousel__content {
  max-width: 600px;
  text-align: center;
  margin: 0px 10px; }

.carousel__header {
  color: #fff; }

.btn {
  color: #fff;
  background: #04ab3b;
  min-width: 140px;
  padding: 10px;
  margin: 10px; }

.btn--blue {
  background: #099cf5; }

.btn--inverse {
  background: transparent;
  border: 2px solid #fff; }

.cta {
  background: #04ab3b;
  width: 100%; }

.cta__grid {
  display: grid;
  grid-template: 1fr 1fr / 1fr;
  text-align: center;
  -webkit-box-align: center;
          align-items: center;
  justify-items: center;
  padding: 15px 0px; }
  @media (min-width: 900px) {
    .cta__grid {
      grid-template: 1fr/3fr 2fr; } }

.cta__heading {
  color: #fff; }

.hero {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
  min-height: 250px; }
  .hero::after {
    z-index: 1;
    content: "";
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    position: absolute; }

.hero__title {
  color: #fff;
  text-transform: uppercase;
  z-index: 2; }

.content {
  text-align: center;
  padding: 50px 0px; }
  .content p img {
    max-width: 100%; }
