/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */

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

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */

hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

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

/**
 * 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
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * 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 size in all browsers.
 */

small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * 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 iframes in all browsers (opinionated).
 */

iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * Collapse border spacing in all browsers (opinionated).
 */

table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */

fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * 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;
}

/* User interaction
 * ========================================================================== */

/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */

button,
input,
select,
textarea {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center / 1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Change the inconsistent appearance in IE (opinionated).
 */

::-ms-expand {
  display: none;
}

/**
 * Correct the inconsistent appearance in IE (opinionated).
 */

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}
/*! Lity - v2.4.0 - 2019-08-10
* http://sorgalla.com/lity/
* Copyright (c) 2015-2019 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  box-sizing: border-box;
}
.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}
.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity-loading .lity-loader {
  opacity: 1;
}
.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}
.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close:active {
  top: 1px;
}
/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}
/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}
.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
.lity-hide {
  display: none;
}
@charset "UTF-8";
body {
  font-family: sofia-pro, sans-serif;
  color: #0c2e40;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.3;
}
h1 > span, h2 > span, h3 > span, h4 > span, h5 > span, h6 > span {
  font-weight: 300;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

.btn {
  display: block;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #68c0b5;
}

.hamburger-box {
  width: 35px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 35px;
  height: 4px;
  background-color: #68c0b5;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
          transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "\2190";
}
[dir=rtl] .slick-prev:before {
  content: "\2192";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "\2192";
}
[dir=rtl] .slick-next:before {
  content: "\2190";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2022";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #0c2e40;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #68c0b5;
  opacity: 1;
}

.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.natural-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

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

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 1rem;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 1rem;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 1rem;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 1rem;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 1rem;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 1rem;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 1rem;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

.row.center-xs {
  justify-content: center;
}

.row.end-xs {
  justify-content: flex-end;
}

.row.top-xs {
  align-items: flex-start;
}

.row.middle-xs {
  align-items: center;
}

.row.bottom-xs {
  align-items: flex-end;
}

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }

  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }

  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }

  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }

  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }

  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .row.start-sm {
    justify-content: flex-start;
  }

  .row.center-sm {
    justify-content: center;
  }

  .row.end-sm {
    justify-content: flex-end;
  }

  .row.top-sm {
    align-items: flex-start;
  }

  .row.middle-sm {
    align-items: center;
  }

  .row.bottom-sm {
    align-items: flex-end;
  }

  .row.around-sm {
    justify-content: space-around;
  }

  .row.between-sm {
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 65rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }

  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }

  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }

  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }

  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }

  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }

  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }

  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }

  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }

  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .row.start-md {
    justify-content: flex-start;
  }

  .row.center-md {
    justify-content: center;
  }

  .row.end-md {
    justify-content: flex-end;
  }

  .row.top-md {
    align-items: flex-start;
  }

  .row.middle-md {
    align-items: center;
  }

  .row.bottom-md {
    align-items: flex-end;
  }

  .row.around-md {
    justify-content: space-around;
  }

  .row.between-md {
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }

  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }

  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }

  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }

  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }

  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .row.start-lg {
    justify-content: flex-start;
  }

  .row.center-lg {
    justify-content: center;
  }

  .row.end-lg {
    justify-content: flex-end;
  }

  .row.top-lg {
    align-items: flex-start;
  }

  .row.middle-lg {
    align-items: center;
  }

  .row.bottom-lg {
    align-items: flex-end;
  }

  .row.around-lg {
    justify-content: space-around;
  }

  .row.between-lg {
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }

  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }

  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }

  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }

  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }

  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }

  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }

  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }

  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }

  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .col-xl-offset-12 {
    margin-left: 100%;
  }

  .row.start-xl {
    justify-content: flex-start;
  }

  .row.center-xl {
    justify-content: center;
  }

  .row.end-xl {
    justify-content: flex-end;
  }

  .row.top-xl {
    align-items: flex-start;
  }

  .row.middle-xl {
    align-items: center;
  }

  .row.bottom-xl {
    align-items: flex-end;
  }

  .row.around-xl {
    justify-content: space-around;
  }

  .row.between-xl {
    justify-content: space-between;
  }

  .first-xl {
    order: -1;
  }

  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }

  .row.show-xs-only {
    display: flex !important;
  }

  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }

  .row.show-sm {
    display: flex !important;
  }

  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block !important;
  }

  .row.show-sm-only {
    display: flex !important;
  }

  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block !important;
  }

  .row.show-md {
    display: flex !important;
  }

  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }

  .row.show-md-only {
    display: flex !important;
  }

  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }

  .row.show-lg {
    display: flex !important;
  }

  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }

  .row.show-lg-only {
    display: flex !important;
  }

  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }

  .row.show-xl {
    display: flex !important;
  }

  .hide-xl {
    display: none !important;
  }
}
body {
  font-family: sofia-pro, sans-serif;
  color: #0c2e40;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.3;
}
h1 > span, h2 > span, h3 > span, h4 > span, h5 > span, h6 > span {
  font-weight: 300;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

.btn {
  display: block;
}

html {
  /*scroll-behavior: smooth;*/
}

body {
  background: #e6edf7;
  overflow-x: hidden;
}

.wrapper {
  background: #e6edf7;
  padding-bottom: 1px;
  min-height: 100vh;
}

.main {
  max-width: 1024px;
  padding: 170px 30px 0 30px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .main {
    padding: 85px 15px 15px 15px;
    overflow: hidden;
  }
}

img, svg {
  max-width: 100%;
}

a {
  color: #68c0b5;
  text-decoration: none;
}

input[type=radio], input[type=checkbox] {
  accent-color: #0c2e40;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.btn {
  display: inline-block;
  font-size: 18px;
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  color: #68c0b5;
  background: #0c2e40;
  min-width: 170px;
  padding: 15px 30px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 15px;
  cursor: pointer;
  border: none;
}
.btn:hover {
  color: #fff;
}

.btn--alt, .block-image-text__text .btn,
.btn--gray {
  background: #e6edf7;
  color: #68c0b5;
}
.btn--alt:hover, .block-image-text__text .btn:hover,
.btn--gray:hover {
  color: #0c2e40;
}

.btn--lblue {
  background: #68c0b5;
  color: #0c2e40;
  min-width: 0;
}
.btn--lblue:hover {
  color: #fff;
}

.btn--yellow {
  background: #f9b104;
  color: #e50056;
  min-width: 0;
}
.btn--yellow:hover {
  color: #fff;
}

.btn--pink {
  background: #e50056;
  color: #f9b104;
  min-width: 0;
}
.btn--pink:hover {
  color: #fff;
}

.text-warning {
  color: #ed125f;
}

.invalid-feedback {
  color: #ed125f;
  font-size: 80%;
}

.is-invalid {
  border-color: #ed125f;
}

.btn--sm {
  padding: 7.5px 30px;
}

.btn + .btn {
  margin-left: 15px;
}
@media (max-width: 1023px) {
  .btn + .btn {
    margin-left: 0;
    margin-top: 15px;
  }
}

.spacer-btm {
  margin-bottom: 30px;
}

.btn--center {
  margin-top: 30px;
  width: 170px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

:target {
  position: absolute;
  display: block;
  margin-top: -265px;
  visibility: hidden;
}
@media (max-width: 1023px) {
  :target {
    margin-top: -140px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-flow: column;
  font-weight: 700;
  font-family: sofia-pro-soft, sans-serif;
  background: #e6edf7;
  box-shadow: 0 1px 10px #0c2e40;
}
.header__top {
  display: flex;
  flex-flow: row;
  padding: 0 45px;
  height: 140px;
  z-index: 2;
  align-items: center;
}
@media (max-width: 1023px) {
  .header__top {
    padding: 0 22.5px;
    height: 70px;
  }
}
.header__top h1 {
  flex: 1;
  margin: 0;
  text-align: left;
}
.header__top h1 svg {
  height: 50px;
  width: 300px;
}
@media (max-width: 1023px) {
  .header__top h1 svg {
    height: 30px;
    width: auto;
  }
}
.header__top__button {
  word-break: keep-all;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #68c0b5;
  line-height: 1;
}
@media (max-width: 1023px) {
  .header__top__button {
    font-size: 14px;
  }
}
.header__top__button button {
  z-index: 2;
  outline: none;
  display: flex;
  align-items: center;
}
.header__top__button button > span {
  margin-left: 15px;
}
.header__nav {
  font-size: 28px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
}
.header__nav > ul {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-flow: row;
}
@media (max-width: 1023px) {
  .header__nav > ul {
    flex-flow: column;
  }
}
.header__nav > ul > li {
  flex: 1;
  font-family: sofia-pro-soft, sans-serif;
  font-size: 24px;
  color: #e6edf7;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 0;
}
.header__nav > ul > li a {
  height: 100%;
  color: inherit;
  transition: all 0.1s;
  display: flex;
  flex-flow: column;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.header__nav > ul > li a > svg {
  height: 100px;
  display: block;
  margin: 0 auto 30px auto;
}
@media (max-width: 1023px) {
  .header__nav > ul > li a > svg {
    display: none;
  }
}
.header__nav > ul > li.personal-fitness {
  background: #f9b104;
}
.header__nav > ul > li.group-fitness {
  background: #e50056;
}
.header__nav > ul > li.about {
  background: #0c2e40;
}
.header__nav > ul > li.contact {
  background: #68c0b5;
}
.header__nav > ul > li.calendar {
  background: #0091ba;
}
.header__nav > ul > li:hover {
  background: #e6edf7;
  color: #0c2e40;
}
.header__nav > ul > li:hover svg {
  color: #0c2e40;
}
.header__nav[aria-expanded=true] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  height: auto;
  flex: 1;
}

.nav-is-active .header {
  bottom: 0;
}

.is-top-of-page.nav-is-active header {
  background: #e6edf7;
}
.is-top-of-page .header__top h1 svg .svg-podium,
.is-top-of-page .header__top h1 svg .svg-podium-alt {
  fill: #fff;
}
.is-top-of-page .header__top__button .hamburger {
  color: #fff;
}
.is-top-of-page .header__top__button .hamburger-inner {
  background: #fff;
}
.is-top-of-page .header__top__button .hamburger-inner::before, .is-top-of-page .header__top__button .hamburger-inner::after {
  background: #fff;
}
.is-top-of-page header {
  background: none;
  box-shadow: none;
}
.is-top-of-page.nav-is-active .header__top h1 svg .svg-podium {
  fill: #68c0b5;
}
.is-top-of-page.nav-is-active .header__top h1 svg .svg-podium-alt {
  fill: #0c2e40;
}
.is-top-of-page.nav-is-active .header__top__button .hamburger {
  color: #68c0b5;
}
.is-top-of-page.nav-is-active .header__top__button .hamburger-inner {
  background: #68c0b5;
}
.is-top-of-page.nav-is-active .header__top__button .hamburger-inner::before, .is-top-of-page.nav-is-active .header__top__button .hamburger-inner::after {
  background: #68c0b5;
}

.hero {
  position: relative;
  height: 100vh;
}
.hero__bg {
  height: 100vh;
  background: no-repeat center center;
  background-size: cover;
  width: 100%;
  position: fixed;
  z-index: -1;
}
.hero__content {
  color: #e6edf7;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  text-align: center;
}
.hero__content h1 {
  font-size: 94px;
  line-height: 1.3;
  margin: 0 0 30px 0;
  position: relative;
}
@media (max-width: 1023px) {
  .hero__content h1 {
    font-size: 32px;
  }
}
.hero__content h1 > span {
  font-weight: 300;
}
.hero__content a {
  color: #fff;
  outline: none;
}
.hero__content svg {
  height: 50px;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
@media (max-width: 1023px) {
  .hero__content svg {
    height: 25px;
  }
}
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}

.footer {
  background: #0c2e40;
  color: #e6edf7;
  display: flex;
  padding: 30px 0;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .footer {
    display: block;
    padding: 15px;
  }
}
.footer__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__left > svg {
  height: 180px;
  width: 250px;
  padding: 30px;
}
@media (max-width: 1023px) {
  .footer__left > svg {
    width: 100%;
    max-width: 150px;
    padding: 0 15px;
  }
}
.footer__left > div {
  border-left: 1px solid #68c0b5;
  padding: 15px 30px;
}
.footer__right {
  align-self: flex-end;
  text-align: right;
  padding: 30px;
}
@media (max-width: 1023px) {
  .footer__right {
    padding: 15px;
  }
}
.footer__right__social {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 1023px) {
  .footer__right__social {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
.footer__right__social svg {
  color: #68c0b5;
  margin-left: 15px;
  height: 38px;
  width: 38px;
}
.footer__right__social a:hover svg .svg-fill-foreground {
  fill: #68c0b5 !important;
}
.footer__right__social a:hover svg .svg-fill-background {
  fill: #0c2e40 !important;
}
.footer__right__nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  list-style: none;
  margin: 15px 0 0 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .footer__right__nav {
    display: block;
    font-size: 14px;
    text-align: left;
  }
}
.footer__right__nav > li {
  border-right: 1px solid #e6edf7;
  margin: 0 15px 0 0;
  padding: 0 15px 0 0;
}
@media (max-width: 1023px) {
  .footer__right__nav > li {
    border: none;
    margin: 0;
    padding: 0;
  }
}
.footer__right__nav > li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.footer__right__nav > li > a {
  color: #68c0b5;
}

@media (min-width: 1024px) {
  .block-3col {
    display: flex;
    overflow: hidden;
    margin: -30px -30px 0 0;
  }
}
.block-3col > * {
  margin: 0 0 60px 0;
}
@media (min-width: 1024px) {
  .block-3col > * {
    margin: 30px 30px 60px 0;
    flex: 1;
  }
}
.block-3col__col {
  text-align: center;
  display: flex;
  flex-flow: column;
}
.block-3col__col h2 {
  margin: 0;
}
.block-3col__col .btn {
  margin-top: auto;
  align-self: center;
}

@media (max-width: 1023px) {
  .block-contact {
    margin-bottom: -15px;
  }
}
.block-contact__form, .block-newsletter__form {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.block-contact__form input, .block-newsletter__form input, .block-contact__form textarea, .block-newsletter__form textarea {
  padding: 15px;
  display: block;
  border: 4px solid #f9b104;
  width: 100%;
  margin-bottom: 15px;
  background: #fff;
}
.block-contact__form input::-webkit-input-placeholder, .block-newsletter__form input::-webkit-input-placeholder, .block-contact__form textarea::-webkit-input-placeholder, .block-newsletter__form textarea::-webkit-input-placeholder {
  color: #0c2e40;
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  font-size: 20px;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
}
.block-contact__form input::-moz-placeholder, .block-newsletter__form input::-moz-placeholder, .block-contact__form textarea::-moz-placeholder, .block-newsletter__form textarea::-moz-placeholder {
  color: #0c2e40;
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  font-size: 20px;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
}
.block-contact__form input:-ms-input-placeholder, .block-newsletter__form input:-ms-input-placeholder, .block-contact__form textarea:-ms-input-placeholder, .block-newsletter__form textarea:-ms-input-placeholder {
  color: #0c2e40;
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  font-size: 20px;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
}
.block-contact__form input::-ms-input-placeholder, .block-newsletter__form input::-ms-input-placeholder, .block-contact__form textarea::-ms-input-placeholder, .block-newsletter__form textarea::-ms-input-placeholder {
  color: #0c2e40;
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  font-size: 20px;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
}
.block-contact__form input::placeholder, .block-newsletter__form input::placeholder, .block-contact__form textarea::placeholder, .block-newsletter__form textarea::placeholder {
  color: #0c2e40;
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  font-size: 20px;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
}
.block-contact__form .checkbox, .block-newsletter__form .checkbox {
  display: block;
}
.block-contact__form .checkbox input, .block-newsletter__form .checkbox input {
  display: inline-block;
  width: auto;
}
.block-contact__form button, .block-newsletter__form button {
  margin-top: 15px;
}

.block-content {
  margin: 0 0 60px 0;
  position: relative;
}
.block-content--centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .block-content--centered {
    max-width: 75%;
  }
}

.block-image-text {
  display: flex;
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .block-image-text {
    flex-flow: column-reverse;
  }
}
.block-image-text--image-first {
  flex-flow: row-reverse;
}
@media (max-width: 1023px) {
  .block-image-text--image-first {
    flex-flow: column-reverse;
  }
}
.block-image-text--pink {
  background: #e50056;
}
.block-image-text--yellow {
  background: #f9b104;
}
.block-image-text--lblue {
  background: #68c0b5;
}
.block-image-text--blue {
  background: #0c2e40;
}
.block-image-text__image {
  flex: 1 1 auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .block-image-text__image {
    max-width: 482px;
  }
}
.block-image-text__text {
  flex: 1;
  color: #fff;
  padding: 30px;
}
.block-image-text + .block-image-text {
  margin-top: -60px;
}

.block-newsletter {
  text-align: center;
}
.block-price-list {
  margin-bottom: 60px;
  border: 4px solid #f9b104;
  padding: 15px 30px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .block-price-list {
    padding: 15px;
  }
}
.block-price-list > h3 {
  text-align: center;
  position: relative;
  cursor: pointer;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1023px) {
  .block-price-list > h3 {
    font-size: 16px;
  }
}
.block-price-list > h3 > span {
  color: #68c0b5;
  font-weight: bold;
}
.block-price-list > h3:after {
  content: "+";
  color: #68c0b5;
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 70px;
  line-height: 0;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .block-price-list > h3:after {
    font-size: 32px;
  }
}
.block-price-list > div {
  display: none;
}
@media (max-width: 1023px) {
  .block-price-list .btn--sm {
    font-size: 12px;
    padding: 7.5px;
    white-space: nowrap;
  }
}
.block-price-list[aria-expanded=true] > h3:after {
  content: "\D7";
}
.block-price-list table {
  width: 100%;
}
.block-price-list table td {
  padding: 7.5px 0;
  vertical-align: middle;
}
.block-price-list table td:nth-child(2n) {
  padding: 7.5px;
}

.block-price-list + .block-price-list {
  margin-top: -45px;
}

.block-reveal-panels {
  margin-bottom: 60px;
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 1023px) {
  .block-reveal-panels {
    display: block;
  }
}
.block-reveal-panels__panel {
  flex: 1 1 50%;
  position: relative;
  text-align: center;
}
.block-reveal-panels__panel > img {
  width: 100%;
}
.block-reveal-panels__panel--pink {
  background: #e50056;
}
.block-reveal-panels__panel--lblue {
  background: #68c0b5;
}
.block-reveal-panels__panel--yellow {
  background: #f9b104;
}
.block-reveal-panels__panel--blue {
  background: #0c2e40;
}
.block-reveal-panels__panel > div {
  padding: 30px;
  color: #fff;
  display: flex;
  flex-flow: column;
}
@media (min-width: 1024px) {
  .block-reveal-panels__panel > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.block-reveal-panels__panel > div > h1 {
  margin: 0;
}
.block-reveal-panels__panel > div > .btn {
  margin-top: auto;
  align-self: center;
}
@media (min-width: 1024px) {
  .block-reveal-panels__panel > div > p {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
  }
}
@media (min-width: 1024px) {
  .block-reveal-panels__panel:hover > img {
    opacity: 0;
    transition: opacity 0.5s;
  }
  .block-reveal-panels__panel:hover > div > p {
    opacity: 1;
    visibility: visible;
  }
}

.block-reviews {
  text-align: center;
  margin-bottom: 60px;
}
.block-reviews > h3 {
  font-size: 18px;
  font-family: sofia-pro, sans-serif;
  margin: 0;
}
.block-reviews a {
  color: #0c2e40;
}
.block-reviews__review {
  font-family: sofia-pro-soft, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 7.5px;
}
.block-reviews__review blockquote {
  margin: 15px 0;
}

.block-social {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.block-social svg {
  height: 38px;
  width: 38px;
  margin: 3.75px;
}
.block-social a:hover svg .svg-fill-foreground {
  fill: #68c0b5 !important;
}
.block-social a:hover svg .svg-fill-background {
  fill: #0c2e40 !important;
}

.block-spacer-bar {
  border: 0;
  height: 4px;
  background: #68c0b5;
  margin: 0 auto 60px auto;
  max-width: 400px;
  border-radius: 2px;
}

.calendar-popup {
  text-align: center;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fff;
  width: 600px;
  overflow: auto;
  min-width: 50vw;
  max-width: 90vw;
}

.calendar-popup__content {
  margin-bottom: 30px;
  text-align: center;
  background: #fff;
}

.calendar-popup__content__buttons a {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .calendar-popup__content__buttons {
    display: flex;
  }

  .calendar-popup__content__buttons form + a {
    margin-left: 15px;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .fc-event-title {
    font-size: 80%;
    white-space: normal;
    word-break: normal;
  }
}
.block-par-q__form label {
  display: block;
}
.block-par-q__form select, .block-par-q__form input[type=number], .block-par-q__form input[type=email], .block-par-q__form input[type=date], .block-par-q__form input[type=tel], .block-par-q__form input[type=text], .block-par-q__form textarea {
  width: 100%;
  background: #fff;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border-color: #0c2e40;
}
.block-par-q__form .row {
  margin-left: -1rem;
  margin-right: -1rem;
  width: auto;
}
.block-par-q__form fieldset {
  margin-bottom: 15px;
  border: none;
  padding: 0;
}
.block-par-q__form legend {
  padding: 0;
}
.block-par-q__form label.checkbox,
.block-par-q__form .radio-inline label {
  display: inline-flex;
  margin-top: 10px;
  margin-right: 10px;
}
.block-par-q__form label.checkbox input,
.block-par-q__form .radio-inline label input {
  margin-right: 10px;
}
.block-par-q__signature {
  background: #fff;
  width: 100%;
  aspect-ratio: 2/1;
  border: 1px solid WindowFrame;
}
.block-par-q__signature__clear {
  display: block;
  margin-top: 10px;
}

.page-slug-par-q header {
  position: absolute;
}
@media (max-width: 768px) {
  .page-slug-par-q .main {
    padding-left: 0;
    padding-right: 0;
  }
}
/*# sourceMappingURL=site.css.map*/