@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");
}
/*
    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 {
  margin-top: 0px !important;
  -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;
  background: #ffffff;
  font-family: "rotunda-variable", sans-serif;
}
body.logged-in-user {
  margin-top: 46px;
}
@media (min-width: 46.875em) {
  body.logged-in-user {
    margin-top: 32px;
  }
}
body.logged-in-user #wpadminbar {
  position: fixed !important;
  top: 0px !important;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "begum", sans-serif;
}

/*  ==========================================================================
    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("") 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;
}

.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("../fonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../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("../fonts/fa-regular-400.eot");
  src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../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("../fonts/fa-solid-900.eot");
  src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.glider-contain {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.glider {
  margin: 0 auto;
  position: relative;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  transform: translateZ(0);
}

.glider-track {
  transform: translateZ(0);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  z-index: 1;
}

.glider.draggable {
  user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}

.glider.draggable .glider-slide img {
  user-select: none;
  pointer-events: none;
}

.glider.drag {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.glider-slide {
  user-select: none;
  justify-content: center;
  align-content: center;
  width: 100%;
}

.glider-slide img {
  max-width: 100%;
}

.glider::-webkit-scrollbar {
  opacity: 0;
  height: 0;
}

.glider-prev, .glider-next {
  user-select: none;
  position: absolute;
  outline: none;
  background: none;
  padding: 0;
  z-index: 2;
  font-size: 40px;
  text-decoration: none;
  left: -23px;
  border: 0;
  top: 30%;
  cursor: pointer;
  color: #666;
  opacity: 1;
  line-height: 1;
  transition: opacity 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67), color 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.glider-prev:hover,
.glider-next:hover,
.glider-prev:focus,
.glider-next:focus {
  color: #a89cc8;
}

.glider-next {
  right: -23px;
  left: auto;
}

.glider-next.disabled,
.glider-prev.disabled {
  opacity: 0.25;
  color: #666;
  cursor: default;
}

.glider-slide {
  min-width: 150px;
}

.glider-hide {
  opacity: 0;
}

.glider-dots {
  user-select: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}

.glider-dot {
  border: 0;
  padding: 0;
  user-select: none;
  outline: none;
  display: block;
  cursor: pointer;
  color: #ccc;
  border-radius: 999px;
  background: #ccc;
  width: 12px;
  height: 12px;
  margin: 7px;
}

.glider-dot:hover,
.glider-dot:focus,
.glider-dot.active {
  background: #a89cc8;
}

@media (max-width: 36em) {
  .glider::-webkit-scrollbar {
    opacity: 1;
    -webkit-appearance: none;
    width: 7px;
    height: 3px;
  }
  .glider::-webkit-scrollbar-thumb {
    opacity: 1;
    border-radius: 99px;
    background-color: rgba(156, 156, 156, 0.25);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
  }
}

/* 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;
}

.reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: 2s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.reveal-no-fade {
  position: relative;
  transform: translateY(100px);
  transition: 2s all ease;
}

.reveal-no-fade.active {
  transform: translateY(0);
  opacity: 1;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-fade-up {
  animation: fade-up 2s ease;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadein-expand {
  animation: fadein-expand 2s ease;
}

@keyframes fadein-expand {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*  ==========================================================================
    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;
}

.pager-button {
  cursor: pointer;
  display: inline-block;
  width: 25px;
  padding: 0px !important;
  margin: 0px !important;
}
.pager-button:hover {
  border: 1px solid #AAC915;
}

.pager-container {
  padding: 1rem;
  color: #AAC915;
  font-family: open-sans, sans-serif;
  font-size: 15px;
  text-align: center;
}

.pager-disabled {
  cursor: default;
  color: #999299 !important;
}
.pager-disabled:hover {
  border: 0px;
}

/*
    Variations
    ----------

    e.g
    .btn--primary{}
    .btn--secondary{}
    .btn--tertiary{}
*/
.cta_btn_type_1 {
  border: 0px;
  color: white;
  font-size: 11px;
  cursor: pointer;
  background: black;
  line-height: 11px;
  letter-spacing: 3px;
  display: inline-block;
  text-decoration: none !important;
  margin: 0px 0px 0px 0px !important;
  padding: 9px 14px 11px 14px !important;
  font-weight: 400;
  font-family: open-sans, sans-serif;
}
@media (min-width: 34.375em) {
  .cta_btn_type_1 {
    font-size: 15px;
    line-height: 15px;
    padding: 14px 24px 14px 24px !important;
  }
}

.cta_btn_type_1:hover {
  background: #f9f5eb !important;
  color: black !important;
}

.cta_btn_type_2 {
  color: white;
  font-size: 11px;
  cursor: pointer;
  line-height: 11px;
  letter-spacing: 3px;
  display: inline-block;
  border: 2px solid white;
  background: transparent;
  text-decoration: none !important;
  margin: 0px 0px 0px 0px !important;
  padding: 9px 14px 11px 14px !important;
  font-weight: 400;
  font-family: open-sans, sans-serif;
}
@media (min-width: 34.375em) {
  .cta_btn_type_2 {
    font-size: 15px;
    line-height: 15px;
    padding: 14px 24px 14px 24px !important;
  }
}

.cta_btn_type_2:hover {
  background: #f9f5eb !important;
  color: black !important;
}

.cta_btn_type_3 {
  border: 0px;
  color: white !important;
  font-size: 11px;
  cursor: pointer;
  background: black;
  line-height: 11px;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none !important;
  margin: 0px 0px 0px 0px !important;
  padding: 9px 14px 11px 14px !important;
  font-weight: 400;
  font-family: open-sans, sans-serif;
}
@media (min-width: 34.375em) {
  .cta_btn_type_3 {
    font-size: 15px;
    line-height: 15px;
    padding: 14px 24px 14px 24px !important;
  }
}

.cta_btn_type_3:hover {
  background: #F5F2F2 !important;
  color: black !important;
}

.cta_btn_type_4 {
  border: 0px;
  color: white;
  font-size: 11px;
  cursor: pointer;
  background: #313030;
  line-height: 14px;
  letter-spacing: 3px;
  display: inline-block;
  text-decoration: none !important;
  margin: 0px 0px 0px 0px !important;
  padding: 10px 14px 10px 14px !important;
  font-weight: 400;
  font-family: open-sans, sans-serif;
}
@media (min-width: 34.375em) {
  .cta_btn_type_4 {
    font-size: 15px;
    line-height: 18px;
    padding: 14px 24px 14px 24px !important;
  }
}

.cta_btn_type_4:hover {
  background: #f9f5eb !important;
  color: black !important;
}

/*  ==========================================================================
    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;
}

.show-mobile {
  display: inline-block;
}
@media (min-width: 56.25em) {
  .show-mobile {
    display: none;
  }
}

.show-desktop {
  display: none;
}
@media (min-width: 56.25em) {
  .show-desktop {
    display: inline-block;
  }
}

.menu_scroll_show {
  display: block !important;
}

.menu_scroll_hide_top,
.menu_scroll_hide_bottom {
  display: none !important;
}

.menu_scroll_controller {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  width: 100% !important;
}
.menu_scroll_controller span {
  cursor: pointer !important;
  text-align: center !important;
  width: 30% !important;
  line-height: 54px !important;
}
.menu_scroll_controller span.inactive {
  filter: grayscale(100%) !important;
}
.menu_scroll_controller span.inactive img {
  content: url("../images/wiredmedia/chevron-up-gray.svg") !important;
}
.menu_scroll_controller span:hover img, .menu_scroll_controller span.hover-effect-on img {
  content: url("../images/wiredmedia/chevron-up-primary.svg") !important;
}
.menu_scroll_controller span img {
  height: 17px !important;
}
.menu_scroll_controller span.down img {
  transform: rotate(180deg);
}

.section__shell {
  position: relative;
  max-width: 1192px;
  margin: auto;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 68.75em) {
  .section__shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.custom-anchor-tag {
  cursor: pointer;
}

.flexible-content-wrap.mobile-reverse {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 34.375em) {
  .flexible-content-wrap.mobile-reverse {
    flex-direction: column;
  }
}

.page-wired .breadcrumbs-wired {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.page-wired .breadcrumbs-wired a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 20px;
}
.page-wired .breadcrumbs-wired a.active, .page-wired .breadcrumbs-wired a:hover {
  color: #FFF;
}
.page-wired .breadcrumbs-wired .spacer {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.page-wired .header-height {
  height: 75px;
}
.page-wired .menu-overlay {
  position: fixed !important;
  background: #1A163D !important;
  display: flex !important;
  height: 40px !important;
  width: 40px !important;
  top: 1.5rem !important;
  left: calc(100vw - 1.5rem) !important;
  opacity: 0 !important;
  transition: all 0.5s ease-in-out !important;
  overflow: hidden !important;
  z-index: 0;
}
.page-wired .menu-overlay.active {
  position: fixed !important;
  display: flex !important;
  opacity: 1 !important;
  height: 100% !important;
  width: 100vw !important;
  top: 0px !important;
  left: 0px !important;
  z-index: 1000;
}
.page-wired .menu-overlay.active.logged-in-user {
  top: 30px !important;
}
.page-wired .menu-overlay .full-width .menu-overlay-icons {
  top: 1.5rem !important;
  left: 2rem !important;
}
.page-wired .menu-overlay .full-width .menu-btn-close {
  background-image: url("../images/menu_close-light.svg");
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav {
  padding: 6rem 2rem;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  max-height: calc(460px + 6rem) !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul {
  position: relative !important;
  overflow-y: scroll !important;
  max-height: 460px !important;
  transition: left 0.5s linear;
  width: calc(100vw - 4rem) !important;
  left: 0px !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul.menu-list-active {
  left: -120vw !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul .header-phone-mobile-container {
  margin-top: 20px !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul .header-phone-mobile-container .header-phone-mobile {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 16px !important;
  padding: 15px 15px 12px 15px !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li {
  margin-top: 5px;
  margin-bottom: 5px;
  cursor: pointer !important;
  text-align: left !important;
  border-bottom: 2px solid #1A163D !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li a {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 28px !important;
  line-height: 41px !important;
  color: #FFF !important;
  padding-top: 5px !important;
  text-decoration: none;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li a:hover {
  color: #AAC915 !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li.menu-item-back {
  background-image: url("../images/wiredmedia/chevron-left-white.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center left !important;
  padding-left: 30px !important;
  border-bottom: 2px solid white !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li.menu-item-has-children,
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li .menu-item-has-children {
  background-image: url("../images/wiredmedia/chevron-right-white.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center right 20px !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li.menu-item-has-children:hover,
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li .menu-item-has-children:hover {
  background-image: url("../images/wiredmedia/chevron-right-purple.svg") !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li.menu-item-has-children > ul,
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li .menu-item-has-children > ul {
  overflow-y: scroll !important;
  transition: left 0.5s linear;
  left: 120vw !important;
  top: 6rem !important;
  height: 460px !important;
  position: fixed !important;
  display: block !important;
  width: calc(100vw - 4rem) !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li.menu-item-has-children > ul.menu-list-active,
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li .menu-item-has-children > ul.menu-list-active {
  left: -120vw !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li.menu-item-has-children > ul.menu-list-active-overflow,
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li .menu-item-has-children > ul.menu-list-active-overflow {
  overflow-y: visible !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li.menu-item-has-children.active > ul,
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li .menu-item-has-children.active > ul {
  /** sub-menu level 1 **/
  left: 2rem !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li.menu-item-has-children.active > ul.menu-list-active,
.page-wired .menu-overlay .full-width .main-nav-prestige .main-nav > ul li .menu-item-has-children.active > ul.menu-list-active {
  left: -120vw !important;
}
.page-wired .menu-overlay .full-width .main-nav-prestige iframe {
  position: relative;
  z-index: 20000 !important;
}

.header-wired {
  z-index: 20;
  /** apply this style to whole header when menu is open**/
}
.header-wired .header-phone {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  background: #AAC915;
  color: white;
  font-size: 14px;
  padding: 15px 15px 12px 15px;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
}
.header-wired .header-phone:hover {
  background: white;
  color: #1A163D;
}
.header-wired .header-phone-dark:hover {
  background: #1A163D !important;
  color: white !important;
}
.header-wired .mega-menu-toggle {
  z-index: 100;
  background: #AAC915 !important;
}
.header-wired .header-top-nav-bar-prestige {
  height: 100%;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap {
  /** base menu level <ul> **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul {
  /** base menu level <li> **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li {
  padding-top: 5px !important;
  /** this applies to all <a> tags under this element recursively **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > a {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 400 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 18px !important;
  line-height: 30px !important;
  letter-spacing: -0.1px;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li a:hover, .header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li a.hover-effect-on {
  color: #AAC915 !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li .custom_menu_close_button {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 700 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  z-index: 10 !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: white !important;
  font-size: 24px !important;
  text-decoration: none !important;
  position: fixed !important;
  width: 100px !important;
  cursor: pointer;
  border-top: 2px solid #1A163D !important;
  border-bottom: 2px solid #1A163D !important;
  bottom: 30vh !important;
  left: 1rem !important;
}
@media (min-width: 75em) {
  .header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li .custom_menu_close_button {
    left: calc((100vw - 1192px) / 2 + 1rem) !important;
  }
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li .custom_menu_close_button:hover, .header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li .custom_menu_close_button.hover-effect-on {
  color: #AAC915 !important;
  border-top: 2px solid #1A163D !important;
  border-bottom: 2px solid #1A163D !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li .custom_menu_close_button img {
  margin-left: 10px;
  width: 20px !important;
  height: 20px !important;
  color: #AAC915 !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li .custom_menu_close_button:hover img {
  content: url("../images/wiredmedia/chevron-up-primary.svg") !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul {
  top: 90px !important;
  background: #1A163D !important;
  position: fixed !important;
  left: 0px !important;
  height: 100vh !important;
  width: 100vw !important;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
  padding-left: calc((100vw - 1192px) / 2) !important;
  padding-right: calc((100vw - 1192px) / 2) !important;
  /** this is also defined in _menu_ads_block.scss **/
  /** this is for mega standard layout -start **/
  /** apply to all <li> under this sub-menu recursively **/
  /** this is for mega standard layout - end **/
  /** this applies to all <a> tags under this element recursively **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul.logged-in-user {
  top: 115px !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul .menu-ads-block-floating-container {
  position: absolute !important;
  right: 1rem !important;
}
@media (min-width: 75em) {
  .header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul .menu-ads-block-floating-container {
    right: calc((100vw - 1192px) / 2) !important;
  }
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li {
  position: relative !important;
  width: 400px !important;
  /** 1st sub-menu level <ul> **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li > a {
  padding-left: 1rem !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li .force-hide-sub-menu1,
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li .force-hide-sub-menu2,
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li .force-hide-sub-menu3 {
  opacity: 0 !important;
  display: none !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li .force-show-sub-menu1,
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li .force-show-sub-menu2,
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li .force-show-sub-menu3 {
  opacity: 1 !important;
  display: block !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li > ul {
  position: fixed !important;
  top: 0px !important;
  left: calc((100vw - 1192px) / 2 + 400px) !important;
  margin-top: 3rem !important;
  min-height: calc(100vh - 75px) !important;
  width: 370px !important;
  /** 1st sub-menu level <li> **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li > ul > li {
  position: relative !important;
  /** 2nd sub-menu level <ul> **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li > ul > li > a {
  padding-left: 20px !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li > ul > li > ul {
  position: fixed !important;
  top: 0px !important;
  left: 358px !important;
  min-height: calc(100vh - 75px) !important;
  width: 380px !important;
  /** 2nd sub-menu level <li> **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li > ul > li > ul > li {
  position: relative !important;
  /** 3rd sub-menu level <ul> **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li > ul > li > ul > li > a {
  padding-left: 20px !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul > li > ul > li > ul > li > ul {
  /** 3rd sub-menu level <li> **/
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul li {
  padding: 0px !important;
  line-height: 54px !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul li ul {
  display: none !important;
  border-left: 2px solid #FFF !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul li ul a {
  font-style: italic !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul li.mega-menu-item-has-children {
  background-image: url("../images/wiredmedia/chevron-right-white.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center right 20px !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul li.mega-menu-item-has-children:hover {
  background-image: url("../images/wiredmedia/chevron-right-purple.svg") !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul li:hover > ul {
  display: inline-block !important;
  border-left: 2px solid white !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul a {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 24px !important;
  line-height: 54px !important;
  color: #FFF !important;
  border-top: 2px solid #1A163D !important;
  border-bottom: 2px solid #1A163D !important;
}
.header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul a:hover, .header-wired .header-top-nav-bar-prestige .nav-links-wrapper .mega-menu-wrap > ul > li > ul a.hover-effect-on {
  color: #AAC915 !important;
  border-top: 2px solid white !important;
  border-bottom: 2px solid white !important;
}
.header-wired.home-page img.light-logo {
  display: block;
}
.header-wired.home-page img.dark-logo {
  display: none;
}
.header-wired.inner-page img.light-logo {
  display: none;
}
.header-wired.inner-page img.dark-logo {
  display: block;
}
.header-wired.scrolled-nav {
  position: fixed !important;
  top: 0px !important;
  background: #FFF !important;
}
.header-wired.scrolled-nav .nav-links-wrapper.center {
  padding-right: 18px !important;
}
@media (min-width: 64.125em) {
  .header-wired.scrolled-nav .nav-links-wrapper.center {
    padding-right: 0px !important;
  }
}
.header-wired.scrolled-nav .mega-menu-wrap > ul > li > a {
  color: #1A163D !important;
}
.header-wired.scrolled-nav img.light-logo {
  display: none !important;
}
.header-wired.scrolled-nav img.dark-logo {
  display: block !important;
}
.header-wired.scrolled-nav .header-phone:hover {
  background: #1A163D !important;
  color: white !important;
}
.header-wired.scrolled-nav.logged-in-user {
  top: 0px !important;
}
@media (min-width: 34.375em) {
  .header-wired.scrolled-nav.logged-in-user {
    top: 32px !important;
  }
}
.header-wired.mega-menu-open {
  transition: background 0.5s ease-in-out;
  background: #1A163D !important;
}
.header-wired.mega-menu-open .mega-menu-wrap > ul > li > a {
  color: #FFF !important;
}
.header-wired.mega-menu-open img.light-logo {
  display: block !important;
}
.header-wired.mega-menu-open img.dark-logo {
  display: none !important;
}

.footer-wired {
  position: relative;
  background-color: #FFFFFF;
  color: #1A163D;
  overflow: hidden;
  padding: 1rem 0px !important;
}
@media (min-width: 56.25em) {
  .footer-wired {
    padding: 3rem 0px !important;
  }
}
.footer-wired .footer-gradient-overlay {
  position: absolute;
  top: -75%;
  left: -50%;
  height: 250%;
  width: 200%;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.8) 100%);
}
@media (min-width: 34.375em) {
  .footer-wired .footer-gradient-overlay {
    animation: spin 12s linear infinite;
  }
}
@media (min-width: 96.875em) {
  .footer-wired .footer-gradient-overlay {
    height: 200vw;
    width: 200vw;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.8) 100%);
  }
}
.footer-wired .floating_button {
  position: fixed;
  bottom: -18px;
  right: calc(10vw - 10px);
  height: 79px;
  width: 177px;
  padding: 0px;
  margin: 0px;
  background-image: url(../images/wiredmedia/section-float-btn-v2.svg);
  background-repeat: no-repeat;
  z-index: 950;
  cursor: pointer;
}
.footer-wired .footer_box {
  z-index: 2;
  width: 100%;
  max-width: 1192px;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  font-weight: unset;
  flex-direction: column !important;
}
@media (min-width: 56.25em) {
  .footer-wired .footer_box {
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.footer-wired .footer_box .footer-col1 {
  width: 100%;
  padding-bottom: 30px;
}
@media (min-width: 56.25em) {
  .footer-wired .footer_box .footer-col1 {
    width: 70%;
  }
}
.footer-wired .footer_box .footer-col1 .sub-col-1 {
  padding-bottom: 30px;
}
.footer-wired .footer_box .footer-col1 li {
  padding-bottom: 15px;
}
.footer-wired .footer_box .footer-col2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 56.25em) {
  .footer-wired .footer_box .footer-col2 {
    align-items: flex-end;
    width: 30%;
  }
}
.footer-wired .footer_box .footer-col2 > div {
  padding-bottom: 20px;
}
.footer-wired .footer_box .footer-col2 div.socials-icon {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
  line-height: normal;
}
.footer-wired .footer_box .footer-col2 div.socials-icon a img {
  height: 24px;
}
.footer-wired .footer_box .footer-col2 div.copyright {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 13px;
  line-height: 17px;
}
.footer-wired .footer_box .sub-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 34.375em) {
  .footer-wired .footer_box .sub-row {
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
  }
}
.footer-wired .footer_box .sub-row .sub-col h4 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 22px;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: row;
  font-size: 18px;
}
@media (min-width: 34.375em) {
  .footer-wired .footer_box .sub-row .sub-col h4 {
    font-size: 15px;
  }
}
@media (min-width: 56.25em) {
  .footer-wired .footer_box .sub-row .sub-col h4 {
    font-size: 18px;
  }
}
.footer-wired .footer_box .sub-row .sub-col .footer-text {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 13px;
  line-height: 17px;
  padding-bottom: 0.5rem;
  min-height: 35px;
}
.footer-wired .footer_box .sub-row .sub-col .open-menu-burger-item-container {
  cursor: pointer !important;
}
.footer-wired .footer_box .sub-row .sub-col .open-menu-burger-item {
  display: inline-block !important;
  margin: 0px 10px !important;
  min-width: 20px !important;
  cursor: pointer !important;
}
.footer-wired .footer_box .sub-row .sub-col .dropdown-effect {
  display: none;
}
.footer-wired .footer_box .sub-row .sub-col .main-nav-prestige ul li {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 13px !important;
  line-height: 17px !important;
  padding-bottom: 0.5rem !important;
  min-height: 35px !important;
}
.footer-wired .footer_box .sub-row .sub-col .main-nav-prestige ul li a {
  text-transform: none !important;
  font-size: 13px !important;
  line-height: 17px !important;
  padding-bottom: 0.5rem !important;
}
.footer-wired .footer_box .sub-row .sub-col .main-nav-prestige ul li > ul {
  margin-left: 10px;
  display: none;
}
.footer-wired .footer_box .sub-row .sub-col .main-nav-prestige .menu-burger-item-children {
  margin-top: 10px;
}
.footer-wired .footer_box .sub-row .sub-col .main-nav-prestige .footer-item-heading {
  display: flex;
  flex-direction: row;
}
.footer-wired .footer_box .sub-row .sub-col .main-nav-prestige .open-menu-burger-item-children-footer {
  display: block !important;
  color: #1A163D !important;
  line-height: 17px !important;
  padding: 0px 10px !important;
}
.footer-wired .footer_box .sub-row .sub-col .main-nav-prestige .footer-items-limit-display :nth-child(n+7) {
  display: none;
}
.footer-wired .footer_box .sub-row .sub-col .main-nav-prestige .footer-items-show-more,
.footer-wired .footer_box .sub-row .sub-col .main-nav-prestige .footer-items-show-less {
  color: #1A163D;
  cursor: pointer;
  font-size: 13px !important;
  line-height: 17px !important;
  margin-bottom: 1.5rem !important;
}

.gfield_validation_message {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  display: inline-block;
  margin-top: 10px;
  color: pink;
  font-size: 15px;
}

.gform_validation_errors h2 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  color: pink;
  line-height: normal;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  font-size: 24px;
}

.breadcrumbs-block {
  position: relative;
  margin: 0px;
  padding: 0px;
  padding-top: calc(90px + 2rem);
}
.breadcrumbs-block.show-mobile {
  display: inline-block;
}
@media (min-width: 34.375em) {
  .breadcrumbs-block.show-mobile {
    display: none;
  }
}
.breadcrumbs-block.show-desktop {
  display: none;
}
@media (min-width: 34.375em) {
  .breadcrumbs-block.show-desktop {
    display: inline-block;
  }
}
.breadcrumbs-block .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}

.blogs-search-grid {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.blogs-search-grid .section__shell {
  position: relative !important;
  gap: 1rem;
  display: flex !important;
  flex-direction: column !important;
}
@media (min-width: 56.25em) {
  .blogs-search-grid .section__shell {
    flex-direction: row !important;
    justify-content: space-between !important;
  }
}
.blogs-search-grid .section__shell .section__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: left;
  width: 100%;
}
@media (min-width: 56.25em) {
  .blogs-search-grid .section__shell .section__nav {
    width: 25%;
  }
}
.blogs-search-grid .section__shell .section__nav .category-filter-mobile {
  display: block;
  border: 1px solid #FFCE00;
  background: lightyellow;
  padding: 10px 16px 8px 16px;
  border-radius: 30px;
}
@media (min-width: 56.25em) {
  .blogs-search-grid .section__shell .section__nav .category-filter-mobile {
    display: none;
  }
}
.blogs-search-grid .section__shell .section__nav .category-filter-mobile select {
  background: lightyellow;
  border: 0px;
  width: 100%;
}
.blogs-search-grid .section__shell .section__nav .category-filter-desktop {
  flex-direction: column;
  justify-content: left;
  display: none;
}
@media (min-width: 56.25em) {
  .blogs-search-grid .section__shell .section__nav .category-filter-desktop {
    display: flex;
  }
}
.blogs-search-grid .section__shell .section__nav .filter-header {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 23px;
  font-style: normal;
  color: #1A163D;
  padding: 8px;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.blogs-search-grid .section__shell .section__nav .filter_category {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 15px;
  padding: 8px;
  cursor: pointer;
  text-decoration: none;
  color: #565467 !important;
}
.blogs-search-grid .section__shell .section__nav .filter_category .filter-icon {
  display: none;
  transition: all 1s ease;
}
.blogs-search-grid .section__shell .section__nav .filter_category:hover {
  background: lightyellow;
}
.blogs-search-grid .section__shell .section__nav .filter_category.active {
  background: #FFCE00;
}
.blogs-search-grid .section__shell .section__nav .filter_category.active .filter-icon {
  display: inline-block;
  margin-right: 5px;
}
.blogs-search-grid .section__shell .section__nav .filter_search_container {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1rem;
  padding: 8px;
  border-radius: 30px;
  font-size: 13px;
  color: #565467 !important;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  background: white;
  width: 100%;
}
@media (min-width: 56.25em) {
  .blogs-search-grid .section__shell .section__nav .filter_search_container {
    width: 90%;
  }
}
.blogs-search-grid .section__shell .section__nav .filter_search_container input {
  width: calc(100% - 30px);
  border: 0px;
  padding: 8px;
  outline: none;
}
.blogs-search-grid .section__shell .section__content {
  width: 100%;
}
@media (min-width: 56.25em) {
  .blogs-search-grid .section__shell .section__content {
    width: 75%;
  }
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .tiles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 34.375em) {
  .blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .image-wrapper {
  width: 100%;
  overflow: hidden;
  min-height: 232px;
}
@media (min-width: 34.375em) {
  .blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .image-wrapper {
    width: 40%;
  }
}
@media (min-width: 34.375em) {
  .blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .image-wrapper {
    min-height: 332px;
    margin-bottom: 0.75rem;
  }
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 34.375em) {
  .blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .image-wrapper img {
    object-fit: cover;
  }
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .card-wrapper {
  padding-bottom: 2rem;
  width: 100%;
}
@media (min-width: 34.375em) {
  .blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .card-wrapper {
    padding-top: 2rem;
    padding-left: 2rem;
    width: 60%;
  }
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .card-wrapper .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 32px;
  font-style: normal;
  line-height: 42px;
  color: #1A163D;
  margin-bottom: 1rem;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .card-wrapper .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
  color: #565467 !important;
  text-align: left;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .card-wrapper .paragraph .read-more {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1rem;
  display: block;
  text-transform: uppercase;
  color: #1A163D;
  line-height: 27px;
  letter-spacing: 1.5px;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .tiles .single-tile .card-wrapper .read-more {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1rem;
  display: block;
  text-transform: uppercase;
  color: #1A163D;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 1.5px;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .no-data-text {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  color: #1A163D;
  text-align: center;
  font-size: 32px;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #1A163D;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container .hide {
  display: none;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container .pager-button {
  border: 1px solid white;
  background-color: rgb(255, 255, 255);
  height: 43px;
  width: 43px;
  z-index: 5;
  padding: 0px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 25px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container .pager-button.pager-disabled {
  opacity: 0.7;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container .pager-prev {
  background-image: url("../images/wiredmedia/slider-arrow-left.png");
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container .pager-next {
  background-image: url("../images/wiredmedia/slider-arrow-right.png");
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container .pager-goto,
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container .pager-link {
  padding-bottom: 8px !important;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  font-weight: 100 !important;
  font-size: 17px !important;
  line-height: 17px !important;
  letter-spacing: -0.25px;
  color: #565467;
  text-decoration: none !important;
}
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container .pager-goto.pager-current,
.blogs-search-grid .section__shell .section__content .blogs-main-page .pager-container .pager-link.pager-current {
  border: 1px solid #1A163D;
}

.blogs-sliders-latest {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.blogs-sliders-latest .section__shell {
  position: relative;
  height: 100%;
}
.blogs-sliders-latest .slick-dots {
  margin-left: 0px;
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.blogs-sliders-latest .slick-dots li.slick-active button {
  background-color: #4D3EFF;
  border: 2px solid #4D3EFF;
}
.blogs-sliders-latest .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: #B2B1B7;
  border: 2px solid #B2B1B7;
  border-radius: 50%;
  padding: 5px;
}
.blogs-sliders-latest .controls {
  align-items: center;
}
.blogs-sliders-latest .controls * {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 5;
  padding: 0px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s ease;
  top: 50% !important;
  height: 43px;
  width: 43px;
  background-size: 25px 20px;
  opacity: 0;
}
@media (min-width: 34.375em) {
  .blogs-sliders-latest .controls * {
    opacity: 1;
  }
}
.blogs-sliders-latest .controls *:hover {
  background-color: rgb(255, 255, 255);
}
.blogs-sliders-latest .controls .slider-prev-blogs {
  background-image: url("../images/wiredmedia/slider-arrow-left.png");
  left: 0.5rem;
}
@media (min-width: 75em) {
  .blogs-sliders-latest .controls .slider-prev-blogs {
    left: 4rem;
  }
}
.blogs-sliders-latest .controls .slider-next-blogs {
  background-image: url("../images/wiredmedia/slider-arrow-right.png");
  right: 0.5rem;
}
@media (min-width: 75em) {
  .blogs-sliders-latest .controls .slider-next-blogs {
    right: 4rem;
  }
}
.blogs-sliders-latest .section__content {
  position: relative;
  padding-bottom: 3rem;
  margin: auto auto;
  max-width: 1192px;
  width: calc(100vw - 2rem);
}
@media (min-width: 34.375em) {
  .blogs-sliders-latest .section__content {
    width: 75vw;
  }
}
.blogs-sliders-latest .section__content .section__header {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 40px;
  line-height: 48px;
  font-style: normal;
  color: #1A163D;
  margin-bottom: 2rem;
}
.blogs-sliders-latest .section__content .blogs-sliders-latest-list .slick-list {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.blogs-sliders-latest .section__content .section__column .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0px;
}
@media (min-width: 34.375em) {
  .blogs-sliders-latest .section__content .section__column .section__inner {
    margin-right: 1rem !important;
  }
}
.blogs-sliders-latest .section__content .section__column .section__inner .image-wrapper {
  width: 100%;
  height: 298px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.blogs-sliders-latest .section__content .section__column .section__inner .image-wrapper img {
  height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.blogs-sliders-latest .section__content .section__column .section__inner .card-wrapper .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-style: normal;
  font-size: 32px;
  line-height: 42px;
  color: #1A163D;
  margin-bottom: 1rem;
}
.blogs-sliders-latest .section__content .section__column .section__inner .card-wrapper .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
  color: #565467 !important;
  text-align: left;
}
.blogs-sliders-latest .section__content .section__column .section__inner .card-wrapper .paragraph .read-more {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1rem;
  display: block;
  text-transform: uppercase;
  color: #1A163D;
  line-height: 27px;
  letter-spacing: 1.5px;
}
.blogs-sliders-latest .section__content .section__column .section__inner .card-wrapper .read-more {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1rem;
  display: block;
  text-transform: uppercase;
  color: #1A163D;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 1.5px;
}

.hero-blog-block {
  position: relative;
  color: #1A163D;
  min-height: 476px;
  margin: 0;
  padding: 0;
}
.hero-blog-block.half-height {
  height: 50vh;
}
.hero-blog-block.full-height {
  height: 100vh;
  max-height: 1920px;
}
.hero-blog-block .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.hero-blog-block .section__shell .breadcrumbs-wired {
  padding-top: calc(90px + 2rem);
  color: #565467;
  margin-bottom: 0px;
}
.hero-blog-block .section__shell .breadcrumbs-wired a {
  color: #565467;
}
.hero-blog-block .section__shell .breadcrumbs-wired a.active {
  font-weight: bold;
}
.hero-blog-block .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 746px;
  margin: auto;
  min-height: calc(290px + 4rem);
  height: calc(100% - 146px - 2rem);
}
.hero-blog-block .content .title {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 57px;
  line-height: 62px;
  text-align: center;
}
.hero-blog-block .content .subtitle {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  margin-top: 1rem;
  font-style: normal;
  font-size: 32px;
  text-align: center;
}
.hero-blog-block .content .description {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 2rem;
  font-size: 17px;
  line-height: 27px;
  text-align: center;
}

.hero-block {
  position: relative;
  color: #FFF;
  margin: 0px;
  padding: 0px;
  text-align: center;
  overflow: hidden;
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  min-height: 100vh;
}
@media (min-width: 34.375em) {
  .hero-block {
    max-height: 830px;
    height: calc(100vh + 4rem);
    min-height: unset;
  }
}
.hero-block .overlay {
  position: absolute;
  top: -75%;
  left: -50%;
  height: 250%;
  width: 200%;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.7) 100%);
}
@media (min-width: 34.375em) {
  .hero-block .overlay {
    animation: spin 12s linear infinite;
  }
}
@media (min-width: 96.875em) {
  .hero-block .overlay {
    height: 200vw;
    width: 200vw;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.8) 100%);
  }
}
.hero-block .image-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
}
.hero-block .image-overlay img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-block .floating_cta_button {
  position: absolute;
  height: 108px;
  width: 108px;
  cursor: pointer;
  right: 10vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  top: 75%;
}
@media (min-width: 34.375em) {
  .hero-block .floating_cta_button {
    top: 65%;
  }
}
.hero-block .floating_cta_button .overlay_logo {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/wiredmedia/hero-overlay-logo.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  animation: spin 12s linear infinite;
}
.hero-block .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.hero-block .hero__content {
  height: 100%;
  min-height: 100vh;
  z-index: 2;
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 34.375em) {
  .hero-block .hero__content {
    max-height: 830px;
    height: calc(100vh + 4rem);
    min-height: unset;
  }
}
@media (min-width: 24.375em) {
  .hero-block .hero__content {
    margin-top: -3rem;
  }
}
.hero-block .hero__content .hero__text p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  max-width: 95%;
  line-height: 22px;
  font-size: 15px;
}
@media (min-width: 56.25em) {
  .hero-block .hero__content .hero__text p {
    line-height: 30px;
    font-size: 20px;
  }
}
@media (min-width: 56.25em) {
  .hero-block .hero__content .hero__text p {
    max-width: 65%;
  }
}
@media (min-width: 68.75em) {
  .hero-block .hero__content .hero__text p {
    max-width: 57%;
  }
}
.hero-block .hero__content .hero__text h1 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  max-width: 95%;
  font-size: 40px;
  line-height: 48px;
}
@media (min-width: 34.375em) {
  .hero-block .hero__content .hero__text h1 {
    font-size: 57px;
    line-height: 62px;
  }
}
@media (min-width: 56.25em) {
  .hero-block .hero__content .hero__text h1 {
    max-width: 59%;
  }
}
@media (min-width: 68.75em) {
  .hero-block .hero__content .hero__text h1 {
    max-width: 57%;
  }
}
.hero-block .hero__content .hero__actions {
  margin-top: 2rem;
}
.hero-block .hero__content .hero__actions .btn {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  padding: 20px 30px 16px 30px;
  font-weight: 900 !important;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.5px;
  border-radius: 12px;
  min-width: 192px;
  text-align: center;
  letter-spacing: -0.4 !important;
  z-index: 10;
}
.hero-block .hero__content .hero__actions .btn .btn-arrow {
  display: none;
  margin-left: 15px;
  height: 13px;
}

.hero-block-common {
  position: relative;
  margin: 0px;
  padding: 0px;
  min-height: 448px !important;
}
@media (min-width: 56.25em) {
  .hero-block-common {
    min-height: unset !important;
  }
}
.hero-block-common.bg-dark {
  background: #1A1A1D;
}
.hero-block-common.bg-dark .section__content h3 {
  color: #FFF;
}
.hero-block-common.bg-dark .section__content p {
  color: #FFF;
}
.hero-block-common.bg-transparent {
  background: transparent;
}
.hero-block-common.bg-transparent .section__content h3 {
  color: #1A163D;
}
.hero-block-common.bg-transparent .section__content p {
  color: #565467;
}
.hero-block-common .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
  padding-top: 3rem;
}
@media (min-width: 56.25em) {
  .hero-block-common .section__shell {
    padding-bottom: 3rem;
  }
}
.hero-block-common .section__shell .breadcrumbs-wired {
  padding-top: calc(90px - 1rem);
}
.hero-block-common .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #FFF;
  gap: 1.5rem;
}
@media (min-width: 56.25em) {
  .hero-block-common .section__content {
    flex-direction: row;
    justify-content: space-between;
  }
  .hero-block-common .section__content.image-right {
    flex-direction: row-reverse;
  }
}
.hero-block-common .section__content .col-left {
  position: relative;
  padding-bottom: 1rem;
  padding-right: 0px;
  width: 100%;
}
@media (min-width: 56.25em) {
  .hero-block-common .section__content .col-left {
    width: 70%;
  }
}
@media (min-width: 56.25em) {
  .hero-block-common .section__content .col-left.with-image {
    width: 50%;
  }
}
@media (min-width: 56.25em) {
  .hero-block-common .section__content .col-left.with-image p {
    padding-right: 0px;
  }
}
.hero-block-common .section__content .col-right {
  position: relative;
  width: 100%;
  padding-left: 0px;
}
@media (min-width: 56.25em) {
  .hero-block-common .section__content .col-right {
    width: 30%;
  }
}
.hero-block-common .section__content .col-right.with-image img {
  position: absolute;
  width: 100%;
  height: 275px;
  object-fit: contain;
}
@media (min-width: 56.25em) {
  .hero-block-common .section__content .col-right.with-image {
    width: 50%;
  }
  .hero-block-common .section__content .col-right.with-image img {
    height: 548px;
    object-fit: cover;
  }
}
.hero-block-common .section__content h1, .hero-block-common .section__content h2, .hero-block-common .section__content h3, .hero-block-common .section__content h4 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  position: relative;
  z-index: 10;
  font-size: 40px;
  line-height: 48px;
}
@media (min-width: 56.25em) {
  .hero-block-common .section__content h1, .hero-block-common .section__content h2, .hero-block-common .section__content h3, .hero-block-common .section__content h4 {
    font-size: 57px;
    line-height: 62px;
  }
}
.hero-block-common .section__content p {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  position: relative;
  margin-top: 30px;
  z-index: 10;
  padding-right: 0px;
  font-size: 32px;
  line-height: 41px;
}
@media (min-width: 56.25em) {
  .hero-block-common .section__content p {
    padding-right: 25%;
    font-size: 30px;
    line-height: 39px;
  }
}
.hero-block-common .section__content .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 40px;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.5px;
  border-radius: 12px;
  z-index: 10;
}
.hero-block-common .section__content .btn .btn-arrow {
  display: none;
  margin-left: 15px;
}
.hero-block-common .section__content .btn:hover .btn-arrow {
  display: inline-block;
}

.hero-block-design-2 {
  position: relative;
  color: #FFF;
  margin: 0px;
  padding: 0px;
  text-align: center;
  overflow: hidden;
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 3rem;
  padding-bottom: 4rem;
  max-height: unset;
  height: unset;
  min-height: 100vh;
}
@media (min-width: 56.25em) {
  .hero-block-design-2 {
    max-height: 860px;
    height: calc(100vh + 4rem);
    min-height: unset;
  }
}
.hero-block-design-2 .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.hero-block-design-2 .section__shell .breadcrumbs-wired {
  padding-top: 72px;
}
.hero-block-design-2 .hero__content {
  position: relative;
  height: 100%;
  margin: auto auto;
  max-width: 90%;
}
@media (min-width: 34.375em) {
  .hero-block-design-2 .hero__content {
    max-width: 70%;
  }
}
.hero-block-design-2 .hero__content .hero__text h1 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  margin-bottom: 25px;
  color: #1A163D;
  text-align: center;
  font-size: 40px;
  line-height: 48px;
}
@media (min-width: 34.375em) {
  .hero-block-design-2 .hero__content .hero__text h1 {
    font-size: 57px;
    line-height: 62px;
  }
}
.hero-block-design-2 .hero__content .hero__text h3 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  text-align: center;
  font-size: 30px;
  line-height: 39px;
}
@media (min-width: 34.375em) {
  .hero-block-design-2 .hero__content .hero__text h3 {
    font-size: 32px;
    line-height: 41px;
  }
}
.hero-block-design-2 .hero__content .hero__text p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 22px;
}
@media (min-width: 34.375em) {
  .hero-block-design-2 .hero__content .hero__text p {
    font-size: 17px;
    line-height: 27px;
  }
}
.hero-block-design-2 .hero__content .image-gallery-list {
  margin-bottom: 3rem;
  display: flex;
  gap: 0.75rem;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
@media (min-width: 34.375em) {
  .hero-block-design-2 .hero__content .image-gallery-list {
    gap: 2rem;
  }
}
.hero-block-design-2 .hero__content .image-gallery-list .section__column {
  width: 250px;
  height: 158px;
  text-align: center;
}
.hero-block-design-2 .hero__content .image-gallery-list .section__column img {
  height: 95px;
  width: 100%;
  object-fit: contain;
}
@media (min-width: 34.375em) {
  .hero-block-design-2 .hero__content .image-gallery-list .section__column img {
    height: 100%;
  }
}
.hero-block-design-2 .hero__content .image-gallery-list .section__column div {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  color: #1A163D;
  font-style: italic;
  font-size: 17px;
  line-height: 21px;
}
@media (min-width: 64.125em) {
  .hero-block-design-2 .hero__content .image-gallery-list .section__column div {
    font-size: 23px;
    line-height: 48px;
  }
}
.hero-block-design-2 .hero__content .section__link {
  padding-top: 1.5rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-block-design-2 .hero__content .section__link a {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-weight: 900;
  padding: 0px 30px;
  font-size: 15px;
  letter-spacing: normal;
  border-radius: 12px;
  border: 2px solid #1A163D;
  height: 56px;
  color: #1A163D;
  background: #AAC915;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-block-design-2 .hero__content .section__link a:hover {
  background: #FFF;
}

.pum-overlay.pum-active,
.pum-overlay.pum-active .popmake.active {
  display: block !important;
  opacity: 1 !important; /* Add this line if needed. */
}

.pum-container {
  background: white !important;
}

.popmake-close {
  top: 35px !important;
  right: 15px !important;
  color: white !important;
  font-size: 35px !important;
  font-weight: 100 !important;
}

.popmake-title {
  background: #AAC915 !important;
  padding: 30px 20px 20px 20px !important;
  text-align: center !important;
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-weight: 400 !important;
  color: #FFF !important;
  font-size: 32px !important;
  line-height: 32px !important;
}

.popmake-content .gform_wrapper {
  margin: 0 auto !important;
  padding: 30px 20px 30px 20px !important;
  max-width: 883px !important;
}
.popmake-content .gform_wrapper .gfield_label {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 15px !important;
  color: #1A163D !important;
}
.popmake-content .gform_wrapper .gform_validation_errors {
  padding: 16px 16px 0px 48px !important;
}
.popmake-content .gform_wrapper .ginput_container_text > input,
.popmake-content .gform_wrapper .ginput_container_phone > input,
.popmake-content .gform_wrapper .ginput_container_email > input,
.popmake-content .gform_wrapper textarea,
.popmake-content .gform_wrapper select {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  background: transparent !important;
  border: 1px solid #1A163D !important;
  border-radius: 5px !important;
  width: 100% !important;
  font-size: 15px !important;
  line-height: 27px !important;
  padding: 10px !important;
}
.popmake-content .gform_wrapper textarea {
  height: 100px;
}
.popmake-content .gform_wrapper .ginput_container_checkbox,
.popmake-content .gform_wrapper .field_description_below {
  border: 0px;
}
.popmake-content .gform_wrapper .gchoice > label {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 13px;
}
.popmake-content .gform_wrapper #field_submit {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: end;
  width: 100%;
}
.popmake-content .gform_wrapper .gform-button,
.popmake-content .gform_wrapper .gform_button {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-weight: 900;
  padding: 0px 30px !important;
  font-size: 15px;
  letter-spacing: normal;
  height: 56px;
  border-radius: 12px !important;
  z-index: 10;
  background: #AAC915;
  border: 1px solid #AAC915;
  color: #1A163D !important;
}
.popmake-content .gform_wrapper .gform-button:hover,
.popmake-content .gform_wrapper .gform_button:hover {
  background: #FFF;
  color: #1A163D !important;
}

.hero-block-design-2-modified {
  position: relative;
  color: #FFF;
  margin: 0px;
  padding: 0px;
  text-align: center;
  overflow: hidden;
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.hero-block-design-2-modified .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.hero-block-design-2-modified .section__shell .breadcrumbs-wired {
  padding-top: 72px;
}
.hero-block-design-2-modified .hero__content {
  position: relative;
  height: 100%;
  margin: auto auto;
  max-width: 90%;
}
@media (min-width: 34.375em) {
  .hero-block-design-2-modified .hero__content {
    max-width: 70%;
  }
}
.hero-block-design-2-modified .hero__content .hero__text h1 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  margin-bottom: 25px;
  color: #1A163D;
  text-align: center;
  font-size: 40px;
  line-height: 48px;
}
@media (min-width: 34.375em) {
  .hero-block-design-2-modified .hero__content .hero__text h1 {
    font-size: 57px;
    line-height: 62px;
  }
}
.hero-block-design-2-modified .hero__content .hero__text h3 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  text-align: center;
  font-size: 30px;
  line-height: 39px;
}
@media (min-width: 34.375em) {
  .hero-block-design-2-modified .hero__content .hero__text h3 {
    font-size: 32px;
    line-height: 41px;
  }
}
.hero-block-design-2-modified .hero__content .hero__text p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 22px;
}
@media (min-width: 34.375em) {
  .hero-block-design-2-modified .hero__content .hero__text p {
    font-size: 17px;
    line-height: 27px;
  }
}
.hero-block-design-2-modified .hero__content .image-gallery-list {
  margin-bottom: 3rem;
  display: flex;
  gap: 0.75rem;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
@media (min-width: 34.375em) {
  .hero-block-design-2-modified .hero__content .image-gallery-list {
    gap: 2rem;
  }
}
.hero-block-design-2-modified .hero__content .image-gallery-list .section__column {
  width: 250px;
  height: 158px;
  text-align: center;
}
.hero-block-design-2-modified .hero__content .image-gallery-list .section__column img {
  height: 95px;
  width: 100%;
  object-fit: contain;
}
@media (min-width: 34.375em) {
  .hero-block-design-2-modified .hero__content .image-gallery-list .section__column img {
    height: 100%;
  }
}
.hero-block-design-2-modified .hero__content .image-gallery-list .section__column div {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  color: #1A163D;
  font-style: italic;
  font-size: 17px;
  line-height: 21px;
}
@media (min-width: 64.125em) {
  .hero-block-design-2-modified .hero__content .image-gallery-list .section__column div {
    font-size: 23px;
    line-height: 48px;
  }
}

.hero-block-page-content {
  position: relative;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}
.hero-block-page-content .section__shell {
  position: relative;
  height: 100%;
}
.hero-block-page-content .section__shell .breadcrumbs-wired {
  padding-top: calc(90px + 2rem);
}
.hero-block-page-content .hero__content {
  position: relative;
}
.hero-block-page-content .hero__content .hero__text h1 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  color: #1A163D;
  line-height: 62px;
  font-size: 48px;
}
@media (min-width: 34.375em) {
  .hero-block-page-content .hero__content .hero__text h1 {
    font-size: 57px;
  }
}
.hero-block-page-content .hero__content .hero__text .flex-box-list {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 5px;
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  color: #1A163D;
  line-height: 27px !important;
  font-size: 17px;
}
@media (min-width: 56.25em) {
  .hero-block-page-content .hero__content .hero__text .flex-box-list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
  }
}
@media (min-width: 34.375em) {
  .hero-block-page-content .hero__content .hero__text .flex-box-list {
    font-size: 22px;
  }
}
.hero-block-page-content .hero__content .hero__text .flex-box-list * {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  color: #1A163D;
  line-height: 27px !important;
  padding: 0px;
  margin: 0px;
  text-decoration: none;
  font-size: 17px;
}
@media (min-width: 34.375em) {
  .hero-block-page-content .hero__content .hero__text .flex-box-list * {
    font-size: 22px;
  }
}
.hero-block-page-content .hero__content .hero__text p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  line-height: 27px;
  font-size: 17px;
}

.footer-contact-form {
  position: relative;
  margin: 0px;
  padding: 0px;
  padding-bottom: 3rem;
  z-index: 2;
}
.footer-contact-form .section__shell {
  position: relative;
  height: 100%;
  padding: 0px;
}
@media (min-width: 56.25em) {
  .footer-contact-form .section__shell {
    padding: 0px;
  }
}
.footer-contact-form .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 56.25em) {
  .footer-contact-form .section__content {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-contact-form .section__content.image-right {
    flex-direction: row-reverse;
  }
}
.footer-contact-form .section__content .col-left {
  padding: 1rem;
  width: 100%;
}
@media (min-width: 56.25em) {
  .footer-contact-form .section__content .col-left {
    padding: 1.5rem 0.75rem 1.5rem 0.75rem;
    width: 35%;
  }
}
.footer-contact-form .section__content .col-left .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  padding: 0px !important;
  margin: 0px !important;
  font-size: 40px !important;
  font-style: normal !important;
  line-height: 48px !important;
}
.footer-contact-form .section__content .col-left .heading p {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  padding: 0px !important;
  margin: 0px !important;
  font-style: normal !important;
  font-size: 40px !important;
  line-height: 48px !important;
}
.footer-contact-form .section__content .col-left .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1rem !important;
  font-size: 17px;
  line-height: 27px;
}
.footer-contact-form .section__content .col-left .paragraph p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
}
.footer-contact-form .section__content .col-right {
  background-color: #E8E4EA;
  color: #1A163D;
  width: 100%;
  padding: 3rem 2rem;
}
@media (min-width: 56.25em) {
  .footer-contact-form .section__content .col-right {
    width: 65%;
    padding: 2rem 2rem;
  }
}
.footer-contact-form .section__content .col-right .gform_heading {
  display: none;
}
.footer-contact-form .section__content .col-right .gform_fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  gap: 1.5rem;
}
.footer-contact-form .section__content .col-right .gfield--width-half {
  display: inline-block;
  width: 100%;
}
@media (min-width: 56.25em) {
  .footer-contact-form .section__content .col-right .gfield--width-half {
    width: 45%;
  }
}
.footer-contact-form .section__content .col-right .gfield--width-quarter {
  width: 25%;
}
.footer-contact-form .section__content .col-right .ginput_container {
  padding-top: 10px;
}
.footer-contact-form .section__content .col-right .gfield_label {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 15px;
}
.footer-contact-form .section__content .col-right .ginput_container_text > input,
.footer-contact-form .section__content .col-right .ginput_container_phone > input,
.footer-contact-form .section__content .col-right .ginput_container_email > input,
.footer-contact-form .section__content .col-right textarea {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  background: transparent;
  border: 1px solid #1A163D;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  line-height: 27px;
  padding: 10px;
}
.footer-contact-form .section__content .col-right textarea {
  height: 100px;
}
.footer-contact-form .section__content .col-right .ginput_container_checkbox,
.footer-contact-form .section__content .col-right .field_description_below {
  border: 0px;
}
.footer-contact-form .section__content .col-right .gchoice > label {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 13px;
}
.footer-contact-form .section__content .col-right #field_submit {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: end;
  width: 100%;
  padding-right: 1.5rem;
}
.footer-contact-form .section__content .col-right .gform-button,
.footer-contact-form .section__content .col-right .gform_button {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-weight: 900;
  padding: 0px 30px !important;
  font-size: 15px;
  letter-spacing: normal;
  height: 56px;
  border-radius: 12px !important;
  z-index: 10;
  background: #AAC915;
  border: 1px solid #AAC915;
  color: #1A163D !important;
}
.footer-contact-form .section__content .col-right .gform-button:hover,
.footer-contact-form .section__content .col-right .gform_button:hover {
  background: #FFF;
  border: 1px solid #FFF;
  color: #1A163D !important;
}
.footer-contact-form .section__content .col-right .gfield_required {
  display: inline-block !important;
  margin-left: 1px !important;
}

.contact-form-light {
  position: relative;
  margin: 0px;
  padding: 0px;
}
.contact-form-light .section__shell {
  position: relative;
  height: 100%;
}
.contact-form-light .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 56.25em) {
  .contact-form-light .section__content {
    flex-direction: row;
    justify-content: space-between;
  }
  .contact-form-light .section__content.image-right {
    flex-direction: row-reverse;
  }
}
.contact-form-light .section__content .col-left {
  padding: 1rem 0rem 1rem 0rem;
  width: 100%;
}
@media (min-width: 56.25em) {
  .contact-form-light .section__content .col-left {
    padding: 1.5rem 0.75rem 1.5rem 0.75rem;
    width: 35%;
  }
}
.contact-form-light .section__content .col-left .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  padding: 0px !important;
  margin: 0px !important;
  font-size: 40px !important;
  font-style: normal !important;
  line-height: 48px !important;
  margin-bottom: 1rem !important;
}
.contact-form-light .section__content .col-left .heading p {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  padding: 0px !important;
  margin: 0px !important;
  font-style: normal !important;
  font-size: 40px !important;
  line-height: 48px !important;
}
.contact-form-light .section__content .col-left .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
}
.contact-form-light .section__content .col-left .paragraph p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
}
.contact-form-light .section__content .col-left .paragraph a {
  color: #FFF;
  text-decoration: none;
}
.contact-form-light .section__content .col-right {
  padding: 2rem;
  background-color: #1A1A1D;
  color: #FFF;
  width: 100%;
}
@media (min-width: 56.25em) {
  .contact-form-light .section__content .col-right {
    width: 65%;
  }
}
.contact-form-light .section__content .col-right .gform_heading {
  display: none;
}
.contact-form-light .section__content .col-right .gform_fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  gap: 1.5rem;
}
.contact-form-light .section__content .col-right .gfield--width-half {
  display: inline-block;
  width: 100%;
}
@media (min-width: 56.25em) {
  .contact-form-light .section__content .col-right .gfield--width-half {
    width: 45%;
  }
}
.contact-form-light .section__content .col-right .gfield--width-quarter {
  width: 25%;
}
.contact-form-light .section__content .col-right .ginput_container {
  padding-top: 10px;
}
.contact-form-light .section__content .col-right .gfield_label {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 15px;
}
.contact-form-light .section__content .col-right .ginput_container_text > input,
.contact-form-light .section__content .col-right .ginput_container_phone > input,
.contact-form-light .section__content .col-right .ginput_container_email > input,
.contact-form-light .section__content .col-right textarea {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  background: transparent;
  border: 1px solid #FFF;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  line-height: 27px;
  padding: 10px;
}
.contact-form-light .section__content .col-right textarea {
  height: 100px;
}
.contact-form-light .section__content .col-right .ginput_container_checkbox,
.contact-form-light .section__content .col-right .field_description_below {
  border: 0px;
}
.contact-form-light .section__content .col-right .gchoice > label {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 13px;
}
.contact-form-light .section__content .col-right #field_submit {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: end;
  width: 100%;
  padding-right: 1.5rem;
}
.contact-form-light .section__content .col-right .gform-button,
.contact-form-light .section__content .col-right .gform_button {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  padding: 15px 30px 12px 30px;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 25px;
  border-radius: 12px;
  z-index: 10;
  background: #AAC915;
  border: 1px solid #AAC915;
  color: #FFF !important;
}
.contact-form-light .section__content .col-right .gform-button:hover,
.contact-form-light .section__content .col-right .gform_button:hover {
  background: #FFF;
  border: 1px solid #FFF;
  color: #1A163D !important;
}
.contact-form-light .section__content .col-right .gfield_required {
  display: inline-block !important;
  margin-left: 1px !important;
}

.contact-form-overlap {
  position: relative;
  margin: 0px;
  padding: 0px;
  z-index: 10;
}
@media (min-width: 24.375em) {
  .contact-form-overlap {
    margin: -2rem 0px 0px 0px;
  }
}
@media (min-width: 56.25em) {
  .contact-form-overlap {
    margin: -4rem 0px 0px 0px;
  }
}
.contact-form-overlap .section__shell {
  position: relative;
  height: 100%;
}
.contact-form-overlap .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 56.25em) {
  .contact-form-overlap .section__content {
    flex-direction: row;
    justify-content: space-between;
  }
  .contact-form-overlap .section__content.image-right {
    flex-direction: row-reverse;
  }
}
.contact-form-overlap .section__content .col-left {
  padding-top: 1.5rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  width: 100%;
}
@media (min-width: 56.25em) {
  .contact-form-overlap .section__content .col-left {
    padding: 1.5rem 0.75rem 1.5rem 0.75rem;
    width: 35%;
  }
}
.contact-form-overlap .section__content .col-left .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  padding: 0px !important;
  margin: 0px !important;
  font-size: 40px !important;
  font-style: normal !important;
  line-height: 48px !important;
}
.contact-form-overlap .section__content .col-left .heading p {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  padding: 0px !important;
  margin: 0px !important;
  font-style: normal !important;
  font-size: 40px !important;
  line-height: 48px !important;
}
.contact-form-overlap .section__content .col-left .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1rem !important;
  font-size: 17px;
  line-height: 27px;
}
.contact-form-overlap .section__content .col-left .paragraph p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
}
.contact-form-overlap .section__content .col-right {
  padding: 2rem;
  background-color: #1A1A1D;
  color: #FFF;
  width: 100%;
}
@media (min-width: 56.25em) {
  .contact-form-overlap .section__content .col-right {
    width: 65%;
  }
}
.contact-form-overlap .section__content .col-right .gform_heading {
  display: none;
}
.contact-form-overlap .section__content .col-right .gform_fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  gap: 1.5rem;
}
.contact-form-overlap .section__content .col-right .gfield--width-half {
  display: inline-block;
  width: 100%;
}
@media (min-width: 56.25em) {
  .contact-form-overlap .section__content .col-right .gfield--width-half {
    width: 45%;
  }
}
.contact-form-overlap .section__content .col-right .gfield--width-quarter {
  width: 25%;
}
.contact-form-overlap .section__content .col-right .ginput_container {
  padding-top: 10px;
}
.contact-form-overlap .section__content .col-right .gfield_label {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 15px;
}
.contact-form-overlap .section__content .col-right .ginput_container_text > input,
.contact-form-overlap .section__content .col-right .ginput_container_phone > input,
.contact-form-overlap .section__content .col-right .ginput_container_email > input,
.contact-form-overlap .section__content .col-right textarea {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  background: transparent;
  border: 1px solid #FFF;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  line-height: 27px;
  padding: 10px;
}
.contact-form-overlap .section__content .col-right textarea {
  height: 100px;
}
.contact-form-overlap .section__content .col-right .ginput_container_checkbox,
.contact-form-overlap .section__content .col-right .field_description_below {
  border: 0px;
}
.contact-form-overlap .section__content .col-right .gchoice > label {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 13px;
}
.contact-form-overlap .section__content .col-right #field_submit {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: end;
  width: 100%;
  padding-right: 1.5rem;
}
.contact-form-overlap .section__content .col-right .gform-button {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.5px;
  border-radius: 12px;
  z-index: 10;
  background: #AAC915;
  border: 1px solid #AAC915;
  color: #FFF;
}
.contact-form-overlap .section__content .col-right .gform-button:hover {
  background: #FFF;
  border: 1px solid #FFF;
  color: #1A163D;
}
.contact-form-overlap .section__content .col-right .gfield_required {
  display: inline-block !important;
  margin-left: 1px !important;
}

.faq-accordion {
  position: relative;
  margin: 3rem 0px 0px 0px;
  padding: 0px;
}
.faq-accordion .section__shell {
  position: relative;
  height: 100%;
}
.faq-accordion .section_header {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  position: relative;
  font-size: 40px;
  line-height: 48px;
  color: #AAC915;
  padding-bottom: 1rem;
}
.faq-accordion .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
@media (min-width: 56.25em) {
  .faq-accordion .section__content {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
}
.faq-accordion .section__content .section__row {
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #FFF;
  padding-top: 20px;
  padding-bottom: 15px;
}
.faq-accordion .section__content .section__row.active .heading span {
  background-image: url("../images/wiredmedia/minus-white.png");
}
.faq-accordion .section__content .section__row .heading {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 22px;
  line-height: 27px;
  color: #FFF;
  text-transform: none;
  padding-right: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.faq-accordion .section__content .section__row .heading span {
  display: inline-block;
  position: absolute;
  right: 0px;
  transition: all 0.5s ease-in-out;
  background-image: url("../images/wiredmedia/plus-white.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 27px;
  width: 27px;
}
.faq-accordion .section__content .section__row .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  display: none;
  font-size: 17px;
  line-height: 27px;
  color: #FFF;
  margin-top: 1rem;
  padding-right: 30px;
}

.full-image-cta-block {
  position: relative;
  margin: 0px;
  padding: 0px 0px 0px 0px;
}
@media (min-width: 34.375em) {
  .full-image-cta-block {
    padding: 0px 0px 0px 0px;
  }
}
.full-image-cta-block .row-top {
  position: relative;
  height: 261px;
}
@media (min-width: 34.375em) {
  .full-image-cta-block .row-top {
    height: calc(261px + 3rem);
  }
}
.full-image-cta-block .row-top img {
  position: absolute;
  bottom: 0px;
  left: 0px;
  max-height: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
  display: block;
}
@media (min-width: 56.25em) {
  .full-image-cta-block .row-top img {
    display: none;
    object-fit: cover;
  }
}
.full-image-cta-block .row-top .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(26, 26, 29, 0) 75%, rgb(26, 26, 29) 100%);
  opacity: 0;
}
@media (min-width: 34.375em) {
  .full-image-cta-block .row-top .overlay {
    opacity: 0;
  }
}
.full-image-cta-block .row-bottom {
  position: relative;
  height: 261px;
}
@media (min-width: 46.875em) {
  .full-image-cta-block .row-bottom {
    height: calc(261px + 3rem);
  }
}
.full-image-cta-block .row-bottom img {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: none;
}
@media (min-width: 56.25em) {
  .full-image-cta-block .row-bottom img {
    display: block;
  }
}
.full-image-cta-block .row-bottom.remove_on_mobile {
  display: none;
}
@media (min-width: 56.25em) {
  .full-image-cta-block .row-bottom.remove_on_mobile {
    display: block;
  }
}
.full-image-cta-block .section__shell {
  position: relative;
  top: -251px;
  text-align: left;
  width: 1192px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  overflow: hidden;
  height: 522px;
  padding: 1rem;
}
@media (min-width: 34.375em) {
  .full-image-cta-block .section__shell {
    height: 522px;
    padding: 3rem;
  }
}
.full-image-cta-block .section__shell .section__content {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #1A163D;
}
@media (min-width: 56.25em) {
  .full-image-cta-block .section__shell .section__content {
    color: #FFF;
  }
}
.full-image-cta-block .section__shell .section__content h3 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 30px;
  line-height: 48px;
  text-transform: none;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
@media (min-width: 34.375em) {
  .full-image-cta-block .section__shell .section__content h3 {
    font-size: 40px;
    width: 70%;
  }
}
.full-image-cta-block .section__shell .section__content p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 10px;
  font-size: 17px;
  line-height: 27px;
  text-align: left;
  text-decoration: none;
  width: 80%;
}
@media (min-width: 34.375em) {
  .full-image-cta-block .section__shell .section__content p {
    width: 60%;
  }
}
.full-image-cta-block .section__shell .section__content .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  font-size: 15px;
  border-radius: 12px;
  padding: 10px;
}
.full-image-cta-block .section__shell .section__content .btn span {
  display: inline-block;
  background-image: url("../images/wiredmedia/arrow-right-white.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 20px;
  width: 28px;
}
.full-image-cta-block .section__shell.custom-anchor-tag:hover img, .full-image-cta-block .section__shell.anchor-effect:hover img {
  transition: all 0.5s ease-in-out;
  transform: scale(1.05);
}
.full-image-cta-block .section__shell.custom-anchor-tag:hover .section__content .btn span, .full-image-cta-block .section__shell.anchor-effect:hover .section__content .btn span {
  width: 38px;
}

.global-team-gallery {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.global-team-gallery .section__shell {
  position: relative;
  height: 100%;
  max-width: calc(958px + 2rem);
}
.global-team-gallery .block-heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  width: 100%;
  margin-bottom: 2rem;
  font-size: 40px;
  line-height: 48px;
  color: #1A163D;
}
.global-team-gallery .section__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}
.global-team-gallery .section__content .section__column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2rem;
  width: calc(50% - 0.5rem);
}
@media (min-width: 34.375em) {
  .global-team-gallery .section__content .section__column {
    width: calc(33% - 0.5rem);
  }
}
.global-team-gallery .section__content .section__column img {
  object-fit: cover;
  width: 100%;
  max-height: 340px;
}
.global-team-gallery .section__content .section__column .name {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  margin-top: 1rem;
  line-height: 41px;
  color: #1A163D;
  font-size: 19px;
}
@media (min-width: 34.375em) {
  .global-team-gallery .section__content .section__column .name {
    font-size: 30px;
  }
}
.global-team-gallery .section__content .section__column .title {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  line-height: 27px;
  color: #565467;
  font-size: 14px;
}
@media (min-width: 34.375em) {
  .global-team-gallery .section__content .section__column .title {
    font-size: 17px;
  }
}

.global-three-column-content-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.global-three-column-content-block .section__shell {
  position: relative;
  height: 100%;
}
.global-three-column-content-block .section__content {
  position: relative;
  margin: auto auto;
  max-width: 1192px;
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 34.375em) {
  .global-three-column-content-block .section__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.global-three-column-content-block .section__content .section__header {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 40px;
  line-height: 48px;
  color: #1A163D;
  margin-bottom: 0.75rem;
}
.global-three-column-content-block .section__content .section__column {
  display: inline-block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  width: 100%;
}
@media (min-width: 34.375em) {
  .global-three-column-content-block .section__content .section__column {
    width: 32%;
  }
}
.global-three-column-content-block .section__content .section__column .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0px;
}
@media (min-width: 34.375em) {
  .global-three-column-content-block .section__content .section__column .section__inner {
    padding: 1rem;
  }
}
@media (min-width: 34.375em) {
  .global-three-column-content-block .section__content .section__column .section__inner {
    margin-right: 1rem !important;
  }
}
.global-three-column-content-block .section__content .section__column .section__inner .image-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.global-three-column-content-block .section__content .section__column .section__inner .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.global-three-column-content-block .section__content .section__column .section__inner .card-wrapper .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 30px;
  line-height: 32px;
  color: #1A163D;
  margin-bottom: 0.75rem;
  transition: all 2s linear;
}
.global-three-column-content-block .section__content .section__column .section__inner .card-wrapper .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
  color: #565467 !important;
  text-align: left;
  transition: all 2s linear;
}
.global-three-column-content-block .section__content .section__column .section__inner .card-wrapper .read-more {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1A163D;
  font-size: 15px;
  line-height: 30px;
}

.global-three-column-zoom-in-cta-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.global-three-column-zoom-in-cta-block .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.global-three-column-zoom-in-cta-block .slick-dots {
  margin-left: 0px;
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.global-three-column-zoom-in-cta-block .slick-dots li.slick-active button {
  background-color: #50A5F9;
  border: 2px solid #50A5F9;
}
.global-three-column-zoom-in-cta-block .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: #B2B1B7;
  border: 2px solid #B2B1B7;
  border-radius: 50%;
  padding: 5px;
}
.global-three-column-zoom-in-cta-block .slick-list {
  padding: 0px !important;
}
.global-three-column-zoom-in-cta-block .slick-list .slick-current {
  max-width: 75vw;
  margin-right: 5vw;
}
@media (min-width: 34.375em) {
  .global-three-column-zoom-in-cta-block .slick-list .slick-current {
    max-width: 100vw;
    margin-right: 0px;
  }
}
.global-three-column-zoom-in-cta-block .slick-list .section__column {
  height: 445px;
}
.global-three-column-zoom-in-cta-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
@media (min-width: 34.375em) {
  .global-three-column-zoom-in-cta-block .section__content {
    justify-content: space-between;
    flex-flow: row wrap;
    flex-wrap: nowrap;
  }
}
.global-three-column-zoom-in-cta-block .section__content .section__column {
  position: relative;
  display: flex !important;
  flex-direction: column;
  height: 529px;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 34.375em) {
  .global-three-column-zoom-in-cta-block .section__content .section__column {
    width: calc(33.3% - 0.5rem);
  }
}
.global-three-column-zoom-in-cta-block .section__content .section__column .section__row {
  overflow: hidden !important;
  position: relative;
  background: #FFF;
  text-decoration: none;
  height: 100%;
}
.global-three-column-zoom-in-cta-block .section__content .section__column .section__row.height-half {
  height: 50%;
}
.global-three-column-zoom-in-cta-block .section__content .section__column .section__row.custom-anchor-tag:hover img {
  transition: all 0.5s ease-in-out;
  transform: scale(1.05);
}
.global-three-column-zoom-in-cta-block .section__content .section__column .section__row.custom-anchor-tag:hover .btn span {
  width: 38px;
}
.global-three-column-zoom-in-cta-block .section__content .section__column .section__row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.global-three-column-zoom-in-cta-block .section__content .section__column .section__row .overlay {
  position: absolute;
  top: 0%;
  left: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.global-three-column-zoom-in-cta-block .section__content .section__column .section__row .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  width: 60%;
  bottom: 1rem;
  left: 1rem;
  position: absolute;
  font-size: 30px;
  line-height: 39px;
  color: #FFF;
}
.global-three-column-zoom-in-cta-block .section__content .section__column .section__row .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 10px;
  border-radius: 12px;
}
.global-three-column-zoom-in-cta-block .section__content .section__column .section__row .btn span {
  display: inline-block;
  background-image: url("../images/wiredmedia/arrow-right-white.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 20px;
  width: 28px;
}

.logo-gallery {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.logo-gallery .section__shell {
  position: relative;
  height: 100%;
}
.logo-gallery .section__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.logo-gallery .section__content .section__column {
  background: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem !important;
  margin-bottom: 0.75rem;
  height: calc(50vw - 0.375rem);
  width: calc(50% - 0.375rem);
}
@media (min-width: 34.375em) {
  .logo-gallery .section__content .section__column {
    max-height: calc(298px - 0.5rem);
    height: calc(25vw - 0.5rem);
    width: calc(25% - 0.5rem);
  }
}
.logo-gallery .section__content .section__column a {
  height: 100%;
  width: 100%;
}
.logo-gallery .section__content .section__column a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.logo-gallery-post-type {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.logo-gallery-post-type .section__shell {
  position: relative;
  height: 100%;
}
.logo-gallery-post-type .section__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.logo-gallery-post-type .section__content .section__column {
  background: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem !important;
  margin-bottom: 0.75rem;
  height: calc(50vw - 0.375rem);
  width: calc(50% - 0.375rem);
}
@media (min-width: 34.375em) {
  .logo-gallery-post-type .section__content .section__column {
    max-height: 298px;
    height: calc(25vw - 0.5rem);
    width: calc(25% - 0.5rem);
  }
}
.logo-gallery-post-type .section__content .section__column a {
  height: 100%;
  width: 100%;
}
.logo-gallery-post-type .section__content .section__column a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.logo-marquee-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.logo-marquee-block .slick-list {
  padding: 0px !important;
}
.logo-marquee-block .section__shell {
  position: relative;
  height: 100%;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.logo-marquee-block .section__title {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 25px;
  font-size: 22px;
  padding: 0.75rem;
  justify-content: space-between;
  align-items: center;
  height: 155px;
  width: 155px;
  display: none;
}
@media (min-width: 34.375em) {
  .logo-marquee-block .section__title {
    display: flex;
  }
}
.logo-marquee-block .section__content {
  width: 100%;
}
@media (min-width: 34.375em) {
  .logo-marquee-block .section__content {
    width: calc(100% - 155px - 0.75rem);
  }
}
.logo-marquee-block .section__content .section__title_mobile {
  display: inline-block !important;
}
@media (min-width: 34.375em) {
  .logo-marquee-block .section__content .section__title_mobile {
    display: none !important;
  }
}
.logo-marquee-block .section__content .section__title_mobile .section__column {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 25px;
  font-size: 22px;
  padding: 0.75rem;
  justify-content: space-between;
  align-items: center;
  height: 155px;
  width: 155px;
}
.logo-marquee-block .section__content .section__column {
  height: 155px;
  width: 155px;
  padding: 0.75rem;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 0.75rem;
}
.logo-marquee-block .section__content .section__column img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.logo-marquee-block-post-type {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.logo-marquee-block-post-type .slick-list {
  padding: 0px !important;
}
.logo-marquee-block-post-type .section__shell {
  position: relative;
  height: 100%;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.logo-marquee-block-post-type .section__title {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 26px;
  font-size: 23px;
  padding: 0.75rem;
  justify-content: space-between;
  align-items: center;
  height: 155px;
  width: calc(165px + 1.5rem) !important;
  display: none;
}
@media (min-width: 34.375em) {
  .logo-marquee-block-post-type .section__title {
    display: flex;
    width: calc(165px + 1.5rem) !important;
  }
}
.logo-marquee-block-post-type .section__content {
  width: 100%;
}
@media (min-width: 34.375em) {
  .logo-marquee-block-post-type .section__content {
    width: calc(100% - 165px - 1.5rem) !important;
  }
}
.logo-marquee-block-post-type .section__content .section__title_mobile {
  display: inline-block !important;
}
@media (min-width: 34.375em) {
  .logo-marquee-block-post-type .section__content .section__title_mobile {
    display: none !important;
  }
}
.logo-marquee-block-post-type .section__content .section__title_mobile .section__column {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 25px;
  font-size: 22px;
  padding: 0.75rem;
  justify-content: space-between;
  align-items: center;
  height: 155px;
  width: 155px;
}
.logo-marquee-block-post-type .section__content .section__column {
  height: 155px;
  width: 155px;
  padding: 0.75rem;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 0.75rem;
}
.logo-marquee-block-post-type .section__content .section__column img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.menu-ads-block-hidden-container {
  display: none;
}

.menu-ads-block-floating-container {
  position: absolute !important;
  right: 1rem !important;
}
@media (min-width: 75em) {
  .menu-ads-block-floating-container {
    right: calc((100vw - 1192px) / 2) !important;
  }
}

.menu-ads-block {
  position: relative;
  margin: 0px;
  padding: 0px;
  width: 369px;
  height: 529px;
}
.menu-ads-block .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.menu-ads-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}
@media (min-width: 34.375em) {
  .menu-ads-block .section__content {
    justify-content: space-between;
    flex-flow: row wrap;
    flex-wrap: nowrap;
  }
}
.menu-ads-block .section__content .section__column {
  position: relative;
  display: flex !important;
  flex-direction: column;
  max-height: 480px;
  gap: 1rem;
}
.menu-ads-block .section__content .section__column .section__row {
  overflow: hidden !important;
  position: relative;
  background: #FFF;
  text-decoration: none;
  height: 100%;
  cursor: pointer;
}
.menu-ads-block .section__content .section__column .section__row:hover img {
  transition: all 1s ease-in-out;
  transform: scale(1.1);
}
.menu-ads-block .section__content .section__column .section__row:hover .btn span {
  width: 38px;
}
.menu-ads-block .section__content .section__column .section__row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-ads-block .section__content .section__column .section__row .overlay {
  position: absolute;
  top: 0%;
  left: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.menu-ads-block .section__content .section__column .section__row .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  width: 60%;
  bottom: 1rem;
  left: 1rem;
  position: absolute;
  font-size: 30px !important;
  line-height: 39px !important;
  color: #FFF !important;
}
.menu-ads-block .section__content .section__column .section__row .heading * {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 30px !important;
  line-height: 39px !important;
  color: #FFF !important;
  margin-bottom: 0px !important;
}
.menu-ads-block .section__content .section__column .section__row .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  position: absolute !important;
  bottom: 1rem !important;
  right: 1rem !important;
  padding: 10px !important;
  border-radius: 12px !important;
  font-size: 20px !important;
  line-height: 20px !important;
  border: 0px !important;
}
.menu-ads-block .section__content .section__column .section__row .btn span {
  display: inline-block !important;
  background-image: url("../images/wiredmedia/arrow-right-white.svg") !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 20px !important;
  width: 28px !important;
}

.multiple-column-mini-content-block {
  position: relative;
  margin: 0px;
  padding: 0px 0px 0px 0px;
}
.multiple-column-mini-content-block .section__shell {
  position: relative;
  height: 100%;
}
.multiple-column-mini-content-block .section__content {
  position: relative;
  margin: auto auto;
  max-width: 1192px;
}
.multiple-column-mini-content-block .section__content .section__header {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 40px;
  line-height: 48px;
  color: #1A163D;
  margin-bottom: 0.75rem;
}
.multiple-column-mini-content-block .section__content .section__column {
  display: inline-block;
  padding-bottom: 1rem;
  width: 100%;
}
@media (min-width: 34.375em) {
  .multiple-column-mini-content-block .section__content .section__column {
    padding-bottom: 2rem;
    width: calc(33.33% - 0.5rem);
  }
}
@media (min-width: 64.125em) {
  .multiple-column-mini-content-block .section__content .section__column {
    padding-bottom: 2rem;
    width: calc(16.5% - 0.5rem);
  }
}
.multiple-column-mini-content-block .section__content .section__column .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0px 1rem;
}
@media (min-width: 34.375em) {
  .multiple-column-mini-content-block .section__content .section__column .section__inner {
    padding: 0px;
  }
}
.multiple-column-mini-content-block .section__content .section__column .section__inner .card-wrapper h1, .multiple-column-mini-content-block .section__content .section__column .section__inner .card-wrapper h2, .multiple-column-mini-content-block .section__content .section__column .section__inner .card-wrapper h3, .multiple-column-mini-content-block .section__content .section__column .section__inner .card-wrapper h4, .multiple-column-mini-content-block .section__content .section__column .section__inner .card-wrapper h5 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 30px;
  line-height: 39px;
  color: #1A163D;
  margin-bottom: 10px;
}
.multiple-column-mini-content-block .section__content .section__column .section__inner .card-wrapper p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 15px;
  line-height: 22px;
  color: #FFF;
}
.multiple-column-mini-content-block .section__content .section__column .section__inner .card-wrapper a {
  color: #FFF;
  text-decoration: none;
}

.single-column-cta-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px;
  overflow: hidden;
}
.single-column-cta-block .overlay {
  transition: all 0.5s ease-in-out;
  position: absolute;
  left: 0px;
  height: 100%;
  width: 100%;
  top: 0%;
}
@media (min-width: 56.25em) {
  .single-column-cta-block .overlay {
    top: 110%;
  }
}
.single-column-cta-block .overlay img {
  position: absolute;
  right: 4rem !important;
  top: 3rem !important;
  bottom: unset !important;
  max-height: 244px !important;
  object-fit: contain !important;
  opacity: 1;
}
@media (min-width: 34.375em) {
  .single-column-cta-block .overlay img {
    width: 244px;
    max-height: 276px !important;
    opacity: 0;
  }
}
@media (min-width: 56.25em) {
  .single-column-cta-block .overlay img {
    max-height: unset !important;
    top: unset !important;
    bottom: 0px !important;
    opacity: 1;
  }
}
.single-column-cta-block .section__shell {
  position: relative;
  height: 100%;
}
.single-column-cta-block.animate-hover-effect .overlay {
  top: 0%;
}
.single-column-cta-block.animate-hover-effect .section__content .section-heaading {
  color: #AAC915;
}
.single-column-cta-block.animate-hover-effect .section__content .section-paragraph {
  color: #FFF;
}
.single-column-cta-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto auto;
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 100%;
  text-align: left;
}
@media (min-width: 56.25em) {
  .single-column-cta-block .section__content {
    padding-top: 3rem;
    padding-bottom: 3rem;
    max-width: 70%;
    text-align: center;
  }
}
.single-column-cta-block .section__content .section-heaading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  transition: all 1s ease-in-out;
  line-height: 41px;
  margin-bottom: 1rem;
  font-size: 32px;
  text-transform: none !important;
  text-align: left;
  width: 60%;
  color: #AAC915;
}
@media (min-width: 56.25em) {
  .single-column-cta-block .section__content .section-heaading {
    text-align: center;
    width: 100%;
    color: #AAC915;
  }
}
.single-column-cta-block .section__content .section-paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  transition: all 1s ease-in-out;
  font-size: 17px;
  line-height: 27px;
  text-align: left;
  color: #FFF;
}
@media (min-width: 56.25em) {
  .single-column-cta-block .section__content .section-paragraph {
    text-align: center;
    color: #565467;
  }
}
.single-column-cta-block .section__content .btn {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-weight: 900 !important;
  margin-top: 2rem;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: normal;
  border-radius: 12px;
  z-index: 10;
}
.single-column-cta-block .section__content .btn .btn-arrow {
  display: none;
  margin-left: 15px;
  height: 13px;
}
.single-column-cta-block .section__content .btn:hover .btn-arrow {
  display: inline-block;
}

.single-page-content-block {
  position: relative;
  margin: 0px;
  padding: 0px;
  padding-bottom: 3rem;
}
.single-page-content-block .section__shell {
  position: relative;
  height: 100%;
}
.single-page-content-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 100%;
}
@media (min-width: 56.25em) {
  .single-page-content-block .section__content {
    max-width: 80%;
  }
}
.single-page-content-block .section__content .featured-image {
  margin-top: -8rem;
  margin-bottom: 1rem;
  max-width: 100%;
  object-fit: contain;
}
.single-page-content-block .section__content h1, .single-page-content-block .section__content h2, .single-page-content-block .section__content h3, .single-page-content-block .section__content h4 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  margin-top: 7px;
  margin-bottom: 14px;
  font-style: normal;
  font-size: 32px !important;
  color: #1A163D;
  line-height: 41px;
}
.single-page-content-block .section__content h1 *, .single-page-content-block .section__content h2 *, .single-page-content-block .section__content h3 *, .single-page-content-block .section__content h4 * {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  margin-top: 7px;
  margin-bottom: 14px;
  font-style: normal;
  font-size: 32px !important;
  color: #1A163D;
  line-height: 41px;
}
.single-page-content-block .section__content h1 b, .single-page-content-block .section__content h2 b, .single-page-content-block .section__content h3 b, .single-page-content-block .section__content h4 b {
  font-weight: 500;
  font-style: normal;
}
.single-page-content-block .section__content p, .single-page-content-block .section__content li {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 17px;
  line-height: 27px;
  color: #565467;
  margin-top: 6px;
  margin-bottom: 6px;
}
.single-page-content-block .section__content p *, .single-page-content-block .section__content li * {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 17px;
  line-height: 27px;
  color: #565467;
  margin-top: 6px;
  margin-bottom: 6px;
}
.single-page-content-block .section__content ul {
  margin-top: 0px;
  margin-bottom: 14px;
  padding-left: 1rem;
}
.single-page-content-block .section__content a {
  color: #565467;
}
.single-page-content-block .section__content .wp-block-button {
  color: #FFF;
}
.single-page-content-block .section__content .wp-block-button a {
  color: #FFF;
}
.hero-block-single-page {
  position: relative;
  margin: 0;
  padding: 0;
  padding-top: 3rem;
  overflow-y: visible;
}
.hero-block-single-page .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hero-block-single-page .overlay img {
  min-width: 100%;
  object-fit: cover;
}
.hero-block-single-page .section__shell {
  position: relative;
  height: 100%;
}
.hero-block-single-page .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 746px;
  margin: auto;
  min-height: 220px;
}
.hero-block-single-page .content .title {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  text-align: center;
  font-size: 36px;
}
@media (min-width: 34.375em) {
  .hero-block-single-page .content .title {
    font-size: 56px;
  }
}
.hero-block-single-page .content .description {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  text-align: center;
  font-size: 17px;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 1.5rem;
}

.single-post-content-block {
  position: relative;
  margin: 0px;
  padding: 0px;
  padding-bottom: 3rem;
}
.single-post-content-block .section__shell {
  position: relative;
  height: 100%;
}
.single-post-content-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 100%;
}
@media (min-width: 56.25em) {
  .single-post-content-block .section__content {
    max-width: 80%;
  }
}
.single-post-content-block .section__content .featured-image {
  margin-top: -8rem;
  margin-bottom: 1rem;
  max-width: 100%;
  object-fit: contain;
}
.single-post-content-block .section__content h1, .single-post-content-block .section__content h2, .single-post-content-block .section__content h3, .single-post-content-block .section__content h4 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  margin-top: 7px;
  margin-bottom: 14px;
  font-style: normal;
  font-size: 32px !important;
  color: #1A163D;
  line-height: 41px;
}
.single-post-content-block .section__content h1 *, .single-post-content-block .section__content h2 *, .single-post-content-block .section__content h3 *, .single-post-content-block .section__content h4 * {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  margin-top: 7px;
  margin-bottom: 14px;
  font-style: normal;
  font-size: 32px !important;
  color: #1A163D;
  line-height: 41px;
}
.single-post-content-block .section__content h1 b, .single-post-content-block .section__content h2 b, .single-post-content-block .section__content h3 b, .single-post-content-block .section__content h4 b {
  font-weight: 500;
  font-style: normal;
}
.single-post-content-block .section__content p, .single-post-content-block .section__content li {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 17px;
  line-height: 27px;
  color: #565467;
  margin-top: 6px;
  margin-bottom: 6px;
}
.single-post-content-block .section__content p *, .single-post-content-block .section__content li * {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 17px;
  line-height: 27px;
  color: #565467;
  margin-top: 6px;
  margin-bottom: 6px;
}
.single-post-content-block .section__content p b, .single-post-content-block .section__content p strong, .single-post-content-block .section__content li b, .single-post-content-block .section__content li strong {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
}
.single-post-content-block .section__content ul {
  margin-top: 0px;
  margin-bottom: 14px;
  padding-left: 1rem;
}
.single-post-content-block .section__content a {
  color: #565467;
}
.single-post-content-block .section__content .wp-block-buttons {
  margin-top: 30px !important;
}
.single-post-content-block .section__content .wp-block-button {
  color: #FFF;
}
.single-post-content-block .section__content .wp-block-button a {
  color: #FFF;
}

.hero-block-single-post {
  position: relative;
  color: #1A163D;
  min-height: 476px;
  margin: 0;
  padding: 0;
  background-color: #00A8B5;
}
.hero-block-single-post .section__shell {
  position: relative;
  text-align: left;
  padding-bottom: 7rem;
}
.hero-block-single-post .section__shell .breadcrumbs-wired {
  padding-top: calc(90px + 2rem);
}
.hero-block-single-post .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 746px;
  margin: auto;
  min-height: 200px;
}
.hero-block-single-post .content .title {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  text-align: center;
  font-size: 40px;
}
@media (min-width: 34.375em) {
  .hero-block-single-post .content .title {
    font-size: 56px;
  }
}
.hero-block-single-post .content .description {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  text-align: center;
  font-size: 17px;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 1.5rem;
}
.hero-block-single-post .content .description a {
  color: #FFF !important;
  text-decoration: none;
}

.static-tiles-block {
  position: relative;
  margin: 0px;
  padding: 0px;
}
.static-tiles-block .section__shell {
  position: relative;
  height: 100%;
}
.static-tiles-block .section__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
}
.static-tiles-block .section__content .section__column {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding-left: 20px;
  margin-bottom: 1rem;
  border-left: 4px solid #523EFF;
  width: 48%;
}
@media (min-width: 34.375em) {
  .static-tiles-block .section__content .section__column {
    margin-bottom: 0px;
    padding-right: 2rem;
    width: 24%;
  }
}
.static-tiles-block .section__content .section__column .title-wrapper {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  color: #1A163D;
  font-size: 50px;
}
@media (min-width: 56.25em) {
  .static-tiles-block .section__content .section__column .title-wrapper {
    font-size: 80px;
  }
}
.static-tiles-block .section__content .section__column .subtitle-wrapper {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  color: #565467;
}

.standard-html-block {
  position: relative;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}
.standard-html-block .section__shell {
  position: relative;
  height: 100%;
}
.standard-html-block .hero__content {
  position: relative;
}
.standard-html-block .hero__content .hero__text h1 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  color: #1A163D;
  line-height: 62px;
  font-size: 48px;
}
@media (min-width: 34.375em) {
  .standard-html-block .hero__content .hero__text h1 {
    font-size: 57px;
  }
}
.standard-html-block .hero__content .hero__text p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  line-height: 27px;
  font-size: 17px;
}

.team-gallery {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.team-gallery .section__shell {
  position: relative;
  height: 100%;
  max-width: calc(958px + 2rem);
}
.team-gallery .block-heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  width: 100%;
  margin-bottom: 2rem;
  font-size: 40px;
  line-height: 48px;
  color: #1A163D;
}
.team-gallery .section__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}
.team-gallery .section__content .section__column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2rem;
  width: calc(50% - 0.5rem);
}
@media (min-width: 34.375em) {
  .team-gallery .section__content .section__column {
    width: calc(33% - 0.5rem);
  }
}
.team-gallery .section__content .section__column img {
  object-fit: cover;
  width: 100%;
  max-height: 340px;
}
.team-gallery .section__content .section__column .name {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  margin-top: 1rem;
  line-height: 41px;
  color: #1A163D;
  font-size: 19px;
}
@media (min-width: 34.375em) {
  .team-gallery .section__content .section__column .name {
    font-size: 30px;
  }
}
.team-gallery .section__content .section__column .title {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  line-height: 27px;
  color: #565467;
  font-size: 14px;
}
@media (min-width: 34.375em) {
  .team-gallery .section__content .section__column .title {
    font-size: 17px;
  }
}

.testimonials-gallery {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
  max-width: 100vw !important;
}
.testimonials-gallery .section__shell {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1192px;
  margin: 0 auto;
}
.testimonials-gallery .section__content {
  position: relative;
  width: 100%;
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 34.375em) {
  .testimonials-gallery .section__content {
    flex-direction: row;
  }
}
.testimonials-gallery .section__content .section__left,
.testimonials-gallery .section__content .section__right {
  width: 100%;
}
@media (min-width: 34.375em) {
  .testimonials-gallery .section__content .section__left,
  .testimonials-gallery .section__content .section__right {
    width: calc(50% - 0.5rem);
  }
}
.testimonials-gallery .section__content .section__column {
  overflow: hidden;
  background: #FFF;
  border-radius: 5px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0px;
  width: 100%;
  margin-bottom: 0.75rem;
}
.testimonials-gallery .section__content .section__column .image-wrapper {
  width: 100%;
  height: 255px;
}
.testimonials-gallery .section__content .section__column .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-gallery .section__content .section__column .content-wrapper {
  padding: 1rem 1.5rem 0.5rem 1.5rem;
}
.testimonials-gallery .section__content .section__column .content-wrapper .quote-img-start,
.testimonials-gallery .section__content .section__column .content-wrapper .quote-img-end {
  height: 65px;
  width: 26px;
  object-fit: cover;
}
.testimonials-gallery .section__content .section__column .content-wrapper .quote-img-start {
  margin-bottom: -26px;
}
.testimonials-gallery .section__content .section__column .content-wrapper .quote-img-end {
  margin-top: -26px;
}
.testimonials-gallery .section__content .section__column .content-wrapper .content {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  position: relative;
  font-size: 23px;
  line-height: 29px;
  letter-spacing: -0.25px;
  color: #1A163D;
  width: 100%;
}
.testimonials-gallery .section__content .section__column .content-wrapper .author {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  position: relative;
  font-size: 17px;
  line-height: 27px;
  color: #1A163D;
  text-align: left;
  width: 100%;
}
.testimonials-gallery .section__content .section__column .content-wrapper img {
  object-fit: contain;
}
.testimonials-gallery .section__content .section__column .testimonials-company-logo {
  height: 75px;
  width: 150px;
  object-fit: contain;
}

.testimonials-single {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
  width: 100%;
}
.testimonials-single .section__shell {
  position: relative;
  height: 100%;
  padding: 2rem 1rem 2rem 1rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1192px;
  background: #8AC7CC;
}
.testimonials-single .slick-list {
  padding: 0px !important;
}
.testimonials-single .section__content {
  position: relative;
  width: 100%;
  max-width: 753px !important;
  margin: 0 auto;
}
.testimonials-single .section__content .section__column {
  position: relative;
  width: 100%;
}
.testimonials-single .section__content .section__column .single_slide {
  position: relative;
  width: calc(100vw - 2rem) !important;
  max-width: 753px !important;
}
.testimonials-single .section__content .section__column .single_slide .content {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  position: relative;
  font-size: 30px;
  line-height: 32px;
  color: #1A163D;
  margin-bottom: 2rem;
  width: 100%;
}
.testimonials-single .section__content .section__column .single_slide .author {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  position: relative;
  font-size: 17px;
  line-height: 27px;
  color: #1A163D;
  text-align: left;
  width: 100%;
}
.testimonials-single .section__content .section__column .single_slide img {
  object-fit: contain;
}
.testimonials-single .section__content .section__column .single_slide .testimonials-company-logo {
  height: 75px;
  width: 150px;
  object-fit: contain;
}

.testimonials-sliders-latest {
  position: relative;
  padding: 3rem 0px 0px 0px;
  margin: 3rem 0px 0px 0px;
}
@media (min-width: 34.375em) {
  .testimonials-sliders-latest {
    margin: 0px 0px 0px 0px;
  }
}
.testimonials-sliders-latest .section__shell {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 34.375em) {
  .testimonials-sliders-latest .section__shell {
    flex-direction: row;
    justify-content: space-between;
  }
}
.testimonials-sliders-latest .slick-list {
  padding: 0px !important;
}
.testimonials-sliders-latest .slick-dots {
  margin-left: 0px;
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.testimonials-sliders-latest .slick-dots li.slick-active button {
  background-color: #50A5F9;
  border: 2px solid #50A5F9;
}
.testimonials-sliders-latest .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 5px;
}
.testimonials-sliders-latest .controls {
  align-items: center;
  display: none;
}
@media (min-width: 34.375em) {
  .testimonials-sliders-latest .controls {
    display: block;
  }
}
.testimonials-sliders-latest .controls * {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  height: 43px;
  width: 43px;
  z-index: 5;
  padding: 0px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 25px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s ease;
  top: 1rem !important;
}
@media (min-width: 34.375em) {
  .testimonials-sliders-latest .controls * {
    top: 50% !important;
  }
}
.testimonials-sliders-latest .controls *:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.testimonials-sliders-latest .controls .slider-prev-testimonials {
  background-image: url("../images/wiredmedia/slider-arrow-left.png");
  left: 1rem;
}
@media (min-width: 75em) {
  .testimonials-sliders-latest .controls .slider-prev-testimonials {
    left: 2rem;
  }
}
.testimonials-sliders-latest .controls .slider-next-testimonials {
  background-image: url("../images/wiredmedia/slider-arrow-right.png");
  right: 1rem;
}
@media (min-width: 75em) {
  .testimonials-sliders-latest .controls .slider-next-testimonials {
    right: 2rem;
  }
}
.testimonials-sliders-latest .section__static {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: calc(100vw - 40px);
}
@media (min-width: 34.375em) {
  .testimonials-sliders-latest .section__static {
    width: 40vw;
  }
}
.testimonials-sliders-latest .section__static p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 1.5px;
  color: #1A163D;
  text-align: center;
  width: 100%;
}
.testimonials-sliders-latest .section__static img {
  position: absolute;
  bottom: 0px;
  max-height: 75%;
  object-fit: contain;
  display: none;
}
@media (min-width: 34.375em) {
  .testimonials-sliders-latest .section__static img {
    display: block;
  }
}
.testimonials-sliders-latest .section__content {
  position: relative;
  padding: 0px 0px 4rem 0px;
  width: calc(100vw - 40px);
}
@media (min-width: 34.375em) {
  .testimonials-sliders-latest .section__content {
    width: 60vw;
    max-width: 716px;
  }
}
.testimonials-sliders-latest .section__content .section__column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 1rem;
  padding-right: 1rem;
  width: calc(100vw - 2rem) !important;
  max-width: calc(100vw - 2rem) !important;
}
@media (min-width: 34.375em) {
  .testimonials-sliders-latest .section__content .section__column {
    width: 60vw !important;
    max-width: 716px !important;
    padding-right: 3rem;
  }
}
.testimonials-sliders-latest .section__content .section__column .content {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 30px;
  line-height: 39px;
  color: #1A163D;
  margin-bottom: 2rem;
  width: 100%;
}
.testimonials-sliders-latest .section__content .section__column .content .quote-img {
  object-fit: cover;
}
.testimonials-sliders-latest .section__content .section__column .author {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
  color: #1A163D;
  text-align: left;
  margin-bottom: 1rem;
}
.testimonials-sliders-latest .section__content .section__column img {
  object-fit: contain;
}
.testimonials-sliders-latest .section__content .section__column .testimonials-company-logo {
  height: 75px;
  width: 150px;
  object-fit: contain;
}

.heading-two-column-paragraph {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 1rem 0px;
}
.heading-two-column-paragraph .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.heading-two-column-paragraph .col-width-12 {
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph .col-width-12 {
    margin-bottom: 2rem;
  }
}
.heading-two-column-paragraph .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 41px;
  color: #1A163D;
  font-size: 32px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph .heading {
    font-size: 32px;
  }
}
.heading-two-column-paragraph .heading * {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 41px;
  color: #1A163D;
  font-size: 32px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph .heading * {
    font-size: 32px;
  }
}
.heading-two-column-paragraph .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph .section__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.heading-two-column-paragraph .section__content .col-width-6 {
  width: 100%;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph .section__content .col-width-6 {
    width: 50%;
  }
}
.heading-two-column-paragraph .section__content .col-width-6 p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  line-height: 27px;
  color: #565467;
  text-align: left;
  font-size: 15px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph .section__content .col-width-6 p {
    font-size: 17px;
  }
}
.heading-two-column-paragraph .section__content .col-width-6 p a {
  color: #565467;
}
.heading-two-column-paragraph .section__content .col-width-6 p strong, .heading-two-column-paragraph .section__content .col-width-6 p b {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
}
.heading-two-column-paragraph .section__content .col-left {
  padding-bottom: 1rem;
  padding-right: 0px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph .section__content .col-left {
    padding-right: 1.5rem;
  }
}
.heading-two-column-paragraph .section__content .col-right {
  padding-bottom: 1rem;
  padding-left: 0px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph .section__content .col-right {
    padding-left: 1.5rem;
  }
}

.heading-two-column-paragraph-multiple {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 1rem 0px;
}
.heading-two-column-paragraph-multiple .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.heading-two-column-paragraph-multiple .col-width-12 {
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph-multiple .col-width-12 {
    margin-bottom: 2rem;
  }
}
.heading-two-column-paragraph-multiple .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 41px;
  color: #1A163D;
  font-size: 32px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph-multiple .heading {
    font-size: 32px;
  }
}
.heading-two-column-paragraph-multiple .heading * {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 41px;
  color: #1A163D;
  font-size: 32px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph-multiple .heading * {
    font-size: 32px;
  }
}
.heading-two-column-paragraph-multiple .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph-multiple .section__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.heading-two-column-paragraph-multiple .section__content .col-width-6 {
  width: 100%;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph-multiple .section__content .col-width-6 {
    width: 50%;
  }
}
.heading-two-column-paragraph-multiple .section__content .col-width-6 p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  line-height: 27px;
  color: #565467;
  text-align: left;
  font-size: 15px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph-multiple .section__content .col-width-6 p {
    font-size: 17px;
  }
}
.heading-two-column-paragraph-multiple .section__content .col-width-6 p a {
  color: #565467;
}
.heading-two-column-paragraph-multiple .section__content .col-width-6 p strong, .heading-two-column-paragraph-multiple .section__content .col-width-6 p b {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
}
.heading-two-column-paragraph-multiple .section__content .col-left {
  padding-bottom: 1rem;
  padding-right: 0px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph-multiple .section__content .col-left {
    padding-right: 1.5rem;
  }
}
.heading-two-column-paragraph-multiple .section__content .col-right {
  padding-bottom: 1rem;
  padding-left: 0px;
}
@media (min-width: 34.375em) {
  .heading-two-column-paragraph-multiple .section__content .col-right {
    padding-left: 1.5rem;
  }
}

.two-column-cta-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.two-column-cta-block .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.two-column-cta-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 56.25em) {
  .two-column-cta-block .section__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.two-column-cta-block .section__content .col-width-6 {
  width: 100%;
}
@media (min-width: 56.25em) {
  .two-column-cta-block .section__content .col-width-6 {
    width: 50%;
  }
}
.two-column-cta-block .section__content .col-left {
  padding-bottom: 1rem;
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 56.25em) {
  .two-column-cta-block .section__content .col-left {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.two-column-cta-block .section__content .col-right {
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 56.25em) {
  .two-column-cta-block .section__content .col-right {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.two-column-cta-block .section__content .heading h1, .two-column-cta-block .section__content .heading h2, .two-column-cta-block .section__content .heading h3, .two-column-cta-block .section__content .heading h4, .two-column-cta-block .section__content .heading h5, .two-column-cta-block .section__content .heading p {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 48px;
  color: #1A163D;
  text-align: left;
  font-size: 32px;
}
@media (min-width: 56.25em) {
  .two-column-cta-block .section__content .heading h1, .two-column-cta-block .section__content .heading h2, .two-column-cta-block .section__content .heading h3, .two-column-cta-block .section__content .heading h4, .two-column-cta-block .section__content .heading h5, .two-column-cta-block .section__content .heading p {
    text-align: right;
  }
}
@media (min-width: 34.375em) {
  .two-column-cta-block .section__content .heading h1, .two-column-cta-block .section__content .heading h2, .two-column-cta-block .section__content .heading h3, .two-column-cta-block .section__content .heading h4, .two-column-cta-block .section__content .heading h5, .two-column-cta-block .section__content .heading p {
    font-size: 40px;
  }
}
.two-column-cta-block .section__content .paragraph p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  line-height: 27px;
  color: #565467;
  text-align: left;
  font-size: 15px;
}
@media (min-width: 34.375em) {
  .two-column-cta-block .section__content .paragraph p {
    font-size: 17px;
  }
}
.two-column-cta-block .section__content .paragraph a {
  color: #565467;
}
.two-column-cta-block .section__content .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 2rem;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.5px;
  border-radius: 12px;
  z-index: 10;
}
.two-column-cta-block .section__content .btn .btn-arrow {
  display: none;
  margin-left: 15px;
  height: 13px;
}
.two-column-cta-block .section__content .btn:hover .btn-arrow {
  display: inline-block;
}

.two-column-cta-overlay-block {
  position: relative;
  margin: 3rem 0px 0px 0px;
  padding: 3rem 0px 3rem 0px;
}
@media (min-width: 56.25em) {
  .two-column-cta-overlay-block {
    margin: 0px;
    padding: 3rem 0px 0px 0px;
  }
}
.two-column-cta-overlay-block .section__shell {
  position: relative;
  height: 100%;
}
.two-column-cta-overlay-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 34.375em) {
  .two-column-cta-overlay-block .section__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.two-column-cta-overlay-block .section__content .col-left {
  padding-bottom: 1rem;
  padding-right: 0px;
  width: 100%;
}
@media (min-width: 34.375em) {
  .two-column-cta-overlay-block .section__content .col-left {
    padding-right: 1.5rem;
    width: 55%;
  }
}
.two-column-cta-overlay-block .section__content .col-right {
  padding-left: 0px;
  width: 100%;
}
@media (min-width: 34.375em) {
  .two-column-cta-overlay-block .section__content .col-right {
    padding-left: 1.5rem;
    width: 45%;
  }
}
@media (min-width: 56.25em) {
  .two-column-cta-overlay-block .section__content .col-right {
    padding-bottom: 2rem;
  }
}
.two-column-cta-overlay-block .section__content .col-left {
  overflow: hidden;
  padding-bottom: 0px;
  display: flex;
  flex-direction: row;
}
.two-column-cta-overlay-block .section__content .col-left .image-wrapper {
  display: none;
}
@media (min-width: 56.25em) {
  .two-column-cta-overlay-block .section__content .col-left .image-wrapper {
    display: block;
  }
}
.two-column-cta-overlay-block .section__content .col-left img {
  margin-bottom: -10px;
  height: 240px;
}
.two-column-cta-overlay-block .section__content .col-left .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 36px;
  line-height: 41px;
  color: #FFF;
  padding-bottom: 1rem;
  max-width: 100%;
}
@media (min-width: 56.25em) {
  .two-column-cta-overlay-block .section__content .col-left .heading {
    max-width: 60%;
    padding-left: 1rem;
  }
}
.two-column-cta-overlay-block .section__content .paragraph p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
  color: #FFF;
  max-width: 90%;
}
.two-column-cta-overlay-block .section__content .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1rem;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.5px;
  border-radius: 12px;
  z-index: 10;
}
.two-column-cta-overlay-block .section__content .btn .btn-arrow {
  display: none;
  margin-left: 15px;
  height: 13px;
}
.two-column-cta-overlay-block .section__content .btn:hover .btn-arrow {
  display: inline-block;
}

.two-column-featured-cta-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.two-column-featured-cta-block .section__shell {
  position: relative;
  height: 100%;
  width: 100%;
}
.two-column-featured-cta-block .section__shell .section__button {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  background: #1A163D;
  border-radius: 12px;
  padding: 8px;
  margin: 0 auto;
  max-width: 277px;
  margin-top: 1.5rem;
  text-align: center;
  cursor: pointer;
}
.two-column-featured-cta-block .section__shell .section__button:hover {
  background: #AAC915;
}
.two-column-featured-cta-block .section__shell .section__button a {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 1.5px;
  color: #FFF !important;
  text-transform: uppercase;
  text-decoration: none;
}
.two-column-featured-cta-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
@media (min-width: 34.375em) {
  .two-column-featured-cta-block .section__content {
    justify-content: space-between;
    flex-flow: row wrap;
    flex-wrap: nowrap;
  }
}
.two-column-featured-cta-block .section__content .section__column {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 529px;
  gap: 0.75rem;
}
.two-column-featured-cta-block .section__content .section__column:not(:first-child) {
  width: 100%;
}
@media (min-width: 34.375em) {
  .two-column-featured-cta-block .section__content .section__column:not(:first-child) {
    width: calc(33.3% - 0.75rem);
  }
}
.two-column-featured-cta-block .section__content .section__column:first-child {
  width: 100%;
}
@media (min-width: 34.375em) {
  .two-column-featured-cta-block .section__content .section__column:first-child {
    width: calc(67.5% - 0.75rem);
  }
}
.two-column-featured-cta-block .section__content .section__column .section__row {
  overflow: hidden !important;
  position: relative;
  background: #FFF;
  text-decoration: none;
  height: 100%;
}
.two-column-featured-cta-block .section__content .section__column .section__row.height-half {
  height: 50%;
}
.two-column-featured-cta-block .section__content .section__column .section__row.custom-anchor-tag:hover img {
  transition: all 0.5s ease-in-out;
  transform: scale(1.05);
}
.two-column-featured-cta-block .section__content .section__column .section__row.custom-anchor-tag:hover .btn span {
  width: 38px;
}
.two-column-featured-cta-block .section__content .section__column .section__row img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.two-column-featured-cta-block .section__content .section__column .section__row .overlay {
  position: absolute;
  top: 0%;
  left: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.two-column-featured-cta-block .section__content .section__column .section__row .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  width: 60%;
  bottom: 1rem;
  left: 1rem;
  position: absolute;
  font-size: 30px;
  line-height: 39px;
  color: #FFF;
  display: flex;
  align-items: flex-end;
}
.two-column-featured-cta-block .section__content .section__column .section__row .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 10px;
  border-radius: 12px;
}
.two-column-featured-cta-block .section__content .section__column .section__row .btn span {
  display: inline-block;
  background-image: url("../images/wiredmedia/arrow-right-white.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 20px;
  width: 28px;
}

.two-column-image-text-cta-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 3rem 0px;
}
.two-column-image-text-cta-block.bg-dark {
  background: #F1EFF2;
}
.two-column-image-text-cta-block.bg-dark .section__content h3 {
  color: #1A163D;
}
.two-column-image-text-cta-block.bg-dark .section__content p {
  color: #565467;
}
.two-column-image-text-cta-block.bg-transparent {
  background: transparent;
}
.two-column-image-text-cta-block.bg-transparent .section__content h3 {
  color: #1A163D;
}
.two-column-image-text-cta-block.bg-transparent .section__content p {
  color: #565467;
}
.two-column-image-text-cta-block .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.two-column-image-text-cta-block .section__content {
  position: relative;
  color: #FFF;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 56.25em) {
  .two-column-image-text-cta-block .section__content {
    justify-content: space-between;
    flex-direction: row;
    gap: 2rem;
  }
  .two-column-image-text-cta-block .section__content.image-right {
    flex-direction: row-reverse;
  }
}
.two-column-image-text-cta-block .section__content .col-left {
  position: relative;
  width: 100%;
  padding-right: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media (min-width: 56.25em) {
  .two-column-image-text-cta-block .section__content .col-left {
    width: 55%;
    padding-right: 1.5rem;
  }
}
.two-column-image-text-cta-block .section__content .col-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 56.25em) {
  .two-column-image-text-cta-block .section__content .col-left img {
    object-fit: cover;
  }
}
.two-column-image-text-cta-block .section__content .col-left .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media (min-width: 56.25em) {
  .two-column-image-text-cta-block .section__content .col-left.overlap_top {
    width: 50%;
  }
}
@media (min-width: 56.25em) {
  .two-column-image-text-cta-block .section__content .col-left.overlap_top .overlay {
    top: -55%;
    z-index: 2;
  }
}
@media (min-width: 56.25em) {
  .two-column-image-text-cta-block .section__content .col-left.overlap_top img {
    position: absolute;
    top: -55%;
    z-index: 1;
  }
}
.two-column-image-text-cta-block .section__content .col-right {
  position: relative;
  width: 100%;
  padding-left: 0px;
}
@media (min-width: 56.25em) {
  .two-column-image-text-cta-block .section__content .col-right {
    width: 45%;
  }
}
@media (min-width: 56.25em) {
  .two-column-image-text-cta-block .section__content .col-right.overlap_top {
    width: 45%;
  }
}
.two-column-image-text-cta-block .section__content .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  padding-top: 1rem;
  line-height: 41px;
  font-size: 23px;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-block .section__content .heading {
    font-size: 32px;
  }
}
.two-column-image-text-cta-block .section__content .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1rem;
  padding-right: 1rem;
  line-height: 27px;
  font-size: 15px;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-block .section__content .paragraph {
    font-size: 17px;
  }
}
.two-column-image-text-cta-block .section__content .btn {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-weight: 900;
  margin-top: 2rem;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: normal;
  border-radius: 12px;
  z-index: 10;
}
.two-column-image-text-cta-block .section__content .btn .btn-arrow {
  display: none;
  margin-left: 15px;
  height: 13px;
}
.two-column-image-text-cta-block .section__content .btn:hover .btn-arrow {
  display: inline-block;
}

.two-column-image-text-cta-slider-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.two-column-image-text-cta-slider-block .section__shell {
  position: relative;
  height: 100%;
}
.two-column-image-text-cta-slider-block .section__nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: left;
  margin-bottom: 1rem;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-slider-block .section__nav {
    margin-bottom: 3rem;
  }
}
.two-column-image-text-cta-slider-block .section__nav .slick-list {
  padding: 0px !important;
}
.two-column-image-text-cta-slider-block .section__nav .slick-list .slick-current {
  max-width: 75vw;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-slider-block .section__nav .slick-list .slick-current {
    max-width: 100vw;
  }
}
.two-column-image-text-cta-slider-block .section__nav .slick-list .slick-current .nav__column {
  border-left: 4px solid #AAC915;
}
.two-column-image-text-cta-slider-block .section__nav .slick-list .slick-current .nav__column .title-wrapper strong {
  opacity: 1;
}
.two-column-image-text-cta-slider-block .section__nav .slick-list .slick-current .nav__column .title-wrapper span {
  opacity: 1;
}
.two-column-image-text-cta-slider-block .section__nav .slick-list .slick-current .nav__column .subtitle-wrapper {
  opacity: 1;
}
.two-column-image-text-cta-slider-block .section__nav .slick-list .slick-current .nav__column .overlay {
  opacity: 0;
}
.two-column-image-text-cta-slider-block .section__nav .nav__column {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
  border-left: 4px solid #FFF;
  width: 100%;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-slider-block .section__nav .nav__column {
    width: 24%;
  }
}
.two-column-image-text-cta-slider-block .section__nav .nav__column .title-wrapper > div {
  display: inline-block;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-slider-block .section__nav .nav__column .title-wrapper > div {
    display: block;
  }
}
.two-column-image-text-cta-slider-block .section__nav .nav__column .title-wrapper strong {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  opacity: 0.5;
  font-size: 40px;
  line-height: 48px;
}
.two-column-image-text-cta-slider-block .section__nav .nav__column .title-wrapper span {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  opacity: 0.5;
  line-height: 48px;
  font-style: italic;
  font-size: 20px;
}
@media (min-width: 56.25em) {
  .two-column-image-text-cta-slider-block .section__nav .nav__column .title-wrapper span {
    font-size: 23px;
  }
}
.two-column-image-text-cta-slider-block .section__nav .nav__column .subtitle-wrapper {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  opacity: 0.5;
  line-height: 25px;
  font-size: 15px;
}
.two-column-image-text-cta-slider-block .section__nav .nav__column .overlay {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
.two-column-image-text-cta-slider-block .slide__column {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-slider-block .slide__column {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.two-column-image-text-cta-slider-block .slide__column .col-left {
  width: 100%;
  padding-right: 0px;
  margin-bottom: 2rem;
  padding-bottom: 0px;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-slider-block .slide__column .col-left {
    width: 55%;
    padding-right: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
.two-column-image-text-cta-slider-block .slide__column .col-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-column-image-text-cta-slider-block .slide__column .col-right {
  width: 100%;
  padding-left: 0px;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-slider-block .slide__column .col-right {
    width: 45%;
    padding-left: 1.5rem;
  }
}
.two-column-image-text-cta-slider-block .slide__column .heading p {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 41px;
  font-size: 23px;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-slider-block .slide__column .heading p {
    font-size: 36px;
  }
}
.two-column-image-text-cta-slider-block .slide__column .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  line-height: 27px;
  font-size: 15px;
}
@media (min-width: 34.375em) {
  .two-column-image-text-cta-slider-block .slide__column .paragraph {
    font-size: 17px;
  }
}
.two-column-image-text-cta-slider-block .slide__column .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 2rem;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.5px;
  border-radius: 12px;
  z-index: 10;
}
.two-column-image-text-cta-slider-block .slide__column .btn .btn-arrow {
  display: none;
  margin-left: 15px;
  height: 13px;
}
.two-column-image-text-cta-slider-block .slide__column .btn:hover .btn-arrow {
  display: inline-block;
}

.three-column-content-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.three-column-content-block .section__shell {
  position: relative;
  height: 100%;
}
.three-column-content-block .section__content {
  position: relative;
  margin: auto auto;
  max-width: 1192px;
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 34.375em) {
  .three-column-content-block .section__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.three-column-content-block .section__content .section__header {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 40px;
  line-height: 48px;
  color: #1A163D;
  margin-bottom: 0.75rem;
}
.three-column-content-block .section__content .section__column {
  display: inline-block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  width: 100%;
}
@media (min-width: 34.375em) {
  .three-column-content-block .section__content .section__column {
    width: 32%;
  }
}
.three-column-content-block .section__content .section__column .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0px;
}
@media (min-width: 34.375em) {
  .three-column-content-block .section__content .section__column .section__inner {
    padding: 1rem;
  }
}
@media (min-width: 34.375em) {
  .three-column-content-block .section__content .section__column .section__inner {
    margin-right: 1rem !important;
  }
}
.three-column-content-block .section__content .section__column .section__inner .image-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.three-column-content-block .section__content .section__column .section__inner .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.three-column-content-block .section__content .section__column .section__inner .card-wrapper .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 30px;
  line-height: 32px;
  color: #1A163D;
  margin-bottom: 0.75rem;
  transition: all 2s linear;
}
.three-column-content-block .section__content .section__column .section__inner .card-wrapper .paragraph {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  font-size: 17px;
  line-height: 27px;
  color: #565467 !important;
  text-align: left;
  transition: all 2s linear;
}
.three-column-content-block .section__content .section__column .section__inner .card-wrapper .read-more {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1A163D;
  font-size: 15px;
  line-height: 30px;
}

.three-column-expanding-cta-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.three-column-expanding-cta-block .section__shell {
  position: relative;
  height: 100%;
}
.three-column-expanding-cta-block .slick-dots {
  margin-left: 0px;
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.three-column-expanding-cta-block .slick-dots li.slick-active button {
  background-color: #50A5F9;
  border: 2px solid #50A5F9;
}
.three-column-expanding-cta-block .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: #B2B1B7;
  border: 2px solid #B2B1B7;
  border-radius: 50%;
  padding: 5px;
}
.three-column-expanding-cta-block .slick-list {
  padding: 0px !important;
}
.three-column-expanding-cta-block .slick-list .slick-slide .image-wrapper {
  height: 214px !important;
}
.three-column-expanding-cta-block .slick-list .slick-current {
  max-width: 75vw;
  margin-right: 5vw;
}
@media (min-width: 34.375em) {
  .three-column-expanding-cta-block .slick-list .slick-current {
    max-width: 100vw;
    margin-right: 0px;
  }
}
.three-column-expanding-cta-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
@media (min-width: 34.375em) {
  .three-column-expanding-cta-block .section__content {
    justify-content: space-between;
    flex-flow: row wrap;
    flex-wrap: nowrap;
  }
}
.three-column-expanding-cta-block .section__content .section__column {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 34.375em) {
  .three-column-expanding-cta-block .section__content .section__column {
    width: 32.5%;
  }
}
.three-column-expanding-cta-block .section__content .section__column:hover, .three-column-expanding-cta-block .section__content .section__column.active {
  transition: width 0.3s ease-in-out;
  width: 100%;
}
@media (min-width: 34.375em) {
  .three-column-expanding-cta-block .section__content .section__column:hover, .three-column-expanding-cta-block .section__content .section__column.active {
    width: 50%;
  }
}
.three-column-expanding-cta-block .section__content .section__column:hover .image-wrapper, .three-column-expanding-cta-block .section__content .section__column.active .image-wrapper {
  height: auto;
}
.three-column-expanding-cta-block .section__content .section__column:hover .card-wrapper, .three-column-expanding-cta-block .section__content .section__column.active .card-wrapper {
  display: block;
}
.three-column-expanding-cta-block .section__content .section__column:hover .card-wrapper h3, .three-column-expanding-cta-block .section__content .section__column.active .card-wrapper h3 {
  opacity: 1;
  animation: fade-in 2s ease;
}
.three-column-expanding-cta-block .section__content .section__column:hover .card-wrapper p, .three-column-expanding-cta-block .section__content .section__column.active .card-wrapper p {
  opacity: 1;
  animation: fade-in 2s ease;
}
.three-column-expanding-cta-block .section__content .section__column .title-wrapper strong {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 40px;
}
.three-column-expanding-cta-block .section__content .section__column .title-wrapper span {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 48px;
  font-style: italic;
  font-size: 18px;
}
@media (min-width: 56.25em) {
  .three-column-expanding-cta-block .section__content .section__column .title-wrapper span {
    font-size: 23px;
  }
}
.three-column-expanding-cta-block .section__content .section__column .image-wrapper {
  width: 100%;
  height: 255px;
  overflow: hidden;
}
.three-column-expanding-cta-block .section__content .section__column .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.three-column-expanding-cta-block .section__content .section__column .card-wrapper {
  display: none;
  background: #FFF;
  padding: 2rem;
}
.three-column-expanding-cta-block .section__content .section__column .card-wrapper h3 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  opacity: 0;
  color: #1A163D;
  font-size: 23px;
}
@media (min-width: 34.375em) {
  .three-column-expanding-cta-block .section__content .section__column .card-wrapper h3 {
    font-size: 32px;
    line-height: 41px;
  }
}
.three-column-expanding-cta-block .section__content .section__column .card-wrapper p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  opacity: 0;
  margin-top: 0.75rem;
  font-size: 17px;
  line-height: 27px;
  color: #565467;
  text-align: left;
}
.three-column-expanding-cta-block .section__content .section__column .card-wrapper .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1.5rem;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.5px;
  border-radius: 12px;
  z-index: 10;
}
.three-column-expanding-cta-block .section__content .section__column .card-wrapper .btn .btn-arrow {
  display: none;
  margin-left: 15px;
  height: 13px;
}
.three-column-expanding-cta-block .section__content .section__column .card-wrapper .btn:hover .btn-arrow {
  display: inline-block;
}

.three-column-expanding-cta-slider {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.three-column-expanding-cta-slider .section__shell {
  position: relative;
  height: 100%;
}
.three-column-expanding-cta-slider .controls {
  align-items: center;
}
.three-column-expanding-cta-slider .controls * {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  height: 43px;
  width: 43px;
  z-index: 5;
  padding: 0px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 25px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s ease;
  top: 0 !important;
}
.three-column-expanding-cta-slider .controls *:hover {
  background-color: rgb(255, 255, 255);
}
.three-column-expanding-cta-slider .controls .slider-prev-three-column-expanding-cta {
  background-image: url("../images/wiredmedia/slider-arrow-left.png");
  right: 3.5rem;
}
.three-column-expanding-cta-slider .controls .slider-next-three-column-expanding-cta {
  background-image: url("../images/wiredmedia/slider-arrow-right.png");
  right: 0.5rem;
}
.three-column-expanding-cta-slider .section__content .section__header {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 32px;
  line-height: 41px;
  color: #1A163D;
  margin-bottom: 2rem;
}
.three-column-expanding-cta-slider .section__content .three-column-expanding-cta-slider-list .slick-list {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.three-column-expanding-cta-slider .section__content .section__row {
  position: relative;
  height: 100%;
  width: 1152px;
  max-width: calc(100vw - 1rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (min-width: 34.375em) {
  .three-column-expanding-cta-slider .section__content .section__row {
    justify-content: space-between;
    flex-flow: row wrap;
    flex-wrap: nowrap;
  }
}
.three-column-expanding-cta-slider .section__content .section__row .section__column {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 34.375em) {
  .three-column-expanding-cta-slider .section__content .section__row .section__column {
    width: 32.5%;
  }
}
.three-column-expanding-cta-slider .section__content .section__row .section__column:hover {
  transition: width 0.3s ease-in-out;
  width: 100%;
}
@media (min-width: 34.375em) {
  .three-column-expanding-cta-slider .section__content .section__row .section__column:hover {
    width: 50%;
  }
}
.three-column-expanding-cta-slider .section__content .section__row .section__column:hover .image-wrapper {
  height: auto;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column:hover .card-wrapper {
  display: block;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column:hover .card-wrapper h3 {
  opacity: 1;
  animation: fade-in 2s ease;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column:hover .card-wrapper p {
  opacity: 1;
  animation: fade-in 2s ease;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .title-wrapper strong {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  font-size: 40px;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .title-wrapper span {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  line-height: 48px;
  font-style: italic;
  font-size: 18px;
}
@media (min-width: 56.25em) {
  .three-column-expanding-cta-slider .section__content .section__row .section__column .title-wrapper span {
    font-size: 23px;
  }
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .image-wrapper {
  width: 100%;
  height: 255px;
  overflow: hidden;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .card-wrapper {
  display: none;
  background: #FFF;
  padding: 2rem;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .card-wrapper h3 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  opacity: 0;
  color: #1A163D;
  font-size: 23px;
}
@media (min-width: 34.375em) {
  .three-column-expanding-cta-slider .section__content .section__row .section__column .card-wrapper h3 {
    font-size: 32px;
    line-height: 41px;
  }
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .card-wrapper p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  opacity: 0;
  margin-top: 0.75rem;
  font-size: 17px;
  line-height: 27px;
  color: #565467;
  text-align: left;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .card-wrapper .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  margin-top: 1.5rem;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.5px;
  border-radius: 12px;
  z-index: 10;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .card-wrapper .btn .btn-arrow {
  display: none;
  margin-left: 15px;
  height: 13px;
}
.three-column-expanding-cta-slider .section__content .section__row .section__column .card-wrapper .btn:hover .btn-arrow {
  display: inline-block;
}

.three-column-slide-down-cta-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
  overflow: hidden;
}
.three-column-slide-down-cta-block .section__shell {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.three-column-slide-down-cta-block .slick-dots {
  margin-left: 0px;
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.three-column-slide-down-cta-block .slick-dots li.slick-active button {
  background-color: #50A5F9;
  border: 2px solid #50A5F9;
}
.three-column-slide-down-cta-block .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: #B2B1B7;
  border: 2px solid #B2B1B7;
  border-radius: 50%;
  padding: 5px;
}
.three-column-slide-down-cta-block .slick-list {
  padding: 0px !important;
}
.three-column-slide-down-cta-block .slick-list .slick-current {
  max-width: 75vw;
  margin-right: 5vw;
}
@media (min-width: 34.375em) {
  .three-column-slide-down-cta-block .slick-list .slick-current {
    max-width: 100vw;
    margin-right: 0px;
  }
}
.three-column-slide-down-cta-block .section-header {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  width: 100%;
  line-height: 48px;
  color: #1A163D;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 26px;
}
@media (min-width: 34.375em) {
  .three-column-slide-down-cta-block .section-header {
    margin-bottom: 2rem;
    font-size: 40px;
  }
}
.three-column-slide-down-cta-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  overflow: hidden;
}
@media (min-width: 34.375em) {
  .three-column-slide-down-cta-block .section__content {
    justify-content: space-between;
    flex-flow: row wrap;
    flex-wrap: nowrap;
  }
}
.three-column-slide-down-cta-block .section__content .section__column {
  transition: all 1s ease-in;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 34.375em) {
  .three-column-slide-down-cta-block .section__content .section__column {
    width: 32%;
  }
}
@media (min-width: 68.75em) {
  .three-column-slide-down-cta-block .section__content .section__column {
    height: 135px;
  }
}
.three-column-slide-down-cta-block .section__content .section__column:hover {
  cursor: default;
  height: auto;
  min-height: 350px;
}
.three-column-slide-down-cta-block .section__content .section__column:hover .title-wrapper {
  z-index: 100;
  color: #4D3EFF;
}
.three-column-slide-down-cta-block .section__content .section__column:hover .title-wrapper img {
  display: none;
}
.three-column-slide-down-cta-block .section__content .section__column:hover .title-wrapper span {
  display: none;
}
.three-column-slide-down-cta-block .section__content .section__column:hover .card-wrapper {
  top: 0;
}
.three-column-slide-down-cta-block .section__content .section__column .title-wrapper {
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 1.5rem;
  display: none;
}
@media (min-width: 68.75em) {
  .three-column-slide-down-cta-block .section__content .section__column .title-wrapper {
    display: block;
  }
}
.three-column-slide-down-cta-block .section__content .section__column .title-wrapper h3 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  z-index: 100;
  margin-bottom: 10px;
  line-height: 41px;
  font-size: 22px;
}
@media (min-width: 34.375em) {
  .three-column-slide-down-cta-block .section__content .section__column .title-wrapper h3 {
    font-size: 16px;
  }
}
@media (min-width: 56.25em) {
  .three-column-slide-down-cta-block .section__content .section__column .title-wrapper h3 {
    font-size: 22px;
  }
}
@media (min-width: 68.75em) {
  .three-column-slide-down-cta-block .section__content .section__column .title-wrapper h3 {
    font-size: 32px;
  }
}
.three-column-slide-down-cta-block .section__content .section__column .title-wrapper h3 img {
  height: 15px;
}
.three-column-slide-down-cta-block .section__content .section__column .title-wrapper span {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  color: #565467;
  line-height: 27px;
  font-size: 15px;
}
@media (min-width: 34.375em) {
  .three-column-slide-down-cta-block .section__content .section__column .title-wrapper span {
    font-size: 12px;
  }
}
@media (min-width: 56.25em) {
  .three-column-slide-down-cta-block .section__content .section__column .title-wrapper span {
    font-size: 17px;
  }
}
.three-column-slide-down-cta-block .section__content .section__column .card-wrapper {
  transition: all 0.5s ease-in-out;
  position: absolute;
  background: #FFF;
  width: 100%;
  padding: 1.5rem;
  height: auto;
  top: 0;
}
@media (min-width: 68.75em) {
  .three-column-slide-down-cta-block .section__content .section__column .card-wrapper {
    top: -540px;
  }
}
.three-column-slide-down-cta-block .section__content .section__column .card-wrapper h3 {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  display: block;
  opacity: 0;
  color: #4D3EFF;
  margin-bottom: 10px;
  line-height: 41px;
  font-size: 26px;
}
@media (min-width: 34.375em) {
  .three-column-slide-down-cta-block .section__content .section__column .card-wrapper h3 {
    font-size: 22px;
  }
}
@media (min-width: 56.25em) {
  .three-column-slide-down-cta-block .section__content .section__column .card-wrapper h3 {
    font-size: 26px;
  }
}
.three-column-slide-down-cta-block .section__content .section__column .card-wrapper p {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  display: block;
  color: #565467;
  text-align: left;
  min-height: 160px;
  overflow: hidden;
  line-height: 27px;
  font-size: 15px;
}
@media (min-width: 34.375em) {
  .three-column-slide-down-cta-block .section__content .section__column .card-wrapper p {
    font-size: 12px;
  }
}
@media (min-width: 56.25em) {
  .three-column-slide-down-cta-block .section__content .section__column .card-wrapper p {
    font-size: 17px;
  }
}
.three-column-slide-down-cta-block .section__content .section__column .card-wrapper .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  display: inline-block;
  margin-top: 1rem;
  padding: 20px 30px 16px 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1.5px;
  border-radius: 12px;
  z-index: 10;
}
.three-column-slide-down-cta-block .section__content .section__column .card-wrapper .btn .btn-arrow {
  display: none;
  margin-left: 15px;
  height: 13px;
}
.three-column-slide-down-cta-block .section__content .section__column .card-wrapper .btn:hover .btn-arrow {
  display: inline-block;
}

.three-column-zoom-in-cta-block {
  position: relative;
  margin: 0px;
  padding: 3rem 0px 0px 0px;
}
.three-column-zoom-in-cta-block .section__shell {
  position: relative;
  text-align: left;
  height: 100%;
}
.three-column-zoom-in-cta-block .slick-dots {
  margin-left: 0px;
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.three-column-zoom-in-cta-block .slick-dots li.slick-active button {
  background-color: #50A5F9;
  border: 2px solid #50A5F9;
}
.three-column-zoom-in-cta-block .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: #B2B1B7;
  border: 2px solid #B2B1B7;
  border-radius: 50%;
  padding: 5px;
}
.three-column-zoom-in-cta-block .slick-list {
  padding: 0px !important;
}
.three-column-zoom-in-cta-block .slick-list .slick-current {
  max-width: 75vw;
  margin-right: 5vw;
}
@media (min-width: 34.375em) {
  .three-column-zoom-in-cta-block .slick-list .slick-current {
    max-width: 100vw;
    margin-right: 0px;
  }
}
.three-column-zoom-in-cta-block .slick-list .section__column {
  height: 445px;
}
.three-column-zoom-in-cta-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
@media (min-width: 34.375em) {
  .three-column-zoom-in-cta-block .section__content {
    justify-content: space-between;
    flex-flow: row wrap;
    flex-wrap: nowrap;
  }
}
.three-column-zoom-in-cta-block .section__content .section__column {
  position: relative;
  display: flex !important;
  flex-direction: column;
  height: 529px;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 34.375em) {
  .three-column-zoom-in-cta-block .section__content .section__column {
    width: calc(33.3% - 0.5rem);
  }
}
.three-column-zoom-in-cta-block .section__content .section__column .section__row {
  overflow: hidden !important;
  position: relative;
  background: #FFF;
  text-decoration: none;
  height: 100%;
}
.three-column-zoom-in-cta-block .section__content .section__column .section__row.height-half {
  height: 50%;
}
.three-column-zoom-in-cta-block .section__content .section__column .section__row.custom-anchor-tag:hover img {
  transition: all 0.5s ease-in-out;
  transform: scale(1.05);
}
.three-column-zoom-in-cta-block .section__content .section__column .section__row.custom-anchor-tag:hover .btn span {
  width: 38px;
}
.three-column-zoom-in-cta-block .section__content .section__column .section__row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.three-column-zoom-in-cta-block .section__content .section__column .section__row .overlay {
  position: absolute;
  top: 0%;
  left: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.three-column-zoom-in-cta-block .section__content .section__column .section__row .heading {
  font-family: "greycliff-cf", sans-serif !important;
  font-weight: bold !important;
  letter-spacing: -0.25px;
  text-transform: none;
  width: 60%;
  bottom: 1rem;
  left: 1rem;
  position: absolute;
  font-size: 30px;
  line-height: 39px;
  color: #FFF;
}
.three-column-zoom-in-cta-block .section__content .section__column .section__row .btn {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 10px;
  border-radius: 12px;
}
.three-column-zoom-in-cta-block .section__content .section__column .section__row .btn span {
  display: inline-block;
  background-image: url("../images/wiredmedia/arrow-right-white.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 20px;
  width: 28px;
}

.video-showreel {
  position: relative;
  color: #FFF;
  margin: -4rem 0px 0px 0px;
  padding: 0px;
  text-align: center;
  overflow: hidden;
  z-index: 10;
  height: 300px !important;
}
@media (min-width: 34.375em) {
  .video-showreel {
    height: 500px !important;
  }
}
.video-showreel .section__shell {
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  height: 100%;
}
.video-showreel .section__shell .hero__content {
  width: 100%;
  height: 100%;
}
.video-showreel video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 10;
}
.video-showreel iframe {
  max-width: 1192px !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.video-showreel .video-thumbnail {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: 20;
  cursor: pointer;
}
.video-showreel .video-snippet {
  display: none;
}

.video-showreel-after {
  position: relative;
  margin-top: -35px;
  margin-bottom: 3rem;
  margin-left: 0px;
  max-width: 100vw;
}
.video-showreel-after .floating_button {
  position: absolute;
  bottom: -79px;
  left: 0px;
  height: auto;
  width: 100%;
  padding: 0px;
  margin: 0px;
  z-index: 950;
  cursor: pointer;
  display: none;
}

/* 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;
}

.no-padding {
  background: white !important;
  padding: 0px !important;
  margin: 0px !important;
}

.inner-wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.inner-wrap.domus {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.inner-wrap.caslons {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.inner-wrap.museo {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.inner-wrap.p-underground {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.inner-wrap.garamond {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.inner-wrap.pt-sans {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.inner-wrap.minion {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.inner-wrap.clarendon {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.inner-wrap.calibri {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.inner-wrap.century-gothic {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.inner-wrap.gill-sans {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.inner-wrap.baskerville {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.inner-wrap.gotham a.button {
  padding-top: 10px !important;
  max-width: 160px !important;
}
.inner-wrap.clerkenwell {
  font-family: open-sans, 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: open-sans, 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: open-sans, sans-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: open-sans, sans-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: 32px !important;
  font-weight: normal;
  text-transform: none;
  letter-spacing: -2px;
  margin: auto auto 32px;
  font-style: italic !important;
}
@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: "collier", sans-serif;
  font-weight: 400;
  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: open-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
  color: RGBA(0, 0, 0, 0.7);
  text-align: center;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 0px;
}
@media (min-width: 46.875em) {
  .block.standard-text-block.prestige p {
    line-height: 28px;
    margin-top: 28px;
  }
}
@media (min-width: 96.875em) {
  .block.standard-text-block.prestige p {
    font-size: 18px;
    line-height: 32px;
  }
}
.block.standard-text-block.prestige .cta-btn-container {
  margin-top: 30px;
  display: block;
}
.block.standard-text-block.prestige .cta_btn_type_1 {
  color: white;
}
.block.contact .christmas-wired-section {
  margin-bottom: 20px;
}
@media (min-width: 24.375em) {
  .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: open-sans, sans-serif;
  text-decoration: none !important;
  padding: 5px 20px 8px 20px;
  max-width: 350px;
  font-size: 14px;
  display: inline-block;
}
@media (min-width: 24.375em) {
  .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: open-sans, 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: open-sans, 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: open-sans, 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 .block {
  padding-bottom: 0px;
  padding-top: 0px;
}
.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: 20px;
  }
}
.flexible-content-wrap-premium.prestige > *:last-child {
  margin-bottom: 0;
}
.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: open-sans, 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: open-sans, sans-serif;
}
.popup-wrap.caslons {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.popup-wrap.museo {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.popup-wrap.p-underground {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.popup-wrap.garamond {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.popup-wrap.pt-sans {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.popup-wrap.minion {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.popup-wrap.clarendon {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.popup-wrap.calibri {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.popup-wrap.century-gothic {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.popup-wrap.gill-sans {
  font-family: open-sans, 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: open-sans, sans-serif;
}
.popup-wrap.baskerville {
  font-family: open-sans, sans-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: open-sans, sans-serif;
}
.popup-wrap.gotham a.button {
  padding-top: 10px !important;
  max-width: 160px !important;
}
.popup-wrap.clerkenwell {
  font-family: open-sans, 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: open-sans, 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: open-sans, sans-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: open-sans, sans-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;
  }
}

.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: 1rem;
}
@media (min-width: 64.125em) {
  footer.prestige {
    padding: 20px 4rem 20px 4rem;
  }
}
footer.prestige .opening_hours_wrapper {
  margin-bottom: 30px;
  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: open-sans, sans-serif;
  font-weight: 300;
  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: open-sans, sans-serif;
  font-weight: 300;
  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: 15px;
    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: open-sans, sans-serif;
  font-weight: 300;
  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: 15px;
    line-height: 32px;
  }
}
footer.prestige .opening_hours_wrapper .opening-hours .bottom-section .menu-footer-title {
  font-weight: 700;
}
footer.prestige .opening_hours_wrapper.active {
  height: 244px;
}
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: 30px;
  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: open-sans, sans-serif;
  font-weight: 300;
  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;
}
footer.prestige .newsletter_wrapper .newsletter .row {
  font-family: open-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.25px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 46.875em) {
  footer.prestige .newsletter_wrapper .newsletter .row {
    font-size: 15px;
    line-height: 32px;
  }
}
footer.prestige .newsletter_wrapper .newsletter .row input {
  background-color: #363439;
  border-color: #363439;
  border-style: none;
  color: #999299;
  padding: 11px 15px;
}
footer.prestige .newsletter_wrapper .newsletter .row input.half {
  width: 48%;
}
footer.prestige .newsletter_wrapper .newsletter .row input.full {
  width: 100%;
}
footer.prestige .newsletter_wrapper .newsletter .row.copy {
  font-family: open-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
  line-height: 15px;
  color: #999299;
  margin: 24px 0;
}
footer.prestige .newsletter_wrapper .newsletter .row.copy a {
  color: #999299;
  text-transform: none;
}
footer.prestige .newsletter_wrapper .newsletter .row .newsletter_subscribe {
  font-family: open-sans, sans-serif;
  font-weight: 300;
  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 .row .newsletter_subscribe {
    font-size: 15px;
    line-height: 15px;
    padding: 16px 47px;
  }
}
footer.prestige .newsletter_wrapper .newsletter .row:last-of-type {
  justify-content: center;
}
footer.prestige .newsletter_wrapper.active {
  height: 280px;
}
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;
}
footer.prestige .footer_box {
  margin-bottom: 15px !important;
  font-family: open-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px !important;
  line-height: 20px;
  letter-spacing: 0.25px;
  flex-direction: row;
  justify-content: center;
}
@media (min-width: 46.875em) {
  footer.prestige .footer_box {
    font-size: 14px;
    line-height: 15px;
  }
}
footer.prestige .footer_box.social_box {
  display: flex;
}
footer.prestige .footer_box a {
  color: inherit;
  text-decoration: none;
}
footer.prestige .footer_box .cta_btn_type_2 {
  font-size: 10px;
  line-height: 10px;
  padding: 8px 15px 8px 15px !important;
  border: 1px solid white;
  margin: 0px !important;
}
@media (min-width: 34.375em) {
  footer.prestige .footer_box .cta_btn_type_2 {
    font-size: 14px;
    line-height: 14px;
    padding: 10px 15px 10px 15px !important;
  }
}
footer.prestige .footer_box .cta_btn_type_2 img {
  height: 24px !important;
  line-height: 24px !important;
  padding: 0px !important;
}
footer.prestige .footer_box .footer-icon-link {
  padding: 5px 15px 5px 15px !important;
}
footer.prestige .footer_box .footer-icon-link .icon-light {
  display: inline-block;
}
footer.prestige .footer_box .footer-icon-link .icon-dark {
  display: none;
}
footer.prestige .footer_box .footer-icon-link:hover .icon-light {
  display: none;
}
footer.prestige .footer_box .footer-icon-link:hover .icon-dark {
  display: inline-block;
}
footer.prestige .footer_contacts_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
footer.prestige .footer_contacts_wrapper .footer_links {
  padding: 10px;
}
footer.prestige .footer_contacts_wrapper .phone {
  padding-left: 20px;
  padding-right: 20px;
}
footer.prestige .footer_contacts_wrapper .mail {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 46.875em) {
  footer.prestige .footer_contacts_wrapper {
    flex-direction: row;
  }
}
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_menu_row_wrapper {
  width: 100%;
  padding: 0px !important;
  margin: 0px !important;
  display: none;
}
@media (min-width: 46.875em) {
  footer.prestige .footer_menu_row_wrapper {
    display: flex;
    flex-direction: row;
  }
}
footer.prestige .footer_menu_row_wrapper .footer-col1 {
  width: 30%;
}
footer.prestige .footer_menu_row_wrapper .footer-col1 img {
  height: 60px;
}
footer.prestige .footer_menu_row_wrapper .footer-col2 {
  width: 70%;
  display: flex;
  flex-direction: column;
}
footer.prestige .footer_menu_row_wrapper .footer-col2.footer-col2-bottom {
  flex-direction: row;
  align-items: center;
  justify-content: left !important;
}
footer.prestige .footer_menu_row_wrapper .footer-col2 .socials-row {
  padding: 0px 10px 0px 0px !important;
  width: 100% !important;
  display: flex;
  flex-direction: row;
}
@media (min-width: 46.875em) {
  footer.prestige .footer_menu_row_wrapper .footer-col2 .socials-row {
    padding: 20px 10px 0px 0px !important;
  }
}
footer.prestige .footer_menu_row_wrapper .footer-col2 .socials-row .fa-twitter,
footer.prestige .footer_menu_row_wrapper .footer-col2 .socials-row .fa-facebook-f {
  font-size: 20px !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
}
footer.prestige .footer_menu_row_wrapper .footer-col2 .socials-row .icons-row {
  width: 30%;
}
footer.prestige .footer_menu_row_wrapper .footer-col2 .socials-row .privacy-row {
  width: 70%;
  text-align: right !important;
}
footer.prestige .footer_menu_row_wrapper .footer-col2 .socials-row .privacy-row a {
  padding: 0px 10px 10px 10px !important;
  color: #3DA3DC !important;
  font-size: 12px !important;
}
@media (min-width: 64.125em) {
  footer.prestige .footer_menu_row_wrapper .footer-col2 .socials-row .privacy-row a {
    font-size: 15px !important;
  }
}
footer.prestige .footer_menu_row_wrapper .footer-col2 ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between !important;
}
footer.prestige .footer_menu_row_wrapper .footer-col2 ul li {
  padding: 0px 20px 0px 0px !important;
  font-size: 11px !important;
  font-weight: bold !important;
}
@media (min-width: 64.125em) {
  footer.prestige .footer_menu_row_wrapper .footer-col2 ul li {
    font-size: 15px !important;
  }
}
footer.prestige .footer_menu_row_wrapper.mobile {
  display: flex;
  flex-direction: column;
}
@media (min-width: 46.875em) {
  footer.prestige .footer_menu_row_wrapper.mobile {
    display: none;
  }
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col1,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col2,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col3 {
  width: 100%;
  margin-bottom: 1rem;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col1 a,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col2 a,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col3 a {
  font-size: 15px !important;
  font-weight: bold !important;
  margin-bottom: 10px !important;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col1 {
  text-align: center;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col1 img {
  height: auto !important;
  width: 100% !important;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col2,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col3 {
  display: flex;
  flex-direction: row;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col2 .sub-row,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col3 .sub-row {
  width: 50% !important;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col2 .sub-row.socials-row,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col3 .sub-row.socials-row {
  width: 100% !important;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col2 .sub-row .icons-row,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col3 .sub-row .icons-row {
  width: 100% !important;
  text-align: right;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col2 .sub-row .privacy-row,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col3 .sub-row .privacy-row {
  width: 100% !important;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col2 .sub-row .privacy-row a,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col3 .sub-row .privacy-row a {
  color: #3DA3DC !important;
  font-size: 15px !important;
}
footer.prestige .footer_menu_row_wrapper.mobile .footer-col2 .main-nav-prestige .main-nav,
footer.prestige .footer_menu_row_wrapper.mobile .footer-col3 .main-nav-prestige .main-nav {
  flex-direction: column;
}
footer.prestige .footer_last_row_wrapper {
  width: 100%;
  display: flex;
  margin: 0px !important;
  padding: 0px !important;
  flex-direction: column;
}
@media (min-width: 64.125em) {
  footer.prestige .footer_last_row_wrapper {
    flex-direction: row;
  }
}
footer.prestige .footer_last_row_wrapper .footer-col1 {
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 64.125em) {
  footer.prestige .footer_last_row_wrapper .footer-col1 {
    width: 40%;
  }
}
footer.prestige .footer_last_row_wrapper .footer-col1 img {
  height: 50px;
}
footer.prestige .footer_last_row_wrapper .footer-col2 {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: left !important;
  width: 100%;
}
@media (min-width: 64.125em) {
  footer.prestige .footer_last_row_wrapper .footer-col2 {
    width: 60%;
  }
}
footer.prestige .footer_last_row_wrapper .footer-col2.footer-col2-bottom {
  flex-direction: row;
}
footer.prestige .footer_last_row_wrapper .footer-col2 .sub-row {
  width: 100% !important;
  justify-content: left !important;
}
footer.prestige .footer_last_row_wrapper .footer-col2 ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between !important;
}
footer.prestige .footer_last_row_wrapper .footer-col2 ul li {
  padding: 0px 20px 0px 0px !important;
  font-size: 15px !important;
}

.menu-overlay-footer {
  position: relative;
  bottom: 0;
  left: 0;
  padding: 0px 0px 0px 0px !important;
  margin: 0px 0px 0px 5px !important;
  background: white;
  color: black;
  width: 100% !important;
}
@media (min-width: 46.875em) {
  .menu-overlay-footer {
    position: absolute;
  }
}
.menu-overlay-footer .footer_box {
  font-size: 13px !important;
}
.menu-overlay-footer .footer_box .address {
  font-size: 13px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.menu-overlay-footer .footer_box .phone,
.menu-overlay-footer .footer_box .mail {
  font-size: 13px !important;
}
.menu-overlay-footer .footer_last_row_wrapper {
  padding-top: 30px;
  font-size: 12px !important;
  color: black !important;
}
.menu-overlay-footer .cta_btn_type_2 {
  background: black;
  border: 1px solid white !important;
}
.menu-overlay-footer .cta_btn_type_2:hover {
  background: white !important;
  border: 1px solid black !important;
}

header.page-head.prestige {
  position: absolute;
  top: 0px;
  height: 90px;
}
header.page-head.prestige .header-top-nav-bar-prestige {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper .light {
  display: block !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper .dark {
  display: none !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  width: 200px !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left a {
  width: 300px !important;
  display: block !important;
  text-align: left !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left a img {
  height: 60px !important;
}
@media (min-width: 75em) {
  header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.left a img {
    height: 82px !important;
  }
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end !important;
  width: calc(100% - 200px) !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link {
  display: none !important;
  padding: 10px 10px 3px 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  overflow: hidden;
}
@media (min-width: 56.25em) {
  header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link {
    display: inline-block !important;
    align-items: flex-end;
  }
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link .dropdown {
  display: none;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link a {
  font-weight: unset !important;
  font-family: "rotunda-variable", sans-serif !important;
  font-variation-settings: "wght" 300 !important;
  font-style: normal;
  letter-spacing: -0.25px;
  text-decoration: none;
  font-size: 18px;
  color: #FFF;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link:hover {
  transition: all 0.45s ease;
  border-bottom: 2px solid #f4ead7;
  color: #f4ead7 !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link:hover a {
  color: #f4ead7 !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link:hover .dropdown {
  top: 0;
  display: block;
  margin-top: 35px;
  margin-left: -10px;
  position: absolute;
  list-style-type: none;
  padding: 0px 0px 0px 0px;
  background-color: rgba(0, 0, 0, 0.6) !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link:hover .dropdown li {
  padding: 10px 10px 10px 10px;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link:hover .dropdown li a:hover {
  color: black !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link:hover .dropdown li:hover {
  background-color: rgba(255, 255, 255, 0.6) !important;
  color: black !important;
}
header.page-head.prestige .header-top-nav-bar-prestige .nav-links-wrapper.right .nav-link:hover .dropdown li:hover * {
  color: black !important;
}
header.page-head {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 950;
}
header.page-head.scrolled-nav .wiredmedia-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 .wiredmedia-bar {
  width: 100%;
  max-width: 100%;
}
header.page-head .wiredmedia-bar .inner {
  padding: 15px !important;
  background-color: rgba(0, 0, 0, 0.5);
}
header.page-head .wiredmedia-bar a {
  font-family: open-sans, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header.page-head .wiredmedia-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.default-header {
  background: #FFF;
}
header.default-header.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center .nav-link a {
  color: #1A163D;
}
header.default-header.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center .nav-link .dropdown {
  background-color: rgba(26, 22, 61, 0.9) !important;
}
header.default-header.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center .nav-link:hover {
  color: #1A163D !important;
}
header.default-header.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center .nav-link:hover a {
  color: #1A163D !important;
}
header.default-header.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center .nav-link:hover .dropdown {
  background-color: rgba(26, 22, 61, 0.9) !important;
}
header.default-header.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center .nav-link:hover .dropdown li a {
  color: #FFF !important;
}
header.default-header.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center .nav-link:hover .dropdown li a:hover {
  color: #1A163D !important;
}
header.default-header.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center .nav-link:hover .dropdown li:hover a {
  color: #1A163D !important;
}
header.default-header.prestige .header-top-nav-bar-prestige .nav-links-wrapper.center .nav-link:hover .dropdown li:hover a:hover {
  color: #1A163D !important;
}

.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: open-sans, 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: open-sans, sans-serif;
  margin: 25px 0;
}

@keyframes fadeOutOpacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.scrolled-nav .scroll-hidden {
  opacity: 0;
  animation-name: fadeOutOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1s;
}

@media only screen and (max-width: 600px) {
  .hide-on-mobile {
    display: none;
  }
}
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: open-sans, sans-serif;
}
nav.navigation-caslons {
  font-family: open-sans, sans-serif;
}
nav.navigation-museo {
  font-family: open-sans, sans-serif;
}
nav.navigation-p-underground {
  font-family: open-sans, sans-serif;
}
nav.navigation-garamond {
  font-family: open-sans, sans-serif;
}
nav.navigation-pt-sans {
  font-family: open-sans, sans-serif;
}
nav.navigation-minion {
  font-family: open-sans, sans-serif;
}
nav.navigation-clarendon {
  font-family: open-sans, sans-serif;
}
nav.navigation-calibri {
  font-family: open-sans, sans-serif;
}
nav.navigation-century-gothic {
  font-family: open-sans, sans-serif;
}
nav.navigation-gill-sans {
  font-family: open-sans, sans-serif;
}
nav.navigation-gotham {
  font-family: open-sans, sans-serif;
}
nav.navigation-baskerville {
  font-family: open-sans, sans-serif;
}
nav.navigation-clerkenwell {
  font-family: open-sans, sans-serif;
}
nav.navigation-avenir {
  font-family: open-sans, sans-serif;
}
nav.navigation-century-schoolbook {
  font-family: open-sans, sans-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;
  width: 100%;
}
@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: open-sans, 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 .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: 100%;
  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: 200%;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  transition: all 1s ease;
  background: #F5F5F5;
}
.menu-overlay.active {
  display: flex;
  left: 0;
}
.menu-overlay.active .left {
  left: 0;
}
.menu-overlay > * {
  width: 100%;
}
@media (min-width: 46.875em) {
  .menu-overlay > * {
    width: 70vw;
  }
}
@media (min-width: 56.25em) {
  .menu-overlay > * {
    width: 61vw;
  }
}
@media (min-width: 64.125em) {
  .menu-overlay > * {
    width: 56vw;
  }
}
@media (min-width: 68.75em) {
  .menu-overlay > * {
    width: 52vw;
  }
}
@media (min-width: 75em) {
  .menu-overlay > * {
    width: 50vw;
  }
}
.menu-overlay .full-width {
  width: 100%;
  height: 100vh;
  z-index: 2;
  position: relative;
}
.menu-overlay .full-width .menu-overlay-icons {
  position: absolute;
  width: 100% !important;
  height: 100vh !important;
  display: block !important;
  padding: 0px !important;
  font-size: 20px;
  font-weight: bold;
  font-family: open-sans, sans-serif;
  color: #0B538D !important;
  top: 2rem;
  left: 2rem;
}
.menu-overlay .full-width .menu-overlay-icons a {
  color: #0B538D !important;
}
@media (min-width: 46.875em) {
  .menu-overlay .full-width .menu-overlay-icons {
    top: 4rem;
    left: 4rem;
  }
}
.menu-overlay .full-width nav.main-nav-prestige {
  position: relative;
  display: block;
  text-align: right;
  min-height: 100vh;
  width: 100%;
  padding: 0px 0px;
}
@media (min-width: 56.25em) {
  .menu-overlay .full-width nav.main-nav-prestige {
    padding: 52px 5px;
  }
}
.menu-overlay .full-width nav.main-nav-prestige > ul {
  width: 100%;
  height: 80vh;
  padding: 4rem 2rem;
}
@media (min-width: 56.25em) {
  .menu-overlay .full-width nav.main-nav-prestige > ul {
    padding: 4rem 4rem;
  }
}
.menu-overlay .full-width nav.main-nav-prestige > ul li {
  text-align: right;
  width: 100%;
}
.menu-overlay .full-width nav.main-nav-prestige > ul li a {
  display: block;
  text-decoration: none;
  font-weight: 300;
  font-family: "collier", sans-serif;
  font-size: 40px !important;
  letter-spacing: 2px;
  line-height: 1.5 !important;
  color: #0B538D;
}
.menu-overlay .full-width nav.main-nav-prestige .menu-footer {
  font-family: open-sans, sans-serif;
  font-weight: 300;
  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 .full-width nav.main-nav-prestige .menu-footer {
    flex-direction: row;
    font-weight: 300;
    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 .full-width 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 .full-width 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 .full-width nav.main-nav-prestige .menu-footer > * {
    width: 50%;
  }
}
.menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-left {
  margin-top: 28px;
}
@media (min-width: 46.875em) {
  .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-left {
    margin-top: unset;
  }
}
.menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-right {
  margin-top: 28px;
}
@media (min-width: 46.875em) {
  .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-right {
    margin-top: unset;
  }
}
.menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-title {
  font-weight: 700;
}
@media (min-width: 46.875em) {
  .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 12px;
  }
}
@media (min-width: 75em) {
  .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 13px;
  }
}
@media (min-width: 81.25em) {
  .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 14px;
  }
}
@media (min-width: 87.5em) {
  .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 16px;
  }
}
@media (min-width: 96.875em) {
  .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-left *:not(.menu-footer-title), .menu-overlay .full-width nav.main-nav-prestige .menu-footer .menu-footer-right *:not(.menu-footer-title) {
    font-size: 18px;
  }
}
.menu-overlay .full-width 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 .full-width nav.main-nav-prestige .phone-menu-link {
    display: none;
  }
}
.menu-overlay .full-width nav.main-nav-prestige .phone-menu-link .phone {
  width: 29px;
  height: 29px;
}
.menu-overlay .full-width nav.main-nav-prestige .phone-menu-link .phone-wrapper {
  padding-left: 18px;
  font-family: open-sans, sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.25px;
  line-height: 28px;
  text-align: center;
}
.menu-overlay .left {
  position: relative;
  transition: left 1s;
  left: 200%;
  z-index: 1;
  overflow: hidden;
  display: none;
}
@media (min-width: 46.875em) {
  .menu-overlay .left {
    display: block;
  }
}
.menu-overlay .left .menu-overlay-icons {
  width: 100% !important;
  display: block !important;
  padding: 15% 15% 0px 15% !important;
  font-size: 20px;
  font-weight: bold;
  font-family: open-sans, sans-serif;
  color: #0B538D;
}
.menu-overlay .left img {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-left: -50px !important;
}
.menu-overlay .right {
  z-index: 2;
}
@media (min-width: 46.875em) {
  .menu-overlay .right {
    position: absolute;
    left: 30vw;
  }
}
@media (min-width: 56.25em) {
  .menu-overlay .right {
    left: 39vw;
  }
}
@media (min-width: 64.125em) {
  .menu-overlay .right {
    left: 44vw;
  }
}
@media (min-width: 68.75em) {
  .menu-overlay .right {
    left: 48vw;
  }
}
@media (min-width: 75em) {
  .menu-overlay .right {
    position: static;
    left: unset;
  }
}
.menu-overlay .right nav.main-nav-prestige {
  position: relative;
  display: block;
  text-align: right;
  min-height: 100vh;
  width: 100%;
  padding: 0px 0px;
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige {
    padding: 30px;
  }
}
@media (min-width: 56.25em) {
  .menu-overlay .right nav.main-nav-prestige {
    padding: 52px 5px;
  }
}
.menu-overlay .right nav.main-nav-prestige > ul {
  width: 100%;
  height: 80vh;
  padding: 4rem 2rem;
}
@media (min-width: 56.25em) {
  .menu-overlay .right nav.main-nav-prestige > ul {
    padding: 4rem 4rem;
  }
}
.menu-overlay .right nav.main-nav-prestige > ul li {
  text-align: right;
  width: 100%;
}
.menu-overlay .right nav.main-nav-prestige > ul li a {
  display: block;
  text-decoration: none;
  font-weight: 300;
  font-family: "collier", sans-serif;
  font-size: 40px !important;
  letter-spacing: 2px;
  line-height: 1.5 !important;
  color: #0B538D;
}
@media (min-width: 46.875em) {
  .menu-overlay .right nav.main-nav-prestige > ul li a {
    font-size: 21px;
  }
}
@media (min-width: 56.25em) {
  .menu-overlay .right nav.main-nav-prestige > ul li a {
    font-size: 22px;
  }
}
@media (min-width: 64.125em) {
  .menu-overlay .right nav.main-nav-prestige > ul li a {
    font-size: 23px;
  }
}
@media (min-width: 75em) {
  .menu-overlay .right nav.main-nav-prestige > ul li a {
    font-size: 25px;
  }
}
@media (min-width: 81.25em) {
  .menu-overlay .right nav.main-nav-prestige > ul li a {
    font-size: 27px;
  }
}
.menu-overlay .right nav.main-nav-prestige .menu-footer {
  font-family: open-sans, sans-serif;
  font-weight: 300;
  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;
    font-weight: 300;
    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: 50%;
  }
}
.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: open-sans, sans-serif;
  font-weight: 300;
  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: 1.5rem;
  right: 1.5rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 2s;
  cursor: default;
}
@media (min-width: 96.875em) {
  .menu-btn-close {
    width: 28px;
    height: 28px;
    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;
}

.menu-burger-item-anchor {
  display: inline-block !important;
}

.open-menu-burger-item-children {
  cursor: pointer;
  display: none !important;
  color: black;
  padding: 2px 3px 2px 3px !important;
  margin-left: 5px;
  line-height: 32px;
}

.menu-burger-item-children {
  display: block;
}
.menu-burger-item-children li {
  width: 100%;
  min-height: 35px;
}
.menu-burger-item-children li a {
  font-size: 16px !important;
  line-height: 21px !important;
  text-align: center !important;
}
@media (min-width: 28.125em) {
  .menu-burger-item-children li a {
    font-size: 20px !important;
    line-height: 32px !important;
  }
}
@media (min-width: 46.875em) {
  .menu-burger-item-children li a {
    font-size: 25px !important;
    line-height: 34px !important;
  }
}

.open-menu-burger-item-grandchildren {
  cursor: pointer;
  display: none !important;
  color: black;
  padding: 2px 3px 2px 3px !important;
  margin-left: 5px;
  line-height: 32px;
}

.menu-burger-item-grandchildren {
  display: block;
}
.menu-burger-item-grandchildren li {
  width: 100%;
}
.menu-burger-item-grandchildren li a {
  font-size: 13px !important;
  line-height: 32px !important;
  text-align: center !important;
}
@media (min-width: 46.875em) {
  .menu-burger-item-grandchildren li a {
    font-size: 18px !important;
    line-height: 34px !important;
  }
}

.menu-hidden {
  display: none !important;
}

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 {
  text-transform: uppercase;
  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%;
  }
}

.text-white {
  color: white !important;
}

.text-primary {
  color: #0B538D !important;
}

.text-bold {
  font-weight: bold !important;
}

.hide {
  display: none !important;
}

.mobile_image_background {
  background-attachment: fixed !important;
}

.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 .wiredmedia-badge,
.woocommerce-cart .wiredmedia-badge,
.woocommerce-checkout .wiredmedia-badge {
  display: none;
}

.wiredmedia-badge {
  position: absolute;
  z-index: 910;
  bottom: -40px;
  left: 0px;
  text-align: center;
  width: 100%;
}
@media (min-width: 46.875em) {
  .wiredmedia-badge {
    bottom: -60px;
  }
}
.wiredmedia-badge img {
  width: 100%;
  max-width: 75px;
}
@media (min-width: 46.875em) {
  .wiredmedia-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;
}

/* 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: open-sans, sans-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: open-sans, sans-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: open-sans, sans-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: open-sans, sans-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("../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("../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: open-sans, sans-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: open-sans, sans-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: open-sans, sans-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: open-sans, sans-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 */
