/* ========================================================================
   Component: Link
 ========================================================================== */
/* Muted
 ========================================================================== */
a.uk-link-muted,
.uk-link-muted a {
  color: #999;
}

a.uk-link-muted:hover,
.uk-link-muted a:hover,
.uk-link-toggle:hover .uk-link-muted,
.uk-link-toggle:focus .uk-link-muted {
  color: #666;
}

/* Text
 ========================================================================== */
a.uk-link-text,
.uk-link-text a {
  color: inherit;
}

a.uk-link-text:hover,
.uk-link-text a:hover,
.uk-link-toggle:hover .uk-link-text,
.uk-link-toggle:focus .uk-link-text {
  color: #999;
}

/* Heading
 ========================================================================== */
a.uk-link-heading,
.uk-link-heading a {
  color: inherit;
}

a.uk-link-heading:hover,
.uk-link-heading a:hover,
.uk-link-toggle:hover .uk-link-heading,
.uk-link-toggle:focus .uk-link-heading {
  color: #1e87f0;
  text-decoration: none;
}

/* Reset
 ========================================================================== */
/*
 * `!important` needed to override inverse component
 */
a.uk-link-reset,
.uk-link-reset a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Toggle
 ========================================================================== */
.uk-link-toggle {
  color: inherit !important;
  text-decoration: none !important;
}

.uk-link-toggle:focus {
  outline: none;
}

/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers.
 */
.uk-input,
.uk-select,
.uk-textarea,
.uk-radio,
.uk-checkbox {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
}

/*
 * Show the overflow in Edge.
 */
.uk-input {
  overflow: visible;
}

/*
 * Remove the inheritance of text transform in Firefox.
 */
.uk-select {
  text-transform: none;
}

/*
 * 1. Change font properties to `inherit` in all browsers
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.uk-select optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}

/*
 * Remove the default vertical scrollbar in IE 10+.
 */
.uk-textarea {
  overflow: auto;
}

/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.uk-input[type=search]::-webkit-search-cancel-button,
.uk-input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
.uk-input[type=number]::-webkit-inner-spin-button,
.uk-input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/*
 * Removes placeholder transparency in Firefox.
 */
.uk-input::-moz-placeholder,
.uk-textarea::-moz-placeholder {
  opacity: 1;
}

/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-radio:not(:disabled),
.uk-checkbox:not(:disabled) {
  cursor: pointer;
}

/*
 * Define consistent border, margin, and padding.
 */
.uk-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* Input, select and textarea
 * Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`,  `month`,
            `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
 * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
 ========================================================================== */
/*
 * Remove default style in iOS.
 */
.uk-input,
.uk-textarea {
  -webkit-appearance: none;
}

/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.uk-input,
.uk-select,
.uk-textarea {
  /* 1 */
  max-width: 100%;
  /* 2 */
  width: 100%;
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 10px;
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition-property: color, background-color, border;
  -o-transition-property: color, background-color, border;
  transition-property: color, background-color, border;
}

/*
 * Single-line
 * 1. Allow any element to look like an `input` or `select` element
 * 2. Make sure line-height is not larger than height
 *    Also needed to center the text vertically
 */
.uk-input,
.uk-select:not([multiple]):not([size]) {
  height: 40px;
  vertical-align: middle;
  /* 1 */
  display: inline-block;
}

/* 2 */
.uk-input:not(input),
.uk-select:not(select) {
  line-height: 38px;
}

/*
 * Multi-line
 */
.uk-select[multiple],
.uk-select[size],
.uk-textarea {
  padding-top: 4px;
  padding-bottom: 4px;
  vertical-align: top;
}

.uk-select[multiple],
.uk-select[size] {
  resize: vertical;
}

/* Focus */
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  outline: none;
  background-color: #fff;
  color: #666;
  border-color: #1e87f0;
}

/* Disabled */
.uk-input:disabled,
.uk-select:disabled,
.uk-textarea:disabled {
  background-color: #f8f8f8;
  color: #999;
  border-color: #e5e5e5;
}

/*
 * Placeholder
 */
.uk-input::-ms-input-placeholder {
  color: #999 !important;
}

.uk-input::-webkit-input-placeholder {
  color: #999;
}

.uk-input::-moz-placeholder {
  color: #999;
}

.uk-input:-ms-input-placeholder {
  color: #999;
}

.uk-input::placeholder {
  color: #999;
}

.uk-textarea::-ms-input-placeholder {
  color: #999 !important;
}

.uk-textarea::-webkit-input-placeholder {
  color: #999;
}

.uk-textarea::-moz-placeholder {
  color: #999;
}

.uk-textarea:-ms-input-placeholder {
  color: #999;
}

.uk-textarea::placeholder {
  color: #999;
}

/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Small
 */
.uk-form-small {
  font-size: 0.875rem;
}

.uk-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}

.uk-form-small:not(select):not(input):not(textarea) {
  line-height: 28px;
}

/*
 * Large
 */
.uk-form-large {
  font-size: 1.25rem;
}

.uk-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 12px;
}

.uk-form-large:not(select):not(input):not(textarea) {
  line-height: 53px;
}

/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Error
 */
.uk-form-danger,
.uk-form-danger:focus {
  color: #f0506e;
  border-color: #f0506e;
}

/*
 * Success
 */
.uk-form-success,
.uk-form-success:focus {
  color: #32d296;
  border-color: #32d296;
}

/*
 * Blank
 */
.uk-form-blank {
  background: none;
  border-color: transparent;
}

.uk-form-blank:focus {
  border-color: #e5e5e5;
  border-style: dashed;
}

/* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.uk-form-width-xsmall {
  width: 50px;
}

select.uk-form-width-xsmall {
  width: 75px;
}

.uk-form-width-small {
  width: 130px;
}

.uk-form-width-medium {
  width: 200px;
}

.uk-form-width-large {
  width: 500px;
}

/* Select
 ========================================================================== */
/*
 * 1. Remove default style. Also works in Firefox
 * 2. Style
 * 3. Remove default style in IE 10/11
 * 4. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
 */
.uk-select:not([multiple]):not([size]) {
  /* 1 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 2 */
  padding-right: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

/* 3 */
.uk-select:not([multiple]):not([size])::-ms-expand {
  display: none;
}

/* 4 */
.uk-select:not([multiple]):not([size]) option {
  color: #444;
}

/*
 * Disabled
 */
.uk-select:not([multiple]):not([size]):disabled {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}

/* Datalist
 ========================================================================== */
/*
 * 1. Remove default style in Chrome
 */
.uk-input[list] {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

.uk-input[list]:hover,
.uk-input[list]:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}

/* 1 */
.uk-input[list]::-webkit-calendar-picker-indicator {
  display: none;
}

/* Radio and checkbox
 * Note: Does not work in IE11
 ========================================================================== */
/*
 * 1. Style
 * 2. Make box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 * 6. Center icons
 */
.uk-radio,
.uk-checkbox {
  /* 1 */
  display: inline-block;
  height: 16px;
  width: 16px;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 5 */
  background-color: transparent;
  /* 6 */
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #cccccc;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition-property: background-color, border;
  -o-transition-property: background-color, border;
  transition-property: background-color, border;
}

.uk-radio {
  border-radius: 50%;
}

/* Focus */
.uk-radio:focus,
.uk-checkbox:focus {
  outline: none;
  border-color: #1e87f0;
}

/*
 * Checked
 */
.uk-radio:checked,
.uk-checkbox:checked,
.uk-checkbox:indeterminate {
  background-color: #1e87f0;
  border-color: transparent;
}

/* Focus */
.uk-radio:checked:focus,
.uk-checkbox:checked:focus,
.uk-checkbox:indeterminate:focus {
  background-color: #0e6ecd;
}

/*
 * Icons
 */
.uk-radio:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

.uk-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.uk-checkbox:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

/*
 * Disabled
 */
.uk-radio:disabled,
.uk-checkbox:disabled {
  background-color: #f8f8f8;
  border-color: #e5e5e5;
}

.uk-radio:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

.uk-checkbox:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.uk-checkbox:disabled:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

/* Legend
 ========================================================================== */
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove padding so people aren't caught out if they zero out fieldsets.
 * 4. Style
 */
.uk-legend {
  /* 1 */
  width: 100%;
  /* 2 */
  color: inherit;
  /* 3 */
  padding: 0;
  /* 4 */
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Custom controls
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 */
.uk-form-custom {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}

/*
 * 1. Position and resize the form control to always cover its container
 * 2. Required for Firefox for positioning to the left
 * 3. Required for Webkit to make `height` work
 * 4. Hide controle and show cursor
 * 5. Needed for the cursor
 * 6. Clip height caused by 5. Needed for Webkit only
 */
.uk-form-custom select,
.uk-form-custom input[type=file] {
  /* 1 */
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* 2 */
  left: 0;
  /* 3 */
  -webkit-appearance: none;
  /* 4 */
  opacity: 0;
  cursor: pointer;
}

.uk-form-custom input[type=file] {
  /* 5 */
  font-size: 500px;
  /* 6 */
  overflow: hidden;
}

/* Label
 ========================================================================== */
.uk-form-label {
  color: #333;
  font-size: 0.875rem;
}

/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 5px;
}

/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `uk-form-stacked` */
  .uk-form-horizontal .uk-form-label {
    display: block;
    margin-bottom: 5px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-form-horizontal .uk-form-label {
    width: 200px;
    margin-top: 7px;
    float: left;
  }

  .uk-form-horizontal .uk-form-controls {
    margin-left: 215px;
  }

  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .uk-form-horizontal .uk-form-controls-text {
    padding-top: 7px;
  }
}
/* Icons
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set width
 * 3. Center icon vertically and horizontally
 * 4. Style
 */
.uk-form-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 40px;
  /* 3 */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 4 */
  color: #999;
}

/*
 * Required for `a`.
 */
.uk-form-icon:hover {
  color: #666;
}

/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.uk-form-icon:not(a):not(button):not(input) {
  pointer-events: none;
}

/*
 * Input padding
 */
.uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input {
  padding-left: 40px !important;
}

/*
 * Position modifier
 */
.uk-form-icon-flip {
  right: 0;
  left: auto;
}

.uk-form-icon-flip ~ .uk-input {
  padding-right: 40px !important;
}

/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset list
 */
.uk-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Grid cell
 * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
 * Reset margin for e.g. paragraphs
 */
.uk-grid > * {
  margin: 0;
}

/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}

/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.uk-grid {
  margin-left: -30px;
}

.uk-grid > * {
  padding-left: 30px;
}

/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
  margin-top: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -40px;
  }

  .uk-grid > * {
    padding-left: 40px;
  }

  /* Vertical */
  .uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
    margin-top: 40px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-small,
.uk-grid-column-small {
  margin-left: -15px;
}

.uk-grid-small > *,
.uk-grid-column-small > * {
  padding-left: 15px;
}

/* Vertical */
.uk-grid + .uk-grid-small,
.uk-grid + .uk-grid-row-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-row-small > .uk-grid-margin,
* + .uk-grid-margin-small {
  margin-top: 15px;
}

/*
 * Medium
 */
/* Horizontal */
.uk-grid-medium,
.uk-grid-column-medium {
  margin-left: -30px;
}

.uk-grid-medium > *,
.uk-grid-column-medium > * {
  padding-left: 30px;
}

/* Vertical */
.uk-grid + .uk-grid-medium,
.uk-grid + .uk-grid-row-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-row-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
  margin-top: 30px;
}

/*
 * Large
 */
/* Horizontal */
.uk-grid-large,
.uk-grid-column-large {
  margin-left: -40px;
}

.uk-grid-large > *,
.uk-grid-column-large > * {
  padding-left: 40px;
}

/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid + .uk-grid-row-large,
.uk-grid-large > .uk-grid-margin,
.uk-grid-row-large > .uk-grid-margin,
* + .uk-grid-margin-large {
  margin-top: 40px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-large,
.uk-grid-column-large {
    margin-left: -70px;
  }

  .uk-grid-large > *,
.uk-grid-column-large > * {
    padding-left: 70px;
  }

  /* Vertical */
  .uk-grid + .uk-grid-large,
.uk-grid + .uk-grid-row-large,
.uk-grid-large > .uk-grid-margin,
.uk-grid-row-large > .uk-grid-margin,
* + .uk-grid-margin-large {
    margin-top: 70px;
  }
}
/*
 * Collapse
 */
/* Horizontal */
.uk-grid-collapse,
.uk-grid-column-collapse {
  margin-left: 0;
}

.uk-grid-collapse > *,
.uk-grid-column-collapse > * {
  padding-left: 0;
}

/* Vertical */
.uk-grid + .uk-grid-collapse,
.uk-grid + .uk-grid-row-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-row-collapse > .uk-grid-margin {
  margin-top: 0;
}

/* Divider
 ========================================================================== */
.uk-grid-divider > * {
  position: relative;
}

.uk-grid-divider > :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
}

/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
}

/*
 * Default
 */
/* Horizontal */
.uk-grid-divider {
  margin-left: -60px;
}

.uk-grid-divider > * {
  padding-left: 60px;
}

.uk-grid-divider > :not(.uk-first-column)::before {
  left: 30px;
}

/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}

.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider {
    margin-left: -80px;
  }

  .uk-grid-divider > * {
    padding-left: 80px;
  }

  .uk-grid-divider > :not(.uk-first-column)::before {
    left: 40px;
  }

  /* Vertical */
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 80px;
  }

  .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-divider.uk-grid-small,
.uk-grid-divider.uk-grid-column-small {
  margin-left: -30px;
}

.uk-grid-divider.uk-grid-small > *,
.uk-grid-divider.uk-grid-column-small > * {
  padding-left: 30px;
}

.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-small > :not(.uk-first-column)::before {
  left: 15px;
}

/* Vertical */
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
  margin-top: 30px;
}

.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
  left: 30px;
}

.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
}

.uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
  left: 30px;
}

/*
 * Medium
 */
/* Horizontal */
.uk-grid-divider.uk-grid-medium,
.uk-grid-divider.uk-grid-column-medium {
  margin-left: -60px;
}

.uk-grid-divider.uk-grid-medium > *,
.uk-grid-divider.uk-grid-column-medium > * {
  padding-left: 60px;
}

.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-medium > :not(.uk-first-column)::before {
  left: 30px;
}

/* Vertical */
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}

.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}

.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
}

.uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
  left: 60px;
}

/*
 * Large
 */
/* Horizontal */
.uk-grid-divider.uk-grid-large,
.uk-grid-divider.uk-grid-column-large {
  margin-left: -80px;
}

.uk-grid-divider.uk-grid-large > *,
.uk-grid-divider.uk-grid-column-large > * {
  padding-left: 80px;
}

.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
  left: 40px;
}

/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
  margin-top: 80px;
}

.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
  left: 80px;
}

.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
}

.uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
  left: 80px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider.uk-grid-large,
.uk-grid-divider.uk-grid-column-large {
    margin-left: -140px;
  }

  .uk-grid-divider.uk-grid-large > *,
.uk-grid-divider.uk-grid-column-large > * {
    padding-left: 140px;
  }

  .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
    left: 70px;
  }

  /* Vertical */
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 140px;
  }

  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
    left: 140px;
  }

  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
  }

  .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
    left: 140px;
  }
}
/* Match child of a grid cell
 ========================================================================== */
/*
 * Behave like a block element
 * 1. Wrap into the next line
 * 2. Take the full width, at least 100%. Only if no class from the Width component is set.
 * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
 */
.uk-grid-match > *,
.uk-grid-item-match {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.uk-grid-match > * > :not([class*=uk-width]),
.uk-grid-item-match > :not([class*=uk-width]) {
  /* 2 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  /* 3 */
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-close {
  color: #999;
  -webkit-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transition-property: color, opacity;
  -o-transition-property: color, opacity;
  transition-property: color, opacity;
}

/* Hover + Focus */
.uk-close:hover,
.uk-close:focus {
  color: #666;
  outline: none;
}

/* ========================================================================
   Component: Spinner
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
/* SVG
 ========================================================================== */
.uk-spinner > * {
  -webkit-animation: uk-spinner-rotate 1.4s linear infinite;
          animation: uk-spinner-rotate 1.4s linear infinite;
}

@-webkit-keyframes uk-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

@keyframes uk-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
/*
 * Circle
 */
.uk-spinner > * > * {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-animation: uk-spinner-dash 1.4s ease-in-out infinite;
          animation: uk-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 1;
  stroke-linecap: round;
}

@-webkit-keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}

@keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
/* ========================================================================
   Component: Totop
 ========================================================================== */
/*
 * Addopts `uk-icon`
 */
.uk-totop {
  padding: 5px;
  color: #999;
  -webkit-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

/* Hover + Focus */
.uk-totop:hover,
.uk-totop:focus {
  color: #666;
  outline: none;
}

/* OnClick */
.uk-totop:active {
  color: #333;
}

/* ========================================================================
   Component: Alert
 ========================================================================== */
.uk-alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 29px 15px 15px;
  background: #f8f8f8;
  color: #666;
}

/* Add margin if adjacent element */
* + .uk-alert {
  margin-top: 20px;
}

/*
 * Remove margin from the last-child
 */
.uk-alert > :last-child {
  margin-bottom: 0;
}

/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-alert-close {
  position: absolute;
  top: 20px;
  right: 15px;
  color: inherit;
  opacity: 0.4;
}

/*
 * Remove margin from adjacent element
 */
.uk-alert-close:first-child + * {
  margin-top: 0;
}

/*
 * Hover + Focus
 */
.uk-alert-close:hover,
.uk-alert-close:focus {
  color: inherit;
  opacity: 0.8;
}

/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.uk-alert-primary {
  background: #d8eafc;
  color: #1e87f0;
}

/*
 * Success
 */
.uk-alert-success {
  background: #edfbf6;
  color: #32d296;
}

/*
 * Warning
 */
.uk-alert-warning {
  background: #fef5ee;
  color: #faa05a;
}

/*
 * Danger
 */
.uk-alert-danger {
  background: #fef4f6;
  color: #f0506e;
}

/*
 * Content
 */
.uk-alert h1,
.uk-alert h2,
.uk-alert h3,
.uk-alert h4,
.uk-alert h5,
.uk-alert h6 {
  color: inherit;
}

.uk-alert a:not([class]) {
  color: inherit;
  text-decoration: underline;
}

.uk-alert a:not([class]):hover {
  color: inherit;
  text-decoration: underline;
}

/* ========================================================================
   Component: Badge
 ========================================================================== */
/*
 * 1. Style
 * 2. Center child vertically and horizontally
 */
.uk-badge {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  /* 1 */
  background: #1e87f0;
  color: #fff;
  font-size: 0.875rem;
  /* 2 */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*
 * Required for `a`
 */
.uk-badge:hover,
.uk-badge:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* ========================================================================
   Component: Label
 ========================================================================== */
.uk-label {
  display: inline-block;
  padding: 0 10px;
  background: #1e87f0;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
}

/* Color modifiers
 ========================================================================== */
/*
 * Success
 */
.uk-label-success {
  background-color: #32d296;
  color: #fff;
}

/*
 * Warning
 */
.uk-label-warning {
  background-color: #faa05a;
  color: #fff;
}

/*
 * Danger
 */
.uk-label-danger {
  background-color: #f0506e;
  color: #fff;
}

/* ========================================================================
   Component: Overlay
 ========================================================================== */
.uk-overlay {
  padding: 30px 30px;
}

/*
 * Remove margin from the last-child
 */
.uk-overlay > :last-child {
  margin-bottom: 0;
}

/* Icon
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-overlay-default {
  background: rgba(255, 255, 255, 0.8);
}

/*
 * Primary
 */
.uk-overlay-primary {
  background: rgba(34, 34, 34, 0.8);
}

/* ========================================================================
   Component: Tab
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.uk-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
  position: relative;
}
.uk-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 0;
  border-bottom: 1px solid #e5e5e5;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-tab > * {
  /* 1 */
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}

/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center text if a width is set
 * 2. Style
 */
.uk-tab > * > a {
  /* 1 */
  display: block;
  text-align: center;
  /* 2 */
  padding: 5px 10px;
  color: #999;
  border-bottom: 1px solid transparent;
  font-size: 0.875rem;
  text-transform: uppercase;
  -webkit-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

/* Hover + Focus */
.uk-tab > * > a:hover,
.uk-tab > * > a:focus {
  color: #666;
  text-decoration: none;
}

/* Active */
.uk-tab > .uk-active > a {
  color: #333;
  border-color: #1e87f0;
}

/* Disabled */
.uk-tab > .uk-disabled > a {
  color: #999;
}

/* Position modifier
 ========================================================================== */
/*
 * Bottom
 */
.uk-tab-bottom::before {
  top: 0;
  bottom: auto;
}

.uk-tab-bottom > * > a {
  border-top: 1px solid transparent;
  border-bottom: none;
}

/*
 * Left + Right
 * 1. Reset Gutter
 */
.uk-tab-left,
.uk-tab-right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* 1 */
  margin-left: 0;
}

/* 1 */
.uk-tab-left > *,
.uk-tab-right > * {
  padding-left: 0;
}

.uk-tab-left::before {
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}

.uk-tab-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}

.uk-tab-left > * > a {
  text-align: left;
  border-right: 1px solid transparent;
  border-bottom: none;
}

.uk-tab-right > * > a {
  text-align: left;
  border-left: 1px solid transparent;
  border-bottom: none;
}

.uk-tab .uk-dropdown {
  margin-left: 30px;
}

/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-slidenav {
  padding: 5px 10px;
  color: rgba(102, 102, 102, 0.5);
  -webkit-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

/* Hover + Focus */
.uk-slidenav:hover,
.uk-slidenav:focus {
  color: rgba(102, 102, 102, 0.9);
  outline: none;
}

/* OnClick */
.uk-slidenav:active {
  color: rgba(102, 102, 102, 0.5);
}

/* Icon modifier
 ========================================================================== */
/*
 * Previous
 */
/*
 * Next
 */
/* Size modifier
 ========================================================================== */
.uk-slidenav-large {
  padding: 10px 10px;
}

/* Container
 ========================================================================== */
.uk-slidenav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-dotnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -12px;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.uk-dotnav > * {
  /* 1 */
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  /* 2 */
  padding-left: 12px;
}

/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid rgba(102, 102, 102, 0.4);
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition-property: background-color, border-color;
  -o-transition-property: background-color, border-color;
  transition-property: background-color, border-color;
}

/* Hover + Focus */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background-color: rgba(102, 102, 102, 0.6);
  outline: none;
  border-color: transparent;
}

/* OnClick */
.uk-dotnav > * > :active {
  background-color: rgba(102, 102, 102, 0.2);
  border-color: transparent;
}

/* Active */
.uk-dotnav > .uk-active > * {
  background-color: rgba(102, 102, 102, 0.6);
  border-color: transparent;
}

/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-dotnav-vertical {
  /* 1 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -12px;
}

/* 2 */
.uk-dotnav-vertical > * {
  padding-left: 0;
  padding-top: 12px;
}

/* ========================================================================
   Component: Drop
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 */
.uk-drop {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 300px;
}

/* Show */
.uk-drop.uk-open {
  display: block;
}

/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*=uk-drop-top] {
  margin-top: -20px;
}

[class*=uk-drop-bottom] {
  margin-top: 20px;
}

[class*=uk-drop-left] {
  margin-left: -20px;
}

[class*=uk-drop-right] {
  margin-left: 20px;
}

/* Grid modifiers
 ========================================================================== */
.uk-drop-stack .uk-drop-grid > * {
  width: 100% !important;
}

/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.uk-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 200px;
  /* 4 */
  padding: 25px;
  background: #fff;
  color: #666;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* Show */
.uk-dropdown.uk-open {
  display: block;
}

/* Nav
 * Adopts `uk-nav`
 ========================================================================== */
.uk-dropdown-nav {
  white-space: nowrap;
  font-size: 0.875rem;
}

/*
 * Items
 */
.uk-dropdown-nav > li > a {
  color: #999;
}

/* Hover + Focus + Active */
.uk-dropdown-nav > li > a:hover,
.uk-dropdown-nav > li > a:focus,
.uk-dropdown-nav > li.uk-active > a {
  color: #666;
}

/*
 * Header
 */
.uk-dropdown-nav .uk-nav-header {
  color: #333;
}

/*
 * Divider
 */
.uk-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}

/*
 * Sublists
 */
.uk-dropdown-nav .uk-nav-sub a {
  color: #999;
}

.uk-dropdown-nav .uk-nav-sub a:hover,
.uk-dropdown-nav .uk-nav-sub a:focus,
.uk-dropdown-nav .uk-nav-sub li.uk-active > a {
  color: #666;
}

/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*=uk-dropdown-top] {
  margin-top: -10px;
}

[class*=uk-dropdown-bottom] {
  margin-top: 10px;
}

[class*=uk-dropdown-left] {
  margin-left: -10px;
}

[class*=uk-dropdown-right] {
  margin-left: 10px;
}

/* Grid modifiers
 ========================================================================== */
.uk-dropdown-stack .uk-dropdown-grid > * {
  width: 100% !important;
}

/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.uk-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding: 15px 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.6);
  /* 6 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-modal {
    padding: 50px 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Open
 */
.uk-modal.uk-open {
  opacity: 1;
}

/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-modal-page {
  overflow: hidden;
}

/* Dialog
 ========================================================================== */
/*
 * 1. Create position context for spinner and close button
 * 2. Dimensions
 * 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
 *    `!important` needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests
 * 4. Style
 * 5. Slide-in transition
 */
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 600px;
  /* 3 */
  max-width: calc(100% - 0.01px) !important;
  /* 4 */
  background: #fff;
  /* 5 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: opacity, transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

/*
 * Open
 */
.uk-open > .uk-modal-dialog {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* Size modifier
 ========================================================================== */
/*
 * Container size
 * Take the same size as the Container component
 */
.uk-modal-container .uk-modal-dialog {
  width: 1200px;
}

/*
 * Full size
 * 1. Remove padding and background from modal
 * 2. Reset all default declarations from modal dialog
 */
/* 1 */
.uk-modal-full {
  padding: 0;
  background: none;
}

/* 2 */
.uk-modal-full .uk-modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* Sections
 ========================================================================== */
.uk-modal-body {
  display: flow-root;
  padding: 30px 30px;
}

.uk-modal-header {
  display: flow-root;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.uk-modal-footer {
  display: flow-root;
  padding: 15px 30px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

/*
 * Remove margin from the last-child
 */
.uk-modal-body > :last-child,
.uk-modal-header > :last-child,
.uk-modal-footer > :last-child {
  margin-bottom: 0;
}

/* Title
 ========================================================================== */
.uk-modal-title {
  font-size: 2rem;
  line-height: 1.3;
}

/* Close
 * Adopts `uk-close`
 ========================================================================== */
[class*=uk-modal-close-] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  padding: 5px;
}

/*
 * Remove margin from adjacent element
 */
[class*=uk-modal-close-]:first-child + * {
  margin-top: 0;
}

/*
 * Hover
 */
/*
 * Default
 */
/*
 * Outside
 * 1. Prevent scrollbar on small devices
 */
.uk-modal-close-outside {
  top: 0;
  /* 1 */
  right: -5px;
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
  color: white;
}

.uk-modal-close-outside:hover {
  color: #fff;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* 1 */
  .uk-modal-close-outside {
    right: 0;
    -webkit-transform: translate(100%, -100%);
        -ms-transform: translate(100%, -100%);
            transform: translate(100%, -100%);
  }
}
/*
 * Full
 */
.uk-modal-close-full {
  top: 0;
  right: 0;
  padding: 20px;
  background: #fff;
}

/* ========================================================================
   Component: Lightbox
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 * 7. Prevent cancellation of pointer events while dragging
 */
.uk-lightbox {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 5 */
  background: #000;
  /* 6 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  /* 7 */
  -ms-touch-action: pinch-zoom;
      touch-action: pinch-zoom;
}

/*
 * Open
 * 1. Center child
 * 2. Fade-in
 */
.uk-lightbox.uk-open {
  display: block;
  /* 2 */
  opacity: 1;
}

/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-lightbox-page {
  overflow: hidden;
}

/* Item
 ========================================================================== */
/*
 * 1. Center child within the viewport
 * 2. Not visible by default
 * 3. Color needed for spinner icon
 * 4. Optimize animation
 * 5. Responsiveness
 *    Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
 *    Using `vh` and `vw` to make responsive image work in IE11
 * 6. Suppress outline on focus
 */
.uk-lightbox-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 3 */
  color: rgba(255, 255, 255, 0.7);
  /* 4 */
  will-change: transform, opacity;
}

/* 5 */
.uk-lightbox-items > * > * {
  max-width: 100vw;
  max-height: 100vh;
}

/* 6 */
.uk-lightbox-items > :focus {
  outline: none;
}

.uk-lightbox-items > * > :not(iframe) {
  width: auto;
  height: auto;
}

.uk-lightbox-items > .uk-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Toolbar
 ========================================================================== */
.uk-lightbox-toolbar {
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.uk-lightbox-toolbar > * {
  color: rgba(255, 255, 255, 0.7);
}

/* Toolbar Icon (Close)
 ========================================================================== */
.uk-lightbox-toolbar-icon {
  padding: 5px;
  color: rgba(255, 255, 255, 0.7);
}

/*
 * Hover
 */
.uk-lightbox-toolbar-icon:hover {
  color: #fff;
}

/* Button (Slidenav)
 ========================================================================== */
/*
 * 1. Center icon vertically and horizontally
 */
.uk-lightbox-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  /* 1 */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Hover + Focus */
.uk-lightbox-button:hover,
.uk-lightbox-button:focus {
  color: #fff;
}

/* OnClick */
/* Caption
 ========================================================================== */
.uk-lightbox-caption:empty {
  display: none;
}

/* Iframe
 ========================================================================== */
.uk-lightbox-iframe {
  width: 80%;
  height: 80%;
}

/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slideshow {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Items
 ========================================================================== */
/*
 * 1. Create position and stacking context
 * 2. Reset list
 * 3. Clip child elements
 * 4. Prevent displaying the callout information on iOS.
 */
.uk-slideshow-items {
  /* 1 */
  position: relative;
  z-index: 0;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  overflow: hidden;
  /* 4 */
  -webkit-touch-callout: none;
}

/* Item
 ========================================================================== */
/*
 * 1. Position items above each other
 * 2. Take the full width
 * 3. Clip child elements, e.g. for `uk-cover`
 * 4. Optimize animation
 * 5. Disable horizontal panning gestures in IE11 and Edge
 * 6. Suppress outline on focus
 */
.uk-slideshow-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  right: 0;
  bottom: 0;
  /* 3 */
  overflow: hidden;
  /* 4 */
  will-change: transform, opacity;
  /* 5 */
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

/* 6 */
.uk-slideshow-items > :focus {
  outline: none;
}

/*
 * Hide not active items
 */
.uk-slideshow-items > :not(.uk-active) {
  display: none;
}

/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Container
 ========================================================================== */
/*
 * Clip child elements
 */
.uk-slider-container {
  overflow: hidden;
}

/*
 * Widen container to prevent box-shadows from clipping, `large-box-shadow`
 */
.uk-slider-container-offset {
  margin: -11px -25px -39px -25px;
  padding: 11px 25px 39px 25px;
}

/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 */
.uk-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
}

/*
 * 1. Reset list style without interfering with grid
 * 2. Prevent displaying the callout information on iOS.
 */
.uk-slider-items:not(.uk-grid) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}

.uk-slider-items.uk-grid {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 * 2. Create position context
 * 3. Disable horizontal panning gestures in IE11 and Edge
 * 4. Suppress outline on focus
 */
.uk-slider-items > * {
  /* 1 */
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  /* 2 */
  position: relative;
  /* 3 */
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

/* 4 */
.uk-slider-items > :focus {
  outline: none;
}

/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. Resolve frame rate issues on devices with lower frame rates by forcing hardware acceleration
 */
.uk-sticky-fixed {
  z-index: 980;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*
 * Faster animations
 */
.uk-sticky[class*=uk-animation-] {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
}

.uk-sticky.uk-animation-reverse {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
}

/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 */
.uk-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas {
  right: 0;
  left: auto;
}

/* Bar
 ========================================================================== */
/*
 * 1. Set position
 * 2. Size and style
 * 3. Allow scrolling
 */
.uk-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: -270px;
  /* 2 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 270px;
  padding: 20px 20px;
  background: #222;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-bar {
    left: -350px;
    width: 350px;
    padding: 40px 40px;
  }
}
/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-bar {
  left: auto;
  right: -270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-flip .uk-offcanvas-bar {
    right: -350px;
  }
}
/*
 * Open
 */
.uk-open > .uk-offcanvas-bar {
  left: 0;
}

.uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
  left: auto;
  right: 0;
}

/*
 * Slide Animation (Used in slide and push mode)
 */
.uk-offcanvas-bar-animation {
  -webkit-transition: left 0.3s ease-out;
  -o-transition: left 0.3s ease-out;
  transition: left 0.3s ease-out;
}

.uk-offcanvas-flip .uk-offcanvas-bar-animation {
  -webkit-transition-property: right;
  -o-transition-property: right;
  transition-property: right;
}

/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset position
 */
.uk-offcanvas-reveal {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 0;
  overflow: hidden;
  /* 3 */
  -webkit-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}

.uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: 0;
}

.uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: auto;
  right: 0;
}

.uk-open > .uk-offcanvas-reveal {
  width: 270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-open > .uk-offcanvas-reveal {
    width: 350px;
  }
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas-reveal {
  right: 0;
  left: auto;
}

/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  padding: 5px;
}

/* Overlay
 ========================================================================== */
/*
 * Overlay the whole page. Needed for the `::before`
 * 1. Using `100vw` so no modification is needed when off-canvas is flipped
 * 2. Allow for closing with swipe gesture on devices with pointer events.
 */
.uk-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  -ms-touch-action: none;
      touch-action: none;
}

/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.uk-offcanvas-overlay::before {
  /* 1 */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  /* 2 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.uk-offcanvas-overlay.uk-open::before {
  opacity: 1;
}

/* Prevent scrolling
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.uk-offcanvas-page,
.uk-offcanvas-container {
  overflow-x: hidden;
}

/* Container
 ========================================================================== */
/*
 * Prepare slide-out animation (Used in reveal and push mode)
 * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
 * lose their fixed state and behaves like `absolute` within a transformed container
 * 1. Provide a fixed width and prevent shrinking
 */
.uk-offcanvas-container {
  position: relative;
  left: 0;
  -webkit-transition: left 0.3s ease-out;
  -o-transition: left 0.3s ease-out;
  transition: left 0.3s ease-out;
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

/*
 * Activate slide-out animation
 */
:not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
  left: 270px;
}

.uk-offcanvas-flip.uk-offcanvas-container-animation {
  left: -270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  :not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
    left: 350px;
  }

  .uk-offcanvas-flip.uk-offcanvas-container-animation {
    left: -350px;
  }
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * Reset list
 */
.uk-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Items
 ========================================================================== */
/*
 * Hide not active items
 */
.uk-switcher > :not(.uk-active) {
  display: none;
}

/*
 * Remove margin from the last-child
 */
.uk-switcher > * > :last-child {
  margin-bottom: 0;
}

/* ========================================================================
   Component: Notification
 ========================================================================== */
/*
 * 1. Set position
 * 2. Dimensions
 */
.uk-notification {
  /* 1 */
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  /* 2 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 350px;
}

/* Position modifiers
========================================================================== */
.uk-notification-top-right,
.uk-notification-bottom-right {
  left: auto;
  right: 10px;
}

.uk-notification-top-center,
.uk-notification-bottom-center {
  left: 50%;
  margin-left: -175px;
}

.uk-notification-bottom-left,
.uk-notification-bottom-right,
.uk-notification-bottom-center {
  top: auto;
  bottom: 10px;
}

/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 639px) {
  .uk-notification {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Message
========================================================================== */
.uk-notification-message {
  position: relative;
  padding: 15px;
  background: #f8f8f8;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.4;
  cursor: pointer;
}

* + .uk-notification-message {
  margin-top: 10px;
}

/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-notification-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
}

.uk-notification-message:hover .uk-notification-close {
  display: block;
}

/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.uk-notification-message-primary {
  color: #1e87f0;
}

/*
 * Success
 */
.uk-notification-message-success {
  color: #32d296;
}

/*
 * Warning
 */
.uk-notification-message-warning {
  color: #faa05a;
}

/*
 * Danger
 */
.uk-notification-message-danger {
  color: #f0506e;
}

/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Position
 * 3. Remove tooltip from document flow to keep the UIkit container from changing its size when injected into the document initially
 * 4. Dimensions
 * 5. Style
 */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  top: 0;
  /* 4 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 200px;
  padding: 3px 6px;
  /* 5 */
  background: #666;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
}

/* Show */
.uk-tooltip.uk-active {
  display: block;
}

/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*=uk-tooltip-top] {
  margin-top: -10px;
}

[class*=uk-tooltip-bottom] {
  margin-top: 10px;
}

[class*=uk-tooltip-left] {
  margin-left: -10px;
}

[class*=uk-tooltip-right] {
  margin-left: 10px;
}

/* ========================================================================
   Component: Sortable
 ========================================================================== */
.uk-sortable {
  position: relative;
}

/*
 * Remove margin from the last-child
 */
.uk-sortable > :last-child {
  margin-bottom: 0;
}

/* Drag
 ========================================================================== */
.uk-sortable-drag {
  position: fixed !important;
  z-index: 1050 !important;
  pointer-events: none;
}

/* Placeholder
 ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
  pointer-events: none;
}

/* Empty modifier
 ========================================================================== */
.uk-sortable-empty {
  min-height: 50px;
}

/* Handle
 ========================================================================== */
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}

/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*=uk-animation-] {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-animation-fade {
  -webkit-animation-name: uk-fade;
          animation-name: uk-fade;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

/*
 * Scale
 */
.uk-animation-scale-up {
  -webkit-animation-name: uk-fade-scale-02;
          animation-name: uk-fade-scale-02;
}

.uk-animation-scale-down {
  -webkit-animation-name: uk-fade-scale-18;
          animation-name: uk-fade-scale-18;
}

/*
 * Slide
 */
.uk-animation-slide-top {
  -webkit-animation-name: uk-fade-top;
          animation-name: uk-fade-top;
}

.uk-animation-slide-bottom {
  -webkit-animation-name: uk-fade-bottom;
          animation-name: uk-fade-bottom;
}

.uk-animation-slide-left {
  -webkit-animation-name: uk-fade-left;
          animation-name: uk-fade-left;
}

.uk-animation-slide-right {
  -webkit-animation-name: uk-fade-right;
          animation-name: uk-fade-right;
}

/*
 * Slide Small
 */
.uk-animation-slide-top-small {
  -webkit-animation-name: uk-fade-top-small;
          animation-name: uk-fade-top-small;
}

.uk-animation-slide-bottom-small {
  -webkit-animation-name: uk-fade-bottom-small;
          animation-name: uk-fade-bottom-small;
}

.uk-animation-slide-left-small {
  -webkit-animation-name: uk-fade-left-small;
          animation-name: uk-fade-left-small;
}

.uk-animation-slide-right-small {
  -webkit-animation-name: uk-fade-right-small;
          animation-name: uk-fade-right-small;
}

/*
 * Slide Medium
 */
.uk-animation-slide-top-medium {
  -webkit-animation-name: uk-fade-top-medium;
          animation-name: uk-fade-top-medium;
}

.uk-animation-slide-bottom-medium {
  -webkit-animation-name: uk-fade-bottom-medium;
          animation-name: uk-fade-bottom-medium;
}

.uk-animation-slide-left-medium {
  -webkit-animation-name: uk-fade-left-medium;
          animation-name: uk-fade-left-medium;
}

.uk-animation-slide-right-medium {
  -webkit-animation-name: uk-fade-right-medium;
          animation-name: uk-fade-right-medium;
}

/*
 * Kenburns
 */
.uk-animation-kenburns {
  -webkit-animation-name: uk-scale-kenburns;
          animation-name: uk-scale-kenburns;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
}

/*
 * Shake
 */
.uk-animation-shake {
  -webkit-animation-name: uk-shake;
          animation-name: uk-shake;
}

/*
 * SVG Stroke
 * The `--uk-animation-stroke` custom property contains the longest path length.
 * Set it manually or use `uk-svg="stroke-animation: true"` to set it automatically.
 * All strokes are animated by the same pace and doesn't end simultaneously.
 * To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet.
 */
.uk-animation-stroke {
  -webkit-animation-name: uk-stroke;
          animation-name: uk-stroke;
  stroke-dasharray: var(--uk-animation-stroke);
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

/* Direction modifier
 ========================================================================== */
.uk-animation-reverse {
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

/* Duration modifier
 ========================================================================== */
.uk-animation-fast {
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
}

/* Toggle (Hover + Focus)
========================================================================== */
/*
 * The toggle is triggered on touch devices using `:focus` and tabindex
 */
.uk-animation-toggle:not(:hover):not(:focus) [class*=uk-animation-] {
  -webkit-animation-name: none;
          animation-name: none;
}

/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-animation-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/*
 * Remove outline for `tabindex`
 */
.uk-animation-toggle:focus {
  outline: none;
}

/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@-webkit-keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
 * Slide Top
 */
@-webkit-keyframes uk-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes uk-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Bottom
 */
@-webkit-keyframes uk-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes uk-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Left
 */
@-webkit-keyframes uk-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes uk-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Right
 */
@-webkit-keyframes uk-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes uk-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Top Small
 */
@-webkit-keyframes uk-fade-top-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes uk-fade-top-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Bottom Small
 */
@-webkit-keyframes uk-fade-bottom-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes uk-fade-bottom-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Left Small
 */
@-webkit-keyframes uk-fade-left-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes uk-fade-left-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Right Small
 */
@-webkit-keyframes uk-fade-right-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes uk-fade-right-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Top Medium
 */
@-webkit-keyframes uk-fade-top-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes uk-fade-top-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Bottom Medium
 */
@-webkit-keyframes uk-fade-bottom-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes uk-fade-bottom-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Left Medium
 */
@-webkit-keyframes uk-fade-left-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes uk-fade-left-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Right Medium
 */
@-webkit-keyframes uk-fade-right-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes uk-fade-right-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Scale Up
 */
@-webkit-keyframes uk-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes uk-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*
 * Scale Down
 */
@-webkit-keyframes uk-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes uk-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*
 * Kenburns
 */
@-webkit-keyframes uk-scale-kenburns {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes uk-scale-kenburns {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
/*
 * Shake
 */
@-webkit-keyframes uk-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
            transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
            transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
}
@keyframes uk-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
            transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
            transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
}
/*
 * Stroke
 */
@-webkit-keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*=uk-child-width] > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.uk-child-width-1-2 > * {
  width: 50%;
}

.uk-child-width-1-3 > * {
  width: calc(100% * 1 / 3.001);
}

.uk-child-width-1-4 > * {
  width: 25%;
}

.uk-child-width-1-5 > * {
  width: 20%;
}

.uk-child-width-1-6 > * {
  width: calc(100% * 1 / 6.001);
}

.uk-child-width-auto > * {
  width: auto;
}

/*
 * 1. Reset the `min-width`, which is set to auto by default, because
 *    flex items won't shrink below their minimum intrinsic content size.
 *    Using `1px` instead of `0`, so items still wrap into the next line,
 *    if they have zero width and padding and the predecessor is 100% wide.
 */
.uk-child-width-expand > :not([class*=uk-width]) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* 1 */
  min-width: 1px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-child-width-1-1\@s > * {
    width: 100%;
  }

  .uk-child-width-1-2\@s > * {
    width: 50%;
  }

  .uk-child-width-1-3\@s > * {
    width: calc(100% * 1 / 3.001);
  }

  .uk-child-width-1-4\@s > * {
    width: 25%;
  }

  .uk-child-width-1-5\@s > * {
    width: 20%;
  }

  .uk-child-width-1-6\@s > * {
    width: calc(100% * 1 / 6.001);
  }

  .uk-child-width-auto\@s > * {
    width: auto;
  }

  .uk-child-width-expand\@s > :not([class*=uk-width]) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-child-width-1-1\@m > * {
    width: 100%;
  }

  .uk-child-width-1-2\@m > * {
    width: 50%;
  }

  .uk-child-width-1-3\@m > * {
    width: calc(100% * 1 / 3.001);
  }

  .uk-child-width-1-4\@m > * {
    width: 25%;
  }

  .uk-child-width-1-5\@m > * {
    width: 20%;
  }

  .uk-child-width-1-6\@m > * {
    width: calc(100% * 1 / 6.001);
  }

  .uk-child-width-auto\@m > * {
    width: auto;
  }

  .uk-child-width-expand\@m > :not([class*=uk-width]) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-child-width-1-1\@l > * {
    width: 100%;
  }

  .uk-child-width-1-2\@l > * {
    width: 50%;
  }

  .uk-child-width-1-3\@l > * {
    width: calc(100% * 1 / 3.001);
  }

  .uk-child-width-1-4\@l > * {
    width: 25%;
  }

  .uk-child-width-1-5\@l > * {
    width: 20%;
  }

  .uk-child-width-1-6\@l > * {
    width: calc(100% * 1 / 6.001);
  }

  .uk-child-width-auto\@l > * {
    width: auto;
  }

  .uk-child-width-expand\@l > :not([class*=uk-width]) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-child-width-1-1\@xl > * {
    width: 100%;
  }

  .uk-child-width-1-2\@xl > * {
    width: 50%;
  }

  .uk-child-width-1-3\@xl > * {
    width: calc(100% * 1 / 3.001);
  }

  .uk-child-width-1-4\@xl > * {
    width: 25%;
  }

  .uk-child-width-1-5\@xl > * {
    width: 20%;
  }

  .uk-child-width-1-6\@xl > * {
    width: calc(100% * 1 / 6.001);
  }

  .uk-child-width-auto\@xl > * {
    width: auto;
  }

  .uk-child-width-expand\@xl > :not([class*=uk-width]) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
}
/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*=uk-width] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}

/* Halves */
.uk-width-1-2 {
  width: 50%;
}

/* Thirds */
.uk-width-1-3 {
  width: calc(100% * 1 / 3.001);
}

.uk-width-2-3 {
  width: calc(100% * 2 / 3.001);
}

/* Quarters */
.uk-width-1-4 {
  width: 25%;
}

.uk-width-3-4 {
  width: 75%;
}

/* Fifths */
.uk-width-1-5 {
  width: 20%;
}

.uk-width-2-5 {
  width: 40%;
}

.uk-width-3-5 {
  width: 60%;
}

.uk-width-4-5 {
  width: 80%;
}

/* Sixths */
.uk-width-1-6 {
  width: calc(100% * 1 / 6.001);
}

.uk-width-5-6 {
  width: calc(100% * 5 / 6.001);
}

/* Pixel */
.uk-width-small {
  width: 150px;
}

.uk-width-medium {
  width: 300px;
}

.uk-width-large {
  width: 450px;
}

.uk-width-xlarge {
  width: 600px;
}

.uk-width-2xlarge {
  width: 750px;
}

/* Auto */
.uk-width-auto {
  width: auto;
}

/* Expand */
.uk-width-expand {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  /* Whole */
  .uk-width-1-1\@s {
    width: 100%;
  }

  /* Halves */
  .uk-width-1-2\@s {
    width: 50%;
  }

  /* Thirds */
  .uk-width-1-3\@s {
    width: calc(100% * 1 / 3.001);
  }

  .uk-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .uk-width-1-4\@s {
    width: 25%;
  }

  .uk-width-3-4\@s {
    width: 75%;
  }

  /* Fifths */
  .uk-width-1-5\@s {
    width: 20%;
  }

  .uk-width-2-5\@s {
    width: 40%;
  }

  .uk-width-3-5\@s {
    width: 60%;
  }

  .uk-width-4-5\@s {
    width: 80%;
  }

  /* Sixths */
  .uk-width-1-6\@s {
    width: calc(100% * 1 / 6.001);
  }

  .uk-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .uk-width-small\@s {
    width: 150px;
  }

  .uk-width-medium\@s {
    width: 300px;
  }

  .uk-width-large\@s {
    width: 450px;
  }

  .uk-width-xlarge\@s {
    width: 600px;
  }

  .uk-width-2xlarge\@s {
    width: 750px;
  }

  /* Auto */
  .uk-width-auto\@s {
    width: auto;
  }

  /* Expand */
  .uk-width-expand\@s {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* Whole */
  .uk-width-1-1\@m {
    width: 100%;
  }

  /* Halves */
  .uk-width-1-2\@m {
    width: 50%;
  }

  /* Thirds */
  .uk-width-1-3\@m {
    width: calc(100% * 1 / 3.001);
  }

  .uk-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .uk-width-1-4\@m {
    width: 25%;
  }

  .uk-width-3-4\@m {
    width: 75%;
  }

  /* Fifths */
  .uk-width-1-5\@m {
    width: 20%;
  }

  .uk-width-2-5\@m {
    width: 40%;
  }

  .uk-width-3-5\@m {
    width: 60%;
  }

  .uk-width-4-5\@m {
    width: 80%;
  }

  /* Sixths */
  .uk-width-1-6\@m {
    width: calc(100% * 1 / 6.001);
  }

  .uk-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .uk-width-small\@m {
    width: 150px;
  }

  .uk-width-medium\@m {
    width: 300px;
  }

  .uk-width-large\@m {
    width: 450px;
  }

  .uk-width-xlarge\@m {
    width: 600px;
  }

  .uk-width-2xlarge\@m {
    width: 750px;
  }

  /* Auto */
  .uk-width-auto\@m {
    width: auto;
  }

  /* Expand */
  .uk-width-expand\@m {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Whole */
  .uk-width-1-1\@l {
    width: 100%;
  }

  /* Halves */
  .uk-width-1-2\@l {
    width: 50%;
  }

  /* Thirds */
  .uk-width-1-3\@l {
    width: calc(100% * 1 / 3.001);
  }

  .uk-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .uk-width-1-4\@l {
    width: 25%;
  }

  .uk-width-3-4\@l {
    width: 75%;
  }

  /* Fifths */
  .uk-width-1-5\@l {
    width: 20%;
  }

  .uk-width-2-5\@l {
    width: 40%;
  }

  .uk-width-3-5\@l {
    width: 60%;
  }

  .uk-width-4-5\@l {
    width: 80%;
  }

  /* Sixths */
  .uk-width-1-6\@l {
    width: calc(100% * 1 / 6.001);
  }

  .uk-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .uk-width-small\@l {
    width: 150px;
  }

  .uk-width-medium\@l {
    width: 300px;
  }

  .uk-width-large\@l {
    width: 450px;
  }

  .uk-width-xlarge\@l {
    width: 600px;
  }

  .uk-width-2xlarge\@l {
    width: 750px;
  }

  /* Auto */
  .uk-width-auto\@l {
    width: auto;
  }

  /* Expand */
  .uk-width-expand\@l {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Whole */
  .uk-width-1-1\@xl {
    width: 100%;
  }

  /* Halves */
  .uk-width-1-2\@xl {
    width: 50%;
  }

  /* Thirds */
  .uk-width-1-3\@xl {
    width: calc(100% * 1 / 3.001);
  }

  .uk-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .uk-width-1-4\@xl {
    width: 25%;
  }

  .uk-width-3-4\@xl {
    width: 75%;
  }

  /* Fifths */
  .uk-width-1-5\@xl {
    width: 20%;
  }

  .uk-width-2-5\@xl {
    width: 40%;
  }

  .uk-width-3-5\@xl {
    width: 60%;
  }

  .uk-width-4-5\@xl {
    width: 80%;
  }

  /* Sixths */
  .uk-width-1-6\@xl {
    width: calc(100% * 1 / 6.001);
  }

  .uk-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .uk-width-small\@xl {
    width: 150px;
  }

  .uk-width-medium\@xl {
    width: 300px;
  }

  .uk-width-large\@xl {
    width: 450px;
  }

  .uk-width-xlarge\@xl {
    width: 600px;
  }

  .uk-width-2xlarge\@xl {
    width: 750px;
  }

  /* Auto */
  .uk-width-auto\@xl {
    width: auto;
  }

  /* Expand */
  .uk-width-expand\@xl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
}
/* ========================================================================
   Component: Height
 ========================================================================== */
[class*=uk-height] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
 * Only works if parent element has a height set
 */
.uk-height-1-1 {
  height: 100%;
}

/*
 * Useful to create image teasers
 */
.uk-height-viewport {
  min-height: 100vh;
}

/*
 * Pixel
 * Useful for `overflow: auto`
 */
.uk-height-small {
  height: 150px;
}

.uk-height-medium {
  height: 300px;
}

.uk-height-large {
  height: 450px;
}

.uk-height-max-small {
  max-height: 150px;
}

.uk-height-max-medium {
  max-height: 300px;
}

.uk-height-max-large {
  max-height: 450px;
}

/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.uk-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}

.uk-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
.uk-text-meta a {
  color: #999;
}
.uk-text-meta a:hover {
  color: #666;
  text-decoration: none;
}

/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.uk-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}

.uk-text-default {
  font-size: 16px;
  line-height: 1.5;
}

/* Weight modifier
 ========================================================================== */
.uk-text-light {
  font-weight: 300;
}

.uk-text-normal {
  font-weight: 400;
}

.uk-text-bold {
  font-weight: 700;
}

.uk-text-lighter {
  font-weight: lighter;
}

.uk-text-bolder {
  font-weight: bolder;
}

/* Style modifier
 ========================================================================== */
.uk-text-italic {
  font-style: italic;
}

/* Transform modifier
 ========================================================================== */
.uk-text-capitalize {
  text-transform: capitalize !important;
}

.uk-text-uppercase {
  text-transform: uppercase !important;
}

.uk-text-lowercase {
  text-transform: lowercase !important;
}

/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #999 !important;
}

.uk-text-emphasis {
  color: #333 !important;
}

.uk-text-primary {
  color: #1e87f0 !important;
}

.uk-text-secondary {
  color: #222 !important;
}

.uk-text-success {
  color: #32d296 !important;
}

.uk-text-warning {
  color: #faa05a !important;
}

.uk-text-danger {
  color: #f0506e !important;
}

/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in Chrome, Firefox, Safari, Edge and Opera
 *    Default color is set to transparent
 * 2. Container fits the text
 * 3. Fallback color for IE11
 */
.uk-text-background {
  /* 1 */
  -webkit-background-clip: text;
  /* 2 */
  display: inline-block;
  /* 3 */
  color: #1e87f0 !important;
}

@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #1e87f0;
    color: transparent !important;
  }
}
/* Alignment modifiers
 ========================================================================== */
.uk-text-left {
  text-align: left !important;
}

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

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

.uk-text-justify {
  text-align: justify !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-text-left\@s {
    text-align: left !important;
  }

  .uk-text-right\@s {
    text-align: right !important;
  }

  .uk-text-center\@s {
    text-align: center !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-text-left\@m {
    text-align: left !important;
  }

  .uk-text-right\@m {
    text-align: right !important;
  }

  .uk-text-center\@m {
    text-align: center !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-text-left\@l {
    text-align: left !important;
  }

  .uk-text-right\@l {
    text-align: right !important;
  }

  .uk-text-center\@l {
    text-align: center !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-text-left\@xl {
    text-align: left !important;
  }

  .uk-text-right\@xl {
    text-align: right !important;
  }

  .uk-text-center\@xl {
    text-align: center !important;
  }
}
/*
 * Vertical
 */
.uk-text-top {
  vertical-align: top !important;
}

.uk-text-middle {
  vertical-align: middle !important;
}

.uk-text-bottom {
  vertical-align: bottom !important;
}

.uk-text-baseline {
  vertical-align: baseline !important;
}

/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.uk-text-nowrap {
  white-space: nowrap;
}

/*
 * 1. Make sure a max-width is set after which truncation can occur
 * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 * 3. Fix for table cells
 */
.uk-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

/* 2 */
th.uk-text-truncate,
td.uk-text-truncate {
  max-width: 0;
}

/*
 * 1. Wrap long words onto the next line and break them if they are too long to fit
 * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
 * 3. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
 *    Must use `break-all` to support IE11 and Edge
 * Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
 */
.uk-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
}

/* 3 */
th.uk-text-break,
td.uk-text-break {
  word-break: break-all;
}

/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Works with iframes and embedded content
 * 1. Reset responsiveness for embedded content
 * 2. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
.uk-cover {
  /* 1 */
  max-width: none;
  /* 2 */
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

iframe.uk-cover {
  pointer-events: none;
}

/* Container
 ========================================================================== */
/*
 * 1. Parent container which clips resized object
 * 2. Needed if the child is positioned absolute. See note above
 */
.uk-cover-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  position: relative;
}

/* ========================================================================
   Component: Background
 ========================================================================== */
/* Color
 ========================================================================== */
.uk-background-default {
  background-color: #fff;
}

.uk-background-muted {
  background-color: #f8f8f8;
}

.uk-background-primary {
  background-color: #1e87f0;
}

.uk-background-secondary {
  background-color: #222;
}

/* Size
 ========================================================================== */
.uk-background-cover,
.uk-background-contain,
.uk-background-width-1-1,
.uk-background-height-1-1 {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.uk-background-cover {
  background-size: cover;
}

.uk-background-contain {
  background-size: contain;
}

.uk-background-width-1-1 {
  background-size: 100%;
}

.uk-background-height-1-1 {
  background-size: auto 100%;
}

/* Position
 ========================================================================== */
.uk-background-top-left {
  background-position: 0 0;
}

.uk-background-top-center {
  background-position: 50% 0;
}

.uk-background-top-right {
  background-position: 100% 0;
}

.uk-background-center-left {
  background-position: 0 50%;
}

.uk-background-center-center {
  background-position: 50% 50%;
}

.uk-background-center-right {
  background-position: 100% 50%;
}

.uk-background-bottom-left {
  background-position: 0 100%;
}

.uk-background-bottom-center {
  background-position: 50% 100%;
}

.uk-background-bottom-right {
  background-position: 100% 100%;
}

/* Repeat
 ========================================================================== */
.uk-background-norepeat {
  background-repeat: no-repeat;
}

/* Attachment
 ========================================================================== */
/*
 * 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
 */
.uk-background-fixed {
  background-attachment: fixed;
  /* 1 */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/*
 * Exclude touch devices because `fixed` doesn't work on iOS and Android
 */
@media (pointer: coarse) {
  .uk-background-fixed {
    background-attachment: scroll;
  }
}
/* Image
 ========================================================================== */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-background-image\@s {
    background-image: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-background-image\@m {
    background-image: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-background-image\@l {
    background-image: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-background-image\@xl {
    background-image: none !important;
  }
}
/* Blend modes
 ========================================================================== */
.uk-background-blend-multiply {
  background-blend-mode: multiply;
}

.uk-background-blend-screen {
  background-blend-mode: screen;
}

.uk-background-blend-overlay {
  background-blend-mode: overlay;
}

.uk-background-blend-darken {
  background-blend-mode: darken;
}

.uk-background-blend-lighten {
  background-blend-mode: lighten;
}

.uk-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}

.uk-background-blend-color-burn {
  background-blend-mode: color-burn;
}

.uk-background-blend-hard-light {
  background-blend-mode: hard-light;
}

.uk-background-blend-soft-light {
  background-blend-mode: soft-light;
}

.uk-background-blend-difference {
  background-blend-mode: difference;
}

.uk-background-blend-exclusion {
  background-blend-mode: exclusion;
}

.uk-background-blend-hue {
  background-blend-mode: hue;
}

.uk-background-blend-saturation {
  background-blend-mode: saturation;
}

.uk-background-blend-color {
  background-blend-mode: color;
}

.uk-background-blend-luminosity {
  background-blend-mode: luminosity;
}

/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*=uk-align] {
  display: block;
  margin-bottom: 30px;
}

* + [class*=uk-align] {
  margin-top: 30px;
}

/*
 * Center
 */
.uk-align-center {
  margin-left: auto;
  margin-right: auto;
}

/*
 * Left/Right
 */
.uk-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}

.uk-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }

  .uk-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }

  .uk-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-align-left\@l {
    margin-top: 0;
    float: left;
  }

  .uk-align-right\@l {
    margin-top: 0;
    float: right;
  }

  .uk-align-left,
.uk-align-left\@s,
.uk-align-left\@m,
.uk-align-left\@l {
    margin-right: 40px;
  }

  .uk-align-right,
.uk-align-right\@s,
.uk-align-right\@m,
.uk-align-right\@l {
    margin-left: 40px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }

  .uk-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}
/* ========================================================================
   Component: SVG
 ========================================================================== */
/*
 * 1. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 2. Set the fill and stroke color of all SVG elements to the current text color
 */
/* 1 */
.uk-svg,
.uk-svg:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) {
  fill: currentcolor;
}

.uk-svg:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke: currentcolor;
}

/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-svg {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.uk-panel {
  display: flow-root;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
 * Remove margin from the last-child
 */
.uk-panel > :last-child {
  margin-bottom: 0;
}

/*
 * Scrollable
 */
.uk-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}

/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.uk-clearfix::before {
  content: "";
  display: table-cell;
}

/* 2 */
.uk-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.uk-float-left {
  float: left;
}

.uk-float-right {
  float: right;
}

/* 1 */
[class*=uk-float-] {
  max-width: 100%;
}

/* Overfow
 ========================================================================== */
.uk-overflow-hidden {
  overflow: hidden;
}

/*
 * Enable scrollbars if content is clipped
 * Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
 */
.uk-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.uk-overflow-auto > :last-child {
  margin-bottom: 0;
}

/* Resize
 ========================================================================== */
.uk-resize {
  resize: both;
}

.uk-resize-vertical {
  resize: vertical;
}

/* Display
 ========================================================================== */
.uk-display-block {
  display: block !important;
}

.uk-display-inline {
  display: inline !important;
}

.uk-display-inline-block {
  display: inline-block !important;
}

/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Force hardware acceleration without creating a new stacking context
 *    to fix 1px glitch when combined with overlays and transitions in Webkit
 * 6. Clip child elements
 */
[class*=uk-inline] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  -webkit-backface-visibility: hidden;
}

.uk-inline-clip {
  /* 6 */
  overflow: hidden;
}

/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.uk-preserve-width,
.uk-preserve-width canvas,
.uk-preserve-width img,
.uk-preserve-width svg,
.uk-preserve-width video {
  max-width: none;
}

/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width,
.uk-responsive-height {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
 * 1. Set a maximum width. `important` needed to override `uk-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.uk-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}

/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.uk-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}

/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}

.uk-border-pill {
  border-radius: 500px;
}

.uk-border-rounded {
  border-radius: 5px;
}

/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.uk-inline-clip[class*=uk-border-] {
  -webkit-transform: translateZ(0);
}

/* Box-shadow
 ========================================================================== */
.uk-box-shadow-small {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.uk-box-shadow-medium {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.uk-box-shadow-large {
  -webkit-box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
          box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}

.uk-box-shadow-xlarge {
  -webkit-box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
          box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}

/*
 * Hover
 */
[class*=uk-box-shadow-hover] {
  -webkit-transition: -webkit-box-shadow 0.1s ease-in-out;
  transition: -webkit-box-shadow 0.1s ease-in-out;
  -o-transition: box-shadow 0.1s ease-in-out;
  transition: box-shadow 0.1s ease-in-out;
  transition: box-shadow 0.1s ease-in-out, -webkit-box-shadow 0.1s ease-in-out;
}

.uk-box-shadow-hover-small:hover {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.uk-box-shadow-hover-medium:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.uk-box-shadow-hover-large:hover {
  -webkit-box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
          box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}

.uk-box-shadow-hover-xlarge:hover {
  -webkit-box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
          box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}

/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
 *    Solved by using `before` and add position context to child elements.
 */
@supports (filter: blur(0)) {
  .uk-box-shadow-bottom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }

  .uk-box-shadow-bottom::before {
    content: "";
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }

  /* 3 */
  .uk-box-shadow-bottom > * {
    position: relative;
  }
}
/* Drop cap
 ========================================================================== */
/*
 * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=214004
 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=317933
 * 3. Caused by 1.: Edge creates two nested `::first-letter` containers, one for each selector
 *    This doubles the `font-size` exponential when using the `em` unit.
 */
.uk-dropcap::first-letter,
.uk-dropcap > p:first-of-type::first-letter {
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 4.5em;
  line-height: 1;
  margin-bottom: -2px;
}

/* 2 */
@-moz-document url-prefix() {
  .uk-dropcap::first-letter,
.uk-dropcap > p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}
/* 3 */
@supports (-ms-ime-align: auto) {
  .uk-dropcap > p:first-of-type::first-letter {
    font-size: 1em;
  }
}
/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.uk-logo {
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #666;
  /* 1 */
  text-decoration: none;
}

/* Hover + Focus */
.uk-logo:hover,
.uk-logo:focus {
  color: #666;
  outline: none;
  /* 1 */
  text-decoration: none;
}

.uk-logo-inverse {
  display: none;
}

/* Disabled State
 ========================================================================== */
.uk-disabled {
  pointer-events: none;
}

/* Drag State
 ========================================================================== */
/*
 * 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons
 * 2. Fix dragging over iframes
 */
.uk-drag,
.uk-drag * {
  cursor: move;
}

/* 2 */
.uk-drag iframe {
  pointer-events: none;
}

/* Dragover State
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  -webkit-box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
          box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}

/* Blend modes
 ========================================================================== */
.uk-blend-multiply {
  mix-blend-mode: multiply;
}

.uk-blend-screen {
  mix-blend-mode: screen;
}

.uk-blend-overlay {
  mix-blend-mode: overlay;
}

.uk-blend-darken {
  mix-blend-mode: darken;
}

.uk-blend-lighten {
  mix-blend-mode: lighten;
}

.uk-blend-color-dodge {
  mix-blend-mode: color-dodge;
}

.uk-blend-color-burn {
  mix-blend-mode: color-burn;
}

.uk-blend-hard-light {
  mix-blend-mode: hard-light;
}

.uk-blend-soft-light {
  mix-blend-mode: soft-light;
}

.uk-blend-difference {
  mix-blend-mode: difference;
}

.uk-blend-exclusion {
  mix-blend-mode: exclusion;
}

.uk-blend-hue {
  mix-blend-mode: hue;
}

.uk-blend-saturation {
  mix-blend-mode: saturation;
}

.uk-blend-color {
  mix-blend-mode: color;
}

.uk-blend-luminosity {
  mix-blend-mode: luminosity;
}

/* Transform
========================================================================== */
.uk-transform-center {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Transform Origin
========================================================================== */
.uk-transform-origin-top-left {
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
}

.uk-transform-origin-top-center {
  -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
          transform-origin: 50% 0;
}

.uk-transform-origin-top-right {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.uk-transform-origin-center-left {
  -webkit-transform-origin: 0 50%;
      -ms-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

.uk-transform-origin-center-right {
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}

.uk-transform-origin-bottom-left {
  -webkit-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

.uk-transform-origin-bottom-center {
  -webkit-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}

.uk-transform-origin-bottom-right {
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.uk-flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.uk-flex::before,
.uk-flex::after,
.uk-flex-inline::before,
.uk-flex-inline::after {
  display: none;
}

/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.uk-flex-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.uk-flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.uk-flex-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.uk-flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.uk-flex-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-left\@s {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .uk-flex-center\@s {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .uk-flex-right\@s {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .uk-flex-between\@s {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .uk-flex-around\@s {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-left\@m {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .uk-flex-center\@m {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .uk-flex-right\@m {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .uk-flex-between\@m {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .uk-flex-around\@m {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-left\@l {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .uk-flex-center\@l {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .uk-flex-right\@l {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .uk-flex-between\@l {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .uk-flex-around\@l {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-left\@xl {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .uk-flex-center\@xl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .uk-flex-right\@xl {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .uk-flex-between\@xl {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .uk-flex-around\@xl {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.uk-flex-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.uk-flex-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.uk-flex-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.uk-flex-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* Direction
 ========================================================================== */
.uk-flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.uk-flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.uk-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.uk-flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.uk-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.uk-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.uk-flex-wrap-stretch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.uk-flex-wrap-top {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.uk-flex-wrap-middle {
  -ms-flex-line-pack: center;
      align-content: center;
}

.uk-flex-wrap-bottom {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.uk-flex-wrap-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.uk-flex-wrap-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.uk-flex-last {
  -webkit-box-ordinal-group: 100;
      -ms-flex-order: 99;
          order: 99;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-first\@s {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .uk-flex-last\@s {
    -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
            order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-first\@m {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .uk-flex-last\@m {
    -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
            order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-first\@l {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .uk-flex-last\@l {
    -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
            order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-first\@xl {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .uk-flex-last\@xl {
    -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
            order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-none {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.uk-flex-auto {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ========================================================================
   Component: Position
 ========================================================================== */
/* Directions
 ========================================================================== */
/*
 * 1. Prevent content overflow if `max-width: 100%` is used inside position container.
 */
[class*=uk-position-top],
[class*=uk-position-bottom],
[class*=uk-position-left],
[class*=uk-position-right],
[class*=uk-position-center] {
  position: absolute !important;
  /* 1 */
  max-width: 100%;
}

/* Edges
 ========================================================================== */
/* Don't use `width: 100%` because it is wrong if the parent has padding. */
.uk-position-top {
  top: 0;
  left: 0;
  right: 0;
}

.uk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

.uk-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}

.uk-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}

/* Corners
 ========================================================================== */
.uk-position-top-left {
  top: 0;
  left: 0;
}

.uk-position-top-right {
  top: 0;
  right: 0;
}

.uk-position-bottom-left {
  bottom: 0;
  left: 0;
}

.uk-position-bottom-right {
  bottom: 0;
  right: 0;
}

/*
 * Center
 * 1. Fix text wrapping if content is larger than 50% of the container.
 */
.uk-position-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* 1 */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Vertical */
[class*=uk-position-center-left],
[class*=uk-position-center-right] {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.uk-position-center-left {
  left: 0;
}

.uk-position-center-right {
  right: 0;
}

.uk-position-center-left-out {
  right: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.uk-position-center-right-out {
  left: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/* Horizontal */
.uk-position-top-center,
.uk-position-bottom-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 1 */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.uk-position-top-center {
  top: 0;
}

.uk-position-bottom-center {
  bottom: 0;
}

/* Cover
 ========================================================================== */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Utility
 ========================================================================== */
.uk-position-relative {
  position: relative !important;
}

.uk-position-absolute {
  position: absolute !important;
}

.uk-position-fixed {
  position: fixed !important;
}

.uk-position-z-index {
  z-index: 1;
}

/* Margin modifier
 ========================================================================== */
/*
 * Small
 */
.uk-position-small {
  max-width: calc(100% - (15px * 2));
  margin: 15px;
}

.uk-position-small.uk-position-center {
  -webkit-transform: translate(-50%, -50%) translate(-15px, -15px);
      -ms-transform: translate(-50%, -50%) translate(-15px, -15px);
          transform: translate(-50%, -50%) translate(-15px, -15px);
}

.uk-position-small[class*=uk-position-center-left],
.uk-position-small[class*=uk-position-center-right] {
  -webkit-transform: translateY(-50%) translateY(-15px);
      -ms-transform: translateY(-50%) translateY(-15px);
          transform: translateY(-50%) translateY(-15px);
}

.uk-position-small.uk-position-top-center,
.uk-position-small.uk-position-bottom-center {
  -webkit-transform: translateX(-50%) translateX(-15px);
      -ms-transform: translateX(-50%) translateX(-15px);
          transform: translateX(-50%) translateX(-15px);
}

/*
 * Medium
 */
.uk-position-medium {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}

.uk-position-medium.uk-position-center {
  -webkit-transform: translate(-50%, -50%) translate(-30px, -30px);
      -ms-transform: translate(-50%, -50%) translate(-30px, -30px);
          transform: translate(-50%, -50%) translate(-30px, -30px);
}

.uk-position-medium[class*=uk-position-center-left],
.uk-position-medium[class*=uk-position-center-right] {
  -webkit-transform: translateY(-50%) translateY(-30px);
      -ms-transform: translateY(-50%) translateY(-30px);
          transform: translateY(-50%) translateY(-30px);
}

.uk-position-medium.uk-position-top-center,
.uk-position-medium.uk-position-bottom-center {
  -webkit-transform: translateX(-50%) translateX(-30px);
      -ms-transform: translateX(-50%) translateX(-30px);
          transform: translateX(-50%) translateX(-30px);
}

/*
 * Large
 */
.uk-position-large {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}

.uk-position-large.uk-position-center {
  -webkit-transform: translate(-50%, -50%) translate(-30px, -30px);
      -ms-transform: translate(-50%, -50%) translate(-30px, -30px);
          transform: translate(-50%, -50%) translate(-30px, -30px);
}

.uk-position-large[class*=uk-position-center-left],
.uk-position-large[class*=uk-position-center-right] {
  -webkit-transform: translateY(-50%) translateY(-30px);
      -ms-transform: translateY(-50%) translateY(-30px);
          transform: translateY(-50%) translateY(-30px);
}

.uk-position-large.uk-position-top-center,
.uk-position-large.uk-position-bottom-center {
  -webkit-transform: translateX(-50%) translateX(-30px);
      -ms-transform: translateX(-50%) translateX(-30px);
          transform: translateX(-50%) translateX(-30px);
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-position-large {
    max-width: calc(100% - (50px * 2));
    margin: 50px;
  }

  .uk-position-large.uk-position-center {
    -webkit-transform: translate(-50%, -50%) translate(-50px, -50px);
        -ms-transform: translate(-50%, -50%) translate(-50px, -50px);
            transform: translate(-50%, -50%) translate(-50px, -50px);
  }

  .uk-position-large[class*=uk-position-center-left],
.uk-position-large[class*=uk-position-center-right] {
    -webkit-transform: translateY(-50%) translateY(-50px);
        -ms-transform: translateY(-50%) translateY(-50px);
            transform: translateY(-50%) translateY(-50px);
  }

  .uk-position-large.uk-position-top-center,
.uk-position-large.uk-position-bottom-center {
    -webkit-transform: translateX(-50%) translateX(-50px);
        -ms-transform: translateX(-50%) translateX(-50px);
            transform: translateX(-50%) translateX(-50px);
  }
}
/* ========================================================================
   Component: Transition
 ========================================================================== */
/* Toggle (Hover + Focus)
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-transition-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/*
 * Remove outline for `tabindex`
 */
.uk-transition-toggle:focus {
  outline: none;
}

/* Transitions
 ========================================================================== */
/*
 * The toggle is triggered on touch devices by two methods:
 * 1. Using `:focus` and tabindex
 * 2. Using `:hover` and a `touchstart` event listener registered on the document
 *    (Doesn't work on Surface touch devices)
 *
 * Note: Transitions don't work with `uk-postion-center-*` classes because they also use `transform`,
 *       therefore it's recommended to use an extra `div` for the transition.
 */
.uk-transition-fade,
[class*=uk-transition-scale],
[class*=uk-transition-slide] {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  -o-transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
  opacity: 0;
}

/*
 * Fade
 */
.uk-transition-toggle:hover .uk-transition-fade,
.uk-transition-toggle:focus .uk-transition-fade,
.uk-transition-active.uk-active .uk-transition-fade {
  opacity: 1;
}

/*
 * Scale
 */
.uk-transition-scale-up {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}

.uk-transition-scale-down {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

/* Show */
.uk-transition-toggle:hover .uk-transition-scale-up,
.uk-transition-toggle:focus .uk-transition-scale-up,
.uk-transition-active.uk-active .uk-transition-scale-up {
  opacity: 1;
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.uk-transition-toggle:hover .uk-transition-scale-down,
.uk-transition-toggle:focus .uk-transition-scale-down,
.uk-transition-active.uk-active .uk-transition-scale-down {
  opacity: 1;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*
 * Slide
 */
.uk-transition-slide-top {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.uk-transition-slide-bottom {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

.uk-transition-slide-left {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.uk-transition-slide-right {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.uk-transition-slide-top-small {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

.uk-transition-slide-bottom-small {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}

.uk-transition-slide-left-small {
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
}

.uk-transition-slide-right-small {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.uk-transition-slide-top-medium {
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

.uk-transition-slide-bottom-medium {
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

.uk-transition-slide-left-medium {
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
}

.uk-transition-slide-right-medium {
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
}

/* Show */
.uk-transition-toggle:hover [class*=uk-transition-slide],
.uk-transition-toggle:focus [class*=uk-transition-slide],
.uk-transition-active.uk-active [class*=uk-transition-slide] {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* Opacity modifier
 ========================================================================== */
.uk-transition-opaque {
  opacity: 1;
}

/* Duration modifiers
 ========================================================================== */
.uk-transition-slow {
  -webkit-transition-duration: 0.7s;
       -o-transition-duration: 0.7s;
          transition-duration: 0.7s;
}

/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden],
.uk-hidden {
  display: none !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-hidden\@s {
    display: none !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-hidden\@m {
    display: none !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-hidden\@l {
    display: none !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-hidden\@xl {
    display: none !important;
  }
}
/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-visible\@s {
    display: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-visible\@m {
    display: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-visible\@l {
    display: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-visible\@xl {
    display: none !important;
  }
}
/* Visibility
 ========================================================================== */
.uk-invisible {
  visibility: hidden !important;
}

/* Toggle (Hover + Focus)
 ========================================================================== */
/*
 * Hidden
 * 1. The toggle is triggered on touch devices using `:focus` and tabindex
 * 2. The target stays visible if any element within receives focus through keyboard
 *    Doesn't work in Edge, yet.
 * 3. Can't use `display: none` nor `visibility: hidden` because both are not focusable.
 *
 */
/* 1 + 2 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
  /* 3 */
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/*
 * Invisible
 */
/* 1 + 2 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
  /* 3 */
  opacity: 0 !important;
}

/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-visible-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/*
 * Remove outline for `tabindex`
 */
.uk-visible-toggle:focus {
  outline: none;
}

/* Touch
 ========================================================================== */
/*
 * Hide if primary pointing device has limited accuracy, e.g. a touch screen.
 * Works on mobile browsers: Safari, Chrome and Android browser
 */
@media (pointer: coarse) {
  .uk-hidden-touch {
    display: none !important;
  }
}
/*
 * Hide if primary pointing device is accurate, e.g. mouse.
 * 1. Fallback for IE11 and Firefox, because `pointer` is not supported
 * 2. Reset if supported
 */
/* 1 */
.uk-hidden-notouch {
  display: none !important;
}

@media (pointer: coarse) {
  .uk-hidden-notouch {
    display: block !important;
  }
}
/* @import "print.scss"; */
/*

  Hook overrides

  From https://getuikit.com/docs/sass

  To prevent overhead selectors, we use Mixins from Sass, which hook into predefined selectors from the UIkit source and inject additional properties. Selectors don't have to be repeated throughout all documents and global changes can be made much more easily.

  First, find a rule that you want to extend by looking through the component's SCSS file, for example /src/scss/components/card.scss for the Card component:

  // SCSS rule
  .uk-card {
      position: relative;
      box-sizing: border-box;

      // mixin to allow adding new declaration
      @include hook-card();
  }

  Then, inject additional CSS by using the hook inside your own SCSS file, i.e. to site.scss as described above:

  // mixin to add new declaration
  @mixin hook-card() { color: #000; }

*/
.uk-offcanvas-overlay::before {
  background: rgba(0, 0, 0, 0.5);
}

/* ----- BREAKPOINTS ---------------------------------------- */
/* ----- COLUMNS ---------------------------------------- */
/* ----- FLEXBOX (IE support) ---------------------------------------- */
/* ----- ANIMATIONS ----------------------------------------- */
/* ----- BREAKPOINTS ---------------------------------------- */
/* ----- COLOURS ------------------------------------- */
/*
$global-margin: 20px;
$accordion-item-margin-top: $global-margin;
$global-medium-font-size: 1.25rem;
$accordion-title-font-size: $global-medium-font-size;
$accordion-title-line-height: 1.4;
$global-emphasis-color: #333;
$accordion-title-color: $global-emphasis-color;
$global-color: #666;
$accordion-title-hover-color: $global-color;
$accordion-content-margin-top: $global-margin;
$global-inverse-color: #fff;
$inverse-global-emphasis-color: $global-inverse-color;
$inverse-accordion-title-color: $inverse-global-emphasis-color;
$inverse-global-color: rgba($global-inverse-color, 0.7);
$inverse-accordion-title-hover-color: $inverse-global-color;
$alert-margin-vertical: $global-margin;
$global-small-gutter: 15px;
$alert-padding: $global-small-gutter;
$alert-padding-right: $alert-padding + 14px;
$global-muted-background: #f8f8f8;
$alert-background: $global-muted-background;
$alert-color: $global-color;
$alert-close-top: $alert-padding + 5px;
$alert-close-right: $alert-padding;
$global-primary-background: #1e87f0;
$alert-primary-background: lighten(mix(white, $global-primary-background, 40%), 20%);
$alert-primary-color: $global-primary-background;
$global-success-background: #32d296;
$alert-success-background: lighten(mix(white, $global-success-background, 40%), 25%);
$alert-success-color: $global-success-background;
$global-warning-background: #faa05a;
$alert-warning-background: lighten(mix(white, $global-warning-background, 45%), 15%);
$alert-warning-color: $global-warning-background;
$global-danger-background: #f0506e;
$alert-danger-background: lighten(mix(white, $global-danger-background, 40%), 20%);
$alert-danger-color: $global-danger-background;
$global-gutter: 30px;
$align-margin-horizontal: $global-gutter;
$align-margin-vertical: $global-gutter;
$global-medium-gutter: 40px;
$align-margin-horizontal-l: $global-medium-gutter;
$animation-duration: 0.5s;
$animation-fade-duration: 0.8s;
$animation-stroke-duration: 2s;
$animation-kenburns-duration: 15s;
$animation-fast-duration: 0.1s;
$animation-slide-small-translate: 10px;
$animation-slide-medium-translate: 50px;
$global-large-margin: 70px;
$article-margin-top: $global-large-margin;
$global-xxlarge-font-size: 2.625rem;
$article-title-font-size-m: $global-xxlarge-font-size;
$article-title-font-size: $article-title-font-size-m * 0.85;
$article-title-line-height: 1.2;
$global-small-font-size: 0.875rem;
$article-meta-font-size: $global-small-font-size;
$article-meta-line-height: 1.4;
$global-muted-color: #999;
$article-meta-color: $global-muted-color;
$inverse-global-muted-color: rgba($global-inverse-color, 0.5);
$inverse-article-meta-color: $inverse-global-muted-color;
$global-background: #fff;
$background-default-background: $global-background;
$background-muted-background: $global-muted-background;
$background-primary-background: $global-primary-background;
$global-secondary-background: #222;
$background-secondary-background: $global-secondary-background;
$badge-size: 22px;
$badge-padding-vertical: 0;
$badge-padding-horizontal: 5px;
$badge-border-radius: 500px;
$badge-background: $global-primary-background;
$badge-color: $global-inverse-color;
$badge-font-size: $global-small-font-size;
$badge-hover-color: $global-inverse-color;
$inverse-global-primary-background: $global-inverse-color;
$inverse-badge-background: $inverse-global-primary-background;
$inverse-global-inverse-color: $global-color;
$inverse-badge-color: $inverse-global-inverse-color;
$inverse-badge-hover-color: $inverse-global-inverse-color;
$base-body-background: $global-background;
$global-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
$base-body-font-family: $global-font-family;
$base-body-font-weight: normal;
$global-font-size: 16px;
$base-body-font-size: $global-font-size;
$global-line-height: 1.5;
$base-body-line-height: $global-line-height;
$base-body-color: $global-color;
$global-link-color: #1e87f0;
$base-link-color: $global-link-color;
$base-link-text-decoration: none;
$global-link-hover-color: #0f6ecd;
$base-link-hover-color: $global-link-hover-color;
$base-link-hover-text-decoration: underline;
$base-strong-font-weight: bolder;
$base-code-font-size: $global-small-font-size;
$base-code-font-family: Consolas, monaco, monospace;
$base-code-color: $global-danger-background;
$base-em-color: $global-danger-background;
$base-ins-background: #ffd;
$base-ins-color: $global-color;
$base-mark-background: #ffd;
$base-mark-color: $global-color;
$base-quote-font-style: italic;
$base-small-font-size: 80%;
$base-margin-vertical: $global-margin;
$base-heading-font-family: $global-font-family;
$base-heading-font-weight: normal;
$base-heading-color: $global-emphasis-color;
$base-heading-text-transform: none;
$global-medium-margin: 40px;
$base-heading-margin-top: $global-medium-margin;
$base-h1-font-size-m: $global-xxlarge-font-size;
$base-h1-font-size: $base-h1-font-size-m * 0.85;
$base-h1-line-height: 1.2;
$global-xlarge-font-size: 2rem;
$base-h2-font-size-m: $global-xlarge-font-size;
$base-h2-font-size: $base-h2-font-size-m * 0.85;
$base-h2-line-height: 1.3;
$global-large-font-size: 1.5rem;
$base-h3-font-size: $global-large-font-size;
$base-h3-line-height: 1.4;
$base-h4-font-size: $global-medium-font-size;
$base-h4-line-height: 1.4;
$base-h5-font-size: $global-font-size;
$base-h5-line-height: 1.4;
$base-h6-font-size: $global-small-font-size;
$base-h6-line-height: 1.4;
$base-list-padding-left: 30px;
$base-hr-margin-vertical: $global-margin;
$global-border-width: 1px;
$base-hr-border-width: $global-border-width;
$global-border: #e5e5e5;
$base-hr-border: $global-border;
$base-blockquote-font-size: $global-medium-font-size;
$base-blockquote-line-height: 1.5;
$base-blockquote-font-style: italic;
$base-blockquote-margin-vertical: $global-margin;
$global-small-margin: 10px;
$base-blockquote-footer-margin-top: $global-small-margin;
$base-blockquote-footer-font-size: $global-small-font-size;
$base-blockquote-footer-line-height: 1.5;
$base-pre-font-size: $global-small-font-size;
$base-pre-line-height: 1.5;
$base-pre-font-family: $base-code-font-family;
$base-pre-color: $global-color;
$base-selection-background: #39f;
$base-selection-color: $global-inverse-color;
$inverse-base-color: $inverse-global-color;
$inverse-base-link-color: $inverse-global-emphasis-color;
$inverse-base-link-hover-color: $inverse-global-emphasis-color;
$inverse-base-code-color: $inverse-global-color;
$inverse-base-em-color: $inverse-global-emphasis-color;
$inverse-base-heading-color: $inverse-global-emphasis-color;
$inverse-global-border: rgba($global-inverse-color, 0.2);
$inverse-base-hr-border: $inverse-global-border;
$breadcrumb-item-font-size: $global-small-font-size;
$breadcrumb-item-color: $global-muted-color;
$breadcrumb-item-hover-color: $global-color;
$breadcrumb-item-hover-text-decoration: none;
$breadcrumb-item-active-color: $global-color;
$breadcrumb-divider: "/";
$breadcrumb-divider-margin-horizontal: 20px;
$breadcrumb-divider-color: $global-muted-color;
$inverse-breadcrumb-item-color: $inverse-global-muted-color;
$inverse-breadcrumb-item-hover-color: $inverse-global-color;
$inverse-breadcrumb-item-active-color: $inverse-global-color;
$inverse-breadcrumb-divider-color: $inverse-global-muted-color;
$global-control-height: 40px;
$button-border-width: $global-border-width;
$button-line-height: $global-control-height - ($button-border-width * 2);
$global-control-small-height: 30px;
$button-small-line-height: $global-control-small-height - ($button-border-width * 2);
$global-control-large-height: 55px;
$button-large-line-height: $global-control-large-height - ($button-border-width * 2);
$button-font-size: $global-small-font-size;
$button-small-font-size: $global-small-font-size;
$button-large-font-size: $global-small-font-size;
$button-padding-horizontal: $global-gutter;
$button-small-padding-horizontal: $global-small-gutter;
$button-large-padding-horizontal: $global-medium-gutter;
$button-default-background: transparent;
$button-default-color: $global-emphasis-color;
$button-default-hover-background: transparent;
$button-default-hover-color: $global-emphasis-color;
$button-default-active-background: transparent;
$button-default-active-color: $global-emphasis-color;
$button-primary-background: $global-primary-background;
$button-primary-color: $global-inverse-color;
$button-primary-hover-background: darken($button-primary-background, 5%);
$button-primary-hover-color: $global-inverse-color;
$button-primary-active-background: darken($button-primary-background, 10%);
$button-primary-active-color: $global-inverse-color;
$button-secondary-background: $global-secondary-background;
$button-secondary-color: $global-inverse-color;
$button-secondary-hover-background: darken($button-secondary-background, 5%);
$button-secondary-hover-color: $global-inverse-color;
$button-secondary-active-background: darken($button-secondary-background, 10%);
$button-secondary-active-color: $global-inverse-color;
$button-danger-background: $global-danger-background;
$button-danger-color: $global-inverse-color;
$button-danger-hover-background: darken($button-danger-background, 5%);
$button-danger-hover-color: $global-inverse-color;
$button-danger-active-background: darken($button-danger-background, 10%);
$button-danger-active-color: $global-inverse-color;
$button-disabled-background: transparent;
$button-disabled-color: $global-muted-color;
$button-text-line-height: $global-line-height;
$button-text-color: $global-emphasis-color;
$button-text-hover-color: $global-emphasis-color;
$button-text-disabled-color: $global-muted-color;
$button-link-line-height: $global-line-height;
$button-link-color: $global-link-color;
$button-link-hover-color: $global-link-hover-color;
$button-link-hover-text-decoration: underline;
$button-link-disabled-color: $global-muted-color;
$inverse-button-default-background: transparent;
$inverse-button-default-color: $inverse-global-emphasis-color;
$inverse-button-default-hover-background: transparent;
$inverse-button-default-hover-color: $inverse-global-emphasis-color;
$inverse-button-default-active-background: transparent;
$inverse-button-default-active-color: $inverse-global-emphasis-color;
$inverse-button-primary-background: $inverse-global-primary-background;
$inverse-button-primary-color: $inverse-global-inverse-color;
$inverse-button-primary-hover-background: darken($inverse-button-primary-background, 5%);
$inverse-button-primary-hover-color: $inverse-global-inverse-color;
$inverse-button-primary-active-background: darken($inverse-button-primary-background, 10%);
$inverse-button-primary-active-color: $inverse-global-inverse-color;
$inverse-button-secondary-background: $inverse-global-primary-background;
$inverse-button-secondary-color: $inverse-global-inverse-color;
$inverse-button-secondary-hover-background: darken($inverse-button-secondary-background, 5%);
$inverse-button-secondary-hover-color: $inverse-global-inverse-color;
$inverse-button-secondary-active-background: darken($inverse-button-secondary-background, 10%);
$inverse-button-secondary-active-color: $inverse-global-inverse-color;
$inverse-button-text-color: $inverse-global-emphasis-color;
$inverse-button-text-hover-color: $inverse-global-emphasis-color;
$inverse-button-text-disabled-color: $inverse-global-muted-color;
$inverse-button-link-color: $inverse-global-muted-color;
$inverse-button-link-hover-color: $inverse-global-color;
$card-body-padding-horizontal: $global-gutter;
$card-body-padding-vertical: $global-gutter;
$card-body-padding-horizontal-l: $global-medium-gutter;
$card-body-padding-vertical-l: $global-medium-gutter;
$card-header-padding-horizontal: $global-gutter;
$card-header-padding-vertical: round($global-gutter / 2);
$card-header-padding-horizontal-l: $global-medium-gutter;
$card-header-padding-vertical-l: round($global-medium-gutter / 2);
$card-footer-padding-horizontal: $global-gutter;
$card-footer-padding-vertical: ($global-gutter / 2);
$card-footer-padding-horizontal-l: $global-medium-gutter;
$card-footer-padding-vertical-l: round($global-medium-gutter / 2);
$card-title-font-size: $global-large-font-size;
$card-title-line-height: 1.4;
$card-badge-top: $global-gutter;
$card-badge-right: $card-badge-top;
$card-hover-background: $global-background;
$card-default-background: $global-background;
$card-default-color: $global-color;
$card-default-title-color: $global-emphasis-color;
$card-default-hover-background: $card-default-background;
$card-primary-background: $global-primary-background;
$card-primary-color: $global-inverse-color;
$card-primary-title-color: $card-primary-color;
$card-primary-hover-background: $card-primary-background;
$card-primary-color-mode: light;
$card-secondary-background: $global-secondary-background;
$card-secondary-color: $global-inverse-color;
$card-secondary-title-color: $card-secondary-color;
$card-secondary-hover-background: $card-secondary-background;
$card-secondary-color-mode: light;
$card-small-body-padding-horizontal: $global-margin;
$card-small-body-padding-vertical: $global-margin;
$card-small-header-padding-horizontal: $global-margin;
$card-small-header-padding-vertical: round($global-margin / 1.5);
$card-small-footer-padding-horizontal: $global-margin;
$card-small-footer-padding-vertical: round($global-margin / 1.5);
$global-large-gutter: 70px;
$card-large-body-padding-horizontal-l: $global-large-gutter;
$card-large-body-padding-vertical-l: $global-large-gutter;
$card-large-header-padding-horizontal-l: $global-large-gutter;
$card-large-header-padding-vertical-l: round($global-large-gutter / 2);
$card-large-footer-padding-horizontal-l: $global-large-gutter;
$card-large-footer-padding-vertical-l: round($global-large-gutter / 2);
$close-color: $global-muted-color;
$close-hover-color: $global-color;
$inverse-close-color: $inverse-global-muted-color;
$inverse-close-hover-color: $inverse-global-color;
$column-gutter: $global-gutter;
$column-gutter-l: $global-medium-gutter;
$column-divider-rule-color: $global-border;
$column-divider-rule-width: 1px;
$inverse-column-divider-rule-color: $inverse-global-border;
$comment-header-margin-bottom: $global-margin;
$comment-title-font-size: $global-medium-font-size;
$comment-title-line-height: 1.4;
$comment-meta-font-size: $global-small-font-size;
$comment-meta-line-height: 1.4;
$comment-meta-color: $global-muted-color;
$comment-list-margin-top: $global-large-margin;
$comment-list-padding-left: 30px;
$comment-list-padding-left-m: 100px;
$container-max-width: 1200px;
$container-xsmall-max-width: 750px;
$container-small-max-width: 900px;
$container-large-max-width: 1600px;
$container-padding-horizontal: 15px;
$container-padding-horizontal-s: $global-gutter;
$container-padding-horizontal-m: $global-medium-gutter;
$countdown-item-line-height: 0.8;
$countdown-number-font-size: 2rem;
$countdown-number-font-size-s: 4rem;
$countdown-number-font-size-m: 6rem;
$countdown-separator-font-size: 1rem;
$countdown-separator-font-size-s: 2rem;
$countdown-separator-font-size-m: 3rem;
$description-list-term-color: $global-emphasis-color;
$description-list-term-margin-top: $global-margin;
$description-list-divider-term-margin-top: $global-margin;
$description-list-divider-term-border-width: $global-border-width;
$description-list-divider-term-border: $global-border;
$divider-margin-vertical: $global-margin;
$divider-icon-width: 50px;
$divider-icon-height: 20px;
$divider-icon-color: $global-border;
$divider-icon-line-top: 50%;
$divider-icon-line-width: 100%;
$divider-icon-line-border-width: $global-border-width;
$divider-icon-line-border: $global-border;
$internal-divider-icon-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22#000%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A";
$divider-small-width: 100px;
$divider-small-border-width: $global-border-width;
$divider-small-border: $global-border;
$divider-vertical-height: 100px;
$divider-vertical-border-width: $global-border-width;
$divider-vertical-border: $global-border;
$inverse-divider-icon-color: $inverse-global-border;
$inverse-divider-icon-line-border: $inverse-global-border;
$inverse-divider-small-border: $inverse-global-border;
$inverse-divider-vertical-border: $inverse-global-border;
$dotnav-margin-horizontal: 12px;
$dotnav-margin-vertical: $dotnav-margin-horizontal;
$dotnav-item-width: 10px;
$dotnav-item-height: $dotnav-item-width;
$dotnav-item-border-radius: 50%;
$dotnav-item-background: transparent;
$dotnav-item-hover-background: rgba($global-color, 0.6);
$dotnav-item-onclick-background: rgba($global-color, 0.2);
$dotnav-item-active-background: rgba($global-color, 0.6);
$inverse-dotnav-item-background: transparent;
$inverse-dotnav-item-hover-background: rgba($inverse-global-color, 0.9);
$inverse-dotnav-item-onclick-background: rgba($inverse-global-color, 0.5);
$inverse-dotnav-item-active-background: rgba($inverse-global-color, 0.9);
$global-z-index: 1000;
$drop-z-index: $global-z-index + 20;
$drop-width: 300px;
$drop-margin: $global-margin;
$dropdown-z-index: $global-z-index + 20;
$dropdown-min-width: 200px;
$dropdown-padding: 25px;
$dropdown-background: $global-background;
$dropdown-color: $global-color;
$dropdown-margin: $global-small-margin;
$dropdown-nav-item-color: $global-muted-color;
$dropdown-nav-item-hover-color: $global-color;
$dropdown-nav-header-color: $global-emphasis-color;
$dropdown-nav-divider-border-width: $global-border-width;
$dropdown-nav-divider-border: $global-border;
$dropdown-nav-sublist-item-color: $global-muted-color;
$dropdown-nav-sublist-item-hover-color: $global-color;
$form-range-thumb-height: 15px;
$form-range-thumb-border-radius: 500px;
$form-range-thumb-background: $global-background;
$form-range-track-height: 3px;
$form-range-track-background: darken($global-muted-background, 5%);
$form-range-track-focus-background: darken($global-muted-background, 15%);
$form-height: $global-control-height;
$form-border-width: $global-border-width;
$form-line-height: $form-height - (2* $form-border-width);
$form-padding-horizontal: 10px;
$form-padding-vertical: 4px;
$form-background: $global-background;
$form-color: $global-color;
$form-focus-background: $global-background;
$form-focus-color: $global-color;
$form-disabled-background: $global-muted-background;
$form-disabled-color: $global-muted-color;
$form-placeholder-color: $global-muted-color;
$form-small-height: $global-control-small-height;
$form-small-padding-horizontal: 8px;
$form-small-line-height: $form-small-height - (2* $form-border-width);
$form-small-font-size: $global-small-font-size;
$form-large-height: $global-control-large-height;
$form-large-padding-horizontal: 12px;
$form-large-line-height: $form-large-height - (2* $form-border-width);
$form-large-font-size: $global-medium-font-size;
$form-danger-color: $global-danger-background;
$form-success-color: $global-success-background;
$form-width-xsmall: 50px;
$form-width-small: 130px;
$form-width-medium: 200px;
$form-width-large: 500px;
$form-select-padding-right: 20px;
$form-select-icon-color: $global-color;
$form-select-option-color: #444;
$form-select-disabled-icon-color: $global-muted-color;
$form-datalist-padding-right: 20px;
$form-datalist-icon-color: $global-color;
$form-radio-size: 16px;
$form-radio-margin-top: -4px;
$form-radio-background: transparent;
$form-radio-checked-background: $global-primary-background;
$form-radio-checked-icon-color: $global-inverse-color;
$form-radio-checked-focus-background: darken($global-primary-background, 10%);
$form-radio-disabled-background: $global-muted-background;
$form-radio-disabled-icon-color: $global-muted-color;
$form-legend-font-size: $global-large-font-size;
$form-legend-line-height: 1.4;
$form-stacked-margin-bottom: 5px;
$form-horizontal-label-width: 200px;
$form-horizontal-label-margin-top: 7px;
$form-horizontal-controls-margin-left: 215px;
$form-horizontal-controls-text-padding-top: 7px;
$form-icon-width: $form-height;
$form-icon-color: $global-muted-color;
$form-icon-hover-color: $global-color;
$internal-form-select-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22#000%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22#000%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A";
$internal-form-datalist-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22#000%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A";
$internal-form-radio-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22#000%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E";
$internal-form-checkbox-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22#000%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A";
$internal-form-checkbox-indeterminate-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22#000%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E";
$inverse-global-muted-background: rgba($global-inverse-color, 0.1);
$inverse-form-background: $inverse-global-muted-background;
$inverse-form-color: $inverse-global-color;
$inverse-form-focus-background: $inverse-global-muted-background;
$inverse-form-focus-color: $inverse-global-color;
$inverse-form-placeholder-color: $inverse-global-muted-color;
$inverse-form-select-icon-color: $inverse-global-color;
$inverse-form-datalist-icon-color: $inverse-global-color;
$inverse-form-radio-background: darken($inverse-global-muted-background, 5%);
$inverse-form-radio-checked-background: $inverse-global-primary-background;
$inverse-form-radio-checked-icon-color: $inverse-global-inverse-color;
$inverse-form-radio-checked-focus-background: darken($inverse-global-primary-background, 10%);
$inverse-form-icon-color: $inverse-global-muted-color;
$inverse-form-icon-hover-color: $inverse-global-color;
$grid-gutter-horizontal: $global-gutter;
$grid-gutter-vertical: $grid-gutter-horizontal;
$grid-gutter-horizontal-l: $global-medium-gutter;
$grid-gutter-vertical-l: $grid-gutter-horizontal-l;
$grid-small-gutter-horizontal: $global-small-gutter;
$grid-small-gutter-vertical: $grid-small-gutter-horizontal;
$grid-medium-gutter-horizontal: $global-gutter;
$grid-medium-gutter-vertical: $grid-medium-gutter-horizontal;
$grid-large-gutter-horizontal: $global-medium-gutter;
$grid-large-gutter-vertical: $grid-large-gutter-horizontal;
$grid-large-gutter-horizontal-l: $global-large-gutter;
$grid-large-gutter-vertical-l: $grid-large-gutter-horizontal-l;
$grid-divider-border-width: $global-border-width;
$grid-divider-border: $global-border;
$inverse-grid-divider-border: $inverse-global-border;
$heading-medium-font-size-l: 4rem;
$heading-small-font-size-m: $heading-medium-font-size-l * 0.8125;
$heading-small-font-size: $heading-small-font-size-m * 0.8;
$heading-medium-font-size-m: $heading-medium-font-size-l * 0.875;
$heading-medium-font-size: $heading-medium-font-size-m * 0.825;
$heading-large-font-size-m: $heading-medium-font-size-l;
$heading-large-font-size: $heading-large-font-size-m * 0.85;
$heading-xlarge-font-size: $heading-large-font-size-m;
$heading-large-font-size-l: 6rem;
$heading-xlarge-font-size-m: $heading-large-font-size-l;
$heading-2xlarge-font-size: $heading-xlarge-font-size-m;
$heading-xlarge-font-size-l: 8rem;
$heading-2xlarge-font-size-m: $heading-xlarge-font-size-l;
$heading-2xlarge-font-size-l: 11rem;
$heading-small-line-height: 1.2;
$heading-medium-line-height: 1.1;
$heading-large-line-height: 1.1;
$heading-xlarge-line-height: 1;
$heading-2xlarge-line-height: 1;
$heading-divider-padding-bottom: unquote('calc(5px + 0.1em)');
$heading-divider-border-width: unquote('calc(0.2px + 0.05em)');
$heading-divider-border: $global-border;
$heading-bullet-top: unquote('calc(-0.1 * 1em)');
$heading-bullet-height: unquote('calc(4px + 0.7em)');
$heading-bullet-margin-right: unquote('calc(5px + 0.2em)');
$heading-bullet-border-width: unquote('calc(5px + 0.1em)');
$heading-bullet-border: $global-border;
$heading-line-top: 50%;
$heading-line-border-width: unquote('calc(0.2px + 0.05em)');
$heading-line-height: $heading-line-border-width;
$heading-line-width: 2000px;
$heading-line-border: $global-border;
$heading-line-margin-horizontal: unquote('calc(5px + 0.3em)');
$heading-primary-font-size-l: 3.75rem;
$heading-primary-line-height-l: 1.1;
$heading-primary-font-size-m: $heading-primary-font-size-l * 0.9;
$heading-primary-font-size: $heading-primary-font-size-l * 0.8;
$heading-primary-line-height: 1.2;
$heading-hero-font-size-l: 8rem;
$heading-hero-line-height-l: 1;
$heading-hero-font-size-m: $heading-hero-font-size-l * 0.75;
$heading-hero-line-height-m: 1;
$heading-hero-font-size: $heading-hero-font-size-l * 0.5;
$heading-hero-line-height: 1.1;
$inverse-heading-divider-border: $inverse-global-border;
$inverse-heading-bullet-border: $inverse-global-border;
$inverse-heading-line-border: $inverse-global-border;
$height-small-height: 150px;
$height-medium-height: 300px;
$height-large-height: 450px;
$icon-image-size: 20px;
$icon-link-color: $global-muted-color;
$icon-link-hover-color: $global-color;
$icon-link-active-color: darken($global-color, 5%);
$icon-button-size: 36px;
$icon-button-border-radius: 500px;
$icon-button-background: $global-muted-background;
$icon-button-color: $global-muted-color;
$icon-button-hover-background: darken($icon-button-background, 5%);
$icon-button-hover-color: $global-color;
$icon-button-active-background: darken($icon-button-background, 10%);
$icon-button-active-color: $global-color;
$inverse-icon-link-color: $inverse-global-muted-color;
$inverse-icon-link-hover-color: $inverse-global-color;
$inverse-icon-link-active-color: $inverse-global-color;
$inverse-icon-button-background: $inverse-global-muted-background;
$inverse-icon-button-color: $inverse-global-muted-color;
$inverse-icon-button-hover-background: darken($inverse-icon-button-background, 5%);
$inverse-icon-button-hover-color: $inverse-global-color;
$inverse-icon-button-active-background: darken($inverse-icon-button-background, 10%);
$inverse-icon-button-active-color: $inverse-global-color;
$iconnav-margin-horizontal: $global-small-margin;
$iconnav-margin-vertical: $iconnav-margin-horizontal;
$iconnav-item-color: $global-muted-color;
$iconnav-item-hover-color: $global-color;
$iconnav-item-active-color: $global-color;
$inverse-iconnav-item-color: $inverse-global-muted-color;
$inverse-iconnav-item-hover-color: $inverse-global-color;
$inverse-iconnav-item-active-color: $inverse-global-color;
$inverse-global-color-mode: light;
$label-padding-vertical: 0;
$label-padding-horizontal: $global-small-margin;
$label-background: $global-primary-background;
$label-line-height: $global-line-height;
$label-font-size: $global-small-font-size;
$label-color: $global-inverse-color;
$label-success-background: $global-success-background;
$label-success-color: $global-inverse-color;
$label-warning-background: $global-warning-background;
$label-warning-color: $global-inverse-color;
$label-danger-background: $global-danger-background;
$label-danger-color: $global-inverse-color;
$inverse-label-background: $inverse-global-primary-background;
$inverse-label-color: $inverse-global-inverse-color;
$leader-fill-content: unquote('.');
$leader-fill-margin-left: $global-small-gutter;
$lightbox-z-index: $global-z-index + 10;
$lightbox-background: #000;
$lightbox-item-color: rgba(255,255,255,0.7);
$lightbox-item-max-width: 100vw;
$lightbox-item-max-height: 100vh;
$lightbox-toolbar-padding-vertical: 10px;
$lightbox-toolbar-padding-horizontal: 10px;
$lightbox-toolbar-background: rgba(0,0,0,0.3);
$lightbox-toolbar-color: rgba(255,255,255,0.7);
$lightbox-toolbar-icon-padding: 5px;
$lightbox-toolbar-icon-color: rgba(255,255,255,0.7);
$lightbox-toolbar-icon-hover-color: #fff;
$lightbox-button-size: 50px;
$lightbox-button-background: $lightbox-toolbar-background;
$lightbox-button-color: rgba(255,255,255,0.7);
$lightbox-button-hover-color: #fff;
$link-muted-color: $global-muted-color;
$link-muted-hover-color: $global-color;
$link-text-hover-color: $global-muted-color;
$link-heading-hover-color: $global-primary-background;
$link-heading-hover-text-decoration: none;
$inverse-link-muted-color: $inverse-global-muted-color;
$inverse-link-muted-hover-color: $inverse-global-color;
$inverse-link-text-hover-color: $inverse-global-muted-color;
$inverse-link-heading-hover-color: $inverse-global-primary-background;
$list-margin-top: $global-small-margin;
$list-nested-padding-left: $global-gutter;
$list-divider-margin-top: $global-small-margin;
$list-divider-border-width: $global-border-width;
$list-divider-border: $global-border;
$list-striped-padding-vertical: $global-small-margin;
$list-striped-padding-horizontal: $global-small-margin;
$list-striped-background: $global-muted-background;
$list-bullet-width: ($global-line-height * 1em);
$list-bullet-height: $list-bullet-width;
$list-bullet-margin-right: $global-small-margin;
$list-bullet-icon-color: $global-color;
$list-large-margin-top: $global-margin;
$list-large-divider-margin-top: $global-margin;
$list-large-striped-padding-vertical: $global-margin;
$list-large-striped-padding-horizontal: $global-small-margin;
$internal-list-bullet-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22#000%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E";
$inverse-list-divider-border: $inverse-global-border;
$inverse-list-striped-background: $inverse-global-muted-background;
$inverse-list-bullet-icon-color: $inverse-global-color;
$margin-margin: $global-margin;
$margin-small-margin: $global-small-margin;
$margin-medium-margin: $global-medium-margin;
$margin-large-margin: $global-medium-margin;
$margin-large-margin-l: $global-large-margin;
$margin-xlarge-margin: $global-large-margin;
$global-xlarge-margin: 140px;
$margin-xlarge-margin-l: $global-xlarge-margin;
$marker-padding: 5px;
$marker-background: $global-secondary-background;
$marker-color: $global-inverse-color;
$marker-hover-color: $global-inverse-color;
$inverse-marker-background: $global-muted-background;
$inverse-marker-color: $global-color;
$inverse-marker-hover-color: $global-color;
$modal-z-index: $global-z-index + 10;
*/
/*
$modal-padding-horizontal: 15px;
$modal-padding-horizontal-s: $global-gutter;
$modal-padding-horizontal-m: $global-medium-gutter;
$modal-padding-vertical: $modal-padding-horizontal;
$modal-padding-vertical-s: 50px;
$modal-dialog-width: 600px;
$modal-dialog-background: $global-background;
$modal-container-width: 1200px;
$modal-body-padding-horizontal: $global-gutter;
$modal-body-padding-vertical: $global-gutter;
$modal-header-padding-horizontal: $global-gutter;
$modal-header-padding-vertical: ($modal-header-padding-horizontal / 2);
$modal-header-background: $modal-dialog-background;
$modal-footer-padding-horizontal: $global-gutter;
$modal-footer-padding-vertical: ($modal-footer-padding-horizontal / 2);
$modal-footer-background: $modal-dialog-background;
$modal-title-font-size: $global-xlarge-font-size;
$modal-title-line-height: 1.3;
$modal-close-position: $global-small-margin;
$modal-close-padding: 5px;
$modal-close-outside-position: 0;
$modal-close-outside-translate: 100%;
$modal-close-outside-color: lighten($global-inverse-color, 20%);
$modal-close-outside-hover-color: $global-inverse-color;
$nav-item-padding-vertical: 5px;
$nav-item-padding-horizontal: 0;
$nav-sublist-padding-vertical: 5px;
$nav-sublist-padding-left: 15px;
$nav-sublist-deeper-padding-left: 15px;
$nav-sublist-item-padding-vertical: 2px;
$nav-parent-icon-width: ($global-line-height * 1em);
$nav-parent-icon-height: $nav-parent-icon-width;
$nav-parent-icon-color: $global-color;
$nav-header-padding-vertical: $nav-item-padding-vertical;
$nav-header-padding-horizontal: $nav-item-padding-horizontal;
$nav-header-font-size: $global-small-font-size;
$nav-header-text-transform: uppercase;
$nav-header-margin-top: $global-margin;
$nav-divider-margin-vertical: 5px;
$nav-divider-margin-horizontal: 0;
$nav-default-item-color: $global-muted-color;
$nav-default-item-hover-color: $global-color;
$nav-default-item-active-color: $global-emphasis-color;
$nav-default-header-color: $global-emphasis-color;
$nav-default-divider-border-width: $global-border-width;
$nav-default-divider-border: $global-border;
$nav-default-sublist-item-color: $global-muted-color;
$nav-default-sublist-item-hover-color: $global-color;
$nav-default-sublist-item-active-color: $global-emphasis-color;
$nav-primary-item-font-size: $global-large-font-size;
$nav-primary-item-line-height: $global-line-height;
$nav-primary-item-color: $global-muted-color;
$nav-primary-item-hover-color: $global-color;
$nav-primary-item-active-color: $global-emphasis-color;
$nav-primary-header-color: $global-emphasis-color;
$nav-primary-divider-border-width: $global-border-width;
$nav-primary-divider-border: $global-border;
$nav-primary-sublist-item-color: $global-muted-color;
$nav-primary-sublist-item-hover-color: $global-color;
$nav-primary-sublist-item-active-color: $global-emphasis-color;
$internal-nav-parent-close-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22#000%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E";
$internal-nav-parent-open-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22#000%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E";
$inverse-nav-parent-icon-color: $inverse-global-color;
$inverse-nav-default-item-color: $inverse-global-muted-color;
$inverse-nav-default-item-hover-color: $inverse-global-color;
$inverse-nav-default-item-active-color: $inverse-global-emphasis-color;
$inverse-nav-default-header-color: $inverse-global-emphasis-color;
$inverse-nav-default-divider-border: $inverse-global-border;
$inverse-nav-default-sublist-item-color: $inverse-global-muted-color;
$inverse-nav-default-sublist-item-hover-color: $inverse-global-color;
$inverse-nav-default-sublist-item-active-color: $inverse-global-emphasis-color;
$inverse-nav-primary-item-color: $inverse-global-muted-color;
$inverse-nav-primary-item-hover-color: $inverse-global-color;
$inverse-nav-primary-item-active-color: $inverse-global-emphasis-color;
$inverse-nav-primary-header-color: $inverse-global-emphasis-color;
$inverse-nav-primary-divider-border: $inverse-global-border;
$inverse-nav-primary-sublist-item-color: $inverse-global-muted-color;
$inverse-nav-primary-sublist-item-hover-color: $inverse-global-color;
$inverse-nav-primary-sublist-item-active-color: $inverse-global-emphasis-color;
$navbar-background: $global-muted-background;
$navbar-color-mode: none;
$navbar-nav-item-height: 80px;
$navbar-nav-item-padding-horizontal: 15px;
$navbar-nav-item-color: $global-muted-color;
$navbar-nav-item-font-size: $global-small-font-size;
$navbar-nav-item-font-family: $global-font-family;
$navbar-nav-item-hover-color: $global-color;
$navbar-nav-item-onclick-color: $global-emphasis-color;
$navbar-nav-item-active-color: $global-emphasis-color;
$navbar-item-color: $global-color;
$navbar-toggle-color: $global-muted-color;
$navbar-toggle-hover-color: $global-color;
$navbar-subtitle-font-size: $global-small-font-size;
$navbar-dropdown-z-index: $global-z-index + 20;
$navbar-dropdown-width: 200px;
$navbar-dropdown-margin: 15px;
$navbar-dropdown-padding: 25px;
$navbar-dropdown-background: $global-background;
$navbar-dropdown-color: $global-color;
$navbar-dropdown-grid-gutter-horizontal: ($navbar-dropdown-padding * 2);
$navbar-dropdown-grid-gutter-vertical: $navbar-dropdown-grid-gutter-horizontal;
$navbar-dropdown-dropbar-margin-top: 0;
$navbar-dropdown-dropbar-margin-bottom: $navbar-dropdown-dropbar-margin-top;
$navbar-dropdown-nav-item-color: $global-muted-color;
$navbar-dropdown-nav-item-hover-color: $global-color;
$navbar-dropdown-nav-item-active-color: $global-emphasis-color;
$navbar-dropdown-nav-header-color: $global-emphasis-color;
$navbar-dropdown-nav-divider-border-width: $global-border-width;
$navbar-dropdown-nav-divider-border: $global-border;
$navbar-dropdown-nav-sublist-item-color: $global-muted-color;
$navbar-dropdown-nav-sublist-item-hover-color: $global-color;
$navbar-dropdown-nav-sublist-item-active-color: $global-emphasis-color;
$navbar-dropbar-background: $navbar-dropdown-background;
$navbar-dropbar-z-index: $global-z-index - 20;
$inverse-navbar-nav-item-color: $inverse-global-muted-color;
$inverse-navbar-nav-item-hover-color: $inverse-global-color;
$inverse-navbar-nav-item-onclick-color: $inverse-global-emphasis-color;
$inverse-navbar-nav-item-active-color: $inverse-global-emphasis-color;
$inverse-navbar-item-color: $inverse-global-color;
$inverse-navbar-toggle-color: $inverse-global-muted-color;
$inverse-navbar-toggle-hover-color: $inverse-global-color;
$notification-position: 10px;
$notification-z-index: $global-z-index + 40;
$notification-width: 350px;
$notification-message-margin-top: 10px;
$notification-message-padding: $global-small-gutter;
$notification-message-background: $global-muted-background;
$notification-message-color: $global-color;
$notification-message-font-size: $global-medium-font-size;
$notification-message-line-height: 1.4;
$notification-close-top: $notification-message-padding + 5px;
$notification-close-right: $notification-message-padding;
$notification-message-primary-color: $global-primary-background;
$notification-message-success-color: $global-success-background;
$notification-message-warning-color: $global-warning-background;
$notification-message-danger-color: $global-danger-background;
$offcanvas-z-index: $global-z-index;
$offcanvas-bar-width: 270px;
$offcanvas-bar-padding-vertical: $global-margin;
$offcanvas-bar-padding-horizontal: $global-margin;
$offcanvas-bar-background: $global-secondary-background;
$offcanvas-bar-color-mode: light;
$offcanvas-bar-width-m: 350px;
$offcanvas-bar-padding-vertical-m: $global-medium-gutter;
$offcanvas-bar-padding-horizontal-m: $global-medium-gutter;
$offcanvas-close-position: 20px;
$offcanvas-close-padding: 5px;
$offcanvas-overlay-background: rgba(0,0,0,0.1);
$overlay-padding-horizontal: $global-gutter;
$overlay-padding-vertical: $global-gutter;
$overlay-default-background: rgba($global-background, 0.8);
$overlay-primary-background: rgba($global-secondary-background, 0.8);
$overlay-primary-color-mode: light;
$padding-padding: $global-gutter;
$padding-padding-l: $global-medium-gutter;
$padding-small-padding: $global-small-gutter;
$padding-large-padding: $global-gutter;
$padding-large-padding-l: $global-large-gutter;
$pagination-margin-horizontal: 20px;
$pagination-item-color: $global-muted-color;
$pagination-item-hover-color: $global-color;
$pagination-item-hover-text-decoration: none;
$pagination-item-active-color: $global-color;
$pagination-item-disabled-color: $global-muted-color;
$inverse-pagination-item-color: $inverse-global-muted-color;
$inverse-pagination-item-hover-color: $inverse-global-color;
$inverse-pagination-item-active-color: $inverse-global-color;
$inverse-pagination-item-disabled-color: $inverse-global-muted-color;
$placeholder-margin-vertical: $global-margin;
$placeholder-padding-vertical: $global-gutter;
$placeholder-padding-horizontal: $global-gutter;
$placeholder-background: transparent;
$position-small-margin: $global-small-gutter;
$position-medium-margin: $global-gutter;
$position-large-margin: $global-gutter;
$position-large-margin-l: 50px;
$progress-height: 15px;
$progress-margin-vertical: $global-margin;
$progress-background: $global-muted-background;
$progress-bar-background: $global-primary-background;
$search-color: $global-color;
$search-placeholder-color: $global-muted-color;
$search-icon-color: $global-muted-color;
$search-default-width: 180px;
$search-default-height: $global-control-height;
$search-default-padding-horizontal: 6px;
$search-default-background: transparent;
$search-default-focus-background: $search-default-background;
$search-default-icon-width: $global-control-height;
$search-navbar-width: 400px;
$search-navbar-height: 40px;
$search-navbar-background: transparent;
$search-navbar-font-size: $global-large-font-size;
$search-navbar-icon-width: 40px;
$search-large-width: 500px;
$search-large-height: 80px;
$search-large-background: transparent;
$search-large-font-size: $global-xxlarge-font-size;
$search-large-icon-width: 80px;
$search-toggle-color: $global-muted-color;
$search-toggle-hover-color: $global-color;
$inverse-search-color: $inverse-global-color;
$inverse-search-placeholder-color: $inverse-global-muted-color;
$inverse-search-icon-color: $inverse-global-muted-color;
$inverse-search-default-background: transparent;
$inverse-search-default-focus-background: $inverse-search-default-background;
$inverse-search-navbar-background: transparent;
$inverse-search-large-background: transparent;
$inverse-search-toggle-color: $inverse-global-muted-color;
$inverse-search-toggle-hover-color: $inverse-global-color;
$section-padding-vertical: $global-medium-margin;
$section-padding-vertical-m: $global-large-margin;
$section-xsmall-padding-vertical: $global-margin;
$section-small-padding-vertical: $global-medium-margin;
$section-large-padding-vertical: $global-large-margin;
$section-large-padding-vertical-m: $global-xlarge-margin;
$section-xlarge-padding-vertical: $global-xlarge-margin;
$section-xlarge-padding-vertical-m: ($global-large-margin + $global-xlarge-margin);
$section-default-background: $global-background;
$section-muted-background: $global-muted-background;
$section-primary-background: $global-primary-background;
$section-primary-color-mode: light;
$section-secondary-background: $global-secondary-background;
$section-secondary-color-mode: light;
$slidenav-padding-vertical: 5px;
$slidenav-padding-horizontal: 10px;
$slidenav-color: rgba($global-color, 0.5);
$slidenav-hover-color: rgba($global-color, 0.9);
$slidenav-active-color: rgba($global-color, 0.5);
$slidenav-large-padding-vertical: 10px;
$slidenav-large-padding-horizontal: $slidenav-large-padding-vertical;
$inverse-slidenav-color: rgba($inverse-global-color, 0.7);
$inverse-slidenav-hover-color: rgba($inverse-global-color, 0.95);
$inverse-slidenav-active-color: rgba($inverse-global-color, 0.7);
$sortable-dragged-z-index: $global-z-index + 50;
$sortable-placeholder-opacity: 0;
$sortable-empty-height: 50px;
$spinner-size: 30px;
$spinner-stroke-width: 1;
$spinner-radius: floor(($spinner-size - $spinner-stroke-width) / 2);
$spinner-circumference: round(2 * 3.141 * $spinner-radius);
$spinner-duration: 1.4s;
$sticky-z-index: $global-z-index - 20;
$sticky-animation-duration: 0.2s;
$sticky-reverse-animation-duration: 0.2s;
$subnav-margin-horizontal: 20px;
$subnav-item-color: $global-muted-color;
$subnav-item-hover-color: $global-color;
$subnav-item-hover-text-decoration: none;
$subnav-item-active-color: $global-emphasis-color;
$subnav-divider-margin-horizontal: $subnav-margin-horizontal;
$subnav-divider-border-height: 1.5em;
$subnav-divider-border-width: $global-border-width;
$subnav-divider-border: $global-border;
$subnav-pill-item-padding-vertical: 5px;
$subnav-pill-item-padding-horizontal: 10px;
$subnav-pill-item-background: transparent;
$subnav-pill-item-color: $subnav-item-color;
$subnav-pill-item-hover-background: $global-muted-background;
$subnav-pill-item-hover-color: $global-color;
$subnav-pill-item-onclick-background: $subnav-pill-item-hover-background;
$subnav-pill-item-onclick-color: $subnav-pill-item-hover-color;
$subnav-pill-item-active-background: $global-primary-background;
$subnav-pill-item-active-color: $global-inverse-color;
$subnav-item-disabled-color: $global-muted-color;
$inverse-subnav-item-color: $inverse-global-muted-color;
$inverse-subnav-item-hover-color: $inverse-global-color;
$inverse-subnav-item-active-color: $inverse-global-emphasis-color;
$inverse-subnav-divider-border: $inverse-global-border;
$inverse-subnav-pill-item-background: transparent;
$inverse-subnav-pill-item-color: $inverse-global-muted-color;
$inverse-subnav-pill-item-hover-background: $inverse-global-muted-background;
$inverse-subnav-pill-item-hover-color: $inverse-global-color;
$inverse-subnav-pill-item-onclick-background: $inverse-subnav-pill-item-hover-background;
$inverse-subnav-pill-item-onclick-color: $inverse-subnav-pill-item-hover-color;
$inverse-subnav-pill-item-active-background: $inverse-global-primary-background;
$inverse-subnav-pill-item-active-color: $inverse-global-inverse-color;
$inverse-subnav-item-disabled-color: $inverse-global-muted-color;
$tab-margin-horizontal: 20px;
$tab-item-padding-horizontal: 10px;
$tab-item-padding-vertical: 5px;
$tab-item-color: $global-muted-color;
$tab-item-hover-color: $global-color;
$tab-item-hover-text-decoration: none;
$tab-item-active-color: $global-emphasis-color;
$tab-item-disabled-color: $global-muted-color;
$inverse-tab-item-color: $inverse-global-muted-color;
$inverse-tab-item-hover-color: $inverse-global-color;
$inverse-tab-item-active-color: $inverse-global-emphasis-color;
$inverse-tab-item-disabled-color: $inverse-global-muted-color;
$table-margin-vertical: $global-margin;
$table-cell-padding-vertical: 16px;
$table-cell-padding-horizontal: 12px;
$table-header-cell-font-size: $global-small-font-size;
$table-header-cell-font-weight: normal;
$table-header-cell-color: $global-muted-color;
$table-footer-font-size: $global-small-font-size;
$table-caption-font-size: $global-small-font-size;
$table-caption-color: $global-muted-color;
$table-row-active-background: #ffd;
$table-divider-border-width: $global-border-width;
$table-divider-border: $global-border;
$table-striped-row-background: $global-muted-background;
$table-hover-row-background: $table-row-active-background;
$table-small-cell-padding-vertical: 10px;
$table-small-cell-padding-horizontal: 12px;
$table-large-cell-padding-vertical: 22px;
$table-large-cell-padding-horizontal: 12px;
$table-expand-min-width: 150px;
$inverse-table-header-cell-color: $inverse-global-color;
$inverse-table-caption-color: $inverse-global-muted-color;
$inverse-table-row-active-background: fade-out($inverse-global-muted-background, 0.02);
$inverse-table-divider-border: $inverse-global-border;
$inverse-table-striped-row-background: $inverse-global-muted-background;
$inverse-table-hover-row-background: $inverse-table-row-active-background;
$text-lead-font-size: $global-large-font-size;
$text-lead-line-height: 1.5;
$text-lead-color: $global-emphasis-color;
$text-meta-font-size: $global-small-font-size;
$text-meta-line-height: 1.4;
$text-meta-color: $global-muted-color;
$text-small-font-size: $global-small-font-size;
$text-small-line-height: 1.5;
$text-large-font-size: $global-large-font-size;
$text-large-line-height: 1.5;
$text-muted-color: $global-muted-color;
$text-emphasis-color: $global-emphasis-color;
$text-primary-color: $global-primary-background;
$text-secondary-color: $global-secondary-background;
$text-success-color: $global-success-background;
$text-warning-color: $global-warning-background;
$text-danger-color: $global-danger-background;
$text-background-color: $global-primary-background;
$inverse-text-lead-color: $inverse-global-color;
$inverse-text-meta-color: $inverse-global-muted-color;
$inverse-text-muted-color: $inverse-global-muted-color;
$inverse-text-emphasis-color: $inverse-global-emphasis-color;
$inverse-text-primary-color: $inverse-global-primary-background;
$inverse-text-secondary-color: $inverse-global-primary-background;
$thumbnav-margin-horizontal: 15px;
$thumbnav-margin-vertical: $thumbnav-margin-horizontal;
$tile-padding-horizontal: 15px;
$tile-padding-horizontal-s: $global-gutter;
$tile-padding-horizontal-m: $global-medium-gutter;
$tile-padding-vertical: $global-medium-margin;
$tile-padding-vertical-m: $global-large-margin;
$tile-xsmall-padding-vertical: $global-margin;
$tile-small-padding-vertical: $global-medium-margin;
$tile-large-padding-vertical: $global-large-margin;
$tile-large-padding-vertical-m: $global-xlarge-margin;
$tile-xlarge-padding-vertical: $global-xlarge-margin;
$tile-xlarge-padding-vertical-m: ($global-large-margin + $global-xlarge-margin);
$tile-default-background: $global-background;
$tile-muted-background: $global-muted-background;
$tile-primary-background: $global-primary-background;
$tile-primary-color-mode: light;
$tile-secondary-background: $global-secondary-background;
$tile-secondary-color-mode: light;
$tooltip-z-index: $global-z-index + 30;
$tooltip-max-width: 200px;
$tooltip-padding-vertical: 3px;
$tooltip-padding-horizontal: 6px;
$tooltip-background: #666;
$tooltip-border-radius: 2px;
$tooltip-color: $global-inverse-color;
$tooltip-font-size: 12px;
$tooltip-margin: 10px;
$totop-padding: 5px;
$totop-color: $global-muted-color;
$totop-hover-color: $global-color;
$totop-active-color: $global-emphasis-color;
$inverse-totop-color: $inverse-global-muted-color;
$inverse-totop-hover-color: $inverse-global-color;
$inverse-totop-active-color: $inverse-global-emphasis-color;
$transition-duration: 0.3s;
$transition-scale: 1.1;
$transition-slide-small-translate: 10px;
$transition-slide-medium-translate: 50px;
$transition-slow-duration: 0.7s;
$panel-scrollable-height: 170px;
$panel-scrollable-padding: 10px;
$panel-scrollable-border-width: $global-border-width;
$panel-scrollable-border: $global-border;
$border-rounded-border-radius: 5px;
$box-shadow-duration: 0.1s;
$box-shadow-bottom-height: 30px;
$box-shadow-bottom-border-radius: 100%;
$box-shadow-bottom-background: #444;
$box-shadow-bottom-blur: 20px;
$dropcap-margin-right: 10px;
$dropcap-font-size: (($global-line-height * 3) * 1em);
$logo-font-size: $global-large-font-size;
$logo-font-family: $global-font-family;
$logo-color: $global-color;
$logo-hover-color: $global-color;
$dragover-box-shadow: 0 0 20px rgba(100,100,100,0.3);
$inverse-logo-color: $inverse-global-color;
$inverse-logo-hover-color: $inverse-global-color;
$deprecated: false;
$breakpoint-small: 640px;
$breakpoint-medium: 960px;
$breakpoint-large: 1200px;
$breakpoint-xlarge: 1600px;
$breakpoint-xsmall-max: ($breakpoint-small - 1);
$breakpoint-small-max: ($breakpoint-medium - 1);
$breakpoint-medium-max: ($breakpoint-large - 1);
$breakpoint-large-max: ($breakpoint-xlarge - 1);
$global-small-box-shadow: 0 2px 8px rgba(0,0,0,0.08);
$global-medium-box-shadow: 0 5px 15px rgba(0,0,0,0.08);
$global-large-box-shadow: 0 14px 25px rgba(0,0,0,0.16);
$global-xlarge-box-shadow: 0 28px 50px rgba(0,0,0,0.16);
$width-small-width: 150px;
$width-medium-width: 300px;
$width-large-width: 450px;
$width-xlarge-width: 600px;
$width-xxlarge-width: 750px;
$accordion-icon-margin-left: 10px;
$accordion-icon-color: $global-color;
$internal-accordion-open-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22#000%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E";
$internal-accordion-close-image: "data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22#000%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22#000%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E";
$alert-close-opacity: 0.4;
$alert-close-hover-opacity: 0.8;
$article-meta-link-color: $article-meta-color;
$article-meta-link-hover-color: $global-color;
$base-code-padding-horizontal: 6px;
$base-code-padding-vertical: 2px;
$base-code-background: $global-muted-background;
$base-blockquote-color: $global-emphasis-color;
$base-blockquote-footer-color: $global-color;
$base-pre-padding: 10px;
$base-pre-background: $global-background;
$base-pre-border-width: $global-border-width;
$base-pre-border: $global-border;
$base-pre-border-radius: 3px;
$inverse-base-blockquote-color: $inverse-global-emphasis-color;
$inverse-base-blockquote-footer-color: $inverse-global-color;
$button-text-transform: uppercase;
$button-default-border: $global-border;
$button-default-hover-border: darken($global-border, 20%);
$button-default-active-border: darken($global-border, 30%);
$button-disabled-border: $global-border;
$button-text-border-width: $global-border-width;
$button-text-border: $button-text-hover-color;
$card-hover-box-shadow: $global-large-box-shadow;
$card-default-box-shadow: $global-medium-box-shadow;
$card-default-hover-box-shadow: $global-large-box-shadow;
$card-default-header-border-width: $global-border-width;
$card-default-header-border: $global-border;
$card-default-footer-border-width: $global-border-width;
$card-default-footer-border: $global-border;
$card-primary-box-shadow: $global-medium-box-shadow;
$card-primary-hover-box-shadow: $global-large-box-shadow;
$card-secondary-box-shadow: $global-medium-box-shadow;
$card-secondary-hover-box-shadow: $global-large-box-shadow;
$comment-primary-padding: $global-gutter;
$comment-primary-background: $global-muted-background;
$description-list-term-font-size: $global-small-font-size;
$description-list-term-font-weight: normal;
$description-list-term-text-transform: uppercase;
$dotnav-item-border-width: 1px;
$dotnav-item-border: rgba($global-color, 0.4);
$dotnav-item-hover-border: transparent;
$dotnav-item-onclick-border: transparent;
$dotnav-item-active-border: transparent;
$dropdown-nav-font-size: $global-small-font-size;
$dropdown-box-shadow: 0 5px 12px rgba(0,0,0,0.15);
$form-range-thumb-border-width: $global-border-width;
$form-range-thumb-border: darken($global-border, 10%);
$form-range-track-border-radius: 500px;
$form-border: $global-border;
$form-focus-border: $global-primary-background;
$form-disabled-border: $global-border;
$form-danger-border: $global-danger-background;
$form-success-border: $global-success-background;
$form-blank-focus-border: $global-border;
$form-blank-focus-border-style: dashed;
$form-radio-border-width: $global-border-width;
$form-radio-border: darken($global-border, 10%);
$form-radio-focus-border: $global-primary-background;
$form-radio-checked-border: transparent;
$form-radio-disabled-border: $global-border;
$form-label-color: $global-emphasis-color;
$form-label-font-size: $global-small-font-size;
$inverse-form-label-color: $inverse-global-emphasis-color;
$label-border-radius: 2px;
$label-text-transform: uppercase;
$list-striped-border-width: $global-border-width;
$list-striped-border: $global-border;
$modal-header-border-width: $global-border-width;
$modal-header-border: $global-border;
$modal-footer-border-width: $global-border-width;
$modal-footer-border: $global-border;
$modal-close-full-padding: $global-margin;
$modal-close-full-background: $modal-dialog-background;
$nav-default-font-size: $global-small-font-size;
$navbar-nav-item-text-transform: uppercase;
$navbar-dropdown-nav-font-size: $global-small-font-size;
$navbar-dropdown-box-shadow: 0 5px 12px rgba(0,0,0,0.15);
$navbar-dropbar-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05);
$navbar-dropdown-grid-divider-border-width: $global-border-width;
$navbar-dropdown-grid-divider-border: $navbar-dropdown-nav-divider-border;
$placeholder-border-width: $global-border-width;
$placeholder-border: $global-border;
$progress-border-radius: 500px;
$search-default-border-width: $global-border-width;
$search-default-border: $global-border;
$subnav-item-font-size: $global-small-font-size;
$subnav-item-text-transform: uppercase;
$tab-border-width: $global-border-width;
$tab-border: $global-border;
$tab-item-border-width: $global-border-width;
$tab-item-font-size: $global-small-font-size;
$tab-item-text-transform: uppercase;
$tab-item-active-border: $global-primary-background;
$inverse-tab-border: $inverse-global-border;
$table-striped-border-width: $global-border-width;
$table-striped-border: $global-border;
$text-meta-link-color: $text-meta-color;
$text-meta-link-hover-color: $global-color;
$thumbnav-item-background: rgba($global-background, 0.4);
$thumbnav-item-hover-background: transparent;
$thumbnav-item-active-background: transparent;
*/
/**
* FONTS
*
* All font defintions.
*/
html {
  font-size: 16px;
  line-height: 1.5em;
  font-family: "Inter", sans-serif;
  font-display: swap;
  color: #364058;
}

@media all and (min-width: 1800px) {
  html {
    font-size: 18px;
  }
}

.XD-font__body-1,
.has-medium-font-size,
.body-1,
.is-style-body-1,
p.intro {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.7;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.9375rem;
}
@media all and (min-width: 768px) {
  .XD-font__body-1,
.has-medium-font-size,
.body-1,
.is-style-body-1,
p.intro {
    font-size: 1.375rem;
  }
}

.XD-font__body-2,
.body-2,
.is-style-body-2,
p,
ul {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.7em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.9375rem;
}
@media all and (min-width: 768px) {
  .XD-font__body-2,
.body-2,
.is-style-body-2,
p,
ul {
    font-size: 1.125rem;
  }
}

.XD-font__body-3,
.has-small-font-size,
.body-3,
.is-style-body-3 {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.7;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.9375rem;
}
@media all and (min-width: 768px) {
  .XD-font__body-3,
.has-small-font-size,
.body-3,
.is-style-body-3 {
    font-size: 1rem;
  }
}

em {
  color: inherit !important;
}

/**
* HEADINGS
*
* All heading classes.
*/
.XD-font__display-1 {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1em;
  font-style: normal;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
@media all and (min-width: 768px) {
  .XD-font__display-1 {
    font-size: 5rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
  }
}

.XD-font__display-2 {
  font-family: "Inter", sans-serif;
  font-size: 2.625rem;
  font-weight: 300;
  line-height: 1.1em;
  font-style: normal;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
@media all and (min-width: 768px) {
  .XD-font__display-2 {
    font-size: 4.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}

h1,
.h1,
h2,
.h2 {
  font-family: "Inter", sans-serif !important;
  font-size: 2.1875rem;
  font-weight: 300;
  line-height: 1.2em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  h1,
.h1,
h2,
.h2 {
    font-size: 2.9375rem;
    margin-bottom: 1.3125rem;
  }
}

h3,
.h3 {
  font-family: "Inter", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  h3,
.h3 {
    font-size: 2.5rem;
    margin-bottom: 1.3125rem;
  }
}

.XD-container__inner > h2:first-child,
.XD-container__inner > h3:first-child,
.XD-container__inner > h4:first-child,
.XD-container__inner > h5:first-child,
.XD-cta-layout__inner h2:first-child,
.XD-cta-layout__inner h3:first-child,
.XD-cta-layout__inner h4:first-child,
.XD-cta-layout__inner h5:first-child {
  margin-top: 0;
}

h4,
.h4 {
  font-family: "Inter", sans-serif !important;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  h4,
.h4 {
    font-size: 1.5rem;
    margin-bottom: 1.3125rem;
  }
}

h5,
.h5 {
  font-family: "Inter", sans-serif !important;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  h5,
.h5 {
    font-size: 1.375rem;
    margin-bottom: 1.3125rem;
  }
}

h6,
.h6 {
  font-family: "Inter", sans-serif !important;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  h6,
.h6 {
    font-size: 1.25rem;
    margin-bottom: 1.3125rem;
  }
}

.title, .pagination .nav-links > *,
.XD-font__title-lg,
.is-style-title-lg {
  font-family: "Inter", sans-serif !important;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1.3125rem;
  letter-spacing: 0.1666666667em;
  text-transform: uppercase;
}
@media all and (min-width: 768px) {
  .title, .pagination .nav-links > *,
.XD-font__title-lg,
.is-style-title-lg {
    font-size: 0.875rem;
    line-height: 1.6071428571em;
  }
}
.title:not(:first-child), .pagination .nav-links > :not(:first-child),
.XD-font__title-lg:not(:first-child),
.is-style-title-lg:not(:first-child) {
  margin-top: 0.5rem;
}
@media all and (min-width: 768px) {
  .title:not(:first-child), .pagination .nav-links > :not(:first-child),
.XD-font__title-lg:not(:first-child),
.is-style-title-lg:not(:first-child) {
    margin-top: 2rem;
  }
}

.D1 {
  font-family: "Inter", sans-serif !important;
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 3.125rem;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0rem;
  letter-spacing: 0.1666666667em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media all and (min-width: 768px) {
  .D1 {
    font-size: 5rem;
    line-height: 5rem;
  }
}
@media all and (min-width: 768px) {
  .D1:not(:first-child) {
    font-size: 5rem;
    line-height: 5rem;
  }
}

.D2 {
  font-family: "Inter", sans-serif !important;
  font-size: 2.625rem;
  font-weight: 300;
  line-height: 2.625rem;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0rem;
  letter-spacing: 0.1666666667em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media all and (min-width: 768px) {
  .D2:not(:first-child) {
    font-size: 4.375rem;
    line-height: 4.375rem;
  }
}

.XD-font__title-sm,
.is-style-title-sm {
  font-family: "Inter", sans-serif !important;
  font-size: 0.625rem;
  font-weight: bold;
  line-height: 1.5em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 1.3125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.XD-font__title-sm:not(:first-child),
.is-style-title-sm:not(:first-child) {
  margin-top: 0.5rem;
}
@media all and (min-width: 768px) {
  .XD-font__title-sm:not(:first-child),
.is-style-title-sm:not(:first-child) {
    margin-top: 2rem;
  }
}

p:not(.is-style-title-lg, .is-style-title-sm) + h1,
p:not(.is-style-title-lg, .is-style-title-sm) + h2,
p:not(.is-style-title-lg, .is-style-title-sm) + h3,
p:not(.is-style-title-lg, .is-style-title-sm) + h4,
p:not(.is-style-title-lg, .is-style-title-sm) + h5 {
  margin-top: 2rem;
}

/*  https://google-webfonts-helper.herokuapp.com/fonts/open-sans?subsets=latin   */
/* open-sans-300 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans Light"), local("OpenSans-Light"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-regular.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-regular.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-regular.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-regular.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-regular.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-regular.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* open-sans-300italic - latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300italic.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans Light Italic"), local("OpenSans-LightItalic"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300italic.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300italic.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300italic.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300italic.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-300italic.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* open-sans-italic - latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-italic.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-italic.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-italic.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-italic.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-italic.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-italic.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* open-sans-600 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* open-sans-600italic - latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600italic.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans SemiBold Italic"), local("OpenSans-SemiBoldItalic"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600italic.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600italic.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600italic.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600italic.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-600italic.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* open-sans-700 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* open-sans-700italic - latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700italic.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700italic.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700italic.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700italic.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700italic.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-700italic.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* open-sans-800 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans ExtraBold"), local("OpenSans-ExtraBold"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
/* open-sans-800italic - latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800italic.eot);
  /* IE9 Compat Modes */
  src: local("Open Sans ExtraBold Italic"), local("OpenSans-ExtraBoldItalic"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800italic.eot?#iefix) format("embedded-opentype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800italic.woff2) format("woff2"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800italic.woff) format("woff"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800italic.ttf) format("truetype"), url(../fonts/open-sans-v18-latin/open-sans-v18-latin-800italic.svg#OpenSans) format("svg");
  /* Legacy iOS */
  font-display: swap;
}
a {
  text-decoration: none;
  color: #364058;
  -webkit-transition: all ease-out 300ms;
  -o-transition: all ease-out 300ms;
  transition: all ease-out 300ms;
}
a:hover, a:active {
  color: #466EB5;
}

p a {
  text-decoration: underline;
  color: #466EB5;
}

/*!
 * Bootstrap Grid v4.5.2 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container,
.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .block-two-column.is-style-right .XD-card-left, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9, .block-two-column.is-style-right .XD-card-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

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

.offset-2, .block-two-column.is-style-right .XD-card-right, .block-two-column.is-style-right .XD-card-left {
  margin-left: 16.6666666667%;
}

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3, .block-two-column.is-style-right .XD-card-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1, .block-two-column.is-style-right .XD-card-right {
    margin-left: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.XD-py--sm,
.XD-pt--sm {
  padding-top: 1.75rem;
}
@media all and (min-width: 768px) {
  .XD-py--sm,
.XD-pt--sm {
    padding-top: 3.25rem;
  }
}

.XD-py--sm,
.XD-pb--sm {
  padding-bottom: 1.75rem;
}
@media all and (min-width: 768px) {
  .XD-py--sm,
.XD-pb--sm {
    padding-bottom: 3.25rem;
  }
}

.XD-py--lg,
.XD-pt--lg {
  padding-top: 2.5rem;
}
@media all and (min-width: 768px) {
  .XD-py--lg,
.XD-pt--lg {
    padding-top: 6.5rem;
  }
}

.XD-py--lg,
.XD-pb--lg {
  padding-bottom: 2.5rem;
}
@media all and (min-width: 768px) {
  .XD-py--lg,
.XD-pb--lg {
    padding-bottom: 6.5rem;
  }
}

.XD-py--xl,
.XD-pt--xl {
  padding-top: 2.5rem;
}
@media all and (min-width: 768px) {
  .XD-py--xl,
.XD-pt--xl {
    padding-top: 5.125rem;
  }
}
@media all and (min-width: 992px) {
  .XD-py--xl,
.XD-pt--xl {
    padding-top: 8.625rem;
  }
}

.XD-py--xl,
.XD-pb--xl {
  padding-bottom: 2.5rem;
}
@media all and (min-width: 768px) {
  .XD-py--xl,
.XD-pb--xl {
    padding-bottom: 5.125rem;
  }
}
@media all and (min-width: 992px) {
  .XD-py--xl,
.XD-pb--xl {
    padding-bottom: 8.625rem;
  }
}

.XD-my--sm,
.XD-mt--sm {
  margin-top: 1.75rem;
}
@media all and (min-width: 768px) {
  .XD-my--sm,
.XD-mt--sm {
    margin-top: 3.25rem;
  }
}

.XD-my--sm,
.XD-mb--sm {
  margin-bottom: 1.75rem;
}
@media all and (min-width: 768px) {
  .XD-my--sm,
.XD-mb--sm {
    margin-bottom: 3.25rem;
  }
}

.XD-my--lg,
.XD-mt--lg {
  margin-top: 2.5rem;
}
@media all and (min-width: 768px) {
  .XD-my--lg,
.XD-mt--lg {
    margin-top: 6.5rem;
  }
}

.XD-my--lg,
.XD-mb--lg {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 768px) {
  .XD-my--lg,
.XD-mb--lg {
    margin-bottom: 6.5rem;
  }
}

.XD-my--xl,
.XD-mt--xl {
  margin-top: 2.5rem;
}
@media all and (min-width: 768px) {
  .XD-my--xl,
.XD-mt--xl {
    margin-top: 5.125rem;
  }
}
@media all and (min-width: 992px) {
  .XD-my--xl,
.XD-mt--xl {
    margin-top: 8.625rem;
  }
}

.XD-my--xl,
.XD-mb--xl {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 768px) {
  .XD-my--xl,
.XD-mb--xl {
    margin-bottom: 5.125rem;
  }
}
@media all and (min-width: 992px) {
  .XD-my--xl,
.XD-mb--xl {
    margin-bottom: 8.625rem;
  }
}

.container {
  padding-left: 10px;
  padding-right: 10px;
}
@media all and (min-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container-fluid .row,
.container .row {
  height: 100%;
  margin-left: -5px;
  margin-right: -5px;
}
@media all and (min-width: 768px) {
  .container-fluid .row,
.container .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}

[class*=col-] {
  padding-left: 5px;
  padding-right: 5px;
}
@media all and (min-width: 768px) {
  [class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.row.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.row.no-gutters > .col,
.row.no-gutters > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.gutter-right {
  margin-right: 10px;
}
@media all and (min-width: 768px) {
  .gutter-right {
    margin-right: 20px;
  }
}

.gutter-1 {
  margin-left: 10px !important;
}
@media all and (min-width: 768px) {
  .gutter-1 {
    margin-left: 20px !important;
  }
}

.container-fluid {
  padding: 0px;
  overflow: hidden;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.XD-hover {
  opacity: 1;
  -webkit-transition: opacity;
  -o-transition: opacity;
  transition: opacity;
  -webkit-transition-duration: 200ms;
       -o-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.XD-hover:hover {
  opacity: 0.75;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/**
 * ANIMATION - FLIP
  */
.m-flip {
  overflow: hidden;
  cursor: pointer;
}

.m-flip_item {
  display: block;
  position: relative;
  top: 0;
  -webkit-transition: top 0.2s ease-out 0s;
  -o-transition: top 0.2s ease-out 0s;
  transition: top 0.2s ease-out 0s;
}
.m-flip_item:nth-child(2) {
  color: #666;
}

.inline-animation {
  display: inline-block;
}

.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header-wrapper .h2 {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.XD-background-image {
  position: absolute;
  height: 100%;
  min-height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.XD-background-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .XD-background-image img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    position: unset;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
  }
}
.XD-background-image img.lazyload,
.XD-background-image img.lazyloading {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  opacity: 0.8;
  margin: -5px;
  padding: 5px;
}
.XD-background-image img.lazyloaded {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
  -webkit-transition: -webkit-filter opacity 1s;
  transition: -webkit-filter opacity 1s;
  -o-transition: filter opacity 1s;
  transition: filter opacity 1s;
  transition: filter opacity 1s, -webkit-filter opacity 1s;
}

.XD-image img.lazyload, .XD-image--cover img.lazyload,
.XD-image img.lazyloading,
.XD-image--cover img.lazyloading {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  opacity: 0.8;
  margin: -5px;
  padding: 5px;
}
.XD-image img.lazyloaded, .XD-image--cover img.lazyloaded {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
  -webkit-transition: -webkit-filter opacity 1s;
  transition: -webkit-filter opacity 1s;
  -o-transition: filter opacity 1s;
  transition: filter opacity 1s;
  transition: filter opacity 1s, -webkit-filter opacity 1s;
}

.XD-image--cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: auto;
}

.XD-icon {
  pointer-events: none;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

[class^=XD-w] {
  display: inline-block;
}

@media all and (max-width: 767px) {
  .XD-w20 {
    width: 20%;
  }
}

@media all and (max-width: 767px) {
  .XD-w20--sm {
    width: 20%;
  }
}

@media all and (min-width: 768px) {
  .XD-w20--md {
    width: 20%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w20--lg {
    width: 20%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w20--xl {
    width: 20%;
  }
}

.XD-w25 {
  width: 25%;
}

@media all and (max-width: 767px) {
  .XD-w25--sm {
    width: 25%;
  }
}

@media all and (min-width: 768px) {
  .XD-w25--md {
    width: 25%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w25--lg {
    width: 25%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w25--xl {
    width: 25%;
  }
}

@media all and (max-width: 767px) {
  .XD-w33 {
    width: 33.333%;
  }
}

.XD-w33--sm {
  width: 33.333%;
}

@media all and (min-width: 768px) {
  .XD-w33--md {
    width: 33.333%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w33--lg {
    width: 33.333%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w33--xl {
    width: 33.333%;
  }
}

@media all and (max-width: 767px) {
  .XD-w40 {
    width: 40%;
  }
}

@media all and (max-width: 767px) {
  .XD-w40--sm {
    width: 40%;
  }
}

@media all and (min-width: 768px) {
  .XD-w40--md {
    width: 40%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w40--lg {
    width: 40%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w40--xl {
    width: 40%;
  }
}

@media all and (max-width: 767px) {
  .XD-w50 {
    width: 50%;
  }
}

@media all and (max-width: 767px) {
  .XD-w50--sm {
    width: 50%;
  }
}

@media all and (min-width: 768px) {
  .XD-w50--md {
    width: 50%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w50--lg {
    width: 50%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w50--xl {
    width: 50%;
  }
}

@media all and (max-width: 767px) {
  .XD-w60 {
    width: 60%;
  }
}

@media all and (max-width: 767px) {
  .XD-w60--sm {
    width: 60%;
  }
}

@media all and (min-width: 768px) {
  .XD-w60--md {
    width: 60%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w60--lg {
    width: 60%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w60--xl {
    width: 60%;
  }
}

@media all and (max-width: 767px) {
  .XD-w66 {
    width: 66.666%;
  }
}

@media all and (max-width: 767px) {
  .XD-w66--sm {
    width: 66.666%;
  }
}

@media all and (min-width: 768px) {
  .XD-w66--md {
    width: 66.666%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w66--lg {
    width: 66.666%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w66--xl {
    width: 66.666%;
  }
}

@media all and (max-width: 767px) {
  .XD-w75 {
    width: 75%;
  }
}

@media all and (max-width: 767px) {
  .XD-w75--sm {
    width: 75%;
  }
}

@media all and (min-width: 768px) {
  .XD-w75--md {
    width: 75%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w75--lg {
    width: 75%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w75--xl {
    width: 75%;
  }
}

@media all and (max-width: 767px) {
  .XD-w80 {
    width: 80%;
  }
}

@media all and (max-width: 767px) {
  .XD-w80--sm {
    width: 80%;
  }
}

@media all and (min-width: 768px) {
  .XD-w80--md {
    width: 80%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w80--lg {
    width: 80%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w80--xlx {
    width: 80%;
  }
}

@media all and (max-width: 767px) {
  .XD-w100 {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .XD-w100--sm {
    width: 100%;
  }
}

@media all and (min-width: 768px) {
  .XD-w100--md {
    width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .XD-w100--lg {
    width: 100%;
  }
}

@media all and (min-width: 1800px) {
  .XD-w100--xl {
    width: 100%;
  }
}

.uk-slidenav {
  border-radius: 20px;
  position: relative;
  -webkit-transition: all 150ms ease-out;
  -o-transition: all 150ms ease-out;
  transition: all 150ms ease-out;
}
@media all and (min-width: 768px) {
  .uk-slidenav {
    width: 50px;
    height: 50px;
  }
}
.uk-slidenav svg {
  display: none;
}
.uk-slidenav svg.XD-icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.uk-slidenav:hover {
  opacity: 0.7;
}

[class*=uk-position-center] {
  top: calc(50% - 10px);
  width: 50px;
  height: 50px;
}
[class*=uk-position-center] .XD-icon {
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
[class*=uk-position-center].uk-position-center-left .XD-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.uk-dotnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 0;
  margin: 0;
}

*:focus {
  outline-style: none;
  outline: none;
}

.XD-leap-menu *:focus {
  outline-style: none;
  outline: none;
}

.error-404-page,
.thank-you-page,
.search-page {
  padding-top: 6.5rem;
}
@media all and (min-width: 768px) {
  .error-404-page,
.thank-you-page,
.search-page {
    padding-top: 5.125rem;
  }
}
.error-404-page .page-icon,
.thank-you-page .page-icon,
.search-page .page-icon {
  margin-top: 2rem;
}

.error-404-page,
.thank-you-page {
  text-align: center;
}

.admin-bar .uk-offcanvas,
.admin-bar .uk-modal,
.admin-bar .uk-sticky {
  top: 32px !important;
}
.admin-bar .uk-offcanvas,
.admin-bar .uk-modal {
  height: calc(100vh - 32px) !important;
}

.menu-open body {
  overflow: hidden !important;
}

figure {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body:before {
  content: "";
  position: fixed;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  height: 100%;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media all and (min-width: 768px) {
  body:before {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

body {
  margin: 0;
  min-height: 100vh;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --carfra-padding: 64px;
  --carfra-padding-header: 64px;
  --carfra-padding-side: 8.3333333333vw;
  --XD-gutter-width:10px;
}
@media all and (min-width: 768px) {
  :root {
    --carfra-padding: 138px;
    --carfra-padding-header: 138px;
    --carfra-padding-side: calc(((100% + 20px) / 12) + 20px);
    --XD-gutter-width:20px;
  }
}

#page {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #EAF0F8;
}

img {
  max-width: 100%;
  height: auto;
}

.XD-popup {
  margin-top: 80px;
}
@media all and (min-width: 768px) {
  .XD-popup {
    margin-top: 35px;
  }
}
.alert-bar .XD-popup {
  margin-top: 125px;
}
@media all and (min-width: 768px) {
  .alert-bar .XD-popup {
    margin-top: 75px;
  }
}

/**
* THEME
*
* All variable definitions used across the theme should be defined here.
*/
main input[type=button],
main input[type=reset],
main input[type=submit],
footer button,
footer input[type=button],
footer input[type=reset],
footer input[type=submit],
.wp-block-button > .wp-block-button__link,
.XD-btn,
.gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit] {
  border-width: 2px;
  border-style: solid;
  border-radius: 0px;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.1428571429em;
  margin-left: 0;
  margin-right: 0.5rem;
  margin-top: 1.875rem;
  min-width: 20ch;
  padding: 0.75rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
  -o-transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
  transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}
@media all and (min-width: 768px) {
  main input[type=button],
main input[type=reset],
main input[type=submit],
footer button,
footer input[type=button],
footer input[type=reset],
footer input[type=submit],
.wp-block-button > .wp-block-button__link,
.XD-btn,
.gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit] {
    padding: 0.75rem 1rem;
    margin-top: 2.625rem;
  }
}
.wp-block-buttons main input[type=button],
.wp-block-buttons main input[type=reset],
.wp-block-buttons main input[type=submit],
.wp-block-buttons footer button,
.wp-block-buttons footer input[type=button],
.wp-block-buttons footer input[type=reset],
.wp-block-buttons footer input[type=submit],
.wp-block-buttons .wp-block-button > .wp-block-button__link,
.wp-block-buttons .XD-btn,
.wp-block-buttons .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit],
.gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .wp-block-buttons input[type=submit] {
  margin-top: 0;
}

main button,
main input[type=button],
main input[type=reset],
main input[type=submit],
footer button,
footer input[type=button],
footer input[type=reset],
footer input[type=submit],
.wp-block-button .wp-block-button__link,
.XD-btn--primary {
  background-color: #466EB5;
  border-color: #466EB5;
  color: #ffffff;
}
main button:visited,
main input[type=button]:visited,
main input[type=reset]:visited,
main input[type=submit]:visited,
footer button:visited,
footer input[type=button]:visited,
footer input[type=reset]:visited,
footer input[type=submit]:visited,
.wp-block-button .wp-block-button__link:visited,
.XD-btn--primary:visited {
  color: #ffffff;
}
main button:hover, main button:active, main button:focus,
main input[type=button]:hover,
main input[type=button]:active,
main input[type=button]:focus,
main input[type=reset]:hover,
main input[type=reset]:active,
main input[type=reset]:focus,
main input[type=submit]:hover,
main input[type=submit]:active,
main input[type=submit]:focus,
footer button:hover,
footer button:active,
footer button:focus,
footer input[type=button]:hover,
footer input[type=button]:active,
footer input[type=button]:focus,
footer input[type=reset]:hover,
footer input[type=reset]:active,
footer input[type=reset]:focus,
footer input[type=submit]:hover,
footer input[type=submit]:active,
footer input[type=submit]:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:active,
.wp-block-button .wp-block-button__link:focus,
.XD-btn--primary:hover,
.XD-btn--primary:active,
.XD-btn--primary:focus {
  border-color: #3792FA;
  background-color: #3792FA;
  text-decoration: none;
  color: #ffffff;
}
main button:focus,
main input[type=button]:focus,
main input[type=reset]:focus,
main input[type=submit]:focus,
footer button:focus,
footer input[type=button]:focus,
footer input[type=reset]:focus,
footer input[type=submit]:focus,
.wp-block-button .wp-block-button__link:focus,
.XD-btn--primary:focus {
  -webkit-box-shadow: inset 0px 0px 0px 2px #3792FA, inset 0px 0px 0px 4px #DBE9F9;
          box-shadow: inset 0px 0px 0px 2px #3792FA, inset 0px 0px 0px 4px #DBE9F9;
}
main button:disabled,
main input[type=button]:disabled,
main input[type=reset]:disabled,
main input[type=submit]:disabled,
footer button:disabled,
footer input[type=button]:disabled,
footer input[type=reset]:disabled,
footer input[type=submit]:disabled,
.wp-block-button .wp-block-button__link:disabled,
.XD-btn--primary:disabled {
  border-color: #e6e6e6;
  background-color: #e6e6e6;
  color: #333333;
}

.wp-block-button.is-style-ghost > .wp-block-button__link,
.XD-btn--ghost {
  border-color: #466EB5;
  background-color: transparent;
  color: #466EB5;
}
.wp-block-button.is-style-ghost > .wp-block-button__link:visited,
.XD-btn--ghost:visited {
  color: #466EB5;
}
.wp-block-button.is-style-ghost > .wp-block-button__link:hover, .wp-block-button.is-style-ghost > .wp-block-button__link:active, .wp-block-button.is-style-ghost > .wp-block-button__link:focus,
.XD-btn--ghost:hover,
.XD-btn--ghost:active,
.XD-btn--ghost:focus {
  border-color: #466EB5;
  background-color: #466EB5;
  color: #ffffff;
}
.wp-block-button.is-style-ghost > .wp-block-button__link:focus,
.XD-btn--ghost:focus {
  -webkit-box-shadow: inset 0px 0px 0px 2px #466EB5, inset 0px 0px 0px 4px #DBE9F9;
          box-shadow: inset 0px 0px 0px 2px #466EB5, inset 0px 0px 0px 4px #DBE9F9;
}
.wp-block-button.is-style-ghost > .wp-block-button__link:disabled,
.XD-btn--ghost:disabled {
  border-color: #333333;
  background-color: #333333;
  color: #e6e6e6;
}

.wp-block-button.is-style-inverse > .wp-block-button__link,
.XD-btn--inverse {
  border-color: #FFFFFF;
  background-color: #ffffff;
  color: #466EB5;
}
.wp-block-button.is-style-inverse > .wp-block-button__link:hover, .wp-block-button.is-style-inverse > .wp-block-button__link:active, .wp-block-button.is-style-inverse > .wp-block-button__link:focus,
.XD-btn--inverse:hover,
.XD-btn--inverse:active,
.XD-btn--inverse:focus {
  border-color: #466EB5;
  background-color: #466EB5;
  color: #FFFFFF;
}
.wp-block-button.is-style-inverse > .wp-block-button__link:focus,
.XD-btn--inverse:focus {
  -webkit-box-shadow: inset 0px 0px 0px 2px #FFFFFF, inset 0px 0px 0px 4px #DBE9F9;
          box-shadow: inset 0px 0px 0px 2px #FFFFFF, inset 0px 0px 0px 4px #DBE9F9;
}
.wp-block-button.is-style-inverse > .wp-block-button__link:disabled,
.XD-btn--inverse:disabled {
  border-color: #333333;
  background-color: #333333;
  color: #e6e6e6;
}

.wp-block-button.is-style-text-button > .wp-block-button__link,
.uk-button.uk-button-text,
.XD-btn--text {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.45;
  text-transform: uppercase;
  color: #466EB5;
  text-align: left;
  margin-left: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 0;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 2px;
  margin-bottom: 9px;
}
.wp-block-button.is-style-text-button > .wp-block-button__link:hover,
.uk-button.uk-button-text:hover,
.XD-btn--text:hover {
  background: none;
  text-decoration: none;
  color: #FFFFFF;
}
@media all and (min-width: 768px) {
  .wp-block-button.is-style-text-button > .wp-block-button__link,
.uk-button.uk-button-text,
.XD-btn--text {
    line-height: 23px;
    letter-spacing: 2.57px;
  }
}
.wp-block-button.is-style-text-button > .wp-block-button__link:after,
.uk-button.uk-button-text:after,
.XD-btn--text:after {
  content: "";
  border-bottom: 2px solid transparent;
  height: 2px;
  width: 100%;
  display: block;
}
.wp-block-button.is-style-text-button > .wp-block-button__link:hover::after,
.uk-button.uk-button-text:hover::after,
.XD-btn--text:hover::after {
  border-bottom: 2px solid #FFFFFF;
}

.wp-block-button.is-style-download-button > .wp-block-button__link,
.XD-btn--download {
  display: inline-block;
  text-align: left;
  margin-left: 0;
  padding: 0;
  background: none;
  border: none;
  padding-left: 1.7rem;
  position: relative;
  text-transform: none;
  font-size: 1rem;
  line-height: 1.7em;
  letter-spacing: 0.12em;
}
.wp-block-button.is-style-download-button > .wp-block-button__link, .wp-block-button.is-style-download-button > .wp-block-button__link:visited,
.XD-btn--download,
.XD-btn--download:visited {
  color: #FFFFFF;
}
.wp-block-button.is-style-download-button > .wp-block-button__link:hover, .wp-block-button.is-style-download-button > .wp-block-button__link:active,
.XD-btn--download:hover,
.XD-btn--download:active {
  background: none;
  text-decoration: none;
  color: #FFFFFF;
  position: relative;
}
.wp-block-button.is-style-download-button > .wp-block-button__link::before,
.XD-btn--download::before {
  content: "";
  left: 0;
  top: 2px;
  position: absolute;
  width: 1.5rem;
  height: 1.3rem;
  background-image: url("data:image/svg+xml;utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2223px%22%20viewBox%3D%220%200%2020%2023%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22UI-Icon%2Fdownload%2F%24ui-05-Copy%22%3E%3Cpath%20d%3D%22M7.85714%200L6.42857%200L6.42857%2015.8724L0.966961%2010.0661L0%2010.9871L7.14512%2018.5831L14.2857%2010.9829L13.3182%2010.0625L7.85714%2015.8751L7.85714%200Z%22%20transform%3D%22translate%282.142857%200%29%22%20id%3D%22arrow%22%20fill%3D%22%23292929%22%20fill-rule%3D%22evenodd%22%20stroke%3D%22none%22%20%2F%3E%3Cpath%20d%3D%22M17.2449%202.875L17.2449%200L18.5714%200L18.5714%203.3135Q18.5714%203.41189%2018.5522%203.50839Q18.533%203.6049%2018.4954%203.6958Q18.4577%203.7867%2018.4031%203.86851Q18.3484%203.95032%2018.2788%204.0199Q18.2093%204.08947%2018.1274%204.14414Q18.0456%204.1988%2017.9547%204.23645Q17.8638%204.27411%2017.7673%204.2933Q17.6708%204.3125%2017.5724%204.3125L0.999%204.3125Q0.900607%204.3125%200.804105%204.2933Q0.707602%204.27411%200.616699%204.23645Q0.525796%204.1988%200.443985%204.14414Q0.362175%204.08947%200.2926%204.0199Q0.223026%203.95032%200.168362%203.86851Q0.113698%203.7867%200.0760443%203.6958Q0.038391%203.6049%200.0191955%203.50839Q0%203.41189%200%203.3135L0%200L1.32653%200L1.32653%202.875L17.2449%202.875Z%22%20transform%3D%22translate%280%2018.6875%29%22%20id%3D%22bottom%22%20fill%3D%22%23292929%22%20stroke%3D%22none%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

p + .wp-block-button > .wp-block-button__link,
p + .wp-block-button.is-style-square > .wp-block-button__link,
p + .XD-btn,
.gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer p + input[type=submit],
p + .XD-btn--text {
  margin-top: 1.25rem;
}
@media all and (min-width: 768px) {
  p + .wp-block-button > .wp-block-button__link,
p + .wp-block-button.is-style-square > .wp-block-button__link,
p + .XD-btn,
.gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer p + input[type=submit],
p + .XD-btn--text {
    margin-top: 1.5rem;
  }
}

#search_modal {
  min-height: 100%;
  min-height: 100vh;
  overflow-y: scroll;
}
#search_modal .uk-modal-dialog {
  background-color: #ffffff;
  min-height: 100%;
}
#search_modal .XD-modal-menu__header {
  justify-self: flex-start;
}
#search_modal .uk-modal-body .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#search_modal .uk-modal-body .row {
  width: 100%;
}
#search_modal .uk-modal-body form {
  margin-top: 30vh;
}
#search_modal [class*=uk-modal-close-] {
  position: inherit;
  background: none;
}
#search_modal .uk-navbar-container {
  background: none;
}

[class*=uk-modal-close-] {
  background: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
[class*=uk-modal-close-]:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.search-form {
  position: relative;
}

.XD-search__input {
  background: none;
  border: none;
  border-bottom: thin solid black;
  padding: 0.5rem 1rem;
  padding-right: 5rem;
  font-size: 1.25rem;
  width: 100%;
  font-weight: 300;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
@media all and (min-width: 768px) {
  .XD-search__input {
    padding: 0.5rem 1rem;
    padding-right: 5rem;
    font-size: 2rem;
  }
}
.XD-search__input:focus {
  outline: none;
}

.XD-search__submit {
  position: absolute;
  right: 0;
  z-index: 2;
  overflow: hidden;
  width: 32px;
  height: 36px;
  bottom: 0;
}
.XD-search__submit input {
  position: relative;
  right: 1000px;
}

.search-content {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
@media all and (min-width: 768px) {
  .search-content {
    margin-top: 3rem;
    margin-bottom: 4rem;
  }
}

.search-results .search-card {
  margin-bottom: 2rem;
}
.search-results .search-result {
  margin-bottom: 1rem;
  margin-right: 1rem;
}
.search-results .entry-summary h2 {
  margin-top: 0;
}
.search-results .entry-summary .thumbnail {
  position: relative;
  padding-bottom: 100%;
  display: none;
}
@media all and (min-width: 992px) {
  .search-results .entry-summary .thumbnail {
    display: block;
  }
}
.search-results .entry-summary .thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
}

.gform_wrapper {
  margin-top: 0 !important;
}
.gform_wrapper .gform_fields input:not([type=radio]):not(:not[type=checkbox]),
.gform_wrapper .gform_fields button,
.gform_wrapper .gform_fields textarea,
.gform_wrapper .gform_fields select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
       appearance: none !important;
}
.gform_wrapper .gform_fields input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.gform_wrapper .gform_fields select {
  border: 1px solid #9E9E9E;
  min-height: 48px;
  width: 100%;
}
.gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.gform_wrapper .gform_fields .gfield_label {
  font-weight: 600 !important;
}
.gform_wrapper input:not([type=submit]),
.gform_wrapper textarea {
  background: #ffffff;
  font-size: 1rem !important;
  line-height: 1rem !important;
  font-family: "Inter", sans-serif;
}
.gform_wrapper input[type=submit] {
  margin-top: 0;
}
.gform_wrapper textarea {
  border: 1px solid #9E9E9E;
}
.gform_wrapper select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  font-size: 1rem !important;
  line-height: 1rem !important;
}
.gform_wrapper select option {
  padding: 0 !important;
}
.gform_wrapper .ginput_container_select {
  position: relative;
}
.gform_wrapper .ginput_container_select .XD-icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  pointer-events: none;
}

.XD-newsletter .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  font-size: inherit;
  font-family: inherit;
  padding: 5px 4px;
  letter-spacing: normal;
}
.XD-newsletter .gform_wrapper.gform_wrapper input[type=text] {
  margin: auto;
  display: block;
  padding: 0.6rem 1rem !important;
}
@media (min-width: 641px) {
  .XD-newsletter .gform_wrapper.gform_wrapper input[type=text] {
    max-width: 220px;
    margin-left: 0;
  }
}
.contact-form__wrapper {
  margin: auto;
  width: 83.33%;
}
.contact-form__wrapper .title, .contact-form__wrapper .pagination .nav-links > *, .pagination .contact-form__wrapper .nav-links > * {
  margin-top: 2rem;
}
@media all and (min-width: 992px) {
  .contact-form__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 66.66%;
  }
}
.contact-form__wrapper .body-2 {
  font-weight: 300;
}

@media all and (min-width: 992px) {
  .contact-form__form {
    margin-top: 2rem;
    width: 62.5%;
  }
}

.contact-form__contact-details {
  margin-bottom: 2rem;
}
@media all and (min-width: 768px) {
  .contact-form__contact-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (min-width: 992px) {
  .contact-form__contact-details {
    display: block;
    width: 33%;
  }
}

@media all and (min-width: 768px) {
  .contact-form__contact-column {
    width: 50%;
  }
}
@media all and (min-width: 992px) {
  .contact-form__contact-column {
    width: 100%;
  }
}

.contact-form__directions .XD-btn, .contact-form__directions .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit], .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .contact-form__directions input[type=submit] {
  margin: 0;
  line-height: 1.1em;
}

.contact-form__social-links {
  margin-top: 2.5rem;
}
.contact-form__social-links span {
  display: block;
}
.contact-form__social-links a {
  color: #466eb5;
  text-decoration: none;
}
.contact-form__social-links a:not(:first-child) {
  margin-left: 0.5rem;
}
.contact-form__social-links a:hover {
  opacity: 0.9;
}
.contact-form__social-links a:active {
  opacity: 0.75;
}

.XD-sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1009;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box: 1;
  -moz-box: 1;
  -ms-flex: 1 0 auto 0 auto;
  -webkit-box-flex: 1;
          flex: 1 0 auto 0 auto;
}
.XD-sticky-buttons a.XD-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  margin: 0;
  border: none;
  border-radius: 0;
}
.XD-sticky-buttons a.XD-btn:last-child {
  background-color: #f2f2f2;
}
.XD-sticky-buttons a.XD-btn:last-child:hover {
  background-color: #d9d9d9;
}
.XD-sticky-buttons a.XD-btn:last-child:active {
  background-color: #bfbfbf;
}
@media all and (min-width: 768px) {
  .XD-sticky-buttons {
    display: none;
  }
}

/* stripped back uk-nav / uk-navbar - imported from UIkit */
.uk-nav,
.uk-nav ul {
  margin: 0;
}

.uk-nav li > a {
  display: block;
}

.uk-nav li > a:focus {
  outline: none;
}

.uk-nav > li > a {
  padding: 5px 0;
}

ul.uk-nav-sub {
  padding: 5px 0 5px 15px;
}

.uk-nav-sub ul {
  padding-left: 15px;
}

.uk-nav-sub a {
  padding: 2px 0;
}

.uk-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center,
.uk-navbar-center-left > *,
.uk-navbar-center-right > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.uk-navbar-right {
  margin-left: auto;
}

.uk-navbar-center:only-child {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.uk-navbar-center:not(:only-child) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 990;
}

.uk-navbar-center-left,
.uk-navbar-center-right {
  position: absolute;
  top: 0;
}

.uk-navbar-center-left {
  right: 100%;
}

.uk-navbar-center-right {
  left: 100%;
}

[class*=uk-navbar-center-] {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.uk-navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center:only-child {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 65px;
  padding: 0 15px;
}
@media all and (min-width: 768px) {
  .uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
    min-height: 80px;
  }
}

.uk-navbar-dropdown {
  display: none;
  position: absolute;
  z-index: 1020;
  padding: 25px;
  background: #ffffff;
}
.uk-sticky-fixed .uk-navbar-dropdown {
  border: 1px solid #cccccc;
}

.uk-navbar-dropdown.uk-open {
  display: block;
}

/*********************************************************/
.XD-navbar {
  height: 80px;
  position: relative;
  z-index: 1011;
  background-color: #EAF0F8;
}
.XD-navbar .uk-sticky {
  height: 100%;
}
.XD-navbar .uk-sticky-fixed {
  height: unset;
}
.modal-open .XD-navbar {
  background-color: transparent;
}
@media all and (min-width: 768px) {
  .XD-navbar {
    height: 120px;
  }
}
@media all and (min-width: 1800px) {
  .XD-navbar .XD-btn, .XD-navbar .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit], .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .XD-navbar input[type=submit] {
    font-size: 14px;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
}
.XD-navbar ul {
  list-style: none;
  padding: 0;
}

.gallery-open .uk-sticky, .team-member-open .uk-sticky, .video-open .uk-sticky {
  top: 0;
  position: fixed !important;
  width: 100% !important;
  -webkit-animation-duration: initial !important;
          animation-duration: initial !important;
}
@media all and (max-width: 576px) {
  .search-open .uk-sticky {
    top: 0;
    position: fixed !important;
    width: 100% !important;
  }
}

.uk-logo,
.custom-logo-alt {
  padding-left: 20px;
}
.uk-logo img,
.custom-logo-alt img {
  max-height: 40px;
  height: 40px;
  width: auto;
}
@media all and (min-width: 768px) {
  .uk-logo img,
.custom-logo-alt img {
    max-height: 50px;
    height: 50px;
  }
}

.custom-logo-alt {
  display: none;
}

@media all and (min-width: 768px) {
  .menu-open.modal-open .has-alt-logo .custom-logo-link {
    display: none;
  }
  .menu-open.modal-open .has-alt-logo .custom-logo-alt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media all and (min-width: 768px) {
  .modal-open .uk-sticky-fixed .has-alt-logo .custom-logo-link {
    display: none;
  }
  .modal-open .uk-sticky-fixed .has-alt-logo .custom-logo-alt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.error404 .has-alt-logo .custom-logo-link,
.search-results .has-alt-logo .custom-logo-link,
.page-id-565 .has-alt-logo .custom-logo-link,
.single-post .has-alt-logo .custom-logo-link,
.uk-sticky-fixed .has-alt-logo .custom-logo-link,
.search-no-results .has-alt-logo .custom-logo-link,
.search-open .has-alt-logo .custom-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.error404 .has-alt-logo .custom-logo-alt,
.search-results .has-alt-logo .custom-logo-alt,
.page-id-565 .has-alt-logo .custom-logo-alt,
.single-post .has-alt-logo .custom-logo-alt,
.uk-sticky-fixed .has-alt-logo .custom-logo-alt,
.search-no-results .has-alt-logo .custom-logo-alt,
.search-open .has-alt-logo .custom-logo-alt {
  display: none;
}

.XD-nav {
  background-color: transparent;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-duration: 300ms;
       -o-transition-duration: 300ms;
          transition-duration: 300ms;
  color: #364058;
}
.XD-nav li.menu-item a {
  font-size: 14px;
}
.XD-nav li.menu-item a svg {
  display: block;
  width: 0.9rem;
  margin-top: 0.2rem;
  margin-left: 0.25rem;
}
.error404 .XD-nav, .search-results .XD-nav, .page-id-565 .XD-nav, .single-post .XD-nav, .uk-sticky-fixed .XD-nav {
  background: #FFFFFF;
}
.modal-open .XD-nav {
  background: transparent;
}
.XD-nav__primary-menu a, .XD-nav__menu-buttons a {
  color: #466EB5;
}
.modal-open .XD-nav__primary-menu a, .error404 .XD-nav__primary-menu a, .search .XD-nav__primary-menu a, .page-id-565 .XD-nav__primary-menu a, .single-post .XD-nav__primary-menu a, .uk-sticky-fixed .XD-nav__primary-menu a, .modal-open .XD-nav__menu-buttons a, .error404 .XD-nav__menu-buttons a, .search .XD-nav__menu-buttons a, .page-id-565 .XD-nav__menu-buttons a, .single-post .XD-nav__menu-buttons a, .uk-sticky-fixed .XD-nav__menu-buttons a {
  color: #364058;
}
.team-member-open .XD-nav__primary-menu a, .gallery-open .XD-nav__primary-menu a, .video-open .XD-nav__primary-menu a, .team-member-open .XD-nav__menu-buttons a, .gallery-open .XD-nav__menu-buttons a, .video-open .XD-nav__menu-buttons a {
  color: #FFFFFF;
}
.XD-nav .uk-nav a {
  color: #364058;
}
.XD-nav__primary-menu {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: none;
}
.modal-open .XD-nav__primary-menu {
  display: none;
}
@media all and (min-width: 992px) {
  .XD-nav__primary-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.XD-nav__primary-menu--align-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.XD-nav__primary-menu--align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.XD-nav__primary-menu--align-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.XD-nav__nav-buttons, .modal-open .XD-nav__nav-buttons, .XD-nav__nav-buttons .XD-btn + .XD-btn, .XD-nav__nav-buttons .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit] + .XD-btn, .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .XD-nav__nav-buttons input[type=submit] + .XD-btn, .XD-nav__nav-buttons .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .XD-btn + input[type=submit], .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .XD-nav__nav-buttons .XD-btn + input[type=submit], .XD-nav__nav-buttons .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit] + input[type=submit], .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .XD-nav__nav-buttons input[type=submit] + input[type=submit] {
  display: none;
}
@media all and (min-width: 768px) {
  .XD-nav__nav-buttons {
    display: inline-block;
  }
}
@media all and (min-width: 1200px) {
  .XD-nav__nav-buttons .XD-btn + .XD-btn, .XD-nav__nav-buttons .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit] + .XD-btn, .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .XD-nav__nav-buttons input[type=submit] + .XD-btn, .XD-nav__nav-buttons .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .XD-btn + input[type=submit], .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .XD-nav__nav-buttons .XD-btn + input[type=submit], .XD-nav__nav-buttons .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit] + input[type=submit], .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .XD-nav__nav-buttons input[type=submit] + input[type=submit] {
    display: inline-block;
  }
}
.XD-nav__nav-buttons a {
  margin-right: 0.5rem;
  margin-top: 0;
}
.XD-nav__menu-buttons {
  padding-right: 20px;
}
.XD-nav__menu-buttons, .XD-nav__menu-buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.XD-nav__menu-buttons a {
  margin-left: 1rem;
}
.modal-open .XD-nav__menu-buttons a.XD-nav__menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (min-width: 992px) {
  .XD-nav__menu-buttons a.XD-nav__menu-toggle {
    display: none;
  }
  .XD-nav__menu-buttons a.XD-nav__menu-toggle.show-on-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.XD-nav__menu-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1666666667em;
  padding-right: 0.25rem;
}
@media all and (max-width: 576px) {
  .XD-nav__menu-label--open {
    display: none;
  }
}
.modal-open .XD-nav__menu-label__search {
  display: none;
}
.modal-open .XD-nav__menu-label--open {
  display: none;
}
.XD-nav__menu-label--close {
  display: none;
}
.modal-open .XD-nav__menu-label--close {
  display: block;
}
.modal-open .XD-nav__search {
  display: none;
}

.menu__bars {
  width: 32px;
  height: 32px;
  position: relative;
  margin-left: 0.5rem;
  overflow: hidden;
}
.menu__bars span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  right: 0;
  top: 50%;
  margin-left: auto;
  background: currentColor;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transition-property: width, opacity, -webkit-transform;
  transition-property: width, opacity, -webkit-transform;
  -o-transition-property: width, transform, opacity;
  transition-property: width, transform, opacity;
  transition-property: width, transform, opacity, -webkit-transform;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.menu__bars span:nth-child(1) {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}
.menu__bars span:nth-child(2) {
  width: 70%;
  opacity: 1;
}
.menu__bars span:nth-child(3) {
  width: 35%;
  -webkit-transform: translateY(8px);
      -ms-transform: translateY(8px);
          transform: translateY(8px);
}
.XD-nav__menu-toggle:hover .menu__bars span:nth-child(2), .XD-nav__menu-toggle:focus .menu__bars span:nth-child(2), .modal-open .menu__bars span:nth-child(2) {
  width: 100%;
}
.XD-nav__menu-toggle:hover .menu__bars span:nth-child(3), .XD-nav__menu-toggle:focus .menu__bars span:nth-child(3), .modal-open .menu__bars span:nth-child(3) {
  width: 100%;
}
.modal-open .menu__bars span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(0);
      -ms-transform: rotate(45deg) translateY(0);
          transform: rotate(45deg) translateY(0);
}
.modal-open .menu__bars span:nth-child(2) {
  opacity: 0;
}
.modal-open .menu__bars span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(0);
      -ms-transform: rotate(-45deg) translateY(0);
          transform: rotate(-45deg) translateY(0);
}

.hero {
  min-height: 410px;
  margin: 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: calc(8.3333333333% + 10px);
  background-color: #FFFFFF;
}
@media all and (min-width: 768px) {
  .hero {
    margin-left: calc(8.3333333333% + 20px);
  }
}
@media all and (min-width: 768px) {
  .hero {
    min-height: 491px;
    height: 491px;
  }
}
.hero [class^=container] {
  height: 100%;
}
.hero h1,
.hero h2 {
  color: #ffffff;
}
.hero__content {
  height: 100%;
  padding-top: 10.5rem;
  padding-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hero__overlay {
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-full {
  position: relative;
  min-height: 690px;
  height: 88vh;
  margin-left: calc(8.3333% + 10px);
  background-color: #FFFFFF;
}
@media all and (min-width: 768px) {
  .hero-full {
    min-height: 575px;
    margin-left: calc(8.3333% + 20px);
  }
}
.hero-full [class^=container] {
  height: 100%;
}
.hero-full__background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  overflow: hidden;
}
.hero-full__background-video video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  display: none;
}
.hero-full__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 41, 41, 0.5);
  z-index: 3;
}
.hero-full__foreground {
  height: 100%;
  min-height: 100%;
  width: 100%;
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
}
.hero-full__foreground-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.hero-full__foreground-header {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding-top: 6.5rem;
  padding-bottom: 2rem;
  color: #ffffff;
}
.hero-full__foreground-body {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding-top: 2em;
}
.hero-full__foreground-body-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  color: #ffffff;
}
.hero-full__foreground-body-contents h1 {
  color: #ffffff;
}
.hero-full__foreground-body-contents p {
  font-size: 1.375rem;
  line-height: 1.2em;
  color: #ffffff;
}
@media all and (min-width: 768px) {
  .hero-full__foreground-body-contents p {
    font-size: 1.5rem;
    max-width: 50ch;
  }
}
.hero-full__foreground-body-contents a {
  color: #ffffff;
  font-size: 1.5rem;
}
.hero-full__foreground-body-contents a:hover {
  color: #e6e6e6;
}
.hero-full__foreground-body-contents a:active {
  color: #cccccc;
}
.hero-full__foreground-body-contents a svg {
  width: 35px;
  height: 35px;
}
.hero-full__foreground-footer {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding-top: 2rem;
  padding-bottom: 4.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1875em;
  color: #ffffff;
}
.hero-minimal, .hero-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hero-minimal .hero__content, .hero-blog .hero__content {
  padding-top: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (min-width: 768px) {
  .hero-minimal .hero__content, .hero-blog .hero__content {
    padding-bottom: 3rem;
  }
}

#XD-video-modal {
  padding: 0;
  background-color: black;
}
#XD-video-modal .uk-modal-body {
  background-color: black;
}
#XD-video-modal .uk-modal-body,
#XD-video-modal .XD-modal-video__video-container,
#XD-video-modal iframe {
  height: 100%;
  width: 100%;
}
#XD-video-modal .uk-modal-close-default {
  color: #ffffff !important;
}
#XD-video-modal .uk-modal-close-default:hover {
  color: #e6e6e6 !important;
}
#XD-video-modal .uk-modal-close-default:hover {
  color: #cccccc !important;
}
#XD-video-modal .uk-modal-close-default i {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  font-size: 2rem;
}

.XD-menu {
  background: #FFFFFF;
  color: #364058;
  overflow-x: hidden;
}
.XD-menu ul {
  padding: 0;
  list-style: none;
}
.XD-menu__title {
  margin-top: 0 !important;
  margin-bottom: 2rem;
}
@media all and (min-width: 768px) {
  .XD-menu__title {
    margin-bottom: 2.5rem;
  }
}
.XD-menu__link {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 300;
}
@media all and (min-width: 768px) {
  .XD-menu__link--level-0 {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1440px) {
  .XD-menu__link {
    font-size: 1.5rem;
  }
}
.XD-menu__link--level-2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.XD-menu__link--current {
  font-weight: 400;
}
.XD-menu__link, .XD-menu__link--back {
  color: inherit;
}
.XD-menu__link:hover, .XD-menu__link:active, .XD-menu__link--back:hover, .XD-menu__link--back:active {
  color: #5d6e97;
}
.XD-menu__link:focus, .XD-menu__link--back:focus {
  color: #7a89ad;
}
.XD-menu__link--level-0 .XD-icon, .XD-menu__link--back .XD-icon {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.XD-menu__link--level-0:hover .XD-icon, .XD-menu__link--back:hover .XD-icon {
  -webkit-transform: translateX(-0.5rem);
      -ms-transform: translateX(-0.5rem);
          transform: translateX(-0.5rem);
}
.XD-menu__link--level-0:hover .XD-icon {
  -webkit-transform: translateX(0.5rem);
      -ms-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.XD-menu__link--back {
  margin-bottom: 2rem;
  display: block !important;
}
@media all and (min-width: 768px) {
  .XD-menu__link--back {
    margin-bottom: 2.5rem;
  }
}
.XD-menu__link--back .XD-icon {
  margin-right: 0.5rem;
  margin-top: -2px;
  width: 0.7rem;
  height: 1rem;
}
.XD-menu__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: inherit;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  padding-top: 4rem;
}
@media all and (min-width: 768px) {
  .XD-menu__container {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    width: 420px;
  }
}
@media all and (min-width: 1200px) {
  .XD-menu--no-image .XD-menu__container {
    padding-top: 5rem;
  }
}
@media all and (min-width: 1440px) {
  .XD-menu--no-image .XD-menu__container {
    padding-top: 6rem;
  }
}
.XD-menu--modal .XD-menu__container {
  max-height: calc(100% - 5rem);
  margin-top: 5rem;
  padding-bottom: 6rem;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-y pinch-zoom;
      touch-action: pan-y pinch-zoom;
}
@media all and (min-width: 1200px) {
  .XD-menu--modal .XD-menu__container {
    will-change: scroll-position;
  }
}
.XD-menu__body, .XD-menu__footer {
  padding-left: 8.33%;
  padding-right: 8.33%;
}
.XD-menu--has-image .XD-menu__body, .XD-menu--sidebar .XD-menu__body, .XD-menu--has-image .XD-menu__footer, .XD-menu--sidebar .XD-menu__footer {
  padding-left: 2.6rem;
  padding-right: 2.6rem;
}
.XD-menu__footer {
  color: #466EB5;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media all and (min-width: 768px) {
  .XD-menu__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.XD-menu--has-image .XD-menu__footer, .XD-menu--sidebar .XD-menu__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.XD-menu--sidebar .XD-menu__footer {
  padding-bottom: 6rem;
}
.XD-menu__footer-phone, .XD-menu__footer-address {
  margin-top: 1rem;
}
@media all and (min-width: 768px) {
  .XD-menu__footer-address {
    margin-top: 0;
  }
}
.XD-menu__footer-button + * {
  margin-top: 2rem;
}
.XD-menu__footer-social {
  margin-top: 2rem;
}
.XD-menu__footer-social a:not(:first-child) {
  margin-left: 1rem;
}
.XD-menu__footer-phone a, .XD-menu__footer-address a, .XD-menu__footer-social a {
  color: inherit;
}
.XD-menu__footer-phone a:hover, .XD-menu__footer-phone a:active, .XD-menu__footer-address a:hover, .XD-menu__footer-address a:active, .XD-menu__footer-social a:hover, .XD-menu__footer-social a:active {
  color: #5d6e97;
}
.XD-menu__footer-phone a:focus, .XD-menu__footer-address a:focus, .XD-menu__footer-social a:focus {
  color: #7a89ad;
}
.XD-menu__footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.XD-menu__footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.XD-menu--modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 100%;
  -ms-touch-action: none;
      touch-action: none;
}
.XD-menu--sidebar {
  top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  width: 100%;
  right: 0 !important;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.XD-menu__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  height: 100%;
}
.XD-menu__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.XD-menu__nav a,
.XD-menu__nav span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
.XD-menu__nav a.slide-left,
.XD-menu__nav span.slide-left {
  -webkit-transform: translate(-80px);
      -ms-transform: translate(-80px);
          transform: translate(-80px);
  opacity: 0;
}
.XD-menu__nav a.slide-right,
.XD-menu__nav span.slide-right {
  -webkit-transform: translate(80px);
      -ms-transform: translate(80px);
          transform: translate(80px);
  opacity: 0;
}
.XD-menu svg {
  pointer-events: none;
}

#main-menu {
  z-index: 1010;
}
#main-menu .menu-wrapper {
  position: absolute;
  width: 100%;
  background: #FFFFFF;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
@media all and (min-width: 576px) {
  #main-menu .menu-wrapper {
    width: 420px;
  }
}
#main-menu .uk-modal-dialog {
  height: 100%;
  overflow: hidden;
}
#main-menu.uk-open .menu-wrapper {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.XD-alert {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 1024;
  font-size: 0.875rem;
  padding: 0;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.XD-alert p,
.XD-alert p:last-of-type {
  margin: 0;
  margin-bottom: 0 !important;
  font-size: 0.875rem;
  text-align: center;
}
.XD-alert .uk-alert-close {
  color: #466EB5;
  top: 15px;
  right: 10px;
  opacity: 1;
}
@media all and (min-width: 768px) {
  .XD-alert .uk-alert-close {
    right: 15px;
  }
}
.XD-alert .uk-alert-close:hover, .XD-alert .uk-alert-close:active, .XD-alert .uk-alert-close:focus {
  color: #2a416b;
}
.XD-alert .uk-alert-close svg {
  display: none;
}
.XD-alert .uk-alert-close svg.XD-icon {
  display: block;
  height: 15px;
  width: 15px;
}
.XD-alert .alert-content {
  padding: 0 30px;
  width: 100%;
}
@media all and (min-width: 768px) {
  .XD-alert .alert-content {
    padding: 0 35px;
  }
}

.filter--categories {
  padding: 1.5rem 0;
}
@media all and (min-width: 768px) {
  .filter--categories {
    padding: 40px 0 30px;
  }
}
@media all and (min-width: 1200px) {
  .filter--categories {
    padding: 60px 0 50px;
  }
}
.filter--categories .filter__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.filter--categories .filter__options li {
  padding: 0 0.75rem;
}
.filter--categories .filter__options li a {
  color: #466EB5;
}
.filter--categories .filter__options li a.active {
  font-weight: 700;
}
.filter--categories .XD-btn, .filter--categories .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit], .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .filter--categories input[type=submit] {
  margin-top: 0;
}

.blog__posts .container-fluid {
  padding: 0;
}
@media all and (min-width: 768px) {
  .blog__posts .container-fluid {
    padding: 10px;
  }
}

.archive-title {
  text-align: center;
  padding-top: 1.5rem;
}

.pagination {
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}
.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .nav-links > * {
  padding: 0.25rem;
  margin: 0 0.25rem;
  color: #466EB5;
  margin-top: 0 !important;
}
.pagination .nav-links .current {
  border-bottom: 2px solid #466EB5;
}
.blog-card {
  padding: 0 10px 1.25rem !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 3rem;
}
.blog-card .recent__post-card {
  width: 100%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.blog-card a {
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.blog-card a:hover {
  text-decoration: none;
}
.blog-card a:hover .XD-btn--text {
  color: #3792FA;
}
.blog-card a:hover .XD-btn--text::after {
  border-color: #3792FA;
}
.blog-card .post__image {
  position: relative;
  padding-bottom: 77%;
  height: 0;
}
.blog-card .post__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.blog-card .post__image::after {
  content: "";
  padding-bottom: 100%;
  display: block;
}
.blog-card .post__body {
  color: #364058;
  border-top: 1px solid #364058;
  padding-top: 2rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blog-card .post__body .post__body-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blog-card .post__body .title, .blog-card .post__body .pagination .nav-links > *, .pagination .blog-card .post__body .nav-links > * {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem !important;
}
@media all and (min-width: 768px) {
  .blog-card .post__body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-top: none;
    border-left: 1px solid #364058;
  }
}
.blog-card .post__body h3, .blog-card .post__body h4, .blog-card .post__body h5, .blog-card .post__body h6 {
  margin-top: 0;
  margin-bottom: 0.75rem !important;
}
.blog-card .post__body .btn-wrapper {
  display: block;
  margin-top: auto;
}
.blog-card .post__body .btn-wrapper .XD-btn--text {
  margin-bottom: 0;
}

.archive .site-content,
.blog .site-content {
  background-color: #F2F2F2;
}

.single-post .post-thumbnail img {
  width: 100%;
}
@media all and (min-width: 992px) {
  .single-post .entry-header {
    text-align: center;
  }
}
.single-post .entry-header a {
  color: #466EB5;
}
.single-post .entry-footer {
  text-align: center;
  padding: 1.25rem 0;
}
.single-post .entry-footer a {
  color: #466EB5;
}

form.category-select .select-container,
form.category-select input {
  display: inline-block;
  margin-top: 0;
  margin-right: 1rem;
}
form.category-select input {
  margin-top: 0;
}
form.category-select .select-container {
  position: relative;
}
form.category-select .select-container select {
  font-size: 1rem;
  color: #292929;
  line-height: 24px;
  padding: 0.75rem 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 300px;
  min-width: 200px;
}
form.category-select .select-container .XD-icon {
  position: absolute;
  width: 15px;
  right: 16px;
  bottom: 10px;
  z-index: 2;
}

.wp-block-embed-vimeo {
  height: 100%;
}
.wp-block-embed-vimeo .wp-block-embed__wrapper {
  height: 100%;
  width: 100%;
}
.wp-block-embed-vimeo iframe {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.XD-footer .XD-icon {
  width: 24px;
  height: 24px;
}
@media all and (min-width: 768px) {
  .XD-footer .XD-icon {
    width: 26px;
    height: 29px;
  }
}
.XD-footer a {
  color: #EAF0F8;
}
.XD-footer a:visited {
  color: #EAF0F8;
}
.XD-footer a:active, .XD-footer a:hover {
  color: #c4d5eb;
}
.XD-footer .XD-footer-menu__title {
  color: #EAF0F8;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media all and (min-width: 768px) {
  .XD-footer .XD-footer-menu__title {
    margin-bottom: 1rem;
  }
}
.XD-footer p,
.XD-footer ul,
.XD-footer li {
  font-size: 16px;
}
.XD-footer ul {
  list-style-type: none;
  margin-bottom: 0;
}
.XD-footer li {
  margin-bottom: 0.25rem;
}
.XD-footer p:last-of-type {
  margin-bottom: 0.5rem !important;
}

.XD-footer__footer-menu ul, .XD-footer__footer-menu--right ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 768px) {
  .XD-footer__footer-menu ul, .XD-footer__footer-menu--right ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .XD-footer__footer-menu ul > li, .XD-footer__footer-menu--right ul > li {
    padding: 0 0.5rem;
    position: relative;
  }
  .XD-footer__footer-menu ul > li:before, .XD-footer__footer-menu--right ul > li:before {
    position: absolute;
    content: "|";
    display: inline-block;
    left: -4px;
    top: 0;
  }
  .XD-footer__footer-menu ul > li:first-child:before, .XD-footer__footer-menu--right ul > li:first-child:before {
    display: none;
  }
}
.XD-footer__footer-menu li, .XD-footer__footer-menu--right li {
  margin-bottom: 0.25rem;
}
@media all and (min-width: 768px) {
  .XD-footer__footer-menu li, .XD-footer__footer-menu--right li {
    margin-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  .XD-footer__footer-menu--right {
    float: right;
  }
}

.XD-footer--top {
  background-color: #466EB5;
  line-height: 1.5em;
  padding-top: 2.0625rem;
  padding-bottom: 2.0625rem;
  text-align: center;
  color: #FFFFFF;
}
@media all and (min-width: 768px) {
  .XD-footer--top {
    padding: 3.5rem 0;
    padding-bottom: 0.5em;
    text-align: left;
  }
}
.XD-footer--top .menu {
  text-align: center;
  list-style-type: none;
  padding-left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (min-width: 768px) {
  .XD-footer--top .menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
}
.XD-footer--top .menu li {
  margin-bottom: 0.25rem;
}
@media all and (min-width: 768px) {
  .XD-footer--top .menu li {
    margin-bottom: 0.75rem;
  }
}
.XD-footer--top .XD-footer__copyright,
.XD-footer--top .XD-footer__footer-menu,
.XD-footer--top .XD-footer__footer-menu--right {
  text-align: center;
  margin-bottom: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
}
@media all and (min-width: 768px) {
  .XD-footer--top .XD-footer__copyright,
.XD-footer--top .XD-footer__footer-menu,
.XD-footer--top .XD-footer__footer-menu--right {
    display: inline-block;
    text-align: left;
    margin-bottom: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.XD-footer--top .XD-footer__primary-widget-area {
  text-align: center;
}
@media all and (min-width: 768px) {
  .XD-footer--top .XD-footer__primary-widget-area {
    text-align: left;
  }
}
.XD-footer--top .XD-footer__primary-widget-area .XD-footer__tagline {
  text-align: center;
  margin-bottom: 1.5rem !important;
  font-size: 14px;
}
@media all and (min-width: 768px) {
  .XD-footer--top .XD-footer__primary-widget-area .XD-footer__tagline {
    text-align: left;
    max-width: 80%;
  }
}
.XD-footer--top .XD-footer__primary-widget-area .XD-footer__logo {
  margin-bottom: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 768px) {
  .XD-footer--top .XD-footer__primary-widget-area .XD-footer__logo {
    text-align: left;
    width: 80%;
    max-width: 250px;
    margin-bottom: 1.5rem;
    margin-left: unset;
  }
}
@media all and (min-width: 992px) {
  .XD-footer--top .XD-footer__primary-widget-area .XD-footer__logo {
    text-align: left;
    max-width: 300px;
    margin-bottom: 1.5rem;
    margin-left: unset;
  }
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  .XD-footer--top .XD-footer__primary-widget-area-inner {
    display: inline-block;
    width: 33%;
    max-width: 33%;
    margin: auto;
  }
}
.XD-footer--top .XD-footer__social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (min-width: 768px) {
  .XD-footer--top .XD-footer__social-icons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.XD-footer--top .XD-footer__social-icons a {
  margin-right: 0.75rem;
  color: #EAF0F8;
}
.XD-footer--top .XD-footer__social-icons a:last-of-type {
  margin-right: 0;
}
@media all and (min-width: 768px) {
  .XD-footer--top .XD-footer__social-icons a {
    margin-right: 1.5rem;
  }
}

.XD-footer--bottom {
  background-color: #466EB5;
  color: #ffffff;
  padding: 1rem 0;
}
.XD-footer--bottom a {
  color: #ffffff;
}
.XD-footer--bottom a:visited {
  color: #ffffff !important;
}
.XD-footer--bottom a:hover, .XD-footer--bottom a:focus {
  color: #3792FA;
}
.XD-footer--bottom .XD-footer__copyright,
.XD-footer--bottom .XD-footer__footer-menu,
.XD-footer--bottom .XD-footer__footer-menu--right {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 14px;
}
.XD-footer--bottom .XD-footer__copyright a,
.XD-footer--bottom .XD-footer__footer-menu a,
.XD-footer--bottom .XD-footer__footer-menu--right a {
  font-size: 14px;
}
@media all and (min-width: 768px) {
  .XD-footer--bottom .XD-footer__copyright,
.XD-footer--bottom .XD-footer__footer-menu,
.XD-footer--bottom .XD-footer__footer-menu--right {
    display: inline-block;
    text-align: left;
    margin-bottom: 0;
  }
  .XD-footer--bottom .XD-footer__copyright a,
.XD-footer--bottom .XD-footer__footer-menu a,
.XD-footer--bottom .XD-footer__footer-menu--right a {
    padding: 0 0.5rem;
  }
}

.XD-footer-menu--wrap {
  display: block;
}
.XD-footer-menu--wrap.address {
  display: none;
}
@media all and (min-width: 768px) {
  .XD-footer-menu--wrap.address {
    display: block;
  }
}

.sticky-buttons .XD-footer__footer-menu--right {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 768px) {
  .sticky-buttons .XD-footer__footer-menu--right {
    margin-bottom: 0;
  }
}
.sticky-buttons .footer-mobile {
  text-align: center;
}
.sticky-buttons .footer-mobile a {
  margin-bottom: 0.9375em;
}

.XD-background-picture {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.XD-background-picture picture {
  top: 0;
  height: 100%;
  height: 100vh;
  width: 100%;
}
.XD-background-picture picture img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  height: 100%;
  width: 100%;
}
.XD-background-picture--fixed {
  overflow: hidden;
  z-index: -1;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.XD-background-picture--fixed picture {
  position: fixed;
  z-index: 1;
}
.XD-background-picture--contain picture img {
  -o-object-fit: contain;
     object-fit: contain;
}
.XD-background-picture--overlay::after {
  height: 100%;
  width: 100%;
  background-color: rgba(41, 41, 41, 0.5);
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media all and (max-width: 575px) {
  .xd-components__carousel-lightbox a[class*=uk-position-] {
    display: none;
  }
  .xd-components__carousel-lightbox .uk-slider-container {
    margin-left: -30px;
    margin-right: -30px;
  }
  .xd-components__carousel-lightbox .XD-modal-slider__caption {
    -webkit-transform: translateY(120%);
        -ms-transform: translateY(120%);
            transform: translateY(120%);
  }
}
.xd-components__carousel-lightbox .uk-modal-body {
  background: none;
  width: 95vw;
}
.xd-components__carousel-lightbox .uk-modal-body,
.xd-components__carousel-lightbox .uk-slider,
.xd-components__carousel-lightbox .uk-position-relative,
.xd-components__carousel-lightbox .uk-slider-container,
.xd-components__carousel-lightbox .uk-slider-items,
.xd-components__carousel-lightbox li {
  height: 100%;
}
.xd-components__carousel-lightbox li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 2rem;
}
.xd-components__carousel-lightbox picture {
  max-height: 100%;
}
.xd-components__carousel-lightbox .uk-slider-items img {
  height: auto;
  width: auto;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
}
.xd-components__carousel-lightbox .uk-slider-items img.lazyloaded {
  -webkit-filter: none;
          filter: none;
  -webkit-transition: -webkit-filter 1s;
  transition: -webkit-filter 1s;
  -o-transition: filter 1s;
  transition: filter 1s;
  transition: filter 1s, -webkit-filter 1s;
}
.xd-components__carousel-lightbox .uk-dotnav a {
  border-color: white;
}
.xd-components__carousel-lightbox .uk-dotnav li.uk-active a {
  background-color: white;
}
.xd-components__carousel-lightbox .caption {
  color: #fff;
  font-size: 14px;
  margin-top: 1rem;
}

.uk-accordion {
  padding: 0;
  list-style: none;
}

.uk-accordion-title {
  display: block;
  overflow: hidden;
}
.uk-accordion-title svg {
  width: 1rem;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  margin-left: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.uk-accordion > .uk-open .uk-accordion-title svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.uk-accordion-title:hover,
.uk-accordion-title:focus {
  text-decoration: none;
  outline: none;
}

.uk-accordion-content {
  display: flow-root;
}

.wp-block-xd-accordionelement {
  border-top: thin solid #cccccc;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0;
}
@media all and (min-width: 768px) {
  .wp-block-xd-accordionelement {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.wp-block-xd-accordionelement:last-child {
  border-bottom: thin solid #cccccc;
}
.wp-block-xd-accordionelement p:last-child {
  margin-bottom: 0 !important;
}

.wp-block-xd-accordion .uk-accordion-title {
  font-size: 1rem;
  line-height: 1.7em;
  font-weight: normal;
  color: #364058;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wp-block-xd-accordion .uk-accordion-title:hover, .wp-block-xd-accordion .uk-accordion-title:active, .wp-block-xd-accordion .uk-accordion-title:focus {
  color: #5d6e97;
}
@media all and (min-width: 768px) {
  .wp-block-xd-accordion .uk-accordion-title {
    font-size: 1.125rem;
  }
}
.wp-block-xd-accordion .uk-accordion-content {
  margin-top: 10px;
  padding-right: 20px;
}
.wp-block-xd-accordion .uk-accordion > :nth-child(n+2) {
  margin-top: 0;
}

.wp-block-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 1.875rem;
}
@media all and (min-width: 768px) {
  .wp-block-buttons {
    margin-top: 2.625rem;
  }
}
.wp-block-buttons.is-style-stacked-vertically {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wp-block-buttons.alignleft {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wp-block-buttons.alignright {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.wp-block-buttons + p,
.wp-block-buttons + h1,
.wp-block-buttons + h2,
.wp-block-buttons + h3,
.wp-block-buttons + h4,
.wp-block-buttons + h5,
.wp-block-buttons + h6 {
  margin-top: 2.5rem;
}

@media all and (min-width: 768px) {
  .wp-block-xd-card {
    padding: 2rem;
  }
}

.wp-block-xd-standardcarousel {
  margin-top: 1.25rem;
}
.wp-block-xd-standardcarousel ul.uk-slider-items {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.wp-block-xd-standardcarousel ul.uk-slider-items li {
  height: calc(100vw - 20px);
}
@media all and (min-width: 768px) {
  .wp-block-xd-standardcarousel ul.uk-slider-items li.col-md-6 {
    height: calc((100vw - 50px) / 2);
  }
}
@media all and (min-width: 992px) {
  .wp-block-xd-standardcarousel ul.uk-slider-items li.col-lg-4 {
    height: calc((100vw - 60px) / 3);
  }
}
@media all and (min-width: 1200px) {
  .wp-block-xd-standardcarousel ul.uk-slider-items li.col-xl-3 {
    height: calc((100vw - 85px) / 4);
  }
}
.wp-block-xd-standardcarousel ul.uk-slider-items li a {
  width: 100%;
  height: 100%;
}
.wp-block-xd-standardcarousel li {
  overflow: hidden;
}
.wp-block-xd-standardcarousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.wp-block-xd-standardcarousel img.lazyload,
.wp-block-xd-standardcarousel img.lazyloading {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  opacity: 0.8;
}
.wp-block-xd-standardcarousel img.lazyloaded {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
  -webkit-transition: -webkit-filter opacity 1s;
  transition: -webkit-filter opacity 1s;
  -o-transition: filter opacity 1s;
  transition: filter opacity 1s;
  transition: filter opacity 1s, -webkit-filter opacity 1s;
}

.wp-block-xd-cta .XD-cta-layout__inner {
  margin-top: 130px;
  margin-bottom: 130px;
  text-align: left;
  z-index: 2;
}
.wp-block-xd-cta .XD-cta-layout__inner h2,
.wp-block-xd-cta .XD-cta-layout__inner h3,
.wp-block-xd-cta .XD-cta-layout__inner h4,
.wp-block-xd-cta .XD-cta-layout__inner h5,
.wp-block-xd-cta .XD-cta-layout__inner h6,
.wp-block-xd-cta .XD-cta-layout__inner p {
  color: #EAF0F8;
}
.wp-block-xd-cta.is-style-dark {
  background-color: #466EB5;
}
.wp-block-xd-cta.is-style-dark .XD-cta-layout__inner h2,
.wp-block-xd-cta.is-style-dark .XD-cta-layout__inner h3,
.wp-block-xd-cta.is-style-dark .XD-cta-layout__inner h4,
.wp-block-xd-cta.is-style-dark .XD-cta-layout__inner h5,
.wp-block-xd-cta.is-style-dark .XD-cta-layout__inner h6,
.wp-block-xd-cta.is-style-dark .XD-cta-layout__inner p {
  color: white;
}
.wp-block-xd-cta .XD-cta__content-inner > div {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media all and (min-width: 768px) {
  .wp-block-xd-cta .XD-cta__content-inner > div {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }
}

.carfra-bg, .is-style-left .carfra-bg, .carfra-bg__left {
  background-color: #FFFFFF;
  position: absolute;
  width: calc(100% - 8.3333333333% - 10px);
  height: 100%;
  z-index: 0;
}
@media all and (min-width: 768px) {
  .carfra-bg, .is-style-left .carfra-bg, .carfra-bg__left {
    width: calc(100% - 8.3333333333% - 20px);
  }
}
.is-style-left .carfra-bg, .is-style-left .carfra-bg__left, .carfra-bg__left {
  margin-left: calc(8.3333333333% + 10px);
}
@media all and (min-width: 768px) {
  .is-style-left .carfra-bg, .is-style-left .carfra-bg__left, .carfra-bg__left {
    margin-left: calc(8.3333333333% + 20px);
  }
}
.is-style-none .carfra-bg, .is-style-none .carfra-bg__left, .carfra-bg.no-bg-color, .no-bg-color.carfra-bg__left {
  background-color: unset;
}

@media all and (min-width: 992px) {
  .XD-featured-pages .container {
    max-width: calc(100% - 120px);
  }
}
.XD-featured-pages .XD-featured-pages__heading {
  text-align: center;
}
.XD-featured-pages h5 {
  margin-top: 0;
}
.XD-featured-pages .XD-featured-pages__card {
  display: grid;
  margin-bottom: 10px;
  color: inherit;
}
@media all and (min-width: 768px) {
  .XD-featured-pages .XD-featured-pages__card {
    margin-bottom: 20px;
  }
}
.XD-featured-pages .XD-featured-pages__card:hover {
  text-decoration: none;
}
.XD-featured-pages .XD-featured-pages__card:hover img {
  opacity: 0.7;
}
.XD-featured-pages .XD-featured-pages__card:hover .XD-btn--text {
  color: #FFFFFF;
  margin-bottom: 0;
}
.XD-featured-pages .XD-featured-pages__card:hover .XD-btn--text::after {
  border-bottom: 2px solid #FFFFFF;
}
.XD-featured-pages .XD-featured-page {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 4px 15px 2px #cacaca;
          box-shadow: 0 4px 15px 2px #cacaca;
  color: #FFFFFF;
  height: 100%;
  max-height: 100%;
}
@media all and (min-width: 768px) {
  .XD-featured-pages .XD-featured-page {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.XD-featured-pages .XD-featured-page__thumb {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  max-width: 48%;
}
.XD-featured-pages .XD-featured-page__thumb::before {
  content: "";
  display: block;
  background: grey;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  -webkit-transition: opacity 350ms;
  -o-transition: opacity 350ms;
  transition: opacity 350ms;
  margin: 0;
}
.XD-featured-pages .XD-featured-page__thumb::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
@media all and (min-width: 768px) {
  .XD-featured-pages .XD-featured-page__thumb {
    width: 100%;
    height: 110%;
    max-width: 100%;
  }
  .XD-featured-pages .XD-featured-page__thumb::after {
    padding-bottom: 110%;
  }
}
.XD-featured-pages .XD-featured-page__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.XD-featured-pages .XD-featured-page__body {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.XD-featured-pages .XD-featured-page__body p {
  display: none;
}
@media all and (min-width: 768px) {
  .XD-featured-pages .XD-featured-page__body p {
    display: block;
    margin-bottom: 2rem;
  }
}
.XD-featured-pages .XD-featured-page__body .XD-btn--text {
  margin-top: auto;
  margin-bottom: 0;
}
.XD-featured-pages .uk-slider-container .row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.XD-featured-pages .uk-slider-container .XD-featured-pages__card {
  height: 100%;
}
.XD-featured-pages .uk-slider-container .XD-featured-pages__card .XD-featured-page {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #cecece;
}
.XD-featured-pages .uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
  opacity: 0;
}
.XD-featured-pages .uk-slidenav {
  display: none;
  -webkit-transition: opacity 300ms ease-in-out;
  -o-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}
@media all and (min-width: 768px) {
  .XD-featured-pages .uk-slidenav {
    display: block;
    opacity: 1;
    height: 54px;
    width: 54px;
  }
}
.XD-featured-pages .uk-position-small {
  display: none;
}
@media all and (min-width: 768px) {
  .XD-featured-pages .uk-position-small {
    display: block;
  }
}

.wp-block-xd-four-column .XD-four-column__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media all and (min-width: 768px) {
  .wp-block-xd-four-column .XD-four-column__content {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media all and (min-width: 768px) {
  .wp-block-xd-four-column .XD-four-column__content > div {
    width: 50%;
  }
}
@media all and (min-width: 992px) {
  .wp-block-xd-four-column .XD-four-column__content > div {
    width: 25%;
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  .wp-block-xd-four-column .XD-four-column__content .XD-card + .XD-card {
    margin-top: 2rem;
  }
}

.instagram-feed .logo {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  color: #fff;
}
.instagram-feed .logo svg {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 30px;
}
@media all and (min-width: 768px) {
  .instagram-feed .logo svg {
    width: 50px;
  }
}
.instagram-feed .logo:hover svg {
  opacity: 1;
}

.sbi_item:nth-child(2), .sbi_item:nth-child(3), .sbi_item:nth-child(4) {
  display: none;
}
@media all and (min-width: 576px) {
  .sbi_item:nth-child(2) {
    display: block;
  }
}
@media all and (min-width: 992px) {
  .sbi_item:nth-child(3), .sbi_item:nth-child(4) {
    display: block;
  }
}

.sb_instagram_feed .sbi_photo {
  width: 100vw;
  height: 100vw;
  display: block;
  position: relative;
}
@media all and (min-width: 768px) {
  .sb_instagram_feed .sbi_photo {
    width: 50vw;
    height: 50vw;
  }
}
@media all and (min-width: 992px) {
  .sb_instagram_feed .sbi_photo {
    height: 25vw;
    width: 25vw;
  }
}

.sb_instagram_grid .uk-grid {
  padding: 10px !important;
  width: 100%;
}
.sb_instagram_grid .uk-grid,
.sb_instagram_grid .uk-grid > * {
  margin: 0;
  padding: 0;
}
.sb_instagram_grid .uk-grid li {
  margin: 5px;
  width: calc(100% - 10px);
}
@media all and (min-width: 576px) {
  .sb_instagram_grid .uk-grid li {
    width: calc(50% - 10px);
  }
}
@media all and (min-width: 992px) {
  .sb_instagram_grid .uk-grid li {
    margin: 10px;
    width: calc(25% - 20px);
  }
}
@media all and (min-width: 1200px) {
  .sb_instagram_grid .uk-grid li {
    width: calc(25% - 20px);
  }
}
.sb_instagram_grid .uk-grid .sbi_photo_wrap,
.sb_instagram_grid .uk-grid .sbi_photo {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.sb_instagram_grid .uk-grid .sbi_photo {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 100%;
}
.sb_instagram_grid .uk-grid .sbi_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
}

.ig_handle a {
  text-decoration: none;
  margin: 0;
}
.ig_handle .ig_logo {
  color: #000000;
}
.ig_handle svg {
  display: block;
  margin-right: 1rem;
  width: 25px;
}
@media all and (min-width: 768px) {
  .ig_handle svg {
    width: 35px;
  }
}
.ig_handle h4 {
  margin: 0;
}

.wp-block-xd-latest-posts {
  position: relative;
}
.wp-block-xd-latest-posts h2, .wp-block-xd-latest-posts h3, .wp-block-xd-latest-posts h4, .wp-block-xd-latest-posts p, .wp-block-xd-latest-posts span {
  color: #364058;
}
.wp-block-xd-latest-posts h2 .btn-wrapper, .wp-block-xd-latest-posts h3 .btn-wrapper, .wp-block-xd-latest-posts h4 .btn-wrapper, .wp-block-xd-latest-posts p .btn-wrapper, .wp-block-xd-latest-posts span .btn-wrapper {
  margin-top: auto;
}
.wp-block-xd-latest-posts h2.XD-btn--text, .wp-block-xd-latest-posts h3.XD-btn--text, .wp-block-xd-latest-posts h4.XD-btn--text, .wp-block-xd-latest-posts p.XD-btn--text, .wp-block-xd-latest-posts span.XD-btn--text {
  margin-top: 1rem;
  color: #466EB5;
}
.wp-block-xd-latest-posts .XD-posts__heading h2, .wp-block-xd-latest-posts .XD-posts__heading h3, .wp-block-xd-latest-posts .XD-posts__heading h4 {
  margin-bottom: 2rem;
}
.wp-block-xd-latest-posts .XD-posts__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wp-block-xd-latest-posts.card-4up .XD-card__container:nth-child(2), .wp-block-xd-latest-posts.card-4up .XD-card__container:nth-child(3), .wp-block-xd-latest-posts.card-4up .XD-card__container:nth-child(4) {
  display: none;
}
@media all and (min-width: 768px) {
  .wp-block-xd-latest-posts.card-4up .XD-card__container:nth-child(2) {
    display: block;
  }
}
@media all and (min-width: 992px) {
  .wp-block-xd-latest-posts.card-4up .XD-card__container:nth-child(3), .wp-block-xd-latest-posts.card-4up .XD-card__container:nth-child(4) {
    display: block;
  }
}
.wp-block-xd-latest-posts.card-3up .XD-card__container:nth-child(2), .wp-block-xd-latest-posts.card-3up .XD-card__container:nth-child(3) {
  display: none;
}
@media all and (min-width: 768px) {
  .wp-block-xd-latest-posts.card-3up .XD-card__container:nth-child(2) {
    display: block;
  }
}
@media all and (min-width: 992px) {
  .wp-block-xd-latest-posts.card-3up .XD-card__container:nth-child(3) {
    display: block;
  }
}
.wp-block-xd-latest-posts.card-2up .XD-card__container:nth-child(2) {
  display: none;
}
@media all and (min-width: 992px) {
  .wp-block-xd-latest-posts.card-2up .XD-card__container:nth-child(2) {
    display: block;
  }
}
.wp-block-xd-latest-posts .XD-card__container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
@media all and (min-width: 768px) {
  .wp-block-xd-latest-posts .XD-card__container {
    border-top: unset;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
@media all and (min-width: 992px) {
  .wp-block-xd-latest-posts .XD-card__container {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33.33%;
            flex: 1 1 33.33%;
  }
}
.wp-block-xd-latest-posts .XD-card__container:nth-child(1) {
  padding-left: 0 !important;
}

ul[class*=is-style-standard-list] {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}
ul[class*=is-style-standard-list] strong {
  margin-bottom: 0.25rem;
}
ul[class*=is-style-standard-list] li {
  line-height: 1.7em;
}
ul[class*=is-style-standard-list] li {
  border-top: 1px solid #9E9E9E;
  line-height: 1.3125rem;
  padding-top: 1em;
  padding-bottom: 1em;
}
ul[class*=is-style-standard-list] li:first-child {
  border-top: none;
}
ul[class*=is-style-standard-list] li:last-child {
  border-bottom: 1px solid #9E9E9E;
}
ul[class*=is-style-standard-list] li p {
  margin-bottom: 0;
}
ul[class*=is-style-standard-list] li p.li-heading {
  margin-bottom: 0.25rem;
}
ul[class*=is-style-standard-list] .XD-icon {
  margin-right: 1rem;
  color: #466EB5;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
}

.XD-list__intro {
  text-align: left;
}
.XD-list__3-column .XD-list__intro {
  text-align: center;
}
.XD-list__intro > h2,
.XD-list__intro h3,
.XD-list__intro h4 {
  margin-top: 0;
}
.XD-list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (min-width: 768px) {
  .XD-list__container ul.is-style-standard-list {
    padding-left: 2.5rem;
  }
}
@media all and (min-width: 992px) {
  .XD-list__container ul.is-style-standard-list {
    padding-left: 4rem;
  }
}
@media all and (min-width: 768px) {
  .XD-list__container {
    margin-left: -2.5rem;
  }
}
@media all and (min-width: 992px) {
  .XD-list__container {
    margin-left: -4rem;
  }
}
.XD-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.XD-list__item .XD-icon {
  margin-top: 0.5rem;
}
.XD-list__2-column {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .XD-list__2-column ul {
    width: 50%;
    min-width: 50%;
  }
}
.XD-list__3-column {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .XD-list__3-column ul {
    width: 50%;
    min-width: 50%;
  }
}
@media all and (min-width: 768px) and (max-width: 991px) {
  .XD-list__3-column ul:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .XD-list__3-column ul:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .XD-list__3-column ul:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media all and (min-width: 992px) {
  .XD-list__3-column ul {
    width: 33%;
    min-width: 33%;
  }
}
@media all and (min-width: 1200px) {
  .XD-list__3-column .XD-list__container {
    padding: 0 0.5rem;
  }
}

.XD-map {
  overflow: hidden;
}
@media all and (min-width: 576px) {
  .XD-map {
    height: 600px;
  }
}
.XD-map .map-canvas {
  height: 400px;
}
@media all and (min-width: 576px) {
  .XD-map .map-canvas {
    height: 100%;
  }
}
.XD-map nav {
  display: none;
}
@media all and (min-width: 576px) {
  .XD-map nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.XD-map aside {
  padding: 4rem 6rem;
  -webkit-transition: all 1s cubic-bezier(0, 0.37, 0, 0.99);
  -o-transition: all 1s cubic-bezier(0, 0.37, 0, 0.99);
  transition: all 1s cubic-bezier(0, 0.37, 0, 0.99);
}
@media all and (min-width: 768px) {
  .XD-map aside[class*=-top] {
    top: 45px;
  }
  .XD-map aside[class*=-bottom] {
    bottom: 0;
  }
  .XD-map aside[class*=-left] {
    left: 0;
    -webkit-transform: translateX(calc(-100% + .5rem));
        -ms-transform: translateX(calc(-100% + .5rem));
            transform: translateX(calc(-100% + .5rem));
  }
  .XD-map aside[class*=-right] {
    right: 0;
    -webkit-transform: translateX(calc(100% - .45rem));
        -ms-transform: translateX(calc(100% - .45rem));
            transform: translateX(calc(100% - .45rem));
    margin: 1rem 1rem 8rem 1rem;
  }
  .XD-map aside[class*=-right] nav {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .XD-map aside.open {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .XD-map aside.open nav {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.XD-map.XD-legend__map-list aside {
  height: 100%;
  overflow-y: scroll;
}
.XD-map.XD-legend__map-list ul {
  list-style: none;
  padding: 0;
}

.XD-legend__map-category,
.XD-legend__map-location {
  display: block;
}
.XD-legend__map-category:hover,
.XD-legend__map-location:hover {
  text-decoration: none;
}

.XD-legend__map-category {
  font-size: 1.2rem;
  line-height: 1.5em;
  padding: 0.5rem 0;
}

.XD-legend__map-location {
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0.25rem 0;
}

.wp-block-xdf-standardmediagrid,
.wp-block-xdf-standardmediagrid-8 {
  margin: 10px;
}
@media all and (min-width: 768px) {
  .wp-block-xdf-standardmediagrid,
.wp-block-xdf-standardmediagrid-8 {
    margin: 20px;
  }
}

.xd-component__media-grid {
  background: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 100%;
  grid-gap: 10px;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 50vw;
    grid-gap: 20px;
  }
}
.xd-component__media-grid img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}
.xd-component__media-grid img.lazyloaded {
  -webkit-filter: none;
          filter: none;
  -webkit-transition: -webkit-filter 0.5s;
  transition: -webkit-filter 0.5s;
  -o-transition: filter 0.5s;
  transition: filter 0.5s;
  transition: filter 0.5s, -webkit-filter 0.5s;
}
.xd-component__media-grid [class*=xd-component__media-grid-] {
  position: relative;
  padding-bottom: 100% !important;
  height: 100%;
}
.xd-component__media-grid [class*=xd-component__media-grid-].js-xd-components__media-grid-lightbox-open {
  cursor: pointer;
  position: relative;
}
.xd-component__media-grid [class*=xd-component__media-grid-].js-xd-components__media-grid-lightbox-open::before {
  content: "";
  display: block;
  background: -o-radial-gradient(#fff, #000);
  background: radial-gradient(#fff, #000);
  position: absolute;
  width: calc(100%);
  height: calc(100%);
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 350ms;
  -o-transition: opacity 350ms;
  transition: opacity 350ms;
  margin: 0;
}
.xd-component__media-grid [class*=xd-component__media-grid-].js-xd-components__media-grid-lightbox-open:hover::before {
  opacity: 0.3;
}
.xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-0, .xd-component__media-grid.left .xd-component__media-grid-0 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-0, .xd-component__media-grid.left .xd-component__media-grid-0 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
.xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-1, .xd-component__media-grid.left .xd-component__media-grid-1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 3;
  grid-row-end: 4;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-1, .xd-component__media-grid.left .xd-component__media-grid-1 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-2, .xd-component__media-grid.left .xd-component__media-grid-2 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-2, .xd-component__media-grid.left .xd-component__media-grid-2 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-3, .xd-component__media-grid.left .xd-component__media-grid-3 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 4;
  grid-row-end: 5;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-3, .xd-component__media-grid.left .xd-component__media-grid-3 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-4, .xd-component__media-grid.left .xd-component__media-grid-4 {
  position: relative;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-4, .xd-component__media-grid.left .xd-component__media-grid-4 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.xd-component__media-grid:not(.left):not(.right):not(.center) .xd-component__media-grid-4 .count, .xd-component__media-grid.left .xd-component__media-grid-4 .count {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.xd-component__media-grid.right .xd-component__media-grid-0 {
  position: relative;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 5;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.right .xd-component__media-grid-0 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
.xd-component__media-grid.right .xd-component__media-grid-0 .count {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.xd-component__media-grid.right .xd-component__media-grid-1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.right .xd-component__media-grid-1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.xd-component__media-grid.right .xd-component__media-grid-2 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.right .xd-component__media-grid-2 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.xd-component__media-grid.right .xd-component__media-grid-3 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.right .xd-component__media-grid-3 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.xd-component__media-grid.right .xd-component__media-grid-4 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.right .xd-component__media-grid-4 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.xd-component__media-grid.center .xd-component__media-grid-0 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 4;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.center .xd-component__media-grid-0 {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
.xd-component__media-grid.center .xd-component__media-grid-1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.center .xd-component__media-grid-1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.xd-component__media-grid.center .xd-component__media-grid-2 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.center .xd-component__media-grid-2 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.xd-component__media-grid.center .xd-component__media-grid-3 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 4;
  grid-row-end: 5;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.center .xd-component__media-grid-3 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.xd-component__media-grid.center .xd-component__media-grid-4 {
  position: relative;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
}
@media all and (min-width: 768px) {
  .xd-component__media-grid.center .xd-component__media-grid-4 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.xd-component__media-grid.center .xd-component__media-grid-4 .count {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.xd-components__media-grid-lightbox .uk-modal-body {
  padding: 0;
}
.xd-components__media-grid-lightbox .uk-slider-items {
  max-height: calc(100vh - 120px);
}
.xd-components__media-grid-lightbox .uk-modal-dialog {
  background: none;
}
.xd-components__media-grid-lightbox .uk-dotnav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 12px;
}
.xd-components__media-grid-lightbox img {
  -o-object-fit: contain;
     object-fit: contain;
}

.uk-modal {
  background: rbga(0, 0, 0, 0.8);
}

.wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-0 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}
@media all and (min-width: 768px) {
  .wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-0 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-1 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
@media all and (min-width: 768px) {
  .wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-1 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-2 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
@media all and (min-width: 768px) {
  .wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-2 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-3 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}
@media all and (min-width: 768px) {
  .wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-3 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-4 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 3;
  grid-row-end: 4;
}
@media all and (min-width: 768px) {
  .wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-4 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-5 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
}
@media all and (min-width: 768px) {
  .wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-5 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-6 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 4;
  grid-row-end: 5;
}
@media all and (min-width: 768px) {
  .wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-6 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-7 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
}
@media all and (min-width: 768px) {
  .wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-7 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.wp-block-xdf-standardmediagrid-8 #media-grid-media-grid-8 .xd-component__media-grid-7 .count {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.wp-block-xd-slider {
  height: calc(56.5vw + 50px);
  max-height: 100%;
}
.wp-block-xd-slider .uk-position-small {
  margin: 10px;
}
@media all and (min-width: 768px) {
  .wp-block-xd-slider .uk-position-small {
    margin: 15px;
  }
}
.wp-block-xd-slider .uk-slider,
.wp-block-xd-slider .uk-slider-container,
.wp-block-xd-slider .uk-slider-items li {
  height: 100%;
  width: 100%;
}
.wp-block-xd-slider .uk-slider-items {
  height: calc(100% - 50px);
}
.wp-block-xd-slider img {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.wp-block-xd-slider img {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  opacity: 0.8;
}
.wp-block-xd-slider img.lazyloaded {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
  -webkit-transition: -webkit-filter opacity 1s;
  transition: -webkit-filter opacity 1s;
  -o-transition: filter opacity 1s;
  transition: filter opacity 1s;
  transition: filter opacity 1s, -webkit-filter opacity 1s;
}

.xd-team {
  width: 100%;
}
.xd-team h2 {
  margin-bottom: 3rem;
}

.xd-team__group-members {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.team-flyout.uk-offcanvas {
  z-index: 1010;
}

.xd-team__member {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0.75rem;
  /* 1-up */
  width: 50%;
}
@media all and (min-width: 768px) {
  .xd-team__member {
    padding: 0.75rem;
  }
}
@media all and (min-width: 576px) {
  .xd-team__member {
    /* 2-up */
    width: 50%;
    min-width: 150px;
    max-width: 230px;
  }
}
@media all and (min-width: 768px) {
  .xd-team__member {
    /* 3-up */
    width: 25%;
  }
}
@media all and (min-width: 992px) {
  .xd-team__member {
    /* 4-up */
    width: 20%;
  }
}
@media all and (min-width: 1200px) {
  .xd-team__member {
    /* 5-up */
    width: 18%;
  }
}
.xd-team__member .xd-team__member-thumb {
  width: 120px;
  height: 120px;
  margin-bottom: 0.5rem;
  border-radius: 25px;
}
.xd-team__member .xd-team__member-thumb img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.xd-team__member h6 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 500;
}
.xd-team__member .xd-team__member-position {
  color: #364058;
  margin-top: 0;
}

.xd-team__member-name a,
.xd-team__member-name a:visited,
.xd-team__member-name a:hover {
  color: #3792FA;
}
.xd-team__member-name a:active {
  color: #333333;
}

.xd-team__bio-content a:hover {
  color: #364058;
}

.xd-team__bio {
  background: #F2F2F2;
  width: 500px;
  max-width: 100%;
  padding: 0 0 2.5rem;
  color: #FFFFFF;
  z-index: 100;
}
.team-flyout .xd-team__bio {
  right: -500px;
}
.xd-team__bio > * {
  color: inherit;
  padding: 0 3rem;
}
.xd-team__bio h3,
.xd-team__bio h4,
.xd-team__bio h5,
.xd-team__bio h6,
.xd-team__bio p {
  color: inherit;
}
.xd-team__bio h4 {
  margin-bottom: 0.2rem;
  margin-top: 1.3125rem;
}
.xd-team__bio h6 {
  margin-top: 0;
  font-size: 0.9rem;
}
.xd-team__bio .title, .xd-team__bio .pagination .nav-links > *, .pagination .xd-team__bio .nav-links > * {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  .xd-team__bio .title, .xd-team__bio .pagination .nav-links > *, .pagination .xd-team__bio .nav-links > * {
    margin-bottom: 1.25rem;
  }
}
.xd-team__bio .xd-team__thumb {
  margin: 0 auto;
  padding: 0;
  max-height: 375px;
  overflow: hidden;
}
.xd-team__bio .xd-team__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.xd-team__bio .team__buttons {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.xd-team__bio .team__buttons .XD-btn, .xd-team__bio .team__buttons .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer input[type=submit], .gform_wrapper .gform_fields .gform_footer.gform_footer.gform_footer .xd-team__bio .team__buttons input[type=submit] {
  width: calc(50% - 1px);
  margin: 0;
  border-radius: 0;
}
.xd-team__bio h3 {
  margin-top: 1.5rem;
}
.xd-team__bio .xd-close {
  border: none;
  color: white;
  background: none;
  padding: 0;
  width: 50px;
  height: 50px;
  background: #4A4A4A;
  text-decoration: none;
  position: absolute;
  top: 25px;
  right: 25px;
}
.xd-team__bio .xd-close:hover {
  color: white;
}
.xd-team__bio .xd-close:before {
  content: "close";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
.xd-team__bio .xd-close:hover, .xd-team__bio .xd-close:active {
  background: #666;
}
.xd-team__bio .xd-close:focus {
  background: #979797;
}
.xd-team__bio .xd-close svg {
  display: none;
}

#email_verify_modal,
#email_verify {
  text-align: center;
}
#email_verify_modal > div,
#email_verify > div {
  margin: auto;
}

.testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
@media all and (min-width: 768px) {
  .testimonial {
    padding: 0 3%;
    text-align: center;
  }
}
.testimonial .testimonial__blurb {
  margin-bottom: 1rem;
  margin-top: 0;
  text-align: left;
}
@media all and (min-width: 768px) {
  .testimonial .testimonial__blurb {
    text-align: center;
  }
}

.testimonial-content {
  width: 75%;
  margin: 0 auto;
}

.xd-testimonial__slider .uk-position-small {
  display: none;
}
@media all and (min-width: 768px) {
  .xd-testimonial__slider .uk-position-small {
    display: block;
  }
}
.xd-testimonial__slider [class*=uk-position-center-left], .xd-testimonial__slider [class*=uk-position-center-right] {
  top: calc(50% - 15px);
}
.xd-testimonial__slider .uk-slider-nav li {
  padding: 0.5rem;
}
.xd-testimonial__slider .uk-slidenav {
  margin: 0;
}

.testimonial__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial__author > * {
  padding: 1rem;
}
@media all and (min-width: 768px) {
  .testimonial__author {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.testimonial__author p {
  margin: 0 !important;
  text-align: left;
}
.testimonial__author .testimonial__author--details p {
  text-align: center;
}
.testimonial__author .testimonial__author--details.image p {
  text-align: left;
}

.testimonial__author--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonial__author--image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 64px;
  height: 64px;
  border-radius: 100px;
}

.uk-dotnav > .uk-active > * {
  background-color: #466EB5;
}

.uk-dotnav > * > :hover, .uk-dotnav > * > :focus {
  background-color: #EAF0F8;
}

.wp-block-xd-three-column .XD-three-column__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (min-width: 768px) {
  .wp-block-xd-three-column .XD-three-column__content {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media all and (min-width: 768px) {
  .wp-block-xd-three-column .XD-three-column__content > div {
    width: 50%;
  }
}
@media all and (min-width: 992px) {
  .wp-block-xd-three-column .XD-three-column__content > div {
    width: 33%;
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  .wp-block-xd-three-column .XD-three-column__content .XD-card + .XD-card {
    margin-top: 2rem;
  }
}

.XD-two-tile .XD-two-tile__text-column .XD-two-tile__content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (min-width: 768px) {
  .XD-two-tile .XD-two-tile__text-column .XD-two-tile__content {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.XD-two-tile .XD-two-tile__text-column .XD-two-tile__content h2, .XD-two-tile .XD-two-tile__text-column .XD-two-tile__content h3, .XD-two-tile .XD-two-tile__text-column .XD-two-tile__content h4 {
  margin-top: 0;
}
.XD-two-tile.left > .container-fluid > .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 992px) {
  .XD-two-tile.left > .container-fluid > .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.XD-two-tile.square .XD-two-tile__image {
  width: 100%;
  height: 100vw;
}
@media all and (min-width: 992px) {
  .XD-two-tile.square .XD-two-tile__image {
    height: 50vw;
    max-height: 50vw;
  }
}
.XD-two-tile.square .XD-two-tile__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.XD-two-tile.square .XD-two-tile__text-column {
  height: 100vw;
}
@media all and (min-width: 992px) {
  .XD-two-tile.square .XD-two-tile__text-column {
    width: 50%;
    height: 50vw;
  }
}
.XD-two-tile.rectangle .XD-two-tile__image {
  width: 100%;
  height: 66vw;
}
@media all and (min-width: 992px) {
  .XD-two-tile.rectangle .XD-two-tile__image {
    width: 100%;
    height: 33vw;
    min-height: 100%;
  }
}
.XD-two-tile.rectangle .XD-two-tile__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media all and (min-width: 992px) {
  .XD-two-tile.rectangle .XD-two-tile__text-column {
    width: 50%;
    height: unset;
  }
}

.XD-video__wrapper {
  height: 45vw;
}
.XD-video__poster {
  height: 100%;
  min-height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.XD-video__poster img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  height: 100%;
  min-width: 100%;
  width: auto;
}
.XD-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
}
.XD-video__foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.XD-video__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  overflow: hidden;
}
.XD-video__container video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: none;
  display: none;
}
.XD-video__link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.XD-video__link, .XD-video__link:hover, .XD-video__link:active, .XD-video__link:focus {
  color: white;
}
.XD-video__link span {
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
}
.XD-video__link svg {
  width: 35px;
  height: 35px;
}
.XD-video__modal-video-container {
  width: 100%;
  height: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (min-width: 768px) {
  .XD-video__modal-video-container {
    max-width: 83.3333333333%;
  }
}
.XD-video__modal {
  padding: 0;
}
.XD-video__modal .uk-modal-body,
.XD-video__modal iframe {
  background-color: #000000;
  width: 100%;
  height: 100%;
  border: none;
}
.XD-video__modal iframe {
  max-height: 80%;
}

.wp-block-embed {
  margin-bottom: 0;
}
.wp-block-embed-youtube .wp-block-embed__wrapper, .wp-block-embed-vimeo .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
}
.wp-block-embed-youtube iframe, .wp-block-embed-vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media all and (max-width: 1199px) {
  .studio-counter {
    margin-top: 0;
    padding-top: 0;
  }
}
.studio-counter .XD-font__display-1,
.studio-counter .p2,
.studio-counter .team-form #team-filter,
.team-form .studio-counter #team-filter,
.studio-counter .h2 {
  color: #364058 !important;
}
.studio-counter h2 {
  margin-bottom: 1.5rem;
}
@media all and (min-width: 768px) and (max-width: 991px) {
  .studio-counter h2 {
    margin-bottom: 3rem;
  }
}
.studio-counter .sc-group-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.studio-counter .sc-group-data > * {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.studio-counter .sc-group-data .sc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: center;
  border-bottom: 1px solid #364058;
  padding: 1rem 0;
}
.studio-counter .sc-group-data .sc-item > * {
  padding-right: 1rem;
  margin: 0px;
}
@media all and (min-width: 768px) {
  .studio-counter .sc-group-data {
    -ms-flex-wrap: unset;
        flex-wrap: unset;
  }
  .studio-counter .sc-group-data .sc-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-left: 1px solid #364058;
    border-bottom: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 1.28125rem;
    padding-left: 1.28125rem;
  }
  .studio-counter .sc-group-data .sc-item > * {
    padding-right: 0;
    margin: 0px;
  }
}
@media all and (min-width: 992px) {
  .studio-counter .sc-group-data .sc-item {
    padding: 1.5rem 1rem;
  }
}

.section-areas {
  position: relative;
}
.section-areas .carfra-bg, .section-areas .carfra-bg__left {
  background-color: #FFFFFF;
}

.areas-practice li,
.areas-practice ul,
.areas-practice h2,
.areas-practice p {
  color: #364058;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.areas-practice ul {
  list-style: none;
  padding-left: 0;
}
.areas-practice ul span {
  margin-right: 1rem;
}
.areas-practice a:hover {
  color: #3792FA;
}
.areas-practice a:hover p {
  color: #3792FA;
}
@media all and (min-width: 768px) {
  .areas-practice .lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .areas-practice ul:first-of-type {
    margin-right: 1.5rem;
  }
}
@media all and (min-width: 1440px) {
  .areas-practice .area-head {
    margin-right: 22%;
  }
}
.areas-practice .areas-list-item span {
  position: absolute;
}
.areas-practice .areas-list-item p {
  padding-left: 1.3em;
}
.areas-practice .areas-list-item .XD-icon {
  width: 13px;
  height: 13px;
}

.team-form {
  position: relative;
  width: 300px;
  min-width: 200px;
}
.team-form #team-filter {
  line-height: 2rem !important;
  padding: 0.5em 1.5em;
  min-height: 3rem;
  border-radius: 0px;
  border-color: #999999;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 300px;
  min-width: 200px;
}
.team-form .XD-icon {
  position: absolute;
  width: 15px;
  right: 16px;
  bottom: 10px;
  z-index: 2;
}

.xd-team__group a {
  color: inherit;
}
.xd-team__group .xd-team__member .xd-team__member-thumb {
  margin: 0 auto;
}

.testimonial.section-areas {
  padding: 0;
}
.testimonial.section-areas h3 {
  text-align: left;
}
.testimonial.section-areas .test-wrapper {
  position: relative;
  min-height: 248px;
  margin-left: calc(8.3333333333% + 10px);
}
.testimonial.section-areas .test-wrapper picture {
  width: 100%;
}
@media all and (min-width: 768px) {
  .testimonial.section-areas .test-wrapper {
    height: 508px;
    margin-left: calc(8.3333333333% + 20px);
  }
}
@media all and (min-width: 992px) {
  .testimonial.section-areas .test-wrapper {
    min-height: 705px;
  }
}

.accordion-cta {
  padding-right: 2em;
}

.block-two-column {
  color: #364058 !important;
  position: relative;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .block-two-column .XD-card {
    width: 50%;
  }
}
.block-two-column.is-style-right .carfra-bg, .block-two-column.is-style-right .carfra-bg__left {
  right: 0;
}
.block-two-column.is-style-none .container {
  padding-top: 0;
  padding-bottom: 0;
}

.team-profile .team-image {
  margin-bottom: 2rem;
}
.team-profile .team-image img {
  width: 100%;
  top: 0px;
}
@media all and (min-width: 1200px) {
  .team-profile .team-image {
    margin-bottom: 0;
  }
}
.team-profile .XD-font__display-2 {
  margin-bottom: 2rem;
}
.team-profile .contact {
  margin-top: 2rem;
}
.team-profile .contact .name-title {
  display: block;
}
.team-profile .contact .name-title .role::before {
  content: "|";
}
@media all and (min-width: 768px) {
  .team-profile .contact .name-title > * {
    display: inline-block;
  }
}
.team-profile .contact .phone-email-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.team-profile .contact .phone-email-social .profile-phone {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-bottom: 1rem;
}
.team-profile .contact .phone-email-social > a {
  margin-right: 2rem;
}
@media all and (min-width: 768px) {
  .team-profile .contact .phone-email-social .profile-phone {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding-bottom: 0;
  }
  .team-profile .contact .phone-email-social .profile-email {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .team-profile .contact .phone-email-social .profile-linkedin {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.team-profile .wp-block-xd-accordion.single-team {
  margin-top: 2rem;
}
.team-profile .wp-block-xd-accordionelement .uk-accordion-title .XD-icon:last-of-type {
  display: none;
}
.team-profile .wp-block-xd-accordionelement.uk-open .uk-accordion-title .XD-icon:first-of-type {
  display: none;
}
.team-profile .wp-block-xd-accordionelement.uk-open .uk-accordion-title .XD-icon:last-of-type {
  display: block;
}
.team-profile .uk-accordion-content ul {
  padding-left: 0.5rem;
}
.team-profile .uk-accordion-content ul > li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.team-profile .uk-accordion-content ul .XD-icon {
  margin-top: 6px;
  margin-right: 0.5rem;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.team-profile a .XD-icon {
  color: #466EB5;
}
.team-profile .profile-li {
  list-style: none;
}
.team-profile .profile-li .XD-icon {
  width: 15px;
  height: 15px;
  color: #466EB5;
  font-weight: bold;
  margin-bottom: 5px;
}
.team-profile .profile-li.bullet .XD-icon {
  width: 10px;
  height: 10px;
}
.team-profile .profile-li svg {
  margin-right: 5px;
}
