@charset "UTF-8";
/*  ==========================================================================
    Includes
    ==========================================================================

    This is the main includes file. Here we include each of the sections.
    This includes file only concerns it's self with the cascade order of
    the different sections. Each section than controls it's own internal cascade.

    Cascade Index
    -------------
    1.  Vars
        The 'Vars' section holds global variables that all partials should be able to access if needs be. Note partials may have variables within them that are deemed only relevant for that partial. If you add a variable that you want to use across various partials you might want to consider adding it here.

    2.  Functions
        Has useful functions.

    3.  Breakpoints
        The 'Breakpoints' section contains a list of global variables that represent different breakpoint sizes. They are separated from the 'Vars' section because they will make use of some functions, particularly em() and bp-size().

    4.  Mixins
        Has useful mixins.

    5.  Base
        These are styles which effect base elements (p, a, table ect). The 'Base' section includes a reset and parts of normalize.css(https://github.com/necolas/normalize.css) are sprinkled throughout.

    6.  vendor
        If you want to include 3rd party css. They are included here so that the 'Objects' and 'Ui' sections van override styles.

    7.  Objects
        Reusable patterns. May contain generic patterns like the 'Media' object but you may also fill this folder with patterns that are a little more specific to your project.

    8.  Ui
        The main styles for your project.

    9.  Helpers
        Style trumps. Helper classes take precedence over everything else. I recommend only using helper classes if the style the helper class enables is relevant across all viewports otherwise you end up trying to fight the helper classes in the cascade.
*/
/*  ==========================================================================
    Vars
    ========================================================================== */
/*
    colors
    ------
*/
/*
    Fonts
    -----
*/
@font-face {
  font-family: "avenir";
  src: url("../fonts/AvenirNextCondensed-Regular.eot");
  src: url("../fonts/AvenirNextCondensed-Regular.woff2") format("woff2"), url("../fonts/AvenirNextCondensed-Regular.woff") format("woff");
}
@font-face {
  font-family: "schoolbook";
  src: url("../fonts/CenturySchL-Roma.eot");
  src: url("../fonts/CenturySchL-Roma.woff2") format("woff2"), url("../fonts/CenturySchL-Roma.woff") format("woff");
}
@font-face {
  font-family: "clerkenwell";
  src: url("../fonts/FSClerkenwell.eot");
  src: url("../fonts/FSClerkenwell.woff2") format("woff2"), url("../fonts/FSClerkenwell.woff") format("woff");
}
@font-face {
  font-family: "gotham";
  src: url("../fonts/Gotham-Book.eot");
  src: url("../fonts/Gotham-Book.woff2") format("woff2"), url("../fonts/Gotham-Book.woff") format("woff");
}
@font-face {
  font-family: "goudy";
  src: url("../fonts/GoudyOldStyleRegular.ttf");
}
/*
    Z-indexes
    ---------
    Keep track of z-index by assigning your elements z-index to
    one of these defined levels.
*/
/*
    Widths
    ------
*/
/*
    Spacing units
    -------------
*/
/* 1 */
/*  ==========================================================================
    Functions:Units
    ========================================================================== */
/*
    PX to EM
    --------

    Convert px to em

    $base-font-size is used as a default so when you use the em() function you don't have to provide
    a second parameter if your working with a element with the default font-size
*/
/*
    EM to PX
    --------

    Convert em to px
*/
/*  ==========================================================================
    Functions:Breakpoints
    ========================================================================== */
/* 2 */
/*  ==========================================================================
    Breakpoints
    ========================================================================== */
/* 3 */
/*  ==========================================================================
    Mixins:Respond
    ==========================================================================

    Generate media queries.

    $respond-no-media-queries
    -------------------------
    set this global var in your stylesheet aimed at browsers which do
    not support media queries (ie8) to give them desktop styles only.

    This way they get all the styles but the cascade makes sure they display
    the desktop styles (if your using a mobile first approach to layering the media queries)
*/
/*  ==========================================================================
    Mixins:Rem
    ==========================================================================

    A small mixin for easy use of rem with px as fallback
    usage: @include x-rem(font-size, 14px)
    usage: @include x-rem(marign, 0 12px 2 1.2)
    usage: @include x-rem(padding, 1.5 24px)

    thanks to Eric Meyer for https://github.com/ericam/susy
    and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/

    set $base-font-size outside of the mixin in your variables file
*/
/*  ==========================================================================
    Mixins:Visually Hidden
    ========================================================================== */
/* 4 */
/*  ==========================================================================
    Base:Reset
    ========================================================================== */
/*
    1. Use border-box globally
*/
*,
*:after,
*:before {
  box-sizing: border-box;
  /* 1 */
}

/*
    1. reset some stuff
*/
p, blockquote, pre,
dl, dd, form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  /* 1 */
  padding: 0;
  /* 1 */
}

/*
    1. Correct `block` display not defined for any HTML5 element in IE 8/9. - Normalize:v3.0.1
    1. Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox. - Normalize:v3.0.1
    1. Correct `block` display not defined for `main` in IE 11. - Normalize:v3.0.1
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
  /* 1 */
}

/*
    1. Correct `inline-block` display not defined in IE 8/9. - Normalize:v3.0.1
    2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. - Normalize:v3.0.1
*/
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/*
    1. Prevent modern browsers from displaying `audio` without controls. - Normalize:v3.0.1
    2. Remove excess height in iOS 5 devices. - Normalize:v3.0.1
*/
audio:not([controls]) {
  display: none;
  /* 1 */
  height: 0;
  /* 2 */
}

/*
    1. Address `[hidden]` styling not present in IE 8/9/10. - Normalize:v3.0.1
    2. Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. - Normalize:v3.0.1
*/
[hidden],
template {
  /* 2 */
  display: none;
}

/*  ==========================================================================
    Base:Main
    ========================================================================== */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 1.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
}

.page-template-template-driving-instructions [role=main] {
  padding-top: 200px;
}

#onetrust-close-btn-container,
#onetrust-reject-all-handler,
#onetrust-pc-sdk .ot-pc-refuse-all-handler {
  display: none !important;
}

#onetrust-banner-sdk #onetrust-button-group {
  width: 50% !important;
}

#onetrust-pc-sdk .save-preference-btn-handler {
  max-width: 40% !important;
}

/*  ==========================================================================
    Base:Lists
    ========================================================================== */
/*
    1. Remove vertical spacing from nested lists.
*/
li > ul,
li > ol {
  margin-bottom: 0;
  /* 1 */
}

/*
    1. Have a numbered `ul` without the semantics implied by using an `ol`.
*/
/*ul*/
.numbered-list {
  list-style-type: decimal;
  /* 1 */
}

/*  ==========================================================================
    Base:Images
    ========================================================================== */
/*
    1. So that `alt` text is visually offset if images don’t load.
    2. Fluid images.
    3. Remove border when inside `a` element in IE 8/9. - Normalize:v3.0.1
*/
img {
  font-style: italic;
  /* 1 */
  max-width: 100%;
  /* 2 */
  border: 0;
  /* 3 */
}

/*
    1. Images in `figure` elements.
*/
figure > img {
  display: block;
  /* 1 */
}

#login h1 a {
  background: url("/content/themes/standard/images/Butcombe_Logo_Cream-02.svg") no-repeat center top;
}

/*  ==========================================================================
    Base:Type
    ========================================================================== */
/*
    1. Remove underlines from potentially troublesome elements.
*/
u,
ins {
  text-decoration: none;
  /* 1 */
}

/*
    1. Apply faux underline via `border-bottom`.
*/
ins {
  border-bottom: 1px solid;
  /* 1 */
}

/*
    1. Give a help cursor to elements that give extra info on `:hover`.
*/
abbr[title],
dfn[title] {
  cursor: help;
  /* 1 */
}

/*
    1. Address styling not present in IE 8/9, Safari 5, and Chrome. - Normalize:v3.0.1
*/
abbr[title] {
  border-bottom: 1px dotted;
  /* 1 */
}

/*
    1. Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. - Normalize:v3.0.1
*/
b,
strong {
  font-weight: bold;
  /* 1 */
}

/*
    1. Address styling not present in Safari 5 and Chrome. - Normalize:v3.0.1
*/
dfn {
  font-style: italic;
  /* 1 */
}

/*
    Address styling not present in IE 8/9. - Normalize:v3.0.1
*/
mark {
  background: #ff0;
  /* 1 */
  color: #000;
  /* 1 */
}

/*
    1. Set consistent quote types. - Normalize:v2.1.0
*/
q {
  quotes: "“" "”" "‘" "’";
  /* 1 */
}

/*
    1. Address inconsistent and variable font size in all browsers. - Normalize:v3.0.1
*/
small {
  font-size: 0.5555555556em;
  /* 1 */
}

/*
    1:sub-sup. Prevent `sub` and `sup` affecting `line-height` in all browsers. - Normalize:v3.0.1
*/
sub,
sup {
  font-size: 75%;
  /* 1:sub-sup */
  line-height: 0;
  /* 1:sub-sup */
  position: relative;
  /* 1:sub-sup */
  vertical-align: baseline;
  /* 1:sub-sup */
}

sup {
  top: -0.5em;
  /* 1:sub-sup */
}

sub {
  bottom: -0.25em;
  /* 1:sub-sup */
}

/*  ==========================================================================
    Base:Forms
    ========================================================================== */
/*
    1. Give form elements some cursor interactions...
*/
label,
input,
textarea,
button,
select,
option {
  cursor: pointer;
  /* 1 */
}

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  /* 1 */
}

/*
    Known limitation: by default, Chrome and Safari on OS X allow very limited
    styling of `select`, unless a `border` property is set.

    1. Correct color not being inherited.
       Known issue: affects color of disabled elements. - Normalize:v3.0.1
    2. Correct font properties not being inherited. - Normalize:v3.0.1
    3. Address margins set differently in Firefox 4+, Safari, and Chrome. - Normalize:v3.0.1
*/
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
    1. Address `overflow` set to `hidden` in IE 8/9/10/11. - Normalize:v3.0.1
*/
button {
  overflow: visible;
  /* 1 */
}

/*
    1. Address inconsistent `text-transform` inheritance for `button` and `select`.
       All other form control elements do not inherit `text-transform` values.
       Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
       Correct `select` style inheritance in Firefox. - Normalize:v3.0.1
*/
button,
select {
  text-transform: none;
  /* 1 */
}

/*
    1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
       and `video` controls. - Normalize:v3.0.1
    2. Correct inability to style clickable `input` types in iOS. - Normalize:v3.0.1
    3. Improve usability and consistency of cursor style between image-type
       `input` and others. - Normalize:v3.0.1
*/
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/*
    1. Re-set default cursor for disabled elements. - Normalize:v3.0.1
*/
button[disabled],
html input[disabled] {
  cursor: default;
}

/*
    1. Remove inner padding and border in Firefox 4+. - Normalize:v3.0.1
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  /* 1 */
  padding: 0;
  /* 1 */
}

/*
    1. Address Firefox 4+ setting `line-height` on `input` using `!important` in
       the UA stylesheet. - Normalize:v3.0.1
*/
input {
  line-height: normal;
  /* 1 */
}

/*
    It's recommended that you don't attempt to style these elements.
    Firefox's implementation doesn't respect box-sizing, padding, or width.

    1. Address box sizing set to `content-box` in IE 8/9/10. - Normalize:v3.0.1
    2. Remove excess padding in IE 8/9/10. - Normalize:v3.0.1
*/
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
    1. Fix the cursor style for Chrome's increment/decrement buttons. For certain
       `font-size` values of the `input`, it causes the cursor style of the
       decrement button to change from `default` to `text`. - Normalize:v3.0.1
*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* 1 */
}

/*
    1. Address `appearance` set to `searchfield` in Safari and Chrome.
*/
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
}

/*
    1. Remove inner padding and search cancel button in Safari and Chrome on OS X.
       Safari (but not Chrome) clips the cancel button when the search input has
       padding (and `textfield` appearance). - Normalize:v3.0.1
*/
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* 1 */
}

/*
    1. Correct `color` not being inherited in IE 8/9/10/11. - Normalize:v3.0.1
    2. Remove padding so people aren't caught out if they zero out fieldsets. - Normalize:v3.0.1
*/
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
    1. Remove default vertical scrollbar in IE 8/9/10/11. - Normalize:v3.0.1
*/
textarea {
  overflow: auto;
  /* 1 */
}

/*
    1. Don't inherit the `font-weight` (applied by a rule above).
       NOTE: the default cannot safely be changed in Chrome and Safari on OS X. - Normalize:v3.0.1
*/
optgroup {
  font-weight: bold;
  /* 1 */
}

.form-errors li {
  color: #b94a48;
}

/*  ==========================================================================
    Base:Grouping
    ========================================================================== */
/*
    1. Address margin not present in IE 8/9 and Safari 5. - Normalize:v3.0.1
*/
figure {
  margin: 1em 40px;
  /* 1 */
}

/*
    1. Address differences between Firefox and other browsers. - Normalize:v3.0.1
*/
hr {
  -moz-box-sizing: content-box;
  /* 1 */
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
}

/*
    1. Contain overflow in all browsers. - Normalize:v3.0.1
*/
pre {
  overflow: auto;
  /* 1 */
}

/*
    1. Address odd `em`-unit font size rendering in all browsers. - Normalize:v2.1.0
*/
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 1 */
}

/*  ==========================================================================
    Base:Tables
    ========================================================================== */
/*
    1. Remove most spacing between table cells. - Normalize:v3.0.1
*/
table {
  border-collapse: collapse;
  /* 1 */
  border-spacing: 0;
  /* 1 */
}

/*  ==========================================================================
    Base:SVG
    ========================================================================== */
/*
    1. Correct overflow not hidden in IE 9/10/11. - Normalize:v3.0.1
*/
svg:not(:root) {
  overflow: hidden;
  /* 1 */
}

/*  ==========================================================================
    Base:Media
    ========================================================================== */
/*
    1. http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
*/
@-ms-viewport {
  width: device-width;
  /* 1 */
}
/* 5 */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

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

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-innosoft:before {
  content: "\e080";
}

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

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

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

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/content/themes/premium-plus-theme/fonts/fa-brands-400.eot");
  src: url("/content/themes/premium-plus-theme/fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/content/themes/premium-plus-theme/fonts/fa-brands-400.woff2") format("woff2"), url("/content/themes/premium-plus-theme/fonts/fa-brands-400.woff") format("woff"), url("/content/themes/premium-plus-theme/fonts/fa-brands-400.ttf") format("truetype"), url("/content/themes/premium-plus-theme/fonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/content/themes/premium-plus-theme/fonts/fa-regular-400.eot");
  src: url("/content/themes/premium-plus-theme/fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/content/themes/premium-plus-theme/fonts/fa-regular-400.woff2") format("woff2"), url("/content/themes/premium-plus-theme/fonts/fa-regular-400.woff") format("woff"), url("/content/themes/premium-plus-theme/fonts/fa-regular-400.ttf") format("truetype"), url("/content/themes/premium-plus-theme/fonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/content/themes/premium-plus-theme/fonts/fa-solid-900.eot");
  src: url("/content/themes/premium-plus-theme/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/content/themes/premium-plus-theme/fonts/fa-solid-900.woff2") format("woff2"), url("/content/themes/premium-plus-theme/fonts/fa-solid-900.woff") format("woff"), url("/content/themes/premium-plus-theme/fonts/fa-solid-900.ttf") format("truetype"), url("/content/themes/premium-plus-theme/fonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* 6 */
.alert {
  padding: 8px 14px;
  margin: 0 0 1em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  clear: both;
}

.alert--success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}

.alert--error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}

/*  ==========================================================================
    Objects:Button
    ==========================================================================

    The button classes are best applied to links, buttons, and submit inputs.
    These components can be used in forms, as calls to action, or as part of the
    general UI of the site/app.

    Recommended use:

    <a class="Button [Button--modifier]" role="button" href="[url]">Button text</a>
    <button class="Button [Button--modifier]" type="submit">Button text</button>
    <input class="Button [Button--modifier]" type="submit" value="Button text">

    Button template

    Build on this component using rulesets in your application-level CSS.

    1.  Corrects inability to style clickable `input` types in iOS
    2.  Normalize `box-sizing` across all elements that this component could be
        applied to.
    3.  Allow easier styling.
    4.  Normalize `line-height`. For `input`, it can't be changed from `normal` in Firefox 4+.
    5.  Normalise box model styles.
    6.  Prevent button text from being selectable.
    7.  Stop buttons wrapping and looking broken.
*/
.btn {
  -webkit-appearance: none;
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  cursor: pointer;
  display: inline-block;
  /* 3 */
  line-height: normal;
  /* 4 */
  margin: 0;
  border: 0;
  /* 5 */
  padding-top: 0;
  /* 5 */
  padding-bottom: 0;
  /* 5 */
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* 6 */
  white-space: nowrap;
  /* 7 */
  position: relative;
  text-decoration: none;
  /*
      Remove excess padding and border in Firefox 4+
  */
}
.btn, .btn:hover {
  text-decoration: none;
}
.btn:disabled, .btn.is-disabled {
  cursor: default;
}
.btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
    Variations
    ----------

    e.g
    .btn--primary{}
    .btn--secondary{}
    .btn--tertiary{}
*/
/*  ==========================================================================
    Objects:Grids
    ==========================================================================

    These grids are mostly from css wizardry grids:- https://github.com/csswizardry/csswizardry-grids
    but there is also some stuff from an older version of SUIT grid component:- https://github.com/suitcss/components-grid

    Fluid and nestable grid system, e.g.:

    <div class="grid">

        <div class="grid__cell one-third">
            <p>One third grid</p>
        </div><!--

     --><div class="grid__cell two-thirds">
            <p>Two thirds grid</p>
        </div><!--

     --><div class="grid__cell one-half">
            <p>One half grid</p>
        </div><!--

     --><div class="grid__cell one-quarter">
            <p>One quarter grid</p>
        </div><!--

     --><div class="grid__cell one-quarter">
            <p>One quarter grid</p>
        </div>

    </div>

*/
/*
    All content must be contained within child Grid-cell elements.

    1.  Account for browser defaults of elements that might be the root node of
        the component.
*/
.grid {
  display: block;
  /* 1 */
  padding: 0;
  /* 1 */
  margin: 0;
  /* 1 */
  margin-left: -1.6666666667em;
}

/*
    Very infrequently occurring grid wrappers as children of grid wrappers.
*/
.grid > .grid {
  margin-left: 0;
}

/*
    No explicit width by default. Rely on combining `Grid-cell` with a dimension
    utility or a component class that extends 'grid'.

    1. Fundamentals of the non-float grid layout.
    2. Controls vertical positioning of units.
    3. Make cells full-width by default.
*/
.grid__cell {
  display: inline-block;
  /* 1 */
  vertical-align: top;
  /* 2 */
  width: 100%;
  /* 3 */
  padding-left: 1.6666666667em;
}

/*
    Gutterless grids have all the properties of regular grids, minus any spacing.
*/
.grid--full {
  margin-left: 0;
}
.grid--full > .grid__cell {
  padding-left: 0;
}

/*
    Reversed grids allow you to structure your source in the opposite order to
    how your rendered layout will appear. Extends `.grid`.
*/
.grid--rev {
  direction: rtl;
  text-align: left;
}
.grid--rev > .grid__cell {
  direction: ltr;
  text-align: left;
}

/*  ==========================================================================
    Objects:Media
    ==========================================================================

    Image and text blocks, as devised by @stubbornella
    stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code

    This object is useful to document the usage of the overflow to create a new block formatting context pattern. I don't find myself using this actual object much as in a responsive context i often want a component to transform into a media object, so if i use the this object i end up fighting the styles.

    Dependencies
    ------------
    * group (clearfix) - must be applied to the main element.

    HTML
    ----
    <div class=media group>
        <img src=http://placehold.it/150x150 alt="" class=media__img>
        <p class=media__body>Lorem ipsum dolor sit amet, consectetur adipisicing elit,
        sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
    </div>

*/
.media {
  display: block;
}

.media__img {
  float: left;
  margin-right: 1.6666666667em;
}

/*
    Reversed image location (right instead of left).
*/
.media__img--rev {
  float: right;
  margin-left: 1.6666666667em;
}

.media__img img,
.media__img--rev img {
  display: block;
}

/*
    1. Create a new block formatting context. See - http://www.stubbornella.org/content/2009/07/23/overflow-a-secret-benefit/
*/
.media__body {
  overflow: hidden;
  /* 1 */
}

.media__body,
.media__body > :last-child {
  margin-bottom: 0;
}

/*  ==========================================================================
    Objects:Nav
    ==========================================================================

    By @csswizardry and taken from a version of inuit.css https://github.com/inuitcss

    When used on an `ol` or `ul`, this class throws the list into horizontal mode
    e.g.:

    Dependencies
    ------------
    * group (clearfix) - must be applied to the main element.

    HTML
    ----
    <ul class=nav group>
        <li><a href=#>Home</a></li>
        <li><a href=#>About</a></li>
        <li><a href=#>Portfolio</a></li>
        <li><a href=#>Contact</a></li>
    </ul>
*/
/*
    1:  Set line-height so positing does not depend on the global line-height set on the html element.
    Overwrite this value on a particular nav if you need to.
    This way if the global line-height changes it does not effect the navigations position.
*/
.nav {
  list-style: none;
  margin-left: 0;
  line-height: 1em;
  /* 1 */
}
.nav > li,
.nav > li > a {
  display: inline-block;
}

/*
    extends .nav and throws the list into vertical mode.
*/
.nav--stacked > li {
  display: list-item;
}
.nav--stacked > li > a {
  display: block;
}

/*
    Force a nav to occupy 100% of the available width of its parent. Extends
    .nav, original idea @pimpl
*/
.nav--fit {
  display: table;
  width: 100%;
}
.nav--fit > li {
  display: table-cell;
}
.nav--fit > li > a {
  display: block;
}

.hero-block-wrapper {
  position: relative;
  overflow: hidden;
}
.hero-block-wrapper > img {
  display: none;
  width: 100%;
  object-fit: cover;
  height: calc(100vh - 144px);
}
.hero-block-wrapper > img:first-child {
  display: block;
}
.hero-block-wrapper .ytplayer {
  width: 100%;
  height: calc(100vh - 144px);
}
.hero-block-wrapper .videowrapper {
  width: 100%;
  height: calc(100vh - 144px);
  overflow: hidden;
}
.hero-block-wrapper .videoplayer {
  width: 100%;
  height: calc(100vh - 144px);
  transform: scale(1.34);
}
.hero-block-wrapper .accolades {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  margin: 0 auto;
}
@media (min-width: 56.25em) {
  .hero-block-wrapper .accolades {
    bottom: 20px;
  }
}
.hero-block-wrapper .accolades img {
  margin: 0 4px;
  height: auto !important;
  max-height: 30px;
  max-width: 30px;
}
.hero-block-wrapper .accolades img:first-child {
  margin-left: 8px;
}
@media (min-width: 46.875em) {
  .hero-block-wrapper .accolades img {
    max-height: 90px;
    max-width: 90px;
  }
}
@media (min-width: 56.25em) {
  .hero-block-wrapper .accolades img {
    margin: 0 10px;
    max-height: none;
    max-width: none;
  }
}
.hero-block-wrapper .overlay-wrapper {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh - 144px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-block-wrapper .overlay-wrapper .heading {
  font-size: 42px;
  color: white;
}
.hero-block-wrapper .overlay-wrapper-premium {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 56.25em) {
  .hero-block-wrapper .overlay-wrapper-premium {
    height: calc(100vh - 144px);
  }
}
.hero-block-wrapper .overlay-wrapper-premium .heading {
  font-size: 35px;
  color: white;
  text-shadow: 0 0 20px #000000;
  letter-spacing: 2px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  max-width: 100%;
}
@media (min-width: 46.875em) {
  .hero-block-wrapper .overlay-wrapper-premium .heading {
    max-width: 60%;
    font-size: 36px;
  }
}
@media (min-width: 56.25em) {
  .hero-block-wrapper .overlay-wrapper-premium .heading {
    max-width: 100%;
  }
}
.hero-block-wrapper .overlay-wrapper-premium .heading::after {
  content: "";
  width: 70px;
  height: 2px;
  position: absolute;
  left: calc(50% - 35px);
  bottom: -36px;
  background-color: white;
}
.hero-block-wrapper .overlay-wrapper-premium.image {
  background-color: rgba(0, 0, 0, 0.2);
}

.video-block-wrapper {
  position: relative;
  padding: 0;
  height: 203px;
}
@media (min-width: 46.875em) {
  .video-block-wrapper {
    padding: 0 5vw;
    height: 422px;
  }
}
@media (min-width: 56.25em) {
  .video-block-wrapper {
    padding: 0 14vw;
    height: 766px;
  }
}
.video-block-wrapper .videowrapper {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 46.875em) {
  .video-block-wrapper .videowrapper {
    border-radius: 4px;
  }
}
.video-block-wrapper .videoplayer {
  width: 100%;
  height: 100%;
}
@media (min-width: 46.875em) {
  .video-block-wrapper .videoplayer {
    border-radius: 4px;
  }
}
.video-block-wrapper .videoplayer.vimeo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-block {
  position: relative;
  /*	padding: 0 14vw; */
  height: 204px;
}
@media (min-width: 46.875em) {
  .gallery-block {
    height: 423px;
  }
}
@media (min-width: 56.25em) {
  .gallery-block {
    height: 767px;
  }
}
.gallery-block ul.images {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  max-height: 100%;
}
.gallery-block ul.images li {
  min-width: 100%;
  width: 100%;
  max-height: 100%;
}
.gallery-block ul.images li img {
  height: 100%;
  width: 100%;
  margin: auto;
  object-fit: cover;
}
@media (min-width: 46.875em) {
  .gallery-block ul.images li img {
    border-radius: 4px;
  }
}
.gallery-block ul.images * {
  height: 204px;
}
@media (min-width: 46.875em) {
  .gallery-block ul.images * {
    height: 423px;
  }
}
@media (min-width: 56.25em) {
  .gallery-block ul.images * {
    height: 767px;
  }
}
.gallery-block ul.images .slick-slide li {
  transition: opacity 0.5s, padding 0.5s;
}
.gallery-block .controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: calc(50% - 19px);
  width: calc(100% - 60px);
  left: 30px;
}
@media (min-width: 46.875em) {
  .gallery-block .controls {
    width: calc(100% - 10vw - 60px);
    left: calc(5vw + 30px);
  }
}
@media (min-width: 56.25em) {
  .gallery-block .controls {
    width: calc(100% - 28vw - 136px);
    left: calc(14vw + 68px);
  }
}
.gallery-block .controls > * {
  width: 33px;
  height: 14px;
  display: block;
  cursor: pointer;
  background-size: 33px 14px;
}
@media (min-width: 46.875em) {
  .gallery-block .controls > * {
    width: 68px;
    height: 29px;
    background-size: 68px 29px;
  }
}
@media (min-width: 56.25em) {
  .gallery-block .controls > * {
    width: 80px;
    height: 34px;
    background-size: 80px 34px;
  }
}
.gallery-block .controls .sliderPrev {
  background-image: url("../images/arrow_left.svg");
}
.gallery-block .controls .sliderNext {
  background-image: url("../images/arrow_right.svg");
}
.gallery-block ul.slick-dots {
  list-style-type: none;
  padding: 0;
  height: initial;
  display: flex;
  justify-content: center;
  position: relative;
  top: -76px;
  max-width: 89%;
  overflow-x: clip;
}
.gallery-block ul.slick-dots li {
  min-width: unset;
  margin-right: 9px;
}
.gallery-block ul.slick-dots li button {
  content: "";
  height: 2px;
  width: 12vw;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
}
@media (min-width: 46.875em) {
  .gallery-block ul.slick-dots li button {
    height: 4px;
    width: 63px;
  }
}
.gallery-block ul.slick-dots li.slick-active button {
  background-color: white;
}
.gallery-block ul.slick-dots * {
  height: initial;
}
.gallery-block .gallery {
  max-width: 100%;
  width: 100%;
  order: 1;
}
@media (min-width: 56.25em) {
  .gallery-block .gallery {
    max-width: 100%;
    margin-bottom: 0px;
  }
}
.gallery-block .gallery .slider-nav .slick-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}
.gallery-block .gallery .slider-nav .slick-slide {
  height: auto;
  padding: 10px 2px;
  line-height: normal;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery-block .gallery .slider-nav .slick-slide img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
}
.gallery-block.prestige {
  height: 225px;
  width: 100vw;
  margin: auto;
}
@media (min-width: 46.875em) {
  .gallery-block.prestige {
    height: 637px;
  }
}
@media (min-width: 96.875em) {
  .gallery-block.prestige {
    height: 791px;
    width: 66.25vw;
  }
}
@media (min-width: 46.875em) {
  .gallery-block.prestige ul.images li img {
    border-radius: 0;
  }
}
.gallery-block.prestige ul.images * {
  height: 225px;
  width: 100vw;
}
@media (min-width: 46.875em) {
  .gallery-block.prestige ul.images * {
    height: 637px;
  }
}
@media (min-width: 96.875em) {
  .gallery-block.prestige ul.images * {
    height: 791px;
    width: 66.25vw;
  }
}
.gallery-block.prestige .controls {
  top: calc(50% - 18px);
  width: calc(100% - 36px);
  left: 18px;
}
@media (min-width: 46.875em) {
  .gallery-block.prestige .controls {
    top: calc(50% - 34px);
    width: calc(100% - 108px);
    left: 54px;
  }
}
.gallery-block.prestige .controls > * {
  width: 35px;
  height: 35px;
  background-size: 17px 17px;
  border: 1px solid white;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position-x: 9px;
  background-position-y: 9px;
}
@media (min-width: 46.875em) {
  .gallery-block.prestige .controls > * {
    width: 58px;
    height: 58px;
    background-size: 30px 28px;
    background-position-x: 14px;
    background-position-y: 15px;
  }
}
.gallery-block.prestige .controls > *:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.gallery-block.prestige .controls .sliderPrev {
  background-image: url("../images/prestige_gallery_arrow_left.svg");
}
.gallery-block.prestige .controls .sliderNext {
  background-image: url("../images/prestige_gallery_arrow_right.svg");
}
.gallery-block.prestige ul.slick-dots {
  justify-content: center;
  position: absolute;
  top: unset;
  bottom: 17px;
  left: 18px;
  margin: 0;
}
@media (min-width: 46.875em) {
  .gallery-block.prestige ul.slick-dots {
    bottom: 35px;
    left: 54px;
  }
}
.gallery-block.prestige ul.slick-dots li:not(:last-of-type) {
  margin-right: 13px;
}
.gallery-block.prestige ul.slick-dots li button {
  width: 48px;
  height: 4px;
  background-color: transparent;
  border: 1px solid white;
}
@media (min-width: 46.875em) {
  .gallery-block.prestige ul.slick-dots li button {
    width: 75px;
    height: 5px;
  }
}
.gallery-block.prestige ul.slick-dots li.slick-active button {
  background-color: white;
}

.faqs {
  padding: 0 5vw;
}
@media (min-width: 56.25em) {
  .faqs {
    padding: 0 20vw;
  }
}
.faqs .heading {
  position: relative;
  text-align: center;
  max-width: 100%;
  font-size: 28px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: auto auto 32px;
}
@media (min-width: 46.875em) {
  .faqs .heading {
    font-size: 32px;
    max-width: 80%;
    margin-bottom: 0;
  }
}
@media (min-width: 56.25em) {
  .faqs .heading {
    font-size: 36px;
    max-width: 50%;
  }
}
.faqs .heading::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: calc(50% - 20px);
  bottom: -13px;
  background-color: #707070;
}
.faqs .list-wrapper {
  padding: 0;
  list-style-type: none;
  text-align: center;
  margin: 0;
  cursor: pointer;
}
@media (min-width: 46.875em) {
  .faqs .list-wrapper {
    margin: 55px 0 0;
  }
}
.faqs .list-wrapper .list-element {
  padding: 23px;
  border-bottom: 1px solid #E5E5E5;
}
.faqs .list-wrapper .list-element .question {
  position: relative;
  font-size: 21px;
  margin: 0;
  font-weight: normal;
  text-align: center;
  padding: 0 5%;
  padding-bottom: 15px;
}
@media (min-width: 46.875em) {
  .faqs .list-wrapper .list-element .question {
    padding-bottom: 0;
    font-size: 24px;
  }
}
@media (min-width: 56.25em) {
  .faqs .list-wrapper .list-element .question {
    font-size: 28px;
  }
}
.faqs .list-wrapper .list-element .question::after {
  content: "";
  background-image: url("../images/faqs_down.svg");
  background-size: 18px 11px;
  width: 18px;
  height: 11px;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 9px);
  transition: transform 0.5s;
}
@media (min-width: 46.875em) {
  .faqs .list-wrapper .list-element .question::after {
    top: calc(50% - 5px);
    right: 0;
    bottom: unset;
    left: unset;
  }
}
.faqs .list-wrapper .list-element .answer {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s, opacity 0.5s;
  overflow: hidden;
}
.faqs .list-wrapper .list-element.open .question::after {
  transform: rotate(180deg);
}
.faqs .list-wrapper .list-element.open .answer {
  padding-top: 20px;
  max-height: 100vh;
  opacity: 1;
}

.col-block-premium {
  display: flex;
  flex-direction: column;
  margin: 0 5vw;
}
@media (min-width: 56.25em) {
  .col-block-premium {
    flex-direction: row;
    margin: 0 14vw;
  }
}
.col-block-premium .content {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 46.875em) {
  .col-block-premium .content {
    padding: 0 10%;
  }
}
@media (min-width: 56.25em) {
  .col-block-premium .content {
    margin-top: 0;
    width: 60%;
  }
}
.col-block-premium .content .heading {
  padding: 0 14%;
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: normal;
  margin: 0 0 50px;
  text-transform: uppercase;
  position: relative;
}
.col-block-premium .content .heading::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: calc(50% - 20px);
  bottom: -20px;
  background-color: #707070;
}
.col-block-premium .content p {
  font-size: 17px;
  letter-spacing: 0.5px;
  line-height: 30px;
}
.col-block-premium .content tr {
  display: flex;
  flex-direction: column;
}
@media (min-width: 96.875em) {
  .col-block-premium .content tr {
    display: table-row;
  }
}
.col-block-premium .content td {
  width: 100% !important;
  font-size: 15px;
  vertical-align: top;
}
@media (min-width: 96.875em) {
  .col-block-premium .content td {
    width: 50% !important;
    font-size: 18px;
  }
}
.col-block-premium .content td .spaced {
  display: block;
  margin: 10px 0;
}
.col-block-premium .content td a {
  color: initial;
}
.col-block-premium img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 56.25em) {
  .col-block-premium img {
    width: 550px;
  }
}
.col-block-premium .image {
  width: 100%;
}
@media (min-width: 56.25em) {
  .col-block-premium .image {
    width: 40%;
  }
}
.col-block-premium .image.square img {
  height: 190px;
  width: 550px;
}
@media (min-width: 46.875em) {
  .col-block-premium .image.square img {
    height: 422px;
  }
}
@media (min-width: 56.25em) {
  .col-block-premium .image.square img {
    height: 550px;
  }
}
.col-block-premium .image.longer img {
  height: 190px;
}
@media (min-width: 46.875em) {
  .col-block-premium .image.longer img {
    height: 422px;
  }
}
@media (min-width: 56.25em) {
  .col-block-premium .image.longer img {
    height: 700px;
  }
}
.col-block-premium.txt-left .content {
  order: 2;
}
@media (min-width: 56.25em) {
  .col-block-premium.txt-left .content {
    order: 1;
  }
}
.col-block-premium.txt-left .image {
  order: 1;
}
@media (min-width: 56.25em) {
  .col-block-premium.txt-left .image {
    order: 2;
  }
}
.col-block-premium.txt-left .image.square img {
  width: 100%;
  height: 190px;
}
@media (min-width: 56.25em) {
  .col-block-premium.txt-left .image.square img {
    width: 550px;
  }
}
@media (min-width: 46.875em) {
  .col-block-premium.txt-left .image.square img {
    height: 422px;
  }
}
@media (min-width: 56.25em) {
  .col-block-premium.txt-left .image.square img {
    height: 550px;
  }
}
.col-block-premium.txt-left .image.longer img {
  height: 190px;
}
@media (min-width: 46.875em) {
  .col-block-premium.txt-left .image.longer img {
    height: 422px;
  }
}
@media (min-width: 56.25em) {
  .col-block-premium.txt-left .image.longer img {
    height: 700px;
  }
}
.col-block-premium.txt-right .content {
  order: 2;
}
.col-block-premium.txt-right .image {
  order: 1;
}
.col-block-premium.prestige .content {
  padding: 30px 5%;
  margin-top: 0;
}
.col-block-premium.prestige .content .heading.prestige {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: none;
}
@media (min-width: 46.875em) {
  .col-block-premium.prestige .content .heading.prestige {
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
  }
}
.col-block-premium.prestige .content p, .col-block-premium.prestige .content ul {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: black;
  letter-spacing: 0.25px;
  margin-bottom: 23px;
}
@media (min-width: 46.875em) {
  .col-block-premium.prestige .content p, .col-block-premium.prestige .content ul {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 41px;
  }
}
@media (min-width: 96.875em) {
  .col-block-premium.prestige .content p, .col-block-premium.prestige .content ul {
    font-size: 18px;
    line-height: 32px;
  }
}
.col-block-premium.prestige .content .button {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px !important;
  letter-spacing: 2px;
  line-height: 15px !important;
  width: 207px;
  height: 50px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-top: 0 !important;
}
@media (min-width: 96.875em) {
  .col-block-premium.prestige .content .button {
    width: 241px;
  }
}
.col-block-premium.prestige .content .button:hover {
  background-color: white !important;
}
.col-block-premium.prestige .image.square {
  height: 190px;
}
@media (min-width: 56.25em) {
  .col-block-premium.prestige .image.square {
    height: auto;
  }
}
.col-block-premium.prestige .image.square img {
  width: 100%;
}
@media (min-width: 56.25em) {
  .col-block-premium.prestige .image.square img {
    height: 100%;
  }
}

.book-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0px !important;
}
@media (min-width: 56.25em) {
  .book-bar {
    max-height: 120px;
  }
}
.book-bar form {
  width: 90vw;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  gap: 50px 25px;
  justify-items: center;
}
@media (min-width: 46.875em) {
  .book-bar form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media (min-width: 64.125em) {
  .book-bar form {
    width: 70vw;
  }
}
@media (min-width: 96.875em) {
  .book-bar form {
    width: 55vw;
  }
}
.book-bar form .alert {
  grid-column: 1/-1;
  margin: 0 auto;
}
.book-bar form .heading {
  position: relative;
  text-align: center;
  max-width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  grid-column: 1/span 2;
  grid-row: 1/1;
}
@media (min-width: 56.25em) {
  .book-bar form .heading {
    font-size: 21px;
  }
}
.book-bar form .heading::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: calc(50% - 20px);
  bottom: -13px;
  background-color: #707070;
}
.book-bar form .input_wrapper {
  position: relative;
}
.book-bar form .input_wrapper input[type=text] {
  border: none;
  border-bottom: 2px solid #1f211c;
  padding-bottom: 5px;
  font-size: 20px;
  max-width: 35vw;
}
@media (min-width: 46.875em) {
  .book-bar form .input_wrapper input[type=text] {
    max-width: 120px;
  }
}
@media (min-width: 96.875em) {
  .book-bar form .input_wrapper input[type=text] {
    max-width: unset;
  }
}
.book-bar form .input_wrapper input[type=text]::placeholder {
  color: #1f211b;
}
.book-bar form .input_wrapper .calendar_icon {
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
  width: 19px;
  height: 21px;
  background-image: url("../images/calendar.svg");
  background-repeat: no-repeat;
}
.book-bar form input[type=submit] {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  padding: 12px 15px;
  border-radius: 2px;
  letter-spacing: 2px;
  font-size: 14px;
  grid-column: 1/span 2;
  grid-row: 3/3;
}
@media (min-width: 46.875em) {
  .book-bar form input[type=submit] {
    max-width: 210px;
  }
}
@media (min-width: 96.875em) {
  .book-bar form input[type=submit] {
    max-width: unset;
  }
}

.premium .rating-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 5vw !important;
  flex-direction: column;
  min-height: 252px;
}
@media (min-width: 46.875em) {
  .premium .rating-bar {
    min-height: unset;
    max-height: 94px;
    flex-direction: row;
  }
}
@media (min-width: 56.25em) {
  .premium .rating-bar {
    padding: 26px 10vw !important;
  }
}
@media (min-width: 64.125em) {
  .premium .rating-bar {
    padding: 26px 20vw !important;
  }
}
@media (min-width: 96.875em) {
  .premium .rating-bar {
    padding: 26px 30vw !important;
  }
}
.premium .rating-bar .text-rating {
  padding-bottom: 4px;
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  color: #1f211b;
}
.premium .rating-bar .star-rating {
  position: relative;
  padding-bottom: 4px;
}
.premium .rating-bar .star-rating .back-stars {
  display: flex;
  color: white;
}
.premium .rating-bar .star-rating .front-stars {
  display: flex;
  overflow: hidden;
  position: absolute;
  color: #1f211b;
}
.premium .rating-bar .reviews {
  padding-bottom: 4px;
  position: relative;
  max-width: 100%;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 2px;
}
@media (min-width: 56.25em) {
  .premium .rating-bar .reviews {
    font-size: 25px;
  }
}
.premium .rating-bar .button {
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px !important;
  letter-spacing: 2px;
  margin-top: 0;
  white-space: nowrap;
  max-width: none !important;
  width: auto;
}
@media (min-width: 46.875em) {
  .premium .rating-bar .button {
    max-width: 220px;
  }
}

.rooms-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5vw;
  flex-wrap: wrap;
}
@media (min-width: 46.875em) {
  .rooms-section {
    padding: 0 14vw;
  }
}
@media (min-width: 64.125em) {
  .rooms-section {
    flex-direction: row;
    justify-content: space-between;
  }
}
.rooms-section .room {
  margin-bottom: 50px;
}
@media (min-width: 64.125em) {
  .rooms-section .room {
    width: 50%;
    max-width: 35vw;
  }
}
.rooms-section .room .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
@media (min-width: 46.875em) {
  .rooms-section .room .image-wrapper {
    height: 400px;
  }
}
.rooms-section .room .image-wrapper img {
  height: 185px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: all 1s ease;
}
@media (min-width: 46.875em) {
  .rooms-section .room .image-wrapper img {
    height: 400px;
  }
}
.rooms-section .room .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(31, 33, 27, 0.5);
  font-size: 30px;
  letter-spacing: 8px;
  font-weight: normal;
  text-transform: uppercase;
  color: white;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 1s ease;
}
.rooms-section .room .image-wrapper:hover img {
  width: 110%;
  transform: scale(1.1);
}
.rooms-section .room .image-wrapper:hover .overlay {
  opacity: 1;
}
.rooms-section .room .heading {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 30px;
  letter-spacing: 4px;
  font-weight: normal;
  margin: 20px auto 50px;
  text-transform: uppercase;
  position: relative;
}
.rooms-section .room .heading::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: calc(50% - 20px);
  bottom: -20px;
  background-color: #707070;
}
.rooms-section .room .description {
  text-align: center;
  padding: 0 5vw;
}
@media (min-width: 56.25em) {
  .rooms-section .room .description {
    padding: 0 14%;
  }
}
.rooms-section .room .amenities {
  margin: 20px auto;
  width: fit-content;
  list-style-type: none;
}
.rooms-section .room .amenities .amenity {
  position: relative;
  letter-spacing: 2px;
  font-style: italic;
}
.rooms-section .room .amenities .amenity::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/check.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  position: absolute;
  left: -30px;
  top: 4px;
}
.rooms-section .room .buttons-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  width: auto;
  max-width: 330px;
}
@media (min-width: 46.875em) {
  .rooms-section .room .buttons-wrapper {
    flex-direction: row;
  }
}
.rooms-section .room .buttons-wrapper .button {
  margin-top: 0;
  margin-bottom: 13px;
  max-width: 140px;
}
@media (min-width: 46.875em) {
  .rooms-section .room .buttons-wrapper .button {
    margin-bottom: 0;
  }
}

.col-block-amenities {
  display: block;
  flex-direction: row;
  margin: 0 14vw;
  margin-bottom: 120px !important;
}
@media (min-width: 56.25em) {
  .col-block-amenities {
    display: flex;
  }
}
.col-block-amenities .content {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 46.875em) {
  .col-block-amenities .content {
    padding: 0 8%;
  }
}
@media (min-width: 56.25em) {
  .col-block-amenities .content {
    width: 63%;
  }
}
.col-block-amenities .content .heading {
  padding: 0 14%;
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: normal;
  margin: 0 0 50px;
  text-transform: uppercase;
  position: relative;
}
@media (min-width: 46.875em) {
  .col-block-amenities .content .heading {
    padding: 0;
  }
}
.col-block-amenities .content .heading::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: calc(50% - 20px);
  bottom: -20px;
  background-color: #707070;
}
.col-block-amenities .content p {
  font-size: 17px;
  letter-spacing: 0.5px;
  line-height: 30px;
}
.col-block-amenities .amenities-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 25px;
  width: 100%;
}
@media (min-width: 56.25em) {
  .col-block-amenities .amenities-wrapper {
    width: 37%;
  }
}
.col-block-amenities .amenities-wrapper > .amenities {
  background-color: white;
  padding: 40px;
  height: fit-content;
}
.col-block-amenities .amenities-wrapper > .amenities .light-heading {
  padding: 0 14%;
  font-size: 25px;
  letter-spacing: 3px;
  font-weight: bolder;
  margin: 0 0 35px;
  text-transform: uppercase;
}
@media (min-width: 46.875em) {
  .col-block-amenities .amenities-wrapper > .amenities .light-heading {
    padding: 0;
  }
}
.col-block-amenities .amenities-wrapper > .amenities .amenities {
  margin: 20px auto;
  width: fit-content;
  list-style-type: none;
  padding-left: 29px;
}
.col-block-amenities .amenities-wrapper > .amenities .amenities .amenity {
  letter-spacing: 2px;
  font-style: italic;
  position: relative;
}
.col-block-amenities .amenities-wrapper > .amenities .amenities .amenity::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/check.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  position: absolute;
  left: -30px;
  top: 4px;
}

.flexible-content-wrap-premium.prestige {
  /* last item with .{class} */
}
.flexible-content-wrap-premium.prestige > .bg-ctas-premium {
  margin-bottom: 1rem;
}
.flexible-content-wrap-premium.prestige > :nth-last-child(1 of .bg-ctas-premium) {
  margin-bottom: 50px;
}
@media (min-width: 46.875em) {
  .flexible-content-wrap-premium.prestige > :nth-last-child(1 of .bg-ctas-premium) {
    margin-bottom: 118px;
  }
}

@media (min-width: 64.125em) {
  .bg-ctas-premium {
    padding: 0 14vw;
  }
}
.bg-ctas-premium ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 46.875em) {
  .bg-ctas-premium ul {
    flex-direction: row;
  }
}
.bg-ctas-premium ul li {
  list-style-type: none;
  max-width: 100%;
  width: calc(100% - 0.5rem);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 354px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
  position: relative;
}
@media (min-width: 46.875em) {
  .bg-ctas-premium ul li {
    height: 408px;
  }
}
@media (min-width: 46.875em) {
  .bg-ctas-premium ul li.group-2 {
    max-width: calc(50% - 2px);
  }
}
@media (min-width: 46.875em) {
  .bg-ctas-premium ul li.group-3 {
    max-width: calc(33% - 2px);
  }
}
@media (min-width: 46.875em) {
  .bg-ctas-premium ul li.group-4 {
    max-width: calc(25% - 2px);
  }
}
@media (min-width: 46.875em) {
  .bg-ctas-premium ul li.group-5 {
    max-width: calc(20% - 2px);
  }
}
.bg-ctas-premium ul li a {
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.bg-ctas-premium ul li a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
}
.bg-ctas-premium ul li a .heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(31, 33, 27, 0.5);
  color: #FFF;
  text-transform: uppercase;
  opacity: 1;
  text-align: center;
  transition: all 1s ease;
}
.bg-ctas-premium ul li a .heading .writing {
  letter-spacing: 5px;
  font-size: 28px;
  width: 80%;
  word-wrap: initial;
}
@media (min-width: 46.875em) {
  .bg-ctas-premium ul li a .heading .writing {
    font-size: 25px;
    letter-spacing: 0;
  }
}
@media (min-width: 56.25em) {
  .bg-ctas-premium ul li a .heading .writing {
    letter-spacing: 5px;
  }
}
@media (min-width: 64.125em) {
  .bg-ctas-premium ul li a .heading .writing {
    letter-spacing: 0;
    font-size: 22px;
  }
}
@media (min-width: 68.75em) {
  .bg-ctas-premium ul li a .heading .writing {
    letter-spacing: 1px;
  }
}
@media (min-width: 75em) {
  .bg-ctas-premium ul li a .heading .writing {
    letter-spacing: 3px;
  }
}
@media (min-width: 81.25em) {
  .bg-ctas-premium ul li a .heading .writing {
    letter-spacing: 5px;
  }
}
@media (min-width: 86.25em) {
  .bg-ctas-premium ul li a .heading .writing {
    font-size: 23px;
  }
}
@media (min-width: 87.5em) {
  .bg-ctas-premium ul li a .heading .writing {
    font-size: 24px;
  }
}
@media (min-width: 96.875em) {
  .bg-ctas-premium ul li a .heading .writing {
    font-size: 27px;
  }
}
@media (min-width: 105.3125em) {
  .bg-ctas-premium ul li a .heading .writing {
    font-size: 29px;
  }
}
@media (min-width: 108.5em) {
  .bg-ctas-premium ul li a .heading .writing {
    font-size: 30px;
  }
}
.bg-ctas-premium ul li:hover a img {
  transform: scale(1.1);
}
.bg-ctas-premium ul li:hover a .heading {
  opacity: 0;
}
@media (min-width: 64.125em) {
  .bg-ctas-premium.prestige {
    padding: 16.64vw;
  }
}
.bg-ctas-premium.prestige ul li {
  border-radius: 0;
}
.bg-ctas-premium.prestige ul li a {
  border-radius: 0;
}

.ctas-section .cta-heading {
  max-width: 100%;
  font-size: 28px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin: 0 auto 30px;
  text-align: center;
}
@media (min-width: 46.875em) {
  .ctas-section .cta-heading {
    font-size: 32px;
    max-width: 80%;
  }
}
@media (min-width: 56.25em) {
  .ctas-section .cta-heading {
    font-size: 38px;
    max-width: 50%;
  }
}
.ctas-section .ctas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0 5vw;
}
@media (min-width: 46.875em) {
  .ctas-section .ctas {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (min-width: 64.125em) {
  .ctas-section .ctas {
    padding: 0 14vw;
  }
}
@media (min-width: 46.875em) {
  .ctas-section .ctas.two {
    justify-content: flex-start;
  }
}
@media (min-width: 46.875em) {
  .ctas-section .ctas.two .single_block {
    width: calc(50% - 25px);
  }
}
@media (min-width: 64.125em) {
  .ctas-section .ctas.two .single_block {
    width: 31%;
  }
}
@media (min-width: 46.875em) {
  .ctas-section .ctas.two .single_block .image-wrapper img {
    width: 100%;
  }
}
@media (min-width: 46.875em) {
  .ctas-section .ctas.two .single_block:first-of-type {
    margin-right: 4%;
  }
}
.ctas-section .single_block {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
@media (min-width: 64.125em) {
  .ctas-section .single_block:not(:nth-child(3n)) {
    margin-right: 3.5%;
  }
}
@media (min-width: 46.875em) {
  .ctas-section .single_block {
    width: 50%;
  }
}
@media (min-width: 64.125em) {
  .ctas-section .single_block {
    width: 31%;
    max-width: 35vw;
  }
}
.ctas-section .single_block .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 261px;
}
.ctas-section .single_block .image-wrapper img {
  height: 261px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: all 1s ease;
}
@media (min-width: 46.875em) {
  .ctas-section .single_block .image-wrapper img {
    width: calc(100% - 30px);
  }
}
@media (min-width: 64.125em) {
  .ctas-section .single_block .image-wrapper img {
    width: 100%;
  }
}
.ctas-section .single_block .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(31, 33, 27, 0.5);
  font-size: 30px;
  letter-spacing: 8px;
  font-weight: normal;
  text-transform: uppercase;
  color: white;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 1s ease;
}
.ctas-section .single_block .image-wrapper:hover img {
  width: 110%;
  transform: scale(1.1);
}
.ctas-section .single_block .image-wrapper:hover .overlay {
  opacity: 1;
}
.ctas-section .single_block .heading {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: normal;
  margin: 20px auto 50px;
  text-transform: uppercase;
  position: relative;
}
.ctas-section .single_block .heading::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -20px;
  background-color: #707070;
}
.ctas-section .single_block .description {
  text-align: left;
  padding: 0;
  margin-bottom: 30px;
  font-size: 16px;
}
@media (min-width: 46.875em) {
  .ctas-section .single_block .description {
    font-size: 17px;
    padding-right: 10px;
  }
}
@media (min-width: 64.125em) {
  .ctas-section .single_block .description {
    padding-right: 0;
  }
}
.ctas-section .single_block:not(:only-child) .button {
  margin-top: auto;
}
.ctas-section .single_block .button {
  margin-bottom: 13px;
}
@media (min-width: 46.875em) {
  .ctas-section .single_block .button {
    margin-bottom: 0;
  }
}

@media (min-width: 64.125em) {
  .static-images {
    padding: 0 14vw;
  }
}
.static-images ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 46.875em) {
  .static-images ul {
    flex-direction: row;
  }
}
.static-images ul li {
  list-style-type: none;
  max-width: 100%;
  width: 100%;
  height: 55vw;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
  position: relative;
  background-size: cover;
}
@media (min-width: 46.875em) {
  .static-images ul li.group-2 {
    max-width: calc(50% - 2px);
    height: 27.5vw;
  }
}
@media (min-width: 64.125em) {
  .static-images ul li.group-2 {
    height: 19.8vw;
  }
}
@media (min-width: 46.875em) {
  .static-images ul li.group-3 {
    max-width: calc(33% - 2px);
  }
}
@media (min-width: 46.875em) {
  .static-images ul li.group-4 {
    max-width: calc(25% - 2px);
  }
}
@media (min-width: 46.875em) {
  .static-images ul li.group-5 {
    max-width: calc(20% - 2px);
  }
}
.static-images.prestige .content-wrapper {
  width: 66.56vw;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 46.875em) {
  .static-images.prestige .content-wrapper {
    flex-direction: row;
    width: 78.51vw;
  }
}
@media (min-width: 96.875em) {
  .static-images.prestige .content-wrapper {
    width: 66.56vw;
  }
}
.static-images.prestige .content-wrapper img {
  max-height: 200px;
  max-width: 200px;
  object-fit: contain;
}
.static-images.prestige .content-wrapper img:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (min-width: 46.875em) {
  .static-images.prestige .content-wrapper img:not(:last-of-type) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.hero-block-prestige-hp-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
  margin-bottom: 0 !important;
}
.hero-block-prestige-hp-wrapper .slider-wrapper {
  height: 100vh;
}
.hero-block-prestige-hp-wrapper .slider-wrapper * {
  height: 100vh;
  width: 100vw;
}
.hero-block-prestige-hp-wrapper .slider-wrapper img {
  object-fit: cover;
}
.hero-block-prestige-hp-wrapper .slider-wrapper > img {
  width: 100vw;
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .header-logo {
  position: absolute;
  opacity: 1;
  max-width: 20vw;
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .header-logo.hidden {
  animation: fadeOut 5s;
  opacity: 0;
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .heading {
  opacity: 0;
  position: absolute;
  max-width: 100%;
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .heading > * {
  font-family: scotch-display, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 35px;
  color: white;
  text-align: center;
}
@media (min-width: 46.875em) {
  .hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .heading > * {
    font-size: 80px;
    line-height: 96px;
  }
}
@media (min-width: 46.875em) {
  .hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .heading {
    max-width: 60%;
  }
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .heading.active {
  animation: fadeIn 5s;
  opacity: 1;
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .heading .hero_links_wrapper {
  width: 60vw;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 46.875em) {
  .hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .heading .hero_links_wrapper {
    font-size: 60px;
    line-height: 60px;
  }
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .heading .hero_links_wrapper a {
  font-family: scotch-display, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 30px;
  color: white;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige.image {
  background-color: rgba(0, 0, 0, 0.2);
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .scroll_next {
  border: 1px solid white;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 42px;
}
.hero-block-prestige-hp-wrapper .overlay-wrapper-prestige .scroll_next:hover {
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.hero-block-prestige-hp-wrapper .hero-book {
  margin-top: 20px;
  background-color: #c8a044;
  font-size: 14px;
  color: #FFF;
  display: block;
  cursor: pointer;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  top: 44vh;
  z-index: 1;
  left: calc(85vw - 125px);
}
@media (min-width: 64.125em) {
  .hero-block-prestige-hp-wrapper .hero-book {
    font-size: 16px;
    padding: 15px;
  }
}
.hero-block-prestige-hp-wrapper .hero-book a {
  text-decoration: none;
}
.hero-block-prestige-hp-wrapper .hero-book a p,
.hero-block-prestige-hp-wrapper .hero-book a h4 {
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
}
.hero-block-prestige-hp-wrapper .hero-book h3 {
  margin-bottom: 10px;
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige {
  justify-content: space-between;
  align-items: center;
  padding-top: 30vh;
  padding-bottom: 30vh;
}
@media (min-width: 34.375em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige {
    padding-top: 25vh;
    padding-bottom: 25vh;
  }
}
@media (min-width: 56.25em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige {
    padding-top: 15vh;
  }
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-logo-wrapper {
  max-height: 40vh;
  max-width: 50vw;
}
@media (min-width: 56.25em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-logo-wrapper {
    max-width: 30vw;
    max-height: 30vh;
  }
}
@media (min-width: 84.375em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-logo-wrapper {
    max-width: 20vw;
  }
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper {
  margin-top: 2rem;
  position: relative;
  width: 1268px;
  max-width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
@media (min-width: 56.25em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper.links-count-1, .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper.links-count-2 {
    gap: 50px;
  }
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link {
  position: relative;
  width: 500px;
  border: 1px solid #fff;
  transition: all ease-in-out 0.3s;
  background: transparent;
  max-width: 100%;
}
@media (min-width: 56.25em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link {
    background: #fff;
    max-width: calc(33% - 20px);
  }
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-image {
  position: relative;
  width: 100%;
  height: 70px;
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-image > img {
  display: none;
}
@media (min-width: 56.25em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-image > img {
    display: block;
  }
}
@media (min-width: 56.25em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-image {
    height: 260px;
  }
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-text {
  position: absolute;
  bottom: 0px;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.9);
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-text a {
  text-decoration: none;
  letter-spacing: 1.25px;
  line-height: 1;
  font-family: scotch-display, sans-serif;
  font-weight: 100 !important;
  font-size: 20px;
}
@media (min-width: 96.875em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-text a {
    font-size: 28px;
  }
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-text a .hero-link-subtext {
  font-size: 14px;
  font-weight: 100;
  color: black;
}
@media (min-width: 96.875em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-text a .hero-link-subtext {
    font-size: 18px;
  }
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-text .link-btn {
  position: absolute;
  right: 20px;
  height: 30px;
  width: 30px;
  padding: 6px;
  border-radius: 50%;
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper .hero-link .hero-link-text .link-btn img {
  object-fit: contain;
}
.hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper.links-count-1 .hero-link, .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper.links-count-2 .hero-link {
  max-width: 100%;
}
@media (min-width: 56.25em) {
  .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper.links-count-1 .hero-link, .hero-block-prestige-hp-wrapper.layout-design-3 .overlay-wrapper-prestige .hero-links-wrapper.links-count-2 .hero-link {
    max-width: calc(50% - 30px);
  }
}

.hero-block-prestige-wrapper {
  position: relative;
  overflow: hidden;
  height: 70vh;
}
.hero-block-prestige-wrapper .slider-wrapper {
  height: 70vh;
}
.hero-block-prestige-wrapper .slider-wrapper * {
  height: 70vh;
}
.hero-block-prestige-wrapper .slider-wrapper img {
  object-fit: cover;
}
.hero-block-prestige-wrapper.no-margin-bottom {
  margin-bottom: 0 !important;
}
.hero-block-prestige-wrapper .overlay-wrapper-prestige {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-color: rgba(0, 0, 0, 0.2);
  padding-top: 35vh;
}
.hero-block-prestige-wrapper .overlay-wrapper-prestige .heading {
  max-width: 100%;
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 38px;
  line-height: 25px;
  letter-spacing: 0;
  color: white;
  text-align: center;
  text-transform: none;
}
@media (min-width: 46.875em) {
  .hero-block-prestige-wrapper .overlay-wrapper-prestige .heading {
    font-weight: 300;
    font-size: 61px;
    line-height: 40px;
  }
}
@media (min-width: 96.875em) {
  .hero-block-prestige-wrapper .overlay-wrapper-prestige .heading {
    font-size: 86px;
    line-height: 55px;
  }
}
.hero-block-prestige-wrapper .overlay-wrapper-prestige .hero-book {
  background-color: #c8a044;
  font-size: 14px;
  color: #FFF;
  display: block;
  cursor: pointer;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  padding: 10px;
  z-index: 1;
}
@media (min-width: 64.125em) {
  .hero-block-prestige-wrapper .overlay-wrapper-prestige .hero-book {
    font-size: 16px;
    padding: 15px;
  }
}
.hero-block-prestige-wrapper .overlay-wrapper-prestige .hero-book a {
  text-decoration: none;
}
.hero-block-prestige-wrapper .overlay-wrapper-prestige .hero-book a p,
.hero-block-prestige-wrapper .overlay-wrapper-prestige .hero-book a h4 {
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
}
.hero-block-prestige-wrapper .overlay-wrapper-prestige .hero-book h3 {
  margin-bottom: 10px;
}

#hero-book-clone {
  margin-top: 20px;
  background-color: #c8a044;
  font-size: 14px;
  color: #FFF;
  display: block;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 50px;
  top: auto;
  width: 100vw;
  left: unset;
  z-index: 2;
  border-radius: 0;
}
@media (min-width: 46.875em) {
  #hero-book-clone {
    width: 250px;
    border-radius: 5px;
    bottom: 0;
    right: 0;
  }
}
@media (min-width: 64.125em) {
  #hero-book-clone {
    font-size: 16px;
    padding: 15px;
  }
}
#hero-book-clone a {
  text-decoration: none;
}
#hero-book-clone a p,
#hero-book-clone a h4 {
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
}
#hero-book-clone h3 {
  margin-bottom: 10px;
}

.bg-video-block-prestige-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.bg-video-block-prestige-wrapper .video-wrapper video {
  position: absolute;
  left: 50%;
  /* % of surrounding element */
  top: 50%;
  transform: translate(-50%, -50%);
  /* % of current element */
  height: 100vh;
}
@media (min-width: 96.875em) {
  .bg-video-block-prestige-wrapper .video-wrapper video {
    width: 100%;
    position: static;
    transform: none;
    height: unset;
  }
}
.bg-video-block-prestige-wrapper .slider-wrapper {
  height: 100vh;
}
.bg-video-block-prestige-wrapper .slider-wrapper * {
  height: 100vh;
}
.bg-video-block-prestige-wrapper .slider-wrapper * img {
  object-fit: cover;
}
.bg-video-block-prestige-wrapper .overlay-wrapper-prestige {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 48px 36px;
}
@media (min-width: 46.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige {
    padding: 15vh 0 10vh 10.74vw;
    justify-content: center;
  }
}
@media (min-width: 96.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige {
    justify-content: space-evenly;
    padding-left: 16.64vw;
  }
}
.bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
}
@media (min-width: 46.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg {
    max-width: 43.26vw;
  }
}
@media (min-width: 96.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg {
    max-width: 32vw;
  }
}
.bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .heading {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 32px;
  color: white;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 1px 1px 2px black;
}
@media (min-width: 46.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .heading {
    max-width: 43.26vw;
    font-weight: 300;
    font-size: 48px;
    line-height: 58px;
  }
}
@media (min-width: 96.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .heading {
    max-width: 32vw;
    font-size: 61px;
    line-height: 73px;
  }
}
.bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .content {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: white;
  text-align: left;
  letter-spacing: 0.25px;
  margin-top: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px black;
}
@media (min-width: 46.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .content {
    font-weight: 200;
    font-size: 18px;
    line-height: 32px;
    max-width: 39.35vw;
    margin-top: 30px;
    margin-bottom: 42px;
  }
}
@media (min-width: 96.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .content {
    font-size: 24px;
    line-height: 37px;
    max-width: 32vw;
  }
}
.bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 96.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .buttons {
    flex-direction: row;
  }
}
.bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .buttons .button-link-prestige {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 13px;
  width: 180px;
  height: 37px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .buttons .button-link-prestige:last-of-type {
  margin-top: 18px;
}
@media (min-width: 46.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .buttons .button-link-prestige:last-of-type {
    margin-top: 24px;
  }
}
@media (min-width: 96.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .buttons .button-link-prestige:last-of-type {
    margin-top: unset;
  }
}
@media (min-width: 46.875em) {
  .bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .buttons .button-link-prestige {
    font-size: 15px;
    line-height: 18px;
    width: 240px;
    height: 50px;
    margin-right: 30px;
  }
}
.bg-video-block-prestige-wrapper .overlay-wrapper-prestige .text-bkg .buttons .button-link-prestige:hover {
  background-color: white;
}

.image-text-card-block-prestige-wrapper {
  position: relative;
  height: 732px;
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper {
    height: 620px;
  }
}
@media (min-width: 96.875em) {
  .image-text-card-block-prestige-wrapper {
    height: 791px;
  }
}
.image-text-card-block-prestige-wrapper.right .image-wrapper {
  left: unset;
  right: 0;
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper.right .card-wrapper-prestige {
    right: unset;
    left: 0;
  }
}
@media (min-width: 96.875em) {
  .image-text-card-block-prestige-wrapper.right .card-wrapper-prestige {
    left: 16.64vw;
  }
}
.image-text-card-block-prestige-wrapper.right .card-wrapper-prestige .heading {
  width: 72%;
}
.image-text-card-block-prestige-wrapper .image-wrapper {
  height: 320px;
  width: 100vw;
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper .image-wrapper {
    height: 620px;
    width: 68.06vw;
    position: absolute;
    left: 0;
  }
}
@media (min-width: 96.875em) {
  .image-text-card-block-prestige-wrapper .image-wrapper {
    height: 791px;
    width: 66.25vw;
  }
}
.image-text-card-block-prestige-wrapper .image-wrapper img {
  height: 320px;
  width: 100vw;
  object-fit: cover;
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper .image-wrapper img {
    height: 620px;
    width: 68.06vw;
  }
}
@media (min-width: 96.875em) {
  .image-text-card-block-prestige-wrapper .image-wrapper img {
    height: 791px;
    width: 66.25vw;
  }
}
.image-text-card-block-prestige-wrapper .card-wrapper-prestige {
  z-index: 1;
  position: absolute;
  top: 236px;
  right: 9.865vw;
  width: 80.27vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #f8f7f5;
  padding: 28px 29px;
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige {
    top: 74px;
    right: 0;
    width: 515px;
    height: 470px;
    padding: 76px 48px;
    justify-content: space-evenly;
  }
}
@media (min-width: 96.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige {
    right: 16.64vw;
    width: 525px;
    height: 640px;
    padding: 73px 48px;
  }
}
.image-text-card-block-prestige-wrapper .card-wrapper-prestige .heading {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 32px;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige .heading {
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.08px;
  }
}
@media (min-width: 96.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige .heading {
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0;
  }
}
.image-text-card-block-prestige-wrapper .card-wrapper-prestige .content {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: black;
  text-align: left;
  letter-spacing: 0.25px;
  margin-top: 21px;
  margin-bottom: 30px;
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige .content {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (min-width: 96.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige .content {
    font-size: 18px;
    line-height: 32px;
  }
}
.image-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons {
  display: flex;
  flex-direction: column;
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons {
    flex-direction: row;
  }
}
.image-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 13px;
  width: 180px;
  height: 37px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:not(:last-of-type) {
  margin-right: 21px;
}
.image-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:first-of-type {
  margin-bottom: 18px;
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:first-of-type {
    margin-bottom: unset;
  }
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige {
    width: 189px;
    height: 50px;
    font-size: 15px;
    line-height: 18px;
  }
}
@media (min-width: 46.875em) {
  .image-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:only-child {
    width: 241px;
  }
}
.image-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:hover {
  background-color: white;
}

.banner-text-center-prestige-wrapper {
  display: flex;
}
.banner-text-center-prestige-wrapper .content-wrapper {
  width: 100%;
  display: flex;
  padding: 39px 36px;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper {
    padding: 60px 0;
  }
}
@media (min-width: 64.125em) {
  .banner-text-center-prestige-wrapper .content-wrapper {
    width: 66.56vw;
    margin: auto;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .left-wrapper {
  position: relative;
  display: none;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .left-wrapper {
    display: block;
    width: 19.535vw;
  }
}
@media (min-width: 96.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .left-wrapper {
    min-width: 300px;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .left-wrapper img {
  position: absolute;
  bottom: -80px;
  left: -7vw;
  max-width: 150px;
  max-height: 200px;
}
@media (min-width: 96.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .left-wrapper img {
    left: -100px;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .center-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper {
    width: 60.93vw;
  }
}
@media (min-width: 96.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper {
    width: 32.5vw;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .heading {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .heading {
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (min-width: 96.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .heading {
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .content {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: black;
  text-align: center;
  letter-spacing: 0.25px;
  margin-top: 23px;
  margin-bottom: 30px;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .content {
    line-height: 28px;
    margin-top: 28px;
    margin-bottom: 41px;
  }
}
@media (min-width: 96.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .content {
    font-size: 18px;
    line-height: 32px;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons {
    flex-direction: row;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons .button-link-prestige {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 11px;
  line-height: 13px;
  width: 180px;
  height: 37px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons .button-link-prestige {
    height: 50px;
    font-size: 15px;
    line-height: 18px;
  }
}
@media (min-width: 96.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons .button-link-prestige {
    width: 189px;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons .button-link-prestige:not(:last-of-type) {
  margin-bottom: 18px;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons .button-link-prestige:not(:last-of-type) {
    margin-right: 21px;
    margin-bottom: unset;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons .button-link-prestige:only-child {
  width: 180px;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons .button-link-prestige:only-child {
    width: 241px;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .center-wrapper .buttons .button-link-prestige:hover {
  background-color: white;
}
.banner-text-center-prestige-wrapper .content-wrapper .right-wrapper {
  position: relative;
  display: none;
}
@media (min-width: 46.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .right-wrapper {
    display: block;
    width: 19.535vw;
  }
}
@media (min-width: 96.875em) {
  .banner-text-center-prestige-wrapper .content-wrapper .right-wrapper {
    min-width: 300px;
  }
}
.banner-text-center-prestige-wrapper .content-wrapper .right-wrapper img {
  position: absolute;
  top: -30px;
  right: 0;
  max-width: 200px;
  max-height: 200px;
}
@media (min-width: 64.125em) {
  .banner-text-center-prestige-wrapper .content-wrapper .right-wrapper img {
    right: -100px;
  }
}
.banner-text-center-prestige-wrapper.two .left-wrapper img {
  top: -30px;
  bottom: unset;
}
.banner-text-center-prestige-wrapper.two .right-wrapper img {
  bottom: -80px;
  top: unset;
}
.banner-text-center-prestige-wrapper .image-wrapper {
  height: 791px;
  width: 66.25vw;
  position: absolute;
  left: 0;
}
.banner-text-center-prestige-wrapper .image-wrapper img {
  height: 791px;
  width: 66.25vw;
  object-fit: cover;
}

.three-columns-images-prestige-wrapper {
  height: auto;
}
@media (min-width: 46.875em) {
  .three-columns-images-prestige-wrapper {
    height: 435px;
  }
}
@media (min-width: 96.875em) {
  .three-columns-images-prestige-wrapper {
    height: 672px;
  }
}
.three-columns-images-prestige-wrapper .content-wrapper {
  width: 66.56vw;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 46.875em) {
  .three-columns-images-prestige-wrapper .content-wrapper {
    flex-direction: row;
    width: 78.51vw;
  }
}
@media (min-width: 96.875em) {
  .three-columns-images-prestige-wrapper .content-wrapper {
    width: 66.56vw;
  }
}
.three-columns-images-prestige-wrapper .content-wrapper .column {
  margin-bottom: 37px;
}
@media (min-width: 46.875em) {
  .three-columns-images-prestige-wrapper .content-wrapper .column {
    width: 24.21vw;
    margin-bottom: unset;
  }
}
@media (min-width: 96.875em) {
  .three-columns-images-prestige-wrapper .content-wrapper .column {
    width: 21vw;
  }
}
.three-columns-images-prestige-wrapper .content-wrapper .column .image-wrapper img {
  height: 245px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 46.875em) {
  .three-columns-images-prestige-wrapper .content-wrapper .column .image-wrapper img {
    height: 380px;
  }
}
@media (min-width: 96.875em) {
  .three-columns-images-prestige-wrapper .content-wrapper .column .image-wrapper img {
    height: 620px;
  }
}
.three-columns-images-prestige-wrapper .content-wrapper .column .column-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  margin-top: 13px;
}
.three-columns-images-prestige-wrapper .content-wrapper .column .column-content-wrapper .label-wrapper {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 30px;
  text-align: left;
  letter-spacing: 0;
  color: #3e3145;
}
@media (min-width: 46.875em) {
  .three-columns-images-prestige-wrapper .content-wrapper .column .column-content-wrapper .label-wrapper {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (min-width: 96.875em) {
  .three-columns-images-prestige-wrapper .content-wrapper .column .column-content-wrapper .label-wrapper {
    font-size: 31px;
    line-height: 37px;
  }
}
.three-columns-images-prestige-wrapper .content-wrapper .column .column-content-wrapper .arrow {
  width: 31px;
  height: 31px;
  border: 1px solid #3e3145;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 7px;
}
.three-columns-images-prestige-wrapper .content-wrapper .column .column-content-wrapper .arrow-hover {
  display: none;
  width: 31px;
  height: 31px;
  border: 1px solid #3e3145;
  background-color: #3e3145;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 0 7px;
}
.three-columns-images-prestige-wrapper .content-wrapper .column .column-content-wrapper:hover .arrow {
  display: none;
}
.three-columns-images-prestige-wrapper .content-wrapper .column .column-content-wrapper:hover .arrow-hover {
  display: flex;
}

.banner-text-three-columns-images-prestige-wrapper {
  display: flex;
  margin-bottom: 0 !important;
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper {
  padding: 41px 39px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  max-width: 100vw;
}
@media (min-width: 64.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper {
    margin: auto;
    width: 78.51vw;
    flex-direction: row;
    padding: 66px 0;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper {
    width: 66.56vw;
  }
}
@media (min-width: 64.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .left-content {
    width: 24.21vw;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .left-content {
    width: 21.14vw;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .left-content .heading {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 32px;
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 25px;
  text-transform: none;
}
@media (min-width: 46.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .left-content .heading {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 23px;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .left-content .heading {
    font-size: 31px;
    line-height: 37px;
    margin-bottom: 30px;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .left-content .content {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: black;
  text-align: left;
  letter-spacing: 0.25px;
  margin-bottom: 33px;
}
@media (min-width: 46.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .left-content .content {
    line-height: 28px;
  }
}
@media (min-width: 64.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .left-content .content {
    margin-bottom: unset;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .left-content .content {
    font-size: 18px;
    line-height: 32px;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel {
  width: 100%;
  height: 669px;
  justify-content: space-between;
  flex-direction: column;
  display: none;
}
@media (min-width: 28.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel {
    display: flex;
    flex-direction: row;
    height: 255px;
  }
}
@media (min-width: 64.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel {
    width: 51.95vw;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel {
    width: 42.18vw;
    height: 387px;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column {
  height: 200px;
  position: relative;
}
@media (min-width: 28.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column {
    width: 27vw;
    height: 255px;
  }
}
@media (min-width: 64.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column {
    width: 15.52vw;
    height: 255px;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column {
    width: 12.65vw;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .bkg-img, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .bkg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (min-width: 46.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .bkg-img, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .bkg-img {
    height: 255px;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .bkg-img, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .bkg-img {
    height: 387px;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  text-decoration: none;
  background: linear-gradient(0deg, #262525 0%, rgba(0, 0, 0, 0) 60%);
}
@media (min-width: 46.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay {
    height: 255px;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay {
    height: 387px;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay:hover, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay:hover {
  background-color: rgba(38, 37, 37, 0.5);
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .distance-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .distance-wrapper {
  font-family: utile-display, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.25px;
  color: #262525;
  background-color: white;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 24px;
}
@media (min-width: 46.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .distance-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .distance-wrapper {
    margin-bottom: 17px;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .distance-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .distance-wrapper {
    font-size: 15px;
    line-height: 32px;
    width: 110px;
    height: 27px;
    margin-bottom: 25px;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
  font-family: utile-display, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  line-height: 18px;
  text-align: left;
  letter-spacing: 0.25px;
  color: white;
  max-width: 95%;
}
@media (min-width: 28.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
    font-size: 9px;
    line-height: 12px;
  }
}
@media (min-width: 31.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
    font-size: 10px;
    line-height: 13px;
  }
}
@media (min-width: 35.625em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
    font-size: 11px;
    line-height: 14px;
  }
}
@media (min-width: 39.375em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
    font-size: 12px;
    line-height: 15px;
  }
}
@media (min-width: 43.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
    font-size: 13px;
    line-height: 16px;
  }
}
@media (min-width: 46.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
    font-size: 18px;
    line-height: 21px;
  }
}
@media (min-width: 105.3125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
    font-size: 21px;
    line-height: 24px;
  }
}
@media (min-width: 108.5em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .title-wrapper, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .title-wrapper {
    font-size: 22px;
    line-height: 25px;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .arrow, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .arrow {
  width: 9px;
  height: 9px;
  object-fit: cover;
  display: block;
  position: absolute;
  bottom: 2px;
  right: 0;
}
@media (min-width: 96.875em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .right-content .column .content-overlay .row-wrapper .arrow, .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .column .content-overlay .row-wrapper .arrow {
    width: 15px;
    height: 15px;
    bottom: 2px;
  }
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel {
  display: block;
  height: fit-content;
}
.banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel .slick-slide img.arrow {
  display: none !important;
}
@media (min-width: 28.125em) {
  .banner-text-three-columns-images-prestige-wrapper .content-wrapper .mobile-carousel {
    display: none;
  }
}

.reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: 2s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.two-images-text-card-block-prestige-wrapper {
  position: relative;
  height: 830px;
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper {
    height: 615px;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper {
    height: 753px;
  }
}
.two-images-text-card-block-prestige-wrapper.right .image-wrapper.one {
  left: unset;
  right: 0;
}
.two-images-text-card-block-prestige-wrapper.right .image-wrapper.two {
  right: unset;
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper.right .image-wrapper.two {
    left: unset;
    right: 21.48vw;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper.right .image-wrapper.two {
    right: 29.68vw;
  }
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper.right .card-wrapper-prestige {
    right: 53.7vw;
    left: 0;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper.right .card-wrapper-prestige {
    right: 56.51vw;
    left: 16.64vw;
  }
}
.two-images-text-card-block-prestige-wrapper .image-wrapper {
  height: 265px;
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper .image-wrapper {
    height: 410px;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper .image-wrapper {
    height: 640px;
  }
}
.two-images-text-card-block-prestige-wrapper .image-wrapper.one {
  width: 83.61vw;
  position: absolute;
  left: 0;
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper .image-wrapper.one {
    width: 45.5vw;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper .image-wrapper.one {
    width: 38vw;
  }
}
.two-images-text-card-block-prestige-wrapper .image-wrapper.two {
  position: absolute;
  top: 132px;
  right: 0;
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper .image-wrapper.two {
    width: 32.22vw;
    left: 21.48vw;
    bottom: 0;
    top: unset;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper .image-wrapper.two {
    width: 26.83vw;
    left: 29.68vw;
  }
}
.two-images-text-card-block-prestige-wrapper .image-wrapper img {
  height: 265px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper .image-wrapper img {
    height: 410px;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper .image-wrapper img {
    height: 640px;
  }
}
.two-images-text-card-block-prestige-wrapper .card-wrapper-prestige {
  z-index: 1;
  position: absolute;
  top: 323px;
  height: 507px;
  width: 80.27vw;
  left: 9.865vw;
  padding: 28px 29px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  background-color: #f8f7f5;
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper .card-wrapper-prestige {
    top: 0;
    left: 53.7vw;
    right: 0;
    height: 542px;
    padding: 49px 48px;
    width: auto;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper .card-wrapper-prestige {
    left: 56.51vw;
    right: 16.64vw;
    height: 640px;
    padding: 73px 48px;
    width: auto;
  }
}
.two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .heading {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 32px;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .heading {
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .heading {
    font-size: 48px;
    line-height: 58px;
  }
}
.two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .content {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: black;
  text-align: left;
  letter-spacing: 0.25px;
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .content {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .content {
    font-size: 18px;
    line-height: 32px;
  }
}
.two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons {
  display: flex;
  flex-direction: column;
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons {
    flex-direction: row;
  }
}
.two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 13px;
  width: 180px;
  height: 37px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:first-of-type {
  margin-bottom: 18px;
}
@media (min-width: 96.875em) {
  .two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:first-of-type {
    margin-right: 21px;
    margin-bottom: unset;
  }
}
@media (min-width: 46.875em) {
  .two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige {
    font-size: 15px;
    line-height: 18px;
    width: 189px;
    height: 50px;
  }
}
.two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:only-child {
  width: 241px;
}
.two-images-text-card-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:hover {
  background-color: white;
}

.room-details-block-prestige-wrapper {
  position: relative;
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper {
    display: flex;
  }
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper {
    display: block;
    height: 800px;
  }
}
.room-details-block-prestige-wrapper .image-wrapper {
  left: 0;
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper .image-wrapper {
    width: 50vw;
  }
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .image-wrapper {
    position: absolute;
    height: 800px;
    width: 32.18vw;
  }
}
.room-details-block-prestige-wrapper .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.room-details-block-prestige-wrapper .card-wrapper-prestige {
  z-index: 1;
  position: absolute;
  top: 236px;
  width: 80.27vw;
  left: 9.865vw;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  background-color: #f8f7f5;
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige {
    position: static;
    left: 50vw;
    right: 0;
    top: unset;
    padding: 48px;
    width: 50vw;
  }
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige {
    position: absolute;
    left: 32.18vw;
    right: 16.64vw;
    height: 800px;
    top: unset;
    padding: 73px 48px;
    width: auto;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .sleeps {
  background-color: white;
  width: 100px;
  height: 29px;
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.25px;
  margin-bottom: 19px;
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .sleeps {
    width: 114px;
    height: 33px;
    font-size: 18px;
    line-height: 32px;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .heading {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 32px;
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 17px;
  text-transform: none;
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .heading {
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .heading {
    font-size: 48px;
    line-height: 58px;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .content {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: black;
  text-align: left;
  letter-spacing: 0.25px;
  margin-bottom: 23px;
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .content {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 41px;
  }
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .content {
    font-size: 18px;
    line-height: 32px;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .features_heading {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 32px;
  text-align: left;
  letter-spacing: 0.25px;
  margin-bottom: 24px;
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .features_heading {
    font-size: 22px;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .features {
  display: flex;
  flex-direction: column;
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .features {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    column-gap: 48px;
    row-gap: 23px;
    margin-bottom: 45px;
  }
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .features {
    display: flex;
    flex-direction: row;
    margin-bottom: 45px;
    column-gap: unset;
    row-gap: unset;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .features .single_feat_wrapper {
  display: flex;
  align-items: center;
  height: 35px;
  margin-bottom: 23px;
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .features .single_feat_wrapper {
    margin-bottom: unset;
  }
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .features .single_feat_wrapper {
    height: 43px;
    margin-bottom: unset;
  }
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .features .single_feat_wrapper:not(:last-of-type) {
    margin-right: unset;
  }
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .features .single_feat_wrapper:not(:last-of-type) {
    margin-right: 2vw;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .features .single_feat_wrapper .feat_image {
  max-width: 42px;
  max-height: 35px;
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .features .single_feat_wrapper .feat_image {
    max-width: 52px;
    max-height: 43px;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .features .single_feat_wrapper .feat_label {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  color: #262525;
  text-align: left;
  letter-spacing: 0.25px;
  margin-left: 25px;
}
@media (min-width: 46.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .features .single_feat_wrapper .feat_label {
    font-size: 15px;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .buttons {
  display: flex;
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 18px;
  width: 189px;
  height: 50px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 21px;
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:only-child {
  width: 207px;
}
@media (min-width: 96.875em) {
  .room-details-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:only-child {
    width: 241px;
  }
}
.room-details-block-prestige-wrapper .card-wrapper-prestige .buttons .button-link-prestige:hover {
  background-color: white;
}

.attractions-premium .ctas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
  width: 66.56vw;
}
@media (min-width: 46.875em) {
  .attractions-premium .ctas {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.attractions-premium .single_block {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 46.875em) {
  .attractions-premium .single_block {
    width: 50%;
  }
}
@media (min-width: 64.125em) {
  .attractions-premium .single_block {
    width: 31%;
    max-width: 35vw;
  }
}
.attractions-premium .single_block .image-wrapper {
  position: relative;
  overflow: hidden;
  height: 261px;
}
.attractions-premium .single_block .image-wrapper img {
  height: 261px;
  width: 100%;
  object-fit: cover;
  transition: all 1s ease;
}
@media (min-width: 46.875em) {
  .attractions-premium .single_block .image-wrapper img {
    width: calc(100% - 30px);
  }
}
@media (min-width: 64.125em) {
  .attractions-premium .single_block .image-wrapper img {
    width: 100%;
  }
}
.attractions-premium .single_block .image-wrapper .overlay {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(31, 33, 27, 0.5);
  font-size: 30px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: white;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 1s ease;
}
.attractions-premium .single_block .image-wrapper .distance_tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: black;
  background-color: white;
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 15px;
  padding: 3px 10px;
}
.attractions-premium .single_block .image-wrapper:hover img {
  width: 110%;
  transform: scale(1.1);
}
.attractions-premium .single_block .image-wrapper:hover .overlay {
  opacity: 1;
}
.attractions-premium .single_block .content-wrapper {
  padding: 0 20px 20px;
}
.attractions-premium .single_block .content-wrapper .heading {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  display: block;
  width: 100%;
  text-align: left;
  letter-spacing: 2px;
  margin: 20px auto 50px;
  text-transform: uppercase;
  position: relative;
}
.attractions-premium .single_block .content-wrapper .heading::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.attractions-premium .single_block .content-wrapper .description {
  text-align: left;
  padding: 0;
  margin-bottom: 30px;
  font-size: 16px;
}
@media (min-width: 46.875em) {
  .attractions-premium .single_block .content-wrapper .description {
    font-size: 17px;
    padding-right: 10px;
  }
}
@media (min-width: 64.125em) {
  .attractions-premium .single_block .content-wrapper .description {
    padding-right: 0;
  }
}
.attractions-premium .single_block .content-wrapper .button-link-prestige {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 11px;
  line-height: 13px;
  width: 180px;
  height: 37px;
  background-color: black;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 46.875em) {
  .attractions-premium .single_block .content-wrapper .button-link-prestige {
    height: 50px;
    font-size: 15px;
    line-height: 18px;
  }
}
@media (min-width: 96.875em) {
  .attractions-premium .single_block .content-wrapper .button-link-prestige {
    width: 189px;
  }
}
.attractions-premium .single_block .content-wrapper .button-link-prestige:not(:last-of-type) {
  margin-bottom: 18px;
}
@media (min-width: 46.875em) {
  .attractions-premium .single_block .content-wrapper .button-link-prestige:not(:last-of-type) {
    margin-right: 21px;
    margin-bottom: unset;
  }
}
.attractions-premium .single_block .content-wrapper .button-link-prestige:only-child {
  width: 180px;
}
@media (min-width: 46.875em) {
  .attractions-premium .single_block .content-wrapper .button-link-prestige:only-child {
    width: 241px;
  }
}
.attractions-premium .single_block .content-wrapper .button-link-prestige:hover {
  background-color: #AD8E6D;
}
.attractions-premium.prestige .ctas .single_block .content-wrapper {
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-block-wrapper .gform-field-label a {
  color: #262525 !important;
}
.form-block-wrapper.prestige {
  width: 80vw;
  margin: auto;
}
@media (min-width: 96.875em) {
  .form-block-wrapper.prestige {
    width: 66.25vw;
  }
}
.form-block-wrapper.prestige .heading {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: 2px;
  margin: 20px auto 50px;
  text-transform: uppercase;
}
.form-block-wrapper.prestige form {
  font-family: utile-display, sans-serif;
}
.form-block-wrapper.prestige form .gfield_label {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  width: 100%;
  text-align: left;
  letter-spacing: 2px;
  margin: 20px auto 5px;
}
.form-block-wrapper.prestige form input[type=text],
.form-block-wrapper.prestige form input[type=email],
.form-block-wrapper.prestige form input[type=number] {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  background-color: #efeded;
  border-color: #efeded;
  border-style: none;
  color: #787777;
  padding: 11px 15px;
}
.form-block-wrapper.prestige form select, .form-block-wrapper.prestige form textarea {
  background-color: #efeded;
  border-color: #efeded;
  border-style: none;
  color: #787777;
}
.form-block-wrapper.prestige form .date_field {
  grid-column: span 12 !important;
}
@media (min-width: 28.125em) {
  .form-block-wrapper.prestige form .date_field {
    grid-column: span 6 !important;
  }
}
@media (min-width: 56.25em) {
  .form-block-wrapper.prestige form .date_field {
    grid-column: span 2 !important;
  }
}
.form-block-wrapper.prestige form .time_field {
  grid-column: span 12 !important;
}
@media (min-width: 28.125em) {
  .form-block-wrapper.prestige form .time_field {
    grid-column: span 6 !important;
  }
}
@media (min-width: 56.25em) {
  .form-block-wrapper.prestige form .time_field {
    grid-column: span 3 !important;
  }
}
.form-block-wrapper.prestige form .time_field legend {
  display: block;
}
.form-block-wrapper.prestige form .time_field .gfield_time_ampm select {
  background-color: #efeded;
  border-color: #efeded;
  color: #787777;
}
.form-block-wrapper.prestige form input[type=submit] {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-style: none;
  padding: 15px 20px;
}

.flipping_book_wrapper {
  width: 100vw;
  max-width: 100%;
  margin: auto;
}
@media (min-width: 46.875em) {
  .flipping_book_wrapper {
    width: 78.51vw;
  }
}
@media (min-width: 96.875em) {
  .flipping_book_wrapper {
    width: 66.56vw;
  }
}
.flipping_book_wrapper .fp-iframe {
  height: 570px;
}
@media (min-width: 46.875em) {
  .flipping_book_wrapper .fp-iframe {
    height: 900px;
  }
}
.flipping_book_wrapper > * {
  width: 66.56vw;
}
@media (min-width: 46.875em) {
  .flipping_book_wrapper > * {
    width: 78.51vw;
  }
}
@media (min-width: 96.875em) {
  .flipping_book_wrapper > * {
    width: 66.56vw;
  }
}

._df_book {
  background-color: transparent !important;
}

.booking-engine-iframe {
  position: relative;
  height: 2000px;
  width: 100%;
  padding: 0px;
  margin: 0px;
  border: none;
}
.booking-engine-iframe * {
  height: 100%;
  width: 100%;
  padding: 0px;
  margin: 0px;
  border: none;
}

.icons-block-prestige {
  padding: 0 14vw;
}
.icons-block-prestige .images {
  display: flex;
  text-align: center;
  gap: 10px;
  justify-content: center;
}
.icons-block-prestige .images .prestige-icon {
  width: 27vw;
  object-fit: contain;
  max-width: 200px;
}

.three-column-image-block {
  position: relative;
  margin: 0px;
  padding: 0px 0px 0px 0px;
}
.three-column-image-block .section__shell {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1088px;
  margin: 0 auto;
}
.three-column-image-block .section__content {
  position: relative;
  margin: auto auto;
  width: 100%;
}
.three-column-image-block .section__content .section_heading {
  width: 100%;
  text-align: center;
  font-family: "objektiv-mk1", sans-serif;
  font-size: 24px;
  font-weight: 800 !important;
  line-height: 50px;
  color: #c8a044;
  letter-spacing: normal;
  margin-bottom: 1rem;
}
.three-column-image-block .section__content .three-column-image-block-list {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (min-width: 34.375em) {
  .three-column-image-block .section__content .three-column-image-block-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
  }
}
@media (min-width: 68.75em) {
  .three-column-image-block .section__content .three-column-image-block-list {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.three-column-image-block .section__content .three-column-image-block-list .section__column {
  margin-bottom: 0.75rem;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  cursor: pointer;
  height: 260px;
  width: 100%;
}
@media (min-width: 34.375em) {
  .three-column-image-block .section__content .three-column-image-block-list .section__column {
    height: 300px;
    width: calc(33.3% - 0.5rem);
    max-width: 352px;
  }
}
.three-column-image-block .section__content .three-column-image-block-list .section__column:hover .section__inner .card-wrapper .heading {
  background-image: url("../images/butcombe-btn-arrow.svg");
}
.three-column-image-block .section__content .three-column-image-block-list .section__column .section__inner {
  position: absolute;
  height: 100%;
  width: 100%;
}
.three-column-image-block .section__content .three-column-image-block-list .section__column .section__inner .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}
.three-column-image-block .section__content .three-column-image-block-list .section__column .section__inner .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.three-column-image-block .section__content .three-column-image-block-list .section__column .section__inner .card-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.three-column-image-block .section__content .three-column-image-block-list .section__column .section__inner .card-wrapper .heading {
  width: calc(100% - 2rem);
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-family: "objektiv-mk1", sans-serif;
  font-weight: 800;
  text-shadow: 0px 0px 25px black;
  color: #FFF;
  text-transform: uppercase;
  background-image: url("../images/butcombe-btn-arrow-gold.svg");
  background-repeat: no-repeat;
  background-size: 27px 16px;
  background-position: calc(100% - 5px) 50%;
  padding-right: 36px;
  line-height: 50px;
  font-size: 20px;
}
@media (min-width: 34.375em) {
  .three-column-image-block .section__content .three-column-image-block-list .section__column .section__inner .card-wrapper .heading {
    font-size: 22px;
  }
}
.three-column-image-block .section__content .three-column-image-block-list .section__column .section__inner .card-wrapper .heading p {
  text-shadow: 0px 0px 25px black;
}

.global-floating-cta-form {
  position: fixed;
  left: 0px;
  bottom: 0px;
  background: #2D2926;
  z-index: 20;
  min-width: 215px;
  padding: 20px 10px;
}
@media (min-width: 34.375em) {
  .global-floating-cta-form {
    padding: 30px;
  }
}
.global-floating-cta-form.active {
  transition: all 0.5s linear;
  padding: 10px 10px 5px 10px;
}
@media (min-width: 34.375em) {
  .global-floating-cta-form.active {
    padding: 10px 30px 5px 30px;
  }
}
.global-floating-cta-form.active .content-wrapper .content {
  transition: all 0.5s linear !important;
  line-height: 5px !important;
  height: 5px !important;
  margin-bottom: 0px !important;
  color: #2D2926 !important;
}
.global-floating-cta-form.active .content-wrapper .cta-button {
  transition: all 0.5s linear !important;
  display: none !important;
}
.global-floating-cta-form.active .form-close-btn {
  display: none;
}
.global-floating-cta-form.active .form-open-btn {
  display: block;
}
.global-floating-cta-form .form-close-btn,
.global-floating-cta-form .form-open-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  height: 18px;
  width: 18px;
}
.global-floating-cta-form .form-open-btn {
  display: none;
  rotate: -90deg;
}
.global-floating-cta-form .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.global-floating-cta-form .content-wrapper .heading {
  color: #c8a044;
  font-family: "objektiv-mk1", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 22px;
  text-transform: uppercase;
}
.global-floating-cta-form .content-wrapper .content {
  color: #FFF;
  font-family: "objektiv-mk1", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.global-floating-cta-form .content-wrapper .cta-button {
  background: transparent;
  border: 1px solid #c8a044;
  height: 30px;
  width: 157px;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-family: "objektiv-mk1", sans-serif;
  font-size: 11px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  background-image: url("../images/butcombe-btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: calc(100% - 10px) 50%;
  padding-right: 20px;
}
.global-floating-cta-form .content-wrapper .cta-button:hover {
  background: #c8a044;
  background-image: url("../images/butcombe-btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: 14px 8px;
  background-position: calc(100% - 10px) 50%;
  padding-right: 20px;
}

/* 7 */
.wm-links a {
  background: none;
  display: inline-block;
  color: #333;
  border: 1px solid #333;
  margin: 16px;
  font-size: 16px;
  text-align: left;
  white-space: normal;
  vertical-align: top;
  position: relative;
  padding: 10px 24px 10px 14px;
}
.wm-links a:after {
  content: ">";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 5px;
}
.wm-links a:hover {
  transition: all 0.2s ease-in;
  background: #333;
  color: #d3d3d3;
}

.wm-buttons a {
  background: none;
  display: inline-block;
  color: #333;
  border: 1px solid #333;
  margin: 16px;
  font-size: 16px;
  text-align: left;
  white-space: normal;
  vertical-align: top;
  position: relative;
  padding: 10px 24px 10px 14px;
}
.wm-buttons a:after {
  content: ">";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 5px;
}
.wm-buttons a:hover {
  transition: all 0.2s ease-in;
  background: #333;
  color: #d3d3d3;
}

.inner-wrap {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.inner-wrap.domus {
  font-family: "jaf-domus-titling-web", sans-serif;
}
.inner-wrap.heading-domus h1,
.inner-wrap.heading-domus h2,
.inner-wrap.heading-domus h3,
.inner-wrap.heading-domus h4,
.inner-wrap.heading-domus h5 {
  font-family: "jaf-domus-titling-web", sans-serif;
}
.inner-wrap.caslons {
  font-family: "caslons-egyptian", sans-serif;
}
.inner-wrap.heading-caslons h1,
.inner-wrap.heading-caslons h2,
.inner-wrap.heading-caslons h3,
.inner-wrap.heading-caslons h4,
.inner-wrap.heading-caslons h5 {
  font-family: "caslons-egyptian", sans-serif;
}
.inner-wrap.museo {
  font-family: "museo-slab", serif;
}
.inner-wrap.museo .button-wrap a {
  padding-top: 8px !important;
}
.inner-wrap.museo a.button {
  padding-top: 12px !important;
}
.inner-wrap.heading-museo h1,
.inner-wrap.heading-museo h2,
.inner-wrap.heading-museo h3,
.inner-wrap.heading-museo h4,
.inner-wrap.heading-museo h5 {
  font-family: "museo-slab", serif;
}
.inner-wrap.p-underground {
  font-family: "p22-underground", sans-serif;
}
.inner-wrap.p-underground a.button {
  padding-top: 13px !important;
}
.inner-wrap.heading-p-underground h1,
.inner-wrap.heading-p-underground h2,
.inner-wrap.heading-p-underground h3,
.inner-wrap.heading-p-underground h4,
.inner-wrap.heading-p-underground h5 {
  font-family: "p22-underground", sans-serif;
}
.inner-wrap.garamond {
  font-family: "adobe-garamond-pro", serif;
}
.inner-wrap.garamond .button-wrap a {
  padding-top: 8px !important;
}
.inner-wrap.garamond a.button {
  padding-top: 12px !important;
}
.inner-wrap.heading-garamond h1,
.inner-wrap.heading-garamond h2,
.inner-wrap.heading-garamond h3,
.inner-wrap.heading-garamond h4,
.inner-wrap.heading-garamond h5 {
  font-family: "p22-underground", sans-serif;
}
.inner-wrap.pt-sans {
  font-family: "pt-sans-narrow", sans-serif;
}
.inner-wrap.pt-sans a.button {
  padding-top: 11px !important;
}
.inner-wrap.heading-pt-sans h1,
.inner-wrap.heading-pt-sans h2,
.inner-wrap.heading-pt-sans h3,
.inner-wrap.heading-pt-sans h4,
.inner-wrap.heading-pt-sans h5 {
  font-family: "pt-sans-narrow", sans-serif;
}
.inner-wrap.minion {
  font-family: "minion-pro", serif;
}
.inner-wrap.minion a.button {
  padding-top: 11px !important;
}
.inner-wrap.heading-minion h1,
.inner-wrap.heading-minion h2,
.inner-wrap.heading-minion h3,
.inner-wrap.heading-minion h4,
.inner-wrap.heading-minion h5 {
  font-family: "minion-pro", serif;
}
.inner-wrap.clarendon {
  font-family: "clarendon-text-pro", serif;
}
.inner-wrap.clarendon a.button {
  padding-top: 11px !important;
}
.inner-wrap.heading-clarendon h1,
.inner-wrap.heading-clarendon h2,
.inner-wrap.heading-clarendon h3,
.inner-wrap.heading-clarendon h4,
.inner-wrap.heading-clarendon h5 {
  font-family: "clarendon-text-pro", serif;
}
.inner-wrap.calibri {
  font-family: "calibri", sans-serif;
}
.inner-wrap.calibri a.button {
  padding-top: 11px !important;
}
.inner-wrap.heading-calibri h1,
.inner-wrap.heading-calibri h2,
.inner-wrap.heading-calibri h3,
.inner-wrap.heading-calibri h4,
.inner-wrap.heading-calibri h5 {
  font-family: "calibri", sans-serif;
}
.inner-wrap.century-gothic {
  font-family: "century-gothic", sans-serif;
}
.inner-wrap.century-gothic a.button {
  padding-top: 11px !important;
}
.inner-wrap.heading-century-gothic h1,
.inner-wrap.heading-century-gothic h2,
.inner-wrap.heading-century-gothic h3,
.inner-wrap.heading-century-gothic h4,
.inner-wrap.heading-century-gothic h5 {
  font-family: "century-gothic", sans-serif;
}
.inner-wrap.gill-sans {
  font-family: "gill-sans-nova", sans-serif;
}
.inner-wrap.gill-sans .button-wrap a {
  padding-top: 6px !important;
}
.inner-wrap.gill-sans a.button {
  padding-top: 9px !important;
}
.inner-wrap.heading-gill-sans h1,
.inner-wrap.heading-gill-sans h2,
.inner-wrap.heading-gill-sans h3,
.inner-wrap.heading-gill-sans h4,
.inner-wrap.heading-gill-sans h5 {
  font-family: "gill-sans-nova", sans-serif;
}
.inner-wrap.baskerville {
  font-family: "baskerville-display-pt", serif;
}
.inner-wrap.baskerville .button-wrap a {
  padding-top: 9px !important;
}
.inner-wrap.baskerville a.button {
  padding-top: 11px !important;
}
.inner-wrap.gotham {
  font-family: "gotham", sans-serif;
}
.inner-wrap.gotham a.button {
  padding-top: 10px !important;
  max-width: 160px !important;
}
.inner-wrap.clerkenwell {
  font-family: "clerkenwell", sans-serif;
}
.inner-wrap.clerkenwell .button-wrap a {
  padding-top: 10px !important;
}
.inner-wrap.clerkenwell a.button {
  padding-top: 12px !important;
}
.inner-wrap.avenir {
  font-family: "avenir", sans-serif;
}
.inner-wrap.avenir .button-wrap a {
  padding-top: 8px !important;
}
.inner-wrap.avenir a.button {
  padding-top: 11px !important;
}
.inner-wrap.century-schoolbook {
  font-family: "schoolbook", serif;
}
.inner-wrap.century-schoolbook a.button {
  padding-top: 11px !important;
}
.inner-wrap.heading-baskerville h1,
.inner-wrap.heading-baskerville h2,
.inner-wrap.heading-baskerville h3,
.inner-wrap.heading-baskerville h4,
.inner-wrap.heading-baskerville h5 {
  font-family: "baskerville-display-pt", serif;
}
.inner-wrap .pub-gallery .slick-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}
.inner-wrap .pub-gallery .slick-track .slick-slide {
  height: auto;
  line-height: normal;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.block.padded {
  padding: 50px;
}
@media (min-width: 46.875em) {
  .block.padded {
    padding: 90px;
  }
}
.block.padded.first-block-padding {
  padding: 90px 50px 70px;
}
@media (min-width: 46.875em) {
  .block.padded.first-block-padding {
    padding: 90px;
  }
}
.block.list ul {
  padding: 0;
  margin: 0;
}
.block.list ul li {
  list-style-type: none;
}
.block.list.cards ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block.list.cards ul li {
  max-width: 100%;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 0 0 5px 5px;
  background-color: #FFF;
}
@media (min-width: 46.875em) {
  .block.list.cards ul li {
    max-width: 48%;
  }
  .block.list.cards ul li:nth-child(odd):last-of-type {
    max-width: 100%;
  }
}
@media (min-width: 56.25em) {
  .block.list.cards ul li {
    max-width: 32%;
  }
  .block.list.cards ul li:nth-child(odd):last-of-type {
    max-width: 32%;
  }
}
.block.list.cards ul li a {
  text-decoration: none;
  color: #231f20;
}
.block.list.cards ul li img {
  width: 100%;
  border-radius: 5px 5px 0 0;
  display: block;
}
.block.list.cards ul li .title-block {
  text-align: center;
  padding: 15px 30px;
}
.block.list.cards ul li .title-block h4 {
  font-size: 16px;
  line-height: 20px;
}
.block.list.bg-ctas ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.block.list.bg-ctas ul.wrap {
  flex-wrap: wrap;
}
.block.list.bg-ctas ul.wrap li:last-of-type:nth-child(odd) {
  max-width: 100%;
  height: 380px;
}
.block.list.bg-ctas ul.no-wrap {
  flex-wrap: nowrap;
}
.block.list.bg-ctas ul li {
  max-width: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 290px;
}
@media (min-width: 56.25em) {
  .block.list.bg-ctas ul li {
    max-width: 50%;
    height: 380px;
  }
}
.block.list.bg-ctas ul li.table-iframe {
  cursor: pointer;
}
.block.list.bg-ctas ul li .overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
  background-color: RGBA(38, 36, 32, 0.35);
  font-size: 30px;
  padding: 0 25px;
}
.block.list.bg-ctas ul li .overlay.no-bg {
  background-color: RGBA(38, 36, 32, 0);
}
.block.list.bg-ctas ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: RGBA(38, 36, 32, 0.35);
  text-align: center;
  color: #FFF;
  font-size: 30px;
  text-decoration: none;
  padding: 0 25px;
}
.block.list.bg-ctas ul li a.no-bg {
  background-color: RGBA(38, 36, 32, 0);
}
.block.list.bg-ctas ul li a:hover {
  text-decoration: underline;
}
.block.news ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block.news ul li {
  list-style-type: none;
  text-align: left;
  max-width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 46.875em) {
  .block.news ul li {
    max-width: 48%;
  }
}
@media (min-width: 56.25em) {
  .block.news ul li {
    max-width: 32%;
  }
}
.block.news ul li p {
  margin-top: 15px;
}
.block.news ul li a {
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  max-width: 140px;
  width: 100%;
  height: 35px;
  padding-top: 3px;
  display: block;
}
.block.news .tool-pagination ul {
  padding: 0;
  margin: 0;
  justify-content: center;
}
.block.news .tool-pagination ul li {
  color: #c3a76d;
  margin: 0 15px 0 0;
}
.block.news .tool-pagination ul li a {
  color: #c3a76d;
}
.block.image-block {
  padding: 60px 0;
}
@media (min-width: 56.25em) {
  .block.image-block {
    padding: 0 14vw;
  }
}
.block.image-block img {
  border-radius: 4px;
  height: auto;
}
.block.standard-text-block {
  text-align: center;
  color: #231f20;
  padding: 60px 30px;
}
@media (min-width: 46.875em) {
  .block.standard-text-block {
    padding: 90px;
  }
}
.block.standard-text-block.premium {
  color: #1F211B;
}
@media (min-width: 46.875em) {
  .block.standard-text-block.premium {
    padding: 0 14vw;
  }
}
.block.standard-text-block .heading {
  max-width: 100%;
  font-size: 28px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin: auto auto 32px;
}
@media (min-width: 46.875em) {
  .block.standard-text-block .heading {
    font-size: 32px;
    max-width: 80%;
    margin-bottom: 0;
  }
}
@media (min-width: 56.25em) {
  .block.standard-text-block .heading {
    font-size: 38px;
    max-width: 50%;
  }
}
.block.standard-text-block.global-offers-heading {
  padding: 20px !important;
}
@media (min-width: 46.875em) {
  .block.standard-text-block.global-offers-heading {
    padding: 20px !important;
  }
}
.block.standard-text-block.col-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block.standard-text-block.col-block h3 {
  max-width: 100%;
  width: 100%;
}
.block.standard-text-block.col-block.txt-left .left {
  order: 1;
}
.block.standard-text-block.col-block.txt-left .right {
  order: 2;
}
.block.standard-text-block.col-block.txt-right .left {
  order: 1;
}
.block.standard-text-block.col-block.txt-right .right {
  order: 2;
}
@media (min-width: 56.25em) {
  .block.standard-text-block.col-block.txt-right .left {
    order: 2;
  }
  .block.standard-text-block.col-block.txt-right .right {
    order: 1;
  }
}
.block.standard-text-block.col-block .left {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 56.25em) {
  .block.standard-text-block.col-block .left {
    max-width: 48%;
  }
  .block.standard-text-block.col-block .left.wide {
    max-width: 100%;
  }
  .block.standard-text-block.col-block .left h3 {
    text-align: left;
  }
}
.block.standard-text-block.col-block .right {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 56.25em) {
  .block.standard-text-block.col-block .right {
    max-width: 48%;
  }
}
.block.standard-text-block .gform_wrapper form {
  max-width: 720px !important;
  margin: 0 auto;
}
.block.standard-text-block .gform_wrapper form .gform_heading {
  text-align: center !important;
}
.block.standard-text-block .gform_wrapper form .gform_fields {
  display: flex !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  flex-direction: column;
  text-align: left;
}
.block.standard-text-block .gform_wrapper form .gform_button {
  background-color: #000 !important;
  border: 0 !important;
  color: #FFF !important;
  text-transform: uppercase !important;
  max-width: 140px !important;
  width: 100% !important;
  height: 35px !important;
  border-radius: 5px !important;
}
.block.standard-text-block .gform_wrapper form li.gfield {
  max-width: 100%;
  width: 100%;
}
.block.standard-text-block .gform_wrapper form li.gfield.half-width {
  max-width: 100% !important;
  width: 100%;
}
@media (min-width: 46.875em) {
  .block.standard-text-block .gform_wrapper form li.gfield.half-width {
    max-width: 50% !important;
  }
}
.block.standard-text-block .gform_wrapper form li.gfield.half-width div input {
  width: 100% !important;
}
.block.standard-text-block .gform_wrapper form li.gfield.half-width div.ginput_container_radio input {
  width: 15% !important;
}
@media (min-width: 46.875em) {
  .block.standard-text-block.prestige {
    padding: 0 16.64vw;
  }
}
.block.standard-text-block.prestige > * {
  max-width: unset;
  width: auto;
}
.block.standard-text-block.prestige .heading {
  font-family: scotch-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0;
}
@media (min-width: 46.875em) {
  .block.standard-text-block.prestige .heading {
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (min-width: 96.875em) {
  .block.standard-text-block.prestige .heading {
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0;
  }
}
.block.standard-text-block.prestige p {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: black;
  text-align: center;
  letter-spacing: 0.25px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 46.875em) {
  .block.standard-text-block.prestige p {
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 96.875em) {
  .block.standard-text-block.prestige p {
    font-size: 18px;
    line-height: 32px;
  }
}
.block.contact .christmas-wired-section {
  margin-bottom: 20px;
}
@media (min-width: 18.75em) {
  .block.contact .christmas-wired-section {
    display: block;
    margin-bottom: 40px;
  }
}
@media (min-width: 56.25em) {
  .block.contact .christmas-wired-section {
    margin-bottom: 20px;
  }
}
.block.contact a.button-wired {
  border-radius: 2px;
  background-color: #c3a76d;
  color: #FFF !important;
  font-family: "jaf-domus-titling-web", sans-serif;
  text-decoration: none !important;
  padding: 5px 20px 8px 20px;
  max-width: 350px;
  font-size: 14px;
  display: inline-block;
}
@media (min-width: 18.75em) {
  .block.contact a.button-wired {
    display: block;
    margin-bottom: 20px;
  }
}
@media (min-width: 28.125em) {
  .block.contact a.button-wired {
    display: inline-block;
  }
}
.block.contact .contact-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block.contact .contact-wrap .center-text-wired {
  text-align: center !important;
}
.block.contact .contact-wrap .clear-wired {
  clear: both;
}
.block.contact .contact-wrap .left {
  max-width: 100%;
  width: 100%;
  text-align: left;
  padding: 25px 0;
  margin: 0 auto;
}
@media (min-width: 56.25em) {
  .block.contact .contact-wrap .left {
    max-width: 48%;
  }
}
.block.contact .contact-wrap .left .widget_area iframe {
  display: block;
  margin: 0 auto;
}
.block.contact .contact-wrap .left .widget_area button {
  max-width: 350px;
  height: 40px;
}
.block.contact .contact-wrap .left .widget_area p {
  text-align: center !important;
}
.block.contact .contact-wrap .left .widget_area .center-text {
  text-align: center !important;
}
.block.contact .contact-wrap .left form .form-row {
  margin-bottom: 10px;
}
.block.contact .contact-wrap .left form .form-row.checkbox {
  display: flex;
  align-items: center;
}
.block.contact .contact-wrap .left form .form-row.checkbox .control-group {
  max-width: 11px;
  width: 100%;
  margin-right: 10px;
  padding-top: 5px;
}
.block.contact .contact-wrap .left form .form-row.checkbox p {
  margin: unset !important;
  width: fit-content;
}
.block.contact .contact-wrap .left form .form-row.checkbox input {
  max-width: 11px !important;
}
.block.contact .contact-wrap .left form label {
  display: none;
}
.block.contact .contact-wrap .left form input {
  padding: 10px 10px 10px 0;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  border-top: 0;
  border-bottom: 2px solid #231f20;
  font-size: 14px;
  width: 100%;
  color: #231f20;
  margin-bottom: 10px;
}
.block.contact .contact-wrap .left form input::placeholder {
  color: #231f20;
}
.block.contact .contact-wrap .left form textarea {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid #231f20;
  background-color: transparent;
  font-size: 14px;
  height: 90px;
  width: 100%;
}
.block.contact .contact-wrap .left form textarea::placeholder {
  color: #231f20;
}
.block.contact .contact-wrap .left form select {
  min-width: 0 !important;
  width: 100%;
  margin: 0px !important;
  color: #231f20;
  padding: 5px 5px 5px 0px;
  font-size: 14px;
  border-radius: 0px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 2px solid #231f20;
  background-color: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/down-pointer.png") no-repeat 95% 50%;
  background-size: 12px;
  margin-bottom: 10px;
}
.block.contact .contact-wrap .left form button {
  border-radius: 5px;
  background-color: #c3a76d;
  color: #FFF;
  width: 140px;
  height: 35px;
  font-size: 14px;
  line-height: 1;
}
.block.contact .contact-wrap .right {
  max-width: 100%;
  text-align: left;
  width: 100%;
  padding: 25px 0;
}
.block.contact .contact-wrap .right.christmas_area_right {
  display: none;
}
@media (min-width: 56.25em) {
  .block.contact .contact-wrap .right.christmas_area_right {
    max-width: 48%;
  }
}
@media (min-width: 56.25em) {
  .block.contact .contact-wrap .right {
    max-width: 30%;
  }
}
.block.contact .contact-wrap .right .christmas_area button {
  max-width: 350px;
  height: 40px;
}
.block.contact .contact-wrap .right .christmas_area form {
  width: 100%;
  text-align: center !important;
}
.block.contact .contact-wrap .right .christmas_area form .form-row {
  margin-bottom: 30px;
}
.block.contact .contact-wrap .right .christmas_area form label {
  display: none;
}
.block.contact .contact-wrap .right .christmas_area form input {
  padding: 10px 10px 10px 0;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  border-top: 0;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  max-width: 100%;
  font-family: "caslons-egyptian", sans-serif;
  width: 100%;
  color: #231f20;
}
.block.contact .contact-wrap .right .christmas_area form input::placeholder {
  color: #231f20;
}
.block.contact .contact-wrap .right .christmas_area form textarea {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #ccc;
  font-family: "caslons-egyptian", sans-serif;
  background-color: transparent;
  font-size: 14px;
  height: 90px;
  max-width: 350px !important;
  width: 100%;
}
.block.contact .contact-wrap .right .christmas_area form textarea::placeholder {
  color: #231f20;
}
.block.contact .contact-wrap .right .christmas_area form select {
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100%;
  margin: 0px !important;
  font-family: "caslons-egyptian", sans-serif;
  color: #231f20;
  padding: 5px 5px 5px 0px;
  font-size: 14px;
  border-radius: 0px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/down-pointer.png") no-repeat 95% 50%;
  background-size: 12px;
}
.block.contact .contact-wrap .right .christmas_area form button {
  border-radius: 5px;
  background-color: #c3a76d;
  color: #FFF;
  font-family: "jaf-domus-titling-web", sans-serif;
  width: 100%;
  height: 40px;
  max-width: 350px;
  font-size: 14px;
  line-height: 1;
  float: left;
}
.block.contact .contact-wrap .right a {
  color: #c8a044;
  text-decoration: none;
}
.block.contact .contact-wrap .right a:hover {
  text-decoration: underline;
}
.block.contact .contact-wrap .right p {
  text-align: left;
  margin-left: 0;
  width: 100%;
}
.block.contact .contact-wrap .right p.center-text {
  text-align: center !important;
}
.block.contact .contact-wrap .right .details-social {
  padding: 0;
  margin: 25px 0;
  display: flex;
  justify-content: flex-start;
}
.block.contact .contact-wrap .right .details-social li.social {
  display: block;
  max-width: 25px;
  width: 100%;
  margin: 0 10px;
}
.block.contact .contact-wrap .right .details-social li.social:first-of-type {
  margin: 0 10px 0 0;
}
.block.contact .contact-wrap .right .details-social li.social img,
.block.contact .contact-wrap .right .details-social li.social svg {
  width: 100%;
}
.block.contact .contact-wrap .map {
  max-width: 100%;
  width: 100%;
}
.block.single-room.gallery-content {
  display: block;
  align-items: center;
  margin-bottom: 30px;
}
.block.single-room.gallery-content .standard-content {
  max-width: 100%;
  width: 100%;
  padding: 50px;
  text-align: center;
}
@media (min-width: 56.25em) {
  .block.single-room.gallery-content .standard-content {
    margin-bottom: 0px;
    padding: 50px 90px;
  }
}
.block.single-room.gallery-content .standard-content p {
  color: #231f20;
  font-size: 16px;
  line-height: 26px;
  max-width: 720px;
  margin: 0 auto 15px;
}
.block.single-room.gallery-content .standard-content a {
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  max-width: 140px;
  width: 100%;
  height: 35px;
  padding-top: 5px;
  display: block;
  margin: auto;
}
.block.single-room.gallery-content .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 56.25em) {
  .block.single-room.gallery-content .content-wrapper {
    flex-direction: row;
  }
}
.block.single-room.gallery-content .content-wrapper .gallery {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 56.25em) {
  .block.single-room.gallery-content .content-wrapper .gallery {
    max-width: 50%;
    margin-bottom: 0px;
  }
}
.block.single-room.gallery-content .content-wrapper .gallery ul {
  padding: 0;
  margin: 0;
}
.block.single-room.gallery-content .content-wrapper .gallery ul.pub-gallery {
  margin: 0 auto 5px;
}
.block.single-room.gallery-content .content-wrapper .gallery ul.slider-nav {
  margin: 0 auto 15px;
}
.block.single-room.gallery-content .content-wrapper .gallery ul.slider-nav li {
  cursor: pointer !important;
}
.block.single-room.gallery-content .content-wrapper .gallery ul button {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 20px;
  font-size: 0px;
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
}
.block.single-room.gallery-content .content-wrapper .gallery ul button.slick-prev {
  background-image: url("../images/prev-arrow.png");
  left: 20px;
}
.block.single-room.gallery-content .content-wrapper .gallery ul button.slick-next {
  background-image: url("../images/next-arrow.png");
  right: 20px;
}
.block.single-room.gallery-content .content-wrapper .amenities {
  width: 80%;
  background-color: white;
  padding: 20px;
}
@media (min-width: 56.25em) {
  .block.single-room.gallery-content .content-wrapper .amenities {
    width: 35%;
  }
}
.block.single-room.gallery-content .content-wrapper .amenities .amenities-list {
  padding-left: 0;
}
.block.single-room.gallery-content .content-wrapper .amenities .amenities-list .amenity-element {
  list-style-type: none;
  padding-bottom: 5px;
}
.block.single-room.gallery-content .content-wrapper .amenities .amenities-list .amenity-element:before {
  content: "";
  background-image: url(../../../images/CH_Tick.svg);
  min-width: 20px;
  min-height: 20px;
  display: inline-block;
  margin-right: 10px;
  float: left;
  position: relative;
  top: 4px;
}
.block.single-room.gallery-content.standard-gallery {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}
.block.single-room.gallery-content.standard-gallery .gallery {
  max-width: 100%;
  width: 100%;
  order: 1;
}
@media (min-width: 56.25em) {
  .block.single-room.gallery-content.standard-gallery .gallery {
    max-width: 100%;
    margin-bottom: 0px;
  }
}
.block.single-room.gallery-content.standard-gallery .gallery .slider-nav .slick-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}
.block.single-room.gallery-content.standard-gallery .gallery .slider-nav .slick-slide {
  height: auto;
  padding: 10px 2px;
  line-height: normal;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.block.single-room.gallery-content.standard-gallery .gallery .slider-nav .slick-slide img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
}
.block.single-room.category-list {
  padding: 50px 15px;
  text-align: center;
}
@media (min-width: 56.25em) {
  .block.single-room.category-list {
    padding: 90px;
  }
}
.block.single-room.category-list h3 {
  color: #231f20;
  font-size: 22px;
  margin-bottom: 20px;
}
.block.single-room.category-list ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 56.25em) {
  .block.single-room.category-list ul {
    flex-wrap: nowrap;
  }
}
.block.single-room.category-list ul li {
  list-style-type: none;
  min-width: 110px;
  margin-bottom: 25px;
}
@media (min-width: 56.25em) {
  .block.single-room.category-list ul li {
    margin-bottom: 0px;
  }
}
.block.single-room.category-list ul li .category {
  font-size: 14px;
  color: #231f20;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}
.block.single-room.category-list ul li .icon {
  text-align: center;
  height: 30px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 46.875em) {
  .block.single-room.category-list ul li .icon {
    border-right: 2px solid #f9f5eb;
  }
}
.block.single-room.category-list ul li .icon.accommodation {
  background-image: url("../images/Pubs_Icons-Accommodation.svg");
}
.block.single-room.category-list ul li .icon.bar-food {
  background-image: url("../images/Pubs_Icons-Bar_Food.svg");
}
.block.single-room.category-list ul li .icon.dog-friendly {
  background-image: url("../images/Pubs_Icons-Dog_Friendly.svg");
}
.block.single-room.category-list ul li .icon.family-friendly {
  background-image: url("../images/Pubs_Icons-Family.svg");
}
.block.single-room.category-list ul li .icon.kids-play-area {
  background-image: url("../images/Pubs_Icons-Play_Area.svg");
}
.block.single-room.category-list ul li .icon.live-music {
  background-image: url("../images/Pubs_Icons-Music.svg");
}
.block.single-room.category-list ul li .icon.live-sport {
  background-image: url("../images/Pubs_Icons-Sport.svg");
}
.block.single-room.category-list ul li .icon.loyalty {
  background-image: url("../images/Pubs_Icons-_Loyalty.svg");
}
.block.single-room.category-list ul li .icon.managed {
  background-image: url("../images/Pubs_Icons-Managed.svg");
}
.block.single-room.category-list ul li .icon.near-me {
  background-image: url("../images/Pubs_Icons-Near_me.svg");
}
.block.single-room.category-list ul li .icon.outside-seating {
  background-image: url("../images/Pubs_Icons-Outside_Seating.svg");
}
.block.single-room.category-list ul li .icon.parking {
  background-image: url("../images/Pubs_Icons-Parking.svg");
}
.block.single-room.category-list ul li .icon.restaurant {
  background-image: url("../images/Pubs_Icons-Restaurant.svg");
}
.block.single-room.category-list ul li .icon.tenanted {
  background-image: url("../images/Pubs_Icons-Tenanted.svg");
}
.block.single-room.category-list ul li .icon.wifi {
  background-image: url("../images/Pubs_Icons-Wifi.svg");
}
.block.single-room.category-list ul li:last-of-type .icon {
  border-right: none;
}
.block.single-room.details {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 46.875em) {
  .block.single-room.details {
    padding: 50px;
  }
}
@media (min-width: 56.25em) {
  .block.single-room.details {
    padding: 0 90px;
  }
}
.block.single-room.details .left {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 56.25em) {
  .block.single-room.details .left {
    max-width: 50%;
    display: flex;
    justify-content: space-between;
  }
}
.block.single-room.details .left span {
  font-weight: bold;
}
.block.single-room.details .left .opening-times {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 56.25em) {
  .block.single-room.details .left .opening-times {
    max-width: 50%;
    padding-right: 25px;
  }
}
.block.single-room.details .left .opening-times ul {
  margin: 0 0 15px;
  padding: 0;
}
.block.single-room.details .left .opening-times ul li {
  list-style-type: none;
  font-size: 16px;
  margin-bottom: 5px;
  width: 100%;
}
.block.single-room.details .left .opening-times ul li:first-of-type {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.block.single-room.details .left .address-details {
  max-width: 100%;
  width: 100%;
  word-break: break-all;
}
@media (min-width: 56.25em) {
  .block.single-room.details .left .address-details {
    max-width: 50%;
  }
}
.block.single-room.details .left .address-details p {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 2px;
}
.block.single-room.details .left .address-details p:last-of-type {
  margin-top: 25px;
}
.block.single-room.details .left .details-social {
  padding: 0;
  margin: 25px 0;
  display: flex;
  justify-content: flex-start;
}
.block.single-room.details .left .details-social li.social {
  display: block;
  max-width: 25px;
  width: 100%;
  margin: 0 10px;
}
.block.single-room.details .left .details-social li.social:first-of-type {
  margin: 0 10px 0 0;
}
.block.single-room.details .left .details-social li.social img,
.block.single-room.details .left .details-social li.social svg {
  width: 100%;
}
.block.single-room.details .right {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 56.25em) {
  .block.single-room.details .right {
    max-width: 50%;
  }
}
.block.single-room.details .right img {
  border-radius: 4px;
}
.block.rooms-list {
  padding: 0 50px 50px;
}
.block.rooms-list ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block.rooms-list ul li {
  list-style-type: none;
  max-width: 100%;
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 56.25em) {
  .block.rooms-list ul li {
    max-width: 48%;
  }
  .block.rooms-list ul li:last-of-type, .block.rooms-list ul li:nth-last-of-type(2) {
    margin-bottom: 0px;
  }
}
.block.rooms-list ul li:last-of-type {
  margin-bottom: 0px;
}
.block.rooms-list ul li .thumb-wrap {
  width: 100%;
}
.block.rooms-list ul li .thumb-wrap img {
  display: block;
  width: 100%;
  border-radius: 5px 5px 0 0;
}
.block.rooms-list ul li .content {
  background-color: #FFF;
  text-align: center;
  padding: 25px;
}
.block.rooms-list ul li .content h3 {
  font-size: 26px;
}
.block.rooms-list ul li .content .subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.block.rooms-list ul li .content .excerpt {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}
.block.rooms-list ul li .content .button-wrap {
  display: flex;
  justify-content: center;
}
.block.rooms-list ul li .content a {
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  max-width: 140px;
  width: 100%;
  height: 35px;
  padding-top: 3px;
}
.block.rooms-list ul li .content a:first-of-type {
  margin-right: 20px;
}
.block.properties-main-wrap {
  padding: 0px 50px 50px 50px;
}
@media (min-width: 46.875em) {
  .block.properties-main-wrap {
    padding: 0px 90px 90px 90px;
  }
}
.block.properties-main-wrap .properties-list {
  max-width: 100%;
  width: 100%;
  color: transparent;
  font-size: 0px;
}
.block.properties-main-wrap .properties-list h3 {
  color: #231f20;
  font-size: 24px;
  text-align: center;
}
.block.properties-main-wrap .properties-list ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block.properties-main-wrap .properties-list ul li {
  list-style-type: none;
  max-width: 100%;
  width: 100%;
  background-color: #FFF;
  margin-bottom: 25px;
}
@media (min-width: 46.875em) {
  .block.properties-main-wrap .properties-list ul li {
    max-width: 100%;
  }
}
@media (min-width: 56.25em) {
  .block.properties-main-wrap .properties-list ul li {
    max-width: 32%;
  }
}
.block.properties-main-wrap .properties-list ul li .thumb-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 200px;
}
.block.properties-main-wrap .properties-list ul li .thumb-wrap img {
  width: 100%;
  display: block;
  border-radius: 5px 5px 0 0;
}
.block.properties-main-wrap .properties-list ul li .property-details {
  padding: 30px;
}
.block.properties-main-wrap .properties-list ul li .property-details h3 {
  text-align: left;
  margin-bottom: 15px;
}
.block .offers-list {
  max-width: 100%;
  width: 100%;
  color: transparent;
  font-size: 0px;
}
@media (min-width: 46.875em) {
  .block .offers-list {
    max-width: 48%;
  }
}
@media (min-width: 56.25em) {
  .block .offers-list {
    max-width: 75%;
  }
}
@media (min-width: 46.875em) {
  .block .offers-list.wide {
    max-width: 100%;
  }
}
@media (min-width: 56.25em) {
  .block .offers-list.wide {
    max-width: 100%;
  }
}
.block .offers-list ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block .offers-list ul li {
  list-style-type: none;
  max-width: 100%;
  width: 100%;
  background-color: #FFF;
  margin-bottom: 25px;
}
@media (min-width: 46.875em) {
  .block .offers-list ul li {
    max-width: 100%;
  }
}
@media (min-width: 56.25em) {
  .block .offers-list ul li {
    max-width: 32%;
    margin-bottom: 25px;
  }
  .block .offers-list ul li:nth-child(3n) {
    margin-right: 0px;
  }
}
.block .offers-list ul li .thumb-wrap {
  width: 100%;
}
.block .offers-list ul li .thumb-wrap img {
  width: 100%;
  display: block;
  border-radius: 5px 5px 0 0;
}
.block .offers-list ul li .offer-details {
  padding: 25px;
  border-radius: 0 0 5px 5px;
}
.block .offers-list ul li .offer-details h3 {
  color: #231f20;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.block .offers-list ul li .offer-details p {
  font-size: 16px;
  color: #231f20;
  margin-bottom: 15px;
}

.flexible-content-wrap {
  padding-bottom: 40px;
}
.flexible-content-wrap .block {
  padding-bottom: 0px;
  padding-top: 0px;
  margin-bottom: 40px;
}
.flexible-content-wrap .block:last-of-type.bg-ctas {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.flexible-content-wrap-premium {
  padding-top: 144px;
  padding-bottom: 0;
}
.flexible-content-wrap-premium.prestige {
  padding-top: 0;
}
.flexible-content-wrap-premium.prestige > * {
  margin-bottom: 50px;
}
@media (min-width: 46.875em) {
  .flexible-content-wrap-premium.prestige > * {
    margin-bottom: 118px;
  }
}
.flexible-content-wrap-premium > * {
  margin-bottom: 50px;
}
.flexible-content-wrap-premium .block {
  padding-bottom: 0px;
  padding-top: 0px;
}
.flexible-content-wrap-premium .block:last-of-type.bg-ctas {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.flexible-content-wrap-premium .hero-block-wrapper + .block.book-bar, .flexible-content-wrap-premium .hero-block-wrapper + .book-nav {
  margin-top: -50px;
}
.flexible-content-wrap-premium.christmas-page-premium {
  padding-bottom: 0px;
  padding-top: 0 !important;
}
.flexible-content-wrap-premium.christmas-page-premium .block.standard-text-block {
  padding: 0px 60px;
}
@media (min-width: 46.875em) {
  .flexible-content-wrap-premium.christmas-page-premium .block.standard-text-block {
    padding: 0px 90px;
  }
}
.flexible-content-wrap-premium.christmas-page-premium .block.standard-text-block.christmas-page {
  padding: 0px;
}
@media (min-width: 46.875em) {
  .flexible-content-wrap-premium.christmas-page-premium .block.standard-text-block.christmas-page {
    padding: 0px 90px;
  }
}

.booking-bar {
  width: 100%;
  background-color: #FFF;
  padding: 40px;
  display: none;
}
.booking-bar.yes-rooms {
  display: block;
}
.booking-bar form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 46.875em) {
  .booking-bar form {
    flex-wrap: nowrap;
    text-align: left;
    justify-content: space-between;
  }
}
.booking-bar form label {
  font-weight: 600;
  max-width: 100%;
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 46.875em) {
  .booking-bar form label {
    width: auto;
    margin-bottom: 0px;
  }
}
.booking-bar form input {
  border: 0;
  border-bottom: 1px solid #6b6c65;
  background-color: transparent;
  padding-bottom: 10px;
  color: #7f7d7b;
  font-size: 14px;
  background: url("../images/calendar-icon.png") no-repeat 100% 50%;
  background-size: 12px;
  max-width: 300px;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 46.875em) {
  .booking-bar form input {
    width: auto;
    margin-bottom: 0px;
  }
}
.booking-bar form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/down-pointer.png") no-repeat 90% 50%;
  background-size: 12px;
  border-radius: 0px;
  padding: 10px 30px 10px 10px;
  font-size: 14px;
  border: 1px solid #6b6c65;
  max-width: 300px;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 46.875em) {
  .booking-bar form select {
    width: auto;
    margin-bottom: 0px;
  }
}
.booking-bar form .button {
  max-width: 300px;
  width: 100%;
  height: 35px;
  text-align: center;
  display: block;
  border-radius: 5px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 14px;
}
@media (min-width: 46.875em) {
  .booking-bar form .button {
    max-width: 140px;
  }
}

.popup-wrap {
  display: none;
}
.popup-wrap.disable-popup {
  display: none !important;
}
.popup-wrap.enable-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: RGBA(0, 0, 0, 0.4);
  padding: 0 25px;
}
.popup-wrap.enable-popup .inner {
  text-align: center;
  padding: 45px;
  max-width: 650px;
  width: 100%;
  position: relative;
}
.popup-wrap.enable-popup .inner .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.popup-wrap.enable-popup .inner .close-popup::after {
  content: "✕";
}
.popup-wrap.enable-popup .inner h3 {
  margin-bottom: 25px;
}
.popup-wrap.enable-popup .inner p {
  margin-bottom: 15px;
  font-size: 14px;
}
@media (min-width: 56.25em) {
  .popup-wrap.enable-popup .inner p {
    font-size: 16px;
  }
}
.popup-wrap.domus {
  font-family: "jaf-domus-titling-web", sans-serif;
}
.popup-wrap.heading-domus h1,
.popup-wrap.heading-domus h2,
.popup-wrap.heading-domus h3,
.popup-wrap.heading-domus h4,
.popup-wrap.heading-domus h5 {
  font-family: "jaf-domus-titling-web", sans-serif;
}
.popup-wrap.caslons {
  font-family: "caslons-egyptian", sans-serif;
}
.popup-wrap.heading-caslons h1,
.popup-wrap.heading-caslons h2,
.popup-wrap.heading-caslons h3,
.popup-wrap.heading-caslons h4,
.popup-wrap.heading-caslons h5 {
  font-family: "caslons-egyptian", sans-serif;
}
.popup-wrap.museo {
  font-family: "museo-slab", serif;
}
.popup-wrap.museo .button-wrap a {
  padding-top: 8px !important;
}
.popup-wrap.museo a.button {
  padding-top: 12px !important;
}
.popup-wrap.heading-museo h1,
.popup-wrap.heading-museo h2,
.popup-wrap.heading-museo h3,
.popup-wrap.heading-museo h4,
.popup-wrap.heading-museo h5 {
  font-family: "museo-slab", serif;
}
.popup-wrap.p-underground {
  font-family: "p22-underground", sans-serif;
}
.popup-wrap.p-underground a.button {
  padding-top: 13px !important;
}
.popup-wrap.heading-p-underground h1,
.popup-wrap.heading-p-underground h2,
.popup-wrap.heading-p-underground h3,
.popup-wrap.heading-p-underground h4,
.popup-wrap.heading-p-underground h5 {
  font-family: "p22-underground", sans-serif;
}
.popup-wrap.garamond {
  font-family: "adobe-garamond-pro", serif;
}
.popup-wrap.garamond .button-wrap a {
  padding-top: 8px !important;
}
.popup-wrap.garamond a.button {
  padding-top: 12px !important;
}
.popup-wrap.heading-garamond h1,
.popup-wrap.heading-garamond h2,
.popup-wrap.heading-garamond h3,
.popup-wrap.heading-garamond h4,
.popup-wrap.heading-garamond h5 {
  font-family: "p22-underground", sans-serif;
}
.popup-wrap.pt-sans {
  font-family: "pt-sans-narrow", sans-serif;
}
.popup-wrap.pt-sans a.button {
  padding-top: 11px !important;
}
.popup-wrap.heading-pt-sans h1,
.popup-wrap.heading-pt-sans h2,
.popup-wrap.heading-pt-sans h3,
.popup-wrap.heading-pt-sans h4,
.popup-wrap.heading-pt-sans h5 {
  font-family: "pt-sans-narrow", sans-serif;
}
.popup-wrap.minion {
  font-family: "minion-pro", serif;
}
.popup-wrap.minion a.button {
  padding-top: 11px !important;
}
.popup-wrap.heading-minion h1,
.popup-wrap.heading-minion h2,
.popup-wrap.heading-minion h3,
.popup-wrap.heading-minion h4,
.popup-wrap.heading-minion h5 {
  font-family: "minion-pro", serif;
}
.popup-wrap.clarendon {
  font-family: "clarendon-text-pro", serif;
}
.popup-wrap.clarendon a.button {
  padding-top: 11px !important;
}
.popup-wrap.heading-clarendon h1,
.popup-wrap.heading-clarendon h2,
.popup-wrap.heading-clarendon h3,
.popup-wrap.heading-clarendon h4,
.popup-wrap.heading-clarendon h5 {
  font-family: "clarendon-text-pro", serif;
}
.popup-wrap.calibri {
  font-family: "calibri", sans-serif;
}
.popup-wrap.calibri a.button {
  padding-top: 11px !important;
}
.popup-wrap.heading-calibri h1,
.popup-wrap.heading-calibri h2,
.popup-wrap.heading-calibri h3,
.popup-wrap.heading-calibri h4,
.popup-wrap.heading-calibri h5 {
  font-family: "calibri", sans-serif;
}
.popup-wrap.century-gothic {
  font-family: "century-gothic", sans-serif;
}
.popup-wrap.century-gothic a.button {
  padding-top: 11px !important;
}
.popup-wrap.heading-century-gothic h1,
.popup-wrap.heading-century-gothic h2,
.popup-wrap.heading-century-gothic h3,
.popup-wrap.heading-century-gothic h4,
.popup-wrap.heading-century-gothic h5 {
  font-family: "century-gothic", sans-serif;
}
.popup-wrap.gill-sans {
  font-family: "gill-sans-nova", sans-serif;
}
.popup-wrap.gill-sans .button-wrap a {
  padding-top: 6px !important;
}
.popup-wrap.gill-sans a.button {
  padding-top: 9px !important;
}
.popup-wrap.heading-gill-sans h1,
.popup-wrap.heading-gill-sans h2,
.popup-wrap.heading-gill-sans h3,
.popup-wrap.heading-gill-sans h4,
.popup-wrap.heading-gill-sans h5 {
  font-family: "gill-sans-nova", sans-serif;
}
.popup-wrap.baskerville {
  font-family: "baskerville-display-pt", serif;
}
.popup-wrap.baskerville .button-wrap a {
  padding-top: 9px !important;
}
.popup-wrap.baskerville a.button {
  padding-top: 11px !important;
}
.popup-wrap.gotham {
  font-family: "gotham", sans-serif;
}
.popup-wrap.gotham a.button {
  padding-top: 10px !important;
  max-width: 160px !important;
}
.popup-wrap.clerkenwell {
  font-family: "clerkenwell", sans-serif;
}
.popup-wrap.clerkenwell .button-wrap a {
  padding-top: 10px !important;
}
.popup-wrap.clerkenwell a.button {
  padding-top: 12px !important;
}
.popup-wrap.avenir {
  font-family: "avenir", sans-serif;
}
.popup-wrap.avenir .button-wrap a {
  padding-top: 8px !important;
}
.popup-wrap.avenir a.button {
  padding-top: 11px !important;
}
.popup-wrap.century-schoolbook {
  font-family: "schoolbook", serif;
}
.popup-wrap.century-schoolbook a.button {
  padding-top: 11px !important;
}
.popup-wrap.heading-baskerville h1,
.popup-wrap.heading-baskerville h2,
.popup-wrap.heading-baskerville h3,
.popup-wrap.heading-baskerville h4,
.popup-wrap.heading-baskerville h5 {
  font-family: "baskerville-display-pt", serif;
}

.offers_static_block .slick-slide {
  margin-left: 15px;
  margin-right: 15px;
}
.offers_static_block .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}
.offers_static_block button {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 20px;
  font-size: 0px;
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
}
.offers_static_block button.slick-prev {
  background-image: url("../images/prev-arrow.png");
  left: 3vw;
  filter: invert(1);
}
@media (min-width: 64.125em) {
  .offers_static_block button.slick-prev {
    left: 12vw;
  }
}
.offers_static_block button.slick-next {
  background-image: url("../images/next-arrow.png");
  right: 3vw;
  filter: invert(1);
}
@media (min-width: 64.125em) {
  .offers_static_block button.slick-next {
    right: 12vw;
  }
}

.flexible-content-wrap-premium.template-offers.prestige .standard-text-block.prestige {
  margin-bottom: 70px;
}
.flexible-content-wrap-premium.template-offers.prestige .standard-text-block.prestige p {
  margin: 0 auto;
}

#dmn-widget-inner {
  overflow-y: scroll !important;
}

.pre-foot-block {
  width: 100%;
  padding: 40px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 84.375em) {
  .pre-foot-block {
    padding: 40px 60px;
  }
}
.pre-foot-block.managed .news {
  display: block;
}
.pre-foot-block.tenanted {
  justify-content: center;
}
.pre-foot-block.tenanted .news {
  display: none;
}
.pre-foot-block.tenanted .form {
  text-align: center;
}
.pre-foot-block.tenanted .form .check-wrap .control-group {
  justify-content: center;
}
.pre-foot-block.tenanted .form button {
  margin: 0 auto;
}
.pre-foot-block .news {
  max-width: 100%;
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 56.25em) {
  .pre-foot-block .news {
    max-width: 47%;
    padding-right: 30px;
    margin-right: 30px;
    margin-bottom: 0px;
  }
}
.pre-foot-block .news h3 {
  font-size: 16px;
  margin-bottom: 20px;
}
.pre-foot-block .news p {
  font-size: 14px;
  margin-bottom: 10px;
}
.pre-foot-block .news p:last-of-type {
  margin-bottom: 0px;
}
.pre-foot-block .form {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 56.25em) {
  .pre-foot-block .form {
    max-width: 50%;
  }
}
.pre-foot-block .form h3 {
  font-size: 16px;
  margin-bottom: 20px;
}
.pre-foot-block .form form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pre-foot-block .form form.bsQgtn {
  padding: 0px !important;
}
.pre-foot-block .form form .Ndwyt .kgtZbf:first-of-type .dMHKxR {
  padding: 0px !important;
}
.pre-foot-block .form form .Ndwyt .kgtZbf:nth-child(2) {
  margin-bottom: 10px !important;
}
.pre-foot-block .form form .Ndwyt .kgtZbf:nth-child(2) .FormComponent__StyledFormComponentWrapper-e0xun6-0:first-of-type {
  padding-right: 10px !important;
}
.pre-foot-block .form form .Ndwyt .kgtZbf .FormComponent__StyledFormComponentWrapper-e0xun6-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.pre-foot-block .form form .form-row {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 46.875em) {
  .pre-foot-block .form form .form-row {
    max-width: 49%;
  }
}
.pre-foot-block .form form input {
  max-width: 100%;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #FFF;
  margin-bottom: 35px;
  padding-bottom: 10px;
  color: #7f7d7b !important;
  font-size: 14px;
}
.pre-foot-block .form form input.checkbox {
  width: auto;
  padding: 0;
  margin-bottom: 0px;
}
.pre-foot-block .form form input::placeholder {
  font-size: 14px;
}
.pre-foot-block .form form .check-wrap {
  max-width: 100%;
  width: 100%;
  color: #FFF;
  font-size: 16px;
  margin-bottom: 35px;
}
.pre-foot-block .form form .check-wrap .control-group {
  display: flex;
  justify-content: flex-start;
}
.pre-foot-block .form form .check-wrap label {
  order: 2;
}
.pre-foot-block .form form .check-wrap input {
  width: auto;
  margin: 0 15px 0 0;
  order: 1;
}
.pre-foot-block .form form button {
  max-width: 140px;
  width: 100%;
  height: 35px;
  text-align: center;
  display: block;
  border-radius: 5px;
  border: 0;
  text-transform: uppercase;
  line-height: 1;
  font-size: 14px;
}
.pre-foot-block.premium .form form .check-wrap {
  color: initial;
}
.pre-foot-block .footer-badge {
  width: 200px;
  margin: 20px auto;
}

footer.page-foot {
  padding: 35px;
  text-align: center;
}
footer.page-foot .footer-logo {
  max-width: 190px;
  margin: 0 auto 25px;
}
footer.prestige {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 35px;
}
@media (min-width: 46.875em) {
  footer.prestige {
    padding: 40px;
  }
}
footer.prestige .badges-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
footer.prestige .badges-wrapper .footer-badge {
  object-fit: contain;
  margin: 20px 5px;
  max-width: 23%;
}
@media (min-width: 46.875em) {
  footer.prestige .badges-wrapper .footer-badge {
    min-width: 100px;
    min-height: 100px;
    max-width: 120px;
    max-height: 120px;
    margin: 0 20px;
  }
}
footer.prestige .opening_hours_wrapper {
  margin-bottom: 40px;
  transition: height 0.5s;
  height: 49px;
  width: 100%;
}
@media (min-width: 46.875em) {
  footer.prestige .opening_hours_wrapper {
    width: auto;
  }
}
footer.prestige .opening_hours_wrapper:hover {
  cursor: pointer;
}
footer.prestige .opening_hours_wrapper .opening_hours_footer {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 2px;
  color: white;
  padding: 13px;
  border: 1px solid white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 46.875em) {
  footer.prestige .opening_hours_wrapper .opening_hours_footer {
    font-size: 15px;
    line-height: 15px;
    padding: 16px 47px;
  }
}
footer.prestige .opening_hours_wrapper .opening_hours_footer .x_close {
  display: none;
  border-radius: 50%;
  border: 1px solid white;
  width: 17px;
  height: 17px;
  padding: 4px;
  margin-left: 15px;
  position: relative;
  top: 1.5px;
}
footer.prestige .opening_hours_wrapper .opening-hours {
  display: none;
  color: white;
  text-align: center;
}
footer.prestige .opening_hours_wrapper .opening-hours .top-section {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.25px;
  margin-bottom: 33px;
}
@media (min-width: 46.875em) {
  footer.prestige .opening_hours_wrapper .opening-hours .top-section {
    font-size: 18px;
    line-height: 32px;
  }
}
footer.prestige .opening_hours_wrapper .opening-hours .top-section .menu-footer-title {
  font-weight: 700;
}
footer.prestige .opening_hours_wrapper .opening-hours .bottom-section {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.25px;
}
@media (min-width: 46.875em) {
  footer.prestige .opening_hours_wrapper .opening-hours .bottom-section {
    font-size: 18px;
    line-height: 32px;
  }
}
footer.prestige .opening_hours_wrapper .opening-hours .bottom-section .menu-footer-title {
  font-weight: 700;
}
footer.prestige .opening_hours_wrapper.active .opening_hours_footer {
  border-color: transparent;
}
footer.prestige .opening_hours_wrapper.active .opening_hours_footer .x_close {
  display: block;
}
footer.prestige .opening_hours_wrapper.active .opening-hours {
  display: block;
}
footer.prestige .newsletter_wrapper {
  margin-bottom: 40px;
  transition: height 0.5s;
  height: 49px;
  width: 100%;
}
@media (min-width: 46.875em) {
  footer.prestige .newsletter_wrapper {
    width: auto;
  }
}
footer.prestige .newsletter_wrapper:hover {
  cursor: pointer;
}
footer.prestige .newsletter_wrapper .newsletter_footer {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 2px;
  color: white;
  padding: 13px;
  border: 1px solid white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 46.875em) {
  footer.prestige .newsletter_wrapper .newsletter_footer {
    font-size: 15px;
    line-height: 15px;
    padding: 16px 47px;
  }
}
footer.prestige .newsletter_wrapper .newsletter_footer .x_close {
  display: none;
  border-radius: 50%;
  border: 1px solid white;
  width: 17px;
  height: 17px;
  padding: 4px;
  margin-left: 15px;
  position: relative;
  top: 1.5px;
}
footer.prestige .newsletter_wrapper .newsletter {
  display: none;
  color: white;
  text-align: center;
  max-width: 500px;
}
footer.prestige .newsletter_wrapper .newsletter .gfield_required_text {
  display: none;
}
footer.prestige .newsletter_wrapper .newsletter .gform_fields {
  grid-template-rows: repeat(3, 50px) auto;
}
@media (min-width: 40.0625em) {
  footer.prestige .newsletter_wrapper .newsletter .gform_fields {
    grid-template-rows: repeat(2, 50px) auto;
  }
}
footer.prestige .newsletter_wrapper .newsletter .gform_fields fieldset {
  grid-row: 1/span 2;
}
@media (min-width: 40.0625em) {
  footer.prestige .newsletter_wrapper .newsletter .gform_fields fieldset {
    grid-row: 1/1;
  }
}
footer.prestige .newsletter_wrapper .newsletter .gform_fields .gfield {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 25px;
}
@media (min-width: 46.875em) {
  footer.prestige .newsletter_wrapper .newsletter .gform_fields .gfield {
    font-size: 18px;
    line-height: 32px;
  }
}
footer.prestige .newsletter_wrapper .newsletter .gform_fields .gfield input {
  background-color: #363439;
  border-color: #363439;
  border-style: none;
  color: #999299;
  padding: 11px 15px;
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 25px;
}
footer.prestige .newsletter_wrapper .newsletter .gform_fields .gfield input.half {
  width: 48%;
}
footer.prestige .newsletter_wrapper .newsletter .gform_fields .gfield input.full {
  width: 100%;
}
footer.prestige .newsletter_wrapper .newsletter .gform_fields .gfield label, footer.prestige .newsletter_wrapper .newsletter .gform_fields .gfield.gfield_html {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 23px;
  color: #999299;
  margin: 0;
}
footer.prestige .newsletter_wrapper .newsletter .gform_fields .gfield label a, footer.prestige .newsletter_wrapper .newsletter .gform_fields .gfield.gfield_html a {
  color: #999299;
  text-transform: none;
}
footer.prestige .newsletter_wrapper .newsletter .gform_footer {
  justify-content: center;
}
footer.prestige .newsletter_wrapper .newsletter .gform_footer input[type=submit] {
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 2px;
  color: white;
  padding: 13px;
  border: 1px solid white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
@media (min-width: 46.875em) {
  footer.prestige .newsletter_wrapper .newsletter .gform_footer input[type=submit] {
    font-size: 15px;
    line-height: 15px;
    padding: 16px 47px;
  }
}
footer.prestige .newsletter_wrapper.active {
  height: auto;
}
footer.prestige .newsletter_wrapper.active .newsletter_footer {
  border-color: transparent;
}
footer.prestige .newsletter_wrapper.active .newsletter_footer .x_close {
  display: block;
}
footer.prestige .newsletter_wrapper.active .newsletter {
  display: block;
  margin: auto;
}
footer.prestige .footer_box {
  margin-bottom: 40px;
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.25px;
}
@media (min-width: 46.875em) {
  footer.prestige .footer_box {
    font-size: 18px;
    line-height: 32px;
  }
}
footer.prestige .footer_box a {
  color: inherit;
  text-decoration: none;
}
footer.prestige .footer_box > img {
  max-height: 200px;
  max-width: 250px;
}
@media (min-width: 46.875em) {
  footer.prestige .footer_box > img {
    max-width: 300px;
  }
}
footer.prestige .footer_logo_wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
footer.prestige .footer_logo_wrapper img {
  height: 75px;
  width: auto;
  object-fit: contain;
}
footer.prestige .footer_contacts_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer.prestige .footer_address_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer.prestige .footer_address_wrapper .address {
  text-align: center;
}
footer.prestige .footer_address_wrapper .row .footer_map_link {
  color: white;
  text-decoration: underline;
}
footer.prestige .footer_socials_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66px;
}
footer.prestige .footer_last_row_wrapper {
  text-align: center;
}
footer.prestige .footer_last_row_wrapper .legal {
  display: inline-block;
}
footer.prestige .footer_last_row_wrapper .legal:not(:last-of-type) {
  margin-right: 10px;
}

#mobile_bottom_bar {
  width: 100vw;
  height: 50px;
  display: flex;
  position: fixed;
  top: 75px;
  z-index: 2;
  border-top: 2px solid #787777;
}
@media (min-width: 87.5em) {
  #mobile_bottom_bar {
    display: none;
  }
}
#mobile_bottom_bar a {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: utile-display, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 13px;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}
#mobile_bottom_bar a:first-child {
  background-color: #1F211C;
  color: #fff;
  width: 50%;
}
#mobile_bottom_bar a:nth-child(2) {
  background-color: #fff;
  color: #1F211C;
  width: 50%;
}
#mobile_bottom_bar a:only-child {
  width: 100% !important;
}

body.book-direct-mobile footer {
  padding-bottom: 85px;
}

#prisna-translator-seo {
  display: none !important;
}

.contact-wrap .left form .gform_body .gform_fields {
  display: grid !important;
}
.contact-wrap .left form .gform_body .gform_fields .gfield_label, .contact-wrap .left form .gform_body .gform_fields .gfield_consent_label {
  display: inline-block;
}
.contact-wrap .left form .gform_body .gform_fields select {
  margin-top: 8px !important;
}
.contact-wrap .left form .gform_body .gform_fields input[type=checkbox] {
  width: fit-content;
}
.contact-wrap .left form .gform_footer .gform_button {
  background-color: var(--secondary-brand-color) !important;
  height: auto !important;
  padding: 10px;
}

.gform_confirmation_message {
  text-align: center;
}

input[placeholder=MM] {
  min-width: 66px !important;
}

header.page-head.premium a {
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  letter-spacing: 2px;
}
@media (min-width: 64.125em) {
  header.page-head.premium a.site-logo-premium {
    justify-content: center;
    align-items: center;
    display: grid;
    max-width: 100%;
    margin-bottom: 15px;
  }
  header.page-head.premium a.site-logo-premium img {
    max-width: 250px;
    width: 100%;
  }
}
@media (min-width: 84.375em) {
  header.page-head.premium a.site-logo-premium {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0px;
  }
}
header.page-head.premium a span.premium-back {
  margin-left: 10px;
}
header.page-head.premium.prestige {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  height: 75px;
  display: flex;
}
@media (min-width: 46.875em) {
  header.page-head.premium.prestige {
    border-bottom: 1px solid white;
  }
}
header.page-head.premium.prestige .header-top-nav-bar-prestige {
  max-height: 100%;
  width: 67%;
  margin: auto;
  display: block;
  align-items: center;
  justify-content: center;
}
@media (min-width: 46.875em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige {
    display: flex;
    justify-content: space-between;
    padding: 0 36px;
    width: 100vw;
  }
}
@media (min-width: 87.5em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige {
    padding: unset;
    width: 78%;
  }
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper:not(:nth-child(2)) {
  width: 33vw;
  display: flex;
  justify-content: space-between;
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left {
  padding-right: 5vw;
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .phone-mobile {
  position: absolute;
  left: 6.4vw;
  top: 22.5px;
  width: 30px;
  height: 30px;
  padding-bottom: 0;
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .phone-mobile .phone-image-white, header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .phone-mobile .phone-image-black {
  width: 30px;
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .phone-mobile .phone-image-black {
  display: none;
}
@media (min-width: 46.875em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .phone-mobile {
    display: none;
  }
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .phone {
  display: none;
}
@media (min-width: 46.875em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .phone {
    display: block;
  }
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .food, header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .rooms {
  display: none;
}
@media (min-width: 87.5em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .food, header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left .rooms {
    display: block;
  }
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center {
  text-align: center;
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center a {
  display: flex;
  justify-content: center;
  align-items: center;
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center a img {
  height: 50px;
  object-fit: contain;
}
@media (min-width: 46.875em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center a img {
    height: 60px;
  }
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center a img.dark {
  display: none;
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right > span {
  display: flex;
  width: 25vw;
  justify-content: space-evenly;
}
@media (min-width: 46.875em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right {
    justify-content: flex-end;
  }
}
@media (min-width: 87.5em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right {
    justify-content: space-between;
  }
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .room, header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .table {
  display: none;
}
@media (min-width: 87.5em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .room, header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .table {
    display: flex;
  }
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper a {
  display: block;
  font-family: utile-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 18px;
  color: white;
}
@media (min-width: 46.875em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper a {
    padding-bottom: 3px;
  }
}
header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper a.menu {
  background: url("../images/menu_mobile_logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 6.4vw;
  top: 22.5px;
  width: 38px;
  height: 30px;
  padding-bottom: 0;
}
@media (min-width: 46.875em) {
  header.page-head.premium.prestige .header-top-nav-bar-prestige .nav-links-wrapper a.menu {
    background-image: none;
    top: 32px;
    width: 40px;
    height: 9px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    min-width: 65px;
    min-height: 21px;
    position: static;
  }
}
header.page-head.premium.prestige.scrolled-nav {
  background-color: white;
}
header.page-head.premium.prestige.scrolled-nav .header-top-nav-bar-prestige .nav-links-wrapper.left .phone-image-white {
  display: none;
}
header.page-head.premium.prestige.scrolled-nav .header-top-nav-bar-prestige .nav-links-wrapper.left .phone-image-black {
  display: block;
}
header.page-head.premium.prestige.scrolled-nav .header-top-nav-bar-prestige .nav-links-wrapper.center img.light {
  display: none;
}
header.page-head.premium.prestige.scrolled-nav .header-top-nav-bar-prestige .nav-links-wrapper.center img.dark {
  display: block;
}
header.page-head.premium.prestige.scrolled-nav .header-top-nav-bar-prestige .nav-links-wrapper a {
  color: #262525;
}
header.page-head.premium.prestige.scrolled-nav .header-top-nav-bar-prestige .nav-links-wrapper a.menu {
  background-image: url("../images/menu_mobile_logo_black.png");
}
header.page-head {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 950;
}
header.page-head.scrolled-nav .butcombe-bar {
  margin: 0 auto;
}
header.page-head.scrolled-nav .header-top-nav-bar {
  margin: 0 auto;
}
header.page-head.scrolled-nav .header-main-nav-bar {
  margin: 0 auto;
}
header.page-head .butcombe-bar {
  width: 100%;
  max-width: 100%;
}
header.page-head .butcombe-bar .inner {
  padding: 15px !important;
  background-color: rgba(0, 0, 0, 0.5);
}
header.page-head .butcombe-bar a {
  font-family: "jaf-domus-titling-web", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header.page-head .butcombe-bar a svg {
  max-width: 25px;
  margin-right: 15px;
  width: 100%;
}
header.page-head > .inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 64.125em) {
  header.page-head > .inner {
    justify-content: flex-start;
  }
}
@media (min-width: 64.125em) {
  header.page-head > .inner {
    flex-wrap: nowrap;
    padding: 25px 40px;
  }
}
header.page-head .header-top-nav-bar {
  width: 100%;
  max-width: 100%;
  height: 42px;
  display: none;
}
@media (min-width: 64.125em) {
  header.page-head .header-top-nav-bar {
    display: block;
  }
}
header.page-head .header-top-nav-bar .inner {
  padding: 20px 40px !important;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 84.375em) {
  header.page-head .header-top-nav-bar .inner {
    padding: 15px 60px !important;
  }
}
header.page-head .header-main-nav-bar {
  width: 100%;
  max-width: 100%;
}
header.page-head .header-main-nav-bar .inner {
  padding: 20px 40px !important;
  margin: auto;
  justify-content: space-between;
  display: flex;
}
@media (min-width: 64.125em) {
  header.page-head .header-main-nav-bar .inner {
    display: grid;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 84.375em) {
  header.page-head .header-main-nav-bar .inner {
    padding: 15px 60px !important;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 64.125em) {
  header.page-head {
    position: absolute;
  }
  header.page-head.scrolled-nav {
    position: fixed;
  }
  header.page-head.scrolled-nav .inner {
    margin: 0 auto;
  }
}
header.page-head .site-logo {
  display: block;
  max-width: 150px;
  order: 1;
  padding: 15px 0 15px 25px;
}
@media (min-width: 46.875em) {
  header.page-head .site-logo {
    padding: 25px 0 25px 25px;
    order: 2;
  }
}
@media (min-width: 64.125em) {
  header.page-head .site-logo {
    max-width: 150px;
    padding: 0px;
    order: 1;
  }
}
header.page-head .site-logo-premium {
  display: block;
  max-width: 180px;
  padding: 0;
}
header.page-head .site-logo-premium img {
  width: 100%;
}

.table-book-wrap {
  display: none;
}
.table-book-wrap.active {
  display: block;
  max-width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  top: 0px;
  right: 0px;
  left: 0;
  z-index: 999;
  background-color: #f9f5eb;
  padding: 10px;
  text-align: center;
}
@media (min-width: 46.875em) {
  .table-book-wrap.active {
    padding: 25px;
    left: auto;
    max-width: 75vw;
    -webkit-box-shadow: -6px -5px 14px 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: -6px -5px 14px 1px rgba(0, 0, 0, 0.4);
    box-shadow: -6px -5px 14px 1px rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 56.25em) {
  .table-book-wrap.active {
    max-width: 45vw;
  }
}
@media (min-width: 64.125em) {
  .table-book-wrap.active {
    max-width: 40vw;
  }
}
@media (min-width: 87.5em) {
  .table-book-wrap.active {
    max-width: 35vw;
  }
}
.table-book-wrap.active .close-iframe {
  display: block;
  font-family: "jaf-domus-titling-web", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  color: #231f20;
  text-align: right;
  border-bottom: none;
  order: 1;
  cursor: pointer;
}
.table-book-wrap.active .close-iframe::after {
  content: "✕";
}
.table-book-wrap.active p {
  font-family: "caslons-egyptian", sans-serif;
  margin: 25px 0;
}

nav ul {
  margin: 0;
  padding: 0;
}
nav ul li {
  list-style-type: none;
}
nav ul li.close-menu {
  display: none;
}
nav.header-top-nav {
  max-width: 100%;
  width: auto;
}
nav.header-top-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav.header-top-nav ul li {
  background-position: right center;
  background-repeat: no-repeat;
}
nav.header-top-nav ul li:not(:last-of-type) {
  margin-right: 35px;
}
nav.header-top-nav ul li.tag_label {
  background-image: url("../images/tag_label.svg");
  background-size: 12px 12px;
  padding-right: 18px;
}
nav.header-top-nav ul li.photo {
  background-image: url("../images/photo.svg");
  background-size: 14px 11px;
  padding-right: 20px;
}
nav.header-top-nav ul li.gift {
  background-image: url("../images/gift.svg");
  background-size: 11px 12px;
  padding-right: 16px;
}
nav.header-top-nav ul li.marker {
  background-image: url("../images/marker.svg");
  background-size: 10px 12px;
  padding-right: 16px;
}
nav.navigation-domus {
  font-family: "jaf-domus-titling-web", sans-serif;
}
nav.navigation-caslons {
  font-family: "caslons-egyptian", sans-serif;
}
nav.navigation-museo {
  font-family: "museo-slab", serif;
}
nav.navigation-p-underground {
  font-family: "p22-underground", sans-serif;
}
nav.navigation-garamond {
  font-family: "adobe-garamond-pro", serif;
}
nav.navigation-pt-sans {
  font-family: "pt-sans-narrow", sans-serif;
}
nav.navigation-minion {
  font-family: "minion-pro", serif;
}
nav.navigation-clarendon {
  font-family: "clarendon-text-pro", serif;
}
nav.navigation-calibri {
  font-family: "calibri", sans-serif;
}
nav.navigation-century-gothic {
  font-family: "century-gothic", sans-serif;
}
nav.navigation-gill-sans {
  font-family: "gill-sans-nova", sans-serif;
}
nav.navigation-gotham {
  font-family: "gotham", sans-serif;
}
nav.navigation-baskerville {
  font-family: "baskerville-display-pt", serif;
}
nav.navigation-clerkenwell {
  font-family: "clerkenwell", sans-serif;
}
nav.navigation-avenir {
  font-family: "avenir", sans-serif;
}
nav.navigation-century-schoolbook {
  font-family: "schoolbook", serif;
}
nav.main-nav {
  order: 3;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 46.875em) {
  nav.main-nav {
    order: 1;
  }
}
@media (min-width: 64.125em) {
  nav.main-nav {
    order: 2;
    /* max-width: 730px; */
    padding: 0 20px;
    width: 100%;
  }
}
nav.main-nav .menu-btn {
  width: 30px;
  height: 25px;
  cursor: pointer;
}
@media (min-width: 64.125em) {
  nav.main-nav .menu-btn {
    display: none;
  }
}
nav.main-nav .menu-btn span {
  width: 100%;
  border-radius: 5px;
  height: 5px;
  margin-bottom: 4px;
  display: block;
}
nav.main-nav .menu-btn span:last-of-type {
  margin-bottom: 0px;
}
nav.main-nav ul {
  display: none;
}
@media (min-width: 64.125em) {
  nav.main-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
}
nav.main-nav ul li {
  text-align: center;
}
@media (min-width: 46.875em) {
  nav.main-nav ul li {
    margin-left: 25px;
  }
  nav.main-nav ul li:first-of-type {
    margin-left: 0px;
  }
}
nav.main-nav ul li.like-title a {
  font-family: "jaf-domus-titling-web", sans-serif;
}
nav.main-nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  color: #FFF;
}
nav.main-nav ul li a:hover {
  text-decoration: underline;
}
nav.main-nav ul li a.button {
  padding: 0 15px;
}
nav.main-nav ul li.close-menu {
  display: none;
}
nav.main-nav ul li.menu-item-has-children {
  position: relative;
}
nav.main-nav ul li.menu-item-has-children .dropdown,
nav.main-nav ul li.menu-item-has-children .sub-menu {
  display: none;
}
@media (min-width: 64.125em) {
  nav.main-nav ul li.menu-item-has-children {
    padding: 5px 10px;
  }
}
@media (min-width: 64.125em) {
  nav.main-nav ul li.menu-item-has-children:hover {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px 3px 0 0;
  }
}
nav.main-nav ul li.menu-item-has-children:hover .dropdown,
nav.main-nav ul li.menu-item-has-children:hover .sub-menu {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  padding-top: 10px;
  width: 200px;
}
@media (min-width: 64.125em) {
  nav.main-nav ul li.menu-item-has-children:hover .dropdown,
nav.main-nav ul li.menu-item-has-children:hover .sub-menu {
    top: 33px;
    width: 100%;
    min-width: 200px;
    box-shadow: none;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 3px 3px;
    padding: 5px 10px;
  }
}
nav.main-nav ul li.menu-item-has-children:hover .dropdown.active,
nav.main-nav ul li.menu-item-has-children:hover .sub-menu.active {
  height: auto;
  padding: 10px 0 0 0;
  background-color: transparent;
}
nav.main-nav ul li.menu-item-has-children:hover .dropdown.active li,
nav.main-nav ul li.menu-item-has-children:hover .sub-menu.active li {
  border-bottom: 0;
  padding: 0;
  margin: 0;
}
nav.main-nav ul li.menu-item-has-children:hover .dropdown.active li a,
nav.main-nav ul li.menu-item-has-children:hover .sub-menu.active li a {
  font-size: 14px;
}
@media (min-width: 64.125em) {
  nav.main-nav ul li.menu-item-has-children:hover .dropdown.active li.menu-item,
nav.main-nav ul li.menu-item-has-children:hover .sub-menu.active li.menu-item {
    padding: 5px 10px;
  }
}
nav.main-nav ul li.menu-item-has-children:hover .dropdown li,
nav.main-nav ul li.menu-item-has-children:hover .sub-menu li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}
nav.main-nav ul li.menu-item-has-children:hover .dropdown li a,
nav.main-nav ul li.menu-item-has-children:hover .sub-menu li a {
  width: 100%;
}
nav.main-nav ul.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #f9f5eb;
  width: 80%;
  height: 100vh;
  padding: 0 20px;
}
@media (min-width: 46.875em) {
  nav.main-nav ul.active {
    width: 45%;
  }
}
nav.main-nav ul.active li {
  width: 100%;
  margin-bottom: 15px;
  border-bottom: 2px solid #231f20;
  padding-bottom: 15px;
  order: 2;
}
nav.main-nav ul.active li:last-of-type {
  margin-bottom: 0px;
  border-bottom: none;
}
nav.main-nav ul.active li.close-menu {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  color: #231f20;
  text-align: right;
  border-bottom: none;
  padding-top: 10px;
  order: 1;
}
nav.main-nav ul.active li.close-menu::after {
  content: "✕";
}
nav.main-nav ul.active li.menu-item-has-children {
  padding-right: 10px;
  background-image: url("../images/menu-down-point.png");
  background-repeat: no-repeat;
  background-position: 95% 25%;
}
nav.main-nav ul.active li.menu-item-has-children.active {
  background-image: url("../images/menu-up-point.png");
  background-repeat: no-repeat;
  background-position: 95% 10px;
}
nav.main-nav ul.active li.menu-item-has-children.active .dropdown.active,
nav.main-nav ul.active li.menu-item-has-children.active .sub-menu.active {
  display: block;
  position: relative;
  height: auto;
  width: 100%;
  padding-top: 0px;
}
nav.main-nav ul.active li.menu-item-has-children.active .dropdown.active li,
nav.main-nav ul.active li.menu-item-has-children.active .sub-menu.active li {
  padding: 0;
  margin: 0;
  border-bottom: 0;
}
nav.main-nav ul.active li.menu-item-has-children.active .dropdown.active li span,
nav.main-nav ul.active li.menu-item-has-children.active .sub-menu.active li span {
  color: #231f20;
  font-size: 18px;
}
nav.main-nav ul.active li.menu-item-has-children.active .dropdown.active li a,
nav.main-nav ul.active li.menu-item-has-children.active .sub-menu.active li a {
  background-image: none;
  color: #231f20;
  font-size: 18px;
}
nav.main-nav ul.active li.menu-item-has-children .dropdown,
nav.main-nav ul.active li.menu-item-has-children .sub-menu {
  margin: 0;
  padding: 0;
  display: none;
}
nav.main-nav ul.active li a {
  color: #231f20;
  font-size: 18px;
}
nav.main-nav ul.active li:hover .dropdown,
nav.main-nav ul.active li:hover .sub-menu {
  display: none;
}
nav.header-nav {
  order: 4;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 46.875em) {
  nav.header-nav {
    max-width: 275px;
    width: 100%;
    padding-right: 25px;
  }
}
@media (min-width: 64.125em) {
  nav.header-nav {
    max-width: 320px;
    padding-right: 0px;
  }
}
nav.header-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav.header-nav ul li {
  width: 100%;
}
nav.header-nav ul li.head-book-btn {
  display: block;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 46.875em) {
  nav.header-nav ul li.head-book-btn:last-of-type {
    margin-left: 10px;
  }
}
nav.header-nav ul li.head-book-btn .button {
  max-width: 100%;
  width: 100%;
  text-align: center;
  border-radius: 0 !important;
}
@media (min-width: 46.875em) {
  nav.header-nav ul li.head-book-btn {
    max-width: 115px;
  }
}
@media (min-width: 64.125em) {
  nav.header-nav ul li.head-book-btn {
    max-width: 140px;
  }
}
nav.main-nav-premium {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav.main-nav-premium .menu-btn-premium {
  width: 23px;
  height: 19px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  /* ANIMATION */
}
@media (min-width: 64.125em) {
  nav.main-nav-premium .menu-btn-premium {
    display: none;
  }
}
nav.main-nav-premium .menu-btn-premium .menu-btn__burger {
  width: 100%;
  height: 3px;
  transition: all 0.2s ease-in-out;
}
nav.main-nav-premium .menu-btn-premium .menu-btn__burger::before,
nav.main-nav-premium .menu-btn-premium .menu-btn__burger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  transition: all 0.2s ease-in-out;
}
nav.main-nav-premium .menu-btn-premium .menu-btn__burger::before {
  transform: translateY(-8px);
}
nav.main-nav-premium .menu-btn-premium .menu-btn__burger::after {
  transform: translateY(8px);
}
nav.main-nav-premium .menu-btn-premium.open .menu-btn__burger {
  /*                    transform:translateX(-20px); */
  background: transparent;
}
nav.main-nav-premium .menu-btn-premium.open .menu-btn__burger::before {
  transform: rotate(45deg);
  /* translate(35px, -35px); */
}
nav.main-nav-premium .menu-btn-premium.open .menu-btn__burger::after {
  transform: rotate(-45deg);
  /* translate(35px, 35px); */
}
nav.main-nav-premium > ul {
  display: none;
  top: -200vh;
  background-color: transparent;
  transition: top 1s ease-in-out, background-color 5s ease-in-out;
}
@media (min-width: 64.125em) {
  nav.main-nav-premium > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
}
nav.main-nav-premium > ul li {
  text-align: center;
}
@media (min-width: 64.125em) {
  nav.main-nav-premium > ul li {
    margin-left: 20px;
  }
}
@media (min-width: 84.375em) {
  nav.main-nav-premium > ul li.head-book-btn {
    min-width: 150px;
    height: 42px;
  }
}
@media (min-width: 64.125em) {
  nav.main-nav-premium > ul li.head-book-btn:last-of-type {
    margin-left: 10px;
  }
}
nav.main-nav-premium > ul li.head-book-btn .button {
  border-width: 1px;
  border-style: solid;
  max-width: 100%;
  text-align: center;
  border-radius: 5px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 5px 10px !important;
  height: 100%;
  margin-top: 0px;
}
nav.main-nav-premium > ul li:not(.head-book-btn):not(.menu-item-has-children) a::after {
  content: "";
  width: 17px;
  height: 2px;
  position: absolute;
  left: calc(50% - 8px);
  bottom: 5px;
  opacity: 0;
  transition: opacity 250ms, bottom 250ms;
  transition-timing-function: linear;
}
nav.main-nav-premium > ul li:not(.head-book-btn):not(.menu-item-has-children) a:hover::after {
  opacity: 1;
  bottom: -6px;
}
nav.main-nav-premium > ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px !important;
  position: relative;
}
nav.main-nav-premium > ul li a.button {
  padding: 0 15px;
}
nav.main-nav-premium > ul li.menu-item-has-children {
  position: relative;
}
nav.main-nav-premium > ul li.menu-item-has-children .dropdown,
nav.main-nav-premium > ul li.menu-item-has-children .sub-menu {
  display: none;
}
nav.main-nav-premium > ul li.menu-item-has-children:hover {
  /*
  							@include respond($bp--grid-largest) {
  								 text-align: center;
  								 background-color: rgba(0, 0, 0, 0.5);
  								 border-radius: 3px 3px 0 0;
  							}
  */
}
nav.main-nav-premium > ul li.menu-item-has-children:hover .dropdown,
nav.main-nav-premium > ul li.menu-item-has-children:hover .sub-menu {
  display: block;
  position: absolute;
  left: -47px;
  top: 0px;
  padding-top: 10px;
  width: 200px;
}
@media (min-width: 64.125em) {
  nav.main-nav-premium > ul li.menu-item-has-children:hover .dropdown,
nav.main-nav-premium > ul li.menu-item-has-children:hover .sub-menu {
    top: 20px;
    width: 100%;
    min-width: 200px;
    box-shadow: none;
    text-align: left;
    border-radius: 0 0 3px 3px;
    padding: 15px 10px;
  }
}
nav.main-nav-premium > ul li.menu-item-has-children:hover .dropdown.active,
nav.main-nav-premium > ul li.menu-item-has-children:hover .sub-menu.active {
  height: auto;
  padding: 10px 0 0 0;
  background-color: transparent;
}
nav.main-nav-premium > ul li.menu-item-has-children:hover .dropdown.active li,
nav.main-nav-premium > ul li.menu-item-has-children:hover .sub-menu.active li {
  border-bottom: 0;
  padding: 0;
  margin: 0;
}
nav.main-nav-premium > ul li.menu-item-has-children:hover .dropdown.active li a,
nav.main-nav-premium > ul li.menu-item-has-children:hover .sub-menu.active li a {
  font-size: 14px;
}
@media (min-width: 64.125em) {
  nav.main-nav-premium > ul li.menu-item-has-children:hover .dropdown.active li.menu-item,
nav.main-nav-premium > ul li.menu-item-has-children:hover .sub-menu.active li.menu-item {
    padding: 5px 10px;
  }
}
nav.main-nav-premium > ul li.menu-item-has-children:hover .dropdown li,
nav.main-nav-premium > ul li.menu-item-has-children:hover .sub-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-bottom: 18px;
  width: 100%;
}
nav.main-nav-premium > ul li.menu-item-has-children:hover .dropdown li a,
nav.main-nav-premium > ul li.menu-item-has-children:hover .sub-menu li a {
  display: block;
  width: 100%;
  text-align: center;
}
nav.main-nav-premium > ul li.menu-item-has-children:hover .dropdown li a::after,
nav.main-nav-premium > ul li.menu-item-has-children:hover .sub-menu li a::after {
  content: none;
}
nav.main-nav-premium > ul.active {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 50px 20px 0;
}
nav.main-nav-premium > ul.active li {
  width: 100%;
  margin-bottom: 43px;
  /*
  &.menu-item-has-children {
      padding-right: 10px;
      background-image: url('../images/menu-down-point.png');
      background-repeat: no-repeat;
      background-position: 95% 25%;
      &.active {
          background-image: url('../images/menu-up-point.png');
          background-repeat: no-repeat;
          background-position: 95% 10px;
          .dropdown,
          .sub-menu {
              &.active {
                  display: block;
                  position: relative;
                  height: auto;
                  width: 100%;
                  padding-top: 0px;
                  li {
                      padding: 0;
                      margin: 0;
                      border-bottom: 0;
                      span {
                          color: $color--off-black;
                          font-size: 18px;
                      }
                      a {
                          background-image: none;
                          color: $color--off-black;
                          font-size: 18px;
                      }
                  }
              }
          }
      }
      .dropdown,
      .sub-menu {
          margin: 0;
          padding: 0;
          display: none;
      }
  }
   */
}
nav.main-nav-premium > ul.active li:last-of-type {
  margin-bottom: 0px;
  border-bottom: none;
}
nav.main-nav-premium > ul.active li a {
  font-size: 21px !important;
  justify-content: center;
  border-color: transparent;
}
nav.main-nav-premium > ul.active li:hover .dropdown,
nav.main-nav-premium > ul.active li:hover .sub-menu {
  display: none;
}
nav.book-nav {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 64.125em) {
  nav.book-nav {
    display: none;
  }
}
nav.book-nav ul {
  display: flex;
  align-items: center;
}
nav.book-nav ul li {
  width: 100%;
}
nav.book-nav ul li a {
  background-color: #1f211b;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 20px;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 2px;
}
@media (min-width: 64.125em) {
  nav.book-nav + .book-bar {
    margin-top: -50px;
  }
}
nav.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.footer-nav ul li {
  margin: 0 10px;
}
nav.footer-nav ul li a {
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}
nav.footer-nav ul li a:hover {
  text-decoration: underline;
}
nav.footer-nav.top {
  display: none;
}
@media (min-width: 46.875em) {
  nav.footer-nav.top {
    display: block;
    margin-bottom: 25px;
  }
}
@media (min-width: 46.875em) {
  nav.footer-nav.translate {
    margin-bottom: 25px;
  }
}
nav.footer-nav.translate .prisna-wp-translate-container {
  z-index: 1 !important;
}
nav.footer-nav.translate .prisna-translator.prisna-wp-translate-layout-bar .prisna-wp-translate-sub-container {
  background: transparent !important;
}
nav.footer-nav.bottom li {
  display: none;
}
@media (min-width: 46.875em) {
  nav.footer-nav.bottom li {
    display: block;
  }
}
nav.footer-nav.bottom li.social {
  display: block;
  max-width: 25px;
  width: 100%;
  margin: 0 10px;
}
nav.footer-nav.bottom li.social img,
nav.footer-nav.bottom li.social svg {
  width: 100%;
}
nav.footer-nav.bottom li.close-menu {
  display: none !important;
}
nav.footer-nav.bottom.shop-css {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: flex;
  transition: left 1s;
  /*
      & > * {
          width:100%;
          @include respond($bp--grid-large) {
              width:70vw;
          }
          @include respond($bp--grid-larger) {
              width:61vw;
          }
          @include respond($bp--grid-largest) {
              width:56vw;
          }
          @include respond($bp--grid-largest-1) {
              width:52vw;
          }
          @include respond($bp--grid-largest-2) {
              width:50vw;
          }
      }
   */
}
.menu-overlay.active {
  left: 0;
}
.menu-overlay.active .left {
  left: 0;
}
.menu-overlay .left {
  position: relative;
  transition: left 1s;
  left: 100vw;
  z-index: 1;
  display: none;
}
@media (min-width: 46.875em) {
  .menu-overlay .left {
    display: block;
    width: 30vw;
  }
}
@media (min-width: 56.25em) {
  .menu-overlay .left {
    width: 39vw;
  }
}
@media (min-width: 64.125em) {
  .menu-overlay .left {
    width: 44vw;
  }
}
@media (min-width: 68.75em) {
  .menu-overlay .left {
    width: 48vw;
  }
}
@media (min-width: 75em) {
  .menu-overlay .left {
    width: 50vw;
  }
}
.menu-overlay .left img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.menu-overlay .right {
  z-index: 2;
  overflow-y: scroll;
  width: 100vw;
}
@media (min-width: 46.875em) {
  .menu-overlay .right {
    position: static;
    width: 70vw;
    left: 30vw;
  }
}
@media (min-width: 56.25em) {
  .menu-overlay .right {
    left: 39vw;
    width: 61vw;
  }
}
@media (min-width: 64.125em) {
  .menu-overlay .right {
    left: 44vw;
    width: 56vw;
  }
}
@media (min-width: 68.75em) {
  .menu-overlay .right {
    left: 48vw;
    width: 52vw;
  }
}
@media (min-width: 75em) {
  .menu-overlay .right {
    position: static;
    left: unset;
    width: 50vw;
  }
}
.menu-overlay .right nav.main-nav-prestige {
  background-color: #f8f7f5;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  min-height: max(750px, 100vh);
  position: relative;
  padding: 0px 17px;
}
@media (min-width: 34.375em) {
  .menu-overlay .right nav.main-nav-prestige {
    padding: 52px 17px;
  }
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige {
    display: block;
    padding: 50px;
  }
}
@media (min-width: 56.25em) {
  .menu-overlay .right nav.main-nav-prestige {
    padding: 60px;
  }
}
@media (min-width: 64.125em) {
  .menu-overlay .right nav.main-nav-prestige {
    padding: 72px;
  }
}
.menu-overlay .right nav.main-nav-prestige > ul {
  display: block;
  width: 100%;
  gap: 15px;
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 81.25em) {
  .menu-overlay .right nav.main-nav-prestige > ul {
    gap: 30px;
  }
}
.menu-overlay .right nav.main-nav-prestige > ul li {
  text-align: center;
}
@media (min-width: 96.875em) {
  .menu-overlay .right nav.main-nav-prestige > ul li:nth-child(2n) a {
    text-align: left;
  }
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige > ul li {
    min-width: unset;
    width: calc(50% - 15px);
  }
}
.menu-overlay .right nav.main-nav-prestige > ul li a {
  display: block;
  text-decoration: none;
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 37px;
  text-align: center;
  text-transform: uppercase;
  color: #3e3145;
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige > ul li a {
    font-size: 18px;
    text-align: left;
  }
}
@media (min-width: 56.25em) {
  .menu-overlay .right nav.main-nav-prestige > ul li a {
    font-size: 20px;
  }
}
@media (min-width: 64.125em) {
  .menu-overlay .right nav.main-nav-prestige > ul li a {
    font-size: 22px;
  }
}
@media (min-width: 75em) {
  .menu-overlay .right nav.main-nav-prestige > ul li a {
    font-size: 24px;
  }
}
.menu-overlay .right nav.main-nav-prestige .menu-footer {
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.25px;
  line-height: 25px;
  text-align: center;
  display: flex;
  width: calc(100% - 34px);
  /* 100% - padding on x axis of the parent */
  flex-direction: column;
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer {
    flex-direction: row;
    justify-content: space-between;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    text-align: left;
    position: absolute;
    bottom: 72px;
    width: calc(100% - 100px);
    /* 100% - padding on x axis of the parent */
  }
}
@media (min-width: 56.25em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer {
    width: calc(100% - 120px);
    /* 100% - padding on x axis of the parent */
  }
}
@media (min-width: 64.125em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer {
    width: calc(100% - 142px);
    /* 100% - padding on x axis of the parent */
  }
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer > * {
    width: calc(50% - 15px);
  }
}
.menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-left {
  margin-top: 28px;
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-left {
    margin-top: unset;
  }
}
.menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-right {
  margin-top: 28px;
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-right {
    margin-top: unset;
  }
}
.menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-title {
  font-weight: 700;
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 12px;
  }
}
@media (min-width: 75em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 13px;
  }
}
@media (min-width: 81.25em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 14px;
  }
}
@media (min-width: 87.5em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 16px;
  }
}
@media (min-width: 96.875em) {
  .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .right nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 18px;
  }
}
.menu-overlay .right nav.main-nav-prestige .phone-menu-link {
  display: flex;
  margin-top: 28px;
  text-decoration: none;
  color: black;
  justify-content: center;
  align-items: center;
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige .phone-menu-link {
    display: none;
  }
}
.menu-overlay .right nav.main-nav-prestige .phone-menu-link .phone {
  width: 29px;
  height: 29px;
}
.menu-overlay .right nav.main-nav-prestige .phone-menu-link .phone-wrapper {
  padding-left: 18px;
  font-family: utile-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.25px;
  line-height: 28px;
  text-align: center;
}

.menu-btn-close {
  width: 28px;
  height: 28px;
  background-size: contain;
  align-items: center;
  background-image: url("../images/menu_close.svg");
  position: absolute;
  top: 19px;
  right: 19px;
  opacity: 0;
  z-index: -1;
  transition: opacity 2s;
  cursor: default;
}
@media (min-width: 96.875em) {
  .menu-btn-close {
    width: 56px;
    height: 56px;
    top: 38px;
    right: 38px;
  }
}
.menu-btn-close:hover {
  cursor: default;
}
.menu-btn-close.active {
  cursor: pointer;
  opacity: 1;
  z-index: 5;
}
.menu-btn-close.active:hover {
  cursor: pointer;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
}

h1.home-banner {
  font-size: 36px;
  line-height: 43px;
  margin-bottom: 25px;
  width: 100%;
  text-align: center;
}
@media (min-width: 46.875em) {
  h1.home-banner {
    font-size: 68px;
    line-height: 63px;
  }
}

a.button {
  max-width: 140px;
  width: 100%;
  height: 35px;
  text-align: center;
  display: block !important;
  border-radius: 5px !important;
  text-transform: uppercase;
  line-height: 1 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  padding-top: 8px !important;
}
a.button.centered {
  margin: 0 auto;
}
a:visited {
  color: inherit;
}

.premium a.button {
  max-width: 160px;
  width: 100%;
  height: 35px;
  text-align: center;
  border-radius: 2px !important;
  text-transform: uppercase;
  line-height: 1 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  transition: color 0.5s, background-color 0.5s;
}

.standard-text-block.no-bottom-padding {
  padding-bottom: 0px !important;
}
.standard-text-block h2 {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media (min-width: 46.875em) {
  .standard-text-block h2 {
    font-size: 33px;
    line-height: 36px;
  }
}
.standard-text-block h1 {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media (min-width: 46.875em) {
  .standard-text-block h1 {
    font-size: 33px;
    line-height: 36px;
  }
}
.standard-text-block h3 {
  margin-bottom: 20px;
}
.standard-text-block a {
  color: inherit;
  text-decoration: underline;
}
.standard-text-block a.wp-block-button__link {
  color: #FFF;
  text-decoration: none;
}
.standard-text-block p {
  font-size: 16px;
  line-height: 26px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto 15px;
  text-align: center;
  overflow: hidden;
}
.standard-text-block p strong {
  letter-spacing: 2px;
}
.standard-text-block p:last-of-type {
  margin-bottom: 0px;
}
.standard-text-block ul, .standard-text-block ol {
  padding: 0 0 0 20px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto 15px;
}
.standard-text-block ul li, .standard-text-block ol li {
  text-align: left;
  font-size: 16px;
}
.standard-text-block blockquote p {
  font-style: italic;
  font-size: 18px;
}
.standard-text-block figure.wp-block-image {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.standard-text-block figure.wp-block-image img {
  width: 100%;
}
.standard-text-block figure.wp-block-image figcaption {
  text-align: left;
}
.standard-text-block.home p {
  text-align: center;
}

.premium .standard-text-block .heading {
  margin-bottom: 30px;
}
@media (min-width: 46.875em) {
  .premium .standard-text-block .heading {
    max-width: 100%;
  }
}
@media (min-width: 56.25em) {
  .premium .standard-text-block .heading {
    max-width: 50%;
  }
}
.premium .standard-text-block p {
  font-size: 16px;
  line-height: 26px;
  width: 100%;
  max-width: 1362px;
  margin: 0 auto 15px;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 46.875em) {
  .premium .standard-text-block p {
    font-size: 17px;
  }
}
@media (min-width: 56.25em) {
  .premium .standard-text-block p {
    width: 60%;
  }
}

.home .hero-wrap {
  position: relative;
  padding-top: 0px;
}
.home .hero-wrap .hero {
  width: 100%;
  height: 75vh;
}
.home .hero-wrap .hero .slick-list {
  height: 75vh;
}
.home .hero-wrap .hero .slick-list .slick-track {
  height: 75vh;
}
.home .hero-wrap .hero .slick-list .slick-track .slick-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.home .hero-wrap .hero .slick-list .slick-track .slick-slide .hero-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: RGBA(38, 36, 32, 0.3);
  color: #FFF;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 0 65px;
}
.home .hero-wrap .hero button {
  position: absolute;
  top: 49%;
  width: 15px;
  height: 20px;
  font-size: 0px;
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
  display: none !important;
}
@media (min-width: 46.875em) {
  .home .hero-wrap .hero button {
    display: block !important;
  }
}
.home .hero-wrap .hero button.slick-prev {
  background-image: url("../images/prev-arrow.png");
  left: 60px;
}
@media (min-width: 56.25em) {
  .home .hero-wrap .hero button.slick-prev {
    left: 75px;
  }
}
.home .hero-wrap .hero button.slick-next {
  background-image: url("../images/next-arrow.png");
  right: 60px;
}
@media (min-width: 56.25em) {
  .home .hero-wrap .hero button.slick-next {
    right: 75px;
  }
}

.hero-wrap {
  position: relative;
  padding: 93px 0 0 0;
}
@media (min-width: 56.25em) {
  .hero-wrap {
    padding: 155px 0 0 0;
  }
}
.hero-wrap .hero {
  width: 100%;
  height: 40vh;
}
.hero-wrap .hero .slick-list {
  height: 40vh;
}
.hero-wrap .hero .slick-list .slick-track {
  height: 40vh;
}
.hero-wrap .hero .slick-list .slick-track .slick-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.hero-wrap .hero .slick-list .slick-track .slick-slide .hero-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: RGBA(38, 36, 32, 0.3);
  color: #FFF;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 40px 50px 0;
}
@media (min-width: 46.875em) {
  .hero-wrap .hero .slick-list .slick-track .slick-slide .hero-inner {
    padding: 0 65px;
  }
}
.hero-wrap .hero button {
  position: absolute;
  top: 49%;
  width: 15px;
  height: 20px;
  font-size: 0px;
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
  display: none !important;
}
@media (min-width: 46.875em) {
  .hero-wrap .hero button {
    display: block !important;
  }
}
.hero-wrap .hero button.slick-prev {
  background-image: url("../images/prev-arrow.png");
  left: 60px;
}
@media (min-width: 56.25em) {
  .hero-wrap .hero button.slick-prev {
    left: 75px;
  }
}
.hero-wrap .hero button.slick-next {
  background-image: url("../images/next-arrow.png");
  right: 60px;
}
@media (min-width: 56.25em) {
  .hero-wrap .hero button.slick-next {
    right: 75px;
  }
}
.hero-wrap .hero-button {
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  margin: 0 auto;
  left: 50%;
  background-color: #c8a044;
  z-index: 800;
  padding: 15px;
  font-size: 20px;
  color: #FFF;
  width: auto;
  border-radius: 5px;
}
.hero-wrap .hero-button a {
  color: #FFF;
  text-decoration: none;
}
.hero-wrap .hero-button h3 {
  margin-top: -8px;
}

.hero-social {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 900;
  width: 55px;
  height: 100%;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.hero-social .social img {
  width: 100%;
}

.single-wm_pubhotel .butcombe-badge,
.woocommerce-cart .butcombe-badge,
.woocommerce-checkout .butcombe-badge {
  display: none;
}

.butcombe-badge {
  position: absolute;
  z-index: 910;
  bottom: -40px;
  left: 0px;
  text-align: center;
  width: 100%;
}
@media (min-width: 46.875em) {
  .butcombe-badge {
    bottom: -60px;
  }
}
.butcombe-badge img {
  width: 100%;
  max-width: 75px;
}
@media (min-width: 46.875em) {
  .butcombe-badge img {
    max-width: 120px;
  }
}

.hero-wrap .hero-book,
.video-container-hero .hero-book {
  margin-top: 20px;
  background-color: #c8a044;
  padding: 5px;
  font-size: 14px;
  color: #FFF;
  display: block;
  cursor: pointer;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  padding: 10px;
}
@media (min-width: 64.125em) {
  .hero-wrap .hero-book,
.video-container-hero .hero-book {
    font-size: 16px;
    padding: 15px;
  }
}
.hero-wrap .hero-book a,
.video-container-hero .hero-book a {
  text-decoration: none;
}
.hero-wrap .hero-book a p,
.hero-wrap .hero-book a h4,
.video-container-hero .hero-book a p,
.video-container-hero .hero-book a h4 {
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
}
.hero-wrap .hero-book h3,
.video-container-hero .hero-book h3 {
  margin-bottom: 10px;
}

.hero-popup h4 {
  margin: 0;
  font-family: inherit;
  font-weight: 400;
  font-size: 30px;
  flex-basis: 45%;
}
@media (min-width: 28.125em) {
  .hero-popup h4 {
    font-size: 38px;
  }
}
@media (min-width: 56.25em) {
  .hero-popup h4 {
    font-size: 42px;
  }
}
.hero-popup img {
  max-width: 60px;
  width: 100%;
  display: inline;
}
@media (min-width: 56.25em) {
  .hero-popup img {
    max-width: 80px;
  }
}
.hero-popup p {
  margin: 0;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  flex-basis: 48%;
}
.hero-popup a {
  text-decoration: none;
}
.hero-popup a p,
.hero-popup a h4 {
  color: #231f20;
  text-decoration: none;
}
.hero-popup a.button {
  line-height: 1.4 !important;
  max-width: fit-content;
  padding: 10px 15px;
  padding: 10px;
  background-color: #c8a044;
  color: #FFF;
  margin: 10px auto;
}

.hero-popup {
  display: none;
}
.hero-popup.active {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15vh 0 0 0;
  z-index: 999;
  max-width: 100%;
  overflow: auto;
}
.hero-popup.active .inner {
  text-align: center;
  background-color: #f9f5eb;
  border-radius: 5px;
  color: #231f20;
  width: 100%;
  max-width: 300px;
  overflow: auto;
  margin: 0 auto;
  height: auto;
  padding: 20px;
  position: relative;
}
@media (min-width: 28.125em) {
  .hero-popup.active .inner {
    max-width: 400px;
  }
}
@media (min-width: 46.875em) {
  .hero-popup.active .inner {
    max-width: 600px;
  }
}
.hero-popup.active .inner p {
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
}
.hero-popup.active .inner p.subtitle {
  font-family: inherit;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 18px;
}
.hero-popup.active .inner img {
  margin: 20px 0;
}
.hero-popup.active .inner img:first-of-type {
  margin: 0 0 20px;
}
.hero-popup.active .inner .form-close {
  position: absolute;
  top: 10px;
  right: 10px;
  flex-basis: 100%;
  cursor: pointer;
}
.hero-popup.active .inner .form-close::after {
  content: "˟";
  color: #231f20;
  font-size: 50px;
}

.domus {
  font-family: "jaf-domus-titling-web", sans-serif;
}

.caslons {
  font-family: "caslons-egyptian", sans-serif;
}

.baskerville {
  font-family: "baskerville-display-pt", serif;
}

.gill-sans {
  font-family: "gill-sans-nova", sans-serif;
}

.century-gothic {
  font-family: "century-gothic", sans-serif;
}

.calibri {
  font-family: "calibri", sans-serif;
}

.clarendon {
  font-family: "clarendon-text-pro", serif;
}

.minion {
  font-family: "minion-pro", serif;
}

.pt-sans {
  font-family: "pt-sans-narrow", sans-serif;
}

.garamond {
  font-family: "adobe-garamond-pro", serif;
}

.p-underground {
  font-family: "p22-underground", sans-serif;
}

.museo {
  font-family: "museo-slab", serif;
}

.avenir {
  font-family: "avenir", sans-serif;
}

.century-school {
  font-family: "schoolbook", serif;
}

.clerkenwell {
  font-family: "clerkenwell", sans-serif;
}

.gotham {
  font-family: "gotham", sans-serif;
}

/* 8 */
/*  ==========================================================================
    Generic:Widths
    ========================================================================== */
/*
    Sizes in human readable format. These are used in conjunction with other
    objects and abstractions, most commonly the grid system.

    We have a mixin to generate our widths and their breakpoint-specific
    variations.
*/
/*
    Whole
    -----
*/
.one-whole {
  width: 100%;
}

/*
    Halves
    ------
*/
.one-half {
  width: 50%;
}

/*
    Thirds
    ------
*/
.one-third {
  width: 33.3333333%;
}

.two-thirds {
  width: 66.6666666%;
}

/*
    Quarters
    --------
*/
.one-quarter {
  width: 25%;
}

.two-quarters {
  width: 50%;
}

.three-quarters {
  width: 75%;
}

/*
    Fifths
    ------
*/
.one-fifth {
  width: 20%;
}

.two-fifths {
  width: 40%;
}

.three-fifths {
  width: 60%;
}

.four-fifths {
  width: 80%;
}

/*
    Sixths
    ------
*/
.one-sixth {
  width: 16.6666666%;
}

.two-sixths {
  width: 33.3333333%;
}

.three-sixths {
  width: 50%;
}

.four-sixths {
  width: 66.6666666%;
}

.five-sixths {
  width: 83.3333333%;
}

/*
    Eighths
    -------
*/
.one-eighth {
  width: 12.5%;
}

.two-eighths {
  width: 25%;
}

.three-eighths {
  width: 37.5%;
}

.four-eighths {
  width: 50%;
}

.five-eighths {
  width: 62.5%;
}

.six-eighths {
  width: 75%;
}

.seven-eighths {
  width: 87.5%;
}

/*
    Ninths
    ------
*/
.one-ninth {
  width: 11.1111111%;
}

.two-ninths {
  width: 22.2222222%;
}

.four-ninths {
  width: 44.4444444%;
}

.five-ninths {
  width: 55.5555555%;
}

.seven-ninths {
  width: 77.7777777%;
}

.eight-ninths {
  width: 88.8888888%;
}

/*
    Tenths
    ------
*/
.one-tenth, .w-10 {
  width: 10%;
}

.two-tenths, .w-20 {
  width: 20%;
}

.three-tenths, .w-30 {
  width: 30%;
}

.four-tenths, .w-40 {
  width: 40%;
}

.five-tenths, .w-50 {
  width: 50%;
}

.six-tenths, .w-60 {
  width: 60%;
}

.seven-tenths, .w-70 {
  width: 70%;
}

.eight-tenths, .w-80 {
  width: 80%;
}

.nine-tenths, .w-90 {
  width: 90%;
}

.ten-tenths, .w-100 {
  width: 100%;
}

/*
    Twelfths
    --------
*/
.one-twelfth {
  width: 8.3333333%;
}

.two-twelfths {
  width: 16.6666666%;
}

.three-twelfths {
  width: 25%;
}

.four-twelfths {
  width: 33.3333333%;
}

.five-twelfths {
  width: 41.6666666%;
}

.six-twelfths {
  width: 50%;
}

.seven-twelfths {
  width: 58.3333333%;
}

.eight-twelfths {
  width: 66.6666666%;
}

.nine-twelfths {
  width: 75%;
}

.ten-twelfths {
  width: 83.3333333%;
}

.eleven-twelfths {
  width: 91.6666666%;
}

/*
    Twentieth
    --------
*/
.one-twentieth {
  width: 5%;
}

.two-twentieths {
  width: 10%;
}

.three-twentieths {
  width: 15%;
}

.four-twentieths {
  width: 20%;
}

.five-twentieths {
  width: 25%;
}

.six-twentieths {
  width: 30%;
}

.seven-twentieths {
  width: 35%;
}

.eight-twentieths {
  width: 40%;
}

.nine-twentieths {
  width: 45%;
}

.ten-twentieths {
  width: 50%;
}

.eleven-twentieths {
  width: 55%;
}

.twelve-twentieths {
  width: 60%;
}

.thirteen-twentieths {
  width: 65%;
}

/*
Create more grid sizes below:-

@include respond($bp--grid-small) {
    @include grid-setup("small-");
}
*/
@media (min-width: 28.125em) {
  /*
      Whole
      -----
  */
  .small-one-whole {
    width: 100%;
  }

  /*
      Halves
      ------
  */
  .small-one-half {
    width: 50%;
  }

  /*
      Thirds
      ------
  */
  .small-one-third {
    width: 33.3333333%;
  }

  .small-two-thirds {
    width: 66.6666666%;
  }

  /*
      Quarters
      --------
  */
  .small-one-quarter {
    width: 25%;
  }

  .small-two-quarters {
    width: 50%;
  }

  .small-three-quarters {
    width: 75%;
  }

  /*
      Fifths
      ------
  */
  .small-one-fifth {
    width: 20%;
  }

  .small-two-fifths {
    width: 40%;
  }

  .small-three-fifths {
    width: 60%;
  }

  .small-four-fifths {
    width: 80%;
  }

  /*
      Sixths
      ------
  */
  .small-one-sixth {
    width: 16.6666666%;
  }

  .small-two-sixths {
    width: 33.3333333%;
  }

  .small-three-sixths {
    width: 50%;
  }

  .small-four-sixths {
    width: 66.6666666%;
  }

  .small-five-sixths {
    width: 83.3333333%;
  }

  /*
      Eighths
      -------
  */
  .small-one-eighth {
    width: 12.5%;
  }

  .small-two-eighths {
    width: 25%;
  }

  .small-three-eighths {
    width: 37.5%;
  }

  .small-four-eighths {
    width: 50%;
  }

  .small-five-eighths {
    width: 62.5%;
  }

  .small-six-eighths {
    width: 75%;
  }

  .small-seven-eighths {
    width: 87.5%;
  }

  /*
      Ninths
      ------
  */
  .small-one-ninth {
    width: 11.1111111%;
  }

  .small-two-ninths {
    width: 22.2222222%;
  }

  .small-four-ninths {
    width: 44.4444444%;
  }

  .small-five-ninths {
    width: 55.5555555%;
  }

  .small-seven-ninths {
    width: 77.7777777%;
  }

  .small-eight-ninths {
    width: 88.8888888%;
  }

  /*
      Tenths
      ------
  */
  .small-one-tenth, .small-w-10 {
    width: 10%;
  }

  .small-two-tenths, .small-w-20 {
    width: 20%;
  }

  .small-three-tenths, .small-w-30 {
    width: 30%;
  }

  .small-four-tenths, .small-w-40 {
    width: 40%;
  }

  .small-five-tenths, .small-w-50 {
    width: 50%;
  }

  .small-six-tenths, .small-w-60 {
    width: 60%;
  }

  .small-seven-tenths, .small-w-70 {
    width: 70%;
  }

  .small-eight-tenths, .small-w-80 {
    width: 80%;
  }

  .small-nine-tenths, .small-w-90 {
    width: 90%;
  }

  .small-ten-tenths, .small-w-100 {
    width: 100%;
  }

  /*
      Twelfths
      --------
  */
  .small-one-twelfth {
    width: 8.3333333%;
  }

  .small-two-twelfths {
    width: 16.6666666%;
  }

  .small-three-twelfths {
    width: 25%;
  }

  .small-four-twelfths {
    width: 33.3333333%;
  }

  .small-five-twelfths {
    width: 41.6666666%;
  }

  .small-six-twelfths {
    width: 50%;
  }

  .small-seven-twelfths {
    width: 58.3333333%;
  }

  .small-eight-twelfths {
    width: 66.6666666%;
  }

  .small-nine-twelfths {
    width: 75%;
  }

  .small-ten-twelfths {
    width: 83.3333333%;
  }

  .small-eleven-twelfths {
    width: 91.6666666%;
  }

  /*
      Twentieth
      --------
  */
  .small-one-twentieth {
    width: 5%;
  }

  .small-two-twentieths {
    width: 10%;
  }

  .small-three-twentieths {
    width: 15%;
  }

  .small-four-twentieths {
    width: 20%;
  }

  .small-five-twentieths {
    width: 25%;
  }

  .small-six-twentieths {
    width: 30%;
  }

  .small-seven-twentieths {
    width: 35%;
  }

  .small-eight-twentieths {
    width: 40%;
  }

  .small-nine-twentieths {
    width: 45%;
  }

  .small-ten-twentieths {
    width: 50%;
  }

  .small-eleven-twentieths {
    width: 55%;
  }

  .small-twelve-twentieths {
    width: 60%;
  }

  .small-thirteen-twentieths {
    width: 65%;
  }
}
@media (min-width: 34.375em) {
  /*
      Whole
      -----
  */
  .medium-one-whole {
    width: 100%;
  }

  /*
      Halves
      ------
  */
  .medium-one-half {
    width: 50%;
  }

  /*
      Thirds
      ------
  */
  .medium-one-third {
    width: 33.3333333%;
  }

  .medium-two-thirds {
    width: 66.6666666%;
  }

  /*
      Quarters
      --------
  */
  .medium-one-quarter {
    width: 25%;
  }

  .medium-two-quarters {
    width: 50%;
  }

  .medium-three-quarters {
    width: 75%;
  }

  /*
      Fifths
      ------
  */
  .medium-one-fifth {
    width: 20%;
  }

  .medium-two-fifths {
    width: 40%;
  }

  .medium-three-fifths {
    width: 60%;
  }

  .medium-four-fifths {
    width: 80%;
  }

  /*
      Sixths
      ------
  */
  .medium-one-sixth {
    width: 16.6666666%;
  }

  .medium-two-sixths {
    width: 33.3333333%;
  }

  .medium-three-sixths {
    width: 50%;
  }

  .medium-four-sixths {
    width: 66.6666666%;
  }

  .medium-five-sixths {
    width: 83.3333333%;
  }

  /*
      Eighths
      -------
  */
  .medium-one-eighth {
    width: 12.5%;
  }

  .medium-two-eighths {
    width: 25%;
  }

  .medium-three-eighths {
    width: 37.5%;
  }

  .medium-four-eighths {
    width: 50%;
  }

  .medium-five-eighths {
    width: 62.5%;
  }

  .medium-six-eighths {
    width: 75%;
  }

  .medium-seven-eighths {
    width: 87.5%;
  }

  /*
      Ninths
      ------
  */
  .medium-one-ninth {
    width: 11.1111111%;
  }

  .medium-two-ninths {
    width: 22.2222222%;
  }

  .medium-four-ninths {
    width: 44.4444444%;
  }

  .medium-five-ninths {
    width: 55.5555555%;
  }

  .medium-seven-ninths {
    width: 77.7777777%;
  }

  .medium-eight-ninths {
    width: 88.8888888%;
  }

  /*
      Tenths
      ------
  */
  .medium-one-tenth, .medium-w-10 {
    width: 10%;
  }

  .medium-two-tenths, .medium-w-20 {
    width: 20%;
  }

  .medium-three-tenths, .medium-w-30 {
    width: 30%;
  }

  .medium-four-tenths, .medium-w-40 {
    width: 40%;
  }

  .medium-five-tenths, .medium-w-50 {
    width: 50%;
  }

  .medium-six-tenths, .medium-w-60 {
    width: 60%;
  }

  .medium-seven-tenths, .medium-w-70 {
    width: 70%;
  }

  .medium-eight-tenths, .medium-w-80 {
    width: 80%;
  }

  .medium-nine-tenths, .medium-w-90 {
    width: 90%;
  }

  .medium-ten-tenths, .medium-w-100 {
    width: 100%;
  }

  /*
      Twelfths
      --------
  */
  .medium-one-twelfth {
    width: 8.3333333%;
  }

  .medium-two-twelfths {
    width: 16.6666666%;
  }

  .medium-three-twelfths {
    width: 25%;
  }

  .medium-four-twelfths {
    width: 33.3333333%;
  }

  .medium-five-twelfths {
    width: 41.6666666%;
  }

  .medium-six-twelfths {
    width: 50%;
  }

  .medium-seven-twelfths {
    width: 58.3333333%;
  }

  .medium-eight-twelfths {
    width: 66.6666666%;
  }

  .medium-nine-twelfths {
    width: 75%;
  }

  .medium-ten-twelfths {
    width: 83.3333333%;
  }

  .medium-eleven-twelfths {
    width: 91.6666666%;
  }

  /*
      Twentieth
      --------
  */
  .medium-one-twentieth {
    width: 5%;
  }

  .medium-two-twentieths {
    width: 10%;
  }

  .medium-three-twentieths {
    width: 15%;
  }

  .medium-four-twentieths {
    width: 20%;
  }

  .medium-five-twentieths {
    width: 25%;
  }

  .medium-six-twentieths {
    width: 30%;
  }

  .medium-seven-twentieths {
    width: 35%;
  }

  .medium-eight-twentieths {
    width: 40%;
  }

  .medium-nine-twentieths {
    width: 45%;
  }

  .medium-ten-twentieths {
    width: 50%;
  }

  .medium-eleven-twentieths {
    width: 55%;
  }

  .medium-twelve-twentieths {
    width: 60%;
  }

  .medium-thirteen-twentieths {
    width: 65%;
  }
}
@media (min-width: 46.875em) {
  /*
      Whole
      -----
  */
  .large-one-whole {
    width: 100%;
  }

  /*
      Halves
      ------
  */
  .large-one-half {
    width: 50%;
  }

  /*
      Thirds
      ------
  */
  .large-one-third {
    width: 33.3333333%;
  }

  .large-two-thirds {
    width: 66.6666666%;
  }

  /*
      Quarters
      --------
  */
  .large-one-quarter {
    width: 25%;
  }

  .large-two-quarters {
    width: 50%;
  }

  .large-three-quarters {
    width: 75%;
  }

  /*
      Fifths
      ------
  */
  .large-one-fifth {
    width: 20%;
  }

  .large-two-fifths {
    width: 40%;
  }

  .large-three-fifths {
    width: 60%;
  }

  .large-four-fifths {
    width: 80%;
  }

  /*
      Sixths
      ------
  */
  .large-one-sixth {
    width: 16.6666666%;
  }

  .large-two-sixths {
    width: 33.3333333%;
  }

  .large-three-sixths {
    width: 50%;
  }

  .large-four-sixths {
    width: 66.6666666%;
  }

  .large-five-sixths {
    width: 83.3333333%;
  }

  /*
      Eighths
      -------
  */
  .large-one-eighth {
    width: 12.5%;
  }

  .large-two-eighths {
    width: 25%;
  }

  .large-three-eighths {
    width: 37.5%;
  }

  .large-four-eighths {
    width: 50%;
  }

  .large-five-eighths {
    width: 62.5%;
  }

  .large-six-eighths {
    width: 75%;
  }

  .large-seven-eighths {
    width: 87.5%;
  }

  /*
      Ninths
      ------
  */
  .large-one-ninth {
    width: 11.1111111%;
  }

  .large-two-ninths {
    width: 22.2222222%;
  }

  .large-four-ninths {
    width: 44.4444444%;
  }

  .large-five-ninths {
    width: 55.5555555%;
  }

  .large-seven-ninths {
    width: 77.7777777%;
  }

  .large-eight-ninths {
    width: 88.8888888%;
  }

  /*
      Tenths
      ------
  */
  .large-one-tenth, .large-w-10 {
    width: 10%;
  }

  .large-two-tenths, .large-w-20 {
    width: 20%;
  }

  .large-three-tenths, .large-w-30 {
    width: 30%;
  }

  .large-four-tenths, .large-w-40 {
    width: 40%;
  }

  .large-five-tenths, .large-w-50 {
    width: 50%;
  }

  .large-six-tenths, .large-w-60 {
    width: 60%;
  }

  .large-seven-tenths, .large-w-70 {
    width: 70%;
  }

  .large-eight-tenths, .large-w-80 {
    width: 80%;
  }

  .large-nine-tenths, .large-w-90 {
    width: 90%;
  }

  .large-ten-tenths, .large-w-100 {
    width: 100%;
  }

  /*
      Twelfths
      --------
  */
  .large-one-twelfth {
    width: 8.3333333%;
  }

  .large-two-twelfths {
    width: 16.6666666%;
  }

  .large-three-twelfths {
    width: 25%;
  }

  .large-four-twelfths {
    width: 33.3333333%;
  }

  .large-five-twelfths {
    width: 41.6666666%;
  }

  .large-six-twelfths {
    width: 50%;
  }

  .large-seven-twelfths {
    width: 58.3333333%;
  }

  .large-eight-twelfths {
    width: 66.6666666%;
  }

  .large-nine-twelfths {
    width: 75%;
  }

  .large-ten-twelfths {
    width: 83.3333333%;
  }

  .large-eleven-twelfths {
    width: 91.6666666%;
  }

  /*
      Twentieth
      --------
  */
  .large-one-twentieth {
    width: 5%;
  }

  .large-two-twentieths {
    width: 10%;
  }

  .large-three-twentieths {
    width: 15%;
  }

  .large-four-twentieths {
    width: 20%;
  }

  .large-five-twentieths {
    width: 25%;
  }

  .large-six-twentieths {
    width: 30%;
  }

  .large-seven-twentieths {
    width: 35%;
  }

  .large-eight-twentieths {
    width: 40%;
  }

  .large-nine-twentieths {
    width: 45%;
  }

  .large-ten-twentieths {
    width: 50%;
  }

  .large-eleven-twentieths {
    width: 55%;
  }

  .large-twelve-twentieths {
    width: 60%;
  }

  .large-thirteen-twentieths {
    width: 65%;
  }
}
@media (min-width: 56.25em) {
  /*
      Whole
      -----
  */
  .larger-one-whole {
    width: 100%;
  }

  /*
      Halves
      ------
  */
  .larger-one-half {
    width: 50%;
  }

  /*
      Thirds
      ------
  */
  .larger-one-third {
    width: 33.3333333%;
  }

  .larger-two-thirds {
    width: 66.6666666%;
  }

  /*
      Quarters
      --------
  */
  .larger-one-quarter {
    width: 25%;
  }

  .larger-two-quarters {
    width: 50%;
  }

  .larger-three-quarters {
    width: 75%;
  }

  /*
      Fifths
      ------
  */
  .larger-one-fifth {
    width: 20%;
  }

  .larger-two-fifths {
    width: 40%;
  }

  .larger-three-fifths {
    width: 60%;
  }

  .larger-four-fifths {
    width: 80%;
  }

  /*
      Sixths
      ------
  */
  .larger-one-sixth {
    width: 16.6666666%;
  }

  .larger-two-sixths {
    width: 33.3333333%;
  }

  .larger-three-sixths {
    width: 50%;
  }

  .larger-four-sixths {
    width: 66.6666666%;
  }

  .larger-five-sixths {
    width: 83.3333333%;
  }

  /*
      Eighths
      -------
  */
  .larger-one-eighth {
    width: 12.5%;
  }

  .larger-two-eighths {
    width: 25%;
  }

  .larger-three-eighths {
    width: 37.5%;
  }

  .larger-four-eighths {
    width: 50%;
  }

  .larger-five-eighths {
    width: 62.5%;
  }

  .larger-six-eighths {
    width: 75%;
  }

  .larger-seven-eighths {
    width: 87.5%;
  }

  /*
      Ninths
      ------
  */
  .larger-one-ninth {
    width: 11.1111111%;
  }

  .larger-two-ninths {
    width: 22.2222222%;
  }

  .larger-four-ninths {
    width: 44.4444444%;
  }

  .larger-five-ninths {
    width: 55.5555555%;
  }

  .larger-seven-ninths {
    width: 77.7777777%;
  }

  .larger-eight-ninths {
    width: 88.8888888%;
  }

  /*
      Tenths
      ------
  */
  .larger-one-tenth, .larger-w-10 {
    width: 10%;
  }

  .larger-two-tenths, .larger-w-20 {
    width: 20%;
  }

  .larger-three-tenths, .larger-w-30 {
    width: 30%;
  }

  .larger-four-tenths, .larger-w-40 {
    width: 40%;
  }

  .larger-five-tenths, .larger-w-50 {
    width: 50%;
  }

  .larger-six-tenths, .larger-w-60 {
    width: 60%;
  }

  .larger-seven-tenths, .larger-w-70 {
    width: 70%;
  }

  .larger-eight-tenths, .larger-w-80 {
    width: 80%;
  }

  .larger-nine-tenths, .larger-w-90 {
    width: 90%;
  }

  .larger-ten-tenths, .larger-w-100 {
    width: 100%;
  }

  /*
      Twelfths
      --------
  */
  .larger-one-twelfth {
    width: 8.3333333%;
  }

  .larger-two-twelfths {
    width: 16.6666666%;
  }

  .larger-three-twelfths {
    width: 25%;
  }

  .larger-four-twelfths {
    width: 33.3333333%;
  }

  .larger-five-twelfths {
    width: 41.6666666%;
  }

  .larger-six-twelfths {
    width: 50%;
  }

  .larger-seven-twelfths {
    width: 58.3333333%;
  }

  .larger-eight-twelfths {
    width: 66.6666666%;
  }

  .larger-nine-twelfths {
    width: 75%;
  }

  .larger-ten-twelfths {
    width: 83.3333333%;
  }

  .larger-eleven-twelfths {
    width: 91.6666666%;
  }

  /*
      Twentieth
      --------
  */
  .larger-one-twentieth {
    width: 5%;
  }

  .larger-two-twentieths {
    width: 10%;
  }

  .larger-three-twentieths {
    width: 15%;
  }

  .larger-four-twentieths {
    width: 20%;
  }

  .larger-five-twentieths {
    width: 25%;
  }

  .larger-six-twentieths {
    width: 30%;
  }

  .larger-seven-twentieths {
    width: 35%;
  }

  .larger-eight-twentieths {
    width: 40%;
  }

  .larger-nine-twentieths {
    width: 45%;
  }

  .larger-ten-twentieths {
    width: 50%;
  }

  .larger-eleven-twentieths {
    width: 55%;
  }

  .larger-twelve-twentieths {
    width: 60%;
  }

  .larger-thirteen-twentieths {
    width: 65%;
  }
}
@media (min-width: 64.125em) {
  /*
      Whole
      -----
  */
  .largest-one-whole {
    width: 100%;
  }

  /*
      Halves
      ------
  */
  .largest-one-half {
    width: 50%;
  }

  /*
      Thirds
      ------
  */
  .largest-one-third {
    width: 33.3333333%;
  }

  .largest-two-thirds {
    width: 66.6666666%;
  }

  /*
      Quarters
      --------
  */
  .largest-one-quarter {
    width: 25%;
  }

  .largest-two-quarters {
    width: 50%;
  }

  .largest-three-quarters {
    width: 75%;
  }

  /*
      Fifths
      ------
  */
  .largest-one-fifth {
    width: 20%;
  }

  .largest-two-fifths {
    width: 40%;
  }

  .largest-three-fifths {
    width: 60%;
  }

  .largest-four-fifths {
    width: 80%;
  }

  /*
      Sixths
      ------
  */
  .largest-one-sixth {
    width: 16.6666666%;
  }

  .largest-two-sixths {
    width: 33.3333333%;
  }

  .largest-three-sixths {
    width: 50%;
  }

  .largest-four-sixths {
    width: 66.6666666%;
  }

  .largest-five-sixths {
    width: 83.3333333%;
  }

  /*
      Eighths
      -------
  */
  .largest-one-eighth {
    width: 12.5%;
  }

  .largest-two-eighths {
    width: 25%;
  }

  .largest-three-eighths {
    width: 37.5%;
  }

  .largest-four-eighths {
    width: 50%;
  }

  .largest-five-eighths {
    width: 62.5%;
  }

  .largest-six-eighths {
    width: 75%;
  }

  .largest-seven-eighths {
    width: 87.5%;
  }

  /*
      Ninths
      ------
  */
  .largest-one-ninth {
    width: 11.1111111%;
  }

  .largest-two-ninths {
    width: 22.2222222%;
  }

  .largest-four-ninths {
    width: 44.4444444%;
  }

  .largest-five-ninths {
    width: 55.5555555%;
  }

  .largest-seven-ninths {
    width: 77.7777777%;
  }

  .largest-eight-ninths {
    width: 88.8888888%;
  }

  /*
      Tenths
      ------
  */
  .largest-one-tenth, .largest-w-10 {
    width: 10%;
  }

  .largest-two-tenths, .largest-w-20 {
    width: 20%;
  }

  .largest-three-tenths, .largest-w-30 {
    width: 30%;
  }

  .largest-four-tenths, .largest-w-40 {
    width: 40%;
  }

  .largest-five-tenths, .largest-w-50 {
    width: 50%;
  }

  .largest-six-tenths, .largest-w-60 {
    width: 60%;
  }

  .largest-seven-tenths, .largest-w-70 {
    width: 70%;
  }

  .largest-eight-tenths, .largest-w-80 {
    width: 80%;
  }

  .largest-nine-tenths, .largest-w-90 {
    width: 90%;
  }

  .largest-ten-tenths, .largest-w-100 {
    width: 100%;
  }

  /*
      Twelfths
      --------
  */
  .largest-one-twelfth {
    width: 8.3333333%;
  }

  .largest-two-twelfths {
    width: 16.6666666%;
  }

  .largest-three-twelfths {
    width: 25%;
  }

  .largest-four-twelfths {
    width: 33.3333333%;
  }

  .largest-five-twelfths {
    width: 41.6666666%;
  }

  .largest-six-twelfths {
    width: 50%;
  }

  .largest-seven-twelfths {
    width: 58.3333333%;
  }

  .largest-eight-twelfths {
    width: 66.6666666%;
  }

  .largest-nine-twelfths {
    width: 75%;
  }

  .largest-ten-twelfths {
    width: 83.3333333%;
  }

  .largest-eleven-twelfths {
    width: 91.6666666%;
  }

  /*
      Twentieth
      --------
  */
  .largest-one-twentieth {
    width: 5%;
  }

  .largest-two-twentieths {
    width: 10%;
  }

  .largest-three-twentieths {
    width: 15%;
  }

  .largest-four-twentieths {
    width: 20%;
  }

  .largest-five-twentieths {
    width: 25%;
  }

  .largest-six-twentieths {
    width: 30%;
  }

  .largest-seven-twentieths {
    width: 35%;
  }

  .largest-eight-twentieths {
    width: 40%;
  }

  .largest-nine-twentieths {
    width: 45%;
  }

  .largest-ten-twentieths {
    width: 50%;
  }

  .largest-eleven-twentieths {
    width: 55%;
  }

  .largest-twelve-twentieths {
    width: 60%;
  }

  .largest-thirteen-twentieths {
    width: 65%;
  }
}
@media (min-width: 96.875em) {
  /*
      Whole
      -----
  */
  .largester-one-whole {
    width: 100%;
  }

  /*
      Halves
      ------
  */
  .largester-one-half {
    width: 50%;
  }

  /*
      Thirds
      ------
  */
  .largester-one-third {
    width: 33.3333333%;
  }

  .largester-two-thirds {
    width: 66.6666666%;
  }

  /*
      Quarters
      --------
  */
  .largester-one-quarter {
    width: 25%;
  }

  .largester-two-quarters {
    width: 50%;
  }

  .largester-three-quarters {
    width: 75%;
  }

  /*
      Fifths
      ------
  */
  .largester-one-fifth {
    width: 20%;
  }

  .largester-two-fifths {
    width: 40%;
  }

  .largester-three-fifths {
    width: 60%;
  }

  .largester-four-fifths {
    width: 80%;
  }

  /*
      Sixths
      ------
  */
  .largester-one-sixth {
    width: 16.6666666%;
  }

  .largester-two-sixths {
    width: 33.3333333%;
  }

  .largester-three-sixths {
    width: 50%;
  }

  .largester-four-sixths {
    width: 66.6666666%;
  }

  .largester-five-sixths {
    width: 83.3333333%;
  }

  /*
      Eighths
      -------
  */
  .largester-one-eighth {
    width: 12.5%;
  }

  .largester-two-eighths {
    width: 25%;
  }

  .largester-three-eighths {
    width: 37.5%;
  }

  .largester-four-eighths {
    width: 50%;
  }

  .largester-five-eighths {
    width: 62.5%;
  }

  .largester-six-eighths {
    width: 75%;
  }

  .largester-seven-eighths {
    width: 87.5%;
  }

  /*
      Ninths
      ------
  */
  .largester-one-ninth {
    width: 11.1111111%;
  }

  .largester-two-ninths {
    width: 22.2222222%;
  }

  .largester-four-ninths {
    width: 44.4444444%;
  }

  .largester-five-ninths {
    width: 55.5555555%;
  }

  .largester-seven-ninths {
    width: 77.7777777%;
  }

  .largester-eight-ninths {
    width: 88.8888888%;
  }

  /*
      Tenths
      ------
  */
  .largester-one-tenth, .largester-w-10 {
    width: 10%;
  }

  .largester-two-tenths, .largester-w-20 {
    width: 20%;
  }

  .largester-three-tenths, .largester-w-30 {
    width: 30%;
  }

  .largester-four-tenths, .largester-w-40 {
    width: 40%;
  }

  .largester-five-tenths, .largester-w-50 {
    width: 50%;
  }

  .largester-six-tenths, .largester-w-60 {
    width: 60%;
  }

  .largester-seven-tenths, .largester-w-70 {
    width: 70%;
  }

  .largester-eight-tenths, .largester-w-80 {
    width: 80%;
  }

  .largester-nine-tenths, .largester-w-90 {
    width: 90%;
  }

  .largester-ten-tenths, .largester-w-100 {
    width: 100%;
  }

  /*
      Twelfths
      --------
  */
  .largester-one-twelfth {
    width: 8.3333333%;
  }

  .largester-two-twelfths {
    width: 16.6666666%;
  }

  .largester-three-twelfths {
    width: 25%;
  }

  .largester-four-twelfths {
    width: 33.3333333%;
  }

  .largester-five-twelfths {
    width: 41.6666666%;
  }

  .largester-six-twelfths {
    width: 50%;
  }

  .largester-seven-twelfths {
    width: 58.3333333%;
  }

  .largester-eight-twelfths {
    width: 66.6666666%;
  }

  .largester-nine-twelfths {
    width: 75%;
  }

  .largester-ten-twelfths {
    width: 83.3333333%;
  }

  .largester-eleven-twelfths {
    width: 91.6666666%;
  }

  /*
      Twentieth
      --------
  */
  .largester-one-twentieth {
    width: 5%;
  }

  .largester-two-twentieths {
    width: 10%;
  }

  .largester-three-twentieths {
    width: 15%;
  }

  .largester-four-twentieths {
    width: 20%;
  }

  .largester-five-twentieths {
    width: 25%;
  }

  .largester-six-twentieths {
    width: 30%;
  }

  .largester-seven-twentieths {
    width: 35%;
  }

  .largester-eight-twentieths {
    width: 40%;
  }

  .largester-nine-twentieths {
    width: 45%;
  }

  .largester-ten-twentieths {
    width: 50%;
  }

  .largester-eleven-twentieths {
    width: 55%;
  }

  .largester-twelve-twentieths {
    width: 60%;
  }

  .largester-thirteen-twentieths {
    width: 65%;
  }
}
/*  ==========================================================================
    Helpers:Layout
    ========================================================================== */
/*
    Contain floats
    --------------

    Make an element expand to contain floated children.
    Uses pseudo-elements (micro clearfix).

    1. The space content is one way to avoid an Opera bug when the
        `contenteditable` attribute is included anywhere else in the document.
        Otherwise it causes space to appear at the top and bottom of the
        element.
    2. The use of `table` rather than `block` is only necessary if using
        `:before` to contain the top-margins of child elements.
 */
.cf:before, .cf:after,
.group:before,
.group:after {
  content: "";
  /* 1 */
  display: table;
  /* 2 */
}
.cf:after,
.group:after {
  clear: both;
}

/*
    Floats
*/
.float--right {
  float: right !important;
}

.float--left {
  float: left !important;
}

/*  ==========================================================================
    Helpers:Rendering
    ========================================================================== */
.will-change {
  /*
      Promote item to it's own layer

      http://aerotwist.com/blog/on-translate3d-and-layer-creation-hacks/

      at some point change this to the new property will-change
      http://aerotwist.com/blog/bye-bye-layer-hacks/
  */
  transform: translateZ(0);
}

/*  ==========================================================================
    Generic:Helpers:Spacing
    ========================================================================== */
/*
    add/remove margins
    ------------------
*/
.push {
  margin: 1.6666666667em !important;
}

.push--top {
  margin-top: 1.6666666667em !important;
}

.push--right {
  margin-right: 1.6666666667em !important;
}

.push--bottom {
  margin-bottom: 1.6666666667em !important;
}

.push--left {
  margin-left: 1.6666666667em !important;
}

.push--ends {
  margin-top: 1.6666666667em !important;
  margin-bottom: 1.6666666667em !important;
}

.push--sides {
  margin-right: 1.6666666667em !important;
  margin-left: 1.6666666667em !important;
}

.push-half {
  margin: 0.8333333333em !important;
}

.push-half--top {
  margin-top: 0.8333333333em !important;
}

.push-half--right {
  margin-right: 0.8333333333em !important;
}

.push-half--bottom {
  margin-bottom: 0.8333333333em !important;
}

.push-half--left {
  margin-left: 0.8333333333em !important;
}

.push-half--ends {
  margin-top: 0.8333333333em !important;
  margin-bottom: 0.8333333333em !important;
}

.push-half--sides {
  margin-right: 0.8333333333em !important;
  margin-left: 0.8333333333em !important;
}

.flush {
  margin: 0 !important;
}

.flush--top {
  margin-top: 0 !important;
}

.flush--right {
  margin-right: 0 !important;
}

.flush--bottom {
  margin-bottom: 0 !important;
}

.flush--left {
  margin-left: 0 !important;
}

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/*
    remove paddings
    ---------------
    I don't find myself wanting to add padding via a helper class so i only have classes for removing
*/
.hard {
  padding: 0 !important;
}

.hard--top {
  padding-top: 0 !important;
}

.hard--right {
  padding-right: 0 !important;
}

.hard--bottom {
  padding-bottom: 0 !important;
}

.hard--left {
  padding-left: 0 !important;
}

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* ==========================================================================
   Helpers:State
   ========================================================================== */
/*
    Indicate that interaction will result in an (in)action.
*/
.is-actionable {
  cursor: pointer !important;
}

.is-disabled {
  cursor: default !important;
}

.is-draggable {
  cursor: move !important;
}

/*
    Completely remove from the flow and screen readers.
*/
.is-hidden {
  display: none !important;
  visibility: hidden !important;
}

/*
    Completely remove from the flow but leave available to screen readers.
*/
.is-hidden-visually {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

/*
    Control visibility without affecting flow.
*/
.is-invisible {
  visibility: hidden !important;
}

.is-visible {
  visibility: visible !important;
}

/*  ==========================================================================
    Generic:Helpers:Text
    ========================================================================== */
/*
    Text alignment
*/
.text--left {
  text-align: left !important;
}

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

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

/*
    Apply capital case to an element (usually a `strong`).
*/
.caps {
  text-transform: uppercase !important;
}

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important;
}

.weight--normal {
  font-weight: 400 !important;
}

.weight--semibold {
  font-weight: 600 !important;
}

.weight--bold {
  font-weight: bold !important;
}

/*
    Text truncation

    Prevent text from wrapping onto multiple lines, and truncate with an
    ellipsis.

    1.  Ensure that the node has a maximum width after which truncation can
        occur.
    2.  Fix for IE 8/9 if `word-wrap: break-word` is in effect on ancestor
        nodes.
*/
.text--truncate {
  max-width: 100%;
  /* 1 */
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important;
  /* 2 */
}

/*
    font sizes
*/
.alpha {
  font-size: 1.6666666667em;
}

.beta {
  font-size: 1.3888888889em;
}

.gamma {
  font-size: 1.2222222222em;
}

.delta {
  font-size: 1.1111111111em;
}

.epsilon {
  font-size: 1em;
}

.zeta {
  font-size: 0.8888888889em;
}

/* 9 */
.cta-boxes--box--title {
  margin-bottom: 4px;
}

.cta-boxes--text {
  color: #999999;
  font-size: 0.8888888889em;
  font-family: Georgia, Times, "Times New Roman", serif;
}

.cta-boxes--box--inner--content {
  flex: 1 0 auto;
}

.generic-content {
  text-align: left;
  padding: 2.5% 0;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.generic-content.image {
  color: #333;
  padding: 3% 0;
}
.generic-content.image h1, .generic-content.image h2, .generic-content.image h3, .generic-content.image h4, .generic-content.image h5, .generic-content.image h6, .generic-content.image .generic-content--title {
  color: #333;
  font-weight: 300;
}
.generic-content.image .generic-content--title {
  font-size: 25px;
  text-transform: uppercase;
}
.generic-content.image .generic-content--background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.generic-content.image .generic-content--background-image img {
  width: 100%;
  height: 100%;
}
.generic-content .generic-content--content {
  position: relative;
  z-index: 2;
}
.generic-content .generic-content--title {
  font-size: 25px;
}
.generic-content .generic-content--inner-content strong {
  color: blue;
}
.generic-content .generic-content--inner-content p {
  margin-bottom: 2%;
  line-height: 30px;
  font-weight: 100;
  font-size: 22px;
}
@media only screen and (max-width: 34.375em) {
  .generic-content .generic-content--inner-content p {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

.flexible-content-wrap-premium.template-offers {
  margin-bottom: 50px;
}

.grid--youtube-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.grid--youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.grid--image-gallery img {
  width: 33.3%;
  height: 124.3px;
  margin: 0;
  padding: 0;
}

.grid--standard-content {
  padding: 3% 9% 6%;
  text-align: center;
  color: #fff;
}
.grid--standard-content h1, .grid--standard-content h2, .grid--standard-content h3, .grid--standard-content h4, .grid--standard-content h5, .grid--standard-content h6, .grid--standard-content .grid--standard-content--title {
  text-transform: uppercase;
  max-width: 320px;
  display: inline-block;
}

.set_width_layouts {
  padding: 10% 9px;
  background: #fff;
}
@media (min-width: 46.875em) {
  .set_width_layouts {
    padding: 6% 37px;
  }
}
@media (min-width: 56.25em) {
  .set_width_layouts {
    padding: 2% 0;
  }
}
@media (min-width: 64.125em) {
  .set_width_layouts {
    padding: 30px 0;
  }
}
.set_width_layouts.set_width_layouts--grey {
  background: #333;
}
.set_width_layouts.set_width_layouts--grey .set_width_layouts__title {
  color: #d3d3d3;
  font-size: 24px;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 15%;
  letter-spacing: 0.3em;
}
@media (min-width: 46.875em) {
  .set_width_layouts.set_width_layouts--grey .set_width_layouts__title {
    margin: 0 0 10%;
  }
}
@media (min-width: 56.25em) {
  .set_width_layouts.set_width_layouts--grey .set_width_layouts__title {
    margin: 0 0 5%;
  }
}
.set_width_layouts.set_width_layouts--grey .set_width_layouts__title::after {
  content: "";
  display: block;
  margin: 10px auto;
  width: 200px;
  height: 1px;
  background: #d3d3d3;
}
@media (min-width: 56.25em) {
  .set_width_layouts .set_width_layout.larger-one-half:nth-child(even) {
    border-left: 1px solid #d3d3d3;
  }
}
.set_width_layouts .set_width_layout .set_width_layout--standard-content--text p {
  padding-bottom: 10px;
}

.set_width_layout--video {
  position: relative;
  padding-top: 0;
}
.set_width_layout--video iframe {
  position: relative;
  width: 100%;
  display: block;
}
.set_width_layout--video .inner {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.set_width_layout--video .inner .inner__content {
  flex: 1 0 auto;
}

.set_width_layout--image-gallery {
  font-size: 0;
}
.set_width_layout--image-gallery img {
  width: 33.3%;
  height: 128.3px;
  margin: 0;
  padding: 2px;
}

.set_width_layout--standard-content {
  margin-bottom: 35px;
}
.set_width_layout--standard-content:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 46.875em) {
  .set_width_layout--standard-content.large-one-half:nth-child(odd) {
    border-right: 1px solid #333;
  }
}

.set_width_layout--standard-content, .set_width_layout--links {
  position: relative;
}
.set_width_layout--standard-content .set_width_layout--standard-content--inner, .set_width_layout--links .set_width_layout--standard-content--inner {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 1% 0;
}
.set_width_layout--standard-content .set_width_layout--standard-content--inner .set_width_layout--standard-content--inner__content, .set_width_layout--links .set_width_layout--standard-content--inner .set_width_layout--standard-content--inner__content {
  flex: 1 0 auto;
  padding: 0px 22px;
}
.set_width_layout--standard-content .set_width_layout--standard-content--bg-image, .set_width_layout--links .set_width_layout--standard-content--bg-image {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 0;
}
.set_width_layout--standard-content h1, .set_width_layout--standard-content h2, .set_width_layout--standard-content h3, .set_width_layout--standard-content h4, .set_width_layout--standard-content h5, .set_width_layout--standard-content h6, .set_width_layout--standard-content .set_width_layout--standard-content--title, .set_width_layout--links h1, .set_width_layout--links h2, .set_width_layout--links h3, .set_width_layout--links h4, .set_width_layout--links h5, .set_width_layout--links h6, .set_width_layout--links .set_width_layout--standard-content--title {
  display: block;
  line-height: 1.2em;
  margin: 0.5em 0;
}
.set_width_layout--standard-content .set_width_layout--standard-content--text, .set_width_layout--links .set_width_layout--standard-content--text {
  font-size: 1em;
  font-family: Georgia, Times, "Times New Roman", serif;
}
.set_width_layout--standard-content .set_width_layout--standard-content--text h1, .set_width_layout--standard-content .set_width_layout--standard-content--text h2, .set_width_layout--links .set_width_layout--standard-content--text h1, .set_width_layout--links .set_width_layout--standard-content--text h2 {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 36px;
  color: #333;
  margin: 0;
  padding-bottom: 30px;
}
@media (min-width: 46.875em) {
  .set_width_layout--standard-content .set_width_layout--standard-content--text h1, .set_width_layout--standard-content .set_width_layout--standard-content--text h2, .set_width_layout--links .set_width_layout--standard-content--text h1, .set_width_layout--links .set_width_layout--standard-content--text h2 {
    font-size: 48px;
  }
}
.set_width_layout--standard-content .set_width_layout--standard-content--text h1:after, .set_width_layout--standard-content .set_width_layout--standard-content--text h2:after, .set_width_layout--links .set_width_layout--standard-content--text h1:after, .set_width_layout--links .set_width_layout--standard-content--text h2:after {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #d3d3d3;
  margin-top: 30px;
}
.set_width_layouts--grey .set_width_layout--standard-content .set_width_layout--standard-content--text h1:after, .set_width_layouts--grey .set_width_layout--standard-content .set_width_layout--standard-content--text h2:after, .set_width_layouts--grey .set_width_layout--links .set_width_layout--standard-content--text h1:after, .set_width_layouts--grey .set_width_layout--links .set_width_layout--standard-content--text h2:after {
  border-top: 1px solid #d3d3d3;
}
.home .set_width_layout--standard-content .set_width_layout--standard-content--text h1, .home .set_width_layout--standard-content .set_width_layout--standard-content--text h2, .home .set_width_layout--links .set_width_layout--standard-content--text h1, .home .set_width_layout--links .set_width_layout--standard-content--text h2 {
  padding-bottom: 0;
}
.home .set_width_layout--standard-content .set_width_layout--standard-content--text h1:after, .home .set_width_layout--standard-content .set_width_layout--standard-content--text h2:after, .home .set_width_layout--links .set_width_layout--standard-content--text h1:after, .home .set_width_layout--links .set_width_layout--standard-content--text h2:after {
  display: none;
}
.set_width_layout--standard-content.brand-blue .set_width_layout--standard-content--inner, .set_width_layout--links.brand-blue .set_width_layout--standard-content--inner {
  background: #333;
  color: #fff;
}
.set_width_layout--standard-content.brand-blue a, .set_width_layout--links.brand-blue a {
  color: #fff;
}
.set_width_layout--standard-content.brand-blue .set_width_layout--standard-content--inner, .set_width_layout--links.brand-blue .set_width_layout--standard-content--inner {
  padding: 1% 0 2% 0;
}

.set_width_layouts .cta-boxes--box--title {
  margin-top: 0;
  color: #333;
}
.set_width_layouts .cta-boxes--box--inner {
  width: 100%;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.set_width_layouts .cta-boxes--box--inner img {
  width: 100%;
  display: block;
}
.set_width_layouts.set_width_layouts--white .cta-boxes--box--inner {
  background: #d3d3d3;
}
.set_width_layouts .cta-boxes--box--inner--content {
  padding: 12px 18px 18px;
}

.blog .cta-boxes--box--inner--content, .archive .cta-boxes--box--inner--content {
  width: 100%;
  position: relative;
  background: #d3d3d3;
}

.set_width_layout--testimonials {
  margin-bottom: 35px;
}
.set_width_layout--testimonials .testimonials {
  padding-top: 14px;
  padding-bottom: 60px;
}
@media (min-width: 46.875em) {
  .set_width_layout--testimonials .testimonials {
    padding-bottom: 40px;
  }
}
.set_width_layout--testimonials .slick-track {
  display: flex;
}
.set_width_layout--testimonials .slick-next, .set_width_layout--testimonials .slick-prev {
  top: auto;
  bottom: 0;
  position: absolute;
  width: 50%;
  border: 1px solid #fff;
  text-indent: 0;
  transition: all 0.2s;
  text-transform: lowercase;
  font-size: 19px;
}
.set_width_layout--testimonials .slick-next:hover, .set_width_layout--testimonials .slick-prev:hover {
  background: #fff;
  color: #d3d3d3;
}
.set_width_layout--testimonials .slick-next:hover:after, .set_width_layout--testimonials .slick-prev:hover:after {
  background: url("/content/themes/standard/images/sprite.png") 0 0 no-repeat;
}
.set_width_layout--testimonials .slick-next:after, .set_width_layout--testimonials .slick-prev:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 14px;
  right: 14px;
  height: 15px;
  width: 8px;
  background: url("/content/themes/standard/images/sprite.png") -10px 0 no-repeat;
}
.set_width_layout--testimonials .slick-next.slick-next, .set_width_layout--testimonials .slick-prev.slick-next {
  right: 0;
  border-left: 0;
  text-align: left;
  padding-left: 20px;
}
.set_width_layout--testimonials .slick-next.slick-prev, .set_width_layout--testimonials .slick-prev.slick-prev {
  text-align: right;
  padding-right: 20px;
  left: 0;
}
.set_width_layout--testimonials .slick-next.slick-prev:after, .set_width_layout--testimonials .slick-prev.slick-prev:after {
  right: auto;
  left: 14px;
  transform: rotate(180deg);
}
@media (min-width: 46.875em) {
  .set_width_layout--testimonials.large-one-half:nth-child(odd) {
    border-right: 1px solid #d3d3d3;
  }
}

.set_width_layout--testimonials, .set_width_layout--links {
  position: relative;
}
.set_width_layout--testimonials .set_width_layout--testimonials--inner, .set_width_layout--links .set_width_layout--testimonials--inner {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 1% 0;
}
.set_width_layout--testimonials .set_width_layout--testimonials--inner .set_width_layout--testimonials--inner__content, .set_width_layout--links .set_width_layout--testimonials--inner .set_width_layout--testimonials--inner__content {
  flex: 1 0 auto;
  padding: 0px 22px;
}
.set_width_layout--testimonials .set_width_layout--testimonials--name, .set_width_layout--links .set_width_layout--testimonials--name {
  font-size: 0.8rem;
  float: right;
  margin-top: 5%;
  text-align: right;
}
.set_width_layout--testimonials .set_width_layout--testimonials--bg-image, .set_width_layout--links .set_width_layout--testimonials--bg-image {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 0;
}
.set_width_layout--testimonials h1, .set_width_layout--testimonials h2, .set_width_layout--testimonials h3, .set_width_layout--testimonials h4, .set_width_layout--testimonials h5, .set_width_layout--testimonials h6, .set_width_layout--testimonials .set_width_layout--testimonials--title, .set_width_layout--links h1, .set_width_layout--links h2, .set_width_layout--links h3, .set_width_layout--links h4, .set_width_layout--links h5, .set_width_layout--links h6, .set_width_layout--links .set_width_layout--testimonials--title {
  display: block;
  line-height: 1.2em;
  margin: 0.5em 0;
}
.set_width_layout--testimonials .set_width_layout--testimonials--text, .set_width_layout--links .set_width_layout--testimonials--text {
  font-size: 1em;
  font-family: Georgia, Times, "Times New Roman", serif;
  position: relative;
  text-indent: 35px;
}
.set_width_layout--testimonials .set_width_layout--testimonials--text::before, .set_width_layout--testimonials .set_width_layout--testimonials--text::after, .set_width_layout--links .set_width_layout--testimonials--text::before, .set_width_layout--links .set_width_layout--testimonials--text::after {
  text-indent: 0;
  line-height: 1;
  font-family: FontAwesome;
  font-size: 3.3em;
  display: inline;
  position: absolute;
}
.set_width_layout--testimonials .set_width_layout--testimonials--text::before, .set_width_layout--links .set_width_layout--testimonials--text::before {
  content: "“";
  top: -7px;
  left: 0px;
}
.set_width_layout--testimonials .set_width_layout--testimonials--text p::after, .set_width_layout--links .set_width_layout--testimonials--text p::after {
  content: "”";
  position: relative;
  display: inline;
  font-size: 2.5em;
  line-height: 0em;
  height: 25px;
  top: 18px;
  left: 7px;
}
.set_width_layout--testimonials .set_width_layout--testimonials--text h1, .set_width_layout--testimonials .set_width_layout--testimonials--text h2, .set_width_layout--links .set_width_layout--testimonials--text h1, .set_width_layout--links .set_width_layout--testimonials--text h2 {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 36px;
  color: #333;
  margin: 0;
  padding-bottom: 30px;
}
@media (min-width: 46.875em) {
  .set_width_layout--testimonials .set_width_layout--testimonials--text h1, .set_width_layout--testimonials .set_width_layout--testimonials--text h2, .set_width_layout--links .set_width_layout--testimonials--text h1, .set_width_layout--links .set_width_layout--testimonials--text h2 {
    font-size: 48px;
  }
}
.set_width_layout--testimonials .set_width_layout--testimonials--text h1:after, .set_width_layout--testimonials .set_width_layout--testimonials--text h2:after, .set_width_layout--links .set_width_layout--testimonials--text h1:after, .set_width_layout--links .set_width_layout--testimonials--text h2:after {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #d3d3d3;
  margin-top: 30px;
}
.home .set_width_layout--testimonials .set_width_layout--testimonials--text h1, .home .set_width_layout--testimonials .set_width_layout--testimonials--text h2, .home .set_width_layout--links .set_width_layout--testimonials--text h1, .home .set_width_layout--links .set_width_layout--testimonials--text h2 {
  padding-bottom: 0;
}
.home .set_width_layout--testimonials .set_width_layout--testimonials--text h1:after, .home .set_width_layout--testimonials .set_width_layout--testimonials--text h2:after, .home .set_width_layout--links .set_width_layout--testimonials--text h1:after, .home .set_width_layout--links .set_width_layout--testimonials--text h2:after {
  display: none;
}
.set_width_layout--testimonials.brand-blue, .set_width_layout--links.brand-blue {
  position: relative;
}
.set_width_layout--testimonials.brand-blue .set_width_layout--testimonials--inner__bg, .set_width_layout--links.brand-blue .set_width_layout--testimonials--inner__bg {
  background: #333;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.set_width_layout--testimonials.brand-blue .set_width_layout--testimonials--inner, .set_width_layout--links.brand-blue .set_width_layout--testimonials--inner {
  color: #fff;
}
.set_width_layout--testimonials.brand-blue a, .set_width_layout--links.brand-blue a {
  color: #fff;
}
.set_width_layout--testimonials.brand-blue .set_width_layout--testimonials--inner, .set_width_layout--links.brand-blue .set_width_layout--testimonials--inner {
  padding: 1% 0 2% 0;
}

.iframe-section iframe {
  width: 100%;
  border: none;
  height: 1080px;
}

section.newsletter {
  background-size: cover !important;
  color: #fff;
  padding: 3% 34px 10%;
}
@media (min-width: 56.25em) {
  section.newsletter {
    padding: 3% 0 3%;
  }
}
section.newsletter .inner {
  max-width: 960px;
  margin: 0 auto;
}
section.newsletter h2 {
  font-size: 36px;
  font-weight: 100;
  padding: 0% 0 2%;
}
section.newsletter h2 strong {
  display: block;
}
@media (min-width: 46.875em) {
  section.newsletter h2 strong {
    display: inline-block;
  }
}
section.newsletter .control-group {
  margin-right: 2%;
}
@media (min-width: 46.875em) {
  section.newsletter .control-group {
    display: inline-block;
  }
}
section.newsletter .control-group input {
  border: none;
  font-size: 15px;
  font-family: Georgia, Times, "Times New Roman", serif;
  padding: 3% 3% 2% 3%;
  width: 100%;
  margin-bottom: 19px;
  color: #333;
}
@media (min-width: 46.875em) {
  section.newsletter .control-group input {
    margin-bottom: 0;
    width: 300px;
  }
}
section.newsletter .btn {
  font-family: Georgia, Times, "Times New Roman", serif;
  margin-top: 5.5%;
  padding: 0.8% 5% 1% 2%;
  text-transform: none;
  color: #fff;
  border: solid 1px #fff;
  background: none;
  position: relative;
  width: 132px;
}
@media (min-width: 46.875em) {
  section.newsletter .btn {
    width: auto;
  }
}

/* 10 */
/*# sourceMappingURL=main.css.map */
