/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Mixins
   ========================================================================== */
/*============================================================================
  Convert pixels to ems
  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Convert pixels to rems
  eg. for a relational value of 12px write rem(12) when the parent is 16px
  if the parent is another value say 24px write rem(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/**
 * Media Queries mixin
 */
/**
 * Icon mixin
 */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1, .h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   remodal
   ========================================================================== */
html.remodal-is-locked {
  overflow: hidden; }

.remodal, [data-remodal-id] {
  display: none; }

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 0;
  background: rgba(0, 0, 0, 0.65); }
  .remodal-overlay.remodal-is-opened {
    opacity: 1; }

.remodal-wrapper {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }
  .remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: ""; }

.remodal-overlay, .remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

.remodal {
  outline: none;
  width: 90%;
  padding: 40px;
  opacity: 0;
  position: relative;
  display: inline-block;
  background: #fff;
  background-clip: padding-box;
  transition: opacity 0.2s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .remodal.remodal-is-opened {
    opacity: 1; }

.remodal, .remodal-wrapper:after {
  vertical-align: middle; }

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 40.063em) {
  .remodal {
    max-width: 700px;
    min-height: 0;
    margin: 20px auto; }

  .remodal-small {
    max-width: 500px; }

  .remodal-large {
    max-width: 800px; } }
.remodal h3, .remodal .h3 {
  font-size: 16px;
  margin-bottom: 1.5em; }

.remodal-close {
  position: absolute;
  width: 18px;
  height: 18px;
  text-decoration: none;
  line-height: 1;
  display: block;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  z-index: 3200;
  background: #fff;
  padding: 0;
  color: #453d59;
  border: 0; }
  .remodal-close:before {
    content: "close";
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .remodal-close:before {
    font-size: 20px;
    display: block;
    cursor: pointer;
    text-decoration: none; }
  .remodal-close:hover {
    color: #453d59; }

/* IE8
   ========================================================================== */
html.lt-ie9, html.lt-ie9 body {
  overflow: auto !important;
  min-height: 100%;
  margin: 0; }

.lt-ie9 .remodal-overlay {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUAQMAAAC3R49OAAAAA3NCSVQICAjb4U/gAAAABlBMVEX///8AAABVwtN+AAAAAnRSTlMAuyogpzwAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAGHRFWHRDcmVhdGlvbiBUaW1lADA2LzEwLzIwMTSCx1nsAAAAD0lEQVQImWP4//8DAxUxACnDOpkfX95WAAAAAElFTkSuQmCC); }

.lt-ie9 .remodal {
  width: 500px;
  min-height: auto; }

/*
 * Bootstrap v4.0.0-beta (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px; } }

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%; }

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%; }

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%; }

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%; }

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }

  .order-sm-1 {
    order: 1; }

  .order-sm-2 {
    order: 2; }

  .order-sm-3 {
    order: 3; }

  .order-sm-4 {
    order: 4; }

  .order-sm-5 {
    order: 5; }

  .order-sm-6 {
    order: 6; }

  .order-sm-7 {
    order: 7; }

  .order-sm-8 {
    order: 8; }

  .order-sm-9 {
    order: 9; }

  .order-sm-10 {
    order: 10; }

  .order-sm-11 {
    order: 11; }

  .order-sm-12 {
    order: 12; } }
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }

  .order-md-1 {
    order: 1; }

  .order-md-2 {
    order: 2; }

  .order-md-3 {
    order: 3; }

  .order-md-4 {
    order: 4; }

  .order-md-5 {
    order: 5; }

  .order-md-6 {
    order: 6; }

  .order-md-7 {
    order: 7; }

  .order-md-8 {
    order: 8; }

  .order-md-9 {
    order: 9; }

  .order-md-10 {
    order: 10; }

  .order-md-11 {
    order: 11; }

  .order-md-12 {
    order: 12; } }
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }

  .order-lg-1 {
    order: 1; }

  .order-lg-2 {
    order: 2; }

  .order-lg-3 {
    order: 3; }

  .order-lg-4 {
    order: 4; }

  .order-lg-5 {
    order: 5; }

  .order-lg-6 {
    order: 6; }

  .order-lg-7 {
    order: 7; }

  .order-lg-8 {
    order: 8; }

  .order-lg-9 {
    order: 9; }

  .order-lg-10 {
    order: 10; }

  .order-lg-11 {
    order: 11; }

  .order-lg-12 {
    order: 12; } }
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }

  .order-xl-1 {
    order: 1; }

  .order-xl-2 {
    order: 2; }

  .order-xl-3 {
    order: 3; }

  .order-xl-4 {
    order: 4; }

  .order-xl-5 {
    order: 5; }

  .order-xl-6 {
    order: 6; }

  .order-xl-7 {
    order: 7; }

  .order-xl-8 {
    order: 8; }

  .order-xl-9 {
    order: 9; }

  .order-xl-10 {
    order: 10; }

  .order-xl-11 {
    order: 11; }

  .order-xl-12 {
    order: 12; } }
.form-control, select, .wpcf7-text, .acf-field textarea,
.acf-field select,
.acf-field input[type="text"],
.acf-field input[type="search"],
.acf-field input[type="number"],
.acf-field input[type="url"],
.acf-field input[type="email"] {
  display: block;
  width: 100%;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #453d59;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control::-ms-expand, select::-ms-expand, .wpcf7-text::-ms-expand, .acf-field textarea::-ms-expand,
  .acf-field select::-ms-expand,
  .acf-field input[type="text"]::-ms-expand,
  .acf-field input[type="search"]::-ms-expand,
  .acf-field input[type="number"]::-ms-expand,
  .acf-field input[type="url"]::-ms-expand,
  .acf-field input[type="email"]::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus, select:focus, .wpcf7-text:focus, .acf-field textarea:focus,
  .acf-field input[type="text"]:focus,
  .acf-field input[type="search"]:focus,
  .acf-field input[type="number"]:focus,
  .acf-field input[type="url"]:focus,
  .acf-field input[type="email"]:focus {
    color: #453d59;
    background-color: #fff;
    border-color: #d5d5d5;
    outline: none; }
  .form-control::placeholder, select::placeholder, .wpcf7-text::placeholder, .acf-field textarea::placeholder,
  .acf-field select::placeholder,
  .acf-field input[type="text"]::placeholder,
  .acf-field input[type="search"]::placeholder,
  .acf-field input[type="number"]::placeholder,
  .acf-field input[type="url"]::placeholder,
  .acf-field input[type="email"]::placeholder {
    color: #868e96;
    opacity: 1; }
  .form-control:disabled, select:disabled, .wpcf7-text:disabled, .acf-field textarea:disabled,
  .acf-field input[type="text"]:disabled,
  .acf-field input[type="search"]:disabled,
  .acf-field input[type="number"]:disabled,
  .acf-field input[type="url"]:disabled,
  .acf-field input[type="email"]:disabled, .form-control[readonly], select[readonly], [readonly].wpcf7-text, .acf-field textarea[readonly],
  .acf-field input[readonly][type="text"],
  .acf-field input[readonly][type="search"],
  .acf-field input[readonly][type="number"],
  .acf-field input[readonly][type="url"],
  .acf-field input[readonly][type="email"] {
    background-color: #e9ecef;
    opacity: 1; }

select.form-control:not([size]):not([multiple]), select:not([size]):not([multiple]) {
  height: calc(2.75rem + 2px); }
select.form-control:focus::-ms-value, select:focus::-ms-value {
  color: #453d59;
  background-color: #fff; }

.form-control-file,
.form-control-range {
  display: block; }

.col-form-label {
  padding-top: calc(0.5rem - 1px * 2);
  padding-bottom: calc(0.5rem - 1px * 2);
  margin-bottom: 0; }

.col-form-label-lg {
  padding-top: calc(0.5rem - 1px * 2);
  padding-bottom: calc(0.5rem - 1px * 2);
  font-size: 1.25rem; }

.col-form-label-sm {
  padding-top: calc(0.4rem - 1px * 2);
  padding-bottom: calc(0.4rem - 1px * 2);
  font-size: 0.875rem; }

.col-form-legend {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  font-size: 1rem; }

.form-control-plaintext {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  line-height: 1.75;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control, .input-group-sm > select.form-control-plaintext, .input-group-sm > .form-control-plaintext.wpcf7-text, .acf-field .input-group-sm > textarea.form-control-plaintext,
  .acf-field .input-group-sm > select.form-control-plaintext,
  .acf-field .input-group-sm > input.form-control-plaintext[type="text"],
  .acf-field .input-group-sm > input.form-control-plaintext[type="search"],
  .acf-field .input-group-sm > input.form-control-plaintext[type="number"],
  .acf-field .input-group-sm > input.form-control-plaintext[type="url"],
  .acf-field .input-group-sm > input.form-control-plaintext[type="email"],
  .input-group-sm > .form-control-plaintext.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-plaintext.btn,
  .input-group-sm > .input-group-btn > .form-control-plaintext.acf-button, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control, .input-group-lg > select.form-control-plaintext, .input-group-lg > .form-control-plaintext.wpcf7-text, .acf-field .input-group-lg > textarea.form-control-plaintext,
  .acf-field .input-group-lg > select.form-control-plaintext,
  .acf-field .input-group-lg > input.form-control-plaintext[type="text"],
  .acf-field .input-group-lg > input.form-control-plaintext[type="search"],
  .acf-field .input-group-lg > input.form-control-plaintext[type="number"],
  .acf-field .input-group-lg > input.form-control-plaintext[type="url"],
  .acf-field .input-group-lg > input.form-control-plaintext[type="email"],
  .input-group-lg > .form-control-plaintext.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-plaintext.btn,
  .input-group-lg > .input-group-btn > .form-control-plaintext.acf-button {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm, .input-group-sm > .form-control, .input-group-sm > select, .input-group-sm > .wpcf7-text, .acf-field .input-group-sm > textarea,
.acf-field .input-group-sm > select,
.acf-field .input-group-sm > input[type="text"],
.acf-field .input-group-sm > input[type="search"],
.acf-field .input-group-sm > input[type="number"],
.acf-field .input-group-sm > input[type="url"],
.acf-field .input-group-sm > input[type="email"],
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
.input-group-sm > .input-group-btn > .acf-button {
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5; }

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select:not([size]):not([multiple]),
.acf-field .input-group-sm > select:not([size]):not([multiple]),
.input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-btn > select.acf-button:not([size]):not([multiple]) {
  height: calc(2.1125rem + 2px); }

.form-control-lg, .input-group-lg > .form-control, .input-group-lg > select, .input-group-lg > .wpcf7-text, .acf-field .input-group-lg > textarea,
.acf-field .input-group-lg > select,
.acf-field .input-group-lg > input[type="text"],
.acf-field .input-group-lg > input[type="search"],
.acf-field .input-group-lg > input[type="number"],
.acf-field .input-group-lg > input[type="url"],
.acf-field .input-group-lg > input[type="email"],
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.input-group-lg > .input-group-btn > .acf-button {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5; }

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select:not([size]):not([multiple]),
.acf-field .input-group-lg > select:not([size]):not([multiple]),
.input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-btn > select.acf-button:not([size]):not([multiple]) {
  height: calc(2.3125rem + 2px); }

.form-group {
  margin-bottom: 1rem; }

.form-text {
  display: block;
  margin-top: 0.25rem; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px; }
  .form-row > .col,
  .form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px; }

.form-check {
  position: relative;
  display: block;
  margin-bottom: 0.5rem; }
  .form-check.disabled .form-check-label {
    color: #868e96; }

.form-check-label {
  padding-left: 1.25rem;
  margin-bottom: 0; }

.form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -1.25rem; }
  .form-check-input:only-child {
    position: static; }

.form-check-inline {
  display: inline-block; }
  .form-check-inline .form-check-label {
    vertical-align: middle; }
  .form-check-inline + .form-check-inline {
    margin-left: 0.75rem; }

.invalid-feedback {
  display: none;
  margin-top: .25rem;
  font-size: .875rem;
  color: #dc3545; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  width: 250px;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: .2rem; }

.was-validated .form-control:valid, .was-validated select:valid, .was-validated .wpcf7-text:valid, .was-validated .acf-field textarea:valid, .acf-field .was-validated textarea:valid,
.was-validated .acf-field select:valid,
.acf-field .was-validated select:valid,
.was-validated .acf-field input[type="text"]:valid,
.acf-field .was-validated input[type="text"]:valid,
.was-validated .acf-field input[type="search"]:valid,
.acf-field .was-validated input[type="search"]:valid,
.was-validated .acf-field input[type="number"]:valid,
.acf-field .was-validated input[type="number"]:valid,
.was-validated .acf-field input[type="url"]:valid,
.acf-field .was-validated input[type="url"]:valid,
.was-validated .acf-field input[type="email"]:valid,
.acf-field .was-validated input[type="email"]:valid, .form-control.is-valid, select.is-valid, .is-valid.wpcf7-text, .acf-field textarea.is-valid,
.acf-field input.is-valid[type="text"],
.acf-field input.is-valid[type="search"],
.acf-field input.is-valid[type="number"],
.acf-field input.is-valid[type="url"],
.acf-field input.is-valid[type="email"],
.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745; }
  .was-validated .form-control:valid:focus, .was-validated select:valid:focus, .was-validated .wpcf7-text:valid:focus, .was-validated .acf-field textarea:valid:focus, .acf-field .was-validated textarea:valid:focus,
  .was-validated .acf-field select:valid:focus,
  .acf-field .was-validated select:valid:focus,
  .was-validated .acf-field input[type="text"]:valid:focus,
  .acf-field .was-validated input[type="text"]:valid:focus,
  .was-validated .acf-field input[type="search"]:valid:focus,
  .acf-field .was-validated input[type="search"]:valid:focus,
  .was-validated .acf-field input[type="number"]:valid:focus,
  .acf-field .was-validated input[type="number"]:valid:focus,
  .was-validated .acf-field input[type="url"]:valid:focus,
  .acf-field .was-validated input[type="url"]:valid:focus,
  .was-validated .acf-field input[type="email"]:valid:focus,
  .acf-field .was-validated input[type="email"]:valid:focus, .form-control.is-valid:focus, select.is-valid:focus, .is-valid.wpcf7-text:focus, .acf-field textarea.is-valid:focus,
  .acf-field input.is-valid[type="text"]:focus,
  .acf-field input.is-valid[type="search"]:focus,
  .acf-field input.is-valid[type="number"]:focus,
  .acf-field input.is-valid[type="url"]:focus,
  .acf-field input.is-valid[type="email"]:focus,
  .was-validated .custom-select:valid:focus,
  .custom-select.is-valid:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  .was-validated .form-control:valid ~ .invalid-feedback, .was-validated select:valid ~ .invalid-feedback, .was-validated .wpcf7-text:valid ~ .invalid-feedback, .was-validated .acf-field textarea:valid ~ .invalid-feedback, .acf-field .was-validated textarea:valid ~ .invalid-feedback,
  .was-validated .acf-field select:valid ~ .invalid-feedback,
  .acf-field .was-validated select:valid ~ .invalid-feedback,
  .was-validated .acf-field input[type="text"]:valid ~ .invalid-feedback,
  .acf-field .was-validated input[type="text"]:valid ~ .invalid-feedback,
  .was-validated .acf-field input[type="search"]:valid ~ .invalid-feedback,
  .acf-field .was-validated input[type="search"]:valid ~ .invalid-feedback,
  .was-validated .acf-field input[type="number"]:valid ~ .invalid-feedback,
  .acf-field .was-validated input[type="number"]:valid ~ .invalid-feedback,
  .was-validated .acf-field input[type="url"]:valid ~ .invalid-feedback,
  .acf-field .was-validated input[type="url"]:valid ~ .invalid-feedback,
  .was-validated .acf-field input[type="email"]:valid ~ .invalid-feedback,
  .acf-field .was-validated input[type="email"]:valid ~ .invalid-feedback,
  .was-validated .form-control:valid ~ .invalid-tooltip,
  .was-validated select:valid ~ .invalid-tooltip,
  .was-validated .wpcf7-text:valid ~ .invalid-tooltip,
  .was-validated .acf-field textarea:valid ~ .invalid-tooltip,
  .acf-field .was-validated textarea:valid ~ .invalid-tooltip,
  .was-validated .acf-field select:valid ~ .invalid-tooltip,
  .acf-field .was-validated select:valid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="text"]:valid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="text"]:valid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="search"]:valid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="search"]:valid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="number"]:valid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="number"]:valid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="url"]:valid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="url"]:valid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="email"]:valid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="email"]:valid ~ .invalid-tooltip, .form-control.is-valid ~ .invalid-feedback, select.is-valid ~ .invalid-feedback, .is-valid.wpcf7-text ~ .invalid-feedback, .acf-field textarea.is-valid ~ .invalid-feedback,
  .acf-field select.is-valid ~ .invalid-feedback,
  .acf-field input.is-valid[type="text"] ~ .invalid-feedback,
  .acf-field input.is-valid[type="search"] ~ .invalid-feedback,
  .acf-field input.is-valid[type="number"] ~ .invalid-feedback,
  .acf-field input.is-valid[type="url"] ~ .invalid-feedback,
  .acf-field input.is-valid[type="email"] ~ .invalid-feedback,
  .form-control.is-valid ~ .invalid-tooltip,
  select.is-valid ~ .invalid-tooltip,
  .is-valid.wpcf7-text ~ .invalid-tooltip,
  .acf-field textarea.is-valid ~ .invalid-tooltip,
  .acf-field select.is-valid ~ .invalid-tooltip,
  .acf-field input.is-valid[type="text"] ~ .invalid-tooltip,
  .acf-field input.is-valid[type="search"] ~ .invalid-tooltip,
  .acf-field input.is-valid[type="number"] ~ .invalid-tooltip,
  .acf-field input.is-valid[type="url"] ~ .invalid-tooltip,
  .acf-field input.is-valid[type="email"] ~ .invalid-tooltip,
  .was-validated .custom-select:valid ~ .invalid-feedback,
  .was-validated .custom-select:valid ~ .invalid-tooltip,
  .custom-select.is-valid ~ .invalid-feedback,
  .custom-select.is-valid ~ .invalid-tooltip {
    display: block; }

.was-validated .form-check-input:valid + .form-check-label, .form-check-input.is-valid + .form-check-label {
  color: #28a745; }

.was-validated .custom-control-input:valid ~ .custom-control-indicator, .custom-control-input.is-valid ~ .custom-control-indicator {
  background-color: rgba(40, 167, 69, 0.25); }
.was-validated .custom-control-input:valid ~ .custom-control-description, .custom-control-input.is-valid ~ .custom-control-description {
  color: #28a745; }

.was-validated .custom-file-input:valid ~ .custom-file-control, .custom-file-input.is-valid ~ .custom-file-control {
  border-color: #28a745; }
  .was-validated .custom-file-input:valid ~ .custom-file-control::before, .custom-file-input.is-valid ~ .custom-file-control::before {
    border-color: inherit; }
.was-validated .custom-file-input:valid:focus, .custom-file-input.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }

.was-validated .form-control:invalid, .was-validated select:invalid, .was-validated .wpcf7-text:invalid, .was-validated .acf-field textarea:invalid, .acf-field .was-validated textarea:invalid,
.was-validated .acf-field select:invalid,
.acf-field .was-validated select:invalid,
.was-validated .acf-field input[type="text"]:invalid,
.acf-field .was-validated input[type="text"]:invalid,
.was-validated .acf-field input[type="search"]:invalid,
.acf-field .was-validated input[type="search"]:invalid,
.was-validated .acf-field input[type="number"]:invalid,
.acf-field .was-validated input[type="number"]:invalid,
.was-validated .acf-field input[type="url"]:invalid,
.acf-field .was-validated input[type="url"]:invalid,
.was-validated .acf-field input[type="email"]:invalid,
.acf-field .was-validated input[type="email"]:invalid, .form-control.is-invalid, select.is-invalid, .is-invalid.wpcf7-text, .acf-field textarea.is-invalid,
.acf-field input.is-invalid[type="text"],
.acf-field input.is-invalid[type="search"],
.acf-field input.is-invalid[type="number"],
.acf-field input.is-invalid[type="url"],
.acf-field input.is-invalid[type="email"],
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545; }
  .was-validated .form-control:invalid:focus, .was-validated select:invalid:focus, .was-validated .wpcf7-text:invalid:focus, .was-validated .acf-field textarea:invalid:focus, .acf-field .was-validated textarea:invalid:focus,
  .was-validated .acf-field select:invalid:focus,
  .acf-field .was-validated select:invalid:focus,
  .was-validated .acf-field input[type="text"]:invalid:focus,
  .acf-field .was-validated input[type="text"]:invalid:focus,
  .was-validated .acf-field input[type="search"]:invalid:focus,
  .acf-field .was-validated input[type="search"]:invalid:focus,
  .was-validated .acf-field input[type="number"]:invalid:focus,
  .acf-field .was-validated input[type="number"]:invalid:focus,
  .was-validated .acf-field input[type="url"]:invalid:focus,
  .acf-field .was-validated input[type="url"]:invalid:focus,
  .was-validated .acf-field input[type="email"]:invalid:focus,
  .acf-field .was-validated input[type="email"]:invalid:focus, .form-control.is-invalid:focus, select.is-invalid:focus, .is-invalid.wpcf7-text:focus, .acf-field textarea.is-invalid:focus,
  .acf-field input.is-invalid[type="text"]:focus,
  .acf-field input.is-invalid[type="search"]:focus,
  .acf-field input.is-invalid[type="number"]:focus,
  .acf-field input.is-invalid[type="url"]:focus,
  .acf-field input.is-invalid[type="email"]:focus,
  .was-validated .custom-select:invalid:focus,
  .custom-select.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated select:invalid ~ .invalid-feedback, .was-validated .wpcf7-text:invalid ~ .invalid-feedback, .was-validated .acf-field textarea:invalid ~ .invalid-feedback, .acf-field .was-validated textarea:invalid ~ .invalid-feedback,
  .was-validated .acf-field select:invalid ~ .invalid-feedback,
  .acf-field .was-validated select:invalid ~ .invalid-feedback,
  .was-validated .acf-field input[type="text"]:invalid ~ .invalid-feedback,
  .acf-field .was-validated input[type="text"]:invalid ~ .invalid-feedback,
  .was-validated .acf-field input[type="search"]:invalid ~ .invalid-feedback,
  .acf-field .was-validated input[type="search"]:invalid ~ .invalid-feedback,
  .was-validated .acf-field input[type="number"]:invalid ~ .invalid-feedback,
  .acf-field .was-validated input[type="number"]:invalid ~ .invalid-feedback,
  .was-validated .acf-field input[type="url"]:invalid ~ .invalid-feedback,
  .acf-field .was-validated input[type="url"]:invalid ~ .invalid-feedback,
  .was-validated .acf-field input[type="email"]:invalid ~ .invalid-feedback,
  .acf-field .was-validated input[type="email"]:invalid ~ .invalid-feedback,
  .was-validated .form-control:invalid ~ .invalid-tooltip,
  .was-validated select:invalid ~ .invalid-tooltip,
  .was-validated .wpcf7-text:invalid ~ .invalid-tooltip,
  .was-validated .acf-field textarea:invalid ~ .invalid-tooltip,
  .acf-field .was-validated textarea:invalid ~ .invalid-tooltip,
  .was-validated .acf-field select:invalid ~ .invalid-tooltip,
  .acf-field .was-validated select:invalid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="text"]:invalid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="text"]:invalid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="search"]:invalid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="search"]:invalid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="number"]:invalid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="number"]:invalid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="url"]:invalid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="url"]:invalid ~ .invalid-tooltip,
  .was-validated .acf-field input[type="email"]:invalid ~ .invalid-tooltip,
  .acf-field .was-validated input[type="email"]:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, select.is-invalid ~ .invalid-feedback, .is-invalid.wpcf7-text ~ .invalid-feedback, .acf-field textarea.is-invalid ~ .invalid-feedback,
  .acf-field select.is-invalid ~ .invalid-feedback,
  .acf-field input.is-invalid[type="text"] ~ .invalid-feedback,
  .acf-field input.is-invalid[type="search"] ~ .invalid-feedback,
  .acf-field input.is-invalid[type="number"] ~ .invalid-feedback,
  .acf-field input.is-invalid[type="url"] ~ .invalid-feedback,
  .acf-field input.is-invalid[type="email"] ~ .invalid-feedback,
  .form-control.is-invalid ~ .invalid-tooltip,
  select.is-invalid ~ .invalid-tooltip,
  .is-invalid.wpcf7-text ~ .invalid-tooltip,
  .acf-field textarea.is-invalid ~ .invalid-tooltip,
  .acf-field select.is-invalid ~ .invalid-tooltip,
  .acf-field input.is-invalid[type="text"] ~ .invalid-tooltip,
  .acf-field input.is-invalid[type="search"] ~ .invalid-tooltip,
  .acf-field input.is-invalid[type="number"] ~ .invalid-tooltip,
  .acf-field input.is-invalid[type="url"] ~ .invalid-tooltip,
  .acf-field input.is-invalid[type="email"] ~ .invalid-tooltip,
  .was-validated .custom-select:invalid ~ .invalid-feedback,
  .was-validated .custom-select:invalid ~ .invalid-tooltip,
  .custom-select.is-invalid ~ .invalid-feedback,
  .custom-select.is-invalid ~ .invalid-tooltip {
    display: block; }

.was-validated .form-check-input:invalid + .form-check-label, .form-check-input.is-invalid + .form-check-label {
  color: #dc3545; }

.was-validated .custom-control-input:invalid ~ .custom-control-indicator, .custom-control-input.is-invalid ~ .custom-control-indicator {
  background-color: rgba(220, 53, 69, 0.25); }
.was-validated .custom-control-input:invalid ~ .custom-control-description, .custom-control-input.is-invalid ~ .custom-control-description {
  color: #dc3545; }

.was-validated .custom-file-input:invalid ~ .custom-file-control, .custom-file-input.is-invalid ~ .custom-file-control {
  border-color: #dc3545; }
  .was-validated .custom-file-input:invalid ~ .custom-file-control::before, .custom-file-input.is-invalid ~ .custom-file-control::before {
    border-color: inherit; }
.was-validated .custom-file-input:invalid:focus, .custom-file-input.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center; }
  .form-inline .form-check {
    width: 100%; }
  @media (min-width: 576px) {
    .form-inline label {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0; }
    .form-inline .form-group {
      display: flex;
      flex: 0 0 auto;
      flex-flow: row wrap;
      align-items: center;
      margin-bottom: 0; }
    .form-inline .form-control, .form-inline select, .form-inline .wpcf7-text, .form-inline .acf-field textarea, .acf-field .form-inline textarea,
    .form-inline .acf-field select,
    .acf-field .form-inline select,
    .form-inline .acf-field input[type="text"],
    .acf-field .form-inline input[type="text"],
    .form-inline .acf-field input[type="search"],
    .acf-field .form-inline input[type="search"],
    .form-inline .acf-field input[type="number"],
    .acf-field .form-inline input[type="number"],
    .form-inline .acf-field input[type="url"],
    .acf-field .form-inline input[type="url"],
    .form-inline .acf-field input[type="email"],
    .acf-field .form-inline input[type="email"] {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .form-inline .form-control-plaintext {
      display: inline-block; }
    .form-inline .input-group {
      width: auto; }
    .form-inline .form-control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .form-inline .form-check {
      display: flex;
      align-items: center;
      justify-content: center;
      width: auto;
      margin-top: 0;
      margin-bottom: 0; }
    .form-inline .form-check-label {
      padding-left: 0; }
    .form-inline .form-check-input {
      position: relative;
      margin-top: 0;
      margin-right: 0.25rem;
      margin-left: 0; }
    .form-inline .custom-control {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 0; }
    .form-inline .custom-control-indicator {
      position: static;
      display: inline-block;
      margin-right: 0.25rem;
      vertical-align: text-bottom; }
    .form-inline .has-feedback .form-control-feedback {
      top: 0; } }

.input-group {
  position: relative;
  display: flex;
  width: 100%; }
  .input-group .form-control, .input-group select, .input-group .wpcf7-text, .input-group .acf-field textarea, .acf-field .input-group textarea,
  .input-group .acf-field select,
  .acf-field .input-group select,
  .input-group .acf-field input[type="text"],
  .acf-field .input-group input[type="text"],
  .input-group .acf-field input[type="search"],
  .acf-field .input-group input[type="search"],
  .input-group .acf-field input[type="number"],
  .acf-field .input-group input[type="number"],
  .input-group .acf-field input[type="url"],
  .acf-field .input-group input[type="url"],
  .input-group .acf-field input[type="email"],
  .acf-field .input-group input[type="email"] {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0; }
    .input-group .form-control:focus, .input-group select:focus, .input-group .wpcf7-text:focus, .input-group .acf-field textarea:focus, .acf-field .input-group textarea:focus,
    .input-group .acf-field select:focus,
    .acf-field .input-group select:focus,
    .input-group .acf-field input[type="text"]:focus,
    .acf-field .input-group input[type="text"]:focus,
    .input-group .acf-field input[type="search"]:focus,
    .acf-field .input-group input[type="search"]:focus,
    .input-group .acf-field input[type="number"]:focus,
    .acf-field .input-group input[type="number"]:focus,
    .input-group .acf-field input[type="url"]:focus,
    .acf-field .input-group input[type="url"]:focus,
    .input-group .acf-field input[type="email"]:focus,
    .acf-field .input-group input[type="email"]:focus, .input-group .form-control:active, .input-group select:active, .input-group .wpcf7-text:active, .input-group .acf-field textarea:active, .acf-field .input-group textarea:active,
    .input-group .acf-field select:active,
    .acf-field .input-group select:active,
    .input-group .acf-field input[type="text"]:active,
    .acf-field .input-group input[type="text"]:active,
    .input-group .acf-field input[type="search"]:active,
    .acf-field .input-group input[type="search"]:active,
    .input-group .acf-field input[type="number"]:active,
    .acf-field .input-group input[type="number"]:active,
    .input-group .acf-field input[type="url"]:active,
    .acf-field .input-group input[type="url"]:active,
    .input-group .acf-field input[type="email"]:active,
    .acf-field .input-group input[type="email"]:active, .input-group .form-control:hover, .input-group select:hover, .input-group .wpcf7-text:hover, .input-group .acf-field textarea:hover, .acf-field .input-group textarea:hover,
    .input-group .acf-field select:hover,
    .acf-field .input-group select:hover,
    .input-group .acf-field input[type="text"]:hover,
    .acf-field .input-group input[type="text"]:hover,
    .input-group .acf-field input[type="search"]:hover,
    .acf-field .input-group input[type="search"]:hover,
    .input-group .acf-field input[type="number"]:hover,
    .acf-field .input-group input[type="number"]:hover,
    .input-group .acf-field input[type="url"]:hover,
    .acf-field .input-group input[type="url"]:hover,
    .input-group .acf-field input[type="email"]:hover,
    .acf-field .input-group input[type="email"]:hover {
      z-index: 3; }

.input-group-addon,
.input-group-btn,
.input-group .form-control,
.input-group select,
.input-group .wpcf7-text,
.input-group .acf-field textarea,
.acf-field .input-group textarea,
.input-group .acf-field select,
.acf-field .input-group select,
.input-group .acf-field input[type="text"],
.acf-field .input-group input[type="text"],
.input-group .acf-field input[type="search"],
.acf-field .input-group input[type="search"],
.input-group .acf-field input[type="number"],
.acf-field .input-group input[type="number"],
.input-group .acf-field input[type="url"],
.acf-field .input-group input[type="url"],
.input-group .acf-field input[type="email"],
.acf-field .input-group input[type="email"] {
  display: flex;
  align-items: center; }

.input-group-addon,
.input-group-btn {
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 0.5rem 1.2rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.75;
  color: #453d59;
  text-align: center;
  background-color: #e9ecef;
  border: 1px solid #d5d5d5; }
  .input-group-addon.form-control-sm, .acf-field .input-group-sm > textarea.input-group-addon,
  .acf-field .input-group-sm > select.input-group-addon,
  .acf-field .input-group-sm > input.input-group-addon[type="text"],
  .acf-field .input-group-sm > input.input-group-addon[type="search"],
  .acf-field .input-group-sm > input.input-group-addon[type="number"],
  .acf-field .input-group-sm > input.input-group-addon[type="url"],
  .acf-field .input-group-sm > input.input-group-addon[type="email"],
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn,
  .input-group-sm > .input-group-btn > .input-group-addon.acf-button {
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem; }
  .input-group-addon.form-control-lg, .acf-field .input-group-lg > textarea.input-group-addon,
  .acf-field .input-group-lg > select.input-group-addon,
  .acf-field .input-group-lg > input.input-group-addon[type="text"],
  .acf-field .input-group-lg > input.input-group-addon[type="search"],
  .acf-field .input-group-lg > input.input-group-addon[type="number"],
  .acf-field .input-group-lg > input.input-group-addon[type="url"],
  .acf-field .input-group-lg > input.input-group-addon[type="email"],
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn,
  .input-group-lg > .input-group-btn > .input-group-addon.acf-button {
    padding: 0.5rem 1rem;
    font-size: 1.25rem; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group-addon:not(:last-child) {
  border-right: 0; }

.form-control + .input-group-addon:not(:first-child), select + .input-group-addon:not(:first-child), .wpcf7-text + .input-group-addon:not(:first-child), .acf-field textarea + .input-group-addon:not(:first-child),
.acf-field select + .input-group-addon:not(:first-child),
.acf-field input[type="text"] + .input-group-addon:not(:first-child),
.acf-field input[type="search"] + .input-group-addon:not(:first-child),
.acf-field input[type="number"] + .input-group-addon:not(:first-child),
.acf-field input[type="url"] + .input-group-addon:not(:first-child),
.acf-field input[type="email"] + .input-group-addon:not(:first-child) {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn, .input-group-btn > .acf-button {
    position: relative; }
    .input-group-btn > .btn + .btn, .input-group-btn > .acf-button + .btn, .input-group-btn > .btn + .acf-button, .input-group-btn > .acf-button + .acf-button {
      margin-left: -1px; }
    .input-group-btn > .btn:focus, .input-group-btn > .acf-button:focus, .input-group-btn > .btn:active, .input-group-btn > .acf-button:active, .input-group-btn > .btn:hover, .input-group-btn > .acf-button:hover {
      z-index: 3; }
  .input-group-btn:not(:last-child) > .btn, .input-group-btn:not(:last-child) > .acf-button,
  .input-group-btn:not(:last-child) > .btn-group {
    margin-right: -1px; }
  .input-group-btn:not(:first-child) > .btn, .input-group-btn:not(:first-child) > .acf-button,
  .input-group-btn:not(:first-child) > .btn-group {
    z-index: 2;
    margin-left: -1px; }
    .input-group-btn:not(:first-child) > .btn:focus, .input-group-btn:not(:first-child) > .acf-button:focus, .input-group-btn:not(:first-child) > .btn:active, .input-group-btn:not(:first-child) > .acf-button:active, .input-group-btn:not(:first-child) > .btn:hover, .input-group-btn:not(:first-child) > .acf-button:hover,
    .input-group-btn:not(:first-child) > .btn-group:focus,
    .input-group-btn:not(:first-child) > .btn-group:active,
    .input-group-btn:not(:first-child) > .btn-group:hover {
      z-index: 3; }

.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.bg-primary {
  background-color: #007bff !important; }

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #0062cc !important; }

.bg-secondary {
  background-color: #868e96 !important; }

a.bg-secondary:focus, a.bg-secondary:hover {
  background-color: #6c757d !important; }

.bg-success {
  background-color: #28a745 !important; }

a.bg-success:focus, a.bg-success:hover {
  background-color: #1e7e34 !important; }

.bg-info {
  background-color: #17a2b8 !important; }

a.bg-info:focus, a.bg-info:hover {
  background-color: #117a8b !important; }

.bg-warning {
  background-color: #ffc107 !important; }

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #d39e00 !important; }

.bg-danger {
  background-color: #dc3545 !important; }

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #bd2130 !important; }

.bg-light {
  background-color: #f8f9fa !important; }

a.bg-light:focus, a.bg-light:hover {
  background-color: #dae0e5 !important; }

.bg-dark {
  background-color: #343a40 !important; }

a.bg-dark:focus, a.bg-dark:hover {
  background-color: #1d2124 !important; }

.bg-white {
  background-color: #fff !important; }

.bg-transparent {
  background-color: transparent !important; }

.border {
  border: 1px solid #e9ecef !important; }

.border-0 {
  border: 0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-right-0 {
  border-right: 0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-left-0 {
  border-left: 0 !important; }

.border-primary {
  border-color: #007bff !important; }

.border-secondary {
  border-color: #868e96 !important; }

.border-success {
  border-color: #28a745 !important; }

.border-info {
  border-color: #17a2b8 !important; }

.border-warning {
  border-color: #ffc107 !important; }

.border-danger {
  border-color: #dc3545 !important; }

.border-light {
  border-color: #f8f9fa !important; }

.border-dark {
  border-color: #343a40 !important; }

.border-white {
  border-color: #fff !important; }

.rounded {
  border-radius: 0.25rem !important; }

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important; }

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important; }

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-circle {
  border-radius: 50%; }

.rounded-0 {
  border-radius: 0; }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }

  .d-sm-inline {
    display: inline !important; }

  .d-sm-inline-block {
    display: inline-block !important; }

  .d-sm-block {
    display: block !important; }

  .d-sm-table {
    display: table !important; }

  .d-sm-table-cell {
    display: table-cell !important; }

  .d-sm-flex {
    display: flex !important; }

  .d-sm-inline-flex {
    display: inline-flex !important; } }
@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }

  .d-md-inline {
    display: inline !important; }

  .d-md-inline-block {
    display: inline-block !important; }

  .d-md-block {
    display: block !important; }

  .d-md-table {
    display: table !important; }

  .d-md-table-cell {
    display: table-cell !important; }

  .d-md-flex {
    display: flex !important; }

  .d-md-inline-flex {
    display: inline-flex !important; } }
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }

  .d-lg-inline {
    display: inline !important; }

  .d-lg-inline-block {
    display: inline-block !important; }

  .d-lg-block {
    display: block !important; }

  .d-lg-table {
    display: table !important; }

  .d-lg-table-cell {
    display: table-cell !important; }

  .d-lg-flex {
    display: flex !important; }

  .d-lg-inline-flex {
    display: inline-flex !important; } }
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; }

  .d-xl-inline {
    display: inline !important; }

  .d-xl-inline-block {
    display: inline-block !important; }

  .d-xl-block {
    display: block !important; }

  .d-xl-table {
    display: table !important; }

  .d-xl-table-cell {
    display: table-cell !important; }

  .d-xl-flex {
    display: flex !important; }

  .d-xl-inline-flex {
    display: inline-flex !important; } }
.d-print-block {
  display: none !important; }
  @media print {
    .d-print-block {
      display: block !important; } }

.d-print-inline {
  display: none !important; }
  @media print {
    .d-print-inline {
      display: inline !important; } }

.d-print-inline-block {
  display: none !important; }
  @media print {
    .d-print-inline-block {
      display: inline-block !important; } }

@media print {
  .d-print-none {
    display: none !important; } }

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }
  .embed-responsive::before {
    display: block;
    content: ""; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important; }

  .flex-sm-column {
    flex-direction: column !important; }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }

  .flex-sm-wrap {
    flex-wrap: wrap !important; }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }

  .justify-content-sm-start {
    justify-content: flex-start !important; }

  .justify-content-sm-end {
    justify-content: flex-end !important; }

  .justify-content-sm-center {
    justify-content: center !important; }

  .justify-content-sm-between {
    justify-content: space-between !important; }

  .justify-content-sm-around {
    justify-content: space-around !important; }

  .align-items-sm-start {
    align-items: flex-start !important; }

  .align-items-sm-end {
    align-items: flex-end !important; }

  .align-items-sm-center {
    align-items: center !important; }

  .align-items-sm-baseline {
    align-items: baseline !important; }

  .align-items-sm-stretch {
    align-items: stretch !important; }

  .align-content-sm-start {
    align-content: flex-start !important; }

  .align-content-sm-end {
    align-content: flex-end !important; }

  .align-content-sm-center {
    align-content: center !important; }

  .align-content-sm-between {
    align-content: space-between !important; }

  .align-content-sm-around {
    align-content: space-around !important; }

  .align-content-sm-stretch {
    align-content: stretch !important; }

  .align-self-sm-auto {
    align-self: auto !important; }

  .align-self-sm-start {
    align-self: flex-start !important; }

  .align-self-sm-end {
    align-self: flex-end !important; }

  .align-self-sm-center {
    align-self: center !important; }

  .align-self-sm-baseline {
    align-self: baseline !important; }

  .align-self-sm-stretch {
    align-self: stretch !important; } }
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important; }

  .flex-md-column {
    flex-direction: column !important; }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }

  .flex-md-wrap {
    flex-wrap: wrap !important; }

  .flex-md-nowrap {
    flex-wrap: nowrap !important; }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }

  .justify-content-md-start {
    justify-content: flex-start !important; }

  .justify-content-md-end {
    justify-content: flex-end !important; }

  .justify-content-md-center {
    justify-content: center !important; }

  .justify-content-md-between {
    justify-content: space-between !important; }

  .justify-content-md-around {
    justify-content: space-around !important; }

  .align-items-md-start {
    align-items: flex-start !important; }

  .align-items-md-end {
    align-items: flex-end !important; }

  .align-items-md-center {
    align-items: center !important; }

  .align-items-md-baseline {
    align-items: baseline !important; }

  .align-items-md-stretch {
    align-items: stretch !important; }

  .align-content-md-start {
    align-content: flex-start !important; }

  .align-content-md-end {
    align-content: flex-end !important; }

  .align-content-md-center {
    align-content: center !important; }

  .align-content-md-between {
    align-content: space-between !important; }

  .align-content-md-around {
    align-content: space-around !important; }

  .align-content-md-stretch {
    align-content: stretch !important; }

  .align-self-md-auto {
    align-self: auto !important; }

  .align-self-md-start {
    align-self: flex-start !important; }

  .align-self-md-end {
    align-self: flex-end !important; }

  .align-self-md-center {
    align-self: center !important; }

  .align-self-md-baseline {
    align-self: baseline !important; }

  .align-self-md-stretch {
    align-self: stretch !important; } }
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important; }

  .flex-lg-column {
    flex-direction: column !important; }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }

  .flex-lg-wrap {
    flex-wrap: wrap !important; }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }

  .justify-content-lg-start {
    justify-content: flex-start !important; }

  .justify-content-lg-end {
    justify-content: flex-end !important; }

  .justify-content-lg-center {
    justify-content: center !important; }

  .justify-content-lg-between {
    justify-content: space-between !important; }

  .justify-content-lg-around {
    justify-content: space-around !important; }

  .align-items-lg-start {
    align-items: flex-start !important; }

  .align-items-lg-end {
    align-items: flex-end !important; }

  .align-items-lg-center {
    align-items: center !important; }

  .align-items-lg-baseline {
    align-items: baseline !important; }

  .align-items-lg-stretch {
    align-items: stretch !important; }

  .align-content-lg-start {
    align-content: flex-start !important; }

  .align-content-lg-end {
    align-content: flex-end !important; }

  .align-content-lg-center {
    align-content: center !important; }

  .align-content-lg-between {
    align-content: space-between !important; }

  .align-content-lg-around {
    align-content: space-around !important; }

  .align-content-lg-stretch {
    align-content: stretch !important; }

  .align-self-lg-auto {
    align-self: auto !important; }

  .align-self-lg-start {
    align-self: flex-start !important; }

  .align-self-lg-end {
    align-self: flex-end !important; }

  .align-self-lg-center {
    align-self: center !important; }

  .align-self-lg-baseline {
    align-self: baseline !important; }

  .align-self-lg-stretch {
    align-self: stretch !important; } }
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important; }

  .flex-xl-column {
    flex-direction: column !important; }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }

  .flex-xl-wrap {
    flex-wrap: wrap !important; }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }

  .justify-content-xl-start {
    justify-content: flex-start !important; }

  .justify-content-xl-end {
    justify-content: flex-end !important; }

  .justify-content-xl-center {
    justify-content: center !important; }

  .justify-content-xl-between {
    justify-content: space-between !important; }

  .justify-content-xl-around {
    justify-content: space-around !important; }

  .align-items-xl-start {
    align-items: flex-start !important; }

  .align-items-xl-end {
    align-items: flex-end !important; }

  .align-items-xl-center {
    align-items: center !important; }

  .align-items-xl-baseline {
    align-items: baseline !important; }

  .align-items-xl-stretch {
    align-items: stretch !important; }

  .align-content-xl-start {
    align-content: flex-start !important; }

  .align-content-xl-end {
    align-content: flex-end !important; }

  .align-content-xl-center {
    align-content: center !important; }

  .align-content-xl-between {
    align-content: space-between !important; }

  .align-content-xl-around {
    align-content: space-around !important; }

  .align-content-xl-stretch {
    align-content: stretch !important; }

  .align-self-xl-auto {
    align-self: auto !important; }

  .align-self-xl-start {
    align-self: flex-start !important; }

  .align-self-xl-end {
    align-self: flex-end !important; }

  .align-self-xl-center {
    align-self: center !important; }

  .align-self-xl-baseline {
    align-self: baseline !important; }

  .align-self-xl-stretch {
    align-self: stretch !important; } }
.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-none {
  float: none !important; }

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }

  .float-sm-right {
    float: right !important; }

  .float-sm-none {
    float: none !important; } }
@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }

  .float-md-right {
    float: right !important; }

  .float-md-none {
    float: none !important; } }
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important; }

  .float-lg-right {
    float: right !important; }

  .float-lg-none {
    float: none !important; } }
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }

  .float-xl-right {
    float: right !important; }

  .float-xl-none {
    float: none !important; } }
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  clip-path: none; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.m-0 {
  margin: 0 !important; }

.mt-0 {
  margin-top: 0 !important; }

.mr-0 {
  margin-right: 0 !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.ml-0 {
  margin-left: 0 !important; }

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1 {
  margin-top: 0.25rem !important; }

.mr-1 {
  margin-right: 0.25rem !important; }

.mb-1 {
  margin-bottom: 0.25rem !important; }

.ml-1 {
  margin-left: 0.25rem !important; }

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important; }

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mr-2 {
  margin-right: 0.5rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.ml-2 {
  margin-left: 0.5rem !important; }

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important; }

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3 {
  margin-top: 1rem !important; }

.mr-3 {
  margin-right: 1rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.ml-3 {
  margin-left: 1rem !important; }

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4 {
  margin-top: 1.5rem !important; }

.mr-4 {
  margin-right: 1.5rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.ml-4 {
  margin-left: 1.5rem !important; }

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5 {
  margin-top: 3rem !important; }

.mr-5 {
  margin-right: 3rem !important; }

.mb-5 {
  margin-bottom: 3rem !important; }

.ml-5 {
  margin-left: 3rem !important; }

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.m-6 {
  margin: 5rem !important; }

.mt-6 {
  margin-top: 5rem !important; }

.mr-6 {
  margin-right: 5rem !important; }

.mb-6 {
  margin-bottom: 5rem !important; }

.ml-6 {
  margin-left: 5rem !important; }

.mx-6 {
  margin-right: 5rem !important;
  margin-left: 5rem !important; }

.my-6 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important; }

.m-7 {
  margin: 7rem !important; }

.mt-7 {
  margin-top: 7rem !important; }

.mr-7 {
  margin-right: 7rem !important; }

.mb-7 {
  margin-bottom: 7rem !important; }

.ml-7 {
  margin-left: 7rem !important; }

.mx-7 {
  margin-right: 7rem !important;
  margin-left: 7rem !important; }

.my-7 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important; }

.m-8 {
  margin: 10rem !important; }

.mt-8 {
  margin-top: 10rem !important; }

.mr-8 {
  margin-right: 10rem !important; }

.mb-8 {
  margin-bottom: 10rem !important; }

.ml-8 {
  margin-left: 10rem !important; }

.mx-8 {
  margin-right: 10rem !important;
  margin-left: 10rem !important; }

.my-8 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0 {
  padding-top: 0 !important; }

.pr-0 {
  padding-right: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pl-0 {
  padding-left: 0 !important; }

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1 {
  padding-top: 0.25rem !important; }

.pr-1 {
  padding-right: 0.25rem !important; }

.pb-1 {
  padding-bottom: 0.25rem !important; }

.pl-1 {
  padding-left: 0.25rem !important; }

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important; }

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2 {
  padding-top: 0.5rem !important; }

.pr-2 {
  padding-right: 0.5rem !important; }

.pb-2 {
  padding-bottom: 0.5rem !important; }

.pl-2 {
  padding-left: 0.5rem !important; }

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important; }

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3 {
  padding-top: 1rem !important; }

.pr-3 {
  padding-right: 1rem !important; }

.pb-3 {
  padding-bottom: 1rem !important; }

.pl-3 {
  padding-left: 1rem !important; }

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4 {
  padding-top: 1.5rem !important; }

.pr-4 {
  padding-right: 1.5rem !important; }

.pb-4 {
  padding-bottom: 1.5rem !important; }

.pl-4 {
  padding-left: 1.5rem !important; }

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5 {
  padding-top: 3rem !important; }

.pr-5 {
  padding-right: 3rem !important; }

.pb-5 {
  padding-bottom: 3rem !important; }

.pl-5 {
  padding-left: 3rem !important; }

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.p-6 {
  padding: 5rem !important; }

.pt-6 {
  padding-top: 5rem !important; }

.pr-6 {
  padding-right: 5rem !important; }

.pb-6 {
  padding-bottom: 5rem !important; }

.pl-6 {
  padding-left: 5rem !important; }

.px-6 {
  padding-right: 5rem !important;
  padding-left: 5rem !important; }

.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important; }

.p-7 {
  padding: 7rem !important; }

.pt-7 {
  padding-top: 7rem !important; }

.pr-7 {
  padding-right: 7rem !important; }

.pb-7 {
  padding-bottom: 7rem !important; }

.pl-7 {
  padding-left: 7rem !important; }

.px-7 {
  padding-right: 7rem !important;
  padding-left: 7rem !important; }

.py-7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important; }

.p-8 {
  padding: 10rem !important; }

.pt-8 {
  padding-top: 10rem !important; }

.pr-8 {
  padding-right: 10rem !important; }

.pb-8 {
  padding-bottom: 10rem !important; }

.pl-8 {
  padding-left: 10rem !important; }

.px-8 {
  padding-right: 10rem !important;
  padding-left: 10rem !important; }

.py-8 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto {
  margin-top: auto !important; }

.mr-auto {
  margin-right: auto !important; }

.mb-auto {
  margin-bottom: auto !important; }

.ml-auto {
  margin-left: auto !important; }

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important; }

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important; }

  .mt-sm-0 {
    margin-top: 0 !important; }

  .mr-sm-0 {
    margin-right: 0 !important; }

  .mb-sm-0 {
    margin-bottom: 0 !important; }

  .ml-sm-0 {
    margin-left: 0 !important; }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }

  .m-sm-1 {
    margin: 0.25rem !important; }

  .mt-sm-1 {
    margin-top: 0.25rem !important; }

  .mr-sm-1 {
    margin-right: 0.25rem !important; }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important; }

  .ml-sm-1 {
    margin-left: 0.25rem !important; }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }

  .m-sm-2 {
    margin: 0.5rem !important; }

  .mt-sm-2 {
    margin-top: 0.5rem !important; }

  .mr-sm-2 {
    margin-right: 0.5rem !important; }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important; }

  .ml-sm-2 {
    margin-left: 0.5rem !important; }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }

  .m-sm-3 {
    margin: 1rem !important; }

  .mt-sm-3 {
    margin-top: 1rem !important; }

  .mr-sm-3 {
    margin-right: 1rem !important; }

  .mb-sm-3 {
    margin-bottom: 1rem !important; }

  .ml-sm-3 {
    margin-left: 1rem !important; }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }

  .m-sm-4 {
    margin: 1.5rem !important; }

  .mt-sm-4 {
    margin-top: 1.5rem !important; }

  .mr-sm-4 {
    margin-right: 1.5rem !important; }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important; }

  .ml-sm-4 {
    margin-left: 1.5rem !important; }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }

  .m-sm-5 {
    margin: 3rem !important; }

  .mt-sm-5 {
    margin-top: 3rem !important; }

  .mr-sm-5 {
    margin-right: 3rem !important; }

  .mb-sm-5 {
    margin-bottom: 3rem !important; }

  .ml-sm-5 {
    margin-left: 3rem !important; }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }

  .m-sm-6 {
    margin: 5rem !important; }

  .mt-sm-6 {
    margin-top: 5rem !important; }

  .mr-sm-6 {
    margin-right: 5rem !important; }

  .mb-sm-6 {
    margin-bottom: 5rem !important; }

  .ml-sm-6 {
    margin-left: 5rem !important; }

  .mx-sm-6 {
    margin-right: 5rem !important;
    margin-left: 5rem !important; }

  .my-sm-6 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important; }

  .m-sm-7 {
    margin: 7rem !important; }

  .mt-sm-7 {
    margin-top: 7rem !important; }

  .mr-sm-7 {
    margin-right: 7rem !important; }

  .mb-sm-7 {
    margin-bottom: 7rem !important; }

  .ml-sm-7 {
    margin-left: 7rem !important; }

  .mx-sm-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important; }

  .my-sm-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important; }

  .m-sm-8 {
    margin: 10rem !important; }

  .mt-sm-8 {
    margin-top: 10rem !important; }

  .mr-sm-8 {
    margin-right: 10rem !important; }

  .mb-sm-8 {
    margin-bottom: 10rem !important; }

  .ml-sm-8 {
    margin-left: 10rem !important; }

  .mx-sm-8 {
    margin-right: 10rem !important;
    margin-left: 10rem !important; }

  .my-sm-8 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important; }

  .p-sm-0 {
    padding: 0 !important; }

  .pt-sm-0 {
    padding-top: 0 !important; }

  .pr-sm-0 {
    padding-right: 0 !important; }

  .pb-sm-0 {
    padding-bottom: 0 !important; }

  .pl-sm-0 {
    padding-left: 0 !important; }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

  .p-sm-1 {
    padding: 0.25rem !important; }

  .pt-sm-1 {
    padding-top: 0.25rem !important; }

  .pr-sm-1 {
    padding-right: 0.25rem !important; }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important; }

  .pl-sm-1 {
    padding-left: 0.25rem !important; }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }

  .p-sm-2 {
    padding: 0.5rem !important; }

  .pt-sm-2 {
    padding-top: 0.5rem !important; }

  .pr-sm-2 {
    padding-right: 0.5rem !important; }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important; }

  .pl-sm-2 {
    padding-left: 0.5rem !important; }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }

  .p-sm-3 {
    padding: 1rem !important; }

  .pt-sm-3 {
    padding-top: 1rem !important; }

  .pr-sm-3 {
    padding-right: 1rem !important; }

  .pb-sm-3 {
    padding-bottom: 1rem !important; }

  .pl-sm-3 {
    padding-left: 1rem !important; }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }

  .p-sm-4 {
    padding: 1.5rem !important; }

  .pt-sm-4 {
    padding-top: 1.5rem !important; }

  .pr-sm-4 {
    padding-right: 1.5rem !important; }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important; }

  .pl-sm-4 {
    padding-left: 1.5rem !important; }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }

  .p-sm-5 {
    padding: 3rem !important; }

  .pt-sm-5 {
    padding-top: 3rem !important; }

  .pr-sm-5 {
    padding-right: 3rem !important; }

  .pb-sm-5 {
    padding-bottom: 3rem !important; }

  .pl-sm-5 {
    padding-left: 3rem !important; }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }

  .p-sm-6 {
    padding: 5rem !important; }

  .pt-sm-6 {
    padding-top: 5rem !important; }

  .pr-sm-6 {
    padding-right: 5rem !important; }

  .pb-sm-6 {
    padding-bottom: 5rem !important; }

  .pl-sm-6 {
    padding-left: 5rem !important; }

  .px-sm-6 {
    padding-right: 5rem !important;
    padding-left: 5rem !important; }

  .py-sm-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important; }

  .p-sm-7 {
    padding: 7rem !important; }

  .pt-sm-7 {
    padding-top: 7rem !important; }

  .pr-sm-7 {
    padding-right: 7rem !important; }

  .pb-sm-7 {
    padding-bottom: 7rem !important; }

  .pl-sm-7 {
    padding-left: 7rem !important; }

  .px-sm-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important; }

  .py-sm-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important; }

  .p-sm-8 {
    padding: 10rem !important; }

  .pt-sm-8 {
    padding-top: 10rem !important; }

  .pr-sm-8 {
    padding-right: 10rem !important; }

  .pb-sm-8 {
    padding-bottom: 10rem !important; }

  .pl-sm-8 {
    padding-left: 10rem !important; }

  .px-sm-8 {
    padding-right: 10rem !important;
    padding-left: 10rem !important; }

  .py-sm-8 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important; }

  .m-sm-auto {
    margin: auto !important; }

  .mt-sm-auto {
    margin-top: auto !important; }

  .mr-sm-auto {
    margin-right: auto !important; }

  .mb-sm-auto {
    margin-bottom: auto !important; }

  .ml-sm-auto {
    margin-left: auto !important; }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important; }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; } }
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }

  .mt-md-0 {
    margin-top: 0 !important; }

  .mr-md-0 {
    margin-right: 0 !important; }

  .mb-md-0 {
    margin-bottom: 0 !important; }

  .ml-md-0 {
    margin-left: 0 !important; }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }

  .m-md-1 {
    margin: 0.25rem !important; }

  .mt-md-1 {
    margin-top: 0.25rem !important; }

  .mr-md-1 {
    margin-right: 0.25rem !important; }

  .mb-md-1 {
    margin-bottom: 0.25rem !important; }

  .ml-md-1 {
    margin-left: 0.25rem !important; }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }

  .m-md-2 {
    margin: 0.5rem !important; }

  .mt-md-2 {
    margin-top: 0.5rem !important; }

  .mr-md-2 {
    margin-right: 0.5rem !important; }

  .mb-md-2 {
    margin-bottom: 0.5rem !important; }

  .ml-md-2 {
    margin-left: 0.5rem !important; }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }

  .m-md-3 {
    margin: 1rem !important; }

  .mt-md-3 {
    margin-top: 1rem !important; }

  .mr-md-3 {
    margin-right: 1rem !important; }

  .mb-md-3 {
    margin-bottom: 1rem !important; }

  .ml-md-3 {
    margin-left: 1rem !important; }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }

  .m-md-4 {
    margin: 1.5rem !important; }

  .mt-md-4 {
    margin-top: 1.5rem !important; }

  .mr-md-4 {
    margin-right: 1.5rem !important; }

  .mb-md-4 {
    margin-bottom: 1.5rem !important; }

  .ml-md-4 {
    margin-left: 1.5rem !important; }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }

  .m-md-5 {
    margin: 3rem !important; }

  .mt-md-5 {
    margin-top: 3rem !important; }

  .mr-md-5 {
    margin-right: 3rem !important; }

  .mb-md-5 {
    margin-bottom: 3rem !important; }

  .ml-md-5 {
    margin-left: 3rem !important; }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }

  .m-md-6 {
    margin: 5rem !important; }

  .mt-md-6 {
    margin-top: 5rem !important; }

  .mr-md-6 {
    margin-right: 5rem !important; }

  .mb-md-6 {
    margin-bottom: 5rem !important; }

  .ml-md-6 {
    margin-left: 5rem !important; }

  .mx-md-6 {
    margin-right: 5rem !important;
    margin-left: 5rem !important; }

  .my-md-6 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important; }

  .m-md-7 {
    margin: 7rem !important; }

  .mt-md-7 {
    margin-top: 7rem !important; }

  .mr-md-7 {
    margin-right: 7rem !important; }

  .mb-md-7 {
    margin-bottom: 7rem !important; }

  .ml-md-7 {
    margin-left: 7rem !important; }

  .mx-md-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important; }

  .my-md-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important; }

  .m-md-8 {
    margin: 10rem !important; }

  .mt-md-8 {
    margin-top: 10rem !important; }

  .mr-md-8 {
    margin-right: 10rem !important; }

  .mb-md-8 {
    margin-bottom: 10rem !important; }

  .ml-md-8 {
    margin-left: 10rem !important; }

  .mx-md-8 {
    margin-right: 10rem !important;
    margin-left: 10rem !important; }

  .my-md-8 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important; }

  .p-md-0 {
    padding: 0 !important; }

  .pt-md-0 {
    padding-top: 0 !important; }

  .pr-md-0 {
    padding-right: 0 !important; }

  .pb-md-0 {
    padding-bottom: 0 !important; }

  .pl-md-0 {
    padding-left: 0 !important; }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

  .p-md-1 {
    padding: 0.25rem !important; }

  .pt-md-1 {
    padding-top: 0.25rem !important; }

  .pr-md-1 {
    padding-right: 0.25rem !important; }

  .pb-md-1 {
    padding-bottom: 0.25rem !important; }

  .pl-md-1 {
    padding-left: 0.25rem !important; }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }

  .p-md-2 {
    padding: 0.5rem !important; }

  .pt-md-2 {
    padding-top: 0.5rem !important; }

  .pr-md-2 {
    padding-right: 0.5rem !important; }

  .pb-md-2 {
    padding-bottom: 0.5rem !important; }

  .pl-md-2 {
    padding-left: 0.5rem !important; }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }

  .p-md-3 {
    padding: 1rem !important; }

  .pt-md-3 {
    padding-top: 1rem !important; }

  .pr-md-3 {
    padding-right: 1rem !important; }

  .pb-md-3 {
    padding-bottom: 1rem !important; }

  .pl-md-3 {
    padding-left: 1rem !important; }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }

  .p-md-4 {
    padding: 1.5rem !important; }

  .pt-md-4 {
    padding-top: 1.5rem !important; }

  .pr-md-4 {
    padding-right: 1.5rem !important; }

  .pb-md-4 {
    padding-bottom: 1.5rem !important; }

  .pl-md-4 {
    padding-left: 1.5rem !important; }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }

  .p-md-5 {
    padding: 3rem !important; }

  .pt-md-5 {
    padding-top: 3rem !important; }

  .pr-md-5 {
    padding-right: 3rem !important; }

  .pb-md-5 {
    padding-bottom: 3rem !important; }

  .pl-md-5 {
    padding-left: 3rem !important; }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }

  .p-md-6 {
    padding: 5rem !important; }

  .pt-md-6 {
    padding-top: 5rem !important; }

  .pr-md-6 {
    padding-right: 5rem !important; }

  .pb-md-6 {
    padding-bottom: 5rem !important; }

  .pl-md-6 {
    padding-left: 5rem !important; }

  .px-md-6 {
    padding-right: 5rem !important;
    padding-left: 5rem !important; }

  .py-md-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important; }

  .p-md-7 {
    padding: 7rem !important; }

  .pt-md-7 {
    padding-top: 7rem !important; }

  .pr-md-7 {
    padding-right: 7rem !important; }

  .pb-md-7 {
    padding-bottom: 7rem !important; }

  .pl-md-7 {
    padding-left: 7rem !important; }

  .px-md-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important; }

  .py-md-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important; }

  .p-md-8 {
    padding: 10rem !important; }

  .pt-md-8 {
    padding-top: 10rem !important; }

  .pr-md-8 {
    padding-right: 10rem !important; }

  .pb-md-8 {
    padding-bottom: 10rem !important; }

  .pl-md-8 {
    padding-left: 10rem !important; }

  .px-md-8 {
    padding-right: 10rem !important;
    padding-left: 10rem !important; }

  .py-md-8 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important; }

  .m-md-auto {
    margin: auto !important; }

  .mt-md-auto {
    margin-top: auto !important; }

  .mr-md-auto {
    margin-right: auto !important; }

  .mb-md-auto {
    margin-bottom: auto !important; }

  .ml-md-auto {
    margin-left: auto !important; }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important; }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; } }
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important; }

  .mt-lg-0 {
    margin-top: 0 !important; }

  .mr-lg-0 {
    margin-right: 0 !important; }

  .mb-lg-0 {
    margin-bottom: 0 !important; }

  .ml-lg-0 {
    margin-left: 0 !important; }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }

  .m-lg-1 {
    margin: 0.25rem !important; }

  .mt-lg-1 {
    margin-top: 0.25rem !important; }

  .mr-lg-1 {
    margin-right: 0.25rem !important; }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important; }

  .ml-lg-1 {
    margin-left: 0.25rem !important; }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }

  .m-lg-2 {
    margin: 0.5rem !important; }

  .mt-lg-2 {
    margin-top: 0.5rem !important; }

  .mr-lg-2 {
    margin-right: 0.5rem !important; }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important; }

  .ml-lg-2 {
    margin-left: 0.5rem !important; }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }

  .m-lg-3 {
    margin: 1rem !important; }

  .mt-lg-3 {
    margin-top: 1rem !important; }

  .mr-lg-3 {
    margin-right: 1rem !important; }

  .mb-lg-3 {
    margin-bottom: 1rem !important; }

  .ml-lg-3 {
    margin-left: 1rem !important; }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }

  .m-lg-4 {
    margin: 1.5rem !important; }

  .mt-lg-4 {
    margin-top: 1.5rem !important; }

  .mr-lg-4 {
    margin-right: 1.5rem !important; }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important; }

  .ml-lg-4 {
    margin-left: 1.5rem !important; }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }

  .m-lg-5 {
    margin: 3rem !important; }

  .mt-lg-5 {
    margin-top: 3rem !important; }

  .mr-lg-5 {
    margin-right: 3rem !important; }

  .mb-lg-5 {
    margin-bottom: 3rem !important; }

  .ml-lg-5 {
    margin-left: 3rem !important; }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }

  .m-lg-6 {
    margin: 5rem !important; }

  .mt-lg-6 {
    margin-top: 5rem !important; }

  .mr-lg-6 {
    margin-right: 5rem !important; }

  .mb-lg-6 {
    margin-bottom: 5rem !important; }

  .ml-lg-6 {
    margin-left: 5rem !important; }

  .mx-lg-6 {
    margin-right: 5rem !important;
    margin-left: 5rem !important; }

  .my-lg-6 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important; }

  .m-lg-7 {
    margin: 7rem !important; }

  .mt-lg-7 {
    margin-top: 7rem !important; }

  .mr-lg-7 {
    margin-right: 7rem !important; }

  .mb-lg-7 {
    margin-bottom: 7rem !important; }

  .ml-lg-7 {
    margin-left: 7rem !important; }

  .mx-lg-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important; }

  .my-lg-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important; }

  .m-lg-8 {
    margin: 10rem !important; }

  .mt-lg-8 {
    margin-top: 10rem !important; }

  .mr-lg-8 {
    margin-right: 10rem !important; }

  .mb-lg-8 {
    margin-bottom: 10rem !important; }

  .ml-lg-8 {
    margin-left: 10rem !important; }

  .mx-lg-8 {
    margin-right: 10rem !important;
    margin-left: 10rem !important; }

  .my-lg-8 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important; }

  .p-lg-0 {
    padding: 0 !important; }

  .pt-lg-0 {
    padding-top: 0 !important; }

  .pr-lg-0 {
    padding-right: 0 !important; }

  .pb-lg-0 {
    padding-bottom: 0 !important; }

  .pl-lg-0 {
    padding-left: 0 !important; }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

  .p-lg-1 {
    padding: 0.25rem !important; }

  .pt-lg-1 {
    padding-top: 0.25rem !important; }

  .pr-lg-1 {
    padding-right: 0.25rem !important; }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important; }

  .pl-lg-1 {
    padding-left: 0.25rem !important; }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }

  .p-lg-2 {
    padding: 0.5rem !important; }

  .pt-lg-2 {
    padding-top: 0.5rem !important; }

  .pr-lg-2 {
    padding-right: 0.5rem !important; }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important; }

  .pl-lg-2 {
    padding-left: 0.5rem !important; }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }

  .p-lg-3 {
    padding: 1rem !important; }

  .pt-lg-3 {
    padding-top: 1rem !important; }

  .pr-lg-3 {
    padding-right: 1rem !important; }

  .pb-lg-3 {
    padding-bottom: 1rem !important; }

  .pl-lg-3 {
    padding-left: 1rem !important; }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }

  .p-lg-4 {
    padding: 1.5rem !important; }

  .pt-lg-4 {
    padding-top: 1.5rem !important; }

  .pr-lg-4 {
    padding-right: 1.5rem !important; }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important; }

  .pl-lg-4 {
    padding-left: 1.5rem !important; }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }

  .p-lg-5 {
    padding: 3rem !important; }

  .pt-lg-5 {
    padding-top: 3rem !important; }

  .pr-lg-5 {
    padding-right: 3rem !important; }

  .pb-lg-5 {
    padding-bottom: 3rem !important; }

  .pl-lg-5 {
    padding-left: 3rem !important; }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }

  .p-lg-6 {
    padding: 5rem !important; }

  .pt-lg-6 {
    padding-top: 5rem !important; }

  .pr-lg-6 {
    padding-right: 5rem !important; }

  .pb-lg-6 {
    padding-bottom: 5rem !important; }

  .pl-lg-6 {
    padding-left: 5rem !important; }

  .px-lg-6 {
    padding-right: 5rem !important;
    padding-left: 5rem !important; }

  .py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important; }

  .p-lg-7 {
    padding: 7rem !important; }

  .pt-lg-7 {
    padding-top: 7rem !important; }

  .pr-lg-7 {
    padding-right: 7rem !important; }

  .pb-lg-7 {
    padding-bottom: 7rem !important; }

  .pl-lg-7 {
    padding-left: 7rem !important; }

  .px-lg-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important; }

  .py-lg-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important; }

  .p-lg-8 {
    padding: 10rem !important; }

  .pt-lg-8 {
    padding-top: 10rem !important; }

  .pr-lg-8 {
    padding-right: 10rem !important; }

  .pb-lg-8 {
    padding-bottom: 10rem !important; }

  .pl-lg-8 {
    padding-left: 10rem !important; }

  .px-lg-8 {
    padding-right: 10rem !important;
    padding-left: 10rem !important; }

  .py-lg-8 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important; }

  .m-lg-auto {
    margin: auto !important; }

  .mt-lg-auto {
    margin-top: auto !important; }

  .mr-lg-auto {
    margin-right: auto !important; }

  .mb-lg-auto {
    margin-bottom: auto !important; }

  .ml-lg-auto {
    margin-left: auto !important; }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important; }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; } }
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important; }

  .mt-xl-0 {
    margin-top: 0 !important; }

  .mr-xl-0 {
    margin-right: 0 !important; }

  .mb-xl-0 {
    margin-bottom: 0 !important; }

  .ml-xl-0 {
    margin-left: 0 !important; }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }

  .m-xl-1 {
    margin: 0.25rem !important; }

  .mt-xl-1 {
    margin-top: 0.25rem !important; }

  .mr-xl-1 {
    margin-right: 0.25rem !important; }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important; }

  .ml-xl-1 {
    margin-left: 0.25rem !important; }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }

  .m-xl-2 {
    margin: 0.5rem !important; }

  .mt-xl-2 {
    margin-top: 0.5rem !important; }

  .mr-xl-2 {
    margin-right: 0.5rem !important; }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important; }

  .ml-xl-2 {
    margin-left: 0.5rem !important; }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }

  .m-xl-3 {
    margin: 1rem !important; }

  .mt-xl-3 {
    margin-top: 1rem !important; }

  .mr-xl-3 {
    margin-right: 1rem !important; }

  .mb-xl-3 {
    margin-bottom: 1rem !important; }

  .ml-xl-3 {
    margin-left: 1rem !important; }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }

  .m-xl-4 {
    margin: 1.5rem !important; }

  .mt-xl-4 {
    margin-top: 1.5rem !important; }

  .mr-xl-4 {
    margin-right: 1.5rem !important; }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important; }

  .ml-xl-4 {
    margin-left: 1.5rem !important; }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }

  .m-xl-5 {
    margin: 3rem !important; }

  .mt-xl-5 {
    margin-top: 3rem !important; }

  .mr-xl-5 {
    margin-right: 3rem !important; }

  .mb-xl-5 {
    margin-bottom: 3rem !important; }

  .ml-xl-5 {
    margin-left: 3rem !important; }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }

  .m-xl-6 {
    margin: 5rem !important; }

  .mt-xl-6 {
    margin-top: 5rem !important; }

  .mr-xl-6 {
    margin-right: 5rem !important; }

  .mb-xl-6 {
    margin-bottom: 5rem !important; }

  .ml-xl-6 {
    margin-left: 5rem !important; }

  .mx-xl-6 {
    margin-right: 5rem !important;
    margin-left: 5rem !important; }

  .my-xl-6 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important; }

  .m-xl-7 {
    margin: 7rem !important; }

  .mt-xl-7 {
    margin-top: 7rem !important; }

  .mr-xl-7 {
    margin-right: 7rem !important; }

  .mb-xl-7 {
    margin-bottom: 7rem !important; }

  .ml-xl-7 {
    margin-left: 7rem !important; }

  .mx-xl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important; }

  .my-xl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important; }

  .m-xl-8 {
    margin: 10rem !important; }

  .mt-xl-8 {
    margin-top: 10rem !important; }

  .mr-xl-8 {
    margin-right: 10rem !important; }

  .mb-xl-8 {
    margin-bottom: 10rem !important; }

  .ml-xl-8 {
    margin-left: 10rem !important; }

  .mx-xl-8 {
    margin-right: 10rem !important;
    margin-left: 10rem !important; }

  .my-xl-8 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important; }

  .p-xl-0 {
    padding: 0 !important; }

  .pt-xl-0 {
    padding-top: 0 !important; }

  .pr-xl-0 {
    padding-right: 0 !important; }

  .pb-xl-0 {
    padding-bottom: 0 !important; }

  .pl-xl-0 {
    padding-left: 0 !important; }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

  .p-xl-1 {
    padding: 0.25rem !important; }

  .pt-xl-1 {
    padding-top: 0.25rem !important; }

  .pr-xl-1 {
    padding-right: 0.25rem !important; }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important; }

  .pl-xl-1 {
    padding-left: 0.25rem !important; }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }

  .p-xl-2 {
    padding: 0.5rem !important; }

  .pt-xl-2 {
    padding-top: 0.5rem !important; }

  .pr-xl-2 {
    padding-right: 0.5rem !important; }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important; }

  .pl-xl-2 {
    padding-left: 0.5rem !important; }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }

  .p-xl-3 {
    padding: 1rem !important; }

  .pt-xl-3 {
    padding-top: 1rem !important; }

  .pr-xl-3 {
    padding-right: 1rem !important; }

  .pb-xl-3 {
    padding-bottom: 1rem !important; }

  .pl-xl-3 {
    padding-left: 1rem !important; }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }

  .p-xl-4 {
    padding: 1.5rem !important; }

  .pt-xl-4 {
    padding-top: 1.5rem !important; }

  .pr-xl-4 {
    padding-right: 1.5rem !important; }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important; }

  .pl-xl-4 {
    padding-left: 1.5rem !important; }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }

  .p-xl-5 {
    padding: 3rem !important; }

  .pt-xl-5 {
    padding-top: 3rem !important; }

  .pr-xl-5 {
    padding-right: 3rem !important; }

  .pb-xl-5 {
    padding-bottom: 3rem !important; }

  .pl-xl-5 {
    padding-left: 3rem !important; }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }

  .p-xl-6 {
    padding: 5rem !important; }

  .pt-xl-6 {
    padding-top: 5rem !important; }

  .pr-xl-6 {
    padding-right: 5rem !important; }

  .pb-xl-6 {
    padding-bottom: 5rem !important; }

  .pl-xl-6 {
    padding-left: 5rem !important; }

  .px-xl-6 {
    padding-right: 5rem !important;
    padding-left: 5rem !important; }

  .py-xl-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important; }

  .p-xl-7 {
    padding: 7rem !important; }

  .pt-xl-7 {
    padding-top: 7rem !important; }

  .pr-xl-7 {
    padding-right: 7rem !important; }

  .pb-xl-7 {
    padding-bottom: 7rem !important; }

  .pl-xl-7 {
    padding-left: 7rem !important; }

  .px-xl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important; }

  .py-xl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important; }

  .p-xl-8 {
    padding: 10rem !important; }

  .pt-xl-8 {
    padding-top: 10rem !important; }

  .pr-xl-8 {
    padding-right: 10rem !important; }

  .pb-xl-8 {
    padding-bottom: 10rem !important; }

  .pl-xl-8 {
    padding-left: 10rem !important; }

  .px-xl-8 {
    padding-right: 10rem !important;
    padding-left: 10rem !important; }

  .py-xl-8 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important; }

  .m-xl-auto {
    margin: auto !important; }

  .mt-xl-auto {
    margin-top: auto !important; }

  .mr-xl-auto {
    margin-right: auto !important; }

  .mb-xl-auto {
    margin-bottom: auto !important; }

  .ml-xl-auto {
    margin-left: auto !important; }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; } }
.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }

  .text-sm-right {
    text-align: right !important; }

  .text-sm-center {
    text-align: center !important; } }
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }

  .text-md-right {
    text-align: right !important; }

  .text-md-center {
    text-align: center !important; } }
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }

  .text-lg-right {
    text-align: right !important; }

  .text-lg-center {
    text-align: center !important; } }
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }

  .text-xl-right {
    text-align: right !important; }

  .text-xl-center {
    text-align: center !important; } }
.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-normal {
  font-weight: normal; }

.font-weight-bold {
  font-weight: bold; }

.font-italic {
  font-style: italic; }

.text-white {
  color: #fff !important; }

.text-primary {
  color: #007bff !important; }

a.text-primary:focus, a.text-primary:hover {
  color: #0062cc !important; }

.text-secondary {
  color: #868e96 !important; }

a.text-secondary:focus, a.text-secondary:hover {
  color: #6c757d !important; }

.text-success {
  color: #28a745 !important; }

a.text-success:focus, a.text-success:hover {
  color: #1e7e34 !important; }

.text-info {
  color: #17a2b8 !important; }

a.text-info:focus, a.text-info:hover {
  color: #117a8b !important; }

.text-warning {
  color: #ffc107 !important; }

a.text-warning:focus, a.text-warning:hover {
  color: #d39e00 !important; }

.text-danger {
  color: #dc3545 !important; }

a.text-danger:focus, a.text-danger:hover {
  color: #bd2130 !important; }

.text-light {
  color: #f8f9fa !important; }

a.text-light:focus, a.text-light:hover {
  color: #dae0e5 !important; }

.text-dark {
  color: #343a40 !important; }

a.text-dark:focus, a.text-dark:hover {
  color: #1d2124 !important; }

.text-muted {
  color: #868e96 !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

/*
 * Slick Slider
*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-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-slider:focus {
    outline: none; }

@media (min-width: 768px) {
  .slick--scroll {
    padding-left: 0;
    padding-right: 0; } }
.slick--scroll .slick-list.draggable:hover {
  cursor: grab; }
.slick--scroll .slick-slide {
  padding-left: 20px;
  padding-right: 20px; }

.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;
  outline: 0;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block;
    margin: 0 auto; }
  .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; }

.js-slider {
  opacity: 0; }
  .js-slider.slick-initialized, .no-js .js-slider {
    opacity: 1;
    transition: opacity 0.2s ease-in; }

.slick-dots {
  display: none;
  font-size: 0;
  margin-top: 20px;
  height: 10px;
  text-align: center; }
  .slick-dots li {
    display: inline-block;
    zoom: 1;
    margin: 0 6px;
    height: 7px; }
    .slick-dots li button {
      cursor: pointer;
      display: inline-block;
      width: 12px;
      height: 12px;
      padding: 0;
      border: 0;
      background: #453d59;
      border-radius: 50%;
      transition: all 0.3s ease-in-out; }
    .slick-dots li.slick-active button, .slick-dots li:hover button {
      background: #b9b2ca; }

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  position: absolute;
  font-size: 0;
  cursor: pointer;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  padding: 0;
  border: none;
  outline: none;
  z-index: 1; }
  .slick-prev:before,
  .slick-next:before {
    color: #453d59;
    text-align: center;
    font-size: 1.6rem;
    font-family: 'icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: 0; }
  .slick-prev:before {
    content: "\e810"; }

.slick-next {
  right: 0; }
  .slick-next:before {
    content: "\e811"; }

.slick--hide-btns .slick-prev,
.slick--hide-btns .slick-next {
  height: 100%;
  width: 15%; }
  @media (min-width: 992px) {
    .slick--hide-btns .slick-prev,
    .slick--hide-btns .slick-next {
      width: 20%; } }
  .slick--hide-btns .slick-prev:before,
  .slick--hide-btns .slick-next:before {
    display: none; }
  .slick--hide-btns .slick-prev.slick-disabled,
  .slick--hide-btns .slick-next.slick-disabled {
    pointer-events: none; }

@keyframes plyr-progress {
  to {
    background-position: 25px 0; } }
.plyr {
  position: relative;
  max-width: 100%;
  min-width: 200px;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  direction: ltr; }
  .plyr,
  .plyr *,
  .plyr *::after,
  .plyr *::before {
    box-sizing: border-box; }
  .plyr a, .plyr button, .plyr input, .plyr label {
    touch-action: manipulation; }
  .plyr:focus {
    outline: 0; }
  .plyr video,
  .plyr audio {
    width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: inherit; }
  .plyr input[type='range'] {
    display: block;
    height: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    appearance: none;
    cursor: pointer;
    border: none;
    background: transparent; }
    .plyr input[type='range']::-webkit-slider-runnable-track {
      height: 8px;
      background: transparent;
      border: 0;
      border-radius: 4px;
      user-select: none; }
    .plyr input[type='range']::-webkit-slider-thumb {
      -webkit-appearance: none;
      margin-top: -4px;
      position: relative;
      height: 16px;
      width: 16px;
      background: #fff;
      border: 2px solid transparent;
      border-radius: 100%;
      transition: background .2s ease, border .2s ease, transform .2s ease;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.15);
      box-sizing: border-box; }
    .plyr input[type='range']::-moz-range-track {
      height: 8px;
      background: transparent;
      border: 0;
      border-radius: 4px;
      user-select: none; }
    .plyr input[type='range']::-moz-range-thumb {
      position: relative;
      height: 16px;
      width: 16px;
      background: #fff;
      border: 2px solid transparent;
      border-radius: 100%;
      transition: background .2s ease, border .2s ease, transform .2s ease;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.15);
      box-sizing: border-box; }
    .plyr input[type='range']::-ms-track {
      height: 8px;
      background: transparent;
      border: 0;
      color: transparent; }
    .plyr input[type='range']::-ms-fill-upper {
      height: 8px;
      background: transparent;
      border: 0;
      border-radius: 4px;
      user-select: none; }
    .plyr input[type='range']::-ms-fill-lower {
      height: 8px;
      background: transparent;
      border: 0;
      border-radius: 4px;
      user-select: none;
      background: #fff; }
    .plyr input[type='range']::-ms-thumb {
      position: relative;
      height: 16px;
      width: 16px;
      background: #fff;
      border: 2px solid transparent;
      border-radius: 100%;
      transition: background .2s ease, border .2s ease, transform .2s ease;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.15);
      box-sizing: border-box;
      margin-top: 0; }
    .plyr input[type='range']::-ms-tooltip {
      display: none; }
    .plyr input[type='range']:focus {
      outline: 0; }
    .plyr input[type='range']::-moz-focus-outer {
      border: 0; }
    .plyr input[type='range'].tab-focus:focus {
      outline-offset: 3px; }
    .plyr input[type='range']:active::-webkit-slider-thumb {
      background: transparent;
      border-color: #fff;
      transform: scale(1.25); }
    .plyr input[type='range']:active::-moz-range-thumb {
      background: transparent;
      border-color: #fff;
      transform: scale(1.25); }
    .plyr input[type='range']:active::-ms-thumb {
      background: transparent;
      border-color: #fff;
      transform: scale(1.25); }

.plyr--video input[type='range'].tab-focus:focus {
  outline: 1px dotted rgba(255, 255, 255, 0.5); }

.plyr--audio input[type='range'].tab-focus:focus {
  outline: 1px dotted rgba(86, 93, 100, 0.5); }

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute !important;
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important; }

.plyr__video-wrapper {
  position: relative;
  background: #000;
  border-radius: inherit;
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC); }

.plyr__video-embed {
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: inherit; }
  .plyr__video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    user-select: none; }
  .plyr__video-embed > div {
    position: relative;
    padding-bottom: 200%;
    transform: translateY(-35.95%); }

.plyr .plyr__video-embed iframe {
  pointer-events: none; }

.plyr video::-webkit-media-text-track-container {
  display: none; }

.plyr__captions {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  transform: translateY(-60px);
  transition: transform .3s ease;
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-weight: 400; }
  .plyr__captions span {
    border-radius: 2px;
    padding: 3px 10px;
    background: rgba(0, 0, 0, 0.7);
    box-decoration-break: clone;
    line-height: 150%; }
  .plyr__captions span:empty {
    display: none; }
  @media (min-width: 768px) {
    .plyr__captions {
      font-size: 24px; } }

.plyr--captions-active .plyr__captions {
  display: block; }

.plyr--fullscreen-active .plyr__captions {
  font-size: 32px; }

.plyr--hide-controls .plyr__captions {
  transform: translateY(-20px); }

.plyr ::-webkit-media-controls {
  display: none; }

.plyr__controls {
  display: flex;
  align-items: center;
  line-height: 1;
  text-align: center; }
  .plyr__controls > button,
  .plyr__controls .plyr__progress,
  .plyr__controls .plyr__time {
    margin-left: 5px; }
    .plyr__controls > button:first-child,
    .plyr__controls .plyr__progress:first-child,
    .plyr__controls .plyr__time:first-child {
      margin-left: 0; }
  .plyr__controls .plyr__volume {
    margin-left: 5px; }
  .plyr__controls [data-plyr="pause"] {
    margin-left: 0; }
  .plyr__controls button {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    overflow: visible;
    vertical-align: middle;
    padding: 7px;
    border: 0;
    background: transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, opacity .3s ease;
    color: inherit; }
    .plyr__controls button svg {
      width: 18px;
      height: 18px;
      display: block;
      fill: currentColor; }
    .plyr__controls button:focus {
      outline: 0; }
  .plyr__controls .icon--exit-fullscreen,
  .plyr__controls .icon--muted,
  .plyr__controls .icon--captions-on {
    display: none; }
  @media (min-width: 480px) {
    .plyr__controls > button,
    .plyr__controls .plyr__progress,
    .plyr__controls .plyr__time {
      margin-left: 10px; } }

.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none; }

.plyr--video .plyr__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 50px 10px 10px;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  color: #fff;
  transition: opacity .3s ease; }
  .plyr--video .plyr__controls button.tab-focus:focus, .plyr--video .plyr__controls button:hover {
    background: transparent;
    color: #838386; }

.plyr--audio .plyr__controls {
  padding: 10px;
  border-radius: inherit;
  background: #fff;
  border: 1px solid #dbe3e8;
  color: #565D64; }
  .plyr--audio .plyr__controls button.tab-focus:focus, .plyr--audio .plyr__controls button:hover {
    background: #3498db;
    color: #fff; }

.plyr__play-large {
  display: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 12px;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 100%;
  color: #fff;
  transition: all .3s ease; }
  .plyr__play-large svg {
    position: relative;
    left: 2px;
    width: 28px;
    height: 30px;
    display: block;
    fill: none;
    stroke: currentColor; }
  .plyr__play-large:focus {
    outline: none; }

.plyr .plyr__play-large {
  display: inline-block; }

.plyr--audio .plyr__play-large {
  display: none; }

.plyr--playing .plyr__play-large {
  opacity: 0;
  visibility: hidden; }

.plyr__controls [data-plyr='pause'],
.plyr--playing .plyr__controls [data-plyr='play'] {
  display: none; }

.plyr--playing .plyr__controls [data-plyr='pause'] {
  display: inline-block; }

.plyr--fullscreen-active .icon--exit-fullscreen,
.plyr--muted .plyr__controls .icon--muted,
.plyr--captions-active .plyr__controls .icon--captions-on {
  display: block; }
  .plyr--fullscreen-active .icon--exit-fullscreen + svg,
  .plyr--muted .plyr__controls .icon--muted + svg,
  .plyr--captions-active .plyr__controls .icon--captions-on + svg {
    display: none; }

.plyr [data-plyr='captions'],
.plyr [data-plyr='fullscreen'] {
  display: none; }

.plyr--captions-enabled [data-plyr='captions'],
.plyr--fullscreen-enabled [data-plyr='fullscreen'] {
  display: inline-block; }

.plyr__tooltip {
  position: absolute;
  z-index: 2;
  bottom: 100%;
  margin-bottom: 10px;
  padding: 5px 7.5px;
  pointer-events: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform .2s .1s ease, opacity .2s .1s ease; }
  .plyr__tooltip::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(0, 0, 0, 0.7);
    border-left: 4px solid transparent;
    z-index: 2; }

.plyr button:hover .plyr__tooltip,
.plyr button.tab-focus:focus .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1); }

.plyr button:hover .plyr__tooltip {
  z-index: 3; }

.plyr__controls button:first-child .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%; }
  .plyr__controls button:first-child .plyr__tooltip::before {
    left: 16px; }

.plyr__controls button:last-child .plyr__tooltip {
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%; }
  .plyr__controls button:last-child .plyr__tooltip::before {
    left: auto;
    right: 16px;
    transform: translateX(50%); }

.plyr__controls button:first-child:hover .plyr__tooltip, .plyr__controls button:first-child.tab-focus:focus .plyr__tooltip,
.plyr__controls button:first-child .plyr__tooltip--visible,
.plyr__controls button:last-child:hover .plyr__tooltip,
.plyr__controls button:last-child.tab-focus:focus .plyr__tooltip,
.plyr__controls button:last-child .plyr__tooltip--visible {
  transform: translate(0, 0) scale(1); }

.plyr__progress {
  display: none;
  position: relative;
  flex: 1; }
  .plyr__progress input[type="range"] {
    position: relative;
    z-index: 2; }
    .plyr__progress input[type="range"]::-webkit-slider-runnable-track {
      background: transparent; }
    .plyr__progress input[type="range"]::-moz-range-track {
      background: transparent; }
    .plyr__progress input[type="range"]::-ms-fill-upper {
      background: transparent; }
  .plyr__progress .plyr__tooltip {
    left: 0; }

.plyr .plyr__progress {
  display: inline-block; }

.plyr__progress--buffer,
.plyr__progress--played,
.plyr__volume--display {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 8px;
  margin: -4px 0 0;
  padding: 0;
  vertical-align: top;
  appearance: none;
  border: none;
  border-radius: 100px; }
  .plyr__progress--buffer::-webkit-progress-bar,
  .plyr__progress--played::-webkit-progress-bar,
  .plyr__volume--display::-webkit-progress-bar {
    background: transparent; }
  .plyr__progress--buffer::-webkit-progress-value,
  .plyr__progress--played::-webkit-progress-value,
  .plyr__volume--display::-webkit-progress-value {
    background: currentColor;
    border-radius: 100px;
    min-width: 8px; }
  .plyr__progress--buffer::-moz-progress-bar,
  .plyr__progress--played::-moz-progress-bar,
  .plyr__volume--display::-moz-progress-bar {
    background: currentColor;
    border-radius: 100px;
    min-width: 8px; }
  .plyr__progress--buffer::-ms-fill,
  .plyr__progress--played::-ms-fill,
  .plyr__volume--display::-ms-fill {
    border-radius: 100px; }

.plyr__progress--played,
.plyr__volume--display {
  z-index: 1;
  color: #fff;
  background: transparent;
  transition: none; }
  .plyr__progress--played::-webkit-progress-value,
  .plyr__volume--display::-webkit-progress-value {
    min-width: 8px;
    max-width: 99%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: none; }
  .plyr__progress--played::-moz-progress-bar,
  .plyr__volume--display::-moz-progress-bar {
    min-width: 8px;
    max-width: 99%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: none; }
  .plyr__progress--played::-ms-fill,
  .plyr__volume--display::-ms-fill {
    display: none; }

.plyr__progress--buffer::-webkit-progress-value {
  transition: width .2s ease; }
.plyr__progress--buffer::-moz-progress-bar {
  transition: width .2s ease; }
.plyr__progress--buffer::-ms-fill {
  transition: width .2s ease; }

.plyr--video .plyr__progress--buffer,
.plyr--video .plyr__volume--display {
  background: rgba(255, 255, 255, 0.25); }

.plyr--video .plyr__progress--buffer {
  color: rgba(255, 255, 255, 0.25); }

.plyr--audio .plyr__progress--buffer,
.plyr--audio .plyr__volume--display {
  background: rgba(198, 214, 219, 0.67); }

.plyr--audio .plyr__progress--buffer {
  color: rgba(198, 214, 219, 0.67); }

.plyr--loading .plyr__progress--buffer {
  animation: plyr-progress 1s linear infinite;
  background-size: 25px 25px;
  background-repeat: repeat-x;
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15) 75%, transparent 75%, transparent);
  color: transparent; }

.plyr--video.plyr--loading .plyr__progress--buffer {
  background-color: rgba(255, 255, 255, 0.25); }

.plyr--audio.plyr--loading .plyr__progress--buffer {
  background-color: rgba(198, 214, 219, 0.67); }

.plyr__time {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px; }

.plyr__time + .plyr__time {
  display: none; }
  @media (min-width: 768px) {
    .plyr__time + .plyr__time {
      display: inline-block; } }
  .plyr__time + .plyr__time::before {
    content: '\2044';
    margin-right: 10px; }

.plyr__volume {
  display: none; }

.plyr .plyr__volume {
  flex: 1;
  position: relative; }
  .plyr .plyr__volume input[type="range"] {
    position: relative;
    z-index: 2; }
  @media (min-width: 480px) {
    .plyr .plyr__volume {
      display: block;
      max-width: 60px; } }
  @media (min-width: 768px) {
    .plyr .plyr__volume {
      max-width: 100px; } }

.plyr--is-ios .plyr__volume,
.plyr--is-ios [data-plyr='mute'] {
  display: none !important; }

.plyr--fullscreen-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 10000000;
  background: #000;
  border-radius: 0 !important; }
  .plyr--fullscreen-active video {
    height: 100%; }
  .plyr--fullscreen-active .plyr__video-wrapper {
    height: 100%;
    width: 100%; }
  .plyr--fullscreen-active .plyr__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; }
  .plyr--fullscreen-active.plyr--vimeo .plyr__video-wrapper {
    height: 0;
    top: 50%;
    transform: translateY(-50%); }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/* ==========================================================================
   Typography
   ========================================================================== */
@font-face {
  font-family: 'icons';
  src: url("../fonts/icons.eot?64x7qr");
  src: url("../fonts/icons.eot?64x7qr#iefix") format("embedded-opentype"), url("../fonts/icons.ttf?64x7qr") format("truetype"), url("../fonts/icons.woff?64x7qr") format("woff"), url("../fonts/icons.svg?64x7qr#icons") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"],
[class*=" icon-"],
.icon,
input[type=checkbox]:checked:before,
.acf-icon.geocode-btn:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-pinterest:before {
  content: "\70"; }

.icon-tripadvisor:before {
  content: "\e901"; }

.icon-paypal:before {
  content: "\50"; }

.icon-twitter:before {
  content: "\54"; }

.icon-tumblr:before {
  content: "\74"; }

.icon-vimeo:before {
  content: "\76"; }

.icon-youtube:before {
  content: "\79"; }

.icon-cart:before {
  content: "\e600"; }

.icon-x:before {
  content: "\e606"; }

.icon-arrow-down:before {
  content: "\e607"; }

.icon-facebook:before {
  content: "\e805"; }

.icon-tick:before {
  content: "\e806"; }

.icon-arrow-right:before {
  content: "\e80e"; }

.icon-arrow-left:before {
  content: "\e800"; }

.icon-chevron-left:before {
  content: "\e810"; }

.icon-chevron-right:before {
  content: "\e811"; }

.icon-chevron-up:before {
  content: "\e812"; }

.icon-chevron-down:before {
  content: "\e813"; }

.icon-googleplus:before {
  content: "\e815"; }

.icon-linkedin:before {
  content: "\e900"; }

.icon-instagram:before {
  content: "\e903"; }

.icon-search:before {
  content: "\e902"; }

.icon-clock:before {
  content: "\e905"; }

body {
  color: #453d59;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.description h1, .description .h1,
.description h2,
.description .h2,
.description .page-title--sm,
.description h3,
.description .h3,
.description h4,
.description .h4,
.description h5,
.description .h5,
.description h6,
.description .h6,
.description p,
.wysiwyg-ce h1,
.wysiwyg-ce .h1,
.wysiwyg-ce h2,
.wysiwyg-ce .h2,
.wysiwyg-ce .page-title--sm,
.wysiwyg-ce h3,
.wysiwyg-ce .h3,
.wysiwyg-ce h4,
.wysiwyg-ce .h4,
.wysiwyg-ce h5,
.wysiwyg-ce .h5,
.wysiwyg-ce h6,
.wysiwyg-ce .h6,
.wysiwyg-ce p {
  margin-bottom: 1rem;
  word-wrap: break-word; }
  .description h1:last-child, .description .h1:last-child,
  .description h2:last-child,
  .description .h2:last-child,
  .description .page-title--sm:last-child,
  .description h3:last-child,
  .description .h3:last-child,
  .description h4:last-child,
  .description .h4:last-child,
  .description h5:last-child,
  .description .h5:last-child,
  .description h6:last-child,
  .description .h6:last-child,
  .description p:last-child,
  .wysiwyg-ce h1:last-child,
  .wysiwyg-ce .h1:last-child,
  .wysiwyg-ce h2:last-child,
  .wysiwyg-ce .h2:last-child,
  .wysiwyg-ce .page-title--sm:last-child,
  .wysiwyg-ce h3:last-child,
  .wysiwyg-ce .h3:last-child,
  .wysiwyg-ce h4:last-child,
  .wysiwyg-ce .h4:last-child,
  .wysiwyg-ce h5:last-child,
  .wysiwyg-ce .h5:last-child,
  .wysiwyg-ce h6:last-child,
  .wysiwyg-ce .h6:last-child,
  .wysiwyg-ce p:last-child {
    margin: 0px; }
.description a,
.wysiwyg-ce a {
  color: #838386;
  text-decoration: none;
  transition: all .2s; }
  .description a:hover,
  .wysiwyg-ce a:hover {
    color: #453d59; }
.description ul,
.description ol,
.wysiwyg-ce ul,
.wysiwyg-ce ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 40px; }
  .description ul ul,
  .description ol ul,
  .wysiwyg-ce ul ul,
  .wysiwyg-ce ol ul {
    list-style-type: circle;
    margin-bottom: 0; }
.description ul,
.wysiwyg-ce ul {
  list-style-type: disc; }
.description ol,
.wysiwyg-ce ol {
  list-style-type: decimal; }
.description blockquote,
.wysiwyg-ce blockquote {
  font-size: 1.25rem;
  font-family: "Rokkitt", Helvetica, Arial, sans-serif;
  line-height: 1.7;
  margin: 0 0 1rem;
  padding: 0; }
  .description blockquote:before, .description blockquote:after,
  .wysiwyg-ce blockquote:before,
  .wysiwyg-ce blockquote:after {
    display: none; }

.custom-one-fm,
[data-font="custom-one"] {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif; }

.custom-two-fm,
[data-font="custom-two"] {
  font-weight: 400;
  font-family: "Rokkitt", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

h1, .h1,
h2,
.h2,
.page-title--sm,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #453d59;
  font-size: 1rem;
  font-family: "Rokkitt", Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 1.2em;
  padding: 0;
  line-height: 1.2;
  display: block; }
  h1.no-margin, .no-margin.h1,
  h2.no-margin,
  .no-margin.h2,
  .no-margin.page-title--sm,
  h3.no-margin,
  .no-margin.h3,
  h4.no-margin,
  .no-margin.h4,
  h5.no-margin,
  .no-margin.h5,
  h6.no-margin,
  .no-margin.h6 {
    margin-bottom: 0; }

h1, .h1 {
  font-size: 2.3333333333em;
  font-weight: 500; }
  @media (min-width: 768px) {
    h1, .h1 {
      font-size: 3.3333333333em; } }

h2, .h2, .page-title--sm {
  font-size: 1.6666666667em;
  font-weight: 500; }
  @media (min-width: 768px) {
    h2, .h2, .page-title--sm {
      font-size: 2.2222222222em; } }

h3, .h3 {
  font-size: 1.3333333333em;
  font-weight: 500; }
  @media (min-width: 768px) {
    h3, .h3 {
      font-size: 1.4444444444em; } }

h4, .h4 {
  font-size: 1.3333333333em;
  font-weight: 500; }

h5, .h5,
h6,
.h6 {
  font-size: 1em;
  margin-bottom: 0; }

.fs-10px,
[data-font-size="10px"] {
  font-size: 10px;
  line-height: 15px;
  font-size: 0.625rem;
  line-height: 0.9375rem; }

.fs-12px,
[data-font-size="12px"] {
  font-size: 12px;
  line-height: 18px;
  font-size: 0.75rem;
  line-height: 1.125rem; }

.fs-13px,
[data-font-size="13px"] {
  font-size: 13px;
  line-height: 19.5px;
  font-size: 0.8125rem;
  line-height: 1.21875rem; }

.fs-14px,
[data-font-size="14px"] {
  font-size: 14px;
  line-height: 21px;
  font-size: 0.875rem;
  line-height: 1.3125rem; }

.fs-15px,
[data-font-size="15px"] {
  font-size: 15px;
  line-height: 22.5px;
  font-size: 0.9375rem;
  line-height: 1.40625rem; }

.fs-16px,
[data-font-size="16px"] {
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.5rem; }

.fs-17px,
[data-font-size="17px"] {
  font-size: 17px;
  line-height: 25.5px;
  font-size: 1.0625rem;
  line-height: 1.59375rem; }

.fs-18px,
[data-font-size="18px"] {
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.6875rem; }

.fs-19px,
[data-font-size="19px"] {
  font-size: 19px;
  line-height: 28.5px;
  font-size: 1.1875rem;
  line-height: 1.78125rem; }

.fs-20px,
[data-font-size="20px"] {
  font-size: 20px;
  line-height: 30px;
  font-size: 1.25rem;
  line-height: 1.875rem; }

.fs-22px,
[data-font-size="22px"] {
  font-size: 22px;
  line-height: 33px;
  font-size: 1.375rem;
  line-height: 2.0625rem; }

.fs-24px,
[data-font-size="24px"] {
  font-size: 24px;
  line-height: 36px;
  font-size: 1.5rem;
  line-height: 2.25rem; }

.fs-26px,
[data-font-size="26px"] {
  font-size: 26px;
  line-height: 39px;
  font-size: 1.625rem;
  line-height: 2.4375rem; }

.fs-28px,
[data-font-size="28px"] {
  font-size: 28px;
  line-height: 42px;
  font-size: 1.75rem;
  line-height: 2.625rem; }

.fs-30px,
[data-font-size="30px"] {
  font-size: 30px;
  line-height: 45px;
  font-size: 1.875rem;
  line-height: 2.8125rem; }

.fs-32px,
[data-font-size="32px"] {
  font-size: 32px;
  line-height: 48px;
  font-size: 2rem;
  line-height: 3rem; }

.fs-34px,
[data-font-size="34px"] {
  font-size: 34px;
  line-height: 51px;
  font-size: 2.125rem;
  line-height: 3.1875rem; }

.fs-36px,
[data-font-size="36px"] {
  font-size: 36px;
  line-height: 54px;
  font-size: 2.25rem;
  line-height: 3.375rem; }

.fs-38px,
[data-font-size="38px"] {
  font-size: 38px;
  line-height: 57px;
  font-size: 2.375rem;
  line-height: 3.5625rem; }

.fs-40px,
[data-font-size="40px"] {
  font-size: 40px;
  line-height: 60px;
  font-size: 2.5rem;
  line-height: 3.75rem; }

.fs-42px,
[data-font-size="42px"] {
  font-size: 42px;
  line-height: 63px;
  font-size: 2.625rem;
  line-height: 3.9375rem; }

.fs-44px,
[data-font-size="44px"] {
  font-size: 44px;
  line-height: 66px;
  font-size: 2.75rem;
  line-height: 4.125rem; }

.fs-46px,
[data-font-size="46px"] {
  font-size: 46px;
  line-height: 69px;
  font-size: 2.875rem;
  line-height: 4.3125rem; }

.fs-50px,
[data-font-size="50px"] {
  font-size: 50px;
  line-height: 75px;
  font-size: 3.125rem;
  line-height: 4.6875rem; }

.fs-52px,
[data-font-size="52px"] {
  font-size: 52px;
  line-height: 78px;
  font-size: 3.25rem;
  line-height: 4.875rem; }

.fs-54px,
[data-font-size="54px"] {
  font-size: 54px;
  line-height: 81px;
  font-size: 3.375rem;
  line-height: 5.0625rem; }

.fs-56px,
[data-font-size="56px"] {
  font-size: 56px;
  line-height: 84px;
  font-size: 3.5rem;
  line-height: 5.25rem; }

.fs-58px,
[data-font-size="58px"] {
  font-size: 58px;
  line-height: 87px;
  font-size: 3.625rem;
  line-height: 5.4375rem; }

.fs-60px,
[data-font-size="60px"] {
  font-size: 60px;
  line-height: 90px;
  font-size: 3.75rem;
  line-height: 5.625rem; }

.fs-72px,
[data-font-size="72px"] {
  font-size: 72px;
  line-height: 108px;
  font-size: 4.5rem;
  line-height: 6.75rem; }

.fs-84px,
[data-font-size="84px"] {
  font-size: 84px;
  line-height: 126px;
  font-size: 5.25rem;
  line-height: 7.875rem; }

.fs-120px,
[data-font-size="120px"] {
  font-size: 120px;
  line-height: 180px;
  font-size: 7.5rem;
  line-height: 11.25rem; }

.fs-144px,
[data-font-size="144px"] {
  font-size: 144px;
  line-height: 216px;
  font-size: 9rem;
  line-height: 13.5rem; }

.fs-168px,
[data-font-size="168px"] {
  font-size: 168px;
  line-height: 252px;
  font-size: 10.5rem;
  line-height: 15.75rem; }

.fs-192px,
[data-font-size="192px"] {
  font-size: 192px;
  line-height: 288px;
  font-size: 12rem;
  line-height: 18rem; }

@media (min-width: 768px) {
  .fs-10px,
  [data-font-size="10px"] {
    font-size: 10px;
    line-height: 15px;
    font-size: 0.625rem;
    line-height: 0.9375rem; }

  .fs-12px,
  [data-font-size="12px"] {
    font-size: 12px;
    line-height: 18px;
    font-size: 0.75rem;
    line-height: 1.125rem; }

  .fs-13px,
  [data-font-size="13px"] {
    font-size: 13px;
    line-height: 19.5px;
    font-size: 0.8125rem;
    line-height: 1.21875rem; }

  .fs-14px,
  [data-font-size="14px"] {
    font-size: 14px;
    line-height: 21px;
    font-size: 0.875rem;
    line-height: 1.3125rem; }

  .fs-15px,
  [data-font-size="15px"] {
    font-size: 15px;
    line-height: 22.5px;
    font-size: 0.9375rem;
    line-height: 1.40625rem; }

  .fs-16px,
  [data-font-size="16px"] {
    font-size: 16px;
    line-height: 24px;
    font-size: 1rem;
    line-height: 1.5rem; }

  .fs-17px,
  [data-font-size="17px"] {
    font-size: 17px;
    line-height: 25.5px;
    font-size: 1.0625rem;
    line-height: 1.59375rem; }

  .fs-18px,
  [data-font-size="18px"] {
    font-size: 18px;
    line-height: 27px;
    font-size: 1.125rem;
    line-height: 1.6875rem; }

  .fs-19px,
  [data-font-size="19px"] {
    font-size: 19px;
    line-height: 28.5px;
    font-size: 1.1875rem;
    line-height: 1.78125rem; }

  .fs-20px,
  [data-font-size="20px"] {
    font-size: 20px;
    line-height: 30px;
    font-size: 1.25rem;
    line-height: 1.875rem; }

  .fs-22px,
  [data-font-size="22px"] {
    font-size: 22px;
    line-height: 33px;
    font-size: 1.375rem;
    line-height: 2.0625rem; }

  .fs-24px,
  [data-font-size="24px"] {
    font-size: 24px;
    line-height: 36px;
    font-size: 1.5rem;
    line-height: 2.25rem; }

  .fs-26px,
  [data-font-size="26px"] {
    font-size: 26px;
    line-height: 39px;
    font-size: 1.625rem;
    line-height: 2.4375rem; }

  .fs-28px,
  [data-font-size="28px"] {
    font-size: 28px;
    line-height: 42px;
    font-size: 1.75rem;
    line-height: 2.625rem; }

  .fs-30px,
  [data-font-size="30px"] {
    font-size: 30px;
    line-height: 45px;
    font-size: 1.875rem;
    line-height: 2.8125rem; }

  .fs-32px,
  [data-font-size="32px"] {
    font-size: 32px;
    line-height: 48px;
    font-size: 2rem;
    line-height: 3rem; }

  .fs-34px,
  [data-font-size="34px"] {
    font-size: 34px;
    line-height: 51px;
    font-size: 2.125rem;
    line-height: 3.1875rem; }

  .fs-36px,
  [data-font-size="36px"] {
    font-size: 36px;
    line-height: 54px;
    font-size: 2.25rem;
    line-height: 3.375rem; }

  .fs-38px,
  [data-font-size="38px"] {
    font-size: 38px;
    line-height: 57px;
    font-size: 2.375rem;
    line-height: 3.5625rem; }

  .fs-40px,
  [data-font-size="40px"] {
    font-size: 40px;
    line-height: 60px;
    font-size: 2.5rem;
    line-height: 3.75rem; }

  .fs-42px,
  [data-font-size="42px"] {
    font-size: 42px;
    line-height: 63px;
    font-size: 2.625rem;
    line-height: 3.9375rem; }

  .fs-44px,
  [data-font-size="44px"] {
    font-size: 44px;
    line-height: 66px;
    font-size: 2.75rem;
    line-height: 4.125rem; }

  .fs-46px,
  [data-font-size="46px"] {
    font-size: 46px;
    line-height: 69px;
    font-size: 2.875rem;
    line-height: 4.3125rem; }

  .fs-50px,
  [data-font-size="50px"] {
    font-size: 50px;
    line-height: 75px;
    font-size: 3.125rem;
    line-height: 4.6875rem; }

  .fs-52px,
  [data-font-size="52px"] {
    font-size: 52px;
    line-height: 78px;
    font-size: 3.25rem;
    line-height: 4.875rem; }

  .fs-54px,
  [data-font-size="54px"] {
    font-size: 54px;
    line-height: 81px;
    font-size: 3.375rem;
    line-height: 5.0625rem; }

  .fs-56px,
  [data-font-size="56px"] {
    font-size: 56px;
    line-height: 84px;
    font-size: 3.5rem;
    line-height: 5.25rem; }

  .fs-58px,
  [data-font-size="58px"] {
    font-size: 58px;
    line-height: 87px;
    font-size: 3.625rem;
    line-height: 5.4375rem; }

  .fs-60px,
  [data-font-size="60px"] {
    font-size: 60px;
    line-height: 90px;
    font-size: 3.75rem;
    line-height: 5.625rem; }

  .fs-72px,
  [data-font-size="72px"] {
    font-size: 72px;
    line-height: 108px;
    font-size: 4.5rem;
    line-height: 6.75rem; }

  .fs-84px,
  [data-font-size="84px"] {
    font-size: 84px;
    line-height: 126px;
    font-size: 5.25rem;
    line-height: 7.875rem; }

  .fs-120px,
  [data-font-size="120px"] {
    font-size: 120px;
    line-height: 180px;
    font-size: 7.5rem;
    line-height: 11.25rem; }

  .fs-144px,
  [data-font-size="144px"] {
    font-size: 144px;
    line-height: 216px;
    font-size: 9rem;
    line-height: 13.5rem; }

  .fs-168px,
  [data-font-size="168px"] {
    font-size: 168px;
    line-height: 252px;
    font-size: 10.5rem;
    line-height: 15.75rem; }

  .fs-192px,
  [data-font-size="192px"] {
    font-size: 192px;
    line-height: 288px;
    font-size: 12rem;
    line-height: 18rem; } }
.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 10; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 12; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 13; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 14; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 15; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 16; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 17; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 18; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 19; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 20; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 22; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 24; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 26; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 28; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 30; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 32; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 34; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 36; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 38; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 40; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 42; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 44; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 46; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 50; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 52; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 54; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 56; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 58; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 60; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 72; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 84; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 120; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 144; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 168; }

.lh-line-heightpx,
[data-line-height="line-heightpx"] {
  line-height: 192; }

@media (min-width: 768px) {
  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 10; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 12; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 13; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 14; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 15; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 16; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 17; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 18; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 19; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 20; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 22; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 24; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 26; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 28; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 30; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 32; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 34; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 36; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 38; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 40; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 42; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 44; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 46; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 50; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 52; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 54; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 56; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 58; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 60; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 72; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 84; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 120; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 144; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 168; }

  .lh-line-heightpx,
  [data-line-height="line-heightpx"] {
    line-height: 192; } }
/* ==========================================================================
   Animation
   ========================================================================== */
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-moz-keyframes loading {
  0% {
    -moz-transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg); } }
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
/* ==========================================================================
   Base
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html,
body {
  width: 100%; }

html {
  font-size: 18px;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  background: #fff !important;
  color: #453d59;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  body.is-loading {
    overflow: hidden; }
    body.is-loading * {
      cursor: wait; }

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0; }

img,
object,
embed,
video,
svg {
  max-width: 100%;
  height: auto; }

img {
  border: 0;
  vertical-align: middle;
  height: auto; }

@-moz-document url-prefix() {
  img {
    image-rendering: optimizequality; } }
ol {
  list-style: decimal; }

mark {
  background: #fff;
  color: #000; }

ins {
  text-decoration: none; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

address {
  font-style: normal; }

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="submit"],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  outline: none; }

.wf-loading * {
  visibility: hidden; }

button,
select {
  margin: 0; }

input,
textarea,
button,
select {
  font: inherit;
  font-weight: 400; }

blockquote {
  font-size: 1.25rem;
  font-family: "Rokkitt", Helvetica, Arial, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0; }

blockquote cite {
  display: block;
  font-style: normal;
  margin-top: 0.5em; }

blockquote,
q {
  quotes: '"' '"' "'" "'"; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  display: inline-block;
  height: 0;
  width: .15em; }

blockquote:before,
q:before {
  content: open-quote;
  margin-left: -.2em; }

blockquote:after,
q:after {
  content: close-quote;
  margin-left: -.3em; }

:focus {
  outline: none; }

strong, b {
  font-weight: 500; }

/* ==========================================================================
     Links
     ========================================================================== */
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out; }
  a:focus {
    outline: 0 !important; }

/* ==========================================================================
   Site
   ========================================================================== */
.wrapper {
  width: 100%;
  z-index: 1; }

.site-content {
  width: 100%;
  height: 100%; }

#primary {
  background: #fff;
  width: 100%;
  height: 100%; }

.page-wrap {
  background: #fff;
  padding-top: 80px;
  width: 100%;
  position: relative;
  backface-visibility: hidden; }
  .cover-is-visible .page-wrap {
    padding-top: 0; }
  @media (min-width: 992px) {
    .page-wrap {
      padding-top: 120px; } }

.page-header {
  text-align: center;
  padding-top: 3rem; }

.page-title {
  display: block; }

/* ==========================================================================
   Error 404
   ========================================================================== */
body.error404 .wrapper {
  height: auto; }
body.error404 .not-found h1, body.error404 .not-found .h1 {
  margin-bottom: 2rem; }
@media (min-width: 768px) {
  body.error404 .search-box {
    max-width: 50%;
    margin: 0 auto; } }
body.error404 .search-box__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

/* ==========================================================================
   Helper
   ========================================================================== */
.checkbox,
.inline {
  display: inline-block; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.text-uc {
  text-transform: uppercase; }

.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }

  .text-sm-right {
    text-align: right !important; }

  .text-sm-center {
    text-align: center !important; } }
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }

  .text-md-right {
    text-align: right !important; }

  .text-md-center {
    text-align: center !important; } }
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }

  .text-lg-right {
    text-align: right !important; }

  .text-lg-center {
    text-align: center !important; } }
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }

  .text-xl-right {
    text-align: right !important; }

  .text-xl-center {
    text-align: center !important; } }
.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-normal {
  font-weight: normal; }

.font-weight-bold {
  font-weight: bold; }

.font-italic {
  font-style: italic; }

.clear {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  visibility: hidden; }

.cl {
  clear: both; }

.screen-reader-text,
.screen-reader-response,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

hr {
  clear: both;
  height: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #d3d3d3; }

.hr--lg {
  margin-top: 2rem;
  margin-bottom: 2rem; }

.hr--clear {
  border: 0;
  height: 1px; }

.list--inline {
  padding-left: 0;
  list-style: none; }
  .list--inline > li {
    display: inline-block; }

.close {
  font-size: 0px;
  display: block;
  color: #fff;
  position: absolute;
  top: 40px;
  right: 20px;
  border: none;
  width: 30px;
  height: 40px;
  box-sizing: content-box; }
  .close .trigger {
    height: 2px !important;
    width: 30px;
    display: block;
    position: absolute; }
    .close .trigger:before, .close .trigger:after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: #fff; }
    .close .trigger:before {
      transform: rotate(45deg); }
    .close .trigger:after {
      transform: rotate(-45deg); }

.image-container {
  position: relative;
  background: #eeeeee;
  line-height: 0;
  display: block;
  max-width: 100%;
  transition: opacity 0.3s; }

.image-placholder {
  background: #eeeeee; }

.content-ratio {
  position: relative;
  width: 100%;
  line-height: 0;
  height: 0;
  overflow: hidden; }
  .content-ratio img,
  .content-ratio iframe,
  .content-ratio video {
    left: 0;
    top: 0;
    position: absolute;
    width: 100% !important; }

.lazyload, .lazyloading {
  opacity: 0; }
  .no-js .lazyload,
  .no-js .lazyloading {
    opacity: 1; }

.lazyloaded {
  opacity: 1;
  backface-visibility: hidden;
  transition: opacity 0.3s; }

.no-js img.lazyload {
  display: none; }

.responsive-media,
.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }
  .responsive-media iframe,
  .responsive-media embed,
  .responsive-media video,
  .responsive-video iframe,
  .responsive-video embed,
  .responsive-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* ==========================================================================
   Padding
   ========================================================================== */
.pt-0 {
  padding-top: 0 !important; }

.pr-0 {
  padding-right: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pl-0 {
  padding-left: 0 !important; }

.pt-50 {
  padding-top: 0.75 !important; }

.pr-50 {
  padding-right: 0.75 !important; }

.pb-50 {
  padding-bottom: 0.75 !important; }

.pl-50 {
  padding-left: 0.75 !important; }

.pt-100 {
  padding-top: 1.5 !important; }

.pr-100 {
  padding-right: 1.5 !important; }

.pb-100 {
  padding-bottom: 1.5 !important; }

.pl-100 {
  padding-left: 1.5 !important; }

.pt-150 {
  padding-top: 2.25 !important; }

.pr-150 {
  padding-right: 2.25 !important; }

.pb-150 {
  padding-bottom: 2.25 !important; }

.pl-150 {
  padding-left: 2.25 !important; }

.pt-200 {
  padding-top: 3 !important; }

.pr-200 {
  padding-right: 3 !important; }

.pb-200 {
  padding-bottom: 3 !important; }

.pl-200 {
  padding-left: 3 !important; }

.pt-250 {
  padding-top: 3.75 !important; }

.pr-250 {
  padding-right: 3.75 !important; }

.pb-250 {
  padding-bottom: 3.75 !important; }

.pl-250 {
  padding-left: 3.75 !important; }

.pt-300 {
  padding-top: 4.5 !important; }

.pr-300 {
  padding-right: 4.5 !important; }

.pb-300 {
  padding-bottom: 4.5 !important; }

.pl-300 {
  padding-left: 4.5 !important; }

/* ==========================================================================
   Loading
   ========================================================================== */
.loading {
  display: block;
  opacity: 0;
  visibility: hidden;
  z-index: 109;
  transition: visibility 0s 1s, opacity 0.3s ease-in; }
  .loading > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 100%; }
  .is-loading .loading {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s 0.4s ease-in; }

/* ==========================================================================
   Grids and columns
   ========================================================================== */
@media (min-width: 992px) {
  .container-fluid {
    max-width: 1140px; } }
/* ==========================================================================
   Pagination
   ========================================================================== */
.navigation {
  font-size: 0.8888888889em;
  width: 100%;
  text-align: right;
  clear: both; }
  .navigation ul li {
    display: inline-block;
    zoom: 1; }
  .navigation .page-numbers {
    padding: 0 10px;
    text-decoration: none; }
  .navigation a:hover,
  .navigation .current {
    color: #838386; }

/* ==========================================================================
   Tables
   ========================================================================== */
table {
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0; }
  table th,
  table td {
    padding: 10px 0;
    font-weight: normal;
    text-align: left;
    font-weight: 400; }
  table td {
    border-top: 1px solid #d3d3d3; }
  table tfoot th {
    text-align: left; }
  table tfoot td {
    text-align: right; }

/* ==========================================================================
   Gmaps
   ========================================================================== */
#gmap-container {
  height: 300px;
  margin-top: 0;
  position: relative; }
  @media (min-width: 768px) {
    #gmap-container {
      height: 600px; } }

#map-canvas {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #eeeeee; }

#listing-map {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover; }

/* ==========================================================================
   Free to Book
   ========================================================================== */
.free_to_book_container {
  background: #e9eff0; }

.free_to_book__heading-container {
  margin-top: 2rem; }

.free_to_book__heading-container .col-sm-6 {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.free_to_book_widget #ftb-property-widget {
  margin-top: 0;
  max-width: 400px; }
.free_to_book_widget h3, .free_to_book_widget .h3 {
  padding-left: 1rem;
  padding-right: 1rem; }
@media (min-width: 576px) {
  .free_to_book_widget:before {
    content: '';
    height: 100%;
    width: 1px;
    background: #d3d3d3;
    position: absolute;
    left: 0;
    top: 0; } }

.free-to-book-single #ftb-property-widget {
  padding: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem; }

/* ==========================================================================
    Forms
   ========================================================================== */
::-webkit-input-placeholder {
  color: #453d59; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #453d59; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #453d59; }

:-ms-input-placeholder {
  color: #453d59; }

/* ==========================================================================
     Buttons
   ========================================================================== */
.btn, .acf-button {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  display: inline-block;
  color: #fff;
  background: #453d59;
  border: 1px solid #453d59;
  margin: 0;
  width: auto;
  font-weight: 400;
  position: relative;
  text-decoration: none;
  margin: 0;
  outline: 0;
  vertical-align: middle;
  white-space: normal;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0.5rem 1.2rem;
  line-height: 1.75;
  transition: all 0.2s ease-in; }
  .btn:hover, .acf-button:hover {
    color: #fff;
    cursor: pointer;
    text-decoration: none; }
  .btn:focus, .acf-button:focus {
    outline: 0; }

.btn--icon > svg {
  max-width: 18px;
  height: auto;
  position: absolute;
  left: 5%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }
  .btn--icon > svg polygon,
  .btn--icon > svg path {
    fill: #838386;
    transition: fill 0.2s ease; }

.btn:hover > svg polygon, .acf-button:hover > svg polygon,
.btn:hover > svg path,
.acf-button:hover > svg path {
  fill: #453d59; }

.btn > span[class*="icon-"], .acf-button > span[class*="icon-"] {
  color: #d3d3d3;
  transition: color 0.2s ease; }

.btn:hover > [class^=icon-], .acf-button:hover > [class^=icon-] {
  color: #453d59; }

.btn--secondary {
  color: #453d59;
  border: 1px solid #453d59;
  background: #fff; }
  .btn--secondary:hover {
    color: #453d59; }

.btn--link {
  background: transparent;
  border-color: transparent;
  color: #453d59;
  font-weight: 400;
  padding: 0; }

.btn--t {
  background: transparent; }

.btn--disabled {
  color: #d3d3d3 !important;
  cursor: default !important; }
  .btn--disabled > svg {
    fill: #d3d3d3 !important; }

.btn--sm {
  font-size: 0.8888888889rem;
  padding: 0.4rem 0.75rem;
  line-height: 1.5; }

.btn--icon {
  padding-left: 2rem; }

.btn--block {
  width: 100%;
  display: block; }

/* ==========================================================================
     Inputs
     ========================================================================== */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

.form-group label {
  display: inline-block;
  margin-bottom: .5rem; }

.form-inline label {
  margin-bottom: 0; }

.form-control::-webkit-input-placeholder, select::-webkit-input-placeholder, .wpcf7-text::-webkit-input-placeholder, .acf-field textarea::-webkit-input-placeholder,
.acf-field select::-webkit-input-placeholder,
.acf-field input[type="text"]::-webkit-input-placeholder,
.acf-field input[type="search"]::-webkit-input-placeholder,
.acf-field input[type="number"]::-webkit-input-placeholder,
.acf-field input[type="url"]::-webkit-input-placeholder,
.acf-field input[type="email"]::-webkit-input-placeholder {
  transition: color 0.2s ease-in-out; }
.form-control:-moz-placeholder, select:-moz-placeholder, .wpcf7-text:-moz-placeholder, .acf-field textarea:-moz-placeholder,
.acf-field input[type="text"]:-moz-placeholder,
.acf-field input[type="search"]:-moz-placeholder,
.acf-field input[type="number"]:-moz-placeholder,
.acf-field input[type="url"]:-moz-placeholder,
.acf-field input[type="email"]:-moz-placeholder {
  transition: color 0.2s ease-in-out; }
.form-control::-moz-placeholder, select::-moz-placeholder, .wpcf7-text::-moz-placeholder, .acf-field textarea::-moz-placeholder,
.acf-field select::-moz-placeholder,
.acf-field input[type="text"]::-moz-placeholder,
.acf-field input[type="search"]::-moz-placeholder,
.acf-field input[type="number"]::-moz-placeholder,
.acf-field input[type="url"]::-moz-placeholder,
.acf-field input[type="email"]::-moz-placeholder {
  transition: color 0.2s ease-in-out; }
.form-control:-ms-input-placeholder, select:-ms-input-placeholder, .wpcf7-text:-ms-input-placeholder, .acf-field textarea:-ms-input-placeholder,
.acf-field input[type="text"]:-ms-input-placeholder,
.acf-field input[type="search"]:-ms-input-placeholder,
.acf-field input[type="number"]:-ms-input-placeholder,
.acf-field input[type="url"]:-ms-input-placeholder,
.acf-field input[type="email"]:-ms-input-placeholder {
  transition: color 0.2s ease-in-out; }
.form-control:focus, select:focus, .wpcf7-text:focus, .acf-field textarea:focus,
.acf-field input[type="text"]:focus,
.acf-field input[type="search"]:focus,
.acf-field input[type="number"]:focus,
.acf-field input[type="url"]:focus,
.acf-field input[type="email"]:focus {
  outline: 0;
  border-color: #b6b6b6; }
.form-control:hover::-webkit-input-placeholder, select:hover::-webkit-input-placeholder, .wpcf7-text:hover::-webkit-input-placeholder, .acf-field textarea:hover::-webkit-input-placeholder,
.acf-field input[type="text"]:hover::-webkit-input-placeholder,
.acf-field input[type="search"]:hover::-webkit-input-placeholder,
.acf-field input[type="number"]:hover::-webkit-input-placeholder,
.acf-field input[type="url"]:hover::-webkit-input-placeholder,
.acf-field input[type="email"]:hover::-webkit-input-placeholder, .form-control:focus::-webkit-input-placeholder, select:focus::-webkit-input-placeholder, .wpcf7-text:focus::-webkit-input-placeholder, .acf-field textarea:focus::-webkit-input-placeholder,
.acf-field input[type="text"]:focus::-webkit-input-placeholder,
.acf-field input[type="search"]:focus::-webkit-input-placeholder,
.acf-field input[type="number"]:focus::-webkit-input-placeholder,
.acf-field input[type="url"]:focus::-webkit-input-placeholder,
.acf-field input[type="email"]:focus::-webkit-input-placeholder {
  color: #453d59; }
.form-control:hover:-moz-placeholder, select:hover:-moz-placeholder, .wpcf7-text:hover:-moz-placeholder, .acf-field textarea:hover:-moz-placeholder,
.acf-field input[type="text"]:hover:-moz-placeholder,
.acf-field input[type="search"]:hover:-moz-placeholder,
.acf-field input[type="number"]:hover:-moz-placeholder,
.acf-field input[type="url"]:hover:-moz-placeholder,
.acf-field input[type="email"]:hover:-moz-placeholder, .form-control:focus:-moz-placeholder, select:focus:-moz-placeholder, .wpcf7-text:focus:-moz-placeholder, .acf-field textarea:focus:-moz-placeholder,
.acf-field input[type="text"]:focus:-moz-placeholder,
.acf-field input[type="search"]:focus:-moz-placeholder,
.acf-field input[type="number"]:focus:-moz-placeholder,
.acf-field input[type="url"]:focus:-moz-placeholder,
.acf-field input[type="email"]:focus:-moz-placeholder {
  color: #453d59; }
.form-control:hover::-moz-placeholder, select:hover::-moz-placeholder, .wpcf7-text:hover::-moz-placeholder, .acf-field textarea:hover::-moz-placeholder,
.acf-field input[type="text"]:hover::-moz-placeholder,
.acf-field input[type="search"]:hover::-moz-placeholder,
.acf-field input[type="number"]:hover::-moz-placeholder,
.acf-field input[type="url"]:hover::-moz-placeholder,
.acf-field input[type="email"]:hover::-moz-placeholder, .form-control:focus::-moz-placeholder, select:focus::-moz-placeholder, .wpcf7-text:focus::-moz-placeholder, .acf-field textarea:focus::-moz-placeholder,
.acf-field input[type="text"]:focus::-moz-placeholder,
.acf-field input[type="search"]:focus::-moz-placeholder,
.acf-field input[type="number"]:focus::-moz-placeholder,
.acf-field input[type="url"]:focus::-moz-placeholder,
.acf-field input[type="email"]:focus::-moz-placeholder {
  color: #453d59; }
.form-control:hover:-ms-input-placeholder, select:hover:-ms-input-placeholder, .wpcf7-text:hover:-ms-input-placeholder, .acf-field textarea:hover:-ms-input-placeholder,
.acf-field input[type="text"]:hover:-ms-input-placeholder,
.acf-field input[type="search"]:hover:-ms-input-placeholder,
.acf-field input[type="number"]:hover:-ms-input-placeholder,
.acf-field input[type="url"]:hover:-ms-input-placeholder,
.acf-field input[type="email"]:hover:-ms-input-placeholder, .form-control:focus:-ms-input-placeholder, select:focus:-ms-input-placeholder, .wpcf7-text:focus:-ms-input-placeholder, .acf-field textarea:focus:-ms-input-placeholder,
.acf-field input[type="text"]:focus:-ms-input-placeholder,
.acf-field input[type="search"]:focus:-ms-input-placeholder,
.acf-field input[type="number"]:focus:-ms-input-placeholder,
.acf-field input[type="url"]:focus:-ms-input-placeholder,
.acf-field input[type="email"]:focus:-ms-input-placeholder {
  color: #453d59; }

input:-webkit-autofill {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset; }

input:focus:-webkit-autofill {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset; }

select.form-control, select, select.wpcf7-text,
.acf-field select {
  border: 1px solid #d5d5d5;
  background-image: url("../img/paging.svg");
  background-position: 95% 50%;
  background-repeat: no-repeat;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  outline: 0;
  transition: border linear 0.2s; }
  select.form-control:focus, select:focus {
    border-color: #aeaeae;
    outline: 0; }

input[type=radio],
input[type=checkbox] {
  border-style: solid;
  border-width: 1px;
  background: #fff;
  border-color: #d5d5d5;
  color: #453d59;
  clear: none;
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  height: 22px;
  width: 22px;
  min-width: 22px;
  margin: 0 6px 0 0;
  outline: 0;
  padding: 4px !important;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: .1s border-color ease-in-out; }
  input[type=radio]:checked, input[type=radio]:focus,
  input[type=checkbox]:checked,
  input[type=checkbox]:focus {
    outline: 0; }

input[type=checkbox]:checked {
  color: #fff;
  background: #453d59;
  border-color: #453d59; }
  input[type=checkbox]:checked:before {
    content: "\e806";
    margin: -8px -10px 0;
    font-size: 32px;
    display: inline-block; }

input[type=radio] {
  border-radius: 100%;
  background-clip: content-box;
  padding: 5px !important; }
  input[type=radio]:checked {
    background-color: #453d59; }

/**
 * Errors/Success
 */
span[class^="input-message"] {
  font-size: 12px;
  margin-top: 0.3rem;
  display: inline-block; }

/**
 * Contact form 7
 */
img.ajax-loader {
  display: inline-block;
  margin-left: 0.5rem; }

.wpcf7-response-output,
.wpcf7-not-valid-tip {
  font-size: 13px;
  display: inline-block; }

/**
 * Newsletter
 */
.newsletter-form {
  position: relative; }

.newsletter-form__response {
  display: none;
  padding-top: .5rem;
  font-size: small; }

/* ==========================================================================
     Media
     ========================================================================== */
.video-player--minimal .plyr input[type='range'] {
  height: 6px; }
  .video-player--minimal .plyr input[type='range']::-webkit-slider-thumb {
    visibility: hidden; }
  .video-player--minimal .plyr input[type='range']::-moz-range-thumb {
    visibility: hidden; }
.video-player--minimal .plyr--video .plyr__controls {
  padding: 50px 0 0; }
.video-player--minimal .plyr__progress--buffer,
.video-player--minimal .plyr__progress--played {
  height: 6px;
  margin: -3px 0 0;
  border-radius: 0; }
  .video-player--minimal .plyr__progress--buffer::-webkit-progress-value,
  .video-player--minimal .plyr__progress--played::-webkit-progress-value {
    border-radius: 0; }
  .video-player--minimal .plyr__progress--buffer::-moz-progress-bar,
  .video-player--minimal .plyr__progress--played::-moz-progress-bar {
    border-radius: 0; }
  .video-player--minimal .plyr__progress--buffer::-ms-fill,
  .video-player--minimal .plyr__progress--played::-ms-fill {
    border-radius: 0; }
.video-player--minimal .plyr--loading .plyr__progress--buffer {
  background-image: none; }

.video-player__player {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  display: inline-block; }
.page-content figure,
.entry-content figure,
.comment-content figure {
  margin: 1.5rem 0;
  width: auto !important;
  max-width: 100% !important; }

.aligncenter {
  display: block;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto; }

.alignright {
  display: block;
  float: right;
  clear: right; }

.wp-caption {
  margin-bottom: 1.7rem;
  max-width: 100%; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0; }
  .wp-caption .wp-caption-text {
    color: #838386;
    text-align: left;
    font-size: 0.7777777778em;
    padding: 0.65rem 0 0; }

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
  width: 100%;
  margin-bottom: 1.7rem; }
  .gallery .gallery-item {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0;
    padding-bottom: 1rem; }
    .gallery .gallery-item .gallery-icon a {
      display: block; }
    .gallery .gallery-item .gallery-icon img {
      border: none;
      height: auto;
      margin: 0 auto; }
    .gallery .gallery-item .gallery-caption {
      font-size: 0.6666666667rem;
      color: #838386;
      margin: 10px 0 0;
      text-align: left; }

@media (min-width: 576px) {
  .gallery-columns-1 .gallery-item {
    flex: 0 0 100%;
    max-width: 100%; } }

@media (min-width: 576px) {
  .gallery-columns-2 .gallery-item {
    flex: 0 0 50%;
    max-width: 50%; } }

@media (min-width: 576px) {
  .gallery-columns-3 .gallery-item {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; } }

@media (min-width: 576px) {
  .gallery-columns-4 .gallery-item {
    flex: 0 0 25%;
    max-width: 25%; } }

@media (min-width: 576px) {
  .gallery-columns-5 .gallery-item {
    flex: 0 0 20%;
    max-width: 20%; } }

@media (min-width: 576px) {
  .gallery-columns-6 .gallery-item {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; } }

@media (min-width: 576px) {
  .gallery-columns-7 .gallery-item {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%; } }

@media (min-width: 576px) {
  .gallery-columns-8 .gallery-item {
    flex: 0 0 12.5%;
    max-width: 12.5%; } }

@media (min-width: 576px) {
  .gallery-columns-9 .gallery-item {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%; } }

.gallery-columns-6 .gallery-caption {
  display: none !important; }

.gallery-columns-7 .gallery-caption {
  display: none !important; }

.gallery-columns-8 .gallery-caption {
  display: none !important; }

.gallery-columns-9 .gallery-caption {
  display: none !important; }

/* ==========================================================================
   Global
   ========================================================================== */
.hero {
  height: 15rem;
  position: relative; }
  @media (min-width: 576px) {
    .hero {
      height: 30rem; } }

.hero__video,
.hero__image {
  position: absolute;
  top: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat; }
  .hero__video:after,
  .hero__image:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1; }

.hero__video video {
  object-fit: cover;
  height: 100%;
  width: 100%; }

.hero__headline {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 0 1rem; }

.hero__link {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1; }

.breadcrumbs {
  color: #838386; }
  .breadcrumbs a {
    color: #838386; }
  .breadcrumbs li {
    padding: 0 .2rem; }

.headline {
  padding: 3rem 0; }

.headline__heading h2, .headline__heading .h2, .headline__heading .page-title--sm {
  font-size: 1.4444444444em;
  margin-bottom: 1rem !important; }

.headline_description h3, .headline_description .h3 {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1111111111em; }

.sub-title {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: #838386;
  border-bottom: 1px solid #453d59;
  padding-bottom: .5rem;
  margin-bottom: .5rem; }

.back-to {
  background-color: #ccf3f8;
  color: #838386;
  font-weight: 500;
  padding: 3rem 0;
  text-align: center; }
  .back-to .icon, .back-to input[type=checkbox]:checked:before, .back-to .acf-icon.geocode-btn:before {
    font-size: 1.1111111111em;
    vertical-align: middle;
    display: inline-block; }

.sidebar .label {
  color: #838386; }
.sidebar ul,
.sidebar address {
  margin-bottom: 1rem; }

.card-item {
  margin-bottom: 3rem; }
  .card-item > .row {
    border: 1px solid #d3d3d3; }
  .card-item:hover .card-item__image {
    transform: scale(1.1) translateZ(0); }
    .card-item:hover .card-item__image:after {
      opacity: 1; }
  .card-item:hover .card-item__view {
    color: #fa8670; }

.card-item__image-container {
  position: relative;
  overflow: hidden; }
  @media (max-width: 991px) {
    .card-item__image-container {
      padding-bottom: 55%; } }

.card-item__image {
  position: absolute;
  top: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.4s ease-in-out; }
  .card-item__image:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    opacity: 0;
    transition: opacity 0.2s;
    background: rgba(0, 0, 0, 0.5); }

.card-item__details {
  padding: 20px !important; }
  @media (min-width: 992px) {
    .card-item__details {
      min-height: 20rem;
      padding: 20px 40px !important; } }

.card-item__date {
  font-weight: 700; }

@media (min-width: 768px) {
  .card-item__date,
  .card-item__time {
    font-size: 0.8888888889em; } }
.card-item__date p,
.card-item__time p {
  margin-bottom: 0; }

.card-item__time {
  margin-bottom: 1rem; }

.card-item__view {
  font-size: 0.8888888889em;
  font-weight: 700;
  color: #838386;
  bottom: 20px;
  display: block; }
  @media (min-width: 992px) {
    .card-item__view {
      position: absolute; } }

.card-item__description {
  font-size: 1.1111111111em;
  margin-bottom: 1rem; }

.slideshow-controls .js-slideshow-next,
.slideshow-controls .js-slideshow-prev {
  color: #838386;
  font-size: 30px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  display: inline-block;
  border: 1px solid #838386;
  border-radius: 100%; }
  .slideshow-controls .js-slideshow-next span,
  .slideshow-controls .js-slideshow-prev span {
    vertical-align: middle; }
.slideshow-controls .js-slideshow-next {
  margin-left: .5rem; }

.facetwp-checkbox {
  padding-right: 20px !important;
  padding-left: 0 !important;
  background-position: 100% 50% !important;
  position: relative;
  background: none !important; }
  .facetwp-checkbox:after, .facetwp-checkbox:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%; }
  .facetwp-checkbox:after {
    width: 18px;
    height: 18px;
    background: #fff;
    right: 0;
    margin-top: -9px; }
  .facetwp-checkbox.checked:after {
    background: #453d59; }
  .facetwp-checkbox.checked:before {
    content: "\e806";
    font-family: 'icons';
    width: 20px;
    height: 20px;
    right: 7px;
    margin-top: 1px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 0;
    font-size: 2rem;
    z-index: 1; }

.facetwp-pager {
  display: none; }

.arrow {
  color: #453d59;
  width: 28px;
  height: 28px;
  border: 1px solid #453d59;
  vertical-align: middle;
  border-radius: 100%;
  display: inline-block;
  text-align: center; }
  .arrow span[class^=icon-] {
    font-size: 1.3333333333em;
    vertical-align: middle;
    display: inline-block; }

.view-more {
  font-size: 0.8888888889em; }

.notice, .acf-error-message {
  padding: .75rem;
  margin-bottom: 1.5rem;
  background: #eeeeee; }
  .notice a, .acf-error-message a {
    font-weight: 700; }
  .notice p:last-child, .acf-error-message p:last-child {
    margin-bottom: 0; }

.notice--info {
  background-color: #ccf3f8; }

.notice--error {
  color: #fff;
  background-color: #fa8670; }

.c-block-item__heading {
  font-size: 2.2222222222em;
  border-bottom: 1px solid #d3d3d3;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem; }

.c-block-item__sub-heading {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: .5rem; }

.c-block-item__image {
  margin-bottom: 2rem; }

.c-block-item__text {
  font-size: 1.1111111111em; }

.c-block-item__button-container {
  margin-top: 2rem; }

.c-block-item__button {
  font-weight: 700;
  color: #838386; }
  .c-block-item__button:hover {
    color: #fa8670; }

.load-more {
  color: #453d59;
  width: 150px;
  margin: 0 auto;
  display: block;
  background: transparent;
  text-align: center;
  border: 0;
  text-transform: uppercase;
  cursor: pointer; }
  .load-more .fallback-text {
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: .2rem; }
  .load-more .icon-chevron-down,
  .load-more svg {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #453d59;
    vertical-align: middle;
    border-radius: 100%;
    display: inline-block;
    padding: 6px; }
  .load-more .icon-chevron-down {
    padding: 0;
    line-height: 38px;
    font-size: 1.4444444444rem; }
  .load-more.btn--disabled {
    display: none; }

.load-more__label {
  font-size: 1.1111111111em;
  display: block;
  text-transform: uppercase;
  margin-bottom: .5rem; }

.article-item {
  margin-bottom: 2rem; }

.article-item__title {
  font-size: 1em;
  margin-top: 0.5rem; }

.featured__header {
  position: relative; }

.featured__title {
  font-size: 0.8888888889em;
  margin-bottom: 0.5rem; }

.featured__view-more {
  color: #838386;
  margin-top: 1rem; }
  @media (min-width: 768px) {
    .featured__view-more {
      position: absolute;
      bottom: 0;
      right: 0;
      padding-left: 0;
      margin-top: 0; } }

.related {
  padding-top: 4rem;
  padding-bottom: 4rem; }

.related__title {
  margin-bottom: 4rem; }

.slider__subtitle,
.slider__title {
  margin-bottom: 0; }

.slider__title {
  margin-top: 0.5rem; }

.slider__subtitle {
  margin-top: 0.25rem; }

.featured-image {
  position: relative;
  margin-bottom: 2rem; }
  .featured-image img {
    width: auto; }

.featured-image--is-fixed img {
  left: 50%;
  position: fixed;
  transform-origin: 50% 0%;
  top: 0; }

.meta {
  font-size: 0.8888888889em; }
  @media (min-width: 768px) {
    .meta p:last-child {
      margin-bottom: 0; } }

.meta__title {
  color: #838386; }

@media (max-width: 991px) {
  .meta__details {
    margin-bottom: 2rem; } }
.meta__details p {
  margin-bottom: 0; }
.meta__details > div {
  margin-bottom: 1rem; }
  .meta__details > div:last-child {
    margin-bottom: 0; }

.share-links {
  position: relative;
  font-size: 0.7777777778em; }
  .share-links .label {
    text-transform: uppercase;
    cursor: pointer;
    position: absolute;
    width: 150px;
    letter-spacing: 0.12em; }
    .share-links .label:hover {
      visibility: hidden;
      opacity: 0; }
  .share-links .profiles {
    position: absolute;
    width: 150px;
    visibility: hidden;
    opacity: 0; }
    .share-links .profiles a {
      display: inline-block;
      margin-right: 3px;
      margin-left: 3px; }
  .share-links:hover .label {
    visibility: hidden;
    opacity: 0; }
  .share-links:hover .profiles {
    visibility: visible;
    opacity: 1; }

.details {
  font-size: 0.8888888889em;
  margin-bottom: 2rem; }

.details__section {
  margin-bottom: .7rem; }
  @media (max-width: 991px) {
    .details__section:last-child {
      margin-bottom: 0; } }

@media (min-width: 768px) {
  .details__section--right {
    text-align: right; } }

.c-blocks__image .wp-caption {
  margin-bottom: 0; }

@media (min-width: 768px) {
  .c-blocks__item--2 {
    padding-right: 80px;
    padding-left: 80px; } }
.c-blocks__item--2 .c-blocks__image:first-child {
  padding-bottom: 1rem; }
  @media (min-width: 768px) {
    .c-blocks__item--2 .c-blocks__image:first-child {
      padding-bottom: 0; } }

.social-accounts > a {
  padding-right: 0.3rem; }

.social-accounts__heading {
  color: #838386;
  padding-right: 0.4rem; }

.overlay, .loading {
  background: #252525;
  display: none;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center; }

.overlay--centered:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -.25em; }

.overlay__close {
  top: 40px;
  right: 20px; }

.drawer {
  color: #fff;
  position: fixed;
  height: 100%;
  height: 100vh;
  width: 100%;
  top: 0;
  background: #453d59;
  padding: 0 1rem 1rem;
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 107;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s cubic-bezier(0.46, 0.01, 0.32, 1); }
  .drawer .form-control, .drawer select, .drawer .wpcf7-text, .drawer .acf-field textarea, .acf-field .drawer textarea,
  .drawer .acf-field select,
  .acf-field .drawer select,
  .drawer .acf-field input[type="text"],
  .acf-field .drawer input[type="text"],
  .drawer .acf-field input[type="search"],
  .acf-field .drawer input[type="search"],
  .drawer .acf-field input[type="number"],
  .acf-field .drawer input[type="number"],
  .drawer .acf-field input[type="url"],
  .acf-field .drawer input[type="url"],
  .drawer .acf-field input[type="email"],
  .acf-field .drawer input[type="email"] {
    padding-left: 0;
    border-color: #fff;
    border-width: 0 0 1px;
    width: 100%; }
  .drawer span[role="alert"] {
    color: #fff;
    padding-top: 6px; }
  .drawer a {
    color: #fff; }
  @media (max-width: 991px) {
    .drawer .drawer-inner {
      padding-top: 35px; }
    .drawer .close {
      top: 1rem; } }

.drawer__inner {
  padding-top: 2rem; }

.drawer__close {
  top: 2rem; }

.drawer__trigger {
  width: 20px; }

.drawer--right {
  right: -100%;
  bottom: 0; }
  .drawer--right.drawer--is-visible {
    transform: translateX(-100%); }
  @media (min-width: 768px) {
    .drawer--right {
      width: 400px;
      right: -400px; }
      .drawer--right.drawer--is-visible {
        transform: translateX(-400px); } }

.drawer--left {
  left: -100%;
  bottom: 0; }
  .drawer--left.drawer--is-visible {
    transform: translateX(100%); }
  @media (min-width: 768px) {
    .drawer--left {
      width: 400px;
      left: -400px; }
      .drawer--left.drawer--is-visible {
        transform: translateX(400px); } }

.drawer--top {
  transform: translateY(-100%);
  height: auto;
  left: 0; }
  .drawer--top.drawer--is-visible {
    transform: translateY(0); }
  @media (min-width: 768px) {
    .drawer--top.drawer--is-visible {
      transform: translateY(0); } }

.drawer-is-visible body {
  overflow-y: hidden; }

/* ==========================================================================
   Print
   ========================================================================== */
/* ==========================================================================
     Holding
     ========================================================================== */
body.holding .holding {
  position: relative; }
  body.holding .holding img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    position: fixed;
    width: 250px; }
@media (max-width: 991px) {
  body.holding .holding img {
    width: 200px; } }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: #fff;
  margin: 0;
  top: 0;
  left: 0;
  height: 80px;
  position: fixed;
  width: 100%;
  z-index: 108;
  transition: all 0.3s; }
  @media (min-width: 992px) {
    .site-header {
      height: 120px; } }
  .site-header a {
    text-decoration: none; }
  .site-header .fluid-container {
    left: 0px;
    right: 0px;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: flex-end;
    z-index: 108;
    transition: all 0.1s ease; }
    @media (max-width: 991px) {
      .site-header .fluid-container {
        position: relative;
        align-items: center !important; }
        .nav-is-visible .site-header .fluid-container {
          background-color: #453d59;
          transition-delay: 0.3s; } }
  @media (min-width: 768px) {
    .site-header .container-fluid {
      max-width: 95%; } }
  .nav-is-visible .site-header {
    position: fixed; }

.site-header--static {
  position: absolute;
  top: 0; }

.site-header--hover {
  background: #fff; }

.site-header--sm {
  height: 80px;
  background: #fff !important; }
  @media (min-width: 992px) {
    .site-header--sm {
      height: 90px; }
      .site-header--sm .site-logo__inline {
        display: block; }
      .site-header--sm .site-logo__full {
        display: none; } }

.home.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover),
.tax-listing_region.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover),
.tax-listing_group.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover),
.post-type-archive.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover),
.page-template-template-travel.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover),
.page-template-template-late.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover),
.page-template-template-about.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover),
.single.cover-is-visible.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) {
  background: transparent; }
  .home.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .nav-bar,
  .tax-listing_region.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .nav-bar,
  .tax-listing_group.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .nav-bar,
  .post-type-archive.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .nav-bar,
  .page-template-template-travel.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .nav-bar,
  .page-template-template-late.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .nav-bar,
  .page-template-template-about.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .nav-bar,
  .single.cover-is-visible.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .nav-bar {
    background: #fff !important; }
  .home.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .site-logo,
  .home.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .fluid-container a,
  .tax-listing_region.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .site-logo,
  .tax-listing_region.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .fluid-container a,
  .tax-listing_group.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .site-logo,
  .tax-listing_group.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .fluid-container a,
  .post-type-archive.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .site-logo,
  .post-type-archive.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .fluid-container a,
  .page-template-template-travel.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .site-logo,
  .page-template-template-travel.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .fluid-container a,
  .page-template-template-late.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .site-logo,
  .page-template-template-late.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .fluid-container a,
  .page-template-template-about.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .site-logo,
  .page-template-template-about.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .fluid-container a,
  .single.cover-is-visible.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .site-logo,
  .single.cover-is-visible.cover-is-visible .site-header:not(.site-header--sm):not(.site-header--hover) .fluid-container a {
    color: #fff !important; }

.site-logo {
  color: #453d59;
  display: inline-block;
  padding: 0;
  position: relative;
  width: 180px;
  z-index: 108; }
  @media (min-width: 992px) {
    .site-logo {
      padding-bottom: 35px; } }
  .site-logo svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    overflow: visible; }
    .site-logo svg path,
    .site-logo svg polygon {
      fill: currentColor !important; }
    .site-logo svg path {
      transition: fill 0.2s ease-in; }

.site-logo__full {
  width: 126px;
  display: none; }
  @media (min-width: 992px) {
    .site-logo__full {
      display: block; } }

@media (min-width: 992px) {
  .site-logo__inline {
    display: none; } }

/* ==========================================================================
    Navigation
   ========================================================================== */
.secondary-navigation {
  display: none;
  text-align: left;
  margin-left: 20px; }
  @media (min-width: 992px) {
    .secondary-navigation {
      display: inline-block; } }
  .secondary-navigation > .menu {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
    .secondary-navigation > .menu > li {
      list-style: none !important; }
      .secondary-navigation > .menu > li > a {
        color: #838386;
        font-family: "Yantramanav", Helvetica, Arial, sans-serif;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 28px;
        display: block; }
      .secondary-navigation > .menu > li:hover a {
        color: #453d59; }
      .secondary-navigation > .menu > li.current-menu-item > a {
        font-weight: 700; }
  .secondary-navigation .sub-menu {
    color: #fff;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 1rem 0;
    background: #453d59;
    z-index: 109;
    transition: opacity 0.2s, visibility 0.2s; }
    .secondary-navigation .sub-menu a {
      color: #fff !important; }
  .secondary-navigation .menu-item-has-children > a {
    position: relative; }
    .secondary-navigation .menu-item-has-children > a:after {
      content: '';
      width: 0;
      height: 0;
      border: solid transparent;
      border-color: transparent;
      border-bottom-color: #453d59;
      border-width: 10px;
      position: absolute;
      bottom: 0;
      margin-left: -10px;
      left: 50%;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.1s, transform 0.1s; }
  .secondary-navigation .menu-item-has-children:hover > a:after {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s, transform 0.2s 0s; }
  .secondary-navigation .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s, visibility 0.2s; }

@media (max-width: 991px) {
  .mega-menu__container {
    padding-left: 1rem; } }
@media (min-width: 992px) {
  .mega-menu__container {
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px; } }
.mega-menu__container .widgettitle {
  display: none !important; }
.mega-menu__container .widget {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px; }
  @media (min-width: 992px) {
    .mega-menu__container .widget:after {
      content: '';
      height: 100%;
      width: 1px;
      background: #838386;
      position: absolute;
      right: 0;
      top: 0; }
    .mega-menu__container .widget:last-child:after {
      display: none; } }
@media (max-width: 991px) {
  .mega-menu__container .mega-menu__row .widget {
    margin-bottom: 1rem; }
    .mega-menu__container .mega-menu__row .widget:last-child {
      margin-bottom: 0; } }
.mega-menu__container .widget_text {
  flex: 0 0 50%;
  max-width: 50%;
  font-family: "Rokkitt", Helvetica, Arial, sans-serif;
  font-size: 1.4444444444em;
  font-weight: 500;
  line-height: 1.2222222222em; }
@media (min-width: 992px) {
  .mega-menu__container .widget_featured_post,
  .mega-menu__container .widget_nav_menu {
    flex: 0 0 25%;
    max-width: 25%; } }
@media (max-width: 991px) {
  .mega-menu__container .widget_nav_menu {
    font-size: 1.3333333333rem; } }
.mega-menu__container .widget_featured_post .article-item {
  margin-bottom: 0;
  max-width: 300px; }
.mega-menu__container .widget_featured_post .article-item__date,
.mega-menu__container .widget_featured_post h3,
.mega-menu__container .widget_featured_post .h3,
.mega-menu__container .widget_featured_post h4,
.mega-menu__container .widget_featured_post .h4,
.mega-menu__container .widget_featured_post p {
  color: #fff;
  font-size: 1rem;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.35rem; }
.mega-menu__container .widget_featured_post h4, .mega-menu__container .widget_featured_post .h4 {
  color: #fa8670;
  margin-top: 1rem; }
@media (max-width: 1199px) {
  .mega-menu__container .widget_text {
    display: none; } }

.mega-menu__row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
  width: 100%; }

.nav-overlay--is-visible {
  top: 0; }

.nav-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #838386;
  background: #838386;
  cursor: pointer;
  border: 0;
  display: block;
  height: 2px !important;
  width: 30px;
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .nav-bar:after, .nav-bar:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .nav-bar:before {
    transform: translateY(-8px); }
  .nav-bar:after {
    transform: translateY(8px); }
  .nav-bar.is-active {
    visibility: hidden;
    background: #fff; }
    .nav-bar.is-active:before {
      transform: rotate(45deg);
      visibility: visible; }
    .nav-bar.is-active:after {
      transform: rotate(-45deg);
      visibility: visible; }

.controls {
  width: 32px;
  position: relative;
  align-self: stretch !important; }
  .controls .js-open-nav {
    cursor: pointer;
    right: 0;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    z-index: 108;
    box-sizing: content-box; }
    .nav-is-visible .controls .js-open-nav {
      z-index: 108; }

@media (min-width: 992px) {
  .site-header--fullscreen .controls,
  .site-header--off-canvas .controls {
    display: none; } }
@media (min-width: 768px) {
  .nav-is-visible {
    overflow: hidden; } }
.nav-overlay {
  line-height: 1;
  z-index: 107;
  padding: 0;
  left: 0;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition-property: opacity, visibility, transform; }
  @media (max-width: 991px) {
    .nav-overlay {
      height: 100%;
      height: 100vh; }
      .nav-is-visible .nav-overlay {
        opacity: 1;
        visibility: visible;
        transform: translateX(0); } }
  .nav-overlay a {
    color: #fff;
    display: block;
    padding: 0.35rem 0; }
    .nav-overlay a:hover {
      color: #838386; }
  .nav-overlay .mega-menu {
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.57, 0.06, 0.05, 0.95); }
  .nav-overlay .main-navigation {
    font-size: 1.6666666667em;
    font-family: "Rokkitt", Helvetica, Arial, sans-serif;
    padding-bottom: 2.5rem; }
    .nav-overlay .main-navigation > ul {
      margin-left: 0;
      margin-bottom: 0 !important;
      border-left: none !important; }
      .nav-overlay .main-navigation > ul > li {
        list-style: none !important; }
        .nav-overlay .main-navigation > ul > li:last-child {
          padding-bottom: 0; }
    .nav-overlay .main-navigation .menu-item-has-children {
      position: relative; }
      @media (max-width: 991px) {
        .nav-overlay .main-navigation .menu-item-has-children .menu-item__toggle-btn {
          color: #fff;
          cursor: pointer;
          background: transparent;
          border: 0;
          position: absolute;
          right: 0;
          top: 0;
          width: 2rem;
          height: 2rem;
          padding: 0;
          text-align: center; } }
    @media (max-width: 991px) {
      .nav-overlay .main-navigation .menu-item--is-active .menu-item__toggle-btn .icon-chevron-down:before {
        content: "\e812"; }
      .nav-overlay .main-navigation .menu-item--is-active .mega-menu {
        visibility: visible;
        max-height: 100%; } }
  .nav-overlay .social-accounts {
    font-size: 1.3333333333em; }
    .nav-overlay .social-accounts a {
      padding-right: 0.75rem; }

.nav-overlay__container {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.46, 0.01, 0.32, 1); }
  @media (max-width: 991px) {
    .nav-overlay__container {
      padding-top: 5rem; } }

.nav-overlay__nav {
  position: static; }
  @media (min-width: 992px) {
    .nav-overlay__nav {
      margin-top: 3.7rem; } }

.site-header__social {
  margin-left: auto; }
  @media (max-width: 991px) {
    .site-header__social {
      display: none; } }
  .site-header__social .d-flex {
    height: 90px; }
  .site-header__social a {
    color: #838386;
    font-size: 1.2222222222em;
    padding: 0 8px; }
    .site-header__social a:hover {
      color: #453d59; }

.nav-overlay__search-form {
  color: #838386;
  font-family: "Rokkitt", Helvetica, Arial, sans-serif;
  position: absolute;
  width: 100%;
  background: #eeeeee;
  max-height: 0;
  overflow: hidden;
  left: 0;
  transition: max-height 0.2s ease-in-out;
  z-index: 108; }
  .search-form-is-visible .nav-overlay__search-form {
    max-height: 10rem;
    transition: max-height 0.2s ease-in-out; }
    .search-form-is-visible .nav-overlay__search-form .search-box {
      opacity: 1;
      transition: opacity 0.2s 0.2s ease-in-out; }
  .nav-overlay__search-form .search-box {
    opacity: 0;
    padding: 0.85rem 20px 1rem;
    transition: opacity 0.1s 0s ease-in-out; }
    @media (min-width: 768px) {
      .nav-overlay__search-form .search-box {
        max-width: calc(100% - 80px);
        margin: 0 auto;
        padding: 1rem 20px 1.15rem; } }
  .nav-overlay__search-form label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0; }
  .nav-overlay__search-form .form-group {
    margin-bottom: 0; }
  .nav-overlay__search-form .form-control, .nav-overlay__search-form select, .nav-overlay__search-form .wpcf7-text, .nav-overlay__search-form .acf-field textarea, .acf-field .nav-overlay__search-form textarea,
  .nav-overlay__search-form .acf-field select,
  .acf-field .nav-overlay__search-form select,
  .nav-overlay__search-form .acf-field input[type="text"],
  .acf-field .nav-overlay__search-form input[type="text"],
  .nav-overlay__search-form .acf-field input[type="search"],
  .acf-field .nav-overlay__search-form input[type="search"],
  .nav-overlay__search-form .acf-field input[type="number"],
  .acf-field .nav-overlay__search-form input[type="number"],
  .nav-overlay__search-form .acf-field input[type="url"],
  .acf-field .nav-overlay__search-form input[type="url"],
  .nav-overlay__search-form .acf-field input[type="email"],
  .acf-field .nav-overlay__search-form input[type="email"] {
    font-size: 1.7777777778em;
    color: #838386;
    background-color: transparent;
    border: 0;
    padding: 0; }
    @media (min-width: 768px) {
      .nav-overlay__search-form .form-control, .nav-overlay__search-form select, .nav-overlay__search-form .wpcf7-text, .nav-overlay__search-form .acf-field textarea, .acf-field .nav-overlay__search-form textarea,
      .nav-overlay__search-form .acf-field select,
      .acf-field .nav-overlay__search-form select,
      .nav-overlay__search-form .acf-field input[type="text"],
      .acf-field .nav-overlay__search-form input[type="text"],
      .nav-overlay__search-form .acf-field input[type="search"],
      .acf-field .nav-overlay__search-form input[type="search"],
      .nav-overlay__search-form .acf-field input[type="number"],
      .acf-field .nav-overlay__search-form input[type="number"],
      .nav-overlay__search-form .acf-field input[type="url"],
      .acf-field .nav-overlay__search-form input[type="url"],
      .nav-overlay__search-form .acf-field input[type="email"],
      .acf-field .nav-overlay__search-form input[type="email"] {
        font-size: 2.2222222222em; } }
    .nav-overlay__search-form .form-control::-webkit-input-placeholder, .nav-overlay__search-form select::-webkit-input-placeholder, .nav-overlay__search-form .wpcf7-text::-webkit-input-placeholder, .nav-overlay__search-form .acf-field textarea::-webkit-input-placeholder, .acf-field .nav-overlay__search-form textarea::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field select::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form select::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]::-webkit-input-placeholder {
      color: #838386;
      transition: color 0.2s ease-in-out; }
    .nav-overlay__search-form .form-control:-moz-placeholder, .nav-overlay__search-form select:-moz-placeholder, .nav-overlay__search-form .wpcf7-text:-moz-placeholder, .nav-overlay__search-form .acf-field textarea:-moz-placeholder, .acf-field .nav-overlay__search-form textarea:-moz-placeholder,
    .nav-overlay__search-form .acf-field select:-moz-placeholder,
    .acf-field .nav-overlay__search-form select:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:-moz-placeholder {
      color: #838386;
      transition: color 0.2s ease-in-out; }
    .nav-overlay__search-form .form-control::-moz-placeholder, .nav-overlay__search-form select::-moz-placeholder, .nav-overlay__search-form .wpcf7-text::-moz-placeholder, .nav-overlay__search-form .acf-field textarea::-moz-placeholder, .acf-field .nav-overlay__search-form textarea::-moz-placeholder,
    .nav-overlay__search-form .acf-field select::-moz-placeholder,
    .acf-field .nav-overlay__search-form select::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]::-moz-placeholder {
      color: #838386;
      transition: color 0.2s ease-in-out; }
    .nav-overlay__search-form .form-control:-ms-input-placeholder, .nav-overlay__search-form select:-ms-input-placeholder, .nav-overlay__search-form .wpcf7-text:-ms-input-placeholder, .nav-overlay__search-form .acf-field textarea:-ms-input-placeholder, .acf-field .nav-overlay__search-form textarea:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field select:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form select:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:-ms-input-placeholder {
      color: #838386;
      transition: color 0.2s ease-in-out; }
    .nav-overlay__search-form .form-control:focus::-webkit-input-placeholder, .nav-overlay__search-form select:focus::-webkit-input-placeholder, .nav-overlay__search-form .wpcf7-text:focus::-webkit-input-placeholder, .nav-overlay__search-form .acf-field textarea:focus::-webkit-input-placeholder, .acf-field .nav-overlay__search-form textarea:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field select:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form select:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:focus::-webkit-input-placeholder, .nav-overlay__search-form .form-control:focus::-webkit-input-placeholder, .nav-overlay__search-form select:focus::-webkit-input-placeholder, .nav-overlay__search-form .wpcf7-text:focus::-webkit-input-placeholder, .nav-overlay__search-form .acf-field textarea:focus::-webkit-input-placeholder, .acf-field .nav-overlay__search-form textarea:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field select:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form select:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:focus::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:focus::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:focus::-webkit-input-placeholder, .nav-overlay__search-form .form-control:hover::-webkit-input-placeholder, .nav-overlay__search-form select:hover::-webkit-input-placeholder, .nav-overlay__search-form .wpcf7-text:hover::-webkit-input-placeholder, .nav-overlay__search-form .acf-field textarea:hover::-webkit-input-placeholder, .acf-field .nav-overlay__search-form textarea:hover::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field select:hover::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form select:hover::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:hover::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:hover::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:hover::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:hover::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:hover::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:hover::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:hover::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:hover::-webkit-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:hover::-webkit-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:hover::-webkit-input-placeholder {
      color: #838386; }
    .nav-overlay__search-form .form-control:focus:-moz-placeholder, .nav-overlay__search-form select:focus:-moz-placeholder, .nav-overlay__search-form .wpcf7-text:focus:-moz-placeholder, .nav-overlay__search-form .acf-field textarea:focus:-moz-placeholder, .acf-field .nav-overlay__search-form textarea:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field select:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form select:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:focus:-moz-placeholder, .nav-overlay__search-form .form-control:focus:-moz-placeholder, .nav-overlay__search-form select:focus:-moz-placeholder, .nav-overlay__search-form .wpcf7-text:focus:-moz-placeholder, .nav-overlay__search-form .acf-field textarea:focus:-moz-placeholder, .acf-field .nav-overlay__search-form textarea:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field select:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form select:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:focus:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:focus:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:focus:-moz-placeholder, .nav-overlay__search-form .form-control:hover:-moz-placeholder, .nav-overlay__search-form select:hover:-moz-placeholder, .nav-overlay__search-form .wpcf7-text:hover:-moz-placeholder, .nav-overlay__search-form .acf-field textarea:hover:-moz-placeholder, .acf-field .nav-overlay__search-form textarea:hover:-moz-placeholder,
    .nav-overlay__search-form .acf-field select:hover:-moz-placeholder,
    .acf-field .nav-overlay__search-form select:hover:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:hover:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:hover:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:hover:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:hover:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:hover:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:hover:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:hover:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:hover:-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:hover:-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:hover:-moz-placeholder {
      color: #838386; }
    .nav-overlay__search-form .form-control:focus::-moz-placeholder, .nav-overlay__search-form select:focus::-moz-placeholder, .nav-overlay__search-form .wpcf7-text:focus::-moz-placeholder, .nav-overlay__search-form .acf-field textarea:focus::-moz-placeholder, .acf-field .nav-overlay__search-form textarea:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field select:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form select:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:focus::-moz-placeholder, .nav-overlay__search-form .form-control:focus::-moz-placeholder, .nav-overlay__search-form select:focus::-moz-placeholder, .nav-overlay__search-form .wpcf7-text:focus::-moz-placeholder, .nav-overlay__search-form .acf-field textarea:focus::-moz-placeholder, .acf-field .nav-overlay__search-form textarea:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field select:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form select:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:focus::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:focus::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:focus::-moz-placeholder, .nav-overlay__search-form .form-control:hover::-moz-placeholder, .nav-overlay__search-form select:hover::-moz-placeholder, .nav-overlay__search-form .wpcf7-text:hover::-moz-placeholder, .nav-overlay__search-form .acf-field textarea:hover::-moz-placeholder, .acf-field .nav-overlay__search-form textarea:hover::-moz-placeholder,
    .nav-overlay__search-form .acf-field select:hover::-moz-placeholder,
    .acf-field .nav-overlay__search-form select:hover::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:hover::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:hover::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:hover::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:hover::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:hover::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:hover::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:hover::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:hover::-moz-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:hover::-moz-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:hover::-moz-placeholder {
      color: #838386; }
    .nav-overlay__search-form .form-control:focus:-ms-input-placeholder, .nav-overlay__search-form select:focus:-ms-input-placeholder, .nav-overlay__search-form .wpcf7-text:focus:-ms-input-placeholder, .nav-overlay__search-form .acf-field textarea:focus:-ms-input-placeholder, .acf-field .nav-overlay__search-form textarea:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field select:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form select:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:focus:-ms-input-placeholder, .nav-overlay__search-form .form-control:focus:-ms-input-placeholder, .nav-overlay__search-form select:focus:-ms-input-placeholder, .nav-overlay__search-form .wpcf7-text:focus:-ms-input-placeholder, .nav-overlay__search-form .acf-field textarea:focus:-ms-input-placeholder, .acf-field .nav-overlay__search-form textarea:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field select:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form select:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:focus:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:focus:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:focus:-ms-input-placeholder, .nav-overlay__search-form .form-control:hover:-ms-input-placeholder, .nav-overlay__search-form select:hover:-ms-input-placeholder, .nav-overlay__search-form .wpcf7-text:hover:-ms-input-placeholder, .nav-overlay__search-form .acf-field textarea:hover:-ms-input-placeholder, .acf-field .nav-overlay__search-form textarea:hover:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field select:hover:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form select:hover:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="text"]:hover:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="text"]:hover:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="search"]:hover:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="search"]:hover:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="number"]:hover:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="number"]:hover:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="url"]:hover:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="url"]:hover:-ms-input-placeholder,
    .nav-overlay__search-form .acf-field input[type="email"]:hover:-ms-input-placeholder,
    .acf-field .nav-overlay__search-form input[type="email"]:hover:-ms-input-placeholder {
      color: #838386; }
  .nav-overlay__search-form .btn, .nav-overlay__search-form .acf-button {
    color: #838386;
    background: transparent;
    border-color: transparent;
    padding: 0; }
    .nav-overlay__search-form .btn .icon-chevron-right, .nav-overlay__search-form .acf-button .icon-chevron-right {
      font-size: 1.7777777778em;
      vertical-align: middle; }
      @media (min-width: 768px) {
        .nav-overlay__search-form .btn .icon-chevron-right, .nav-overlay__search-form .acf-button .icon-chevron-right {
          font-size: 2.2222222222em; } }

.search-box__input-btn--reset .icon-chevron-right:before {
  content: "\e606"; }

.nav-overlay__search-btn {
  color: #838386;
  font-size: 1.3333333333em;
  padding: 0 0.5rem;
  z-index: 108;
  line-height: 90px;
  height: 90px;
  width: 42px; }
  @media (max-width: 991px) {
    .nav-overlay__search-btn {
      margin-left: auto; } }
  .nav-overlay__search-btn:hover {
    color: #453d59; }

.nav-is-visible .controls .js-open-nav .nav-bar span {
  background: #fff;
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.nav-is-visible .site-logo {
  color: #fff; }
.nav-is-visible .site-header .js-trigger-search-form {
  color: #fff; }

/* ==========================================================================
   Widgets
   ========================================================================== */
.cover {
  width: 100%;
  height: 65%;
  height: 65vh;
  background-color: #fff;
  overflow: hidden;
  position: relative; }
  .cover div[class*="slick-"] {
    width: 100%;
    height: 100%; }
  .cover .slick-dots {
    position: absolute;
    width: 100%;
    bottom: 0;
    margin-bottom: -25px; }

.cover__see-more {
  font-size: 0.7777777778rem;
  color: #fff;
  cursor: pointer;
  height: 4rem;
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
  z-index: 105; }
  .cover__see-more > span {
    display: block;
    margin-bottom: .25rem; }

.cover__icon {
  text-align: center;
  width: 38px;
  height: 38px;
  border: 1px solid #fff;
  vertical-align: middle;
  border-radius: 100%;
  display: inline-block; }
  .cover__icon svg {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 24px;
    transition: all 0.15s linear; }
    .cover__icon svg path,
    .cover__icon svg polygon {
      fill: #fff; }

.cover__headline-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  position: absolute;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  transition: all 0.7s ease; }
  @media (min-width: 768px) {
    .cover__headline-wrapper {
      max-width: 80%; } }

.cover__headline-wrapper {
  opacity: 0; }

.cover__headline {
  font-family: "Rokkitt", Helvetica, Arial, sans-serif;
  font-size: 2.3333333333em;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  line-height: 1.2;
  margin-bottom: 0; }
  .cover__headline p:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .cover__headline {
      font-size: 3.3333333333em; } }

.cover__video,
.cover__video-fadein,
.cover__video-fallback {
  position: absolute;
  top: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: 100%; }

.cover__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  text-align: center;
  overflow: hidden;
  width: 100%;
  bottom: 0;
  line-height: 0;
  opacity: 0;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transition: opacity 0.7s ease; }
  .cover__image:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.2); }

.cover__video {
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 100%; }
  .cover__video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none; }

.cover__video-fadein {
  background: #453d59;
  opacity: 1;
  z-index: 106;
  transition: opacity 0.7s ease; }
  .cover__video-fadein:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-color: rgba(0, 0, 0, 0);
    opacity: 0.85;
    border-radius: 50px;
    border: 2px solid #fbfcfc;
    border-bottom: 2px solid #788999;
    border-left: 2px solid #788999;
    display: block;
    width: 30px;
    height: 30px;
    z-index: 9999;
    animation: loading 0.65s infinite linear; }

.cover__video-fallback {
  opacity: 0; }

.cover--is-loaded {
  opacity: 1; }
  .cover--is-loaded .cover__image,
  .cover--is-loaded .cover__headline-wrapper {
    opacity: 1; }
  .cover--is-loaded .cover__video-fadein {
    z-index: 0; }

/* ==========================================================================
   Posts
   ========================================================================== */
.post-type-archive .page-header {
  text-align: left; }

.single-guide .headline,
.single-offer .headline,
.single-post .headline {
  padding: 0; }
.single-guide .page-content,
.single-offer .page-content,
.single-post .page-content {
  font-size: 1.1111111111em; }
  .single-guide .page-content iframe,
  .single-guide .page-content object,
  .single-guide .page-content .wp-video-shortcode,
  .single-guide .page-content p,
  .single-offer .page-content iframe,
  .single-offer .page-content object,
  .single-offer .page-content .wp-video-shortcode,
  .single-offer .page-content p,
  .single-post .page-content iframe,
  .single-post .page-content object,
  .single-post .page-content .wp-video-shortcode,
  .single-post .page-content p {
    margin: 0 0 1.5rem; }
  .single-guide .page-content p:last-child,
  .single-offer .page-content p:last-child,
  .single-post .page-content p:last-child {
    margin-bottom: 0; }

.blog {
  background: #ccf3f8; }
  .blog .feed {
    padding: 4em 0 1em 0; }
  .blog .button {
    display: inline-block;
    border: 1px solid #453d59;
    color: #453d59;
    padding: .5em 1em;
    margin-bottom: .5em; }
    .blog .button:hover {
      background: #453d59;
      color: #fff; }
  .blog .align-self-stretch {
    margin-bottom: 2em; }
  .blog .blogpost {
    background: #fff;
    border: 1px solid #608981;
    height: 100%; }
    .blog .blogpost .content {
      margin: 1em; }
      .blog .blogpost .content .headline {
        padding: 0;
        font-family: "Rokkitt", Helvetica, Arial, sans-serif;
        font-weight: 500;
        font-size: 1.2em; }

/* ==========================================================================
   Pages
   ========================================================================== */
@media (min-width: 768px) {
  .home .headline .container-fluid {
    max-width: 50%; } }
.home .headline .col-sm-6 {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center; }
.home .offers {
  background: #ccf3f8;
  padding-top: 3rem;
  padding-bottom: 3rem; }
.home .cover {
  height: 100%;
  height: 100vh; }

.c-blocks--travel {
  margin-top: 2rem; }
  .c-blocks--travel .c-block-item__image {
    background-position: center center;
    background-size: cover;
    min-height: 20rem; }
  .c-blocks--travel .c-block-item__text--description {
    font-size: 1.3333333333em;
    line-height: 1.2;
    font-family: "Rokkitt", Helvetica, Arial, sans-serif;
    font-weight: 500; }
  .c-blocks--travel .c-block-item__text a {
    color: #fa8670; }
  .c-blocks--travel .c-block-item__sub-sections .c-block-item__text {
    margin-bottom: 2rem; }

.vist {
  margin-bottom: 2rem; }

.page-header--visit {
  margin-bottom: 5rem; }

.vist__sub-title {
  margin-bottom: 0.5rem; }

@media (min-width: 768px) {
  .vist__main-copy {
    max-width: 60%; } }

@media (min-width: 992px) {
  .visit__contact-form .contact-form {
    max-width: 80%; } }

.visit__team p,
.visit__contact-details p {
  font-size: 0.8888888889em; }

/* ==========================================================================
   Listings
   ========================================================================== */
.listings-archive__wrapper {
  background-color: #ccf3f8;
  padding: 3rem 0; }

.listing-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #fff; }

.opening-information {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 1rem; }
  .opening-information .disclaimer {
    font-size: 14px;
    color: red; }

.listings-archive__filters {
  color: #fff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: #453d59; }
  @media (min-width: 992px) {
    .listings-archive__filters {
      padding-bottom: 1rem; } }
  .listings-archive__filters .facetwp-facet {
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
    text-align: left; }
    @media (max-width: 991px) {
      .listings-archive__filters .facetwp-facet {
        width: 100%;
        display: block; } }
  .listings-archive__filters .facetwp-type-date_range {
    margin-bottom: .5rem; }
    .listings-archive__filters .facetwp-type-date_range ::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #fff;
      opacity: 1;
      /* Firefox */ }
    .listings-archive__filters .facetwp-type-date_range :-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #fff; }
    .listings-archive__filters .facetwp-type-date_range ::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #fff; }
    .listings-archive__filters .facetwp-type-date_range ::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #fff; }
    .listings-archive__filters .facetwp-type-date_range ::-moz-placeholder {
      /* Firefox 19+ */
      color: #fff; }
    .listings-archive__filters .facetwp-type-date_range :-ms-input-placeholder {
      /* IE 10+ */
      color: #fff; }
    .listings-archive__filters .facetwp-type-date_range :-moz-placeholder {
      /* Firefox 18- */
      color: #fff; }
    .listings-archive__filters .facetwp-type-date_range .flatpickr-alt {
      background: #fa8670;
      border: 0;
      width: 170px;
      margin-right: 1rem;
      padding: .38rem .5rem;
      color: #fff; }
    @media (max-width: 991px) {
      .listings-archive__filters .facetwp-type-date_range .flatpickr-alt {
        width: 48%;
        margin-right: 0; }
      .listings-archive__filters .facetwp-type-date_range input:last-child {
        margin-left: 4%; }
      .listings-archive__filters .facetwp-type-date_range input.flatpickr-mobile {
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        background: #fa8670;
        border: 0;
        width: 48%;
        margin-right: 0;
        padding: .38rem .5rem;
        color: #fff;
        border-radius: 0;
        box-shadow: none !important; }
        .listings-archive__filters .facetwp-type-date_range input.flatpickr-mobile:after {
          content: attr(placeholder) !important; }
        .listings-archive__filters .facetwp-type-date_range input.flatpickr-mobile ::placeholder {
          /* Chrome, Firefox, Opera, Safari 10.1+ */
          color: #fff;
          opacity: 1;
          /* Firefox */ }
        .listings-archive__filters .facetwp-type-date_range input.flatpickr-mobile :-ms-input-placeholder {
          /* Internet Explorer 10-11 */
          color: #fff; }
        .listings-archive__filters .facetwp-type-date_range input.flatpickr-mobile ::-ms-input-placeholder {
          /* Microsoft Edge */
          color: #fff; }
        .listings-archive__filters .facetwp-type-date_range input.flatpickr-mobile ::-webkit-input-placeholder {
          /* Chrome/Opera/Safari */
          color: #fff; }
        .listings-archive__filters .facetwp-type-date_range input.flatpickr-mobile ::-moz-placeholder {
          /* Firefox 19+ */
          color: #fff; }
        .listings-archive__filters .facetwp-type-date_range input.flatpickr-mobile :-ms-input-placeholder {
          /* IE 10+ */
          color: #fff; }
        .listings-archive__filters .facetwp-type-date_range input.flatpickr-mobile :-moz-placeholder {
          /* Firefox 18- */
          color: #fff; }
      .listings-archive__filters .facetwp-type-date_range input[value]:not([value=""]) + input:after {
        content: '' !important; }
      .listings-archive__filters .facetwp-type-date_range .facetwp-date-max {
        margin-left: 4%; } }
  .listings-archive__filters .facetwp-dropdown {
    background: #fa8670;
    border: 0; }
  .listings-archive__filters .facetwp-dropdown {
    width: 210px; }
    .listings-archive__filters .facetwp-dropdown ul {
      width: 100%;
      background: #fa8670; }
  .listings-archive__filters .facetwp-checkbox {
    padding-left: 0 !important;
    padding-right: 20px !important;
    min-height: 2.5rem;
    line-height: 2.5rem;
    margin: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.5); }
    .listings-archive__filters .facetwp-checkbox:before {
      right: 7px; }
  .listings-archive__filters .facetwp-counter {
    display: none; }
  .listings-archive__filters .js-select .list {
    padding: 0 18px; }
    .listings-archive__filters .js-select .list .option {
      padding-left: 0;
      padding-right: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.5); }
  .listings-archive__filters .fs-label-wrap .fs-label {
    cursor: pointer;
    padding: 0.667rem 0.555rem; }
  .listings-archive__filters .fs-search {
    display: none; }
  .listings-archive__filters .fs-dropdown,
  .listings-archive__filters .fs-label-wrap {
    background: #fa8670;
    border: 0; }
  .listings-archive__filters .fs-dropdown {
    margin-top: 0;
    pointer-events: auto;
    display: inline-block !important;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; }
    .listings-archive__filters .fs-dropdown.fs-hidden {
      opacity: 0;
      pointer-events: none; }
  .listings-archive__filters .fs-arrow {
    border-top-color: #fff;
    right: 10px;
    transition: all 0.2s ease-in-out; }
  .listings-archive__filters .fs-open .fs-arrow {
    transform: rotate(-180deg); }
  .listings-archive__filters .fs-options {
    padding-left: 10px;
    padding-right: 10px;
    max-height: 280px !important; }
  .listings-archive__filters .fs-option {
    font-size: 0.8888888889em;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 0;
    transition: color 0.1s ease-in-out; }
  .listings-archive__filters .fs-wrap {
    position: relative; }
  @media (max-width: 767px) {
    .listings-archive__filters .fs-dropdown,
    .listings-archive__filters .fs-wrap {
      width: 100%; } }
  .listings-archive__filters .fs-wrap:not(.multiple) .fs-option.selected, .listings-archive__filters .fs-wrap:not(.multiple) .fs-option:hover {
    color: #453d59; }
  .listings-archive__filters .fs-wrap.multiple .fs-option {
    padding-left: 0;
    padding-right: 30px; }
  .listings-archive__filters .fs-wrap.multiple .fs-checkbox {
    left: auto;
    right: -8px; }
  .listings-archive__filters .fs-wrap.multiple .fs-option.selected .fs-checkbox i,
  .listings-archive__filters .fs-wrap.multiple .fs-option .fs-checkbox i {
    border: 0;
    border-radius: 0; }
  .listings-archive__filters .fs-wrap.multiple .fs-option.selected .fs-checkbox i {
    background-color: #453d59;
    border-color: transparent; }

.listings-archive__sort {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: space-between; }
  .listings-archive__sort .facetwp-sort-select {
    background-color: transparent;
    border-color: #fff;
    padding: 0.555rem;
    display: inline-block;
    width: 10rem;
    line-height: 1.35rem;
    height: calc(2.25rem + 2px) !important; }

.listings-archive__description {
  font-size: 1.1111111111em; }

.listings-archive__filter {
  margin-bottom: .5rem; }

.listings-archive__label {
  font-size: 1.4444444444em;
  display: block;
  font-weight: 500;
  font-family: "Rokkitt", Helvetica, Arial, sans-serif; }
  @media (min-width: 992px) {
    .listings-archive__label {
      display: inline-block;
      margin-right: .5rem; } }

@media (max-width: 991px) {
  .listings-archive__region-map {
    margin-bottom: 2.5rem; } }
.listings-archive__region-map svg {
  display: block; }
  @media (min-width: 768px) {
    .listings-archive__region-map svg {
      max-width: 70%;
      margin: 0 auto; } }
  .listings-archive__region-map svg path {
    fill: #fff;
    stroke: #453d59 !important;
    stroke-width: 3px;
    stroke-linejoin: round;
    stroke-linecap: round; }

.listings-archive__map-container {
  overflow: hidden;
  height: 0;
  transition: height 0.2s ease-in-out; }

.listings-archive__map {
  width: 100%;
  height: 400px; }

.listings-archive__map--is-active {
  height: 400px; }

.map-infobox p {
  margin-bottom: 1em;
  line-height: 1.5; }
  .map-infobox p:last-child {
    margin-bottom: 0; }

.map-infobox__view-url {
  font-size: 0.8888888889rem;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  border-radius: 100%;
  border: 1px solid #453d59;
  text-align: center;
  display: inline-block; }

.map-infobox__container {
  padding-top: 55%;
  background: #d8d8d8;
  position: relative;
  width: 100% !important;
  z-index: 0 !important; }

.map-infobox__thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover; }

.map-infobox__details {
  padding: 1rem; }

.map-infobox__title {
  font-size: 0.8888888889rem;
  margin-bottom: .75rem; }

.map-infobox__url {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 20; }

@media (max-width: 991px) {
  .listing-item__thumbnail {
    margin-bottom: 1.5rem; } }

.listing-item__late-avail,
.listing-item__meta {
  font-size: 0.8888888889em; }

.listing-item__meta {
  color: #838386;
  margin-top: auto;
  width: 100%; }
  .listing-item__meta .seperator {
    padding: 0 .75rem; }

.listing-item__view {
  float: right;
  display: none; }
  @media (min-width: 576px) {
    .listing-item__view {
      display: block; } }

.listing-item__late-avail {
  display: inline-block;
  top: .2rem;
  right: 20px;
  position: absolute; }
  @media (max-width: 991px) {
    .listing-item__late-avail {
      font-size: 0;
      top: 0; } }
  .listing-item__late-avail .clock {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: 0; }
    .listing-item__late-avail .clock svg {
      height: 24px;
      width: 24px; }

.page-header--listing {
  border-top: 2px solid #d0d0d2;
  background: #eeeeee;
  padding-top: 3rem;
  padding-bottom: 3rem; }

.page-title--listing {
  margin-bottom: 0; }

.page-content--listing {
  background: #eeeeee; }

.listing__gallery {
  background: #453d59;
  padding-top: 2rem;
  padding-bottom: 2rem; }

.listing__gallery-container {
  height: 30rem; }
  @media (max-width: 991px) {
    .listing__gallery-container {
      height: 15rem; } }
  .listing__gallery-container .js-slideshow,
  .listing__gallery-container .slick-list,
  .listing__gallery-container .slick-track,
  .listing__gallery-container .slick-slide {
    height: 100% !important; }
  .listing__gallery-container .js-slideshow--has-dots {
    padding-bottom: 2rem; }
  .listing__gallery-container .slick-slide {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain; }
  .listing__gallery-container .slick-dots {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0; }
    .listing__gallery-container .slick-dots li.slick-active button, .listing__gallery-container .slick-dots li:hover button {
      background: #fff; }
    .listing__gallery-container .slick-dots li button {
      background: #838386; }
  .listing__gallery-container .slick-prev,
  .listing__gallery-container .slick-next {
    border-radius: 100%;
    border: 1px solid #fff; }
    .listing__gallery-container .slick-prev:before,
    .listing__gallery-container .slick-next:before {
      color: #fff; }
  .listing__gallery-container .slick-prev {
    left: 10%; }
  .listing__gallery-container .slick-next {
    right: 10%; }

@media (max-width: 991px) {
  .listing__main-content {
    margin-bottom: 2rem; } }
.listing__main-content .section {
  margin-bottom: 2rem; }
  .listing__main-content .section:last-child {
    margin-bottom: 0; }

.listing__short-description {
  font-size: 1.4444444444em;
  line-height: 1.2;
  font-family: "Rokkitt", Helvetica, Arial, sans-serif;
  font-weight: 500; }

.listing__description {
  font-size: 1.1111111111em; }

.listing__terms {
  background: #fff;
  padding: 1.5rem;
  margin-top: 1rem; }

.listing__terms-list {
  margin-bottom: 1rem; }
  .listing__terms-list li:before {
    content: '\2014';
    display: inline-block;
    margin-right: .25rem; }

.listing__late-avail {
  background: #fff;
  padding: 1.5rem; }
  .listing__late-avail .h3 {
    font-size: 1.3333333333em;
    margin-bottom: .5rem; }
    .listing__late-avail .h3 .clock {
      display: inline-block;
      vertical-align: middle; }
      .listing__late-avail .h3 .clock svg {
        width: 22px;
        height: 22px; }

.listing__accreditations {
  background: #fff;
  padding: 1.5rem;
  margin-top: 2rem; }
  .listing__accreditations li {
    width: 16.666%;
    display: inline-block;
    padding: 0.25rem; }
    @media (max-width: 767px) {
      .listing__accreditations li {
        width: 25%; } }
    .listing__accreditations li > img {
      display: inline-block;
      max-height: 4rem;
      width: auto;
      opacity: 1; }

.listing .related {
  background: #ccf3f8; }

.tax-listing_region .listings-archive__filter--region {
  display: none; }

.tax-listing_type .listings-archive__filter--type {
  display: none; }

.regions {
  margin-bottom: 6rem; }
  .regions .slick-dots {
    position: absolute;
    width: 100%;
    z-index: 1; }
  .regions .slick-arrow {
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem;
    border: 1px solid #fff;
    border-radius: 100%; }
    .regions .slick-arrow:before {
      color: #fff; }
  .regions .slick-next {
    right: .5rem; }
    @media (min-width: 768px) {
      .regions .slick-next {
        right: 1rem; } }
  .regions .slick-prev {
    left: .5rem; }
    @media (min-width: 768px) {
      .regions .slick-prev {
        left: 1rem; } }
  .regions .gallery-container {
    position: relative; }
  .regions .mmi-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 13rem; }
    @media (min-width: 768px) {
      .regions .mmi-map {
        width: 50%;
        height: 100%; } }
    .regions .mmi-map svg {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate3d(-50%, -50%, 0);
      max-width: 70%; }
      .regions .mmi-map svg path {
        fill: rgba(255, 255, 255, 0.3);
        stroke: #fff;
        stroke-width: 3px;
        stroke-linejoin: round;
        stroke-linecap: round;
        transition: fill 0.2s ease-in-out; }
        .regions .mmi-map svg path.is-active, .regions .mmi-map svg path:hover {
          cursor: pointer;
          fill: #fff; }

.region-item__container {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 13rem 2rem 1.8rem; }
  @media (min-width: 768px) {
    .region-item__container {
      padding: 4rem 2rem 6rem; } }
  .region-item__container:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1; }
  .region-item__container .container-fluid {
    z-index: 2;
    position: relative; }

.region_map svg {
  display: inline-block;
  margin-bottom: 1.2em; }
  @media (min-width: 768px) {
    .region_map svg {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate3d(-50%, -50%, 0);
      margin-bottom: 0;
      max-width: 55%; } }

.region-item__link {
  font-weight: 700;
  display: block;
  cursor: pointer;
  margin-top: 1rem; }

.region-item__link,
.region-item__subtitle,
.region-item__title,
.region-item__heading,
.region-item__description,
.region-item__description.wysiwyg-ce a {
  color: #fff; }

@media (max-width: 991px) {
  .region-item__title {
    margin-bottom: .75em; } }

.region-item__subtitle {
  border-bottom: 1px solid #fff;
  padding-bottom: .75rem;
  margin-bottom: 3rem; }

.region-item__heading {
  font-size: 1.4444444444em;
  font-weight: 500; }
  @media (max-width: 767px) {
    .region-item__heading {
      margin-bottom: 0; } }

.region-item__description {
  font-size: 1.1111111111em; }

@media (max-width: 767px) {
  .region-item__description,
  .region-item__subtitle {
    display: none; } }

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08); }
  .flatpickr-calendar select:not([size]):not([multiple]) {
    height: initial; }

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible; }

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999; }

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px; }

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px); }

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; }

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0; }

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid rgba(72, 72, 72, 0.2); }

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-innerContainer {
  border-bottom: 0; }

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  border: 1px solid rgba(72, 72, 72, 0.2); }

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto; }

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px; }

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px; }

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px; }

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px; }

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%; }

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: rgba(72, 72, 72, 0.2); }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fa8670; }

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%; }

.flatpickr-calendar.arrowBottom:before {
  border-top-color: rgba(72, 72, 72, 0.2); }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fa8670; }

.flatpickr-calendar:focus {
  outline: 0; }

.flatpickr-wrapper {
  position: relative;
  display: inline-block; }

.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-months .flatpickr-month {
  border-radius: 5px 5px 0 0;
  background: #fa8670;
  color: #fff;
  fill: #fff;
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: #fff;
  fill: #fff; }

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none; }

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative; }

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
		/*rtl:begin:ignore*/
  /*
		*/
  left: 0;
  /*
		/*rtl:end:ignore*/
  /*
		*/ }

  /*
		/*rtl:begin:ignore*/
  /*
		/*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
		/*rtl:begin:ignore*/
  /*
		*/
  right: 0;
  /*
		/*rtl:end:ignore*/
  /*
		*/ }

  /*
		/*rtl:begin:ignore*/
  /*
		/*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #bbb; }

.flatpickr-clear {
  color: #453d59; }

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747; }

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px; }

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit; }

.numInputWrapper {
  position: relative;
  height: auto; }

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block; }

.numInputWrapper input {
  width: 100%; }

.numInputWrapper input::-ms-clear {
  display: none; }

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none; }

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(72, 72, 72, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1); }

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2); }

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute; }

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0; }

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(72, 72, 72, 0.6);
  top: 26%; }

.numInputWrapper span.arrowDown {
  top: 50%; }

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(72, 72, 72, 0.6);
  top: 40%; }

.numInputWrapper span svg {
  width: inherit;
  height: auto; }

.numInputWrapper span svg path {
  fill: rgba(255, 255, 255, 0.5); }

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05); }

.numInputWrapper:hover span {
  opacity: 1; }

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px); }

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0; }

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block; }

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #fff; }

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #fff; }

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; }

.flatpickr-current-month input.cur-year:focus {
  outline: 0; }

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  pointer-events: none; }

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: none;
  background-color: #fa8670;
  background: url(https://visitmullandiona.co.uk/wp-content/themes/mulliona/assets/img/paging.svg) no-repeat;
  background-position: right center;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: .3em .5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: auto; }

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none; }

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: #fa8670;
  outline: none;
  padding: 0; }

.flatpickr-weekdays {
  background: #fa8670;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px; }

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; }

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: #fa8670;
  color: #453d59;
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder; }

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0; }

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
  border-left: 1px solid rgba(72, 72, 72, 0.2);
  border-right: 1px solid rgba(72, 72, 72, 0.2); }

.flatpickr-days:focus {
  outline: 0; }

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1; }

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 rgba(72, 72, 72, 0.2);
  box-shadow: -1px 0 0 rgba(72, 72, 72, 0.2); }

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #484848;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center; }

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e2e2e2;
  border-color: #e2e2e2; }

.flatpickr-day.today {
  border-color: #bbb; }

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #bbb;
  background: #bbb;
  color: #fff; }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #fa8670;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #fa8670; }

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px; }

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0; }

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #fa8670;
  box-shadow: -10px 0 0 #fa8670; }

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px; }

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
  box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2; }

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(72, 72, 72, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default; }

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(72, 72, 72, 0.1); }

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #fa8670, 5px 0 0 #fa8670;
  box-shadow: -5px 0 0 #fa8670, 5px 0 0 #fa8670; }

.flatpickr-day.hidden {
  visibility: hidden; }

.rangeMode .flatpickr-day {
  margin-top: 1px; }

.flatpickr-weekwrapper {
  float: left; }

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  border-left: 1px solid rgba(72, 72, 72, 0.2); }

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px; }

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: #453d59;
  background: transparent;
  cursor: default;
  border: none; }

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(72, 72, 72, 0.2); }

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 0 0 5px 5px; }

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both; }

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left; }

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #484848; }

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #484848; }

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%; }

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%; }

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #484848;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; }

.flatpickr-time input.flatpickr-hour {
  font-weight: bold; }

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400; }

.flatpickr-time input:focus {
  outline: 0;
  border: 0; }

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #484848;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400; }

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eaeaea; }

.flatpickr-input[readonly] {
  cursor: pointer; }

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.listing-item__details {
  display: flex;
  flex-direction: column; }
  .listing-item__details .listing-item__short-description {
    margin-bottom: 1rem; }

.listing-item__freetobook {
  background: #453d59;
  color: #fff;
  padding: .5rem 1rem;
  margin-bottom: 1rem;
  display: inline-block; }
  .listing-item__freetobook:hover {
    background: #2e283b; }

.fs-label-wrap {
  width: 200px !important; }
  @media (max-width: 767px) {
    .fs-label-wrap {
      width: 100% !important; } }

.listing-item__extra-button {
  background: #453d59;
  color: #fff;
  padding: .5rem 1rem;
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  text-align: center; }
  .listing-item__extra-button:hover {
    background: #2e283b; }
  .listing-item__extra-button .ico {
    margin-right: .3rem; }

@media only screen and (min-width: 760px) {
  .listings-archive__filter.col-md-auto {
    padding-left: 0;
    padding-right: 0; } }
/* ==========================================================================
   Events
   ========================================================================== */
.facetwp-date {
  background: #fa8670;
  color: #fff;
  padding: 0.3rem;
  border: none;
  margin-right: .2rem;
  width: 47%; }

.events-archive .load-more--fwp {
  display: none; }

.single-event .site-content {
  background: #eeeeee; }

.page-title--event {
  border-bottom: 1px solid #838386;
  padding-bottom: 1rem; }

.page-content--event {
  margin-bottom: 3rem; }

.event__date {
  font-family: "Rokkitt", Helvetica, Arial, sans-serif;
  font-size: 1.4444444444em;
  margin-bottom: 1rem; }
  .event__date p {
    margin-bottom: 0; }

@media (max-width: 991px) {
  .event__main-content {
    margin-bottom: 2rem; } }

.event__content {
  font-size: 1.1111111111em; }

.events__heading-container {
  position: relative; }

.cards--events {
  padding-top: 3rem;
  padding-bottom: 3rem; }
  .cards--events .container-fluid {
    position: relative; }
  .cards--events .slideshow-controls {
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
  .cards--events .js-slideshow {
    padding-top: 3rem; }

.event .card-item__description {
  display: none; }

.post-type-archive-event .page-header {
  text-align: left; }

/* ==========================================================================
   Guides
   ========================================================================== */
.guides__heading-container {
  margin-top: 2rem; }

.guides__heading-container .col-sm-6 {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.guides_description h3, .guides_description .h3 {
  padding-left: 1rem;
  padding-right: 1rem; }
@media (min-width: 576px) {
  .guides_description:before {
    content: '';
    height: 100%;
    width: 1px;
    background: #d3d3d3;
    position: absolute;
    left: 0;
    top: 0; } }

.guide__items {
  margin-top: 2rem; }

.guide-item {
  margin-bottom: 3rem; }

.guide-item__container {
  padding-bottom: 60%;
  position: relative;
  overflow: hidden; }
  .guide-item__container:hover .guide-item__image:after {
    background: rgba(0, 0, 0, 0.5); }
  .guide-item__container:hover .guide-item__read-more {
    color: #fa8670; }

.guide-item__image {
  position: absolute;
  top: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.4s ease-in-out; }
  .guide-item__image:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.2s; }
  .guide-item__image:hover {
    transform: scale(1.1) translateZ(0); }

.guide-item__title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  padding: 0 1rem;
  margin: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2; }

.guide-item__read-more {
  display: none;
  font-size: 0.8888888889em;
  color: #838386;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: #fff;
  padding: .75rem;
  width: 45%;
  line-height: 1.2rem; }

.post-type-archive-guide .page-header {
  display: none; }

.page-title--user-account {
  font-size: 2.2222222222em; }
  .logged-in .page-title--user-account {
    margin-bottom: 1rem; }

.logged-in .page-header--user-account {
  margin-bottom: 4rem; }

.listings-table-item,
.listings-table__header {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 1rem;
  margin-bottom: 1rem; }

@media (max-width: 767px) {
  .listings-table-item .image-container {
    margin-bottom: 0.5rem; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  color: #fff;
  text-align: center;
  padding: 2.5rem 0;
  background-color: #453d59;
  width: 100%;
  line-height: 1.6; }
  .site-footer a {
    color: #fff; }
  .site-footer p:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .site-footer .container-fluid {
      max-width: calc(100% - 80px); } }

.site-footer__column {
  margin-bottom: 2rem; }
  @media (min-width: 768px) {
    .site-footer__column {
      margin-bottom: 0; } }
  .site-footer__column img {
    max-width: 200px; }

.site-footer__widgets {
  font-size: 0.8888888889em;
  padding-bottom: 0; }
  @media (min-width: 768px) {
    .site-footer__widgets {
      padding-bottom: 2rem; } }
  .site-footer__widgets .widget-title {
    font-size: 1em;
    margin-bottom: 0; }
  .site-footer__widgets .textwidget {
    color: #838386; }
    .site-footer__widgets .textwidget strong {
      font-weight: 400;
      color: #453d59; }
    .site-footer__widgets .textwidget a {
      color: #838386; }
    .site-footer__widgets .textwidget table {
      border: 0;
      padding: 0;
      margin-bottom: 1.5em; }
      .site-footer__widgets .textwidget table td,
      .site-footer__widgets .textwidget table th {
        border: 0;
        padding: 0; }

.site-footer__widget {
  margin-bottom: 1rem; }

.site-footer__logo {
  max-width: 200px; }
  .site-footer__logo svg {
    max-width: 100%; }

@media (min-width: 768px) {
  .site-footer__newsletter-btn {
    text-align: right; } }

.js-trigger-newsletter-form {
  font-size: 0.8888888889rem; }
  .js-trigger-newsletter-form > svg {
    fill: #d3d3d3;
    transition: transform 0.35s ease-in-out; }

.site-footer__copyright {
  font-size: 0.6666666667em; }
  @media (min-width: 992px) {
    .site-footer__copyright {
      text-align: right; } }

.site-footer__subnav-menu {
  font-size: 0.8888888889em; }
  @media (min-width: 992px) {
    .site-footer__subnav-menu {
      text-align: left; } }

.site-footer__subnav-menu {
  font-family: "Rokkitt", Helvetica, Arial, sans-serif; }
  .site-footer__subnav-menu ul li {
    padding-right: 0.5rem; }

.site-footer__newsletter {
  font-size: 0.8888888889em; }
  .site-footer__newsletter .form, .site-footer__newsletter .acf-form {
    display: inline-flex; }
    @media (max-width: 991px) {
      .site-footer__newsletter .form, .site-footer__newsletter .acf-form {
        justify-content: center;
        margin-bottom: 1rem; } }
  .site-footer__newsletter .form-control, .site-footer__newsletter select, .site-footer__newsletter .wpcf7-text, .site-footer__newsletter .acf-field textarea, .acf-field .site-footer__newsletter textarea,
  .site-footer__newsletter .acf-field select,
  .acf-field .site-footer__newsletter select,
  .site-footer__newsletter .acf-field input[type="text"],
  .acf-field .site-footer__newsletter input[type="text"],
  .site-footer__newsletter .acf-field input[type="search"],
  .acf-field .site-footer__newsletter input[type="search"],
  .site-footer__newsletter .acf-field input[type="number"],
  .acf-field .site-footer__newsletter input[type="number"],
  .site-footer__newsletter .acf-field input[type="url"],
  .acf-field .site-footer__newsletter input[type="url"],
  .site-footer__newsletter .acf-field input[type="email"],
  .acf-field .site-footer__newsletter input[type="email"],
  .site-footer__newsletter .btn,
  .site-footer__newsletter .acf-button {
    font-size: 0.7777777778rem;
    border-color: #fff;
    color: #fff;
    padding: .3rem .75rem;
    background: transparent; }
  .site-footer__newsletter .btn, .site-footer__newsletter .acf-button {
    font-size: 0.7777777778rem; }
    .site-footer__newsletter .btn:hover, .site-footer__newsletter .acf-button:hover {
      color: #453d59;
      background: #fff; }
  @media (min-width: 992px) {
    .site-footer__newsletter .input-group {
      width: 15rem; } }
  .site-footer__newsletter .form-group {
    margin-bottom: 0; }
  .site-footer__newsletter .form-control::-webkit-input-placeholder, .site-footer__newsletter select::-webkit-input-placeholder, .site-footer__newsletter .wpcf7-text::-webkit-input-placeholder, .site-footer__newsletter .acf-field textarea::-webkit-input-placeholder, .acf-field .site-footer__newsletter textarea::-webkit-input-placeholder,
  .site-footer__newsletter .acf-field select::-webkit-input-placeholder,
  .acf-field .site-footer__newsletter select::-webkit-input-placeholder,
  .site-footer__newsletter .acf-field input[type="text"]::-webkit-input-placeholder,
  .acf-field .site-footer__newsletter input[type="text"]::-webkit-input-placeholder,
  .site-footer__newsletter .acf-field input[type="search"]::-webkit-input-placeholder,
  .acf-field .site-footer__newsletter input[type="search"]::-webkit-input-placeholder,
  .site-footer__newsletter .acf-field input[type="number"]::-webkit-input-placeholder,
  .acf-field .site-footer__newsletter input[type="number"]::-webkit-input-placeholder,
  .site-footer__newsletter .acf-field input[type="url"]::-webkit-input-placeholder,
  .acf-field .site-footer__newsletter input[type="url"]::-webkit-input-placeholder,
  .site-footer__newsletter .acf-field input[type="email"]::-webkit-input-placeholder,
  .acf-field .site-footer__newsletter input[type="email"]::-webkit-input-placeholder {
    color: #fff; }
  .site-footer__newsletter .form-control:-moz-placeholder, .site-footer__newsletter select:-moz-placeholder, .site-footer__newsletter .wpcf7-text:-moz-placeholder, .site-footer__newsletter .acf-field textarea:-moz-placeholder, .acf-field .site-footer__newsletter textarea:-moz-placeholder,
  .site-footer__newsletter .acf-field select:-moz-placeholder,
  .acf-field .site-footer__newsletter select:-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="text"]:-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="text"]:-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="search"]:-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="search"]:-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="number"]:-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="number"]:-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="url"]:-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="url"]:-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="email"]:-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="email"]:-moz-placeholder {
    color: #fff; }
  .site-footer__newsletter .form-control::-moz-placeholder, .site-footer__newsletter select::-moz-placeholder, .site-footer__newsletter .wpcf7-text::-moz-placeholder, .site-footer__newsletter .acf-field textarea::-moz-placeholder, .acf-field .site-footer__newsletter textarea::-moz-placeholder,
  .site-footer__newsletter .acf-field select::-moz-placeholder,
  .acf-field .site-footer__newsletter select::-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="text"]::-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="text"]::-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="search"]::-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="search"]::-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="number"]::-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="number"]::-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="url"]::-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="url"]::-moz-placeholder,
  .site-footer__newsletter .acf-field input[type="email"]::-moz-placeholder,
  .acf-field .site-footer__newsletter input[type="email"]::-moz-placeholder {
    color: #fff; }
  .site-footer__newsletter .form-control:-ms-input-placeholder, .site-footer__newsletter select:-ms-input-placeholder, .site-footer__newsletter .wpcf7-text:-ms-input-placeholder, .site-footer__newsletter .acf-field textarea:-ms-input-placeholder, .acf-field .site-footer__newsletter textarea:-ms-input-placeholder,
  .site-footer__newsletter .acf-field select:-ms-input-placeholder,
  .acf-field .site-footer__newsletter select:-ms-input-placeholder,
  .site-footer__newsletter .acf-field input[type="text"]:-ms-input-placeholder,
  .acf-field .site-footer__newsletter input[type="text"]:-ms-input-placeholder,
  .site-footer__newsletter .acf-field input[type="search"]:-ms-input-placeholder,
  .acf-field .site-footer__newsletter input[type="search"]:-ms-input-placeholder,
  .site-footer__newsletter .acf-field input[type="number"]:-ms-input-placeholder,
  .acf-field .site-footer__newsletter input[type="number"]:-ms-input-placeholder,
  .site-footer__newsletter .acf-field input[type="url"]:-ms-input-placeholder,
  .acf-field .site-footer__newsletter input[type="url"]:-ms-input-placeholder,
  .site-footer__newsletter .acf-field input[type="email"]:-ms-input-placeholder,
  .acf-field .site-footer__newsletter input[type="email"]:-ms-input-placeholder {
    color: #fff; }

.newsletter-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0; }

.newsletter-form__response {
  padding-top: .5em;
  width: 100%; }
  @media (min-width: 768px) {
    .newsletter-form__response {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 100%; } }

@media (max-width: 767px) {
  .site-footer__menu {
    margin-bottom: .75rem; } }

.footer-social {
  text-align: center;
  padding: 2rem 0; }
  .footer-social .social-accounts__heading {
    font-weight: 500;
    color: #453d59;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    font-size: 1.7777777778em; }
    @media (min-width: 768px) {
      .footer-social .social-accounts__heading {
        max-width: 50%; } }
    @media (min-width: 992px) {
      .footer-social .social-accounts__heading {
        max-width: 30%; } }
  .footer-social .d-flex {
    justify-content: center; }
  .footer-social a {
    font-size: 1.6666666667em;
    padding: 0 .8rem; }

/* ==========================================================================
   Admin Bar
   ========================================================================== */
.admin-bar .site-header {
  top: 32px !important; }

/* ==========================================================================
   ACF Form
   ========================================================================== */
.ap-map-location .search {
  display: none !important; }

.acf-field-image-checkbox .acf-image-checkbox-list li {
  display: inline-block;
  margin-right: .85rem;
  margin-bottom: .2rem; }
.acf-field-image-checkbox input[type=checkbox] {
  display: none; }
.acf-field-image-checkbox input[type=checkbox] + label {
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
  background-size: contain;
  background-position: 50% 50%;
  border: 4px solid #fff;
  height: 5rem;
  width: 5rem;
  display: inline-block;
  padding: 0;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 2px #fff;
  transition: box-shadow 0.2s; }
.acf-field-image-checkbox input[type=checkbox]:checked + label {
  box-shadow: 0 0 0 3px #fa8670; }

.acf-fields {
  margin-bottom: 2rem; }

.acf-field {
  margin-bottom: 1.5rem; }

.acf-label {
  margin-bottom: .5rem; }
  .acf-label label {
    font-weight: 700; }
  .acf-label p.description {
    color: #838386;
    font-size: 0.8888888889em;
    margin-bottom: 0; }

.acf-input-wrap {
  position: relative; }

.acf-checkbox-list > li,
.acf-checkbox-list .children {
  display: inline-block;
  margin-right: .5rem;
  margin-bottom: .25rem; }
  .acf-checkbox-list > li span,
  .acf-checkbox-list .children span {
    vertical-align: middle; }
.acf-checkbox-list .children {
  margin-left: .5rem; }

.button-primary-disabled {
  pointer-events: none; }

.acf-icon.geocode-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8888888889em;
  width: 34px;
  height: 34px;
  display: inline-block;
  background: #453d59;
  border-radius: 100%;
  line-height: 30px;
  right: 10px;
  text-align: center;
  z-index: 1; }
  .acf-icon.geocode-btn:before {
    color: #fff;
    content: "\e902";
    position: relative; }

.acf-hidden {
  display: none !important; }

.acf-form-submit {
  position: relative; }

.acf-spinner {
  background-color: rgba(0, 0, 0, 0);
  opacity: 0.85;
  border-radius: 50px;
  border: 2px solid #9d9d9f;
  border-bottom: 2px solid #2b2b2c;
  border-left: 2px solid #2b2b2c;
  display: block;
  width: 20px;
  height: 20px;
  z-index: 9999;
  animation: loading 0.65s infinite linear;
  margin-left: 0.75rem;
  display: none; }
  .acf-spinner.is-active {
    display: inline-block;
    vertical-align: middle; }

.acf-fields .has-value .hide-if-value {
  display: none; }
.acf-fields .has-value .show-if-value {
  display: block; }
.acf-fields .hide-if-value {
  display: block; }
.acf-fields .show-if-value {
  display: none; }

.acf-image-uploader .acf-soh-target {
  position: absolute;
  top: 5px;
  right: 5px; }
  .acf-image-uploader .acf-soh-target > li:first-child {
    display: none; }

.acf-file-uploader {
  min-height: 84px;
  position: relative; }
  .acf-file-uploader .acf-soh-target {
    position: absolute;
    top: 5px;
    right: 5px; }
  .acf-file-uploader .file-icon {
    position: absolute;
    top: 0;
    left: 0; }
  .acf-file-uploader .file-info {
    padding: 0 10px;
    margin-left: 69px;
    font-size: 0.8888888889em;
    line-height: 1.3333rem; }
    .acf-file-uploader .file-info p {
      margin-bottom: 0; }
    .acf-file-uploader .file-info ul {
      position: absolute;
      top: 5px;
      right: 5px; }
      .acf-file-uploader .file-info ul > li:first-child {
        display: none; }

.acf-soh {
  position: relative; }
  .acf-soh .acf-soh-target {
    visibility: hidden;
    opacity: 0; }
  .acf-soh:hover .acf-soh-target {
    visibility: visible;
    opacity: 1; }

.hidden-by-conditional-logic {
  display: none !important; }

.acf-hl:before,
.acf-hl:after,
.acf-bl:before,
.acf-bl:after,
.acf-cf:before,
.acf-cf:after {
  content: "";
  display: block;
  line-height: 0; }

.acf-hl > li {
  float: left;
  display: block;
  margin: 0;
  padding: 0; }

.acf-icon {
  border-color: transparent;
  background: #453d59;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: none;
  display: inline-block;
  height: 26px;
  width: 26px;
  border: transparent solid 1px;
  border-radius: 100%;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  vertical-align: top; }

.acf-icon.-cancel:before {
  content: '\00d7';
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center; }

.acf-expand-details {
  display: none; }

.acf-media-modal .max-upload-size,
.acf-media-modal .edit-attachment,
.acf-google-map .acf-actions,
.acf-taxonomy-field .acf-icon.-plus,
div[data-name="listing_owner"] {
  display: none !important; }

.acf-gallery {
  border: 1px solid #d5d5d5;
  height: 400px;
  position: relative; }

.acf-gallery .acf-gallery-main {
  position: absolute;
  top: 0;
  right: 0 !important;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 2; }

.acf-gallery .acf-gallery-sort {
  display: none !important; }

.acf-gallery .acf-gallery-attachments {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 48px;
  left: 0;
  padding: 5px;
  overflow: auto;
  overflow-x: hidden; }

.acf-gallery .acf-gallery-attachment {
  width: 25%;
  float: left;
  cursor: pointer;
  position: relative; }

.acf-gallery .acf-gallery-attachment .margin {
  margin: 5px;
  border: #DFDFDF solid 1px;
  position: relative;
  overflow: hidden;
  background: #eee; }

.acf-gallery .acf-gallery-attachment .margin:before {
  content: "";
  display: block;
  padding-top: 100%; }

.acf-gallery .acf-gallery-attachment .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(50%, 50%); }

.acf-gallery .acf-gallery-attachment .thumbnail img {
  display: block;
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: none;
  transform: translate(-50%, -50%); }

.acf-gallery .acf-gallery-attachment .filename {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5%;
  background: #F4F4F4;
  background: rgba(255, 255, 255, 0.8);
  border-top: #DFDFDF solid 1px;
  font-weight: bold;
  text-align: center;
  word-wrap: break-word;
  max-height: 90%;
  overflow: hidden; }

.acf-gallery .acf-gallery-attachment .actions {
  position: absolute;
  top: 0;
  right: 0;
  display: none; }

.acf-gallery .acf-gallery-attachment:hover .actions {
  display: block; }

.acf-gallery .acf-gallery-attachment.ui-sortable-helper .margin {
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); }

.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin {
  background: #F1F1F1;
  border: none; }

.acf-gallery .acf-gallery-attachment.ui-sortable-placeholder .margin * {
  display: none !important; }

.acf-gallery .acf-gallery-attachment.-icon .thumbnail img {
  transform: translate(-50%, -70%); }

html[dir="rtl"] .acf-gallery .acf-gallery-attachment {
  float: right; }

.acf-gallery.sidebar-open {
  /* hide attachment actions when sidebar is open */
  /* allow sidebar to move over main for small widths (widget edit box) */ }

.acf-gallery.sidebar-open .acf-gallery-side {
  display: none !important;
  z-index: 2; }

.acf-gallery .acf-gallery-toolbar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
  border-top: 1px solid #d5d5d5;
  background: #fff;
  min-height: 28px; }

.acf-gallery .acf-gallery-toolbar .acf-hl li {
  line-height: 24px;
  display: inline-block; }

.acf-gallery .acf-gallery-toolbar .bulk-actions-select {
  width: auto;
  margin: 0 1px 0 0; }

.acf-gallery .acf-gallery-side {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background: #eeeeee;
  border-left: 1px solid #d5d5d5;
  z-index: 1;
  overflow: hidden; }

.acf-gallery .acf-gallery-side .acf-gallery-side-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 349px; }

.acf-gallery .acf-gallery-side-info {
  position: relative;
  width: 100%;
  padding: 10px 0 15px;
  margin: 0;
  background: transparent; }

.acf-gallery .acf-gallery-side-info:after {
  clear: both;
  content: "";
  display: table; }

.acf-gallery .acf-gallery-side-info img {
  float: left;
  width: auto;
  max-width: 80px;
  max-height: 80px;
  margin: 0 10px 1px 0;
  background: #FFFFFF;
  padding: 0;
  border: 1px solid #d5d5d5;
  border-radius: 1px;
  /* rtl */ }

html[dir="rtl"] .acf-gallery .acf-gallery-side-info img {
  float: right;
  margin: 0 0 0 10px; }

.acf-gallery .acf-gallery-side-info p {
  font-size: 14px;
  line-height: 15px;
  margin: 3px 0;
  word-break: break-all;
  color: #838386; }

.acf-gallery .acf-gallery-side-info .uploaded,
.acf-gallery .acf-gallery-side-info .dimensions {
  display: none; }

.acf-gallery .acf-gallery-side-info p strong {
  color: #453d59; }

.acf-gallery .acf-gallery-side-info a {
  text-decoration: none; }

.acf-gallery .acf-gallery-side-info a.acf-gallery-edit {
  display: none;
  color: #21759b; }

.acf-gallery .acf-gallery-side-info a.acf-gallery-remove {
  color: #bc0b0b; }

.acf-gallery .acf-gallery-side-info a:hover {
  text-decoration: underline; }

.acf-gallery .acf-gallery-side-data {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 48px;
  left: 0;
  overflow: auto;
  overflow-x: inherit;
  padding: 10px; }

.acf-gallery .acf-gallery-side-data .acf-label,
.acf-gallery .acf-gallery-side-data th.label {
  color: #838386;
  font-size: 14px;
  line-height: 25px;
  padding: 0 4px 8px 0 !important;
  width: auto !important;
  vertical-align: top;
  /* rtl */ }

.acf-gallery .acf-gallery-side-data td {
  border-top: 0; }

.acf-gallery .acf-gallery-side-data tr[data-name="description"],
.acf-gallery .acf-gallery-side-data tr[data-name="caption"] {
  display: none; }

.acf-gallery .acf-gallery-side-data .acf-label label,
.acf-gallery .acf-gallery-side-data th.label label {
  font-weight: normal; }

html[dir="rtl"] .acf-gallery .acf-gallery-side-data .acf-label,
html[dir="rtl"] .acf-gallery .acf-gallery-side-data th.label {
  text-align: left; }

.acf-gallery .acf-gallery-side-data .acf-input,
.acf-gallery .acf-gallery-side-data td.field {
  padding: 0 0 8px !important; }

.acf-gallery .acf-gallery-side-data textarea {
  min-height: 0;
  height: 60px; }

.acf-gallery .acf-gallery-side-data p.help {
  font-size: 12px; }

.acf-gallery .acf-gallery-side-data p.help:hover {
  font-weight: normal; }

.acf-gallery[data-columns="1"] .acf-gallery-attachment {
  width: 100%; }

.acf-gallery[data-columns="2"] .acf-gallery-attachment {
  width: 50%; }

.acf-gallery[data-columns="3"] .acf-gallery-attachment {
  width: 33.333%; }

.acf-gallery[data-columns="4"] .acf-gallery-attachment {
  width: 25%; }

.acf-gallery[data-columns="5"] .acf-gallery-attachment {
  width: 20%; }

.acf-gallery[data-columns="6"] .acf-gallery-attachment {
  width: 16.666%; }

.acf-gallery[data-columns="7"] .acf-gallery-attachment {
  width: 14.285%; }

.acf-gallery[data-columns="8"] .acf-gallery-attachment {
  width: 12.5%; }

.acf-gallery .ui-resizable-handle {
  display: block;
  position: absolute; }

.acf-gallery .ui-resizable-s {
  bottom: -5px;
  cursor: ns-resize;
  height: 7px;
  left: 0;
  width: 100%; }

.acf-media-modal .attachment.acf-selected {
  box-shadow: 0 0 0 3px #fff inset, 0 0 0 7px #0073aa inset !important; }

.acf-media-modal .attachment.acf-selected .check {
  display: none !important; }

.acf-media-modal .attachment.acf-selected .thumbnail {
  opacity: 0.25 !important; }

.acf-media-modal .attachment.acf-selected .attachment-preview:before {
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  position: relative; }

.acf-ui-datepicker .ui-state-default {
  background-color: #fff !important; }
.acf-ui-datepicker .ui-state-hover,
.acf-ui-datepicker .ui-state-active {
  color: #444 !important;
  background-color: #eeeeee !important; }
.acf-ui-datepicker .ui-widget {
  font-size: 16px !important; }
.acf-ui-datepicker .ui-widget select {
  border-color: #d5d5d5;
  background: #fff;
  background-image: url("../img/paging.svg");
  background-position: 95% 50%;
  background-repeat: no-repeat;
  margin: 1px 2px !important;
  padding: 0 6px; }
.acf-ui-datepicker .ui-datepicker td a {
  text-align: center; }
.acf-ui-datepicker .ui-datepicker th,
.acf-ui-datepicker .ui-priority-primary {
  font-weight: 500 !important; }
.acf-ui-datepicker .ui-state-hover,
.acf-ui-datepicker .ui-state-default,
.acf-ui-datepicker .ui-state-highlight {
  border-color: #fff !important; }
.acf-ui-datepicker .ui-state-hover {
  color: #453d59 !important; }
.acf-ui-datepicker .ui-datepicker .ui-datepicker-prev,
.acf-ui-datepicker .ui-datepicker .ui-datepicker-next {
  top: 5px;
  transition: none; }

.media-modal .attachments-browser .media-toolbar {
  display: none !important; }

.media-modal .media-frame-title h1, .media-modal .media-frame-title .h1,
.media-modal h2,
.media-modal .h2,
.media-modal .page-title--sm {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif; }

.media-modal .media-frame a {
  color: #453d59; }

.media-modal .attachment.acf-disabled .attachment-preview:before {
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  position: relative; }

.media-modal .attachments-browser .attachments {
  top: 20px; }

/* ==========================================================================
   Late Availability
   ========================================================================== */
.late-item {
  margin-bottom: 3rem; }
  .late-item .late-listing {
    background: #fff;
    position: relative;
    border: 1px solid #d3d3d3;
    height: 100%; }
    .late-item .late-listing .late-container {
      position: relative;
      text-align: center; }
      .late-item .late-listing .late-container img {
        width: 100%; }
    .late-item .late-listing .late-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      text-align: left;
      color: #fff;
      padding: .7em;
      background: rgba(69, 61, 89, 0.8); }
      .late-item .late-listing .late-overlay h3, .late-item .late-listing .late-overlay .h3 {
        color: #fff;
        text-align: left;
        margin: 0; }
      .late-item .late-listing .late-overlay span {
        font-size: .9em; }
    .late-item .late-listing .late-date {
      background: #8E0000;
      color: #fff;
      font-size: .9em;
      padding: .5em .7em; }
    .late-item .late-listing .late-description {
      padding: .7em; }
      .late-item .late-listing .late-description .short-description {
        font-family: "Rokkitt", Helvetica, Arial, sans-serif;
        font-weight: 500;
        margin-bottom: 1em; }
      .late-item .late-listing .late-description .offer {
        font-size: .8rem;
        margin-bottom: 3.5em; }
      .late-item .late-listing .late-description .button {
        position: absolute;
        bottom: 0;
        display: inline-block;
        border: 1px solid #453d59;
        color: #453d59;
        font-size: .8rem;
        padding: .2em .5em;
        background: #fff;
        margin-bottom: 1em; }
        .late-item .late-listing .late-description .button:hover {
          background: #453d59;
          color: #fff; }

/*# sourceMappingURL=app.css.map */
