@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap);
@charset "UTF-8";
*, h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif !important;
  outline: 0; }

/*!
Mustard UI v0.0.5
MIT License
https://mustard-ui.com
*/
* {
  margin: 0;
  padding: 0; }

html {
  box-sizing: border-box; }

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #ffffff; }

main {
  flex: 1; }

.float-left {
  float: left; }

.float-right {
  float: right; }

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

.clear-fix::after {
  clear: both; }

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

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

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

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0; }

.container-small {
  max-width: 768px; }

.container-large {
  max-width: 1740px; }

.display-flex {
  display: flex;
  justify-content: space-around; }

.display-none {
  display: none; }

.display-sm-up {
  display: none; }
  @media (min-width: 425px) {
    .display-sm-up {
      display: initial; } }

.display-md-up {
  display: none; }
  @media (min-width: 768px) {
    .display-md-up {
      display: initial; } }

.display-lg-up {
  display: none; }
  @media (min-width: 1024px) {
    .display-lg-up {
      display: initial; } }

.display-xlg-up {
  display: none; }
  @media (min-width: 1440px) {
    .display-xlg-up {
      display: initial; } }

.display-sm-down {
  display: none; }
  @media (max-width: 424px) {
    .display-sm-down {
      display: initial; } }

.display-md-down {
  display: none; }
  @media (max-width: 767px) {
    .display-md-down {
      display: initial; } }

.display-lg-down {
  display: none; }
  @media (max-width: 1023px) {
    .display-lg-down {
      display: initial; } }

.display-xlg-down {
  display: none; }
  @media (max-width: 1439px) {
    .display-xlg-down {
      display: initial; } }

.display-sm-to-md {
  display: none; }
  @media (min-width: 425px) and (max-width: 767px) {
    .display-sm-to-md {
      display: initial; } }

.display-sm-to-lg {
  display: none; }
  @media (min-width: 425px) and (max-width: 1023px) {
    .display-sm-to-lg {
      display: initial; } }

.display-sm-to-xlg {
  display: none; }
  @media (min-width: 425px) and (max-width: 1439px) {
    .display-sm-to-xlg {
      display: initial; } }

.display-md-to-lg {
  display: none; }
  @media (min-width: 768px) and (max-width: 1023px) {
    .display-md-to-lg {
      display: initial; } }

.display-md-to-xlg {
  display: none; }
  @media (min-width: 768px) and (max-width: 1439px) {
    .display-md-to-xlg {
      display: initial; } }

.display-lg-to-xlg {
  display: none; }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .display-lg-to-xlg {
      display: initial; } }

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px; }
  .row.row-reverse {
    flex-direction: row-reverse; }
  .row .col {
    flex-grow: 1;
    flex-basis: 100%;
    max-width: 100%;
    padding: 5px 5px; }
    .row .col.col-reverse {
      flex-direction: column-reverse; }
  .row .col-xs-1 {
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .row .col-xs-2 {
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .row .col-xs-3 {
    flex-basis: 25%;
    max-width: 25%; }
  .row .col-xs-4 {
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .row .col-xs-5 {
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .row .col-xs-6 {
    flex-basis: 50%;
    max-width: 50%; }
  .row .col-xs-7 {
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .row .col-xs-8 {
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .row .col-xs-9 {
    flex-basis: 75%;
    max-width: 75%; }
  .row .col-xs-10 {
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .row .col-xs-11 {
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .row .col-xs-12 {
    flex-basis: 100%;
    max-width: 100%; }
  .row .col-xs-offset-1 {
    margin-left: 8.33333%; }
  .row .col-xs-offset-2 {
    margin-left: 16.66667%; }
  .row .col-xs-offset-3 {
    margin-left: 25%; }
  .row .col-xs-offset-4 {
    margin-left: 33.33333%; }
  .row .col-xs-offset-5 {
    margin-left: 41.66667%; }
  .row .col-xs-offset-6 {
    margin-left: 50%; }
  .row .col-xs-offset-7 {
    margin-left: 58.33333%; }
  .row .col-xs-offset-8 {
    margin-left: 66.66667%; }
  .row .col-xs-offset-9 {
    margin-left: 75%; }
  .row .col-xs-offset-10 {
    margin-left: 83.33333%; }
  .row .col-xs-offset-11 {
    margin-left: 91.66667%; }
  .row .col-xs-offset-12 {
    margin-left: 100%; }
  @media (min-width: 425px) {
    .row .col-sm-1 {
      flex-basis: 8.33333%;
      max-width: 8.33333%; }
    .row .col-sm-2 {
      flex-basis: 16.66667%;
      max-width: 16.66667%; }
    .row .col-sm-3 {
      flex-basis: 25%;
      max-width: 25%; }
    .row .col-sm-4 {
      flex-basis: 33.33333%;
      max-width: 33.33333%; }
    .row .col-sm-5 {
      flex-basis: 41.66667%;
      max-width: 41.66667%; }
    .row .col-sm-6 {
      flex-basis: 50%;
      max-width: 50%; }
    .row .col-sm-7 {
      flex-basis: 58.33333%;
      max-width: 58.33333%; }
    .row .col-sm-8 {
      flex-basis: 66.66667%;
      max-width: 66.66667%; }
    .row .col-sm-9 {
      flex-basis: 75%;
      max-width: 75%; }
    .row .col-sm-10 {
      flex-basis: 83.33333%;
      max-width: 83.33333%; }
    .row .col-sm-11 {
      flex-basis: 91.66667%;
      max-width: 91.66667%; }
    .row .col-sm-12 {
      flex-basis: 100%;
      max-width: 100%; }
    .row .col-sm-offset-1 {
      margin-left: 8.33333%; }
    .row .col-sm-offset-2 {
      margin-left: 16.66667%; }
    .row .col-sm-offset-3 {
      margin-left: 25%; }
    .row .col-sm-offset-4 {
      margin-left: 33.33333%; }
    .row .col-sm-offset-5 {
      margin-left: 41.66667%; }
    .row .col-sm-offset-6 {
      margin-left: 50%; }
    .row .col-sm-offset-7 {
      margin-left: 58.33333%; }
    .row .col-sm-offset-8 {
      margin-left: 66.66667%; }
    .row .col-sm-offset-9 {
      margin-left: 75%; }
    .row .col-sm-offset-10 {
      margin-left: 83.33333%; }
    .row .col-sm-offset-11 {
      margin-left: 91.66667%; }
    .row .col-sm-offset-12 {
      margin-left: 100%; } }
  @media (min-width: 768px) {
    .row .col-md-1 {
      flex-basis: 8.33333%;
      max-width: 8.33333%; }
    .row .col-md-2 {
      flex-basis: 16.66667%;
      max-width: 16.66667%; }
    .row .col-md-3 {
      flex-basis: 25%;
      max-width: 25%; }
    .row .col-md-4 {
      flex-basis: 33.33333%;
      max-width: 33.33333%; }
    .row .col-md-5 {
      flex-basis: 41.66667%;
      max-width: 41.66667%; }
    .row .col-md-6 {
      flex-basis: 50%;
      max-width: 50%; }
    .row .col-md-7 {
      flex-basis: 58.33333%;
      max-width: 58.33333%; }
    .row .col-md-8 {
      flex-basis: 66.66667%;
      max-width: 66.66667%; }
    .row .col-md-9 {
      flex-basis: 75%;
      max-width: 75%; }
    .row .col-md-10 {
      flex-basis: 83.33333%;
      max-width: 83.33333%; }
    .row .col-md-11 {
      flex-basis: 91.66667%;
      max-width: 91.66667%; }
    .row .col-md-12 {
      flex-basis: 100%;
      max-width: 100%; }
    .row .col-md-offset-1 {
      margin-left: 8.33333%; }
    .row .col-md-offset-2 {
      margin-left: 16.66667%; }
    .row .col-md-offset-3 {
      margin-left: 25%; }
    .row .col-md-offset-4 {
      margin-left: 33.33333%; }
    .row .col-md-offset-5 {
      margin-left: 41.66667%; }
    .row .col-md-offset-6 {
      margin-left: 50%; }
    .row .col-md-offset-7 {
      margin-left: 58.33333%; }
    .row .col-md-offset-8 {
      margin-left: 66.66667%; }
    .row .col-md-offset-9 {
      margin-left: 75%; }
    .row .col-md-offset-10 {
      margin-left: 83.33333%; }
    .row .col-md-offset-11 {
      margin-left: 91.66667%; }
    .row .col-md-offset-12 {
      margin-left: 100%; } }
  @media (min-width: 1024px) {
    .row .col-lg-1 {
      flex-basis: 8.33333%;
      max-width: 8.33333%; }
    .row .col-lg-2 {
      flex-basis: 16.66667%;
      max-width: 16.66667%; }
    .row .col-lg-3 {
      flex-basis: 25%;
      max-width: 25%; }
    .row .col-lg-4 {
      flex-basis: 33.33333%;
      max-width: 33.33333%; }
    .row .col-lg-5 {
      flex-basis: 41.66667%;
      max-width: 41.66667%; }
    .row .col-lg-6 {
      flex-basis: 50%;
      max-width: 50%; }
    .row .col-lg-7 {
      flex-basis: 58.33333%;
      max-width: 58.33333%; }
    .row .col-lg-8 {
      flex-basis: 66.66667%;
      max-width: 66.66667%; }
    .row .col-lg-9 {
      flex-basis: 75%;
      max-width: 75%; }
    .row .col-lg-10 {
      flex-basis: 83.33333%;
      max-width: 83.33333%; }
    .row .col-lg-11 {
      flex-basis: 91.66667%;
      max-width: 91.66667%; }
    .row .col-lg-12 {
      flex-basis: 100%;
      max-width: 100%; }
    .row .col-lg-offset-1 {
      margin-left: 8.33333%; }
    .row .col-lg-offset-2 {
      margin-left: 16.66667%; }
    .row .col-lg-offset-3 {
      margin-left: 25%; }
    .row .col-lg-offset-4 {
      margin-left: 33.33333%; }
    .row .col-lg-offset-5 {
      margin-left: 41.66667%; }
    .row .col-lg-offset-6 {
      margin-left: 50%; }
    .row .col-lg-offset-7 {
      margin-left: 58.33333%; }
    .row .col-lg-offset-8 {
      margin-left: 66.66667%; }
    .row .col-lg-offset-9 {
      margin-left: 75%; }
    .row .col-lg-offset-10 {
      margin-left: 83.33333%; }
    .row .col-lg-offset-11 {
      margin-left: 91.66667%; }
    .row .col-lg-offset-12 {
      margin-left: 100%; } }
  @media (min-width: 1440px) {
    .row .col-xlg-1 {
      flex-basis: 8.33333%;
      max-width: 8.33333%; }
    .row .col-xlg-2 {
      flex-basis: 16.66667%;
      max-width: 16.66667%; }
    .row .col-xlg-3 {
      flex-basis: 25%;
      max-width: 25%; }
    .row .col-xlg-4 {
      flex-basis: 33.33333%;
      max-width: 33.33333%; }
    .row .col-xlg-5 {
      flex-basis: 41.66667%;
      max-width: 41.66667%; }
    .row .col-xlg-6 {
      flex-basis: 50%;
      max-width: 50%; }
    .row .col-xlg-7 {
      flex-basis: 58.33333%;
      max-width: 58.33333%; }
    .row .col-xlg-8 {
      flex-basis: 66.66667%;
      max-width: 66.66667%; }
    .row .col-xlg-9 {
      flex-basis: 75%;
      max-width: 75%; }
    .row .col-xlg-10 {
      flex-basis: 83.33333%;
      max-width: 83.33333%; }
    .row .col-xlg-11 {
      flex-basis: 91.66667%;
      max-width: 91.66667%; }
    .row .col-xlg-12 {
      flex-basis: 100%;
      max-width: 100%; }
    .row .col-xlg-offset-1 {
      margin-left: 8.33333%; }
    .row .col-xlg-offset-2 {
      margin-left: 16.66667%; }
    .row .col-xlg-offset-3 {
      margin-left: 25%; }
    .row .col-xlg-offset-4 {
      margin-left: 33.33333%; }
    .row .col-xlg-offset-5 {
      margin-left: 41.66667%; }
    .row .col-xlg-offset-6 {
      margin-left: 50%; }
    .row .col-xlg-offset-7 {
      margin-left: 58.33333%; }
    .row .col-xlg-offset-8 {
      margin-left: 66.66667%; }
    .row .col-xlg-offset-9 {
      margin-left: 75%; }
    .row .col-xlg-offset-10 {
      margin-left: 83.33333%; }
    .row .col-xlg-offset-11 {
      margin-left: 91.66667%; }
    .row .col-xlg-offset-12 {
      margin-left: 100%; } }

.section,
section {
  padding: 30px; }
  .section :last-child,
  section :last-child {
    margin-bottom: 0; }

.section-primary {
  background: #ffca28; }

.section-secondary {
  background: #f5f5f5; }

.section-tertiary {
  background: #ffffff; }

blockquote {
  display: block;
  margin: 15px 15px 30px;
  padding: 15px;
  font-size: 18px;
  font-weight: 400;
  border-left: 4px solid #000;
  background: #ffffff; }
  blockquote :last-child {
    margin-bottom: 0; }

.button,
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  display: inline-block;
  height: 40px;
  margin: 0 2px 15px;
  padding: 0 20px;
  width: auto;
  background: none;
  overflow: visible;
  appearance: none;
  transition: all .1s ease-out;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  line-height: 40px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px; }
  .button:focus,
  button:focus,
  input[type='button']:focus,
  input[type='reset']:focus,
  input[type='submit']:focus {
    outline: none; }
  .button:focus, .button:hover,
  button:focus,
  button:hover,
  input[type='button']:focus,
  input[type='button']:hover,
  input[type='reset']:focus,
  input[type='reset']:hover,
  input[type='submit']:focus,
  input[type='submit']:hover {
    opacity: 0.85;
    cursor: pointer;
    transform: scale(1.025); }
  .button:active,
  button:active,
  input[type='button']:active,
  input[type='reset']:active,
  input[type='submit']:active {
    opacity: 1;
    transform: scale(1); }
  .button:disabled,
  button:disabled,
  input[type='button']:disabled,
  input[type='reset']:disabled,
  input[type='submit']:disabled {
    opacity: 0.5; }
    .button:disabled:hover,
    button:disabled:hover,
    input[type='button']:disabled:hover,
    input[type='reset']:disabled:hover,
    input[type='submit']:disabled:hover {
      cursor: not-allowed; }

.button-primary {
  background-color: #000;
  color: #ffffff;
  border-color: #000; }

.button-primary-outlined {
  background-color: #ffffff;
  color: #000;
  border-color: #000; }

.button-primary-text {
  color: #000;
  border-color: transparent; }

.button-success {
  background-color: #000;
  color: #ffffff;
  border-color: #000; }

.button-success-outlined {
  background-color: #ffffff;
  color: #000;
  border-color: #000; }

.button-success-text {
  color: #000;
  border-color: transparent; }

.button-info {
  background-color: #9e9e9e;
  color: #ffffff;
  border-color: #9e9e9e; }

.button-info-outlined {
  background-color: #ffffff;
  color: #9e9e9e;
  border-color: #9e9e9e; }

.button-info-text {
  color: #9e9e9e;
  border-color: transparent; }

.button-warning {
  background-color: #ffb300;
  color: #ffffff;
  border-color: #ffb300; }

.button-warning-outlined {
  background-color: #ffffff;
  color: #ffb300;
  border-color: #ffb300; }

.button-warning-text {
  color: #ffb300;
  border-color: transparent; }

.button-danger {
  background-color: #f44336;
  color: #ffffff;
  border-color: #f44336; }

.button-danger-outlined {
  background-color: #ffffff;
  color: #f44336;
  border-color: #f44336; }

.button-danger-text {
  color: #f44336;
  border-color: transparent; }

.button-round {
  border-radius: 24px; }

.button-large {
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
  font-size: 16px; }

.button-small {
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  font-size: 12px; }

pre {
  display: block;
  margin: 15px 0;
  padding: 10px 15px;
  border-left: 4px solid #000;
  background: #f5f5f5;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 15px;
  color: #212121;
  white-space: normal;
  overflow-x: auto; }

code {
  background: #f5f5f5;
  color: #212121;
  font-family: Monaco, 'Courier New', Courier, monospace;
  white-space: pre; }

.form-control {
  position: relative;
  margin-bottom: 10px; }

.form-control-group {
  display: flex;
  justify-content: flex-start; }
  .form-control-group .form-control {
    flex: 1;
    padding-right: 15px; }
    .form-control-group .form-control:last-of-type {
      padding-right: 0; }
    .form-control-group .form-control.grow-1x {
      flex-grow: 1; }
    .form-control-group .form-control.grow-2x {
      flex-grow: 2; }
    .form-control-group .form-control.grow-3x {
      flex-grow: 3; }

.validation-error {
  margin-top: 2px;
  font-size: 12px;
  color: #f44336; }

label {
  font-size: 14px;
  font-weight: 400; }

input[type="text"],
input[type="password"],
select {
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px;
  line-height: 20px;
  font-size: 16px;
  font-weight: inherit;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #bdbdbd; }
  input[type="text"]::placeholder,
  input[type="password"]::placeholder,
  select::placeholder {
    color: #9e9e9e; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  select:focus {
    outline: none;
    border-color: #000; }
  input[type="text"].invalid,
  input[type="password"].invalid,
  select.invalid {
    border-color: #f44336; }

fieldset {
  margin: 15px 0;
  padding: 15px;
  font-size: 14px;
  border: 1px solid #bdbdbd;
  border-radius: 5px; }
  fieldset legend {
    padding: 0 5px; }

input[type="checkbox"],
input[type="radio"] {
  margin-right: 10px; }

select {
  background: #ffffff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#bdbdbd" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
  padding-right: 30px; }
  select:hover {
    cursor: pointer; }
  select:disabled {
    opacity: 0.5; }
  select:focus {
    background: #ffffff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#000" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat; }

textarea {
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px 15px;
  min-height: 100px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #bdbdbd;
  border-radius: 5px; }
  textarea::placeholder {
    color: #9e9e9e; }
  textarea:focus {
    border-color: #000;
    outline: none; }
  textarea.invalid {
    border-color: #ef9a9a; }

a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  transition: opacity .1s ease-out; }
  a:focus, a:hover {
    opacity: 0.75; }
  a:active {
    opacity: 1; }

ul,
ol,
dl {
  list-style: none;
  margin-bottom: 15px; }

ul {
  list-style: circle inside; }

ol {
  list-style: decimal inside; }

table {
  margin: 15px 0;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse; }
  table tr {
    border-bottom: 1px solid #eeeeee;
    text-align: left; }
  table thead th {
    padding: 15px;
    font-weight: 300;
    color: #9e9e9e; }
  table tbody td {
    padding: 15px;
    font-weight: 300; }

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: #424242; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: #424242;
  margin: 0 0 10px;
  font-weight: 600; }

.h1,
h1 {
  font-size: 48px;
  line-height: 60px; }

.h2,
h2 {
  font-size: 40px;
  line-height: 52px; }

.h3,
h3 {
  font-size: 32px;
  line-height: 44px; }

.h4,
h4 {
  font-size: 28px;
  line-height: 40px; }

.h5,
h5 {
  font-size: 24px;
  line-height: 36px; }

.h6,
h6 {
  font-size: 20px;
  line-height: 32px; }

p {
  margin-bottom: 15px; }
  p.magnify {
    font-size: 17.6px;
    line-height: 1.8; }

strong,
b {
  font-weight: 600; }

.alert {
  margin: 15px 0;
  padding: 15px;
  border-radius: 5px; }

.alert-danger {
  background: #ffebee; }

.alert-info {
  background: #e3f2fd; }

.alert-warning {
  background: #fff8e1; }

.alert-success {
  background: #e8f5e9; }

.breadcrumbs {
  display: flex;
  list-style: none;
  font-size: 14px; }
  .breadcrumbs li {
    display: block; }
    .breadcrumbs li::after {
      display: inline-block;
      content: "/";
      padding: 0 5px;
      color: #9e9e9e; }
    .breadcrumbs li:last-of-type::after {
      display: none; }

.card {
  margin: 15px;
  padding: 30px;
  background: #ffffff;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(224, 224, 224, 0.5); }

.card-title {
  font-size: 24px;
  margin-bottom: 5px; }

.card-actions {
  display: flex;
  align-items: center;
  margin-top: 30px;
  list-style: none;
  justify-content: space-around; }
  .card-actions > * {
    margin-bottom: 0; }

.footer,
footer {
  padding: 30px;
  width: 100%;
  background: #757575; }
  .footer .copyright,
  footer .copyright {
    margin: 0;
    padding-top: 30px;
    font-size: 14px;
    color: #ffffff;
    border-top: 1px solid #9e9e9e; }
    .footer .copyright a,
    footer .copyright a {
      color: #bdbdbd; }

.footer-text p {
  color: #ffffff; }

.footer-links-category {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px; }

.footer-links {
  list-style: none; }
  .footer-links li {
    margin-top: 5px; }
  .footer-links a {
    color: #bdbdbd; }

header,
.header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  height: 100vh;
  background: #fff; }
  header .title,
  .header .title {
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    color: #424242;
    text-align: center; }
    @media (min-width: 768px) {
      header .title,
      .header .title {
        font-size: 60px;
        line-height: 60px; } }
  header .subtitle,
  .header .subtitle {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #424242;
    text-align: center; }
    @media (min-width: 768px) {
      header .subtitle,
      .header .subtitle {
        font-size: 25.2px;
        line-height: 25.2px; } }
  header .disclaimer,
  .header .disclaimer {
    font-size: 12px;
    color: #424242;
    text-align: center; }
  header .scroll-down,
  .header .scroll-down {
    opacity: 1;
    -webkit-transition: all .5s ease-in 3s;
    transition: all .5s ease-in 3s; }
  header .scroll-down,
  .header .scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 45px;
    left: 50%;
    margin-left: -16px;
    width: 32px;
    height: 32px;
    border: 2px solid #424242;
    border-radius: 50%;
    animation: bounce 2s infinite 2s;
    transition: all .2s ease-in; }
    header .scroll-down::before,
    .header .scroll-down::before {
      display: block;
      position: relative;
      bottom: 2px;
      content: '';
      transform: rotate(-45deg);
      width: 12px;
      height: 12px;
      border: 2px solid #424242;
      border-width: 0px 0 2px 2px; }

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: translateY(0); }
  40% {
    transform: translateY(-10px); }
  60% {
    transform: translateY(-5px); } }

.menu {
  display: inline-block;
  list-style: none;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(158, 158, 158, 0.5); }
  .menu li a {
    display: block;
    padding: 10px 30px;
    border-bottom: 1px solid #eeeeee; }
    .menu li a:focus, .menu li a:hover {
      background: #fafafa; }

.modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(97, 97, 97, 0.5);
  z-index: 10; }

.modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 540px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(117, 117, 117, 0.5); }

.modal-head {
  padding: 10px 15px; }
  .modal-head .modal-title {
    font-size: 24px; }

.modal-body {
  flex: 1;
  padding: 30px 15px;
  background: #eeeeee; }

.modal-footer {
  padding: 15px; }
  .modal-footer > * {
    margin-bottom: 0; }

nav,
.nav {
  padding: 0 15px;
  height: 60px;
  width: 100%;
  background: #fff; }
  nav a,
  .nav a {
    display: block;
    color: #424242; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px; }

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 32px;
  line-height: 32px; }

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  height: 100%; }
  @media (min-width: 768px) {
    .nav-links {
      display: flex; } }
  .nav-links li,
  .nav-links a {
    height: 100%; }
  .nav-links a {
    display: flex;
    align-items: center;
    padding: 0 30px; }
    .nav-links a:active {
      color: #000; }
    .nav-links a.active {
      border-bottom: 4px solid #000; }

.mobile-menu-toggle {
  display: block;
  position: relative;
  height: 20px;
  width: 26px; }
  @media (min-width: 768px) {
    .mobile-menu-toggle {
      display: none; } }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    cursor: pointer; }
  .mobile-menu-toggle::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 4px;
    content: '';
    background: #424242;
    border-radius: 4px;
    box-shadow: 0 8px 0 0 #424242, 0 16px 0 0 #424242; }

.pagination {
  display: flex;
  list-style: none;
  margin: 15px 0; }
  .pagination li {
    margin: 0 5px; }
    .pagination li a {
      display: block;
      padding: 5px 10px;
      border-radius: 5px;
      background: #ffffff;
      border: 1px solid #e0e0e0; }
      .pagination li a.active, .pagination li a:focus, .pagination li a:hover {
        opacity: 1;
        border-color: #000; }
      .pagination li a.active {
        background: #000;
        color: #ffffff; }
      .pagination li a:active {
        transform: scale(0.95); }

.panel {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(224, 224, 224, 0.5); }

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px 15px;
  background: #fafafa; }
  .panel-head .panel-title {
    font-size: 28px; }

.panel-body {
  padding: 30px 15px; }

.panel-footer {
  padding: 15px;
  background: #fafafa; }
  .panel-footer > * {
    margin-bottom: 0; }

.pricing-table .package {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 15px;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  text-align: center;
  background: #ffffff; }
  .pricing-table .package.featured {
    border-color: #000;
    border-width: 2px; }
    .pricing-table .package.featured .package-name {
      color: #000; }
  .pricing-table .package hr {
    border: 0;
    border-bottom: 1px solid #e0e0e0;
    height: 1px; }
  .pricing-table .package .package-name {
    font-weight: 700;
    text-transform: uppercase; }
  .pricing-table .package .price {
    margin: 15px 0 0 0;
    font-size: 36px;
    line-height: 1.2; }
  .pricing-table .package .price-disclaimer {
    font-size: 12px; }
  .pricing-table .package .features {
    flex: 1;
    padding: 15px;
    list-style: none; }
    .pricing-table .package .features li {
      margin-bottom: 5px; }

.progress-bar {
  position: relative;
  margin: 15px 0;
  height: 20px;
  background: #eeeeee;
  border-radius: 5px;
  overflow: hidden; }
  .progress-bar > span {
    display: block;
    position: absolute;
    height: 100%;
    border-radius: 4px;
    overflow: hidden; }
    .progress-bar > span.progress-bar-green {
      background: #66bb6a; }
    .progress-bar > span.progress-bar-blue {
      background: #42a5f5; }
    .progress-bar > span.progress-bar-red {
      background: #ef5350; }
  .progress-bar.striped > span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    overflow: hidden; }
  .progress-bar.animated > span:after {
    animation: move 2s linear infinite; }

@keyframes move {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 50px 50px; } }

.sidebar {
  padding: 15px; }

.sidebar-left {
  border-right: 1px solid #e0e0e0; }

.sidebar-right {
  border-left: 1px solid #e0e0e0; }

.sidebar-category {
  padding: 10px;
  font-size: 18px;
  color: #757575;
  border-bottom: 1px solid #e0e0e0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path d="M9.4 3.6l5.1 6.9L19.5 3.6" fill="#bdbdbd"/></svg>') center right no-repeat; }
  .sidebar-category:focus, .sidebar-category:hover {
    cursor: pointer;
    opacity: 0.75; }

.sidebar-links {
  list-style: none;
  padding-left: 10px; }
  .sidebar-links a {
    display: block;
    padding: 5px 10px; }
    .sidebar-links a.active {
      font-weight: 700; }

.stepper {
  margin: 30px 15px; }
  .stepper .step {
    position: relative;
    padding: 0 30px;
    margin-bottom: 30px;
    border-left: 1px solid #bdbdbd; }
    .stepper .step:last-of-type {
      border: none; }
    .stepper .step .step-number {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      left: -18px;
      height: 36px;
      width: 36px;
      z-index: 1;
      font-weight: 600;
      color: #ffffff;
      background: #8bc34a;
      border-radius: 50%;
      box-shadow: 0 2px 4px #e0e0e0; }
    .stepper .step .step-title {
      margin: 0;
      font-weight: 600;
      font-size: 20px;
      line-height: 36px; }

.tabs {
  list-style: none;
  display: flex;
  margin: 15px 0 30px; }
  .tabs .tab {
    padding: 8px 45px;
    border-bottom: 1px solid #e0e0e0;
    color: #bdbdbd; }
    .tabs .tab.active {
      border-top: 2px solid #000;
      border-left: 1px solid #e0e0e0;
      border-right: 1px solid #e0e0e0;
      border-bottom: none;
      color: #757575; }
    .tabs .tab:focus, .tabs .tab:hover {
      opacity: 1;
      color: #424242; }

.tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none; }
  .tags .tag {
    margin-right: 5px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    color: #ffffff;
    background: #9e9e9e;
    box-shadow: 0 2px 4px #eeeeee; }
    .tags .tag a {
      display: block;
      color: #ffffff; }
  .tags .tag-rounded {
    border-radius: 16px; }
  .tags .tag-blue {
    background: #2196f3; }
  .tags .tag-red {
    background: #f44336; }
  .tags .tag-green {
    background: #000; }
  .tags .tag-orange {
    background: #ff9800; }

.tooltip {
  display: inline-block;
  position: relative;
  border-bottom: 1px dashed #bdbdbd; }
  .tooltip:focus, .tooltip:hover {
    cursor: pointer; }
    .tooltip:focus .tooltip-text, .tooltip:hover .tooltip-text {
      display: block; }

.tooltip-text {
  display: none;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  padding: 10px 15px;
  color: #ffffff;
  text-align: center;
  background: #424242;
  border-radius: 5px;
  box-shadow: 0 2px 4px #9e9e9e; }
  .tooltip-text::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #424242 transparent transparent; }

/*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face {
  font-family: "Ionicons";
  src: url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.0");
  src: url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.woff?v=2.0.0") format("woff"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal; }

.image-gallery-fullscreen-button::before,
.image-gallery-play-button::before,
.image-gallery-left-nav::before,
.image-gallery-right-nav::before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.image-gallery {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .image-gallery.fullscreen-modal {
    background: #000;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 5; }
    .image-gallery.fullscreen-modal .image-gallery-content {
      top: 50%;
      transform: translateY(-50%); }

.image-gallery-content {
  position: relative;
  line-height: 0;
  top: 0; }
  .image-gallery-content.fullscreen {
    background: #000; }
    .image-gallery-content.fullscreen .image-gallery-slide {
      background: #000; }

.image-gallery-slide-wrapper {
  position: relative; }
  .image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
    display: inline-block;
    width: calc(100% - 113px); }
    @media (max-width: 768px) {
      .image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
        width: calc(100% - 84px); } }
  .image-gallery-slide-wrapper.image-gallery-rtl {
    direction: rtl; }

.image-gallery-fullscreen-button,
.image-gallery-play-button,
.image-gallery-left-nav,
.image-gallery-right-nav {
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  position: absolute;
  z-index: 4; }
  .image-gallery-fullscreen-button::before,
  .image-gallery-play-button::before,
  .image-gallery-left-nav::before,
  .image-gallery-right-nav::before {
    color: #fff;
    line-height: .7;
    text-shadow: 0 2px 2px #1a1a1a;
    transition: color .2s ease-out; }
  .image-gallery-fullscreen-button:hover::before,
  .image-gallery-play-button:hover::before,
  .image-gallery-left-nav:hover::before,
  .image-gallery-right-nav:hover::before {
    color: #337ab7; }
    @media (max-width: 768px) {
      .image-gallery-fullscreen-button:hover::before,
      .image-gallery-play-button:hover::before,
      .image-gallery-left-nav:hover::before,
      .image-gallery-right-nav:hover::before {
        color: #fff; } }

.image-gallery-fullscreen-button,
.image-gallery-play-button {
  bottom: 0; }
  .image-gallery-fullscreen-button::before,
  .image-gallery-play-button::before {
    font-size: 2.7em;
    padding: 15px 20px;
    text-shadow: 0 1px 1px #1a1a1a; }
    @media (max-width: 768px) {
      .image-gallery-fullscreen-button::before,
      .image-gallery-play-button::before {
        font-size: 2.4em; } }
    @media (max-width: 480px) {
      .image-gallery-fullscreen-button::before,
      .image-gallery-play-button::before {
        font-size: 2em; } }
  .image-gallery-fullscreen-button:hover::before,
  .image-gallery-play-button:hover::before {
    color: #fff;
    transform: scale(1.1); }
    @media (max-width: 768px) {
      .image-gallery-fullscreen-button:hover::before,
      .image-gallery-play-button:hover::before {
        transform: none; } }

.image-gallery-fullscreen-button {
  right: 0; }
  .image-gallery-fullscreen-button::before {
    content: "\F386"; }
  .image-gallery-fullscreen-button.active::before {
    content: "\F37D"; }
  .image-gallery-fullscreen-button.active:hover::before {
    transform: scale(0.9); }

.image-gallery-play-button {
  left: 0; }
  .image-gallery-play-button::before {
    content: "\F488"; }
  .image-gallery-play-button.active::before {
    content: "\F478"; }

.image-gallery-left-nav,
.image-gallery-right-nav {
  color: #fff;
  font-size: 5em;
  padding: 50px 15px;
  top: 50%;
  transform: translateY(-50%); }
  .image-gallery-left-nav[disabled],
  .image-gallery-right-nav[disabled] {
    cursor: disabled;
    opacity: .6;
    pointer-events: none; }
  @media (max-width: 768px) {
    .image-gallery-left-nav,
    .image-gallery-right-nav {
      font-size: 3.4em;
      padding: 20px 15px; } }
  @media (max-width: 480px) {
    .image-gallery-left-nav,
    .image-gallery-right-nav {
      font-size: 2.4em;
      padding: 0 15px; } }

.image-gallery-left-nav {
  left: 0; }
  .image-gallery-left-nav::before {
    content: "\F3D2"; }

.image-gallery-right-nav {
  right: 0; }
  .image-gallery-right-nav::before {
    content: "\F3D3"; }

.image-gallery-slides {
  line-height: 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap; }

.image-gallery-slide {
  background: #fff;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }
  .image-gallery-slide.center {
    position: relative; }
  .image-gallery-slide img {
    width: 100%; }
  .image-gallery-slide .image-gallery-description {
    background: rgba(0, 0, 0, 0.4);
    bottom: 70px;
    color: #fff;
    left: 0;
    line-height: 1;
    padding: 10px 20px;
    position: absolute;
    white-space: normal; }
    @media (max-width: 768px) {
      .image-gallery-slide .image-gallery-description {
        bottom: 45px;
        font-size: .8em;
        padding: 8px 15px; } }

.image-gallery-bullets {
  bottom: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 80%;
  z-index: 4; }
  .image-gallery-bullets .image-gallery-bullets-container {
    margin: 0;
    padding: 0;
    text-align: center; }
  .image-gallery-bullets .image-gallery-bullet {
    appearance: none;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 0 #1a1a1a;
    cursor: pointer;
    display: inline-block;
    margin: 0 5px;
    outline: none;
    padding: 5px; }
    @media (max-width: 768px) {
      .image-gallery-bullets .image-gallery-bullet {
        margin: 0 3px;
        padding: 3px; } }
    @media (max-width: 480px) {
      .image-gallery-bullets .image-gallery-bullet {
        padding: 2.7px; } }
    .image-gallery-bullets .image-gallery-bullet.active {
      background: #fff; }

.image-gallery-thumbnails-wrapper {
  position: relative; }
  .image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl {
    direction: rtl; }
  .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
    display: inline-block;
    vertical-align: top;
    width: 108px; }
    @media (max-width: 768px) {
      .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
        width: 81px; } }
    .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails {
      height: 100%;
      width: 100%;
      left: 0;
      padding: 0;
      position: absolute;
      top: 0; }
      .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail {
        display: block;
        margin-right: 0;
        padding: 0; }
        .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail {
          margin-left: 0; }
  .image-gallery-thumbnails-wrapper.left {
    margin-right: 5px; }
    @media (max-width: 768px) {
      .image-gallery-thumbnails-wrapper.left {
        margin-right: 3px; } }
  .image-gallery-thumbnails-wrapper.right {
    margin-left: 5px; }
    @media (max-width: 768px) {
      .image-gallery-thumbnails-wrapper.right {
        margin-left: 3px; } }

.image-gallery-thumbnails {
  overflow: hidden;
  padding: 5px 0; }
  @media (max-width: 768px) {
    .image-gallery-thumbnails {
      padding: 3px 0; } }
  .image-gallery-thumbnails .image-gallery-thumbnails-container {
    cursor: pointer;
    text-align: center;
    transition: transform .45s ease-out;
    white-space: nowrap; }

.image-gallery-thumbnail {
  display: inline-block;
  border: 4px solid transparent;
  transition: border .3s ease-out;
  width: 100px; }
  @media (max-width: 768px) {
    .image-gallery-thumbnail {
      border: 3px solid transparent;
      width: 75px; } }
  .image-gallery-thumbnail + .image-gallery-thumbnail {
    margin-left: 2px; }
  .image-gallery-thumbnail .image-gallery-thumbnail-inner {
    position: relative; }
  .image-gallery-thumbnail img {
    vertical-align: middle;
    width: 100%; }
  .image-gallery-thumbnail.active {
    border: 4px solid #337ab7; }
    @media (max-width: 768px) {
      .image-gallery-thumbnail.active {
        border: 3px solid #337ab7; } }

.image-gallery-thumbnail-label {
  box-sizing: border-box;
  color: white;
  font-size: 1em;
  left: 0;
  line-height: 1em;
  padding: 5%;
  position: absolute;
  top: 50%;
  text-shadow: 1px 1px 0 black;
  transform: translateY(-50%);
  white-space: normal;
  width: 100%; }
  @media (max-width: 768px) {
    .image-gallery-thumbnail-label {
      font-size: .8em;
      line-height: .8em; } }

.image-gallery-index {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4; }
  @media (max-width: 768px) {
    .image-gallery-index {
      font-size: .8em;
      padding: 5px 10px; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-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; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, 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: #000; }

.hamburger-box {
  width: 40px;
  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: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: 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; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

.circular {
  border-radius: 50%; }

.spacer {
  padding-top: 0px;
  display: block; }

.slide {
  height: 100vh;
  width: 100vw;
  background-size: cover !important;
  background-position: center !important; }

.hamburger.white .hamburger-inner, .hamburger.white .hamburger-inner::before, .hamburger.white .hamburger-inner::after {
  background-color: #fff; }

.slick-dots {
  display: block;
  position: absolute;
  bottom: 20px;
  z-index: 6000;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  list-style-image: none; }
  .slick-dots li {
    display: inline-block; }
    .slick-dots li.slick-active button {
      background: white; }
    .slick-dots li button {
      width: 40px;
      height: 5px;
      background: rgba(255, 255, 255, 0.6);
      margin: 0 10px;
      border: 0;
      border-radius: 0;
      text-indent: 100%;
      overflow: hidden; }

.panorama {
  position: relative;
  overflow: hidden; }
  .panorama__model {
    position: relative; }
    .panorama__model__marker {
      position: absolute;
      border-radius: 50%;
      background: white;
      width: 25px;
      padding-top: 1px;
      height: 25px;
      box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
      animation: pulse 2s infinite;
      border: 1px solid #f2f2f2;
      transition: 0.35s all ease; }
      .panorama__model__marker p {
        text-align: center;
        font-weight: bold;
        font-size: 14px; }
      .panorama__model__marker:hover {
        animation: none;
        cursor: pointer; }
  .panorama__view {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(110%);
    width: 100%;
    height: 100%;
    transition: 0.5s all ease; }
    .panorama__view.active {
      transform: translateY(0); }
    .panorama__view img {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 6600;
      width: 32px;
      height: 32px;
      margin: 20px;
      cursor: pointer; }

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% {
    -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6000;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  cursor: pointer;
  transition: 0.35s all ease; }
  .gallery-nav img {
    width: 33px; }

.video-tag {
  max-width: 100%; }

.active {
  border-color: #999 !important; }

.col img {
  max-width: 100%; }

.gallery-nav-right {
  right: 0; }
  .gallery-nav-right:hover {
    padding-right: 20px; }

.gallery-nav-left {
  left: 0; }
  .gallery-nav-left:hover {
    padding-left: 20px; }

.nav-container, .container {
  max-width: 1340px;
  height: auto; }

.nav-container .row {
  width: 100%; }

.nav-container .nav-logo {
  justify-content: center; }
  .nav-container .nav-logo img {
    max-height: 50px; }

.nav-container .nav-links a {
  padding: 0 30px 0 0; }

.nav-container .nav-links.social-icons {
  float: right; }

nav {
  position: fixed;
  z-index: 10000;
  height: auto; }

.front-nav {
  background: none; }
  .front-nav li, .front-nav a, .front-nav p {
    color: #fff; }
  .front-nav .mobile-menu li, .front-nav .mobile-menu a, .front-nav .mobile-menu p {
    color: #000; }
  .front-nav .mobile-menu-toggle::before {
    background: #fff;
    box-shadow: 0 8px 0 0 #fff, 0 16px 0 0 #fff; }

.nav-mobile-logo img {
  max-height: 50px; }

.hamburger {
  padding: 15px 0 !important; }

.hidden-menu {
  height: 0;
  overflow: hidden;
  transition: 0.35s all ease; }
  .hidden-menu.visible {
    height: 210px; }
  .hidden-menu ul {
    width: 100%;
    text-align: center;
    list-style: none;
    list-style-image: none; }
    .hidden-menu ul li {
      margin-bottom: 10px; }
      .hidden-menu ul li a {
        padding: 0 5px;
        display: inline-block; }

.lighter p {
  color: #fff !important; }

.footer {
  background: #424242;
  padding: 0; }
  .footer .container {
    padding: 20px 30px; }
  .footer .row {
    margin-top: 0; }
  .footer .col {
    padding: 0 !important; }
  .footer section {
    padding: 0; }
  .footer span, .footer p, .footer li, .footer a {
    color: #fff; }
  .footer a, .footer p {
    font-weight: 300; }
  .footer ul {
    list-style: none;
    list-style-image: none; }

.tiles .tile {
  width: 100%;
  height: 300px;
  background-size: cover !important;
  background-position: center center !important; }
  .tiles .tile .tile-overlay {
    opacity: 0;
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    display: flex;
    transition: 0.35s opacity ease;
    cursor: pointer; }
    .tiles .tile .tile-overlay .tile-overlay-inner {
      flex: none; }
      .tiles .tile .tile-overlay .tile-overlay-inner h4, .tiles .tile .tile-overlay .tile-overlay-inner p {
        text-align: center;
        color: #fff; }
      .tiles .tile .tile-overlay .tile-overlay-inner p {
        font-weight: 400;
        letter-spacing: 0.5px;
        text-transform: uppercase; }
  .tiles .tile:hover .tile-overlay {
    opacity: 1; }

.mobile-menu {
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 10; }

@media screen and (max-width: 1940px) {
  .nav-container {
    padding: 0 30px; } }

@media screen and (max-width: 1350px) {
  .nav-container {
    padding: 0 15px; } }

@media screen and (max-width: 1200px) {
  .col .footer-headline {
    display: block; } }

@media screen and (max-width: 1024px) {
  .footer .col {
    text-align: left !important; }
    .footer .col .footer-headline {
      display: inline; } }

@media screen and (min-width: 768px) {
  .tiles .col:first-child {
    padding-left: 0 !important; }
  .tiles .col:nth-child(2n + 3) {
    padding-left: 0 !important; }
  .tiles .col:nth-child(2n + 2) {
    padding-right: 0 !important; } }

@media screen and (min-width: 767px) {
  .tile {
    height: 350px !important; }
    .tile .tile-overlay {
      height: 350px !important; }
  .col:not(.tile-col):first-child {
    padding-left: 0 !important;
    padding-right: 10px; }
  .col:not(.tile-col):last-child {
    padding-right: 0 !important;
    padding-left: 10px; } }

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px; }
  .align-left-mobile {
    text-align: left !important; }
  section {
    padding: 0; }
  .container {
    padding-bottom: 0; }
  .inset {
    padding: 0 30px !important; }
  .spacer {
    padding-top: 25px; } }

.nav-links li:last-child a {
  padding-right: 0; }

/** WORDPRESS CORE */
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

