@charset "UTF-8";
/**
 * Style file @
 *
 * This file is compiled into style.css
 */
/* ---------- Import variables ---------- */
/* Layout */
/**
 * Jeet grid settings.
 */
/**
 * Breakpoints - Breakpoint slicer
 * https://github.com/lolmaus/breakpoint-slicer
 */
/* Colors */
/* Greys */
/* Elements */
/* Font stuff */
/* Links */
/* Borders and forms */
/* Shadows */
/**
 * Animations
 */
/** 
 * Magic numbers
 */
/* ---------- Import grid system ---------- */
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/* ---------- Import fonts ---------- */
/* ---------- Import base ---------- */
/*  Better box model */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary, main {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 600;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "“" "”" "‘" "’";
}

q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Base responsive images */
img {
  height: auto;
  max-width: 100%;
  border: 0;
}

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

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "icomoon";
  src: url("../../fonts/icomoon/fonts/icomoon.eot");
  src: url("../../fonts/icomoon/fonts/icomoon.eot?#iefix") format("embedded-opentype"), url("../../fonts/icomoon/fonts/icomoon.svg?#icomoon") format("svg"), url("../../fonts/icomoon/fonts/icomoon.ttf") format("truetype"), url("../../fonts/icomoon/fonts/icomoon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-],
[class*=" icon-"],
.icomoon,
.result-list > li article a:after,
.layout-sidebar-second nav .menu-item--expanded ul ul li:after,
.fancybox-navigation .fancybox-button:after,
.social-share-block .a2a_button_facebook:after,
.social-networks a:after,
.flickity-enabled .flickity-prev-next-button:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-calendar:before, .page-header-top .contact-info-list__book a span:before, .button--book-now:before, .home-slider__links li.link-book-now-hold a:before {
  content: "\e91e";
}

.icon-envelope:before {
  content: "\e91c";
}

.icon-phone:before, .page-header-top .contact-info-list__phone a span:before {
  content: "\e91d";
}

.icon-upload:before {
  content: "\e917";
}

.icon-feed:before {
  content: "\e914";
}

.icon-rss:before {
  content: "\e914";
}

.icon-twitter:before {
  content: "\f099";
}

.icon-facebook:before {
  content: "\f09a";
}

.icon-facebook-f:before {
  content: "\f09a";
}

.icon-youtube-play:before {
  content: "\f16a";
}

.icon-instagram:before {
  content: "\f16d";
}

.icon-stamped:before {
  content: "\e91b";
}

.icon-home1:before {
  content: "\e91a";
}

.icon-arrow-right:before {
  content: "\e919";
}

.icon-edit:before {
  content: "\e918";
}

.icon-chat:before {
  content: "\e90e";
}

.icon-map-location:before {
  content: "\e90f";
}

.icon-message:before, .page-header-top .contact-info-list__email a span:before {
  content: "\e910";
}

.icon-left-arrow:before {
  content: "\e911";
}

.icon-home:before {
  content: "\e912";
}

.icon-search1:before, .link--icon-search:before {
  content: "\e913";
}

.icon-angle-right:before, .horizontal-menu > li ul .menu-item--expanded > a:before, .button--more:before, .home-slider__links li.link-read-more-hold a:before, .block--system-breadcrumb-block ol li + li:before {
  content: "\e90a";
}

.icon-angle-left:before {
  content: "\e90b";
}

.icon-angle-up:before {
  content: "\e90c";
}

.icon-angle-down:before {
  content: "\e90d";
}

.icon-lock:before {
  content: "\e909";
}

.icon-searcher:before {
  content: "\e908";
}

.icon-facebook-logo:before {
  content: "\e902";
}

.icon-instagram-logo:before {
  content: "\e903";
}

.icon-right-arrow-sharp:before, .link--arrow-right:before {
  content: "\e905";
}

.icon-left-arrow-sharp:before {
  content: "\e907";
}

.icon-envelope1:before {
  content: "\e906";
}

.icon-external-link:before {
  content: "\e915";
}

.icon-play:before {
  content: "\e052";
}

.icon-file:before {
  content: "\e124";
}

.icon-download:before {
  content: "\e916";
}

.icon-expand:before {
  content: "\e901";
}

.icon-linkedin:before {
  content: "\e900";
}

.icon-search:before, .result-list > li.see-all-link a:before {
  content: "\e904";
}

/**
 * Mixins
 *
 * Snippets of reusable CSS to develop faster and keep code readable
 */
/*
 * IcoMoon
 * see @ http://jaydenseric.com/blog/fun-with-sass-and-font-icons
 */
.vacancy-list,
.public-consultation-list, .search-item__meta-data, .search-results-list, .facets-widget-checkbox ul, .search-meta__data, .layout-sidebar-second nav ul, .page-header-top .contact-info-list, .page-header-top__social-block, .horizontal-menu > li ul, .horizontal-menu > li ul ul, .horizontal-menu, .event-article-item__data-value ul, .event-article-item--list, .home-slider__links, .pager ul, .social-networks, .block--system-breadcrumb-block ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
 * Extendables
 *
 * Collect all of your extendable classes, ids and silent extendables.
 */
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

.overflow-hidden {
  overflow: hidden;
}

.ellipsis {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

/*
* Breakpoints slicer debug
 */
body.domain-test .page:before {
  position: fixed;
  font-size: 18px;
  bottom: 0;
  left: 0;
  z-index: 10000000;
  padding: 5px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
}
@media (min-width: 0) {
  body.domain-test .page:before {
    content: "mobile";
  }
}
@media (min-width: 479px) {
  body.domain-test .page:before {
    content: "phablet";
  }
}
@media (min-width: 639px) {
  body.domain-test .page:before {
    content: "tabletp";
  }
}
@media (min-width: 767px) {
  body.domain-test .page:before {
    content: "tabletl";
  }
}
@media (min-width: 1023px) {
  body.domain-test .page:before {
    content: "desktop";
  }
}
@media (min-width: 1249px) {
  body.domain-test .page:before {
    content: "desktopxl";
  }
}
@media (min-width: 1399px) {
  body.domain-test .page:before {
    content: "desktopxxl";
  }
}
@media (min-width: 1799px) {
  body.domain-test .page:before {
    content: "desktopxxxl";
  }
}

#__bs_notify__ {
  bottom: 0 !important;
  right: 0 !important;
  top: auto !important;
  border-radius: 0 !important;
  padding: 5px 8px !important;
  font-size: 14px !important;
}

/*
 * Required for breakpoints.js plugin
 */
body:after {
  content: "";
  display: none;
}

@media (min-width: 0) {
  body::after {
    content: "mobile";
  }
}
@media (min-width: 479px) {
  body::after {
    content: "phablet";
  }
}
@media (min-width: 639px) {
  body::after {
    content: "tabletp";
  }
}
@media (min-width: 767px) {
  body::after {
    content: "tabletl";
  }
}
@media (min-width: 1023px) {
  body::after {
    content: "desktop";
  }
}
@media (min-width: 1249px) {
  body::after {
    content: "desktopxl";
  }
}
@media (min-width: 1399px) {
  body::after {
    content: "desktopxxl";
  }
}
@media (min-width: 1799px) {
  body::after {
    content: "desktopxxxl";
  }
}

/**
 * Typography
*/
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
button,
input,
select,
textarea {
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
}

body {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
.h1,
.home-slider__title {
  line-height: 1.25;
  color: #000;
  margin: 0 0 2.25rem;
  font-family: "Source Serif Pro", serif;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 479px) {
  h1,
  .h1,
  .home-slider__title {
    font-size: 1.6875rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  h1,
  .h1,
  .home-slider__title {
    font-size: 2.1875rem;
  }
}
@media (max-width: 1023px) {
  h1,
  .h1,
  .home-slider__title {
    margin-bottom: v(1);
  }
}
@media (min-width: 1024px) {
  h1,
  .h1,
  .home-slider__title {
    font-size: 2.8125rem;
    margin: 0 0 2.25rem;
  }
}
@media (max-width: 479px) {
  .path--frontpage h1,
  .path--frontpage .h1,
  .path--frontpage .home-slider__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .path--frontpage h1,
  .path--frontpage .h1,
  .path--frontpage .home-slider__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .path--frontpage h1,
  .path--frontpage .h1,
  .path--frontpage .home-slider__title {
    font-size: 3.125rem;
  }
}
h1 a,
.h1 a,
.home-slider__title a {
  color: #000;
  font-weight: 400;
}
h1 a:hover, h1 a:focus,
.h1 a:hover,
.home-slider__title a:hover,
.h1 a:focus,
.home-slider__title a:focus {
  color: #f07ce8;
}

h2,
.h2 {
  line-height: 1.25;
  color: #000;
  font-family: "Source Serif Pro", serif;
  font-weight: 900;
}
@media (max-width: 1023px) {
  h2,
  .h2 {
    margin: 0 0 1.125rem;
  }
}
@media (max-width: 479px) {
  h2,
  .h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  h2,
  .h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  h2,
  .h2 {
    font-size: 2rem;
    margin: 0 0 1.5rem;
  }
}
@media (max-width: 479px) {
  .path--frontpage h2,
  .path--frontpage .h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .path--frontpage h2,
  .path--frontpage .h2 {
    font-size: 2.125rem;
  }
}
@media (min-width: 1024px) {
  .path--frontpage h2,
  .path--frontpage .h2 {
    font-size: 2.5rem;
  }
}
h2 a,
.h2 a {
  color: #000;
  font-weight: 700;
}
h2 a:hover, h2 a:focus,
.h2 a:hover,
.h2 a:focus {
  color: #f07ce8;
}

h3,
.h3,
.event-article-item--list h2 {
  line-height: 1.25;
  color: #000;
  font-family: "Source Serif Pro", serif;
  font-weight: 700;
}
@media (max-width: 1023px) {
  h3,
  .h3,
  .event-article-item--list h2 {
    font-size: 1.25rem;
    margin: 0 0 1.05rem;
  }
}
@media (min-width: 1024px) {
  h3,
  .h3,
  .event-article-item--list h2 {
    margin: 0 0 1.5rem;
    font-size: 1.625rem;
  }
}

h4,
.h4 {
  font-size: 1.25rem;
  line-height: 1.25;
  color: #000;
  font-family: "Source Serif Pro", serif;
  font-weight: 700;
}
@media (max-width: 479px) {
  h4,
  .h4 {
    font-size: 1.125rem;
  }
}
@media (max-width: 1023px) {
  h4,
  .h4 {
    margin-bottom: 0.975rem;
  }
}
@media (min-width: 1024px) {
  h4,
  .h4 {
    margin-bottom: 1.5rem;
  }
}

p + h2,
p + h3,
p + h4,
dl + h2,
dl + h3,
dl + h4,
ol + h2,
ol + h3,
ol + h4,
ul + h2,
ul + h3,
ul + h4,
blockquote + h2,
blockquote + h3,
blockquote + h4,
article + h2,
article + h3,
article + h4 {
  margin-top: 3rem;
}

/*
p,
ul,
ol {
  &:last-child {
    margin-bottom: 0;
  }
}
*/
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 600;
}

dfn {
  font-style: italic;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

mark {
  background: #ff0;
  color: #000;
}

@media (max-width: 1023px) {
  p,
  pre {
    margin: 0 0 1.125rem;
  }
}
@media (min-width: 1024px) {
  p,
  pre {
    margin: 0 0 1.5rem;
  }
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-family: "courier new", monospace;
  font-size: 1rem;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 0.875rem;
}

large {
  font-size: 1.125rem;
}

sub,
sup {
  font-size: 0.875rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl,
ol,
ul {
  margin: 0 0 1.5rem;
}
dl dl,
dl menu,
dl ul,
ol dl,
ol menu,
ol ul,
ul dl,
ul menu,
ul ul {
  margin: 0;
}

dd {
  margin: 0 0 1.5rem;
}

ul {
  padding: 0 0 0 1.5rem;
  list-style: disc;
}
ul.rteindent1 {
  padding: 0;
}

ol {
  padding: 0 0 0 1.5rem;
  list-style: decimal;
}
ol.rteindent1 {
  padding: 0;
}

ol ol {
  margin: 0;
  list-style: lower-alpha;
}

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

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

figure {
  margin: 0;
}

@media (max-width: 479px) {
  .image__right {
    display: block;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 480px) {
  .image__right {
    float: right;
    margin: 0 0 1.5rem 1.8rem;
    max-width: 50%;
  }
}

@media (max-width: 479px) {
  .image__left {
    display: block;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 480px) {
  .image__left {
    float: left;
    margin: 0 1.8rem 1.5rem 0;
    max-width: 50%;
  }
}

@media (max-width: 639px) {
  .mt-1 {
    margin-top: 1.125rem;
  }
}
@media (min-width: 640px) {
  .mt-1 {
    margin-top: 1.5rem;
  }
}

@media (max-width: 639px) {
  .mt-2 {
    margin-top: 1.8rem;
  }
}
@media (min-width: 640px) {
  .mt-2 {
    margin-top: 3rem;
  }
}

@media (max-width: 639px) {
  .mt-3 {
    margin-top: 2.25rem;
  }
}
@media (min-width: 640px) {
  .mt-3 {
    margin-top: 4.5rem;
  }
}

@media (max-width: 639px) {
  .mt-4 {
    margin-top: 3rem;
  }
}
@media (min-width: 640px) {
  .mt-4 {
    margin-top: 6rem;
  }
}

@media (max-width: 639px) {
  .mt-5 {
    margin-top: 3.75rem;
  }
}
@media (min-width: 640px) {
  .mt-5 {
    margin-top: 7.5rem;
  }
}

@media (max-width: 639px) {
  .mb-1 {
    margin-bottom: 1.125rem;
  }
}
@media (min-width: 640px) {
  .mb-1 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 639px) {
  .mb-2 {
    margin-bottom: 1.8rem;
  }
}
@media (min-width: 640px) {
  .mb-2 {
    margin-bottom: 3rem;
  }
}

@media (max-width: 639px) {
  .mb-3 {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 640px) {
  .mb-3 {
    margin-bottom: 4.5rem;
  }
}

@media (max-width: 639px) {
  .mb-4 {
    margin-bottom: 3rem;
  }
}
@media (min-width: 640px) {
  .mb-4 {
    margin-bottom: 6rem;
  }
}

@media (max-width: 639px) {
  .mb-5 {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 640px) {
  .mb-5 {
    margin-bottom: 7.5rem;
  }
}

@media (max-width: 639px) {
  .ml-1 {
    margin-left: 1.125rem;
  }
}
@media (min-width: 640px) {
  .ml-1 {
    margin-left: 1.5rem;
  }
}

@media (max-width: 639px) {
  .ml-2 {
    margin-left: 1.8rem;
  }
}
@media (min-width: 640px) {
  .ml-2 {
    margin-left: 3rem;
  }
}

@media (max-width: 639px) {
  .ml-3 {
    margin-left: 2.25rem;
  }
}
@media (min-width: 640px) {
  .ml-3 {
    margin-left: 4.5rem;
  }
}

@media (max-width: 639px) {
  .ml-4 {
    margin-left: 3rem;
  }
}
@media (min-width: 640px) {
  .ml-4 {
    margin-left: 6rem;
  }
}

@media (max-width: 639px) {
  .ml-5 {
    margin-left: 3.75rem;
  }
}
@media (min-width: 640px) {
  .ml-5 {
    margin-left: 7.5rem;
  }
}

@media (max-width: 639px) {
  .mr-1 {
    margin-right: 1.125rem;
  }
}
@media (min-width: 640px) {
  .mr-1 {
    margin-right: 1.5rem;
  }
}

@media (max-width: 639px) {
  .mr-2 {
    margin-right: 1.8rem;
  }
}
@media (min-width: 640px) {
  .mr-2 {
    margin-right: 3rem;
  }
}

@media (max-width: 639px) {
  .mr-3 {
    margin-right: 2.25rem;
  }
}
@media (min-width: 640px) {
  .mr-3 {
    margin-right: 4.5rem;
  }
}

@media (max-width: 639px) {
  .mr-4 {
    margin-right: 3rem;
  }
}
@media (min-width: 640px) {
  .mr-4 {
    margin-right: 6rem;
  }
}

@media (max-width: 639px) {
  .mr-5 {
    margin-right: 3.75rem;
  }
}
@media (min-width: 640px) {
  .mr-5 {
    margin-right: 7.5rem;
  }
}

@media (max-width: 639px) {
  .pt-1 {
    padding-top: 1.125rem;
  }
}
@media (min-width: 640px) {
  .pt-1 {
    padding-top: 1.5rem;
  }
}

@media (max-width: 639px) {
  .pt-2 {
    padding-top: 1.8rem;
  }
}
@media (min-width: 640px) {
  .pt-2 {
    padding-top: 3rem;
  }
}

@media (max-width: 639px) {
  .pt-3 {
    padding-top: 2.25rem;
  }
}
@media (min-width: 640px) {
  .pt-3 {
    padding-top: 4.5rem;
  }
}

@media (max-width: 639px) {
  .pt-4 {
    padding-top: 3rem;
  }
}
@media (min-width: 640px) {
  .pt-4 {
    padding-top: 6rem;
  }
}

@media (max-width: 639px) {
  .pt-5 {
    padding-top: 3.75rem;
  }
}
@media (min-width: 640px) {
  .pt-5 {
    padding-top: 7.5rem;
  }
}

@media (max-width: 639px) {
  .pb-1 {
    padding-bottom: 1.125rem;
  }
}
@media (min-width: 640px) {
  .pb-1 {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 639px) {
  .pb-2 {
    padding-bottom: 1.8rem;
  }
}
@media (min-width: 640px) {
  .pb-2 {
    padding-bottom: 3rem;
  }
}

@media (max-width: 639px) {
  .pb-3 {
    padding-bottom: 2.25rem;
  }
}
@media (min-width: 640px) {
  .pb-3 {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 639px) {
  .pb-4 {
    padding-bottom: 3rem;
  }
}
@media (min-width: 640px) {
  .pb-4 {
    padding-bottom: 6rem;
  }
}

@media (max-width: 639px) {
  .pb-5 {
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 640px) {
  .pb-5 {
    padding-bottom: 7.5rem;
  }
}

@media (max-width: 639px) {
  .pl-1 {
    padding-left: 1.125rem;
  }
}
@media (min-width: 640px) {
  .pl-1 {
    padding-left: 1.5rem;
  }
}

@media (max-width: 639px) {
  .pl-2 {
    padding-left: 1.8rem;
  }
}
@media (min-width: 640px) {
  .pl-2 {
    padding-left: 3rem;
  }
}

@media (max-width: 639px) {
  .pl-3 {
    padding-left: 2.25rem;
  }
}
@media (min-width: 640px) {
  .pl-3 {
    padding-left: 4.5rem;
  }
}

@media (max-width: 639px) {
  .pl-4 {
    padding-left: 3rem;
  }
}
@media (min-width: 640px) {
  .pl-4 {
    padding-left: 6rem;
  }
}

@media (max-width: 639px) {
  .pl-5 {
    padding-left: 3.75rem;
  }
}
@media (min-width: 640px) {
  .pl-5 {
    padding-left: 7.5rem;
  }
}

@media (max-width: 639px) {
  .pr-1 {
    padding-right: 1.125rem;
  }
}
@media (min-width: 640px) {
  .pr-1 {
    padding-right: 1.5rem;
  }
}

@media (max-width: 639px) {
  .pr-2 {
    padding-right: 1.8rem;
  }
}
@media (min-width: 640px) {
  .pr-2 {
    padding-right: 3rem;
  }
}

@media (max-width: 639px) {
  .pr-3 {
    padding-right: 2.25rem;
  }
}
@media (min-width: 640px) {
  .pr-3 {
    padding-right: 4.5rem;
  }
}

@media (max-width: 639px) {
  .pr-4 {
    padding-right: 3rem;
  }
}
@media (min-width: 640px) {
  .pr-4 {
    padding-right: 6rem;
  }
}

@media (max-width: 639px) {
  .pr-5 {
    padding-right: 3.75rem;
  }
}
@media (min-width: 640px) {
  .pr-5 {
    padding-right: 7.5rem;
  }
}

.text-large, .maintenance-main__text-top, .maintenance-main__text-bottom {
  font-size: 125%;
}

.text-small {
  font-size: 80%;
}

.text-pink {
  color: #f07ce8;
}

.text-green {
  color: #005433;
}

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

.fontawesome-icon-inline {
  color: #f07ce8;
}

/* ---------- Components ---------- */
.layout-sidebar-first .block,
.layout-sidebar-second .block {
  margin-bottom: 2.25rem;
}

aside .block ul {
  margin-bottom: 0;
}

blockquote {
  border-left: 7px solid #2cd7e4;
  font: normal 18px/1.46 "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  color: #f68123;
}
@media (max-width: 1023px) {
  blockquote {
    margin: 0 0 1.5rem;
    padding: 0 0 0 15px;
    border-width: 4px;
    max-width: 95%;
  }
}
@media (min-width: 1024px) {
  blockquote {
    margin: 0 0 2.5rem;
    padding: 0 0 0 18px;
    font-size: 22px;
    max-width: 80%;
  }
}
blockquote p:last-child {
  margin-bottom: 0;
}

.block--system-breadcrumb-block {
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  color: #000;
  position: relative;
}
@media (max-width: 639px) {
  .block--system-breadcrumb-block {
    padding: 1.2rem 0;
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .block--system-breadcrumb-block {
    padding: 1.5rem 0;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .block--system-breadcrumb-block {
    padding: 1.8rem 0;
    margin-bottom: 3.75rem;
  }
}
.block--system-breadcrumb-block:after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  position: absolute;
  background: #fdeefc;
  border-bottom: 1px solid #333;
  opacity: 0.1;
  z-index: -1;
  margin: 0 -9999px;
}
.block--system-breadcrumb-block a {
  display: block;
  color: #000;
  text-decoration: none !important;
  position: relative;
  font-weight: 400;
}
.block--system-breadcrumb-block a:after {
  position: absolute;
  left: 0;
  bottom: 1px;
  right: 100%;
  content: "";
  height: 2px;
  background: transparent;
  -webkit-transition: all ease-in 300ms;
  -o-transition: all ease-in 300ms;
  transition: all ease-in 300ms;
  opacity: 0;
}
@media (max-width: 1023px) {
  .block--system-breadcrumb-block a:after {
    bottom: 0;
  }
}
.block--system-breadcrumb-block a:hover, .block--system-breadcrumb-block a:focus {
  color: #000;
  text-decoration: none;
}
.block--system-breadcrumb-block a:hover:after, .block--system-breadcrumb-block a:focus:after {
  right: 0;
  opacity: 1;
  background: #f07ce8;
}
.block--system-breadcrumb-block ol {
  margin: -3px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.block--system-breadcrumb-block ol li {
  font-weight: 500;
  padding: 3px 12px;
  position: relative;
  letter-spacing: 1px;
  color: #000;
}
@media (max-width: 1023px) {
  .block--system-breadcrumb-block ol li {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .block--system-breadcrumb-block ol li {
    font-size: 1rem;
  }
}
.block--system-breadcrumb-block ol li:first-child {
  padding-left: 0;
}
.block--system-breadcrumb-block ol li + li:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -7px;
  color: #000;
  margin-top: 1px;
  font-size: 10px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
 * Buttons
 */
.button-height, .button--secondary-light, .button--orange, .button--green, .button--primary-outline, .featured-product-block .more-links a, .paragraph--type--offers-services-price-listing .view-all-price-link a, .paragraph--type--offers-services-price-listing .price-hover-text a, .gift-voucher-block .gift-voucher__btn-hold a, .button--primary, .services-block-wrapper header .more-link-hold a,
.services-block-wrapper footer .more-link-hold a, .products-block-wrapper header .more-link-hold a,
.products-block-wrapper footer .more-link-hold a, .button--more, .home-slider__links li.link-read-more-hold a, .button--book-now, .home-slider__links li.link-book-now-hold a, .button, .button--play, .button--file, .button--download, .button--upload, .button--arrow-right,
.button:not(.webform-file-button),
.button--play:not(.webform-file-button),
.button--file:not(.webform-file-button),
.button--download:not(.webform-file-button),
.button--upload:not(.webform-file-button),
.button--arrow-right:not(.webform-file-button),
input[type=submit] {
  font-size: 16px;
  display: inline-block !important;
  vertical-align: top !important;
  font-weight: 600;
}
@media (max-width: 639px) {
  .button-height, .button--secondary-light, .button--orange, .button--green, .button--primary-outline, .featured-product-block .more-links a, .paragraph--type--offers-services-price-listing .view-all-price-link a, .paragraph--type--offers-services-price-listing .price-hover-text a, .gift-voucher-block .gift-voucher__btn-hold a, .button--primary, .services-block-wrapper header .more-link-hold a,
  .services-block-wrapper footer .more-link-hold a, .products-block-wrapper header .more-link-hold a,
  .products-block-wrapper footer .more-link-hold a, .button--more, .home-slider__links li.link-read-more-hold a, .button--book-now, .home-slider__links li.link-book-now-hold a, .button, .button--play, .button--file, .button--download, .button--upload, .button--arrow-right,
  .button:not(.webform-file-button),
  .button--play:not(.webform-file-button),
  .button--file:not(.webform-file-button),
  .button--download:not(.webform-file-button),
  .button--upload:not(.webform-file-button),
  .button--arrow-right:not(.webform-file-button),
  input[type=submit] {
    line-height: 29px;
    height: 40px;
    padding: 4px 15px 4px !important;
  }
}
@media (min-width: 640px) {
  .button-height, .button--secondary-light, .button--orange, .button--green, .button--primary-outline, .featured-product-block .more-links a, .paragraph--type--offers-services-price-listing .view-all-price-link a, .paragraph--type--offers-services-price-listing .price-hover-text a, .gift-voucher-block .gift-voucher__btn-hold a, .button--primary, .services-block-wrapper header .more-link-hold a,
  .services-block-wrapper footer .more-link-hold a, .products-block-wrapper header .more-link-hold a,
  .products-block-wrapper footer .more-link-hold a, .button--more, .home-slider__links li.link-read-more-hold a, .button--book-now, .home-slider__links li.link-book-now-hold a, .button, .button--play, .button--file, .button--download, .button--upload, .button--arrow-right,
  .button:not(.webform-file-button),
  .button--play:not(.webform-file-button),
  .button--file:not(.webform-file-button),
  .button--download:not(.webform-file-button),
  .button--upload:not(.webform-file-button),
  .button--arrow-right:not(.webform-file-button),
  input[type=submit] {
    line-height: 39px;
    height: 50px;
    padding: 4px 20px 4px !important;
  }
}

.button, .button--play, .button--file, .button--download, .button--upload, .button--arrow-right,
.button:not(.webform-file-button),
.button--play:not(.webform-file-button),
.button--file:not(.webform-file-button),
.button--download:not(.webform-file-button),
.button--upload:not(.webform-file-button),
.button--arrow-right:not(.webform-file-button),
input[type=submit] {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 0;
  background: #f293ec;
  color: #000;
  letter-spacing: 1px;
  position: relative;
  border-radius: 2px;
  outline: 3px solid transparent;
  outline-offset: 2px;
  font-size: 16px;
}
.button:focus, .button--play:focus, .button--file:focus, .button--download:focus, .button--upload:focus, .button--arrow-right:focus,
.button:not(.webform-file-button):focus,
input[type=submit]:focus {
  outline-color: #f07ce8;
  border-radius: 0;
  background: #f07ce8;
}

.button:hover, .button--play:hover, .button--file:hover, .button--download:hover, .button--upload:hover, .button--arrow-right:hover,
input[type=submit]:hover,
.button:focus,
.button--play:focus,
.button--file:focus,
.button--download:focus,
.button--upload:focus,
.button--arrow-right:focus {
  text-decoration: none;
}

.button--primary, .services-block-wrapper header .more-link-hold a,
.services-block-wrapper footer .more-link-hold a, .products-block-wrapper header .more-link-hold a,
.products-block-wrapper footer .more-link-hold a, .button--more, .home-slider__links li.link-read-more-hold a, .button--book-now, .home-slider__links li.link-book-now-hold a {
  color: #000;
  border-bottom: 5px solid #111 !important;
  background: #f293ec;
  border-radius: 3px;
  border-radius: 40px;
}
.button--primary.is-active, .services-block-wrapper header .more-link-hold a.is-active,
.services-block-wrapper footer .more-link-hold a.is-active, .products-block-wrapper header .more-link-hold a.is-active,
.products-block-wrapper footer .more-link-hold a.is-active, .is-active.button--more, .home-slider__links li.link-read-more-hold a.is-active, .is-active.button--book-now, .home-slider__links li.link-book-now-hold a.is-active, .button--primary:hover, .services-block-wrapper header .more-link-hold a:hover,
.services-block-wrapper footer .more-link-hold a:hover, .products-block-wrapper header .more-link-hold a:hover,
.products-block-wrapper footer .more-link-hold a:hover, .button--more:hover, .home-slider__links li.link-read-more-hold a:hover, .button--book-now:hover, .home-slider__links li.link-book-now-hold a:hover, .button--primary:focus, .services-block-wrapper header .more-link-hold a:focus,
.services-block-wrapper footer .more-link-hold a:focus, .products-block-wrapper header .more-link-hold a:focus,
.products-block-wrapper footer .more-link-hold a:focus, .button--more:focus, .home-slider__links li.link-read-more-hold a:focus, .button--book-now:focus, .home-slider__links li.link-book-now-hold a:focus {
  color: #000 !important;
  background: #f07ce8;
}

.button--primary-outline, .featured-product-block .more-links a, .paragraph--type--offers-services-price-listing .view-all-price-link a, .paragraph--type--offers-services-price-listing .price-hover-text a, .gift-voucher-block .gift-voucher__btn-hold a {
  color: #000;
  border: 2px solid #f07ce8;
  background: transparent;
  border-radius: 3px;
  border-radius: 40px;
}
.button--primary-outline.is-active, .featured-product-block .more-links a.is-active, .paragraph--type--offers-services-price-listing .view-all-price-link a.is-active, .paragraph--type--offers-services-price-listing .price-hover-text a.is-active, .gift-voucher-block .gift-voucher__btn-hold a.is-active, .button--primary-outline:hover, .featured-product-block .more-links a:hover, .paragraph--type--offers-services-price-listing .view-all-price-link a:hover, .paragraph--type--offers-services-price-listing .price-hover-text a:hover, .gift-voucher-block .gift-voucher__btn-hold a:hover, .button--primary-outline:focus, .featured-product-block .more-links a:focus, .paragraph--type--offers-services-price-listing .view-all-price-link a:focus, .paragraph--type--offers-services-price-listing .price-hover-text a:focus, .gift-voucher-block .gift-voucher__btn-hold a:focus {
  background: #f07ce8;
  border-color: #f07ce8;
  color: #000;
}

.button--green {
  color: #fff;
  background: #04997f;
  border-radius: 3px;
}
.button--green.is-active, .button--green:hover, .button--green:focus {
  background: #04806b;
  border-color: #04806b;
}

.button--orange {
  color: #fff;
  background: #e17f00;
  border-radius: 3px;
}
.button--orange.is-active, .button--orange:hover, .button--orange:focus {
  background: #fff;
  color: #fdeefc;
}

.button--secondary-light {
  border: 2px solid #444;
  background: #444;
  color: #f07ce8;
  border-radius: 3px;
}
.button--secondary-light span {
  display: block;
}
.button--secondary-light.is-active, .button--secondary-light:hover, .button--secondary-light:focus {
  background: #fff;
  border-color: #fff;
  color: #fdeefc;
}

.button[disabled=disabled], [disabled=disabled].button--play, [disabled=disabled].button--file, [disabled=disabled].button--download, [disabled=disabled].button--upload, [disabled=disabled].button--arrow-right {
  pointer-events: none;
}

.button--arrow-right:after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-left: 0.5em;
  font-size: 32px;
  line-height: 0.0625rem;
  top: 0.4375rem;
  -webkit-transition: all 0.2s cubic-bezier(0.68, 0, 0.38, 0.99);
  -o-transition: all 0.2s cubic-bezier(0.68, 0, 0.38, 0.99);
  transition: all 0.2s cubic-bezier(0.68, 0, 0.38, 0.99);
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.button--arrow-right.is-active:after, .button--arrow-right:hover:after, .button--arrow-right:focus:after {
  padding-left: 10px;
}

.button--upload:after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-left: 0.5em;
  font-size: 24px;
  line-height: 0.0625rem;
  top: 0.3125rem;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.button--download:after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-left: 0.5em;
  font-size: 24px;
  line-height: 0.0625rem;
  top: 0.3125rem;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.button--file:after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-left: 0.5em;
  font-size: 20px;
  line-height: 0.0625rem;
  top: 0.125rem;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.button--play:after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-left: 0.5em;
  font-size: 24px;
  line-height: 0.0625rem;
  top: 0.3125rem;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
   * Outline buttons
   */
.button-outline {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  padding: 12px 30px;
  line-height: 1;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out 0.2s;
  -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out 0.2s;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out 0.2s;
}
.button-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
      -ms-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transition: left 0.2s ease-in-out 0s, -webkit-transform 0.25s ease-in-out 0.2s;
  transition: left 0.2s ease-in-out 0s, -webkit-transform 0.25s ease-in-out 0.2s;
  -o-transition: transform 0.25s ease-in-out 0.2s, left 0.2s ease-in-out 0s;
  transition: transform 0.25s ease-in-out 0.2s, left 0.2s ease-in-out 0s;
  transition: transform 0.25s ease-in-out 0.2s, left 0.2s ease-in-out 0s, -webkit-transform 0.25s ease-in-out 0.2s;
}
.button-outline:hover, .button-outline.is-active, .button-outline:focus {
  color: #111;
  background-color: #ffffff;
  text-decoration: none;
}
.button-outline:hover:before, .button-outline.is-active:before, .button-outline:focus:before {
  -webkit-transition: left 0.2s ease-in-out 0.25s, -webkit-transform 0.25s ease-in-out 0s;
  transition: left 0.2s ease-in-out 0.25s, -webkit-transform 0.25s ease-in-out 0s;
  -o-transition: transform 0.25s ease-in-out 0s, left 0.2s ease-in-out 0.25s;
  transition: transform 0.25s ease-in-out 0s, left 0.2s ease-in-out 0.25s;
  transition: transform 0.25s ease-in-out 0s, left 0.2s ease-in-out 0.25s, -webkit-transform 0.25s ease-in-out 0s;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  left: 100%;
}

input[type=submit] {
  background: #fdeefc;
  border-bottom: 5px solid #f07ce8;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 3px;
}
@media (max-width: 639px) {
  input[type=submit] {
    min-width: 100px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (min-width: 640px) {
  input[type=submit] {
    min-width: 120px;
  }
}
input[type=submit]:hover {
  background: #f07ce8;
  border-color: #fdeefc;
}

.button--danger {
  background: #d60000 !important;
  border-color: #d60000 !important;
}
.button--danger:hover, .button--danger:focus {
  background: #a30000 !important;
}

.button--book-now, .home-slider__links li.link-book-now-hold a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900 !important;
  padding-left: 42px !important;
  padding-right: 20px !important;
  position: relative;
}
.button--book-now:before, .home-slider__links li.link-book-now-hold a:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin: 0;
  font-size: 115%;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.button--book-now:hover:before, .home-slider__links li.link-book-now-hold a:hover:before, .button--book-now:focus:before, .home-slider__links li.link-book-now-hold a:focus:before {
  margin-left: 2px;
}

.button--more, .home-slider__links li.link-read-more-hold a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900 !important;
  padding-right: 40px !important;
  padding-left: 20px !important;
  position: relative;
  background: rgba(240, 124, 232, 0.1);
  border: 2px solid #f07ce8 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--more:before, .home-slider__links li.link-read-more-hold a:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 115%;
  margin: 1px 0 0;
  -webkit-transition: 200ms ease-in-out margin;
  -o-transition: 200ms ease-in-out margin;
  transition: 200ms ease-in-out margin;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.button--more:hover, .home-slider__links li.link-read-more-hold a:hover, .button--more:focus, .home-slider__links li.link-read-more-hold a:focus {
  background: #f07ce8 !important;
  border-color: #f07ce8 !important;
}
.button--more:hover:before, .home-slider__links li.link-read-more-hold a:hover:before, .button--more:focus:before, .home-slider__links li.link-read-more-hold a:focus:before {
  margin-right: -3px !important;
}

figure.caption figcaption {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  border-bottom: 1px solid #fdeefc;
  display: inline-block;
  margin-bottom: 0.75rem;
}

body.cke_editable {
  padding: 20px;
}
body.cke_editable::before {
  display: none;
}

.page--error-404 {
  background: #fff url("../img/404.jpg") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
}
.page--error-404 .layout-content {
  min-height: 400px;
  text-align: center;
}
.page--error-404 .block--system-breadcrumb-block {
  display: none;
}
.page--error-404 #link-top {
  display: none;
}

@media (max-width: 639px) {
  .block-featured-content {
    padding: 2.1rem 0;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .block-featured-content {
    padding: 2.7rem 0;
  }
}
@media (min-width: 1024px) {
  .block-featured-content {
    padding: 3.75rem 0;
  }
}
.block-featured-content--product {
  background: #fdeefc;
}
@media (max-width: 639px) {
  .block-featured-content--product {
    padding: 2.55rem 0;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .block-featured-content--product {
    padding: 3.75rem 0;
  }
}
@media (min-width: 1024px) {
  .block-featured-content--product {
    padding: 5.25rem 0;
  }
}
.paragraph--type--featured-product {
  background: #fdeefc;
}
@media (max-width: 639px) {
  .paragraph--type--featured-product {
    padding: 2.55rem 0;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .paragraph--type--featured-product {
    padding: 3.75rem 0;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--featured-product {
    padding: 5.25rem 0;
  }
}

.flickity-viewport {
  width: 100%;
  -webkit-transition: 200ms height;
  -o-transition: 200ms height;
  transition: 200ms height;
}

.flickity-enabled .carousel-cell {
  width: 100%;
}
.flickity-enabled .flickity-prev-next-button {
  position: absolute;
  background: #f07ce8;
  top: 50%;
  bottom: 0;
  border-radius: 100%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border: 2px solid #f07ce8;
  font-size: 0;
  line-height: 0;
  z-index: 20;
  padding: 0 !important;
  color: #fff;
  -webkit-transition: ease-in-out 200ms background, ease-in-out 200ms border, ease-in-out 200ms color, ease-in-out 200ms opacity;
  -o-transition: ease-in-out 200ms background, ease-in-out 200ms border, ease-in-out 200ms color, ease-in-out 200ms opacity;
  transition: ease-in-out 200ms background, ease-in-out 200ms border, ease-in-out 200ms color, ease-in-out 200ms opacity;
}
@media (max-width: 1023px) {
  .flickity-enabled .flickity-prev-next-button {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1024px) {
  .flickity-enabled .flickity-prev-next-button {
    width: 60px;
    height: 60px;
  }
}
.flickity-enabled .flickity-prev-next-button:hover {
  color: #fff;
  background: #ea4ee0;
  border-color: #ea4ee0;
}
.flickity-enabled .flickity-prev-next-button:hover:after {
  color: #fff;
}
.flickity-enabled .flickity-prev-next-button:disabled {
  background: #ddd;
  opacity: 1;
  border: 0;
  color: #fff;
}
.flickity-enabled .flickity-prev-next-button:disabled:after {
  color: #b4b4b4;
}
.flickity-enabled .flickity-prev-next-button:disabled:hover {
  color: #fff;
  background-color: #fff;
}
.flickity-enabled .flickity-prev-next-button:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 20px;
  line-height: 1;
  -webkit-transition: ease-in-out 200ms background, ease-in-out 200ms color;
  -o-transition: ease-in-out 200ms background, ease-in-out 200ms color;
  transition: ease-in-out 200ms background, ease-in-out 200ms color;
}
@media (min-width: 1024px) {
  .flickity-enabled .flickity-prev-next-button:after {
    font-size: 25px;
  }
}
.flickity-enabled .flickity-prev-next-button.previous:after {
  content: "\e907";
}
.flickity-enabled .flickity-prev-next-button.next:after {
  content: "\e905";
}
.flickity-enabled .flickity-prev-next-button svg {
  display: none !important;
}
.flickity-enabled .flickity-page-dots .dot {
  background: white;
  border: 3px solid #f07ce8;
  width: 17px;
  height: 17px;
}

body {
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
  min-width: 320px;
}
body.path--frontpage {
  background: #fff;
}
body .visually-hidden.focusable.bg-focus {
  padding: 15px;
  background: #f68123;
  z-index: 110;
  top: 15px;
  left: 15px;
  color: #fff;
}
body .visually-hidden.focusable.bg-focus:focus {
  position: absolute !important;
}

a {
  color: #f07ce8;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
}
a:hover {
  color: #ea4ee0;
}
a:focus {
  outline: 3px solid #f07ce8;
  outline-offset: 2px;
}

.paragraph a:not(.button):not(.button--arrow-right):not(.button--upload):not(.button--download):not(.button--file):not(.button--play),
.meeting-item__meta-data-value a:not(.button):not(.button--arrow-right):not(.button--upload):not(.button--download):not(.button--file):not(.button--play) {
  display: inline;
  border-bottom: 2px solid #111;
}
.paragraph a:not(.button):not(.button--arrow-right):not(.button--upload):not(.button--download):not(.button--file):not(.button--play):hover,
.meeting-item__meta-data-value a:not(.button):not(.button--arrow-right):not(.button--upload):not(.button--download):not(.button--file):not(.button--play):hover {
  border-width: 3px;
  border-color: #f68123;
}

.mm-page {
  overflow: hidden;
  background: #fff !important;
}

.link--arrow-right {
  padding-right: 24px;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.link--arrow-right:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  color: #f68123;
  position: absolute;
  right: 0;
  margin: 2px 0 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link--arrow-right:hover:before, .link--arrow-right:focus:before {
  margin-right: -4px;
}

.mm-page {
  overflow: hidden;
  background: #fff;
}

.social-networks {
  position: relative;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -7px;
}
.social-networks li {
  padding: 5px 7px;
}
@media (max-width: 479px) {
  .social-networks li {
    max-width: 40px;
  }
}
.social-networks a {
  display: block;
  text-decoration: none;
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
  border: 0 !important;
}
.social-networks a:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  text-align: center;
  color: #000;
  text-indent: 0;
  line-height: 30px;
  font-size: 22px;
}
.social-networks a.link--twitter:after {
  content: "\f099";
}
.social-networks a.link--facebook:after {
  content: "\e902";
}
.social-networks a.link--youtube:after {
  content: "\f16a";
}
.social-networks a.link--instagram:after {
  content: "\e903";
}
.social-networks a:hover:after {
  color: #e6e6e6;
}

@media (max-width: 767px) {
  a[href^="mailto:"] {
    display: inline-block;
    vertical-align: top;
    word-break: break-all;
  }
}

.user-login-form {
  margin-bottom: 3rem;
}

.node--view-mode-full .field--label-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 10px;
}
.node--view-mode-full .field--label-inline .field__label {
  font-weight: 600;
}
@media (min-width: 480px) {
  .node--view-mode-full .field--label-inline .field__label {
    margin: 0 7px 0 0;
  }
}
.node--view-mode-full .field--label-inline .field__item {
  position: relative;
}
@media (min-width: 480px) {
  .node--view-mode-full .field--label-inline .field__item:after {
    top: 0;
    position: absolute;
    left: -4px;
    content: " :";
    font-weight: 600;
  }
}

.grecaptcha-badge {
  display: none !important;
  visibility: hidden;
}

.fb_customer_chat_bubble_pop_in {
  bottom: 50px !important;
}

.fb_dialog_content > iframe {
  bottom: 50px !important;
}

iframe {
  width: 100%;
}

.highlight-blue {
  border-top: 1px solid #004489;
  border-right: 1px solid #004489;
  border-bottom: 1px solid #004489;
  border-left: 5px solid #004489;
  padding: 1.5rem;
  background-color: #d9edf7;
  margin-bottom: 1.5rem;
  color: #222;
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
  font-size: 1rem;
  margin-left: 0;
}

.highlight-green {
  border-top: 1px solid #3c763d;
  border-right: 1px solid #3c763d;
  border-bottom: 1px solid #3c763d;
  border-left: 5px solid #3c763d;
  padding: 1.5rem;
  background-color: #dff0d8;
  margin-bottom: 1.5rem;
  color: #3c763d;
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
  font-size: 1rem;
  margin-left: 0;
}

.highlight-red {
  border-top: 1px solid #cf5a5a;
  border-right: 1px solid #cf5a5a;
  border-bottom: 1px solid #cf5a5a;
  border-left: 5px solid #cf5a5a;
  padding: 1.5rem;
  background-color: #f9d9de;
  margin-bottom: 1.5rem;
  color: red;
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
  font-size: 1rem;
  margin-left: 0;
}

.highlight-orange {
  border-top: 1px solid #d27400;
  border-right: 1px solid #d27400;
  border-bottom: 1px solid #d27400;
  border-left: 5px solid #d27400;
  padding: 1.5rem;
  background-color: #ffeebe;
  margin-bottom: 1.5rem;
  color: #93440b;
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
  font-size: 1rem;
  margin-left: 0;
}

hr {
  margin: 0 0 1.5rem;
  height: 2px;
  background: #000;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

figure[role=group] {
  margin-bottom: 1.5rem;
}
figure[role=group] img {
  display: block;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
figure[role=group] figcaption {
  font-size: 16px;
  margin-top: 10px;
}
@media (max-width: 479px) {
  figure[role=group].align-right {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 639px) {
  figure[role=group].align-right {
    max-width: 55%;
  }
}
@media (min-width: 480px) {
  figure[role=group].align-right {
    margin-left: 1.5rem;
  }
}
@media (min-width: 640px) {
  figure[role=group].align-right {
    max-width: 60%;
  }
}
@media (max-width: 479px) {
  figure[role=group].align-left {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 639px) {
  figure[role=group].align-left {
    max-width: 55%;
  }
}
@media (min-width: 480px) {
  figure[role=group].align-left {
    margin-right: 1.5rem;
  }
}
@media (min-width: 640px) {
  figure[role=group].align-left {
    max-width: 60%;
  }
}
figure[role=group].align-center {
  text-align: center;
}
figure[role=group].align-center img {
  display: inline-block;
}

picture {
  display: block;
}

/*
 * Status messags
 */
.messages__wrappers > div {
  padding: 1.5rem;
  border-radius: 4px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 10px;
  border-style: solid;
  color: #111;
  margin-bottom: 1.5rem;
}
.messages__wrappers div[aria-label^=Error] {
  border-color: #cf5a5a;
  background: #f7dcdb;
}
.messages__wrappers div[aria-label^=Status] {
  border-color: #008752;
  background: #eff5ed;
}
.messages__wrappers div[aria-label^=Warning] {
  border-color: #6098c5;
  background: #d5e9f9;
}

.pager {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  margin: -5px 0 -5px -5px;
}
@media (max-width: 1023px) {
  .pager {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .pager {
    margin-top: 2.5rem;
  }
}
.pager ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  border-radius: 0;
  padding: 5px;
  margin: -0.18rem;
}
.pager li {
  margin: 0.18rem;
}
.pager li.is-active .pager__link {
  color: #333;
  background: transparent !important;
  border-color: #333;
}
.pager .pager__link {
  min-width: 38px;
  height: 38px;
  line-height: 34px;
  padding-left: 5px;
  padding-right: 5px;
  display: block;
  text-align: center;
  border: 2px solid transparent;
  border-width: 2px !important;
  font-weight: 700;
  background-color: transparent;
  color: #f07ce8;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}
@media (max-width: 1023px) {
  .pager .pager__link {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .pager .pager__link {
    font-size: 1.125rem;
  }
}
.pager a:hover {
  border-color: #333;
  text-decoration: none;
  color: #333;
}

/* .user-register-form {
	#edit-entity-profile {
		summary {
			display: none;
		}
	}
} */
.sitemap-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sitemap-box li {
  line-height: 1.3;
}
.sitemap-box .expanded ul {
  margin-left: 1.875rem;
  font-size: 1.125rem;
}
.sitemap-box a {
  display: inline-block;
  position: relative;
  padding: 0.625rem 0.625rem 0.625rem 1.875rem;
  font-weight: 700;
}
.sitemap-box a:before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 2px;
  background-color: #fdeefc;
  position: absolute;
  top: 1.25em;
  left: 0;
  -webkit-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
.sitemap-box a:hover,
.sitemap-box a:focus {
  color: #ea4ee0;
  text-decoration: none;
  background-color: #e0e0e0;
}
.sitemap-box a:hover:before,
.sitemap-box a:focus:before {
  width: 1.4375rem;
}
.sitemap-box a.is-active {
  font-weight: 700;
  color: #111;
}
.sitemap-box a.is-active:before {
  display: none;
}

.social-share-block {
  padding: 2.25rem 0;
}
.social-share-block .a2a_button_facebook {
  background: #3b5998;
  padding: 5px 10px 5px 50px !important;
  position: relative;
  color: #fff;
  line-height: 1;
  height: 40px;
  overflow: hidden;
  border-radius: 3px;
  font-weight: 400;
}
.social-share-block .a2a_button_facebook:hover {
  opacity: 1;
  background: #2d4373;
}
.social-share-block .a2a_button_facebook:after {
  font-size: 20px;
  left: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "\e902";
  margin: 0;
  line-height: 40px;
  background: #2d4373;
}
.social-share-block .a2a_button_facebook span {
  width: auto !important;
  font-size: 18px;
  line-height: 30px !important;
  height: 30px !important;
  opacity: 1 !important;
  display: block !important;
}

/*
 * Tables
 */
table {
  border: 0 solid transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
}
table caption {
  text-align: left;
}
table th {
  text-align: left;
}
table td {
  vertical-align: top;
}
table td *:first-child {
  margin-top: 0;
}
table td *:last-child {
  margin-bottom: 0;
}
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 0.525rem 0.525rem 0.525rem 0;
  vertical-align: top;
  border-bottom: 1px solid #ccc;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}
table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #fdeefc;
}
table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
table > tbody + tbody {
  border-top: 2px solid #ccc;
}
table table {
  margin-bottom: 0;
}

/**
 * Responsive tables. tables in node content are wrapped with a div with class "table-responsive" via js in scripts.js
 */
.table-responsive {
  width: 100%;
  overflow-y: auto;
}

.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.table-responsive::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

.table-bordered {
  border: 1px solid #ccc;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ccc;
  padding: 5px;
}

.table-striped:not(.table-responsive) thead > tr > th,
.table-striped:not(.table-responsive) thead > tr > td,
.table-striped:not(.table-responsive) tbody > tr > th,
.table-striped:not(.table-responsive) tbody > tr > td {
  padding-left: 0.525rem;
  padding-right: 0.525rem;
}
.table-striped:not(.table-responsive) > tbody > tr:nth-child(odd),
.table-striped:not(.table-responsive) .odd-row {
  background: rgba(0, 0, 0, 0.05);
}
.table-striped:not(.table-responsive) th,
.table-striped:not(.table-responsive) td {
  border: 0;
}

@media (min-width: 640px) {
  .table-striped.table-responsive thead > tr > th,
  .table-striped.table-responsive thead > tr > td,
  .table-striped.table-responsive tbody > tr > th,
  .table-striped.table-responsive tbody > tr > td {
    padding-left: 0.525rem;
    padding-right: 0.525rem;
  }
}
@media (min-width: 640px) {
  .table-striped.table-responsive > tbody > tr:nth-child(odd),
  .table-striped.table-responsive .odd-row {
    background: rgba(0, 0, 0, 0.05);
  }
}
.table-striped.table-responsive th,
.table-striped.table-responsive td {
  border: 0;
}

.table-striped-vertical th:nth-child(odd),
.table-striped-vertical td:nth-child(odd),
.table-striped-vertical .odd-column {
  background-color: #f2f2f2;
}
.table-striped-vertical th,
.table-striped-vertical td {
  border: 0;
}

.table-vertical th,
.table-vertical td {
  border-top: 0;
  border-bottom: 0;
  border-right: 1px solid #ccc;
}
.table-vertical tr td:last-child,
.table-vertical tr th:last-child {
  border: 0;
}

.table-unstyled > thead > tr > th,
.table-unstyled > thead > tr > td,
.table-unstyled > tbody > tr > th,
.table-unstyled > tbody > tr > td,
.table-unstyled > tfoot > tr > th,
.table-unstyled > tfoot > tr > td {
  padding: 0;
  vertical-align: top;
  border: 0;
}

/* --------------- System Tabs  --------------- */
.block--local-tasks-block {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.block--local-tasks-block ul {
  margin-left: 0;
  padding-left: 0;
}

.block--local-tasks-block ul li a {
  color: #000;
  background-color: #ededed;
  border-color: #bbb;
  border-style: solid solid none solid;
  border-width: 1px;
  display: block;
  padding: 10px 15px;
  text-shadow: 0 1px 0 #fff;
}
.block--local-tasks-block ul li a:hover {
  background: #d4d4d4;
}

.block--local-tasks-block ul li a.is-active {
  background-color: #fff;
}

@media screen and (max-width: 37.5em) {
  /* 600px */
  .block--local-tasks-block ul {
    border-bottom: 1px solid #bbb;
  }
  .block--local-tasks-block ul li {
    display: block;
    margin: 0;
  }
  .block--local-tasks-block ul li a {
    padding: 5px 10px;
  }
  .block--local-tasks-block ul li.is-active a {
    border-bottom: none;
  }
}
@media screen and (min-width: 37.5em) {
  /* 600px */
  .block--local-tasks-block ul {
    border-collapse: collapse;
    height: auto;
    line-height: normal;
    padding: 0 3px;
    margin: 0;
    border: none;
    white-space: nowrap;
    border-bottom: 1px solid #ddd;
  }
  .block--local-tasks-block ul:after {
    display: block;
    clear: both;
    content: "";
  }
  .block--local-tasks-block ul li {
    display: block;
    float: left;
    /* LTR */
    vertical-align: bottom;
    margin: 0 5px 0 0;
    /* LTR */
  }
  [dir=rtl] .block--local-tasks-block ul li {
    margin: 0 0 0 5px;
    float: right;
  }
  .block--local-tasks-block ul li a {
    float: left;
    /* not LTR */
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  .block--local-tasks-block ul li.is-active a {
    border-bottom: 1px solid #fff;
  }
}
.block--local-tasks-block ul.secondary {
  border-bottom: none;
  margin: 5px;
  padding: 0.5em 0;
  overflow: hidden;
}

.block--local-tasks-block ul.secondary li {
  border-right: 1px solid #ccc;
  /* LTR */
  display: block;
  float: left;
  /* LTR */
  margin: 0;
  padding: 0 1em;
}

[dir=rtl] .block--local-tasks-block ul.secondary li {
  border-left: 1px solid #ccc;
  border-right: none;
  float: right;
}

.block--local-tasks-block ul.secondary li:last-child {
  border-right: none;
  /* LTR */
}

[dir=rtl] .block--local-tasks-block ul.secondary li:last-child {
  border-left: none;
}

.block--local-tasks-block ul.secondary li:first-child {
  padding-left: 0;
  /* LTR */
}

[dir=rtl] .block--local-tasks-block ul.secondary li:first-child {
  padding-right: 0;
}

.block--local-tasks-block ul.secondary li a {
  display: inline;
  padding: 0.25em 0.5em;
  text-decoration: none;
}

.block--local-tasks-block ul.secondary li a.is-active {
  background: #f2f2f2;
  border-bottom: none;
  border-radius: 5px;
}

.page-alert-block-hold {
  display: block;
  color: #000;
  background: #111;
}
@media (max-width: 1023px) {
  .page-alert-block-hold {
    font-size: 1.0625rem;
  }
}
@media (min-width: 1024px) {
  .page-alert-block-hold {
    font-size: 1.25rem;
  }
}
.page-alert-block-hold .row > div, .page-alert-block-hold .search-global .block__body > div, .search-global .page-alert-block-hold .block__body > div, .page-alert-block-hold .path--frontpage .paragraph .paragraph-content-wrap > div, .path--frontpage .paragraph .page-alert-block-hold .paragraph-content-wrap > div, .page-alert-block-hold .gift-voucher-block .block__body > div, .gift-voucher-block .page-alert-block-hold .block__body > div, .page-alert-block-hold .home-slider .carousel-cell .caption-wrap-frame > div, .home-slider .carousel-cell .page-alert-block-hold .caption-wrap-frame > div, .page-alert-block-hold .block-featured-content .block__body > div, .block-featured-content .page-alert-block-hold .block__body > div {
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}
@media (max-width: 1023px) {
  .page-alert-block-hold .row > div, .page-alert-block-hold .search-global .block__body > div, .search-global .page-alert-block-hold .block__body > div, .page-alert-block-hold .path--frontpage .paragraph .paragraph-content-wrap > div, .path--frontpage .paragraph .page-alert-block-hold .paragraph-content-wrap > div, .page-alert-block-hold .gift-voucher-block .block__body > div, .gift-voucher-block .page-alert-block-hold .block__body > div, .page-alert-block-hold .home-slider .carousel-cell .caption-wrap-frame > div, .home-slider .carousel-cell .page-alert-block-hold .caption-wrap-frame > div, .page-alert-block-hold .block-featured-content .block__body > div, .block-featured-content .page-alert-block-hold .block__body > div {
    padding: 1.5rem 0;
  }
}
@media (min-width: 1024px) {
  .page-alert-block-hold .row > div, .page-alert-block-hold .search-global .block__body > div, .search-global .page-alert-block-hold .block__body > div, .page-alert-block-hold .path--frontpage .paragraph .paragraph-content-wrap > div, .path--frontpage .paragraph .page-alert-block-hold .paragraph-content-wrap > div, .page-alert-block-hold .gift-voucher-block .block__body > div, .gift-voucher-block .page-alert-block-hold .block__body > div, .page-alert-block-hold .home-slider .carousel-cell .caption-wrap-frame > div, .home-slider .carousel-cell .page-alert-block-hold .caption-wrap-frame > div, .page-alert-block-hold .block-featured-content .block__body > div, .block-featured-content .page-alert-block-hold .block__body > div {
    padding: 2.25rem 0;
  }
}
@media (min-width: 1024px) {
  .header-shrunk .page-alert-block-hold .row > div, .header-shrunk .page-alert-block-hold .search-global .block__body > div, .search-global .header-shrunk .page-alert-block-hold .block__body > div, .header-shrunk .page-alert-block-hold .path--frontpage .paragraph .paragraph-content-wrap > div, .path--frontpage .paragraph .header-shrunk .page-alert-block-hold .paragraph-content-wrap > div, .header-shrunk .page-alert-block-hold .gift-voucher-block .block__body > div, .gift-voucher-block .header-shrunk .page-alert-block-hold .block__body > div, .header-shrunk .page-alert-block-hold .home-slider .carousel-cell .caption-wrap-frame > div, .home-slider .carousel-cell .header-shrunk .page-alert-block-hold .caption-wrap-frame > div, .header-shrunk .page-alert-block-hold .block-featured-content .block__body > div, .block-featured-content .header-shrunk .page-alert-block-hold .block__body > div {
    padding: 1.5rem 0;
  }
}
.page-alert-block-hold.has-font-awesome-icon p {
  padding-left: 45px;
}
.page-alert-block-hold.has-font-awesome-icon .fontawesome-icon-inline {
  position: absolute;
  left: 0;
}
.page-alert-block-hold p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
  position: relative;
}
.page-alert-block-hold p:last-child {
  margin-bottom: 0;
}
.page-alert-block-hold .fontawesome-icon-inline {
  color: #000;
  margin-right: 3px;
  margin-bottom: 4px;
}
.page-alert-block-hold a {
  color: #000;
  border-bottom: 2px solid #000;
}
.page-alert-block-hold a:hover {
  border-color: #fdeefc;
}

.layout-banner {
  position: relative;
  font-family: "Source Serif Pro", serif;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .layout-banner .banner-frame {
    padding: 1.8rem 0;
  }
}
@media (min-width: 1024px) {
  .layout-banner .banner-frame {
    padding: 3rem 0;
  }
}
.page--node-type-page .layout-banner .banner-frame {
  padding: 0;
}
@media (max-width: 479px) {
  .layout-banner__image article {
    min-width: 500px;
    position: relative;
    left: 50%;
  }
}
@media (max-width: 479px) {
  .layout-banner__image article img {
    position: relative;
    left: -50%;
  }
}
.layout-banner .banner-title-holder {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.layout-banner img {
  width: 100%;
}
.layout-banner .row, .layout-banner .search-global .block__body, .search-global .layout-banner .block__body, .layout-banner .path--frontpage .paragraph .paragraph-content-wrap, .path--frontpage .paragraph .layout-banner .paragraph-content-wrap, .layout-banner .gift-voucher-block .block__body, .gift-voucher-block .layout-banner .block__body, .layout-banner .home-slider .carousel-cell .caption-wrap-frame, .home-slider .carousel-cell .layout-banner .caption-wrap-frame, .layout-banner .block-featured-content .block__body, .block-featured-content .layout-banner .block__body {
  width: 100%;
}
.layout-banner .row h1, .layout-banner .search-global .block__body h1, .search-global .layout-banner .block__body h1, .layout-banner .path--frontpage .paragraph .paragraph-content-wrap h1, .path--frontpage .paragraph .layout-banner .paragraph-content-wrap h1, .layout-banner .gift-voucher-block .block__body h1, .gift-voucher-block .layout-banner .block__body h1, .layout-banner .home-slider .carousel-cell .caption-wrap-frame h1, .home-slider .carousel-cell .layout-banner .caption-wrap-frame h1, .layout-banner .block-featured-content .block__body h1, .block-featured-content .layout-banner .block__body h1 {
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
@media (max-width: 479px) {
  .layout-banner .row h1, .layout-banner .search-global .block__body h1, .search-global .layout-banner .block__body h1, .layout-banner .path--frontpage .paragraph .paragraph-content-wrap h1, .path--frontpage .paragraph .layout-banner .paragraph-content-wrap h1, .layout-banner .gift-voucher-block .block__body h1, .gift-voucher-block .layout-banner .block__body h1, .layout-banner .home-slider .carousel-cell .caption-wrap-frame h1, .home-slider .carousel-cell .layout-banner .caption-wrap-frame h1, .layout-banner .block-featured-content .block__body h1, .block-featured-content .layout-banner .block__body h1 {
    font-size: 1.875rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .layout-banner .row h1, .layout-banner .search-global .block__body h1, .search-global .layout-banner .block__body h1, .layout-banner .path--frontpage .paragraph .paragraph-content-wrap h1, .path--frontpage .paragraph .layout-banner .paragraph-content-wrap h1, .layout-banner .gift-voucher-block .block__body h1, .gift-voucher-block .layout-banner .block__body h1, .layout-banner .home-slider .carousel-cell .caption-wrap-frame h1, .home-slider .carousel-cell .layout-banner .caption-wrap-frame h1, .layout-banner .block-featured-content .block__body h1, .block-featured-content .layout-banner .block__body h1 {
    font-size: 2.8125rem;
  }
}
@media (min-width: 1024px) {
  .layout-banner .row h1, .layout-banner .search-global .block__body h1, .search-global .layout-banner .block__body h1, .layout-banner .path--frontpage .paragraph .paragraph-content-wrap h1, .path--frontpage .paragraph .layout-banner .paragraph-content-wrap h1, .layout-banner .gift-voucher-block .block__body h1, .gift-voucher-block .layout-banner .block__body h1, .layout-banner .home-slider .carousel-cell .caption-wrap-frame h1, .home-slider .carousel-cell .layout-banner .caption-wrap-frame h1, .layout-banner .block-featured-content .block__body h1, .block-featured-content .layout-banner .block__body h1 {
    font-size: 3.5625rem;
  }
}
.layout-banner .wrap {
  display: inline-block;
  vertical-align: top;
}
.page--node-type-page .layout-banner .block--page-title-block {
  background: #fff;
  color: #000;
  padding: 5px 18px !important;
  position: relative;
  z-index: 1;
}
.page--node-type-page .layout-banner .block--page-title-block h1 {
  color: #333;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.layout-banner h1 {
  margin: 0;
  line-height: 1.25;
}
.layout-banner p:last-child {
  margin-bottom: 0;
}
.layout-banner--no-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-image: url("../img/default-banner-image.jpg");
  position: relative;
  z-index: 1;
}
.layout-banner--no-image:after {
  background: #000;
  opacity: 0.4;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.home-slider {
  overflow: hidden;
}
.home-slider .flickity-page-dots {
  bottom: 10px;
  z-index: 10;
}
@media (min-width: 768px) {
  .home-slider .flickity-page-dots {
    left: auto;
    max-width: 200px;
    right: -30px;
  }
}
.home-slider .carousel-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  background-size: cover;
  background-position: 50% 50%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px) {
  .home-slider .carousel-cell {
    color: #000;
  }
}
@media (min-width: 768px) {
  .home-slider .carousel-cell {
    color: #fff;
  }
}
@media (min-width: 1024px) {
  .home-slider .carousel-cell {
    font-size: 1.375rem;
  }
}
@media (max-width: 1023px) {
  .home-slider .carousel-cell {
    font-size: 1.125rem;
  }
}
.home-slider .carousel-cell__image {
  width: 100%;
  position: relative;
}
.home-slider .carousel-cell__image:before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
}
.home-slider .carousel-cell__image-frame {
  position: relative;
  left: 50%;
  min-width: 420px;
}
.home-slider .carousel-cell__image-frame img {
  position: relative;
  left: -50%;
  width: 100%;
}
.home-slider .carousel-cell .caption-wrap {
  width: 100% !important;
}
@media (max-width: 767px) {
  .home-slider .carousel-cell .caption-wrap {
    padding-top: 20px;
    padding-bottom: 50px;
    background: #fff;
    position: relative;
    z-index: 2;
    border-radius: 7px 7px 0 0;
  }
}
@media (max-width: 479px) {
  .home-slider .carousel-cell .caption-wrap {
    margin: -20px 20px 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .home-slider .carousel-cell .caption-wrap {
    margin: -50px 25px 0;
  }
}
@media (min-width: 768px) {
  .home-slider .carousel-cell .caption-wrap {
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
  }
}
.home-slider .carousel-cell .caption-wrap-frame {
  padding-right: 1%;
}
@media (max-width: 767px) {
  .home-slider .carousel-cell .caption-wrap-frame {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .home-slider .carousel-cell .caption-wrap-frame .description-hold {
    padding-right: 25%;
  }
}
.home-slider .carousel-cell p {
  margin-bottom: 0;
}
.home-slider__title {
  font-weight: 800;
  color: #fff;
  display: block;
  letter-spacing: 1px;
  font-family: "Source Serif Pro", serif;
  position: relative;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .home-slider__title {
    color: #000;
  }
}
@media (min-width: 768px) {
  .home-slider__title {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    color: #fff;
  }
}
@media (min-width: 768px) {
  .home-slider__text {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  }
}
.home-slider__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
}
@media (max-width: 767px) {
  .home-slider__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1023px) {
  .home-slider__links {
    padding-top: 1.35rem;
  }
}
@media (min-width: 1024px) {
  .home-slider__links {
    padding-top: 2.25rem;
  }
}
.home-slider__links li {
  padding: 5px;
}
@media (max-width: 767px) {
  .home-slider__links li.link-book-now-hold {
    display: none;
  }
}
.home-slider h2 {
  color: #fff;
}

.event-node-page__content-wrap {
  margin: 0 -15px;
}
.event-node-page__content-wrap:after {
  content: "";
  clear: both;
  display: block;
}
.event-node-page__image, .event-node-page__main-content {
  padding: 0 15px;
}
@media (max-width: 639px) {
  .event-node-page__image {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 640px) {
  .event-node-page__image {
    float: right;
    max-width: 50%;
    margin: 0 0 15px;
  }
}
.event-node-page__image img {
  -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
}
.event-node-page .field--name-field-event-date .field__label,
.event-node-page .field--name-field-event-date .field__item {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 0 100% !important;
          flex: 1 0 100% !important;
  max-width: 100% !important;
}
.event-node-page .field--name-field-event-date .field__item {
  padding-top: 3px;
  padding-bottom: 3px;
}
.event-node-page .field--name-field-event-date .field__item:after {
  display: none;
}

.event-article-item--list h2 {
  color: #fdeefc;
}
.event-article-item--list h3 {
  color: #000;
}

.event-article-item {
  border-bottom: 2px solid #ccc;
  color: #333741;
}
@media (max-width: 479px) {
  .event-article-item {
    padding: 1.05rem 0;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .event-article-item {
    padding: 1.5rem 0;
  }
}
@media (min-width: 1024px) {
  .event-article-item {
    padding: 2.25rem 0;
  }
}
@media print {
  .event-article-item {
    padding: 1.25rem 0.9375rem;
  }
}
.event-article-item__wrap {
  margin: 0 -15px;
}
@media (min-width: 640px) {
  .event-article-item__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.event-article-item__image {
  padding: 0 15px;
}
@media (max-width: 639px) {
  .event-article-item__image {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .event-article-item__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
    max-width: 33%;
  }
}
@media (min-width: 1024px) {
  .event-article-item__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 226px;
            flex: 1 0 226px;
    max-width: 226px;
  }
}
@media print {
  .event-article-item__image {
    display: none !important;
  }
}
.event-article-item__image img {
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  width: 100%;
  -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
}
.event-article-item__image a {
  display: block;
  border: none !important;
}
.event-article-item__image a:hover img, .event-article-item__image a:focus img {
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.35);
}
.event-article-item__text-hold {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .event-article-item__text-hold {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
  }
}
@media (min-width: 1024px) {
  .event-article-item__text-hold {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 10%;
            flex: 1 0 10%;
  }
}
.event-article-item__text-hold-frame {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}
.event-article-item__data-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5px 0;
}
.event-article-item__data-label {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .event-article-item__data-label {
    padding-right: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 90px;
            flex: 1 0 90px;
    max-width: 90px;
  }
}
@media (min-width: 1024px) {
  .event-article-item__data-label {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100px;
            flex: 1 0 100px;
    padding-right: 15px;
    max-width: 100px;
  }
}
.event-article-item__data-value {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
}
@media (max-width: 1023px) {
  .event-article-item__data-value {
    max-width: calc(100% - 90px);
    word-break: break-all;
  }
}
@media (min-width: 1024px) {
  .event-article-item__data-value {
    max-width: calc(100% - 100px);
  }
}
.event-article-item__data-value ul li + li {
  padding-top: 5px;
}
.event-article-item__summary {
  padding-top: 10px;
}
.event-article-item h3 {
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.2;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .event-article-item h3 {
    font-size: 1.1875rem;
  }
}
@media (min-width: 1024px) {
  .event-article-item h3 {
    font-size: 1.625rem;
  }
}
@media print {
  .event-article-item h3 {
    border: 0 !important;
  }
}
.event-article-item h3 a {
  color: #000;
  border-bottom: 2px solid transparent !important;
}
.event-article-item h3 a:hover, .event-article-item h3 a:focus {
  border-color: #f68123 !important;
}
.event-article-item__date {
  color: #444;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
@media (max-width: 1023px) {
  .event-article-item__date {
    padding: 7px 0;
  }
}
@media (min-width: 1024px) {
  .event-article-item__date {
    padding: 10px 0;
  }
}

.fancybox-caption {
  text-align: left;
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
}
@media (min-width: 768px) {
  .fancybox-caption {
    font-size: 20px;
    font-weight: 400;
  }
}
.fancybox-caption__body {
  border-top: 1px solid rgba(204, 204, 204, 0.4);
  padding-top: 15px;
}

@media (min-width: 768px) {
  .fancybox-infobar {
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .fancybox-navigation {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    z-index: 100000;
  }
}

.fancybox-toolbar {
  background: #f07ce8;
  border-radius: 0 0 0 5px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fancybox-toolbar {
    visibility: visible;
    opacity: 1;
  }
}
.fancybox-toolbar .fancybox-button {
  background: #f07ce8;
  opacity: 1;
  color: #fff;
}
.fancybox-toolbar .fancybox-button:hover, .fancybox-toolbar .fancybox-button:focus {
  color: #fff;
  background: #000;
}

.fancybox-navigation .fancybox-button {
  background: #f07ce8;
  color: #fff !important;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 12px;
  line-height: 1;
  -webkit-transition: 300ms ease-in-out all;
  -o-transition: 300ms ease-in-out all;
  transition: 300ms ease-in-out all;
}
@media (min-width: 768px) {
  .fancybox-navigation .fancybox-button {
    position: relative;
    visibility: visible;
    opacity: 1;
  }
}
.fancybox-navigation .fancybox-button:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  font-size: 14px;
  line-height: 1;
}
.fancybox-navigation .fancybox-button div {
  display: none !important;
}

.fancybox-navigation .fancybox-button:not(:disabled):hover {
  color: #fff;
  background: #000;
}

@media (min-width: 768px) {
  .fancybox-navigation .fancybox-button--arrow_left {
    border-radius: 0 0 5px 5px;
    margin-right: 50px;
  }
}
.fancybox-navigation .fancybox-button--arrow_left:after {
  content: "\e90b";
}

@media (min-width: 768px) {
  .fancybox-navigation .fancybox-button--arrow_right {
    border-radius: 0 0 5px 5px;
    margin-left: 50px;
  }
}
.fancybox-navigation .fancybox-button--arrow_right:after {
  content: "\e90a";
}

.fancybox-infobar {
  color: #fff;
}
@media (min-width: 768px) {
  .fancybox-infobar {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .fancybox-infobar {
    font-size: 18px;
  }
}

.gift-voucher-block {
  background: #fdeefc;
}
@media (max-width: 639px) {
  .gift-voucher-block {
    padding: 2.55rem 0;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .gift-voucher-block {
    padding: 3.75rem 0;
  }
}
@media (min-width: 1024px) {
  .gift-voucher-block {
    padding: 5.25rem 0;
  }
}
.gift-voucher-block .block__body {
  text-align: center;
}
.gift-voucher-block h2 {
  margin: 0 0 1.5rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 3px;
}
@media (max-width: 1023px) {
  .gift-voucher-block h2 {
    margin: 0 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .gift-voucher-block h2 {
    margin: 0 0 2.25rem;
  }
}
.gift-voucher-block h2:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 50px;
  height: 2px;
  content: "";
  background: #f07ce8;
  position: absolute;
  bottom: 2px;
  opacity: 0.4;
}
.gift-voucher-block .gift-voucher__btn-hold a {
  min-width: 200px;
  text-align: center;
  border-radius: 30px;
  letter-spacing: 1px;
}

.page-header-container {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #fff;
}
@media (max-width: 767px) {
  .page-header-container {
    -webkit-box-shadow: 0 5px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 0 5px 4px rgba(0, 0, 0, 0.15);
    background-color: #fff;
  }
}
@media (min-width: 768px) {
  .page-header-container.header-shrunk {
    -webkit-box-shadow: 0 5px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 0 5px 4px rgba(0, 0, 0, 0.15);
  }
}

.page-header {
  position: relative;
}

.page-header-main {
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 100;
}
@media (min-width: 768px) {
  .page-header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-header-main {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .page-header-main {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.page-header-logo {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
@media (max-width: 767px) {
  .page-header-logo {
    max-width: 160px;
    padding: 10px 0;
  }
}
@media (min-width: 768px) {
  .page-header-logo {
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-header-logo {
    padding: 5px 5px 5px 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    max-width: 160px;
  }
}
@media (min-width: 1024px) {
  .page-header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    max-width: 250px;
    padding: 5px 6px 5px 5px;
  }
}
@media (min-width: 1024px) {
  .header-shrunk .page-header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    max-width: 160px;
  }
}
.page-header-logo .site-logo {
  width: 100%;
  display: block;
}
.page-header-logo svg {
  width: 100%;
}

.page-header-bottom {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .page-header-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-header-bottom {
    max-width: calc(100% - 160px);
  }
}
@media (min-width: 1024px) {
  .page-header-bottom {
    max-width: calc(100% - 250px);
  }
}
@media (min-width: 1024px) {
  .header-shrunk .page-header-bottom {
    max-width: calc(100% - 160px);
  }
}

.link--icon-search {
  background-color: transparent;
  border: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-indent: -9999px;
}
@media (max-width: 767px) {
  .link--icon-search {
    right: 60px;
    top: 11px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    bottom: auto;
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .link--icon-search {
    right: 115px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .link--icon-search {
    padding: 0 0 18px;
    width: 45px;
  }
}
@media (min-width: 1024px) {
  .link--icon-search {
    padding: 5px 0 27px;
    width: 50px;
  }
}
.link--icon-search:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #000 !important;
  text-indent: 0;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  .link--icon-search:before {
    display: block;
    font-size: 140%;
    margin: -2px 10px 0 0 !important;
    line-height: 45px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .link--icon-search:before {
    font-size: 140%;
    line-height: 1;
    margin: -5px 10px 0 0 !important;
  }
}
@media (min-width: 1024px) {
  .link--icon-search:before {
    font-size: 140%;
    line-height: 1;
    margin: -9px 10px 0 0 !important;
  }
}
.link--icon-search:after {
  left: 0;
  right: 0;
  bottom: 0;
  background: #f07ce8;
  content: "";
  position: absolute;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .link--icon-search:after {
    height: 5px;
  }
}
@media (min-width: 1024px) {
  .link--icon-search:after {
    height: 7px;
  }
}
.link--icon-search:focus, .link--icon-search:hover {
  outline: 3px solid #f07ce8;
  outline-offset: 2px;
}
.link--icon-search:focus:after, .link--icon-search:hover:after {
  background: #000;
}
@media (min-width: 1024px) {
  .header-shrunk .link--icon-search {
    padding-bottom: 10px;
  }
}

/**
 * sticky header
 */
/**
 * Desktop navigation
*/
/**
   * Main nav
  */
.block--responsive-menu {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .block--responsive-menu {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (min-width: 1024px) {
  .block--responsive-menu {
    margin-left: -12px;
    margin-right: -12px;
  }
}
@media (min-width: 768px) {
  .block--responsive-menu {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
.block--responsive-menu .block__body {
  width: 100%;
  height: 100%;
}
.block--responsive-menu li {
  font-weight: 700;
}
.block--responsive-menu a {
  color: #000;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-weight: 700;
}
.block--responsive-menu a:hover, .block--responsive-menu a:focus {
  color: #f07ce8;
  text-decoration: none;
}

.horizontal-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .horizontal-menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.horizontal-menu .hidden {
  display: none !important;
}
.horizontal-menu .tertiary .sub-nav {
  right: 100% !important;
  left: auto !important;
}
.horizontal-menu > li {
  line-height: 1.2;
  position: relative;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .horizontal-menu > li {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .horizontal-menu > li {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 1.0625rem;
  }
}
.horizontal-menu > li.sfHover > a, .horizontal-menu > li:hover > a, .horizontal-menu > li:focus > a {
  cursor: pointer;
  color: #f07ce8;
  background: transparent;
}
.horizontal-menu > li.sfHover > a, .horizontal-menu > li:hover > a {
  cursor: pointer;
  color: #f07ce8;
  background: transparent;
}
.horizontal-menu > li.menu-item--active-trail > a:after {
  opacity: 1;
}
.horizontal-menu > li > a {
  background: transparent;
  position: relative;
  display: block;
  padding: 5px 1px 5px;
}
.horizontal-menu > li > a.is-active:after {
  opacity: 1;
}
.horizontal-menu > li > a:after {
  left: 0;
  right: 0;
  bottom: 0;
  background: #f07ce8;
  content: "";
  position: absolute;
  -webkit-transition: 300ms ease-in-out all;
  -o-transition: 300ms ease-in-out all;
  transition: 300ms ease-in-out all;
  height: 2px;
  opacity: 0;
}
.horizontal-menu > li .main-nav-link__book-now {
  border: 2px solid #111;
  padding: 7px 15px;
  border-radius: 3px;
  text-transform: uppercase;
  border-radius: 40px;
}
.horizontal-menu > li .main-nav-link__book-now:hover, .horizontal-menu > li .main-nav-link__book-now:focus {
  border-color: #f07ce8;
  color: #f07ce8;
}
.horizontal-menu > li .main-nav-link__book-now:after {
  display: none;
}

.horizontal-menu > li ul ul {
  left: 100%;
  top: 0;
}

.horizontal-menu ul .fly-left ul {
  left: auto;
  right: 100%;
}

.horizontal-menu > li ul {
  background-color: #fff;
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 12em;
  list-style: none;
  text-align: left;
  line-height: 2.25rem;
  -webkit-box-shadow: 0 5px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 4px rgba(0, 0, 0, 0.15);
}
.horizontal-menu > li ul .menu-item--expanded {
  position: relative;
}
.horizontal-menu > li ul .menu-item--expanded > a {
  position: relative;
}
.horizontal-menu > li ul .menu-item--expanded > a:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  position: absolute;
  right: 0;
  top: 18px;
  right: 10px;
  font-size: 80%;
  color: #fdeefc;
  margin: 0;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.horizontal-menu > li ul li.sfHover > a {
  border-left: 5px solid #f07ce8;
  color: #000;
  background: #fdeefc;
  padding-right: 1.25rem;
}
.horizontal-menu > li ul li.sfHover > a:before {
  color: #fff;
}
.horizontal-menu > li ul a {
  padding: 14px 25px 14px 20px;
  line-height: 1.2;
  font-size: 0.9375rem;
  text-decoration: none;
  color: #000;
  text-transform: none;
  border-left: 0 solid #f07ce8;
  font-weight: 600;
}
.horizontal-menu > li ul a:hover, .horizontal-menu > li ul a:focus {
  border-left: 5px solid #f07ce8;
  color: #000;
  background: #fdeefc;
  padding-right: 1.25rem;
}
.horizontal-menu > li ul a:hover:before, .horizontal-menu > li ul a:focus:before {
  color: #fff;
}
.horizontal-menu > li ul .menu-item--active-trail > a {
  border-left: 5px solid #f07ce8;
  color: #000;
  background: #fdeefc;
  padding-right: 1.25rem;
}
.horizontal-menu > li ul .menu-item--active-trail > a:before {
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .horizontal-menu > li > ul {
    margin-left: 8px;
  }
}
@media (min-width: 1024px) {
  .horizontal-menu > li > ul {
    margin-left: 12px;
  }
}

.horizontal-menu ul ul a {
  background-color: whitesmoke;
  z-index: 1;
  position: relative;
}

.horizontal-menu > li:last-child ul,
.horizontal-menu > li:nth-last-child(2) ul {
  right: 0;
  left: auto;
}

.horizontal-menu li.sfHover > ul,
.horizontal-menu li:hover > ul {
  display: block;
}

.horizontal-menu li li {
  position: relative;
  float: left;
  width: 100%;
}

.horizontal-menu > li > li:hover > ul,
.horizontal-menu > li > li.sfHover > ul {
  display: block;
}

/** 
 * Mobile navigation styles.
 */
.mm-menu .menu-item--collapser {
  display: none !important;
}

.mm-panels *:focus {
  outline: none !important;
}

.mm-panel {
  color: #000;
  background-color: #f5aaf0;
  border-color: #f5aaf0;
}

.responsive-menu-block-wrapper {
  display: none;
}

@media (max-width: 767px) {
  .mm-wrapper_opened {
    overflow: hidden;
    position: fixed;
  }
}

.mm-menu.mm-offcanvas.mm-opened {
  z-index: 1000;
}

.mm-navbar {
  height: 51px;
  background: #f5aaf0;
  color: #000;
  border-bottom: 1px solid rgba(253, 238, 252, 0.5);
}

.mm-panels > .mm-panel.mm-hasnavbar {
  padding-top: 51px;
}

.mm-title {
  text-transform: uppercase;
  font-weight: 700;
  padding: 1.05rem;
}

.mm-listview {
  font-size: 1pxrem;
  font-weight: 700;
}

.mm-listview > li > a,
.mm-listview > li > span {
  padding: 1.05rem;
}

.mm-listview > li:not(.mm-divider):after {
  left: 0;
}

.mm-opening .toolbar-tray-open.toolbar-fixed.toolbar-vertical,
.mm-opened .toolbar-tray-open.toolbar-fixed.toolbar-vertical {
  margin-left: 0;
}

.mm-opening .toolbar-tray-open.toolbar-fixed.toolbar-vertical .mm-page,
.mm-opened .toolbar-tray-open.toolbar-fixed.toolbar-vertical .mm-page {
  padding-left: 240px;
  padding-left: 15rem;
}

.off-canvas-wrapper {
  display: block;
}

.no-js .off-canvas-wrapper {
  display: none;
}

.responsive-menu-toggle {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 3333;
  right: 0;
}

.responsive-menu-toggle-icon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 47px;
  height: 42px;
  z-index: 4;
  margin-top: 0;
  position: relative;
  background: #f07ce8;
  border-radius: 2px;
  color: #fff;
}

.no-js .responsive-menu-toggle-icon {
  display: none;
}

.responsive-menu-toggle-icon span.label {
  display: none;
}

.mm-wrapper--opened .responsive-menu-toggle-icon span.icon {
  left: 13px;
  top: 50%;
  -webkit-transform: rotate(-45deg) !important;
      -ms-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
  margin-top: -3px;
}

.responsive-menu-toggle-icon:before,
.responsive-menu-toggle-icon:after,
.responsive-menu-toggle-icon span.icon {
  top: 32%;
  left: 13px;
  border-radius: 2px;
  background: #fff;
}

.responsive-menu-toggle-icon:before {
  top: 45%;
}

.responsive-menu-toggle-icon:after {
  top: 60%;
}

.mm-wrapper--opened .responsive-menu-toggle-icon:before,
.mm-wrapper--opened .responsive-menu-toggle-icon:after {
  top: 19px !important;
}

.mm-wrapper--opened .responsive-menu-toggle-icon:before,
.mm-wrapper--opened .responsive-menu-toggle-icon:after {
  top: 50% !important;
  margin-top: -3px !important;
  -webkit-transform: rotate(45deg) !important;
      -ms-transform: rotate(45deg) !important;
          transform: rotate(45deg) !important;
}

@media (max-width: 767px) {
  #block-topmenu {
    display: none;
  }
}

@media (max-width: 767px) {
  .block--responsive-menu {
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
  }
}

.mm-listview > li .mm-next:after,
.mm-btn:after,
.mm-btn:before {
  border-color: rgba(0, 0, 0, 0.8);
}

.mm-listview > li,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next:before,
.mm-listview > li:after {
  border-color: rgba(253, 238, 252, 0.5);
}

.mm-panels .menu li.menu-item--active-trail > a,
.mm-panels .mm-listview li.menu-item--active-trail > a {
  color: #000;
  background: rgba(0, 0, 0, 0.15);
}
.mm-panels .menu li a,
.mm-panels .mm-listview li a {
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  color: #000;
}
.mm-panels .menu li a:hover, .mm-panels .menu li a.is-active,
.mm-panels .mm-listview li a:hover,
.mm-panels .mm-listview li a.is-active {
  color: #000;
  background: rgba(0, 0, 0, 0.15);
}
.mm-panels .menu li span,
.mm-panels .mm-listview li span {
  position: relative;
  z-index: 2;
  width: calc(100% - 50px);
}
.mm-panels .menu li span:hover,
.mm-panels .mm-listview li span:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}
.mm-panels .header-top-menu__link--left-align {
  display: none !important;
}

.mm-listview > li:not(.mm-divider):after {
  border-color: rgba(253, 238, 252, 0.5);
}

.mm-btn {
  text-align: center;
  width: 50px;
  height: 50px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.mm-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}

.mm-wrapper__blocker {
  background: #000;
}

.page-header-top {
  color: #000;
}
@media (max-width: 767px) {
  .page-header-top {
    position: static;
  }
}
@media (min-width: 768px) {
  .page-header-top {
    position: relative;
    background: #fdeefc;
    color: #000;
  }
}
@media (max-width: 767px) {
  .page-header-top > .row, .search-global .page-header-top > .block__body, .path--frontpage .paragraph .page-header-top > .paragraph-content-wrap, .block-featured-content .page-header-top > .block__body, .home-slider .carousel-cell .page-header-top > .caption-wrap-frame, .gift-voucher-block .page-header-top > .block__body {
    position: static;
  }
}
@media (min-width: 768px) {
  .page-header-top > .row, .search-global .page-header-top > .block__body, .path--frontpage .paragraph .page-header-top > .paragraph-content-wrap, .block-featured-content .page-header-top > .block__body, .home-slider .carousel-cell .page-header-top > .caption-wrap-frame, .gift-voucher-block .page-header-top > .block__body {
    position: relative;
  }
}
.page-header-top__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-header-top__info-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .page-header-top__info-block {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 65%;
            flex: 1 0 65%;
    max-width: 65%;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .page-header-top__social-block {
    display: none;
  }
}
@media (min-width: 768px) {
  .page-header-top__social-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .page-header-top__social-block {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 35%;
            flex: 1 0 35%;
    max-width: 35%;
    padding-left: 15px;
  }
}
.page-header-top__social-block .social-networks a:hover, .page-header-top__social-block .social-networks a:focus {
  color: #f07ce8;
}
.page-header-top__social-block .social-networks a:hover:after, .page-header-top__social-block .social-networks a:focus:after {
  color: #f07ce8;
}
.page-header-top .contact-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45px;
    z-index: 10;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list li {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    max-width: 50%;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .page-header-top .contact-info-list li {
    padding: 5px 7px;
  }
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list__phone {
    position: relative;
  }
}
.page-header-top .contact-info-list__phone a span {
  padding-left: 20px;
}
.page-header-top .contact-info-list__phone a span:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list__phone a span:before {
    top: 2px;
  }
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list__phone:after {
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ed65e4;
    content: "";
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list__email {
    display: none;
  }
}
.page-header-top .contact-info-list__email a span {
  padding-left: 25px;
}
.page-header-top .contact-info-list__email a span:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-header-top .contact-info-list__book {
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-header-top .contact-info-list__book {
    display: none;
  }
}
.page-header-top .contact-info-list__book a span {
  padding-left: 25px;
}
.page-header-top .contact-info-list__book a span:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list__book a span:before {
    top: 1px;
  }
}
.page-header-top .contact-info-list a {
  position: relative;
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list a {
    color: #fff;
    display: block;
    line-height: 45px;
    background-color: #f07ce8;
  }
}
@media (min-width: 768px) {
  .page-header-top .contact-info-list a {
    color: #000;
  }
}
@media (min-width: 768px) {
  .page-header-top .contact-info-list a:hover, .page-header-top .contact-info-list a:focus {
    color: #f07ce8;
  }
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list a:hover, .page-header-top .contact-info-list a:focus {
    background: #ea4ee0;
    color: #fff;
  }
}
.page-header-top .contact-info-list a:before {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .page-header-top .contact-info-list a:before {
    color: #fdeefc;
  }
}
@media (min-width: 768px) {
  .page-header-top .contact-info-list a:before {
    color: #f07ce8;
  }
}

.layout-sidebar-second nav {
  background: #fdeefc;
}
@media (max-width: 767px) {
  .layout-sidebar-second nav {
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .layout-sidebar-second nav {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 1023px) {
  .layout-sidebar-second nav {
    padding: 1.25rem 1.25rem 0.75rem;
  }
}
@media (min-width: 1024px) {
  .layout-sidebar-second nav {
    padding: 2.0625rem 2.0625rem 0.75rem;
  }
}
.layout-sidebar-second nav h2 {
  font-weight: 900;
  color: #333;
  margin: 0;
  padding-bottom: 8px;
  line-height: 1.2;
  border-bottom: 4px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 639px) {
  .layout-sidebar-second nav h2 {
    font-size: 1.25rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .layout-sidebar-second nav h2 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .layout-sidebar-second nav h2 {
    font-size: 1.5rem;
  }
}
.layout-sidebar-second nav .menu > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.layout-sidebar-second nav .menu > li:last-child {
  border-bottom: 0;
}
.layout-sidebar-second nav li {
  line-height: 1.3;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  padding: 0.875rem 0;
}
.layout-sidebar-second nav li.menu-item--expanded {
  position: relative;
}
.layout-sidebar-second nav li.menu-item--expanded.menu-item--show > .menu-item--collapser a:after {
  border-bottom: 4px solid #333;
}
.layout-sidebar-second nav li.menu-item--expanded.menu-item--show > ul.js-acc-hidden {
  display: block !important;
}
.layout-sidebar-second nav li.menu-item--expanded ul {
  padding-top: 0.4375rem;
}
.layout-sidebar-second nav li.menu-item--expanded ul li {
  padding: 0.4375rem 0;
}
@media (min-width: 1024px) {
  .layout-sidebar-second nav li.menu-item--expanded ul li {
    padding: 0.75rem 0;
  }
}
.layout-sidebar-second nav li.menu-item--expanded ul li:last-child {
  padding-bottom: 0;
}
.layout-sidebar-second nav li.menu-item--expanded > a {
  display: inline-block;
  vertical-align: top;
  max-width: calc(100% - 30px);
}
.layout-sidebar-second nav .menu-item--collapser {
  position: absolute;
  right: 0;
  width: 20px;
  cursor: pointer;
}
.layout-sidebar-second nav .menu-item--collapser a {
  position: relative;
  display: block;
  font-size: 0;
  line-height: 0;
  border: 0 !important;
  height: 20px;
}
.layout-sidebar-second nav .menu-item--collapser a:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  right: 0;
  height: 5px;
  line-height: 0;
  font-size: 0;
  border-bottom: 4px dotted #333;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}
.layout-sidebar-second nav .menu-item--expanded ul {
  margin-left: 1.25rem;
}
.layout-sidebar-second nav .menu-item--expanded ul ul {
  margin-left: 1.875rem;
}
.layout-sidebar-second nav .menu-item--expanded ul ul li {
  padding: 0.4375rem 0;
}
.layout-sidebar-second nav .menu-item--expanded ul ul li {
  position: relative;
}
.layout-sidebar-second nav .menu-item--expanded ul ul li:after {
  position: absolute;
  top: 16px;
  left: -25px;
  content: "\e91b";
  font-size: 33%;
}
.layout-sidebar-second nav a {
  position: relative;
  color: #000;
  font-weight: 400;
  -webkit-transition: all ease-in-out 0.35s;
  -o-transition: all ease-in-out 0.35s;
  transition: all ease-in-out 0.35s;
  border-bottom: 2px solid transparent;
}
.layout-sidebar-second nav a:hover, .layout-sidebar-second nav a:focus {
  color: #f07ce8;
  text-decoration: none;
  border-color: #f68123;
}
.layout-sidebar-second nav a.is-active {
  font-weight: 600;
  color: #f07ce8;
  padding-right: 0;
  pointer-events: none;
}

.paragraph-wrapper:after {
  content: "";
  display: block;
  clear: both;
}

.page-type--basic-page .paragraph > .row, .page-type--basic-page .search-global .paragraph > .block__body, .search-global .page-type--basic-page .paragraph > .block__body, .page-type--basic-page .block-featured-content .paragraph > .block__body, .block-featured-content .page-type--basic-page .paragraph > .block__body, .page-type--basic-page .home-slider .carousel-cell .paragraph > .caption-wrap-frame, .home-slider .carousel-cell .page-type--basic-page .paragraph > .caption-wrap-frame, .page-type--basic-page .gift-voucher-block .paragraph > .block__body, .gift-voucher-block .page-type--basic-page .paragraph > .block__body, .page-type--basic-page .path--frontpage .paragraph > .paragraph-content-wrap, .path--frontpage .page-type--basic-page .paragraph > .paragraph-content-wrap {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 639px) {
  .paragraph.mt__ms {
    margin-top: 1.05rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .paragraph.mt__ms {
    margin-top: 1.35rem;
  }
}
@media (min-width: 1024px) {
  .paragraph.mt__ms {
    margin-top: 1.8rem;
  }
}
@media (max-width: 639px) {
  .paragraph.mt__mm {
    margin-top: 2.1rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .paragraph.mt__mm {
    margin-top: 2.7rem;
  }
}
@media (min-width: 1024px) {
  .paragraph.mt__mm {
    margin-top: 3.75rem;
  }
}
@media (max-width: 639px) {
  .paragraph.mt__ml {
    margin-top: 3.3rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .paragraph.mt__ml {
    margin-top: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .paragraph.mt__ml {
    margin-top: 6rem;
  }
}
.paragraph.mt__no-m {
  margin-top: 0;
}
@media (max-width: 639px) {
  .paragraph.mb__ms {
    margin-bottom: 1.05rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .paragraph.mb__ms {
    margin-bottom: 1.35rem;
  }
}
@media (min-width: 1024px) {
  .paragraph.mb__ms {
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 639px) {
  .paragraph.mb__mm {
    margin-bottom: 2.1rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .paragraph.mb__mm {
    margin-bottom: 2.7rem;
  }
}
@media (min-width: 1024px) {
  .paragraph.mb__mm {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 639px) {
  .paragraph.mb__ml {
    margin-bottom: 3.3rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .paragraph.mb__ml {
    margin-bottom: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .paragraph.mb__ml {
    margin-bottom: 6rem;
  }
}
.paragraph.mb__no-m {
  margin-bottom: 0;
}

@media (max-width: 639px) {
  .paragraph--type--accordion {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 640px) {
  .paragraph--type--accordion {
    margin-bottom: 3rem;
  }
}

.paragraph--type--accordion-item.active .accordion-block__label:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  margin: -1px 0 0;
}

.accordion-block__items {
  border: 1px solid #999;
  border-width: 0 1px 1px 1px;
}
.accordion-block__label {
  padding: 15px 20px 15px 40px;
  border-bottom: 0 !important;
  border-top: 1px solid #999 !important;
  color: #000;
  cursor: pointer;
  position: relative;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  display: block !important;
}
@media (max-width: 639px) {
  .accordion-block__label {
    font-size: 1rem;
  }
}
@media (min-width: 640px) {
  .accordion-block__label {
    font-size: 1.125rem;
  }
}
.accordion-block__label:before, .accordion-block__label:after {
  position: absolute;
  content: "";
  background: #000;
  -webkit-transition: 300ms ease-in-out all;
  -o-transition: 300ms ease-in-out all;
  transition: 300ms ease-in-out all;
}
.accordion-block__label:before {
  width: 3px;
  height: 20px;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  margin: 0;
}
@media (max-width: 639px) {
  .accordion-block__label:before {
    left: 19px;
    top: 18px;
  }
}
@media (min-width: 640px) {
  .accordion-block__label:before {
    left: 19px;
    top: 20px;
  }
}
.accordion-block__label:after {
  width: 20px;
  height: 3px;
}
@media (max-width: 639px) {
  .accordion-block__label:after {
    left: 11px;
    top: 26px;
  }
}
@media (min-width: 640px) {
  .accordion-block__label:after {
    left: 11px;
    top: 28px;
  }
}
.accordion-block__label:hover {
  opacity: 0.8;
}
.accordion-block__body {
  padding: 11px 20px 20px 40px;
}
@media (max-width: 639px) {
  .accordion-block__body {
    font-size: 0.875rem;
  }
}
@media (min-width: 640px) {
  .accordion-block__body {
    font-size: 1rem;
  }
}
.accordion-block__body p:last-child {
  margin-bottom: 0;
}

.card-items {
  margin: 0 -15px;
}
@media (min-width: 480px) {
  .card-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
}
.card-items .card-item {
  padding: 0 15px 30px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .card-items .card-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
    max-width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .card-items .card-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    max-width: 33.33%;
  }
}
@media (min-width: 1024px) {
  .card-items .card-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 25%;
            flex: 1 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page--has-sidebar-second .card-items .card-item, .page--has-sidebar-first .card-items .card-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  .page--has-sidebar-second .card-items .card-item, .page--has-sidebar-first .card-items .card-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
    max-width: 33.33%;
  }
}
.card-items img {
  width: 100%;
}

.card-item__description {
  padding: 15px;
  color: #000;
}
.card-item h3 {
  color: #fdeefc;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .card-item h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .card-item h3 {
    font-size: 1.25rem;
  }
}
.card-item__wrap {
  display: block !important;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.1);
}
.card-item__link {
  font-weight: 400;
  text-decoration: none !important;
  border: 0 !important;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}
.card-item__link:hover {
  -webkit-transform: translate(0, -2px);
      -ms-transform: translate(0, -2px);
          transform: translate(0, -2px);
  -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.35);
}

.paragraph--type--client-reviews-carousel {
  position: relative;
}
@media (min-width: 480px) and (max-width: 639px) {
  .paragraph--type--client-reviews-carousel {
    padding: 3rem 0;
  }
}
@media (max-width: 479px) {
  .paragraph--type--client-reviews-carousel {
    padding: 3rem 0 4.35rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .paragraph--type--client-reviews-carousel {
    padding: 3.6rem 0;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--client-reviews-carousel {
    padding: 4.5rem 0;
  }
}
.paragraph--type--client-reviews-carousel:after, .paragraph--type--client-reviews-carousel:before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: 1;
}
.paragraph--type--client-reviews-carousel:before {
  background: url("../img/client-reviews-bg.jpg") no-repeat fixed 50% 50%/cover;
}
.paragraph--type--client-reviews-carousel:after {
  background: rgba(0, 0, 0, 0.75);
}
@media (max-width: 479px) {
  .paragraph--type--client-reviews-carousel .flickity-enabled {
    position: static;
  }
}
@media (max-width: 479px) {
  .paragraph--type--client-reviews-carousel .flickity-prev-next-button {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    top: auto;
    bottom: -4.35rem;
    border-radius: 0;
  }
}
@media (max-width: 479px) {
  .paragraph--type--client-reviews-carousel .flickity-prev-next-button.previous {
    left: auto;
    right: 61px;
  }
}
.paragraph--type--client-reviews-carousel .paragraph-content-wrap {
  position: relative;
  z-index: 2;
  color: #fff;
}
@media (min-width: 1024px) {
  .paragraph--type--client-reviews-carousel .paragraph-content-wrap {
    max-width: 900px !important;
  }
}
@media (min-width: 480px) {
  .paragraph--type--client-reviews-carousel .paragraph-content-wrap {
    padding-left: 95px !important;
    padding-right: 95px !important;
  }
}
.paragraph--type--client-reviews-carousel .paragraph-content-wrap > h2 {
  text-align: center;
  margin-bottom: 2.25rem;
}
.paragraph--type--client-reviews-carousel .paragraph-content-wrap h2,
.paragraph--type--client-reviews-carousel .paragraph-content-wrap h3,
.paragraph--type--client-reviews-carousel .paragraph-content-wrap h4 {
  color: #fff;
}
@media (min-width: 480px) {
  .paragraph--type--client-reviews-carousel .flickity-enabled .flickity-prev-next-button.next {
    right: -74px;
  }
}
@media (min-width: 480px) {
  .paragraph--type--client-reviews-carousel .flickity-enabled .flickity-prev-next-button.previous {
    left: -74px;
  }
}

.testimonial-item {
  text-align: center;
}
.testimonial-item__image {
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media (max-width: 639px) {
  .testimonial-item__image {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
  }
}
.testimonial-item__image img {
  border-radius: 100%;
  -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.2);
}
.testimonial-item__desc, .testimonial-item__meta-data {
  max-width: 600px;
  margin: 0 auto;
}
.testimonial-item__desc p, .testimonial-item__meta-data p {
  margin: 0 0 7px;
}
.testimonial-item__desc p:last-child, .testimonial-item__meta-data p:last-child {
  margin-bottom: 0;
}
.testimonial-item__meta-data {
  padding-top: 1.125rem;
}
.testimonial-item__client-name {
  margin-bottom: 0;
  color: #fad7f8 !important;
}
@media (max-width: 1023px) {
  .testimonial-item__client-name {
    font-size: 20px !important;
  }
}
@media (min-width: 1024px) {
  .testimonial-item__client-name {
    font-size: 24px !important;
  }
}

.paragraph--type--full-width-gallery {
  overflow: hidden;
  padding-bottom: 40px;
}
@media (max-width: 479px) {
  .paragraph--type--full-width-gallery {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .paragraph--type--full-width-gallery {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--full-width-gallery {
    margin-bottom: 4.5rem;
  }
}
.path--frontpage .paragraph--type--full-width-gallery {
  margin: 0 !important;
  padding: 0 !important;
}
.path--frontpage .paragraph--type--full-width-gallery .paragraph-content-wrap {
  padding: 0 !important;
  max-width: 100% !important;
}
.path--frontpage .paragraph--type--full-width-gallery .flickity-page-dots {
  display: none;
}
.paragraph--type--full-width-gallery:hover .flickity-prev-next-button {
  opacity: 1;
}
.paragraph--type--full-width-gallery .flickity-prev-next-button {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  opacity: 0;
}
@media (max-width: 479px) {
  .paragraph--type--full-width-gallery .flickity-prev-next-button {
    opacity: 0;
    display: none !important;
  }
}
.paragraph--type--full-width-gallery .full-width-gallery__cell {
  width: 100%;
}
.paragraph--type--full-width-gallery .full-width-gallery__cell img {
  width: 100%;
}

.paragraph--type--image-gallery-grid-layouts {
  margin-bottom: 2.25rem;
}

.gallery-grid {
  margin: -0.3125rem;
}
.gallery-grid__image-cell {
  padding: 0.3125rem;
}
@media (max-width: 639px) {
  .gallery-grid__image-cell {
    width: 50%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid__image-cell {
    width: 33.33%;
  }
}
@media (min-width: 1024px) {
  .gallery-grid__image-cell {
    width: 25%;
  }
}
@media (max-width: 639px) {
  .gallery-grid__image-cell:nth-child(1) {
    width: 100%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid__image-cell:nth-child(1) {
    width: 66.66%;
  }
}
@media (min-width: 1024px) {
  .gallery-grid__image-cell:nth-child(1) {
    width: 50%;
  }
}
@media (max-width: 639px) {
  .gallery-grid__image-cell:nth-child(3n+1) {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .gallery-grid__image-cell:nth-child(3n+1) {
    width: 50%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid__image-cell:nth-child(4n+1) {
    width: 66.66%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid__image-cell:nth-child(6n+1) {
    width: 66.66%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid__image-cell:nth-child(9), .gallery-grid__image-cell:nth-child(21) {
    width: 33.33%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid__image-cell:nth-child(11), .gallery-grid__image-cell:nth-child(23) {
    width: 66.66%;
  }
}
.gallery-grid__image-cell a {
  background: -webkit-gradient(linear, left top, left bottom, from(#fdeefc), to(#111));
  background: -o-linear-gradient(#fdeefc, #111);
  background: linear-gradient(#fdeefc, #111);
  display: block !important;
  overflow: hidden;
  position: relative;
  border-bottom: 0 !important;
}
.gallery-grid__image-cell a img {
  width: 100%;
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.gallery-grid__image-cell a:before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.gallery-grid__image-cell a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("../img/icon-full-size.svg") no-repeat;
  background-size: 100% 100%;
  z-index: 344;
  width: 32px;
  height: 32px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.gallery-grid__image-cell a:hover:before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 1;
}
.gallery-grid__image-cell a:hover:after {
  width: 50px;
  height: 50px;
  opacity: 1;
}
.gallery-grid__image-cell a:hover img {
  -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
  opacity: 0.3;
}
@media (max-width: 639px) {
  .gallery-grid .grid-sizer {
    width: 50%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid .grid-sizer {
    width: 33.33%;
  }
}
@media (min-width: 1024px) {
  .gallery-grid .grid-sizer {
    width: 25%;
  }
}

.paragraph--type--paragraph-multi-column-text {
  overflow: hidden;
}
.paragraph--type--paragraph-multi-column-text .multi-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .paragraph--type--paragraph-multi-column-text .multi-columns {
    margin: -0.9375rem;
  }
}
@media (min-width: 768px) {
  .paragraph--type--paragraph-multi-column-text .multi-columns {
    margin: -1.25rem;
  }
}
@media (max-width: 639px) {
  .paragraph--type--paragraph-multi-column-text .multi-columns__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
@media (min-width: 640px) {
  .paragraph--type--paragraph-multi-column-text .multi-columns__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 29%;
            flex: 1 0 29%;
  }
}
@media (max-width: 767px) {
  .paragraph--type--paragraph-multi-column-text .multi-columns__column {
    padding: 0.9375rem;
  }
}
@media (min-width: 768px) {
  .paragraph--type--paragraph-multi-column-text .multi-columns__column {
    padding: 1.25rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .page--has-sidebar-second .paragraph--type--paragraph-multi-column-text .multi-columns__column, .page--has-sidebar-first .paragraph--type--paragraph-multi-column-text .multi-columns__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
  }
}
.paragraph--type--paragraph-multi-column-text .multi-columns p:last-child {
  margin-bottom: 0;
}

@media (max-width: 479px) {
  .paragraph--type--para-image-with-caption {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .paragraph--type--para-image-with-caption {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--para-image-with-caption {
    margin-bottom: 4.5rem;
  }
}
.paragraph--type--para-image-with-caption .image-hold {
  margin-bottom: 1.5rem;
}
.paragraph--type--para-image-with-caption .caption {
  color: #004489;
}
.paragraph--type--para-image-with-caption .img {
  min-width: 1000px;
  position: relative;
  left: 50%;
}
.paragraph--type--para-image-with-caption img {
  max-width: none;
  width: 100%;
  position: relative;
  left: -50%;
}

@media (max-width: 479px) {
  .paragraph--type--paragraph-webforms {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .paragraph--type--paragraph-webforms {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--paragraph-webforms {
    margin-bottom: 4.5rem;
  }
}

@media (max-width: 479px) {
  .paragraph-webform__heading-block {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .paragraph-webform__heading-block {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .paragraph-webform__heading-block {
    margin-bottom: 2.25rem;
  }
}

.paragraph-price {
  overflow: hidden;
}
.paragraph-price .price-data-content .price-data__row:nth-child(2n) {
  background: #fce5fa;
}

.price-data__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price-data__row:after {
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 1px;
  background: #ccc;
  position: absolute;
}
.price-data__row-heading {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: #fdf0fc;
  border-bottom: 2px solid #f07ce8;
}
.price-data__row-heading:after {
  height: 2px;
  background: #fdeefc;
}
.price-data__row-heading .price-data__col {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 1023px) {
  .price-data__row-heading .price-data__col {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .price-data__row-heading .price-data__col {
    font-size: 1.5rem;
  }
}
.price-data__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 45%;
          flex: 1 0 45%;
  padding: 10px;
  max-width: 50%;
}
.price-data__col p {
  margin-bottom: 0;
}
.price-data__col2 {
  text-align: right;
}
@media (min-width: 480px) {
  .price-data__col2 {
    max-width: 200px;
  }
}
.price-data__desc {
  padding-top: 0.1875rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .price-data__desc {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .price-data__desc {
    font-size: 1rem;
  }
}
.price-data__title-desc {
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  color: rgba(0, 0, 0, 0.5);
}
.price-data__special span {
  color: #008752;
  font-weight: 700;
}
.price-data__original span {
  -webkit-text-decoration: line-through #cf5a5a;
          text-decoration: line-through #cf5a5a;
  position: relative;
}

.paragraph--type--offers-services-price-listing h2 {
  position: relative;
  padding-bottom: 5px;
}
@media (max-width: 1023px) {
  .paragraph--type--offers-services-price-listing h2 {
    margin-bottom: 1.05rem;
  }
}
@media (min-width: 1024px) {
  .paragraph--type--offers-services-price-listing h2 {
    margin-bottom: 1.5rem;
  }
}
.path--frontpage .paragraph--type--offers-services-price-listing h2 {
  text-align: center;
}
.path--frontpage .paragraph--type--offers-services-price-listing h2:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 50px;
  height: 2px;
  content: "";
  background: #f07ce8;
  position: absolute;
  bottom: 2px;
  opacity: 0.4;
}
.paragraph--type--offers-services-price-listing .price-data__row.price-data__row-item {
  min-height: 45px;
  overflow: hidden;
}
.paragraph--type--offers-services-price-listing .price-data__row.price-data__row-item:hover .price-hover-text, .paragraph--type--offers-services-price-listing .price-data__row.price-data__row-item:focus .price-hover-text {
  opacity: 1;
  visibility: visible;
}
.paragraph--type--offers-services-price-listing .price-data__row.price-data__row-item:hover .price-hover-text:after, .paragraph--type--offers-services-price-listing .price-data__row.price-data__row-item:focus .price-hover-text:after {
  opacity: 0.8;
}
.paragraph--type--offers-services-price-listing .price-hover-text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  opacity: 0;
  visibility: hidden;
}
.paragraph--type--offers-services-price-listing .price-hover-text:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.65;
  background: #111;
  z-index: -1;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  opacity: 0;
}
.paragraph--type--offers-services-price-listing .price-hover-text a {
  border-radius: 100px !important;
  padding: 0 20px !important;
  overflow: hidden;
  color: #fff;
  height: 44px;
  line-height: 40px;
}
.paragraph--type--offers-services-price-listing .view-all-price-link {
  padding-top: 1.5rem;
  text-align: center;
  padding-bottom: 5px;
}
.paragraph--type--offers-services-price-listing .view-all-price-link a {
  min-width: 200px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #f07ce8 !important;
}

@media (min-width: 640px) {
  .rich-txt-image__image-hold {
    width: 40%;
  }
}
.rich-txt-image.image-on-right .rich-txt-image__image-hold {
  float: right;
}
.rich-txt-image.image-on-left .rich-txt-image__image-hold {
  float: left;
}
@media (max-width: 639px) {
  .rich-txt-image.half-width .rich-txt-image__image-hold {
    width: 100%;
  }
}
@media (min-width: 640px) {
  .rich-txt-image.half-width .rich-txt-image__image-hold h2 {
    display: none;
  }
}
@media (min-width: 640px) {
  .rich-txt-image.half-width .rich-txt-image__image-hold {
    width: 50%;
    padding-top: 10px;
  }
}
@media (max-width: 639px) {
  .rich-txt-image.half-width .rich-txt-image__text-hold-heading {
    display: none;
  }
}
.rich-txt-image.one-quarter-width .rich-txt-image__image-hold {
  padding-top: 10px;
}
@media (max-width: 639px) {
  .rich-txt-image.one-quarter-width .rich-txt-image__image-hold {
    width: 33%;
  }
}
@media (min-width: 640px) {
  .rich-txt-image.one-quarter-width .rich-txt-image__image-hold {
    width: 25%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page--has-sidebar-second .rich-txt-image.one-quarter-width .rich-txt-image__image-hold {
    width: 40%;
  }
}
.rich-txt-image.one-quarter-width .rich-txt-image__image-hold h2 {
  display: none;
}
.rich-txt-image.one-third-width .rich-txt-image__image-hold {
  padding-top: 10px;
}
@media (max-width: 639px) {
  .rich-txt-image.one-third-width .rich-txt-image__image-hold {
    width: 40%;
  }
}
@media (min-width: 640px) {
  .rich-txt-image.one-third-width .rich-txt-image__image-hold {
    width: 33%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page--has-sidebar-second .rich-txt-image.one-third-width .rich-txt-image__image-hold {
    width: 40%;
  }
}
.rich-txt-image.one-third-width .rich-txt-image__image-hold h2 {
  display: none;
}
.rich-txt-image.wrap_text_no .rich-txt-image__text-hold {
  overflow: hidden;
}
@media (min-width: 640px) {
  .rich-txt-image.wrap_text_yes .rich-txt-image__image-hold {
    margin-bottom: 1.5rem;
  }
}
.rich-txt-image .content-wrap:after {
  display: block;
  content: "";
  clear: both;
}
@media (max-width: 767px) {
  .rich-txt-image .content-wrap {
    margin: 0 -1.05rem;
  }
}
@media (min-width: 768px) {
  .rich-txt-image .content-wrap {
    margin: 0 -1.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page--has-sidebar-second .rich-txt-image .content-wrap {
    margin: 0 -1.05rem;
  }
}
.rich-txt-image .content-wrap p:last-child,
.rich-txt-image .content-wrap ul:last-child,
.rich-txt-image .content-wrap ol:last-child {
  margin-bottom: 0;
}
@media (max-width: 639px) {
  .rich-txt-image__image-hold {
    margin-bottom: 1.8rem;
  }
}
.rich-txt-image__image-hold img {
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
}
@media (max-width: 767px) {
  .rich-txt-image__image-hold, .rich-txt-image__text-hold {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }
}
@media (min-width: 768px) {
  .rich-txt-image__image-hold, .rich-txt-image__text-hold {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page--has-sidebar-second .rich-txt-image__image-hold, .page--has-sidebar-second .rich-txt-image__text-hold {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }
}

.products-block-wrapper header h2,
.products-block-wrapper footer h2 {
  position: relative;
  padding-bottom: 5px;
  margin: 0;
}
.products-block-wrapper header h2:after,
.products-block-wrapper footer h2:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 50px;
  height: 2px;
  content: "";
  background: #f07ce8;
  position: absolute;
  bottom: 2px;
  opacity: 0.4;
}
.products-block-wrapper header .more-link-hold a,
.products-block-wrapper footer .more-link-hold a {
  min-width: 200px;
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
}
.products-block-wrapper--featured .content-row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 639px) {
  .products-block-wrapper--featured h2 {
    margin-bottom: 0.9375rem !important;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .products-block-wrapper--featured h2 {
    margin: 0 0 1.25rem !important;
  }
}
@media (min-width: 1024px) {
  .products-block-wrapper--featured h2 {
    margin: 0 0 1.5625rem !important;
  }
}

@media (max-width: 639px) {
  .featured-product-block {
    padding: 0 20px;
    text-align: center;
  }
}
@media (min-width: 640px) {
  .featured-product-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .featured-product-block {
    margin: 0 -20px;
  }
}
@media (min-width: 1024px) {
  .featured-product-block {
    margin: 0 -25px;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .featured-product-block__image, .featured-product-block__description {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .featured-product-block__image, .featured-product-block__description {
    padding: 0 25px;
  }
}
.featured-product-block__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 639px) {
  .featured-product-block__image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 640px) {
  .featured-product-block__image {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.featured-product-block__image img {
  width: auto;
}
@media (max-width: 1023px) {
  .featured-product-block__image img {
    max-height: 200px;
  }
}
@media (min-width: 1024px) {
  .featured-product-block__image img {
    max-height: 300px;
  }
}
@media (min-width: 640px) {
  .featured-product-block__description {
    max-width: 500px;
  }
}
.featured-product-block__description p {
  margin-bottom: 0;
}
.featured-product-block__description p + p {
  margin-top: 10px;
}
.featured-product-block h3 {
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .featured-product-block h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .featured-product-block h3 {
    font-size: 1.25rem;
  }
}
.featured-product-block .more-links {
  padding-top: 1.5rem;
}
.featured-product-block .more-links a {
  min-width: 200px;
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  border: 2px solid #f07ce8 !important;
}

.products-block-wrapper .content-row {
  margin: 0 -20px;
}
@media (min-width: 480px) {
  .products-block-wrapper .content-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .products-block-wrapper .content-row {
    margin: 0 -25px;
  }
}
.products-block-wrapper .content-row .product-item {
  padding: 0 20px 40px;
}
@media (max-width: 479px) {
  .products-block-wrapper .content-row .product-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .products-block-wrapper .content-row .product-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .products-block-wrapper .content-row .product-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33.33%;
            flex: 1 0 33.33%;
    max-width: 33.33%;
  }
}
@media (min-width: 1024px) {
  .products-block-wrapper .content-row .product-item {
    padding: 0 25px 50px;
  }
}

@media (min-width: 768px) {
  .services-items--regular .product-item {
    padding-bottom: 40px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .services-items--regular .product-item {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 33% !important;
            flex: 1 0 33% !important;
    max-width: 33.33% !important;
  }
}
.product-item__image {
  -webkit-transition: ease-in-out all 200ms;
  -o-transition: ease-in-out all 200ms;
  transition: ease-in-out all 200ms;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
@media (max-width: 1023px) {
  .product-item__image {
    height: 250px;
  }
}
@media (min-width: 1024px) {
  .product-item__image {
    height: 300px;
  }
}
.product-item__image-frame {
  max-width: 100%;
}
.product-item__image img {
  width: auto;
}
@media (max-width: 1023px) {
  .product-item__image img {
    max-height: 200px;
  }
}
@media (min-width: 1024px) {
  .product-item__image img {
    max-height: 250px;
  }
}
.product-item__description {
  padding: 15px 0;
  color: #000;
}
@media (max-width: 1023px) {
  .product-item__description {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .product-item__description {
    font-size: 1rem;
  }
}
.product-item__description p {
  margin: 0;
}
.product-item__description p + p {
  margin-top: 5px;
}
.product-item__price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px -5px 5px;
}
.product-item__price-row span {
  padding: 5px;
}
.product-item__price-row--offer .product-item__price-org {
  -webkit-text-decoration: line-through #aa2c42;
          text-decoration: line-through #aa2c42;
  color: #aa2c42;
}
.product-item__offer-price {
  font-weight: 700;
  color: #008752;
}
.product-item__price-org {
  color: #008752;
}
.product-item h3 {
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  margin: 0;
}
@media (max-width: 1023px) {
  .product-item h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .product-item h3 {
    font-size: 1.1875rem;
  }
}
.product-item__wrap {
  display: block !important;
  height: 100%;
  background: #fff;
}
.product-item__link {
  font-weight: 400;
  text-decoration: none !important;
  border: 0 !important;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  display: block !important;
  height: 100%;
}
.services-items--regular .product-item__link {
  -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}
.services-items--random-circle .product-item__link {
  outline: none !important;
}
.product-item__link:hover, .product-item__link:focus {
  -webkit-transform: translate(0, -2px);
      -ms-transform: translate(0, -2px);
          transform: translate(0, -2px);
}
.services-items--random-circle .product-item__link:hover .product-item__image img, .services-items--random-circle .product-item__link:focus .product-item__image img {
  -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.35);
}

/*
 * jQuery Basic Table
 * Author: Jerry Low
 */
table.bt thead,
table.bt tbody th {
  display: none;
}

table.bt tfoot th,
table.bt tfoot td,
table.bt tbody td {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: top;
  float: left\9 ;
  width: 100% \9 ;
}

table.bt tbody {
  border-bottom: 0 !important;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

table.bt tbody tr {
  border-bottom: 1px solid #ccc;
}
table.bt tbody tr:nth-child(2n) {
  background: rgba(0, 0, 0, 0.05);
}

table.bt tbody td {
  padding: 0;
}
table.bt tbody td + td {
  border-top: 1px solid #ccc;
}
table.bt tbody td:before {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.4375rem;
}

table.bt tfoot th:before,
table.bt tfoot td:before,
table.bt tbody td:before {
  content: attr(data-th) ":";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: bold;
  width: 6.5em;
}

table.bt tfoot th.bt-hide,
table.bt tfoot td.bt-hide,
table.bt tbody td.bt-hide {
  display: none;
}

table.bt tfoot th .bt-content,
table.bt tfoot td .bt-content,
table.bt tbody td .bt-content {
  vertical-align: top;
  padding: 0.4375rem;
}

.bt-wrapper.active {
  max-height: 310px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

table.bt.bt--no-header tfoot td:before,
table.bt.bt--no-header tbody td:before {
  display: none;
}

.fac-result {
  top: 100%;
  right: 0;
}

mark {
  background: transparent;
  color: #fdeefc;
}

.result-list {
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}
.result-list > li {
  padding: 0 !important;
  border: 0 !important;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  background: transparent;
}
.result-list > li.selected {
  background: #f2f2f2 !important;
}
.result-list > li.see-all-link {
  position: relative;
}
.result-list > li.see-all-link a {
  padding: 20px 20px 20px 65px;
  position: relative;
  display: block;
  background: #fff;
  color: #333435 !important;
  text-align: left;
}
@media (max-width: 479px) {
  .result-list > li.see-all-link a {
    font-size: 0.9375rem;
    padding-left: 51px;
  }
}
@media (min-width: 480px) {
  .result-list > li.see-all-link a {
    font-size: 1rem;
    padding-left: 65px;
  }
}
.result-list > li.see-all-link a:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  margin-right: 0.5em;
  position: absolute;
  line-height: 1;
  color: #fdeefc;
  margin: 0 !important;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 479px) {
  .result-list > li.see-all-link a:before {
    font-size: 32px;
    left: 11px;
    top: 13px;
  }
}
@media (min-width: 480px) {
  .result-list > li.see-all-link a:before {
    left: 15px;
    top: 15px;
    font-size: 40px;
  }
}
.result-list > li.see-all-link a:hover {
  background: #f2f2f2 !important;
}
.result-list > li a {
  text-decoration: none;
  color: #444 !important;
}
.result-list > li h2 {
  margin-bottom: 0.3125rem;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 479px) {
  .result-list > li h2 {
    font-size: 0.9375rem;
  }
}
@media (min-width: 480px) {
  .result-list > li h2 {
    font-size: 1rem;
  }
}
.result-list > li article {
  position: relative;
  z-index: 2;
}
.result-list > li article:after {
  content: "";
  position: absolute;
  bottom: 0;
  background: #ccc;
  height: 1px;
}
@media (max-width: 479px) {
  .result-list > li article:after {
    left: 15px;
    right: 15px;
  }
}
@media (min-width: 480px) {
  .result-list > li article:after {
    left: 20px;
    right: 20px;
  }
}
.result-list > li article.node--type-events > a:before {
  background: url("../img/calendar.svg") no-repeat 50% 50%/cover;
}
@media (max-width: 479px) {
  .result-list > li article.node--type-events > a:before {
    top: 18px;
  }
}
@media (min-width: 480px) {
  .result-list > li article.node--type-events > a:before {
    top: 18px;
  }
}
.result-list > li article.node--type-page > a:before {
  background: url("../img/page.svg") no-repeat 50% 50%/cover;
}
@media (max-width: 479px) {
  .result-list > li article.node--type-page > a:before {
    top: 17px;
  }
}
@media (min-width: 480px) {
  .result-list > li article.node--type-page > a:before {
    top: 18px;
  }
}
.result-list > li article.node--type-file > a:before {
  background: url("../img/file.svg") no-repeat 50% 50%/cover;
}
@media (max-width: 479px) {
  .result-list > li article.node--type-file > a:before {
    top: 17px;
  }
}
@media (min-width: 480px) {
  .result-list > li article.node--type-file > a:before {
    top: 18px;
  }
}
.result-list > li article.node--type-news > a:before {
  background: url("../img/news.svg") no-repeat 50% 0/cover;
}
@media (max-width: 479px) {
  .result-list > li article.node--type-news > a:before {
    top: 17px;
  }
}
@media (min-width: 480px) {
  .result-list > li article.node--type-news > a:before {
    top: 18px;
  }
}
.result-list > li article a {
  padding: 15px 40px 15px 15px;
  display: block;
  position: relative;
}
@media (max-width: 479px) {
  .result-list > li article a {
    padding-left: 51px;
  }
}
@media (min-width: 480px) {
  .result-list > li article a {
    padding-left: 65px;
  }
}
.result-list > li article a:before {
  position: absolute;
  content: "";
  background: url("../img/file.svg") no-repeat 50% 50%/cover;
}
@media (max-width: 479px) {
  .result-list > li article a:before {
    left: 10px;
    top: 13px;
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 480px) {
  .result-list > li article a:before {
    left: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
  }
}
.result-list > li article a:after {
  position: absolute;
  right: 20px;
  top: 22px;
  content: "\e90a";
  color: #fdeefc;
  font-size: 0.875rem;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
  transition: 300ms ease all;
}
.result-list > li article a:hover:after {
  -webkit-transform: translate(5px, 0);
      -ms-transform: translate(5px, 0);
          transform: translate(5px, 0);
}
.result-list > li .node--type-page a:after,
.result-list > li .node--type-landing-page a:after {
  content: "\e90a";
}

.search-meta {
  font-weight: 400;
  display: block;
  overflow: hidden;
}
.search-meta__data {
  position: relative;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  text-align: left;
}
.search-meta__data li {
  position: relative;
  padding: 0 9px 0 0 !important;
  border: 0 !important;
  margin: 0 !important;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (max-width: 479px) {
  .search-meta__data li {
    font-size: 0.6875rem;
  }
}
@media (min-width: 480px) {
  .search-meta__data li {
    font-size: 0.75rem;
  }
}
.search-meta__data li:after {
  content: ",";
  color: #444;
  position: absolute;
}
@media (max-width: 479px) {
  .search-meta__data li:after {
    font-size: 0.6875rem;
    top: 0px;
    left: -8px;
  }
}
@media (min-width: 480px) {
  .search-meta__data li:after {
    font-size: 0.75rem;
    top: 0;
    left: -7px;
  }
}

/**
 * Header block
 */
/** animation stuff */
body.search-panel--is-visible .search-global {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.6s ease-in-out 0.2s;
  transition: -webkit-transform 0.6s ease-in-out 0.2s;
  -o-transition: transform 0.6s ease-in-out 0.2s;
  transition: transform 0.6s ease-in-out 0.2s;
  transition: transform 0.6s ease-in-out 0.2s, -webkit-transform 0.6s ease-in-out 0.2s;
}
body.search-panel--is-visible .page-header-container {
  -webkit-transform: translateY(-200px);
      -ms-transform: translateY(-200px);
          transform: translateY(-200px);
  -webkit-transition: -webkit-transform 0.6s ease-in-out !important;
  transition: -webkit-transform 0.6s ease-in-out !important;
  -o-transition: transform 0.6s ease-in-out !important;
  transition: transform 0.6s ease-in-out !important;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out !important;
}
body.search-panel--is-visible .layout-main,
body.search-panel--is-visible .homepage-carousel,
body.search-panel--is-visible .homepage-promo,
body.search-panel--is-visible .homepage-news,
body.search-panel--is-visible .homepage-featured,
body.search-panel--is-visible .page-footer {
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

body.search-panel--is-hidden .search-global {
  -webkit-transition: -webkit-transform 0.6s ease-in-out 0s;
  transition: -webkit-transform 0.6s ease-in-out 0s;
  -o-transition: transform 0.6s ease-in-out 0s;
  transition: transform 0.6s ease-in-out 0s;
  transition: transform 0.6s ease-in-out 0s, -webkit-transform 0.6s ease-in-out 0s;
}
body.search-panel--is-hidden .page-header-container {
  -webkit-transition: -webkit-transform 0.6s ease-in-out 0.2s;
  transition: -webkit-transform 0.6s ease-in-out 0.2s;
  -o-transition: transform 0.6s ease-in-out 0.2s;
  transition: transform 0.6s ease-in-out 0.2s;
  transition: transform 0.6s ease-in-out 0.2s, -webkit-transform 0.6s ease-in-out 0.2s;
}
body.search-panel--is-hidden .layout-main {
  -webkit-transition: -webkit-filter 0.6s ease-in-out 0s;
  transition: -webkit-filter 0.6s ease-in-out 0s;
  -o-transition: filter 0.6s ease-in-out 0s;
  transition: filter 0.6s ease-in-out 0s;
  transition: filter 0.6s ease-in-out 0s, -webkit-filter 0.6s ease-in-out 0s;
}

/**
 * Styles
 */
.search-global {
  -webkit-transform: translateY(-200px);
      -ms-transform: translateY(-200px);
          transform: translateY(-200px);
  z-index: 12330;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  height: 200px;
  background: #fdeefc;
  /*Let's place the label over the input*/
}
.search-global form {
  position: relative;
  z-index: 2;
  height: 200px;
  background: #fdeefc;
  padding-top: 65px;
}
@media (max-width: 767px) {
  .search-global form {
    padding-left: 10px;
  }
}
.search-global .form-item {
  display: inline-block;
}
.search-global .form-search {
  background-color: #fdeefc;
  border: 0;
  border-bottom: 1px solid #111;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
  border-radius: 0;
}
.search-global .form-search:focus {
  background-color: #fdeefc;
  border-bottom-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.search-global__row {
  max-width: 700px;
  margin: 0 auto 0;
  padding: 0 60px 0 50px;
  position: relative;
  background: url("../img/search.svg") no-repeat 0 10px;
  background-size: 32px 32px;
  *zoom: 1;
}
.search-global__row:before, .search-global__row:after {
  content: "";
  display: table;
}
.search-global__row:after {
  clear: both;
}
.search-global div {
  position: relative;
}
.search-global .search-global__field {
  width: 100%;
  float: left;
}
.search-global .form-search,
.search-global label {
  width: 100%;
  float: left;
  display: block;
  color: #fff;
  height: 50px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.search-global .form-search {
  outline: none;
  padding-left: 0;
  font-size: 2rem;
}
.search-global label {
  position: absolute;
  left: 0;
  top: 0;
  border-color: transparent;
  cursor: text;
}
.search-global label.focused {
  margin-top: -35px;
  opacity: 0.4;
}
.search-global span {
  color: #fff;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.search-global #edit-submit {
  display: none !important;
}
.search-global__close {
  position: absolute;
  top: 5px;
  right: 10px;
  text-indent: 150%;
  white-space: nowrap;
  overflow: hidden;
  width: 40px;
  height: 40px;
}
.search-global__close:before {
  content: "";
  width: 3px;
  height: 24px;
  background-color: #FFF;
  display: block;
  position: absolute;
  left: 18px;
  top: 8px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.search-global__close:after {
  content: "";
  width: 3px;
  height: 24px;
  background-color: #FFF;
  display: block;
  position: absolute;
  left: 18px;
  top: 8px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.search-global__close:hover {
  text-decoration: none;
  color: #f68123;
}
.search-global__close:hover:before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: #f68123;
}
.search-global__close:hover:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: #f68123;
}

.search-panel-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.block-facet--checkbox {
  margin: 0 !important;
}
.block-facet--checkbox .facet-empty {
  display: none !important;
}

.facets-widget-checkbox {
  border-bottom: 1px solid #c8c7c7;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .facets-widget-checkbox {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.facets-widget-checkbox h3 {
  margin-bottom: 5px;
  color: #fdeefc;
  font-weight: 700;
  font-size: 1.125rem;
}
.facets-widget-checkbox ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.facets-widget-checkbox ul .facets-checkbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  margin: 7px 0 0;
}
.facets-widget-checkbox ul label {
  display: block;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 0 5px;
  color: #000;
}
.facets-widget-checkbox ul label:before {
  position: absolute;
  content: "";
  z-index: 1;
  left: 0;
  top: 5px;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}
.facets-widget-checkbox ul label:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 5px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  left: 3px;
  top: 9px;
  z-index: 2;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}
.facets-widget-checkbox ul input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.facets-widget-checkbox ul input:hover ~ label:before, .facets-widget-checkbox ul input:focus ~ label:before {
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
  border-color: #000;
}
.facets-widget-checkbox ul input:checked ~ label:after {
  opacity: 1;
}
@media (min-width: 768px) and (max-width: 1249px) {
  .facets-widget-checkbox .item-list__checkbox {
    min-width: 190px;
  }
}
@media (min-width: 1250px) {
  .facets-widget-checkbox .item-list__checkbox {
    min-width: 270px;
  }
}

.page--has-sidebar-first .search-page-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.page--has-sidebar-first .search-page-main__layout-content {
  margin-bottom: 1.8rem;
}
@media (max-width: 767px) {
  .page--has-sidebar-first .search-page-main__layout-content {
    padding: 0 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
@media (min-width: 768px) {
  .page--has-sidebar-first .search-page-main__layout-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20%;
            flex: 1 0 20%;
    padding: 0 15px 0 1.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1249px) {
  .page--has-sidebar-first .search-page-main__layout-content {
    max-width: calc(100% - 220px);
  }
}
@media (min-width: 1250px) {
  .page--has-sidebar-first .search-page-main__layout-content {
    max-width: calc(100% - 300px);
  }
}
@media (max-width: 767px) {
  .path--search .page--has-sidebar-first .search-page-main__layout-content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.page--has-sidebar-first .search-page-main__layout-sidebar-first {
  color: #000;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .page--has-sidebar-first .search-page-main__layout-sidebar-first {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    color: #000;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1249px) {
  .page--has-sidebar-first .search-page-main__layout-sidebar-first {
    max-width: 220px;
  }
}
@media (min-width: 1250px) {
  .page--has-sidebar-first .search-page-main__layout-sidebar-first {
    max-width: 300px;
  }
}

/**
 * Search page
 */
.path--search .block--system-main-block {
  padding-bottom: 3rem;
}
@media (max-width: 639px) {
  .path--search .block--page-title-block {
    padding: 1.5rem 0 !important;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .path--search .block--page-title-block {
    padding: 2.25rem 0 !important;
  }
}
@media (min-width: 1024px) {
  .path--search .block--page-title-block {
    padding: 3rem 0 !important;
  }
}

.search-wrapper .views-exposed-form {
  padding: 5px;
}
.search-wrapper #edit-submit-search {
  margin-bottom: 0;
  float: left;
  height: 65px;
  padding-left: 0;
  padding-right: 0;
  border-radius: 3px;
  height: 55px;
}
@media (max-width: 479px) {
  .search-wrapper #edit-submit-search {
    width: 100px;
  }
}
@media (min-width: 480px) {
  .search-wrapper #edit-submit-search {
    width: 130px;
  }
}
@media (max-width: 1023px) {
  .search-wrapper #edit-submit-search {
    margin-top: 2.375rem;
  }
}
@media (min-width: 1024px) {
  .search-wrapper #edit-submit-search {
    margin-top: 2.5rem;
  }
}

#views-exposed-form-search-page-1 {
  overflow: hidden;
  line-height: 1;
  max-width: 56.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 479px) {
  #views-exposed-form-search-page-1 {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 480px) {
  #views-exposed-form-search-page-1 {
    margin-bottom: 2.25rem;
  }
}
#views-exposed-form-search-page-1 .js-form-type-textfield {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
  margin: 0;
}
@media (max-width: 479px) {
  #views-exposed-form-search-page-1 .js-form-type-textfield {
    max-width: calc(100% - 100px);
    padding-right: 5px;
  }
}
@media (min-width: 480px) {
  #views-exposed-form-search-page-1 .js-form-type-textfield {
    max-width: calc(100% - 130px);
    padding-right: 10px;
  }
}
#views-exposed-form-search-page-1 .js-form-type-textfield label {
  margin-bottom: 1.5rem;
  display: inline-block;
}
#views-exposed-form-search-page-1 .js-form-type-textfield input {
  width: 100%;
  max-width: 100%;
  height: 55px;
}
#views-exposed-form-search-page-1 .form-actions {
  margin: 0;
}
@media (max-width: 479px) {
  #views-exposed-form-search-page-1 .form-actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    max-width: 100px;
  }
}
@media (min-width: 480px) {
  #views-exposed-form-search-page-1 .form-actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
    max-width: 130px;
  }
}
#views-exposed-form-search-page-1 .search-help-link {
  display: none;
}

/**
 * Search form
 */
.search-form {
  overflow: hidden;
  line-height: 1;
  max-width: 56.25rem;
}
.search-form .form-item-keys {
  float: left;
}
@media (max-width: 479px) {
  .search-form .form-item-keys {
    width: calc(100% - 100px);
    padding-right: 0;
  }
}
@media (min-width: 480px) {
  .search-form .form-item-keys {
    width: calc(100% - 130px);
    padding-right: 10px;
  }
}
.search-form .form-item-keys label {
  margin-bottom: 1.5rem;
  display: inline-block;
}
.search-form .form-item-keys input {
  width: 100%;
  max-width: 100%;
  height: 55px;
}
.search-form .search-help-link {
  display: none;
}
.search-form #edit-advanced {
  margin-top: 1.5rem;
  clear: both;
}
.search-form #edit-advanced summary {
  color: #f07ce8;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  display: inline-block;
}
.search-form #edit-advanced summary:hover {
  color: #ea4ee0;
  text-decoration: underline;
}
.search-form #edit-types-fieldset,
.search-form #edit-lang-fieldset {
  display: none;
}
.search-form #edit-keywords-fieldset legend {
  display: none;
}
.search-form #edit-submit--2 {
  margin-top: 0;
}

/**
 * Search results list
 */
.search-results-list {
  max-width: 56.25rem;
  list-style: none;
  padding: 0;
}
.search-results-list > li {
  border-bottom: 1px solid #ccc;
}
.search-results-list h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
}
@media (max-width: 479px) {
  .search-results-list p {
    margin-bottom: 7px;
  }
}
@media (min-width: 480px) {
  .search-results-list p {
    margin-bottom: 10px;
  }
}

.search-item {
  overflow: hidden;
  min-height: 26px;
  padding: 15px 0 15px 15px;
  display: block;
  position: relative;
}
@media (max-width: 479px) {
  .search-item {
    padding-left: 40px;
    font-size: 0.6875rem;
  }
}
@media (min-width: 480px) {
  .search-item {
    padding-left: 50px;
    font-size: 0.75rem;
  }
}
.search-item:after {
  position: absolute;
  content: "";
  background: url("../img/file.svg") no-repeat 50% 50%/cover;
  left: 0;
}
@media (max-width: 479px) {
  .search-item:after {
    top: 13px;
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 480px) {
  .search-item:after {
    top: 15px;
    width: 35px;
    height: 35px;
  }
}
.search-item--type-file:after {
  background: url("../img/file.svg") no-repeat 50% 50%/cover;
}
@media (max-width: 479px) {
  .search-item--type-file:after {
    top: 17px;
  }
}
@media (min-width: 480px) {
  .search-item--type-file:after {
    top: 18px;
  }
}
.search-item--type-file .search-item__type {
  font-size: 0;
}
.search-item--type-file .search-item__type:before {
  display: inline;
  content: "Document";
}
@media (max-width: 479px) {
  .search-item--type-file .search-item__type:before {
    font-size: 0.6875rem;
  }
}
@media (min-width: 480px) {
  .search-item--type-file .search-item__type:before {
    font-size: 0.75rem;
  }
}
.search-item--type-event:after {
  background: url("../img/calendar.svg") no-repeat 50% 50%/cover;
}
@media (max-width: 479px) {
  .search-item--type-event:after {
    top: 17px;
  }
}
@media (min-width: 480px) {
  .search-item--type-event:after {
    top: 18px;
  }
}
.search-item--type-event .search-item__changed {
  display: none;
}
.search-item--type-news:after {
  background: url("../img/news.svg") no-repeat 50% 50%/cover;
}
@media (max-width: 479px) {
  .search-item--type-news:after {
    top: 17px;
  }
}
@media (min-width: 480px) {
  .search-item--type-news:after {
    top: 18px;
  }
}
.search-item--type-news .search-item__changed {
  display: none !important;
}
.search-item--type-basicpage:after {
  background: url("../img/page.svg") no-repeat 50% 50%/cover;
}
@media (max-width: 479px) {
  .search-item--type-basicpage:after {
    top: 17px;
  }
}
@media (min-width: 480px) {
  .search-item--type-basicpage:after {
    top: 18px;
  }
}
.search-item--type-basicpage .search-item__news-published-date, .search-item--type-event .search-item__news-published-date, .search-item--type-event .search-item__news-published-date {
  display: none !important;
}
.search-item h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}
.search-item h3 a {
  color: #fdeefc;
}
.search-item h3 a:hover, .search-item h3 a:focus {
  text-decoration: none;
  color: #f07ce8;
}
.search-item strong {
  color: #2cd7e4;
}
.search-item__meta-data-wrap {
  overflow: hidden;
}
.search-item__meta-data {
  position: relative;
  overflow: hidden;
}
.search-item__meta-data li {
  position: relative;
  padding: 0 8px 0 0 !important;
  border: 0 !important;
  display: inline-block;
  vertical-align: bottom;
}
.search-item__meta-data li:after {
  content: ",";
  color: #444;
  position: absolute;
}
@media (max-width: 479px) {
  .search-item__meta-data li:after {
    left: -9px;
    font-size: 0.6875rem;
    top: 0;
  }
}
@media (min-width: 480px) {
  .search-item__meta-data li:after {
    left: -9px;
    font-size: 0.75rem;
    top: 0;
  }
}

.services-block-wrapper header,
.services-block-wrapper footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.services-block-wrapper header h2,
.services-block-wrapper footer h2 {
  position: relative;
  padding-bottom: 5px;
  margin: 0;
}
.services-block-wrapper header h2:after,
.services-block-wrapper footer h2:after {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 50px;
  height: 2px;
  content: "";
  background: #f07ce8;
  position: absolute;
  bottom: 2px;
  opacity: 0.4;
}
.services-block-wrapper header .more-link-hold a,
.services-block-wrapper footer .more-link-hold a {
  min-width: 200px;
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .services-block-wrapper header {
    margin-bottom: 1.05rem;
  }
}
@media (min-width: 1024px) {
  .services-block-wrapper header {
    margin-bottom: 1.5rem;
  }
}
.services-block-wrapper footer {
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .services-block-wrapper footer {
    margin-bottom: 2.25rem;
  }
}

.services-items .content-row {
  margin: 0 -20px;
}
@media (min-width: 480px) {
  .services-items .content-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .services-items .content-row {
    margin: 0 -25px;
  }
}
.services-items .content-row .service-item {
  padding: 0 20px 40px;
}
@media (max-width: 479px) {
  .services-items .content-row .service-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .services-items .content-row .service-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .services-items .content-row .service-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33.33%;
            flex: 1 0 33.33%;
    max-width: 33.33%;
  }
}
@media (min-width: 1024px) {
  .services-items .content-row .service-item {
    padding: 0 25px 50px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page--has-sidebar-second .services-items .content-row .service-item, .page--has-sidebar-first .services-items .content-row .service-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  .page--has-sidebar-second .services-items .content-row .service-item, .page--has-sidebar-first .services-items .content-row .service-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
    max-width: 33.33%;
  }
}
.services-items .content-row img {
  width: 100%;
}

@media (min-width: 768px) {
  .services-items--regular .service-item {
    padding-bottom: 40px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .services-items--regular .service-item {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 0 33% !important;
            flex: 1 0 33% !important;
    max-width: 33.33% !important;
  }
}
.service-item__image {
  -webkit-transition: ease-in-out all 200ms;
  -o-transition: ease-in-out all 200ms;
  transition: ease-in-out all 200ms;
}
.services-items--random-circle .service-item__image {
  margin: 0 auto;
  margin-bottom: 15px;
}
@media (max-width: 1023px) {
  .services-items--random-circle .service-item__image {
    max-width: 230px;
  }
}
@media (min-width: 1024px) {
  .services-items--random-circle .service-item__image {
    max-width: 300px;
  }
}
.services-items--random-circle .service-item__image img {
  border: 2px solid #fff;
  overflow: hidden;
  -webkit-transition: ease-in-out all 200ms;
  -o-transition: ease-in-out all 200ms;
  transition: ease-in-out all 200ms;
  border-radius: 100%;
  -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.2);
}
.service-item__image img {
  -webkit-transition: ease-in-out all 200ms;
  -o-transition: ease-in-out all 200ms;
  transition: ease-in-out all 200ms;
}
.service-item__description {
  padding: 15px;
  color: #000;
}
@media (max-width: 1023px) {
  .service-item__description {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .service-item__description {
    font-size: 1rem;
  }
}
.services-items--random-circle .service-item__description {
  text-align: center;
  padding-bottom: 0;
}
.service-item__description p {
  margin: 0;
}
.service-item h3 {
  color: #f07ce8;
  margin-bottom: 7px;
}
@media (max-width: 1023px) {
  .service-item h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .service-item h3 {
    font-size: 1.1875rem;
  }
}
.service-item__wrap {
  display: block !important;
  height: 100%;
  background: #fff;
}
.service-item__link {
  font-weight: 400;
  text-decoration: none !important;
  border: 0 !important;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  display: block !important;
  height: 100%;
}
.services-items--regular .service-item__link {
  -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}
.services-items--random-circle .service-item__link {
  outline: none !important;
}
.service-item__link:hover, .service-item__link:focus {
  -webkit-transform: translate(0, -2px);
      -ms-transform: translate(0, -2px);
          transform: translate(0, -2px);
}
.services-items--random-circle .service-item__link:hover .service-item__image img, .services-items--random-circle .service-item__link:focus .service-item__image img {
  -webkit-box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.35);
}

.vacancy-list .vacancy-list-item,
.vacancy-list .public-consultation-list-item,
.public-consultation-list .vacancy-list-item,
.public-consultation-list .public-consultation-list-item {
  background: #fff;
  -webkit-box-shadow: 0 5px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 4px rgba(0, 0, 0, 0.15);
  border: 1px solid #ccc;
}
@media (max-width: 1023px) {
  .vacancy-list .vacancy-list-item,
  .vacancy-list .public-consultation-list-item,
  .public-consultation-list .vacancy-list-item,
  .public-consultation-list .public-consultation-list-item {
    padding: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .vacancy-list .vacancy-list-item,
  .vacancy-list .public-consultation-list-item,
  .public-consultation-list .vacancy-list-item,
  .public-consultation-list .public-consultation-list-item {
    padding: 1.5rem;
  }
}
.vacancy-list .vacancy-list-item + .vacancy-list-item, .vacancy-list .vacancy-list-item + .public-consultation-list-item,
.vacancy-list .public-consultation-list-item + .vacancy-list-item,
.vacancy-list .public-consultation-list-item + .public-consultation-list-item,
.public-consultation-list .vacancy-list-item + .vacancy-list-item,
.public-consultation-list .vacancy-list-item + .public-consultation-list-item,
.public-consultation-list .public-consultation-list-item + .vacancy-list-item,
.public-consultation-list .public-consultation-list-item + .public-consultation-list-item {
  margin-top: 1.5rem;
}

.vacancy-list-item__closing-date,
.public-consultation-list-item__closing-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.vacancy-list-item__closing-date .vacancy-list-item, .vacancy-list-item__closing-date .public-consultation-list-item__meta-data-value,
.public-consultation-list-item__closing-date .vacancy-list-item,
.public-consultation-list-item__closing-date .public-consultation-list-item__meta-data-value {
  color: #2cd7e4;
}
.vacancy-list-item__meta-data-label,
.public-consultation-list-item__meta-data-label {
  font-weight: 700;
  margin-right: 5px;
}
.vacancy-list-item .button--primary, .vacancy-list-item .button--book-now, .vacancy-list-item .button--more, .vacancy-list-item .home-slider__links li.link-book-now-hold a, .home-slider__links li.link-book-now-hold .vacancy-list-item a, .vacancy-list-item .home-slider__links li.link-read-more-hold a, .home-slider__links li.link-read-more-hold .vacancy-list-item a, .vacancy-list-item .products-block-wrapper header .more-link-hold a, .products-block-wrapper header .more-link-hold .vacancy-list-item a,
.vacancy-list-item .products-block-wrapper footer .more-link-hold a,
.products-block-wrapper footer .more-link-hold .vacancy-list-item a, .vacancy-list-item .services-block-wrapper header .more-link-hold a, .services-block-wrapper header .more-link-hold .vacancy-list-item a,
.vacancy-list-item .services-block-wrapper footer .more-link-hold a,
.services-block-wrapper footer .more-link-hold .vacancy-list-item a,
.public-consultation-list-item .button--primary,
.public-consultation-list-item .button--book-now,
.public-consultation-list-item .button--more,
.public-consultation-list-item .home-slider__links li.link-book-now-hold a,
.home-slider__links li.link-book-now-hold .public-consultation-list-item a,
.public-consultation-list-item .home-slider__links li.link-read-more-hold a,
.home-slider__links li.link-read-more-hold .public-consultation-list-item a,
.public-consultation-list-item .products-block-wrapper header .more-link-hold a,
.products-block-wrapper header .more-link-hold .public-consultation-list-item a,
.public-consultation-list-item .products-block-wrapper footer .more-link-hold a,
.products-block-wrapper footer .more-link-hold .public-consultation-list-item a,
.public-consultation-list-item .services-block-wrapper header .more-link-hold a,
.services-block-wrapper header .more-link-hold .public-consultation-list-item a,
.public-consultation-list-item .services-block-wrapper footer .more-link-hold a,
.services-block-wrapper footer .more-link-hold .public-consultation-list-item a {
  display: inline-block;
  vertical-align: top;
  color: #fff;
  border-bottom: 5px solid #f07ce8;
}
.vacancy-list-item .button--primary:hover, .vacancy-list-item .button--book-now:hover, .vacancy-list-item .button--more:hover, .vacancy-list-item .home-slider__links li.link-book-now-hold a:hover, .home-slider__links li.link-book-now-hold .vacancy-list-item a:hover, .vacancy-list-item .home-slider__links li.link-read-more-hold a:hover, .home-slider__links li.link-read-more-hold .vacancy-list-item a:hover, .vacancy-list-item .products-block-wrapper header .more-link-hold a:hover, .products-block-wrapper header .more-link-hold .vacancy-list-item a:hover,
.vacancy-list-item .products-block-wrapper footer .more-link-hold a:hover,
.products-block-wrapper footer .more-link-hold .vacancy-list-item a:hover, .vacancy-list-item .services-block-wrapper header .more-link-hold a:hover, .services-block-wrapper header .more-link-hold .vacancy-list-item a:hover,
.vacancy-list-item .services-block-wrapper footer .more-link-hold a:hover,
.services-block-wrapper footer .more-link-hold .vacancy-list-item a:hover, .vacancy-list-item .button--primary:focus, .vacancy-list-item .button--book-now:focus, .vacancy-list-item .button--more:focus, .vacancy-list-item .home-slider__links li.link-book-now-hold a:focus, .home-slider__links li.link-book-now-hold .vacancy-list-item a:focus, .vacancy-list-item .home-slider__links li.link-read-more-hold a:focus, .home-slider__links li.link-read-more-hold .vacancy-list-item a:focus, .vacancy-list-item .products-block-wrapper header .more-link-hold a:focus, .products-block-wrapper header .more-link-hold .vacancy-list-item a:focus,
.vacancy-list-item .products-block-wrapper footer .more-link-hold a:focus,
.products-block-wrapper footer .more-link-hold .vacancy-list-item a:focus, .vacancy-list-item .services-block-wrapper header .more-link-hold a:focus, .services-block-wrapper header .more-link-hold .vacancy-list-item a:focus,
.vacancy-list-item .services-block-wrapper footer .more-link-hold a:focus,
.services-block-wrapper footer .more-link-hold .vacancy-list-item a:focus,
.public-consultation-list-item .button--primary:hover,
.public-consultation-list-item .button--book-now:hover,
.public-consultation-list-item .button--more:hover,
.public-consultation-list-item .home-slider__links li.link-book-now-hold a:hover,
.home-slider__links li.link-book-now-hold .public-consultation-list-item a:hover,
.public-consultation-list-item .home-slider__links li.link-read-more-hold a:hover,
.home-slider__links li.link-read-more-hold .public-consultation-list-item a:hover,
.public-consultation-list-item .products-block-wrapper header .more-link-hold a:hover,
.products-block-wrapper header .more-link-hold .public-consultation-list-item a:hover,
.public-consultation-list-item .products-block-wrapper footer .more-link-hold a:hover,
.products-block-wrapper footer .more-link-hold .public-consultation-list-item a:hover,
.public-consultation-list-item .services-block-wrapper header .more-link-hold a:hover,
.services-block-wrapper header .more-link-hold .public-consultation-list-item a:hover,
.public-consultation-list-item .services-block-wrapper footer .more-link-hold a:hover,
.services-block-wrapper footer .more-link-hold .public-consultation-list-item a:hover,
.public-consultation-list-item .button--primary:focus,
.public-consultation-list-item .button--book-now:focus,
.public-consultation-list-item .button--more:focus,
.public-consultation-list-item .home-slider__links li.link-book-now-hold a:focus,
.home-slider__links li.link-book-now-hold .public-consultation-list-item a:focus,
.public-consultation-list-item .home-slider__links li.link-read-more-hold a:focus,
.home-slider__links li.link-read-more-hold .public-consultation-list-item a:focus,
.public-consultation-list-item .products-block-wrapper header .more-link-hold a:focus,
.products-block-wrapper header .more-link-hold .public-consultation-list-item a:focus,
.public-consultation-list-item .products-block-wrapper footer .more-link-hold a:focus,
.products-block-wrapper footer .more-link-hold .public-consultation-list-item a:focus,
.public-consultation-list-item .services-block-wrapper header .more-link-hold a:focus,
.services-block-wrapper header .more-link-hold .public-consultation-list-item a:focus,
.public-consultation-list-item .services-block-wrapper footer .more-link-hold a:focus,
.services-block-wrapper footer .more-link-hold .public-consultation-list-item a:focus {
  color: #fff;
  border-width: 5px;
  background: #f07ce8;
  border-color: #fdeefc;
}

/*
 * Forms, webforms
 */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=date],
input[type=month],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=week],
input[type=number],
input[type=search],
input[type=tel],
input[type=color],
.form-text {
  border: 2px solid #ccc;
  color: #000;
  width: 100%;
  outline: 3px solid transparent;
  outline-offset: 2px;
  background-color: #fff;
  -webkit-appearance: none;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  border-radius: 0;
}
@media (max-width: 639px) {
  input[type=text],
  input[type=password],
  input[type=email],
  input[type=url],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=datetime],
  input[type=datetime-local],
  input[type=week],
  input[type=number],
  input[type=search],
  input[type=tel],
  input[type=color],
  .form-text {
    font-size: 1rem;
    line-height: 32px;
    height: 40px;
    padding: 0 15px;
  }
}
@media (min-width: 640px) {
  input[type=text],
  input[type=password],
  input[type=email],
  input[type=url],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=datetime],
  input[type=datetime-local],
  input[type=week],
  input[type=number],
  input[type=search],
  input[type=tel],
  input[type=color],
  .form-text {
    font-size: 1.125rem;
    line-height: 42px;
    height: 50px;
    padding: 0 20px;
  }
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.form-text:focus {
  outline-color: #f07ce8;
}
input[type=text].error,
input[type=password].error,
input[type=email].error,
input[type=url].error,
input[type=date].error,
input[type=month].error,
input[type=time].error,
input[type=datetime].error,
input[type=datetime-local].error,
input[type=week].error,
input[type=number].error,
input[type=search].error,
input[type=tel].error,
input[type=color].error,
.form-text.error {
  border-color: #d60000;
  background: rgba(214, 0, 0, 0.04);
}

select,
textarea {
  border: 2px solid #ccc;
  color: #000;
  font-size: 1rem;
  width: 100%;
  outline: none;
  background-color: #fff;
  -webkit-transition: border-color 0.2s;
  -o-transition: border-color 0.2s;
  transition: border-color 0.2s;
  outline: 3px solid transparent;
  outline-offset: 2px;
  -webkit-appearance: none;
  border-radius: 0;
}
@media (max-width: 639px) {
  select,
  textarea {
    font-size: 1rem;
  }
}
@media (min-width: 640px) {
  select,
  textarea {
    font-size: 1.125rem;
  }
}
select:focus,
textarea:focus {
  outline-color: #f07ce8;
  border-radius: 0;
}
select.error,
textarea.error {
  border-color: #d60000;
  background-color: rgba(214, 0, 0, 0.04);
  border-radius: 0;
}

@media (max-width: 639px) {
  select {
    line-height: 32px;
    height: 40px;
    padding: 0 15px;
  }
}
@media (min-width: 640px) {
  select {
    line-height: 42px;
    height: 50px;
    padding: 0 20px;
  }
}

textarea {
  max-width: 600px;
  min-width: 100%;
}
@media (max-width: 639px) {
  textarea {
    padding: 15px;
  }
}
@media (min-width: 640px) {
  textarea {
    padding: 20px;
  }
}

input[type=submit] {
  outline: 3px solid transparent;
  outline-offset: 2px;
}
input[type=submit]:focus {
  outline-color: #f07ce8;
  border-radius: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.field--widget-datetime-datelist .form-item {
  display: inline-block;
}
.field--widget-datetime-datelist select {
  width: auto;
}

.form-managed-file {
  width: 100%;
  max-width: 600px;
}
.form-managed-file input[type=submit] {
  padding: 0.75rem;
}

fieldset {
  margin-bottom: 1.5rem;
  padding: 0;
  border: 0;
}
fieldset fieldset {
  margin-bottom: 0;
}

.fieldset-description {
  margin-bottom: 1.5rem;
}

.grippie {
  max-width: 600px;
}

/*  legend... wait for it... dary! */
legend {
  max-width: 600px;
  padding: 0 0 4px;
  font-weight: 600;
  border-bottom: 2px solid #2cd7e4;
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
}
@media (max-width: 639px) {
  legend {
    font-size: 1.25rem;
  }
}
@media (min-width: 640px) {
  legend {
    font-size: 1.375rem;
  }
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
@media (max-width: 639px) {
  label {
    font-size: 1rem;
  }
}
@media (min-width: 640px) {
  label {
    font-size: 1.125rem;
  }
}
label.error {
  color: #d60000;
  font-weight: 700;
  margin: 0.625rem 0 0;
}
@media (max-width: 639px) {
  label.error {
    font-size: 0.875rem;
  }
}
@media (min-width: 640px) {
  label.error {
    font-size: 1rem;
  }
}

/*  Drupal classes */
.form-item,
.form-wrapper {
  margin-bottom: 1.5rem;
}

input[type=submit],
.form-submit {
  margin-bottom: 1.5rem;
}
.views-reset-button input[type=submit],
.views-reset-button .form-submit {
  background-color: #333;
}
.views-reset-button input[type=submit]:hover, .views-reset-button input[type=submit]:focus,
.views-reset-button .form-submit:hover,
.views-reset-button .form-submit:focus {
  background-color: #ea4ee0;
}

.form-managed-file .form-submit {
  background-color: #333;
}
.form-managed-file .form-submit:hover {
  background-color: #ea4ee0;
}

.description {
  font-size: 0.875rem;
  color: #4d4d4d;
  margin: 0.75rem 0 1.5rem;
}
.form-managed-file .form-file {
  display: inline;
}

.form-type-date select {
  width: auto;
}

.form-required:after {
  color: red;
  content: " *";
  font-size: 85%;
}

.field--type-datetime h4 {
  font-weight: 600;
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.875rem;
  text-transform: none;
  color: #000;
  margin-bottom: 0.75rem;
}

/**
 * Google Recaptcha
 */
.g-recaptcha {
  margin-bottom: 1.5rem;
}

/**
 * Errors
 */
.form-item--error-message {
  font-weight: 700;
  color: #cf5a5a;
  border-left: 2px solid #cf5a5a;
  margin-top: 0.75rem;
  padding-left: 0.75rem;
}

.js-form-item {
  max-width: 600px;
}

.field-hint-text--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.field-hint-text--top label {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.field-hint-text--top label.error {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: -0.625rem 0 0.625rem;
}
.field-hint-text--top input,
.field-hint-text--top .webform-select,
.field-hint-text--top .webform-textarea {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}
.field-hint-text--top .description {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0 0 0.75rem;
}
.field-hint-text--top .webform-select label.error,
.field-hint-text--top .webform-textarea label.error {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.field-hint-text--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.field-hint-text--bottom label {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.field-hint-text--bottom label.error {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 0 0.625rem;
}
.field-hint-text--bottom input,
.field-hint-text--bottom .webform-select,
.field-hint-text--bottom .webform-textarea {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}
.field-hint-text--bottom .description {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0.625rem 0 0;
}
.field-hint-text--bottom .webform-select label.error,
.field-hint-text--bottom .webform-textarea label.error {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.error-text--top,
.error-text--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.error-text--top label,
.error-text--bottom label {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}
.error-text--top .webform-select,
.error-text--top .webform-textarea,
.error-text--bottom .webform-select,
.error-text--bottom .webform-textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.error-text--top .webform-select label,
.error-text--top .webform-textarea label,
.error-text--bottom .webform-select label,
.error-text--bottom .webform-textarea label {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}
.error-text--top .webform-select text-area,
.error-text--top .webform-select select,
.error-text--top .webform-textarea text-area,
.error-text--top .webform-textarea select,
.error-text--bottom .webform-select text-area,
.error-text--bottom .webform-select select,
.error-text--bottom .webform-textarea text-area,
.error-text--bottom .webform-textarea select {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}
.error-text--top .description,
.error-text--bottom .description {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}

.error-text--top label {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.error-text--top label.error {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: -0.625rem 0 0.625rem;
}
.error-text--top .webform-select label,
.error-text--top .webform-textarea label {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.error-text--top input,
.error-text--top .webform-select,
.error-text--top .webform-textarea {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.error-text--top .description {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 0 0.625rem;
}

.error-text--bottom label.error {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 0.625rem 0 -0.625rem;
}
.error-text--bottom .description {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin: 0.625rem 0 0;
}

@media (min-width: 640px) {
  .label--inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 640px) {
  .label--inline label {
    padding: 17px 10px 0 0;
    margin: 0;
    max-width: 120px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 120px;
            flex: 1 0 120px;
  }
}
.label--inline label.error {
  padding-top: 0;
  margin: 0.625rem 0 0;
}
@media (min-width: 640px) {
  .label--inline label.error {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    padding-left: 7.5rem;
  }
}
@media (min-width: 640px) {
  .label--inline input,
  .label--inline .webform-select {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20%;
            flex: 1 0 20%;
    max-width: calc(100% - 120px);
  }
}
@media (min-width: 640px) {
  .label--inline .webform-select label.error {
    padding: 0;
    margin-top: 0.625rem;
  }
}
@media (min-width: 640px) {
  .label--inline.field-hint-text--top .description {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    padding-left: 120px;
    margin: 0 0 0.625rem;
  }
}
@media (min-width: 640px) {
  .label--inline.field-hint-text--top input,
  .label--inline.field-hint-text--top .webform-select {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 640px) {
  .label--inline.field-hint-text--top label {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 640px) {
  .label--inline.field-hint-text--top label.error {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: -0.625rem 0 0.625rem;
  }
}
@media (min-width: 640px) {
  .label--inline.field-hint-text--bottom .description {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 120px;
    margin: 0.625rem 0 0;
  }
}
@media (min-width: 640px) {
  .label--inline.field-hint-text--bottom input,
  .label--inline.field-hint-text--bottom .webform-select {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 640px) {
  .label--inline.field-hint-text--bottom label {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 640px) {
  .label--inline.field-hint-text--bottom label.error {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0 0 0.625rem;
  }
}
@media (min-width: 640px) {
  .label--inline.error-text--top .description {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    padding-left: 120px;
    margin: 0 0 0.625rem;
  }
}
@media (min-width: 640px) {
  .label--inline.error-text--top input,
  .label--inline.error-text--top .webform-select {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 640px) {
  .label--inline.error-text--top label {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 640px) {
  .label--inline.error-text--top label.error {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: -0.625rem 0 0.625rem;
  }
}
@media (min-width: 640px) {
  .label--inline.error-text--bottom .description {
    padding-left: 120px;
    margin: 0.625rem 0 0;
  }
}
@media (min-width: 640px) {
  .label--inline.error-text--bottom input,
  .label--inline.error-text--bottom .webform-select {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 640px) {
  .label--inline.error-text--bottom label {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 640px) {
  .label--inline.error-text--bottom label.error {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0.625rem 0 -0.625rem;
  }
}

.webform-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.webform-select select {
  background-color: #fff;
  background-image: url("../img/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}
.webform-select select.error {
  background-color: rgba(214, 0, 0, 0.04);
}
.webform-select:-ms-expand {
  display: none;
}

.webform-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.webform-textarea textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}

.js-form-type-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 639px) {
  .js-form-type-checkbox {
    margin-bottom: 0.525rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .js-form-type-checkbox {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .js-form-type-checkbox {
    margin-bottom: 1.125rem;
  }
}
.js-form-type-checkbox .description {
  -webkit-box-ordinal-group: -2;
      -ms-flex-order: -3;
          order: -3;
  margin: 0 0 0.625rem;
}
.js-form-type-checkbox label.error {
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  margin: -0.625rem 0 0.625rem;
}
.js-form-type-checkbox.error-text--top label.error {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.js-form-type-checkbox.error-text--bottom label.error {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0.625rem 0;
}
.js-form-type-checkbox .option {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  margin: 0;
  padding-top: 3px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media (max-width: 639px) {
  .js-form-type-checkbox .option {
    font-size: 1rem;
  }
}
@media (min-width: 640px) {
  .js-form-type-checkbox .option {
    font-size: 1.125rem;
  }
}
.js-form-type-checkbox .option:before {
  position: absolute;
  content: "";
  z-index: 1;
  left: 0;
  top: 5px;
  height: 22px;
  width: 22px;
  background-color: transparent;
  border: 2px solid #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 3px solid transparent;
  outline-offset: 3px;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}
.js-form-type-checkbox .option:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 7px;
  border-left: 3px solid #008752;
  border-bottom: 3px solid #008752;
  left: 5px;
  top: 11px;
  z-index: 2;
  -webkit-transform: rotate(-45deg) scale(0, 0);
      -ms-transform: rotate(-45deg) scale(0, 0);
          transform: rotate(-45deg) scale(0, 0);
  opacity: 0;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}
.js-form-type-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.js-form-type-checkbox input:hover ~ .option:before, .js-form-type-checkbox input:focus ~ .option:before {
  -webkit-box-shadow: 0 0 4px rgba(253, 238, 252, 0.5);
          box-shadow: 0 0 4px rgba(253, 238, 252, 0.5);
}
.js-form-type-checkbox input:focus ~ .option:before {
  outline-color: #f07ce8;
  -webkit-box-shadow: 0 0 4px rgba(253, 238, 252, 0.5);
          box-shadow: 0 0 4px rgba(253, 238, 252, 0.5);
}
.js-form-type-checkbox input:checked ~ .option:after {
  -webkit-transform: rotate(-45deg) scale(1, 1);
      -ms-transform: rotate(-45deg) scale(1, 1);
          transform: rotate(-45deg) scale(1, 1);
  opacity: 1;
}

.js-form-type-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 639px) {
  .js-form-type-radio {
    margin-bottom: 0.525rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .js-form-type-radio {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .js-form-type-radio {
    margin-bottom: 1.5rem;
  }
}
.js-form-type-radio .description {
  -webkit-box-ordinal-group: -2;
      -ms-flex-order: -3;
          order: -3;
  margin: 0 0 0.625rem;
}
.js-form-type-radio label.error {
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  margin: -0.625rem 0 0.625rem;
}
.js-form-type-radio .option {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
  padding-top: 2px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media (max-width: 639px) {
  .js-form-type-radio .option {
    font-size: 1rem;
  }
}
@media (min-width: 640px) {
  .js-form-type-radio .option {
    font-size: 1.125rem;
  }
}
.js-form-type-radio .option:before {
  position: absolute;
  content: "";
  z-index: 1;
  left: 0;
  top: 5px;
  height: 22px;
  width: 22px;
  background-color: transparent;
  border: 2px solid #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 3px solid transparent;
  outline-offset: 3px;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
  border-radius: 100%;
}
.js-form-type-radio .option:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #008752;
  left: 5px;
  top: 10px;
  z-index: 2;
  -webkit-transform: rotate(-45deg) scale(0, 0);
      -ms-transform: rotate(-45deg) scale(0, 0);
          transform: rotate(-45deg) scale(0, 0);
  opacity: 0;
  border-radius: 100%;
  -webkit-transition: 200ms ease-in-out all;
  -o-transition: 200ms ease-in-out all;
  transition: 200ms ease-in-out all;
}
.js-form-type-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.js-form-type-radio input:hover ~ .option:before, .js-form-type-radio input:focus ~ .option:before {
  -webkit-box-shadow: 0 0 4px rgba(253, 238, 252, 0.5);
          box-shadow: 0 0 4px rgba(253, 238, 252, 0.5);
}
.js-form-type-radio input:focus ~ .option:before {
  outline-color: #f07ce8;
  -webkit-box-shadow: 0 0 4px rgba(253, 238, 252, 0.5);
          box-shadow: 0 0 4px rgba(253, 238, 252, 0.5);
}
.js-form-type-radio input:checked ~ .option:after {
  -webkit-transform: rotate(-45deg) scale(1, 1);
      -ms-transform: rotate(-45deg) scale(1, 1);
          transform: rotate(-45deg) scale(1, 1);
  opacity: 1;
}

.checkboxes--wrapper {
  margin-left: 0;
}
.checkboxes--wrapper legend {
  border: 0;
  margin: 0 0 0.75rem;
  font-weight: 400;
}
@media (max-width: 639px) {
  .checkboxes--wrapper legend {
    font-size: 1rem;
  }
}
@media (min-width: 640px) {
  .checkboxes--wrapper legend {
    font-size: 1.125rem;
  }
}
.checkboxes--wrapper .form-type-checkbox,
.checkboxes--wrapper .js-form-type-checkbox {
  margin-bottom: 0.625rem;
}
.checkboxes--wrapper .fieldset-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkboxes--wrapper .fieldset-wrapper .form-checkboxes {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}
.checkboxes--wrapper .fieldset-wrapper .form-checkboxes .js-form-type-checkbox label.error {
  margin: 0 0 0.625rem;
}
.checkboxes--wrapper .fieldset-wrapper .description {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
  margin: 0;
}

.form-type-radio {
  margin-bottom: 0;
}

.form-radios label,
label.option {
  display: inline;
}

.js-webform-type-radios legend {
  font-size: 1rem;
  border-bottom: 0;
  margin-bottom: 0.45rem;
}

.js-form-type-radio.form-item {
  margin-bottom: 7px;
}

.webform-file-button {
  margin-top: 0;
  padding: 0.75rem;
  margin-right: 0.75rem;
}

.fieldset-wrapper .field-prefix {
  display: block;
  margin-bottom: 1.5rem;
}

.checkboxes--wrapper,
.webform-select-other,
.js-webform-radios-other,
.js-webform-checkboxes-other {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.5rem;
}
.checkboxes--wrapper legend,
.webform-select-other legend,
.js-webform-radios-other legend,
.js-webform-checkboxes-other legend {
  font-size: 1rem;
  border-bottom: 0;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.js-form-wrapper {
  margin-left: 0;
  margin-right: 0;
}

.webform-select-other {
  margin-bottom: 0;
}

@media (max-width: 479px) {
  .webform-submission-form {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .webform-submission-form {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .webform-submission-form {
    margin-bottom: 4.5rem;
  }
}

.js-webform-radios.webform-options-display-side-by-side {
  display: block;
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 -10px;
}
.js-webform-radios.webform-options-display-side-by-side .js-form-type-radio {
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 0;
}

.js-webform-checkboxes.webform-options-display-two-columns {
  display: block;
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 -10px;
}
.js-webform-checkboxes.webform-options-display-two-columns .js-form-type-checkbox {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 0;
}
@media (max-width: 639px) {
  .js-webform-checkboxes.webform-options-display-two-columns .js-form-type-checkbox {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 640px) {
  .js-webform-checkboxes.webform-options-display-two-columns .js-form-type-checkbox {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
    max-width: 50%;
  }
}

.form-main-wrapper {
  border: 1px solid #ccc;
  max-width: 630px;
}
@media (max-width: 639px) {
  .form-main-wrapper {
    padding: 1.5625rem 0.9375rem;
  }
}
@media (min-width: 640px) {
  .form-main-wrapper {
    padding: 1.875rem 1.25rem;
  }
}
.form-main-wrapper .form-actions,
.form-main-wrapper #edit-str-lig-your-details {
  margin-bottom: 0;
}
.form-main-wrapper .form-actions .button, .form-main-wrapper .form-actions .button--arrow-right, .form-main-wrapper .form-actions .button--upload, .form-main-wrapper .form-actions .button--download, .form-main-wrapper .form-actions .button--file, .form-main-wrapper .form-actions .button--play,
.form-main-wrapper #edit-str-lig-your-details .button,
.form-main-wrapper #edit-str-lig-your-details .button--arrow-right,
.form-main-wrapper #edit-str-lig-your-details .button--upload,
.form-main-wrapper #edit-str-lig-your-details .button--download,
.form-main-wrapper #edit-str-lig-your-details .button--file,
.form-main-wrapper #edit-str-lig-your-details .button--play {
  margin-bottom: 0;
}

.form-element-row {
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .form-element-row .webform-section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -7px;
  }
}
@media (min-width: 640px) {
  .form-element-row .webform-section-wrapper .js-form-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    padding: 0 7px;
  }
}
@media (min-width: 640px) {
  .form-element-row .webform-section-wrapper .form-name-title {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 15%;
            flex: 1 0 15%;
  }
}

.webform-email-confirm--wrapper {
  margin: 0 !important;
}
.webform-email-confirm--wrapper legend {
  display: none;
}
@media (min-width: 640px) {
  .webform-email-confirm--wrapper .fieldset-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -7px;
  }
}
.webform-email-confirm--wrapper .js-form-item {
  margin-bottom: 1.5rem !important;
}
@media (min-width: 640px) {
  .webform-email-confirm--wrapper .js-form-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    padding: 0 7px;
  }
}

/* ---------- Import design ---------- */
@media (max-width: 767px) {
  .page-footer {
    font-size: 0.875rem;
    padding-bottom: 44px;
  }
}
@media (min-width: 768px) {
  .page-footer {
    font-size: 0.9375rem;
  }
}
.page-footer__wrap {
  border-top: 5px solid #f07ce8;
  background-color: #000;
  color: #e6e6e6;
  position: relative;
}
@media (max-width: 639px) {
  .page-footer__wrap {
    padding: 2.25rem 0 0;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .page-footer__wrap {
    padding: 2.7rem 0 0;
  }
}
@media (min-width: 1024px) {
  .page-footer__wrap {
    padding: 3.75rem 0 0;
  }
}
.page-footer a {
  color: #fff;
  border-bottom: 1px solid transparent;
  font-weight: inherit;
}
.page-footer a:hover {
  color: #fdeefc;
  border-color: #f07ce8;
}
.page-footer a[href^=mailto] {
  word-break: break-all;
}
.page-footer address {
  font-style: normal;
}
.page-footer h3,
.page-footer h4 {
  color: #fff;
  margin: 0 0 10px;
}
@media (max-width: 639px) {
  .page-footer h3,
  .page-footer h4 {
    text-align: center;
    margin-bottom: 5px;
  }
}
@media (max-width: 1023px) {
  .page-footer h3,
  .page-footer h4 {
    font-size: 1.1875rem;
  }
}
@media (min-width: 1024px) {
  .page-footer h3,
  .page-footer h4 {
    font-size: 1.25rem;
  }
}
.page-footer p {
  margin-bottom: 1rem;
}
.page-footer dl {
  margin-bottom: 1rem;
}
.page-footer dl dt {
  margin: 0 5px 0 0;
  font-weight: bold;
}
@media (min-width: 640px) {
  .page-footer dl dt {
    float: left;
  }
}
.page-footer dl dd {
  margin: 0 0 8px;
}
.page-footer table {
  width: 100%;
  border: none;
  margin: 0;
}
.page-footer table td {
  border: 0;
}
.page-footer__contact-columns {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 639px) {
  .page-footer__contact-columns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page-footer__column {
  padding: 0 15px;
}
@media (max-width: 639px) {
  .page-footer__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    padding-bottom: 1.8rem;
  }
}
.page-footer__column .footer-logo {
  max-width: 210px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.page-footer__column .footer-logo a {
  border: 0 !important;
}
.page-footer__column .footer-logo img {
  width: 100%;
  max-width: 100%;
}
.page-footer__column--column-1 {
  text-align: center;
}
@media (max-width: 1023px) {
  .page-footer__column--column-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 639px) {
  .page-footer__column--column-1 {
    max-width: 400px;
  }
}
@media (min-width: 1024px) {
  .page-footer__column--column-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
    max-width: 33%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .page-footer__column--column-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 48%;
            flex: 1 0 48%;
    max-width: 48%;
  }
}
@media (min-width: 1024px) {
  .page-footer__column--column-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
    max-width: 33%;
  }
}
.page-footer__column--column-2 .page-footer__column-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 639px) {
  .page-footer__column--column-2 .page-footer__column-wrap {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .page-footer__column--column-2 .page-footer__column-wrap {
    padding-left: 40px;
  }
}
.page-footer__column--column-2 .page-footer__column-wrap .block {
  max-width: 100%;
}
@media (max-width: 639px) {
  .page-footer__column--column-3 {
    padding-bottom: 0;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .page-footer__column--column-3 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  .page-footer__column--column-3 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
    max-width: 33%;
  }
}
@media (min-width: 1250px) {
  .page-footer__column--column-3 {
    padding-left: 50px;
  }
}
.page-footer__column--column-3 .page-footer__column-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 639px) {
  .page-footer__column--column-3 .page-footer__column-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 640px) {
  .page-footer__column--column-3 .page-footer__column-wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.page-footer__column--column-3 p {
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .page-footer__column .social-block {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .page-footer__column .social-block {
    display: none;
  }
}
@media (max-width: 639px) {
  .page-footer__column .social-networks {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page-footer__column .social-networks a:hover:after {
  color: #fff;
}
.page-footer__column .social-networks a:after {
  color: #bfbfbf;
}
.page-footer__column .afterpay-block {
  width: 100%;
}

@media (max-width: 639px) {
  .page-footer-top {
    padding: 0 0 2.25rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .page-footer-top {
    padding: 0 0 2.7rem;
  }
}
@media (min-width: 1024px) {
  .page-footer-top {
    padding: 0 0 3.75rem;
  }
}

.page-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 0;
  background: #020202;
}
.page-footer-bottom p {
  margin: 0;
}
.page-footer-bottom .row, .page-footer-bottom .block-featured-content .block__body, .block-featured-content .page-footer-bottom .block__body, .page-footer-bottom .home-slider .carousel-cell .caption-wrap-frame, .home-slider .carousel-cell .page-footer-bottom .caption-wrap-frame, .page-footer-bottom .gift-voucher-block .block__body, .gift-voucher-block .page-footer-bottom .block__body, .page-footer-bottom .path--frontpage .paragraph .paragraph-content-wrap, .path--frontpage .paragraph .page-footer-bottom .paragraph-content-wrap, .page-footer-bottom .search-global .block__body, .search-global .page-footer-bottom .block__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/**
 * Layout
 *
 * All layout theming should go in this file
*/
.dialog-off-canvas-main-canvas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 100vh;
}

.row, .block-featured-content .block__body, .home-slider .carousel-cell .caption-wrap-frame, .gift-voucher-block .block__body, .path--frontpage .paragraph .paragraph-content-wrap, .search-global .block__body {
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row:before, .block-featured-content .block__body:before, .home-slider .carousel-cell .caption-wrap-frame:before, .gift-voucher-block .block__body:before, .path--frontpage .paragraph .paragraph-content-wrap:before, .search-global .block__body:before, .row:after, .block-featured-content .block__body:after, .home-slider .carousel-cell .caption-wrap-frame:after, .gift-voucher-block .block__body:after, .path--frontpage .paragraph .paragraph-content-wrap:after, .search-global .block__body:after {
  content: "";
  display: table;
}
.row:after, .block-featured-content .block__body:after, .home-slider .carousel-cell .caption-wrap-frame:after, .gift-voucher-block .block__body:after, .path--frontpage .paragraph .paragraph-content-wrap:after, .search-global .block__body:after {
  clear: both;
}
.row:before, .block-featured-content .block__body:before, .home-slider .carousel-cell .caption-wrap-frame:before, .gift-voucher-block .block__body:before, .path--frontpage .paragraph .paragraph-content-wrap:before, .search-global .block__body:before, .row:after, .block-featured-content .block__body:after, .home-slider .carousel-cell .caption-wrap-frame:after, .gift-voucher-block .block__body:after, .path--frontpage .paragraph .paragraph-content-wrap:after, .search-global .block__body:after {
  content: "";
  display: table;
}
.row:after, .block-featured-content .block__body:after, .home-slider .carousel-cell .caption-wrap-frame:after, .gift-voucher-block .block__body:after, .path--frontpage .paragraph .paragraph-content-wrap:after, .search-global .block__body:after {
  clear: both;
}

.layout-main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 639px) {
  .layout-main {
    margin-top: 59px;
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .layout-main {
    margin-top: 59px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .layout-main {
    margin-top: 106px;
  }
}
@media (min-width: 1024px) {
  .layout-main {
    margin-top: 138px;
  }
}

@media (max-width: 479px) {
  .layout-content {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .layout-content {
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .layout-content {
    margin-bottom: 3.875rem;
  }
}
.path--frontpage .layout-content {
  margin-bottom: 0;
}

.layout-content-bottom {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
}

.page-footer {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  width: 100%;
}
.page-footer__wrap {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}

@media (min-width: 768px) {
  .page--has-sidebar-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
  }
}
@media (min-width: 768px) {
  .page--has-sidebar-first .layout-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 70%;
            flex: 1 0 70%;
    max-width: 70%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .page--has-sidebar-first aside.layout-sidebar-first {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    max-width: 30%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding: 0 15px;
  }
}

@media (min-width: 768px) {
  .page--has-sidebar-second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page--has-sidebar-second .layout-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 65%;
            flex: 1 0 65%;
    max-width: calc(100% - 280px);
    padding: 0 15px;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  .page--has-sidebar-second .layout-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 70%;
            flex: 1 0 70%;
    max-width: 70%;
    padding: 0 15px;
    padding-right: 40px;
  }
}
@media (max-width: 479px) {
  .page--has-sidebar-second aside.layout-sidebar-second {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .page--has-sidebar-second aside.layout-sidebar-second {
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page--has-sidebar-second aside.layout-sidebar-second {
    padding: 0 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 35%;
            flex: 1 0 35%;
    max-width: 280px;
  }
}
@media (min-width: 1024px) {
  .page--has-sidebar-second aside.layout-sidebar-second {
    padding: 0 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    max-width: 30%;
  }
}

@media (min-width: 768px) {
  .page--has-sidebar-first.page--has-sidebar-second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
  }
}
@media (min-width: 768px) {
  .page--has-sidebar-first.page--has-sidebar-second .layout-content {
    padding: 0 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    max-width: 50%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 768px) {
  .page--has-sidebar-first.page--has-sidebar-second .layout-sidebar-first {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 25%;
            flex: 1 0 25%;
    max-width: 25%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .page--has-sidebar-first.page--has-sidebar-second .layout-sidebar-second {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 25%;
            flex: 1 0 25%;
    max-width: 25%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0 15px;
  }
}

.maintenance-main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.maintenance-main__header {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  background: #fdeefc;
  color: #000;
  height: 65px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
.maintenance-main__header .button--book {
  border: 2px solid #f07ce8;
  color: #000;
  padding: 10px 20px;
  display: block;
  line-height: 1.2;
  text-transform: uppercase;
}
.maintenance-main__header .button--book:hover, .maintenance-main__header .button--book:focus {
  color: #fff !important;
  background-color: #f07ce8;
  border-color: #f07ce8;
}
.maintenance-main__header a {
  color: #000;
}
.maintenance-main__header a:hover, .maintenance-main__header a:focus {
  color: #000;
}
.maintenance-main__header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.maintenance-main__phone {
  padding: 10px 0;
}
.maintenance-main__book {
  padding: 10px 0;
}
.maintenance-main__logo-hold {
  margin: 0 auto 1.5rem;
}
@media (max-width: 1023px) {
  .maintenance-main__logo-hold {
    max-width: 200px;
  }
}
@media (min-width: 640px) {
  .maintenance-main__logo-hold {
    max-width: 300px;
  }
}
.maintenance-main__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  text-align: center;
  padding: 80px 0 40px;
}
.maintenance-main__text {
  font-weight: 700;
}
.maintenance-main .book-hold {
  margin-bottom: 1.5rem;
}
.maintenance-main .book-hold a {
  text-transform: uppercase;
  font-size: 40px;
  height: 80px;
  line-height: 70px;
  padding: 0 50px !important;
}
@media (max-width: 1023px) {
  .maintenance-main .book-hold a {
    font-size: 30px;
    height: 70px;
    line-height: 65px;
    padding: 0 40px !important;
  }
}
@media (min-width: 1024px) {
  .maintenance-main .book-hold a {
    font-size: 40px;
    height: 80px;
    line-height: 70px;
    padding: 0 50px !important;
  }
}
.maintenance-main .book-hold a:hover, .maintenance-main .book-hold a:focus {
  color: #fff;
}

@media (max-width: 767px) {
  .content-date {
    margin-top: 2.25rem;
  }
}
@media (min-width: 768px) {
  .content-date {
    margin-top: 3.75rem;
  }
}
.content-date__wrap {
  color: #000;
  border-top: 1px solid #ccc;
}
@media (max-width: 767px) {
  .content-date__wrap {
    padding-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}
@media (min-width: 768px) {
  .content-date__wrap {
    padding-top: 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
  .page--has-sidebar-second .layout-sidebar-second .content-date {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .page--has-sidebar-second .layout-content .content-date {
    display: none !important;
  }
}

@media (max-width: 479px) {
  .page-hero-image {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .page-hero-image {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 1024px) and (max-width: 1249px) {
  .page-hero-image {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 1250px) and (max-width: 1399px) {
  .page-hero-image {
    margin-left: -30px;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1400px) {
  .page-hero-image {
    margin-left: -110px;
    margin-bottom: 3rem;
  }
}
@media print {
  .page-hero-image {
    margin: 0 0 30px !important;
    display: none !important;
  }
}
.page-hero-image img {
  width: 100%;
}
@media (max-width: 1249px) {
  .page-hero-image img {
    -webkit-box-shadow: 0 20px 25px 1px rgba(0, 0, 0, 0.25);
            box-shadow: 0 20px 25px 1px rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 1250px) {
  .page-hero-image img {
    -webkit-box-shadow: 0 25px 30px 1px rgba(0, 0, 0, 0.25);
            box-shadow: 0 25px 30px 1px rgba(0, 0, 0, 0.25);
  }
}
@media print {
  .page-hero-image img {
    width: auto !important;
    max-width: 100% !important;
  }
}
.path--frontpage .page-hero-image {
  display: none !important;
}

.field--name-field-page-short-description {
  font-weight: 600;
  font-size: 120%;
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */
