@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

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

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic;
}

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

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

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

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

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

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

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

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

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: separate !important;
  border-spacing: 0;
}
table * {
  border-collapse: separate !important;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/******************************************************************
COLORS
******************************************************************/
/******************************************************************
HEADER
******************************************************************/
/******************************************************************
NAV
******************************************************************/
/******************************************************************
GRID
******************************************************************/
/******************************************************************
CONTENT AREA SPACING
******************************************************************/
/******************************************************************
FULL WIDTH - CONTENT SECTIONS SPACING
******************************************************************/
/******************************************************************
FIXED WIDTH - CONTENT SECTIONS SPACING
******************************************************************/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.col-center {
  float: none !important;
  margin: 0 auto !important;
}

.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .row {
    margin: 0 -8px !important;
  }

  .row-edge {
    margin: 0 !important;
  }

  .page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_1,
.page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_2,
.page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_3,
.page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_4,
.m-all {
    float: left;
    padding-right: 8px;
    padding-left: 8px;
    width: 100%;
  }

  .m-1of2 {
    float: left;
    padding-right: 8px;
    padding-left: 8px;
    width: 50%;
  }

  .m-1of3 {
    float: left;
    padding-right: 8px;
    padding-left: 8px;
    width: 33.33%;
  }

  .m-2of3 {
    float: left;
    padding-right: 8px;
    padding-left: 8px;
    width: 66.66%;
  }

  .m-1of4 {
    float: left;
    padding-right: 8px;
    padding-left: 8px;
    width: 25%;
  }

  .m-3of4 {
    float: left;
    padding-right: 8px;
    padding-left: 8px;
    width: 75%;
  }

  .m-no-pad {
    padding: 0;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .row {
    margin: 0 -12px !important;
  }

  .page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_1,
.page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_2,
.page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_3,
.page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_4,
.t-all {
    display: flex;
    justify-content: center;
    padding-right: 12px;
    padding-left: 12px;
    width: 100%;
  }

  .t-1of2 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 50%;
  }

  .t-1of3 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 33.33%;
  }

  .t-2of3 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 66.66%;
  }

  .t-1of4 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 25%;
  }

  .t-3of4 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 75%;
  }

  .t-1of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 20%;
  }

  .t-2of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 40%;
  }

  .t-3of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 60%;
  }

  .t-4of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 80%;
  }
  
  .intro h1 {
      text-align: center !important;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .row {
    margin: 0 -12px !important;
  }

  .page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_2,
.d-all {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 100%;
  }

  .page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_1,
.page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_3,
.page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_4,
.d-1of2 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 50%;
  }

  .d-1of3,
ul.footer-nav > li {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 33.33%;
  }

  .d-2of3 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 66.66%;
  }

  .d-1of4 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 25%;
  }

  .d-3of4 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 75%;
  }

  .d-1of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 20%;
  }

  .d-2of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 40%;
  }

  .d-3of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 60% !important;
  }

  .d-4of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 80%;
  }

  .d-1of10 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 10%;
  }

  .d-3of10 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 30%;
  }

  .d-4of10 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 40%;
  }

  .d-7of10 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 70%;
  }
}
/* Large desktop */
@media (min-width: 1240px) {
  .row {
    margin: 0 -12px !important;
  }

  .xl-all {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 100%;
  }

  .xl-1of2 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 50%;
  }

  .xl-1of3 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 33.33%;
  }

  .xl-2of3 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 66.66%;
  }

  .xl-1of4 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 25%;
  }

  .xl-3of4 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 75%;
  }

  .xl-1of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 20%;
  }

  .xl-2of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 40%;
  }

  .xl-3of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 60% !important;
  }

  .xl-4of5 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 80%;
  }

  .xl-1of10 {
    float: left;
    padding-right: 12px;
    padding-left: 12px;
    width: 10%;
  }
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  margin-bottom: 3px;
  position: relative;
  top: 0;
  left: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  width: 18px;
  height: 17px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: 0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 18px;
  height: 1px;
  background-color: #ffffff;
  border-radius: 0;
  -webkit-background-size: 34px;
  background-size: 34px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
  width: 28px;
  margin: 0 -5px;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-box {
  width: 28px;
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  width: 28px;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before, .hamburger--squeeze.is-active .hamburger-inner::after {
  margin: 0;
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
.white-btn-transparent, .gform_wrapper .gform_page_footer input.button.gform_previous_button,
.black-btn-transparent, .black-btn,
.black-btn-solid, .blue-btn-transparent, form input[type=submit],
.blue-btn,
.blue-btn-solid,
.gform_next_button, .gform_button {
  display: inline-block;
  position: relative;
  font-family: "gill-sans-nova", sans-serif;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  padding: 13px 50px;
  border-radius: 25px;
  min-width: 287px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.white-btn-transparent:hover, .gform_wrapper .gform_page_footer input.button.gform_previous_button:hover,
.black-btn-transparent:hover, .black-btn:hover,
.black-btn-solid:hover, .blue-btn-transparent:hover, form input[type=submit]:hover,
.blue-btn:hover,
.blue-btn-solid:hover,
.gform_next_button:hover, .gform_button:hover, .white-btn-transparent:focus, .gform_wrapper .gform_page_footer input.button.gform_previous_button:focus,
.black-btn-transparent:focus, .black-btn:focus,
.black-btn-solid:focus, .blue-btn-transparent:focus, form input[type=submit]:focus,
.blue-btn:focus,
.blue-btn-solid:focus,
.gform_next_button:focus, .gform_button:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
.white-btn-transparent:active, .gform_wrapper .gform_page_footer input.button.gform_previous_button:active,
.black-btn-transparent:active, .black-btn:active,
.black-btn-solid:active, .blue-btn-transparent:active, form input[type=submit]:active,
.blue-btn:active,
.blue-btn-solid:active,
.gform_next_button:active, .gform_button:active {
  top: 1px;
}
.white-btn-transparent:visited, .gform_wrapper .gform_page_footer input.button.gform_previous_button:visited,
.black-btn-transparent:visited, .black-btn:visited,
.black-btn-solid:visited, .blue-btn-transparent:visited, form input[type=submit]:visited,
.blue-btn:visited,
.blue-btn-solid:visited,
.gform_next_button:visited, .gform_button:visited {
  color: #fff;
}
.medium-width.white-btn-transparent, .gform_wrapper .gform_page_footer input.medium-width.button.gform_previous_button,
.medium-width.black-btn-transparent, .medium-width.black-btn,
.medium-width.black-btn-solid, .medium-width.blue-btn-transparent, form input.medium-width[type=submit],
.medium-width.blue-btn,
.medium-width.blue-btn-solid,
.medium-width.gform_next_button, .medium-width.gform_button {
  min-width: auto;
  width: 95%;
}
.not-full-width.white-btn-transparent, .gform_wrapper .gform_page_footer input.not-full-width.button.gform_previous_button,
.not-full-width.black-btn-transparent, .not-full-width.black-btn,
.not-full-width.black-btn-solid, .not-full-width.blue-btn-transparent, form input.not-full-width[type=submit],
.not-full-width.blue-btn,
.not-full-width.blue-btn-solid,
.not-full-width.gform_next_button, .not-full-width.gform_button {
  min-width: auto;
  padding: 13px 50px;
}
.not-full-width.header-btn.white-btn-transparent, .gform_wrapper .gform_page_footer input.not-full-width.header-btn.button.gform_previous_button,
.not-full-width.header-btn.black-btn-transparent, .not-full-width.header-btn.black-btn,
.not-full-width.header-btn.black-btn-solid, .not-full-width.header-btn.blue-btn-transparent, form input.not-full-width.header-btn[type=submit],
.not-full-width.header-btn.blue-btn,
.not-full-width.header-btn.blue-btn-solid,
.not-full-width.header-btn.gform_next_button, .not-full-width.header-btn.gform_button {
  padding: 9px 59px;
}
.full-width.white-btn-transparent, .gform_wrapper .gform_page_footer input.full-width.button.gform_previous_button,
.full-width.black-btn-transparent, .full-width.black-btn,
.full-width.black-btn-solid, .full-width.blue-btn-transparent, form input.full-width[type=submit],
.full-width.blue-btn,
.full-width.blue-btn-solid,
.full-width.gform_next_button, .full-width.gform_button {
  width: 100%;
}

.gform_button:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
  line-height: 22px !important;
  font-size: 11px;
}

form input[type=submit],
.blue-btn,
.blue-btn-solid,
.gform_next_button {
  background-color: #2689EE;
  border: 1px solid #2689EE;
}
form input[type=submit]:hover, form input[type=submit]:focus, form input[type=submit]:active,
.blue-btn:hover,
.blue-btn:focus,
.blue-btn:active,
.blue-btn-solid:hover,
.blue-btn-solid:focus,
.blue-btn-solid:active,
.gform_next_button:hover,
.gform_next_button:focus,
.gform_next_button:active {
  background-color: #1070d1;
  color: #fff;
}
form input[type=submit]:visited,
.blue-btn:visited,
.blue-btn-solid:visited,
.gform_next_button:visited {
  color: #fff;
}
form input[type=submit]:visited:hover,
.blue-btn:visited:hover,
.blue-btn-solid:visited:hover,
.gform_next_button:visited:hover {
  background-color: #1070d1;
  color: #fff;
}

.blue-btn-transparent {
  background-color: transparent;
  color: #2689EE;
  border: 1px solid #2689EE;
}
.blue-btn-transparent:hover, .blue-btn-transparent:focus {
  background-color: #2689EE;
  color: #fff;
}
.blue-btn-transparent:active {
  background-color: #2689EE;
  color: #fff;
}
.blue-btn-transparent:visited {
  color: #2689EE;
}

.black-btn,
.black-btn-solid {
  background-color: #121212;
  border: 1px solid #121212;
}
.black-btn:hover, .black-btn:focus, .black-btn:active,
.black-btn-solid:hover,
.black-btn-solid:focus,
.black-btn-solid:active {
  background-color: transparent;
  color: #121212;
}
.black-btn:visited,
.black-btn-solid:visited {
  color: #fff;
}
.black-btn:visited:hover,
.black-btn-solid:visited:hover {
  background-color: transparent;
  color: #121212;
}

.gform_wrapper .gform_page_footer input.button.gform_previous_button,
.black-btn-transparent {
  background-color: transparent;
  color: #121212;
  border: 1px solid #121212;
}
.gform_wrapper .gform_page_footer input.button.gform_previous_button:hover, .gform_wrapper .gform_page_footer input.button.gform_previous_button:focus,
.black-btn-transparent:hover,
.black-btn-transparent:focus {
  background-color: #121212;
  color: #fff;
}
.gform_wrapper .gform_page_footer input.button.gform_previous_button:active,
.black-btn-transparent:active {
  background-color: #121212;
  color: #fff;
}
.gform_wrapper .gform_page_footer input.button.gform_previous_button:visited,
.black-btn-transparent:visited {
  color: #121212;
}
.gform_wrapper .gform_page_footer input.button.gform_previous_button:visited:hover,
.black-btn-transparent:visited:hover {
  color: #fff;
}

.white-btn-transparent {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.white-btn-transparent:hover, .white-btn-transparent:focus {
  background-color: #fff;
  color: #121212;
}
.white-btn-transparent:active {
  background-color: #fff;
  color: #fff;
}
.white-btn-transparent:visited {
  color: #fff;
}

.primary-button,
#gform_1 .gform_page_footer {
  position: relative;
}
.primary-button:after,
#gform_1 .gform_page_footer:after {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 10px;
  width: 14px;
  content: "";
  display: block;
  background-image: url("../images/arrow-white-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s;
}
.primary-button:hover:after,
#gform_1 .gform_page_footer:hover:after {
  right: 15px;
}

#gform_1 .gform_page_footer {
  padding: 0;
  border: 0px solid transparent;
}
#gform_1 .gform_page_footer:after {
  top: 32px;
}

.gform_wrapper #gform_page_1_2 .gform_page_footer {
  position: relative;
}
.gform_wrapper #gform_page_1_2 .gform_page_footer.button-hover:after {
  left: 17px;
}
.gform_wrapper #gform_page_1_2 .gform_page_footer:after {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 10px;
  width: 14px;
  content: "";
  display: block;
  background-image: url("../images/arrow-black-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s;
  transform: rotate(180deg);
}
.gform_wrapper #gform_page_1_2 .gform_page_footer input.button.gform_previous_button {
  font-size: 11px;
  color: #121212;
  letter-spacing: 0.4px;
  text-align: center;
  line-height: 22px;
  min-width: auto;
  padding: 13px 50px;
}

.gform_wrapper #gform_1 .gform_page_footer input.button.gform_previous_button {
  font-size: 11px;
}

/*********************
GRAVITY FORMS DEFAULTS
*********************/
.validation_error,
.validation_message {
  margin: 0 0 15px;
  color: #c00;
  font-size: 14px;
}

.validation_message {
  margin: 5px 0 15px;
}

/*********************
INPUTS
*********************/
#gform_wrapper_4 {
  display: block !important;
}

div.gform_wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow-y: visible;
  position: relative;
}
div.gform_wrapper input[type=text],
div.gform_wrapper input[type=password],
div.gform_wrapper input[type=datetime],
div.gform_wrapper input[type=datetime-local],
div.gform_wrapper input[type=date],
div.gform_wrapper input[type=month],
div.gform_wrapper input[type=time],
div.gform_wrapper input[type=week],
div.gform_wrapper input[type=number],
div.gform_wrapper input[type=email],
div.gform_wrapper input[type=url],
div.gform_wrapper input[type=search],
div.gform_wrapper input[type=tel],
div.gform_wrapper input[type=color],
div.gform_wrapper select,
div.gform_wrapper textarea,
div.gform_wrapper .field {
  display: block;
  height: 54px;
  line-height: 1em;
  padding: 16px 14px;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: -0.4px;
  line-height: 18px;
  color: #121212;
  border-radius: 4px;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #696969;
  width: 100%;
  letter-spacing: -0.43px !important;
  font-family: "Inter", sans-serif;
  background-color: transparent;
  box-sizing: border-box;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
div.gform_wrapper input[type=text]:focus, div.gform_wrapper input[type=text]:active,
div.gform_wrapper input[type=password]:focus,
div.gform_wrapper input[type=password]:active,
div.gform_wrapper input[type=datetime]:focus,
div.gform_wrapper input[type=datetime]:active,
div.gform_wrapper input[type=datetime-local]:focus,
div.gform_wrapper input[type=datetime-local]:active,
div.gform_wrapper input[type=date]:focus,
div.gform_wrapper input[type=date]:active,
div.gform_wrapper input[type=month]:focus,
div.gform_wrapper input[type=month]:active,
div.gform_wrapper input[type=time]:focus,
div.gform_wrapper input[type=time]:active,
div.gform_wrapper input[type=week]:focus,
div.gform_wrapper input[type=week]:active,
div.gform_wrapper input[type=number]:focus,
div.gform_wrapper input[type=number]:active,
div.gform_wrapper input[type=email]:focus,
div.gform_wrapper input[type=email]:active,
div.gform_wrapper input[type=url]:focus,
div.gform_wrapper input[type=url]:active,
div.gform_wrapper input[type=search]:focus,
div.gform_wrapper input[type=search]:active,
div.gform_wrapper input[type=tel]:focus,
div.gform_wrapper input[type=tel]:active,
div.gform_wrapper input[type=color]:focus,
div.gform_wrapper input[type=color]:active,
div.gform_wrapper select:focus,
div.gform_wrapper select:active,
div.gform_wrapper textarea:focus,
div.gform_wrapper textarea:active,
div.gform_wrapper .field:focus,
div.gform_wrapper .field:active {
  outline: none;
}
div.gform_wrapper input[type=text].error, div.gform_wrapper input[type=text].is-invalid,
div.gform_wrapper input[type=password].error,
div.gform_wrapper input[type=password].is-invalid,
div.gform_wrapper input[type=datetime].error,
div.gform_wrapper input[type=datetime].is-invalid,
div.gform_wrapper input[type=datetime-local].error,
div.gform_wrapper input[type=datetime-local].is-invalid,
div.gform_wrapper input[type=date].error,
div.gform_wrapper input[type=date].is-invalid,
div.gform_wrapper input[type=month].error,
div.gform_wrapper input[type=month].is-invalid,
div.gform_wrapper input[type=time].error,
div.gform_wrapper input[type=time].is-invalid,
div.gform_wrapper input[type=week].error,
div.gform_wrapper input[type=week].is-invalid,
div.gform_wrapper input[type=number].error,
div.gform_wrapper input[type=number].is-invalid,
div.gform_wrapper input[type=email].error,
div.gform_wrapper input[type=email].is-invalid,
div.gform_wrapper input[type=url].error,
div.gform_wrapper input[type=url].is-invalid,
div.gform_wrapper input[type=search].error,
div.gform_wrapper input[type=search].is-invalid,
div.gform_wrapper input[type=tel].error,
div.gform_wrapper input[type=tel].is-invalid,
div.gform_wrapper input[type=color].error,
div.gform_wrapper input[type=color].is-invalid,
div.gform_wrapper select.error,
div.gform_wrapper select.is-invalid,
div.gform_wrapper textarea.error,
div.gform_wrapper textarea.is-invalid,
div.gform_wrapper .field.error,
div.gform_wrapper .field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
div.gform_wrapper input[type=text].success, div.gform_wrapper input[type=text].is-valid,
div.gform_wrapper input[type=password].success,
div.gform_wrapper input[type=password].is-valid,
div.gform_wrapper input[type=datetime].success,
div.gform_wrapper input[type=datetime].is-valid,
div.gform_wrapper input[type=datetime-local].success,
div.gform_wrapper input[type=datetime-local].is-valid,
div.gform_wrapper input[type=date].success,
div.gform_wrapper input[type=date].is-valid,
div.gform_wrapper input[type=month].success,
div.gform_wrapper input[type=month].is-valid,
div.gform_wrapper input[type=time].success,
div.gform_wrapper input[type=time].is-valid,
div.gform_wrapper input[type=week].success,
div.gform_wrapper input[type=week].is-valid,
div.gform_wrapper input[type=number].success,
div.gform_wrapper input[type=number].is-valid,
div.gform_wrapper input[type=email].success,
div.gform_wrapper input[type=email].is-valid,
div.gform_wrapper input[type=url].success,
div.gform_wrapper input[type=url].is-valid,
div.gform_wrapper input[type=search].success,
div.gform_wrapper input[type=search].is-valid,
div.gform_wrapper input[type=tel].success,
div.gform_wrapper input[type=tel].is-valid,
div.gform_wrapper input[type=color].success,
div.gform_wrapper input[type=color].is-valid,
div.gform_wrapper select.success,
div.gform_wrapper select.is-valid,
div.gform_wrapper textarea.success,
div.gform_wrapper textarea.is-valid,
div.gform_wrapper .field.success,
div.gform_wrapper .field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
div.gform_wrapper input[type=text][disabled], div.gform_wrapper input[type=text].is-disabled,
div.gform_wrapper input[type=password][disabled],
div.gform_wrapper input[type=password].is-disabled,
div.gform_wrapper input[type=datetime][disabled],
div.gform_wrapper input[type=datetime].is-disabled,
div.gform_wrapper input[type=datetime-local][disabled],
div.gform_wrapper input[type=datetime-local].is-disabled,
div.gform_wrapper input[type=date][disabled],
div.gform_wrapper input[type=date].is-disabled,
div.gform_wrapper input[type=month][disabled],
div.gform_wrapper input[type=month].is-disabled,
div.gform_wrapper input[type=time][disabled],
div.gform_wrapper input[type=time].is-disabled,
div.gform_wrapper input[type=week][disabled],
div.gform_wrapper input[type=week].is-disabled,
div.gform_wrapper input[type=number][disabled],
div.gform_wrapper input[type=number].is-disabled,
div.gform_wrapper input[type=email][disabled],
div.gform_wrapper input[type=email].is-disabled,
div.gform_wrapper input[type=url][disabled],
div.gform_wrapper input[type=url].is-disabled,
div.gform_wrapper input[type=search][disabled],
div.gform_wrapper input[type=search].is-disabled,
div.gform_wrapper input[type=tel][disabled],
div.gform_wrapper input[type=tel].is-disabled,
div.gform_wrapper input[type=color][disabled],
div.gform_wrapper input[type=color].is-disabled,
div.gform_wrapper select[disabled],
div.gform_wrapper select.is-disabled,
div.gform_wrapper textarea[disabled],
div.gform_wrapper textarea.is-disabled,
div.gform_wrapper .field[disabled],
div.gform_wrapper .field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
div.gform_wrapper input[type=text]::-webkit-input-placeholder,
div.gform_wrapper input[type=password]::-webkit-input-placeholder,
div.gform_wrapper input[type=datetime]::-webkit-input-placeholder,
div.gform_wrapper input[type=datetime-local]::-webkit-input-placeholder,
div.gform_wrapper input[type=date]::-webkit-input-placeholder,
div.gform_wrapper input[type=month]::-webkit-input-placeholder,
div.gform_wrapper input[type=time]::-webkit-input-placeholder,
div.gform_wrapper input[type=week]::-webkit-input-placeholder,
div.gform_wrapper input[type=number]::-webkit-input-placeholder,
div.gform_wrapper input[type=email]::-webkit-input-placeholder,
div.gform_wrapper input[type=url]::-webkit-input-placeholder,
div.gform_wrapper input[type=search]::-webkit-input-placeholder,
div.gform_wrapper input[type=tel]::-webkit-input-placeholder,
div.gform_wrapper input[type=color]::-webkit-input-placeholder,
div.gform_wrapper select::-webkit-input-placeholder,
div.gform_wrapper textarea::-webkit-input-placeholder,
div.gform_wrapper .field::-webkit-input-placeholder {
  color: #8B8B8B;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 22px;
}
div.gform_wrapper input[type=text]::-moz-placeholder,
div.gform_wrapper input[type=password]::-moz-placeholder,
div.gform_wrapper input[type=datetime]::-moz-placeholder,
div.gform_wrapper input[type=datetime-local]::-moz-placeholder,
div.gform_wrapper input[type=date]::-moz-placeholder,
div.gform_wrapper input[type=month]::-moz-placeholder,
div.gform_wrapper input[type=time]::-moz-placeholder,
div.gform_wrapper input[type=week]::-moz-placeholder,
div.gform_wrapper input[type=number]::-moz-placeholder,
div.gform_wrapper input[type=email]::-moz-placeholder,
div.gform_wrapper input[type=url]::-moz-placeholder,
div.gform_wrapper input[type=search]::-moz-placeholder,
div.gform_wrapper input[type=tel]::-moz-placeholder,
div.gform_wrapper input[type=color]::-moz-placeholder,
div.gform_wrapper select::-moz-placeholder,
div.gform_wrapper textarea::-moz-placeholder,
div.gform_wrapper .field::-moz-placeholder {
  color: #8B8B8B;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 22px;
}
div.gform_wrapper input[type=text]:-ms-input-placeholder,
div.gform_wrapper input[type=password]:-ms-input-placeholder,
div.gform_wrapper input[type=datetime]:-ms-input-placeholder,
div.gform_wrapper input[type=datetime-local]:-ms-input-placeholder,
div.gform_wrapper input[type=date]:-ms-input-placeholder,
div.gform_wrapper input[type=month]:-ms-input-placeholder,
div.gform_wrapper input[type=time]:-ms-input-placeholder,
div.gform_wrapper input[type=week]:-ms-input-placeholder,
div.gform_wrapper input[type=number]:-ms-input-placeholder,
div.gform_wrapper input[type=email]:-ms-input-placeholder,
div.gform_wrapper input[type=url]:-ms-input-placeholder,
div.gform_wrapper input[type=search]:-ms-input-placeholder,
div.gform_wrapper input[type=tel]:-ms-input-placeholder,
div.gform_wrapper input[type=color]:-ms-input-placeholder,
div.gform_wrapper select:-ms-input-placeholder,
div.gform_wrapper textarea:-ms-input-placeholder,
div.gform_wrapper .field:-ms-input-placeholder {
  color: #8B8B8B;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 22px;
}
div.gform_wrapper input[type=text]:-moz-placeholder,
div.gform_wrapper input[type=password]:-moz-placeholder,
div.gform_wrapper input[type=datetime]:-moz-placeholder,
div.gform_wrapper input[type=datetime-local]:-moz-placeholder,
div.gform_wrapper input[type=date]:-moz-placeholder,
div.gform_wrapper input[type=month]:-moz-placeholder,
div.gform_wrapper input[type=time]:-moz-placeholder,
div.gform_wrapper input[type=week]:-moz-placeholder,
div.gform_wrapper input[type=number]:-moz-placeholder,
div.gform_wrapper input[type=email]:-moz-placeholder,
div.gform_wrapper input[type=url]:-moz-placeholder,
div.gform_wrapper input[type=search]:-moz-placeholder,
div.gform_wrapper input[type=tel]:-moz-placeholder,
div.gform_wrapper input[type=color]:-moz-placeholder,
div.gform_wrapper select:-moz-placeholder,
div.gform_wrapper textarea:-moz-placeholder,
div.gform_wrapper .field:-moz-placeholder {
  color: #8B8B8B;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 22px;
}
div.gform_wrapper input[type=text]:active, div.gform_wrapper input[type=text]:focus, div.gform_wrapper input[type=text]:hover,
div.gform_wrapper input[type=password]:active,
div.gform_wrapper input[type=password]:focus,
div.gform_wrapper input[type=password]:hover,
div.gform_wrapper input[type=datetime]:active,
div.gform_wrapper input[type=datetime]:focus,
div.gform_wrapper input[type=datetime]:hover,
div.gform_wrapper input[type=datetime-local]:active,
div.gform_wrapper input[type=datetime-local]:focus,
div.gform_wrapper input[type=datetime-local]:hover,
div.gform_wrapper input[type=date]:active,
div.gform_wrapper input[type=date]:focus,
div.gform_wrapper input[type=date]:hover,
div.gform_wrapper input[type=month]:active,
div.gform_wrapper input[type=month]:focus,
div.gform_wrapper input[type=month]:hover,
div.gform_wrapper input[type=time]:active,
div.gform_wrapper input[type=time]:focus,
div.gform_wrapper input[type=time]:hover,
div.gform_wrapper input[type=week]:active,
div.gform_wrapper input[type=week]:focus,
div.gform_wrapper input[type=week]:hover,
div.gform_wrapper input[type=number]:active,
div.gform_wrapper input[type=number]:focus,
div.gform_wrapper input[type=number]:hover,
div.gform_wrapper input[type=email]:active,
div.gform_wrapper input[type=email]:focus,
div.gform_wrapper input[type=email]:hover,
div.gform_wrapper input[type=url]:active,
div.gform_wrapper input[type=url]:focus,
div.gform_wrapper input[type=url]:hover,
div.gform_wrapper input[type=search]:active,
div.gform_wrapper input[type=search]:focus,
div.gform_wrapper input[type=search]:hover,
div.gform_wrapper input[type=tel]:active,
div.gform_wrapper input[type=tel]:focus,
div.gform_wrapper input[type=tel]:hover,
div.gform_wrapper input[type=color]:active,
div.gform_wrapper input[type=color]:focus,
div.gform_wrapper input[type=color]:hover,
div.gform_wrapper select:active,
div.gform_wrapper select:focus,
div.gform_wrapper select:hover,
div.gform_wrapper textarea:active,
div.gform_wrapper textarea:focus,
div.gform_wrapper textarea:hover,
div.gform_wrapper .field:active,
div.gform_wrapper .field:focus,
div.gform_wrapper .field:hover {
  border: 1px solid #2689ee;
  color: #121212;
}
div.gform_wrapper label {
  margin-bottom: 6px;
}
div.gform_wrapper input[type=text]:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 12px 14px 16px;
}
div.gform_wrapper select {
  padding: 16px 14px 17px !important;
  font-size: 15px;
  font-family: "Inter", sans-serif;
}
div.gform_wrapper .labels-inside-fields input[type=text]:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 21px 14px 7px;
}
div.gform_wrapper .labels-inside-fields textarea {
  padding: 21px 14px 7px;
}

#field_1_79 button {
  font-weight: 600;
  font-size: 13px;
  color: #FFFFFF;
  letter-spacing: 0.47px;
  text-align: center;
  line-height: 22px;
  background-image: url("../images/clock-icon.svg");
  background-repeat: no-repeat;
  background-size: 17px 18px;
  background-position: calc( 50% - 48px ) 50%;
  padding-left: 76px;
}

input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position: 96.5% center;
  background-size: 11px 7px;
}

body .gform_wrapper ul.gform_fields li.gfield {
  margin-top: 18px;
  padding-right: 0;
}
body .gform_wrapper ul.gform_fields li.gfield#field_2_1 .ginput_container_email {
  margin-top: 0;
}
body .gform_wrapper ul.gform_fields li.gfield#field_4_87, body .gform_wrapper ul.gform_fields li.gfield#field_4_103, body .gform_wrapper ul.gform_fields li.gfield#field_4_105 {
  margin-top: 0;
}

#gform_submit_button_4,
#gform_submit_button_3 {
  margin: 0 !important;
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 16px 0;
}

#gform_4 .gform_footer {
  position: relative;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
}
#gform_4 .gform_footer:after {
  position: absolute;
  top: 43px;
  right: 20px;
  height: 10px;
  width: 14px;
  content: "";
  display: block;
  background-image: url(../images/arrow-white-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s;
}
#gform_4 .gform_footer:hover:after {
  right: 17px;
}

.ginput_container_email,
#field_3_1 .ginput_container_text {
  position: relative;
}
.ginput_container_email:after,
#field_3_1 .ginput_container_text:after {
  position: absolute;
  content: "";
  display: block;
  right: 14px;
  top: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.ginput_container_email:after {
  height: 14px;
  width: 20px;
  background-image: url("../images/email-black.svg");
}

#field_3_1 .ginput_container_text:after {
  height: 18px;
  width: 16px;
  background-image: url("../images/name.svg");
}

body .gform_wrapper .labels-inside-fields .top_label label {
  padding-left: 14px;
  color: #121212;
  text-align: left;
}

body .gform_wrapper .labels-inside-fields .top_label span label {
  margin-top: 16px !important;
}

body .gform_wrapper .labels-inside-fields .top_label label + div.ginput_container,
body .gform_wrapper .labels-inside-fields .top_label label + input,
body .gform_wrapper .labels-inside-fields .top_label label + select {
  margin-top: -28px;
  z-index: 10;
  position: relative;
}

body .gform_wrapper .labels-inside-fields .top_label label + input,
body .gform_wrapper .labels-inside-fields .top_label label + select {
  margin-top: -22px;
  margin-bottom: 10px !important;
}

body .gform_wrapper .labels-inside-fields .top_label select {
  padding: 21px 14px 7px 12px !important;
}

body .gform_wrapper .labels-inside-fields .top_label label + div.ginput_container.ginput_recaptcha {
  margin-top: 0;
}

body .gform_wrapper .labels-inside-fields .top_label label + div.ginput_container.ginput_recaptcha > div {
  margin: 0 auto;
}

textarea[name=input_27] {
  font-size: 17px !important;
}

/* CUSTOM STYLING FOR CONTACT PAGE CHECKBOX */
.page-id-19 ul.gfield_checkbox li input[type=checkbox]:checked + label,
.page-id-19 ul.gfield_checkbox li input[type=checkbox]:not(:checked) + label {
  margin-left: 15px;
  font-weight: 400;
  font-size: 15px;
}
.page-id-19 [type=checkbox]:not(:checked),
.page-id-19 [type=checkbox]:checked {
  position: absolute !important;
  left: -9999px;
}
.page-id-19 [type=checkbox]:not(:checked) + label,
.page-id-19 [type=checkbox]:checked + label {
  position: relative !important;
  padding-left: 25px !important;
  cursor: pointer !important;
  height: 32px;
  line-height: 32px;
}
.page-id-19 [type=checkbox]:not(:checked) + label:before,
.page-id-19 [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #696969;
  background: #fff;
  padding: 12px 10px 11px;
  border-radius: 4px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12);
}
.page-id-19 [type=checkbox]:not(:checked) + label:after,
.page-id-19 [type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  top: 9px;
  left: -5px;
  background-image: url("../images/checkbox-checked.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}
.page-id-19 [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.page-id-19 [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.page-id-19 [type=checkbox]:disabled:not(:checked) + label:before,
.page-id-19 [type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.page-id-19 [type=checkbox]:disabled:checked + label:after {
  color: #999;
}
.page-id-19 [type=checkbox]:disabled + label {
  color: #aaa;
}

.page-id-16 div.gform_wrapper div.ginput_container {
  margin-top: 0 !important;
}
.page-id-16 div.gform_wrapper input[type=text],
.page-id-16 div.gform_wrapper input[type=password],
.page-id-16 div.gform_wrapper input[type=datetime],
.page-id-16 div.gform_wrapper input[type=datetime-local],
.page-id-16 div.gform_wrapper input[type=date],
.page-id-16 div.gform_wrapper input[type=month],
.page-id-16 div.gform_wrapper input[type=time],
.page-id-16 div.gform_wrapper input[type=week],
.page-id-16 div.gform_wrapper input[type=number],
.page-id-16 div.gform_wrapper input[type=email],
.page-id-16 div.gform_wrapper input[type=url],
.page-id-16 div.gform_wrapper input[type=search],
.page-id-16 div.gform_wrapper input[type=tel],
.page-id-16 div.gform_wrapper input[type=color],
.page-id-16 div.gform_wrapper select,
.page-id-16 div.gform_wrapper textarea {
  background-color: #fff;
  color: #121212;
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
}
.page-id-16 div.gform_wrapper label {
  color: #fff;
}

.form-page-3 div.gform_wrapper input[type=text],
.form-page-3 div.gform_wrapper input[type=password],
.form-page-3 div.gform_wrapper input[type=datetime],
.form-page-3 div.gform_wrapper input[type=datetime-local],
.form-page-3 div.gform_wrapper input[type=date],
.form-page-3 div.gform_wrapper input[type=month],
.form-page-3 div.gform_wrapper input[type=time],
.form-page-3 div.gform_wrapper input[type=week],
.form-page-3 div.gform_wrapper input[type=number],
.form-page-3 div.gform_wrapper input[type=email],
.form-page-3 div.gform_wrapper input[type=url],
.form-page-3 div.gform_wrapper input[type=search],
.form-page-3 div.gform_wrapper input[type=tel],
.form-page-3 div.gform_wrapper input[type=color],
.form-page-3 div.gform_wrapper select,
.form-page-3 div.gform_wrapper textarea {
  letter-spacing: -0.2px !important;
}

body .dark-theme .gform_wrapper .labels-inside-fields .top_label label {
  color: #959595;
}
body .dark-theme .ginput_container input, body .dark-theme textarea {
  color: #fff;
}
body .dark-theme .ginput_container input:hover, body .dark-theme textarea:hover {
  color: #fff;
}
body .dark-theme .ginput_container input:focus, body .dark-theme textarea:focus {
  color: #fff;
}

/******************************************************************
GENERAL
******************************************************************/
* {
  outline: none !important;
}

.hidden {
  display: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.posr {
  position: relative;
}

.cb {
  clear: both;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.center {
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.oh {
  overflow: hidden;
}

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

button {
  -webkit-appearance: none;
}

/******************************************************************
MEDIA ELEMENT
******************************************************************/
.media.media, .media .bd {
  width: auto;
  overflow: hidden;
  _overflow: visible;
  zoom: 1;
}
.media .img {
  width: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 0;
}
.media .img img {
  display: block;
}
.media .imgExt {
  width: auto;
  float: right;
  margin-left: 10px;
  margin-bottom: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.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 {
  width: 12px;
  height: 10px;
  margin-top: -25px;
  position: absolute;
  bottom: 2px;
  z-index: 10;
  background: url(../images/arrow-black-left.svg) center center no-repeat;
  -webkit-background-size: 12px;
  background-size: 12px;
  border: none;
  text-indent: -9999px;
  transition: all 0.3s;
}
.slick-arrow:hover {
  opacity: 0.6;
}
.slick-arrow.slick-prev {
  margin-left: -100px;
  left: 50%;
}
.slick-arrow.slick-next {
  right: 50%;
  margin-right: -100px;
  background: url(../images/arrow-black-right.svg) center center no-repeat;
}
.slick-arrow.slick-hidden {
  display: none;
}

.multirow .slick-arrow.slick-prev {
  margin-left: -150px;
}
.multirow .slick-arrow.slick-next {
  margin-right: -150px;
}
.multirow .slick-dots li {
  width: 20px;
}
.multirow .slick-dots li button {
  width: 20px;
}

.slick-dots {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  position: absolute;
  bottom: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  width: 40px;
  height: 3px;
  margin: 0 5px !important;
  padding: 0;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.slick-dots li button {
  width: 40px;
  height: 3px;
  display: block;
  background: #CFCFCF;
  border: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  outline: none;
}
.slick-dots li button:hover {
  background: #121212;
}
.slick-dots li.slick-active button {
  background: #121212;
}

.slides-4 .slick-dots li {
  width: 30px;
}
.slides-4 .slick-dots li button {
  width: 25px;
}

.slides-5 .slick-dots li,
.slides-6 .slick-dots li {
  width: 22px;
  margin: 0 3px !important;
}
.slides-5 .slick-dots li button,
.slides-6 .slick-dots li button {
  width: 18px;
}

.slides-7 .slick-dots li,
.slides-8 .slick-dots li {
  width: 15px;
  margin: 0 3px !important;
}
.slides-7 .slick-dots li button,
.slides-8 .slick-dots li button {
  width: 10px;
}

.intro.intro-carousel.full-screen .slick-list,
.intro.intro-carousel.full-screen .slick-track,
.intro.intro-carousel.full-screen .slick-slide {
  height: 100%;
}

.jssocials-shares {
  margin: 0;
}

.jssocials-shares * {
  box-sizing: border-box;
}

.jssocials-share {
  display: inline-block;
  vertical-align: top;
  margin: 0 7px 0 0;
}

.jssocials-share:last-child {
  margin-right: 0;
}

.jssocials-share-logo {
  width: 1em;
  font-size: 1.1em !important;
}

img.jssocials-share-logo {
  width: auto;
  height: 1em;
}

.jssocials-share-link {
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-block;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  line-height: 30px;
}
.jssocials-share-link.jssocials-share-link-count {
  padding-top: 0.2em;
}
.jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
  display: block;
  font-size: 0.6em;
  margin: 0 -0.5em -0.8em -0.5em;
}
.jssocials-share-link.jssocials-share-no-count {
  padding-top: 0.5em;
}
.jssocials-share-link.jssocials-share-no-count .jssocials-share-count {
  height: 1em;
}

.jssocials-share-label {
  display: none;
  position: relative;
  top: -1px;
  padding-left: 0.3em;
}

/*.jssocials-share-facebook {

    .jssocials-share-label {
        display: inline;
        font-size: 11px;
        text-transform: uppercase;
    }

    .jssocials-share-link {
        width: 65px;
    }
}*/
.jssocials-share-count-box {
  display: inline-block;
  height: 1.1em;
  padding: 0 0.3em;
  line-height: 1;
  vertical-align: middle;
  cursor: default;
}
.jssocials-share-count-box.jssocials-share-no-count {
  display: none;
}

.jssocials-share-count {
  line-height: 1.1em;
  vertical-align: middle;
}

.jssocials-share-twitter .jssocials-share-link {
  background: #00aced;
}
.jssocials-share-twitter .jssocials-share-link:hover {
  background: #0087ba;
}

.jssocials-share-facebook .jssocials-share-link {
  background: #3b5998;
}
.jssocials-share-facebook .jssocials-share-link:hover {
  background: #2d4373;
}

.jssocials-share-googleplus .jssocials-share-link {
  background: #dd4b39;
}
.jssocials-share-googleplus .jssocials-share-link:hover {
  background: #c23321;
}

.jssocials-share-linkedin .jssocials-share-link {
  background: #007bb6;
}
.jssocials-share-linkedin .jssocials-share-link:hover {
  background: #005983;
}

.jssocials-share-pinterest .jssocials-share-link {
  background: #cb2027;
}
.jssocials-share-pinterest .jssocials-share-link:hover {
  background: #9f191f;
}

.jssocials-share-email .jssocials-share-link {
  background: #666666;
}
.jssocials-share-email .jssocials-share-link:hover {
  background: #4d4d4d;
}

.jssocials-share-stumbleupon .jssocials-share-link {
  background: #eb4823;
}
.jssocials-share-stumbleupon .jssocials-share-link:hover {
  background: #c93412;
}

.jssocials-share-whatsapp .jssocials-share-link {
  background: #29a628;
}
.jssocials-share-whatsapp .jssocials-share-link:hover {
  background: #1f7d1e;
}

.jssocials-share-telegram .jssocials-share-link {
  background: #2ca5e0;
}
.jssocials-share-telegram .jssocials-share-link:hover {
  background: #1c88bd;
}

.jssocials-share-line .jssocials-share-link {
  background: #25af00;
}
.jssocials-share-line .jssocials-share-link:hover {
  background: #1a7c00;
}

.jssocials-share-viber .jssocials-share-link {
  background: #7b519d;
}
.jssocials-share-viber .jssocials-share-link:hover {
  background: #61407b;
}

.jssocials-share-pocket .jssocials-share-link {
  background: #ef4056;
}
.jssocials-share-pocket .jssocials-share-link:hover {
  background: #e9132e;
}

.jssocials-share-messenger .jssocials-share-link {
  background: #0084ff;
}
.jssocials-share-messenger .jssocials-share-link:hover {
  background: #006acc;
}

.jssocials-share-vkontakte .jssocials-share-link {
  background: #45668e;
}
.jssocials-share-vkontakte .jssocials-share-link:hover {
  background: #344d6c;
}

.jssocials-share-link {
  padding: 0;
  color: #fff;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}
.jssocials-share-link:hover, .jssocials-share-link:focus, .jssocials-share-link:active {
  color: #fff;
}

.jssocials-share-count-box {
  position: relative;
  height: 2.5em;
  padding: 0 0.3em;
  margin-left: 0.3em;
  background: #f5f5f5;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}
.jssocials-share-count-box:hover {
  background: gainsboro;
}
.jssocials-share-count-box:hover:after {
  border-color: transparent gainsboro transparent transparent;
}
.jssocials-share-count-box:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.85em;
  left: -0.3em;
  width: 0;
  height: 0;
  border-width: 0.4em 0.4em 0.4em 0;
  border-style: solid;
  border-color: transparent #f5f5f5 transparent transparent;
  transform: rotate(360deg);
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}
.jssocials-share-count-box .jssocials-share-count {
  line-height: 2.5em;
  color: #444;
}

/******************************************************************
COOKIE POPUP
******************************************************************/
#cc-container {
  width: 100%;
  padding: 20px;
  background: #5c6b80;
  position: fixed;
  bottom: 0;
  z-index: 999;
  color: #fff;
  vertical-align: baseline;
}
#cc-container * {
  vertical-align: baseline;
  color: #fff;
  font-size: 14px;
}
#cc-container .cc-wrap #cc-notice {
  font-size: 13px;
  line-height: 1.3;
}
#cc-container .cc-wrap #cc-notice #cc-notice-text {
  vertical-align: baseline;
}
#cc-container .cc-wrap h2 {
  margin: 0 0 5px;
  padding: 0;
  color: #fff;
  font-size: 16px;
}
#cc-container .cc-wrap a {
  color: #fff;
  font-weight: normal;
  text-decoration: underline;
  vertical-align: baseline;
}
#cc-container .cc-wrap a.accept-link {
  float: right;
  color: #fff;
  font-size: 16px !important;
  font-weight: bold;
}
#cc-container .cc-wrap a.accept-link:hover {
  color: #fff;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/******************************************************************
GENERAL STYLES
******************************************************************/
body {
  font-family: "Inter", sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #121212;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: all 0.3s;
}
body.dark-theme {
  color: #fff;
  background-color: #121212;
}
body.dark-theme a {
  color: #fff;
}
body.dark-theme a:hover {
  color: #cccccc;
}

.desktop,
.desktop-inline {
  display: none !important;
}

a,
input,
select,
textarea,
button {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

p, ul {
  margin: 0 0 15px;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 24px;
}
p:last-child, ul:last-child {
  margin: 0;
}

div {
  font-weight: 400;
}

.entry-content ul {
  margin-left: 20px;
  list-style-type: disc;
}
.entry-content ul li {
  margin: 0 0 10px;
}

.section-content ul {
  list-style-type: disc;
}
.section-content li {
  margin: 0 0 0 20px;
}

/******************************************************************
LAYOUT & GRID STYLES
******************************************************************/
.wrap {
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.wrap.space-above {
  margin-top: 50px;
}

/******************************************************************
LINK STYLES
******************************************************************/
a, a:visited {
  color: #121212;
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #525252;
}
a.arrow:hover, a:visited.arrow:hover {
  color: #bfbfbf;
}
a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
a.text-link, a:visited.text-link {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.4px;
  line-height: 22px;
  text-decoration: underline;
  position: relative;
}
a.text-link.arrow:after, a:visited.text-link.arrow:after {
  position: absolute;
  right: -20px;
  margin-top: 2px;
  top: 1px;
  height: 10px;
  width: 12px;
  content: "";
  background-image: url("../images/arrow-white-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
a.text-link.arrow.accordian:after, a:visited.text-link.arrow.accordian:after {
  transform: rotate(90deg);
  top: 7px;
}
a.text-link.arrow:hover:after, a:visited.text-link.arrow:hover:after {
  right: -23px;
}
a.text-link.arrow.accordian:after, a:visited.text-link.arrow.accordian:after {
  right: -20px;
}
a.text-link.blue, a:visited.text-link.blue {
  color: #2689EE;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}
a.text-link.blue.arrow:after, a:visited.text-link.blue.arrow:after {
  background-image: url("../images/arrow-blue-right.svg");
}
a.text-link.blue.black, a:visited.text-link.blue.black {
  color: #121212;
}
a.text-link.blue.black.arrow:after, a:visited.text-link.blue.black.arrow:after {
  background-image: url("../images/arrow-black-right-read-more.svg");
}
a.text-link.pos-absolute, a:visited.text-link.pos-absolute {
  position: absolute;
  bottom: 30px;
  left: 20px;
}
a.no-underline, a:visited.no-underline {
  text-decoration: none;
}

.open a.text-link.arrow.accordian:after {
  transform: rotate(-90deg);
}

/******************************************************************
BUTTON STYLES
******************************************************************/
.btn {
  font-size: 11px;
  line-height: 22px;
}
.btn.not-full-width {
  width: auto;
  min-width: 0;
  padding: 13px 50px;
}

.btn-wide {
  width: 100% !important;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, label, .label {
  margin-top: 0;
  text-rendering: optimizelegibility;
  margin-bottom: 0;
  text-align: left;
  text-transform: uppercase;
  font-family: "gill-sans-nova", sans-serif;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a, label a, .label a {
  text-decoration: none;
}
h1 .title-lower, .h1 .title-lower, h2 .title-lower, .h2 .title-lower, h3 .title-lower, .h3 .title-lower, h4 .title-lower, .h4 .title-lower, h5 .title-lower, .h5 .title-lower, h6 .title-lower, .h6 .title-lower, label .title-lower, .label .title-lower {
  text-transform: none;
}

h1, .h1 {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 30px;
  font-weight: 500;
}

h2, .h2 {
  font-size: 20px;
  letter-spacing: 0.4px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 4px;
}
h2.taller-line-height, .h2.taller-line-height {
  line-height: 32px;
}

h3, .h3 {
  font-size: 16px;
  letter-spacing: 0.6px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

h4, .h4 {
  font-size: 16px;
  letter-spacing: 0.4px;
  font-weight: 500;
  line-height: 20px;
}
h4.taller-line-height, .h4.taller-line-height {
  line-height: 32px;
}

h5, .h5 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 22px;
}
h5.semibold, .h5.semibold {
  font-weight: 600;
}

h6, .h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 20px;
}

label,
.label,
.gform_wrapper .top_label label.gfield_label,
.gform_wrapper li#field_1_31 label,
.gform_wrapper li#field_1_142 label {
  font-size: 14px;
  letter-spacing: -0.23px;
  line-height: 14px;
  font-weight: 500;
  text-transform: none;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 11;
}

.gform_wrapper li#field_1_142 .ginput_stripe_creditcard label {
  font-size: 14px !important;
  margin: 18px 0 6px;
}

.gform_wrapper li#field_1_31 label {
  text-align: left;
  margin: 18px 0 6px;
}

/******************************************************************
CONTENT TEXT STYLES
******************************************************************/
p,
li {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.4px;
  line-height: 24px;
}
p.intro-text,
li.intro-text {
  font-size: 17px;
  line-height: 30px;
}
p.testimonial-text,
li.testimonial-text {
  margin-top: 11px;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  text-align: left;
  font-weight: 500;
}
p.small,
li.small {
  font-size: 14px;
}
p .p2,
li .p2 {
  line-height: 22px;
}
p:empty,
li:empty {
  margin-bottom: 0 !important;
  height: 0 !important;
}

/******************************************************************
LIST STYLES
******************************************************************/
.content ol.list li,
.content ul.list li {
  text-align: left;
  margin-left: 16px;
}
.content ul.list li:before {
  content: "•";
  top: 0;
  font-weight: 400;
  color: #121212;
  margin-left: -6px;
  margin-right: 6px;
}
.content ol.list {
  counter-reset: a;
}
.content ol.list li:before {
  content: counter(a) ".";
  top: 0;
  font-weight: 600;
  color: #121212;
  counter-increment: a;
  margin-left: -6px;
  margin-right: 6px;
}

/******************************************************************
HEADER STYLES
******************************************************************/
/******************************************************************
HEADER - BASE
******************************************************************/
.header {
  height: 64px;
  padding: 0;
  background: transparent;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header .logo {
  margin: 15px 0 0;
  position: relative;
  z-index: 11;
}
.header .logo:hover {
  opacity: 0.6;
}
.header a {
  color: #fff;
}
.header .header-top {
  position: relative;
  z-index: 100;
}
.header .header-contact {
  font-size: 12px;
  line-height: 22px;
}
.header .header-contact a {
  text-decoration: none;
}
.header .nav-switch {
  width: 24px;
  height: 36px;
  padding: 24px 0 0;
  float: right;
  color: #fff;
  color: #fff;
  font-size: 9px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-indent: 4px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header .nav-wrap {
  display: none;
  background: #121212;
}
.header .nav-wrap nav {
  margin-bottom: 22px;
}
.header .nav-wrap.open {
  width: 100%;
  height: 100vh;
  padding: 35px 0 50px;
  display: block;
  position: fixed;
  top: 64px;
  bottom: 0;
  left: 0;
  overflow: scroll;
  text-align: center;
}
.header .nav-wrap.open .social {
  display: block;
  margin-top: 20px;
}
.header .nav-wrap.open .wrap {
  background-color: #121212;
}
.header.black {
  background-color: #121212;
  top: 0 !important;
}
.header .button {
  padding-bottom: 30px;
  border-bottom: 1px solid #474747;
  margin-bottom: 10px;
}
.header .button a {
  display: block;
}
.header .phone-numbers {
  margin-top: 16px;
  padding: 0;
}
.header .phone-numbers a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: -0.4px;
  font-weight: 600;
}

.logo {
  width: 126px;
  display: block;
}

.phone-numbers {
  padding-bottom: 20px;
}
.phone-numbers a {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 22px;
  text-decoration: none;
  position: relative;
  margin-left: 25px;
  display: inline-block;
}
.phone-numbers a.uk::before, .phone-numbers a.us::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: -22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 16px;
  width: 16px;
}
.phone-numbers a.uk {
  margin-right: 9px;
  margin-bottom: 16px;
}
.phone-numbers a.uk::before {
  background-image: url("../images/uk.png");
}
.phone-numbers a.us::before {
  background-image: url("../images/us.png");
}

@media screen and (max-width: 1024px) {
    .header .button-and-numbers {
        position: relative;
        max-width: 100%;
        overflow: hidden;
        top:0;
        text-align: left;
    }
    .button {
        text-align: left;
        padding-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .header .button-and-numbers {
        text-align: center;
    }
    .phone-numbers a {
        margin-left: 0;
    }
    .header .button a {
        display: flex;
        justify-content: center;
        width: 50%;
        align-items: center;
        margin: 5px auto;
    }
    .button {
        text-align: center;
    }

}

/******************************************************************
STICKY HEADER
******************************************************************/
body.header-sticky {
  padding-top: 50px;
}
body.header-sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
body.header-sticky .header.with-banner-above {
  top: 52px;
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  -webkit-transition: backdrop-filter 0.3s;
  -o-transition: backdrop-filter 0.3s;
  transition: backdrop-filter 0.3s;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

body.scrolled .header {
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.3);
}
body.scrolled .header.black {
  background-color: #121212;
}

@-moz-document url-prefix() {
  body.scrolled .header {
    background-color: rgba(0, 0, 0, 0.4);
  }
}
/******************************************************************
SEARCH FORM
******************************************************************/
.searchform {
  width: 100%;
  height: 34px;
  margin-bottom: 5px;
  position: relative;
}
.searchform input {
  width: 100%;
  height: 34px;
  padding: 0 20px;
  background: #fff;
  border: none;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #111;
  font-size: 12px;
}
.searchform input::-webkit-input-placeholder {
  color: #aaa;
}
.searchform input::-moz-placeholder {
  color: #aaa;
}
.searchform input:-ms-input-placeholder {
  color: #aaa;
}
.searchform input:-moz-placeholder {
  color: #aaa;
}
.searchform input:active, .searchform input:focus {
  border: none;
}
.searchform button {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 8px;
  right: 16px;
  background: url(../images/icon-search-black.html) 0 0 no-repeat;
  -webkit-background-size: 18px;
  background-size: 18px;
  border: none;
  text-indent: -9999px;
  font-size: 0;
}

body.page-template-page-booking-form header,
body.page-template-page-booking-form.scrolled header,
body.page-id-20066 header,
body.page-id-20066.scrolled header {
  background-color: #121212;
}

.notification-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #343434;
  z-index: 100;
  transition: all 0.3s;
  padding: 17px 20px;
}
.notification-banner.hide {
  display: none;
  height: 0;
  padding: 0;
}
.notification-banner:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50px;
  right: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.07);
}
.notification-banner:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  height: 0;
  right: 0;
  background-color: #343434;
  top: 0;
  z-index: -1;
  transition: all 0s;
  transition-delay: 0.5s;
}
.notification-banner.open {
  height: auto;
}
.notification-banner .hide-bar {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 70px;
  right: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  color: #fff;
  z-index: 10;
  line-height: 28px;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s;
}
.notification-banner .hide-bar:hover {
  background-color: #fff;
  color: #121212;
}
.notification-banner .notification-banner-image {
  max-width: 16px;
  float: left;
  margin-right: 6px;
}
.notification-banner .notification-banner-image img {
  display: block;
}
.notification-banner .banner-title {
  float: left;
  max-width: calc( 100% - 135px );
  position: relative;
  padding-right: 28px;
}
.notification-banner .banner-title a.external-link:after {
  content: "";
  position: absolute;
  display: block;
  right: 9px;
  top: 50%;
  transform: translate(0, -50%);
  width: 10px;
  height: 10px;
  background-image: url("../images/external-link-logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.notification-banner .banner-title,
.notification-banner .banner-title a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: -0.4px;
  line-height: 18px;
  transition: all 0.3s;
}
.notification-banner .banner-title a,
.notification-banner .banner-title a a {
  text-decoration: none;
  border-bottom: 1px solid #797979;
}
.notification-banner .banner-title:hover,
.notification-banner .banner-title a:hover {
  opacity: 0.8;
}
.notification-banner .banner-read-more {
  float: right;
  width: 78px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: -0.4px;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
  position: relative;
  padding-right: 19px;
  transition: all 0.3s;
}
.notification-banner .banner-read-more:hover {
  opacity: 0.8;
}
.notification-banner .banner-read-more:after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  transform: translate(0, -50%) rotate(0deg);
  width: 10px;
  height: 6px;
  background-image: url("../images/accordian-toggle.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.notification-banner .banner-body-text {
  max-height: 0;
  overflow: hidden;
  float: left;
  width: 100%;
  padding-top: 0;
  position: relative;
  margin-top: 0;
}
.notification-banner .banner-body-text p, .notification-banner .banner-body-text .banner-title {
  display: block;
  width: 100%;
  float: left;
}
.notification-banner .banner-body-text p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #FFFFFF;
  letter-spacing: -0.4px;
  line-height: 24px;
}
.notification-banner.open:before {
  height: 1px;
}
.notification-banner.open .banner-body-text {
  max-height: 1000px;
  padding-top: 20px;
  margin-top: 16px;
  padding-bottom: 13px;
}
.notification-banner.open .banner-read-more:after {
  transform: translate(0, -50%) rotate(180deg);
}

/******************************************************************
NAVIGATION
******************************************************************/
/******************************************************************
NAVIGATION - BASE
******************************************************************/
/******************************************************************
NAVIGATION - BASE
******************************************************************/
nav ul.nav.primary-nav li a, nav ul.nav.footer-nav li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
nav ul.nav.primary-nav li {
  text-align: left;
  padding: 15px 0;
}
nav ul.nav.primary-nav li a {
  line-height: 19px;
  letter-spacing: 0.4px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  font-family: "Inter", sans-serif;
}
nav ul.nav.primary-nav li ul.sub-menu {
  padding: 10px 0 20px;
  border-bottom: 1px solid #474747;
  margin-bottom: 10px;
  display: none;
}
nav ul.nav.primary-nav li ul.sub-menu li {
  padding: 0;
}
nav ul.nav.primary-nav li ul.sub-menu li a {
  border: none;
  line-height: 35px;
  color: #959595;
}
nav ul.nav.primary-nav li ul.sub-menu li a img {
  display: none;
}
nav ul.nav.primary-nav li ul.sub-menu li.is-active, nav ul.nav.primary-nav li ul.sub-menu li:hover a, nav ul.nav.primary-nav li ul.sub-menu li:focus a {
  color: #fff;
}
nav ul.nav.primary-nav li.menu-item-has-children > a:after {
  position: absolute;
  content: "";
  display: none;
  width: 10px;
  height: 10px;
  background-image: url("../images/white-arrow-square.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
  transform: rotate(180deg);
  top: 7px;
  right: -18px;
}
nav ul.nav.primary-nav li.menu-item-has-children.sub-menu-open > a:after {
  transform: rotate(0deg);
}
nav ul.nav.footer-nav li a {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.2px;
  line-height: 18px;
}

/******************************************************************
FOOTER
******************************************************************/
/******************************************************************
FOOTER - BASE
******************************************************************/
.page-id-19 .footer {
  display: none;
}

.footer {
  background: #111;
  color: #fff;
}
.footer h5 {
  padding-bottom: 0;
  text-align: left;
  font-size: 16px;
}
.footer .gform_wrapper ul.gform_fields li.gfield {
  margin-top: 18px;
}
.footer p {
  margin: 0 0 10px;
}
.footer a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
.footer .footer-top {
  padding: 50px 4px 30px;
}
.footer .footer-top .footer-logo {
  padding-bottom: 20px;
}
.footer .footer-top form input[type=submit] {
  display: block;
  margin: 0;
  width: 100%;
}
.footer .footer-top nav {
  display: none;
}
.footer .footer-top .footer-newsletter h3 {
  background: none;
  text-align: center;
}
.footer .footer-bottom {
  padding: 0 0 50px;
  background: #121212;
  color: #959595;
  font-size: 11px;
  text-align: center;
}
.footer .footer-bottom a {
  color: #959595;
}
.footer .footer-form {
  max-width: 581px;
  margin: auto;
}

.copyright {
  font-size: 13px;
  padding-bottom: 20px;
}

.copyright,
.footer-links {
  text-align: left;
}

.social-links {
  width: 100%;
  overflow: hidden;
  padding-top: 40px;
}
.social-links a {
  font-size: 0;
  float: left;
  height: 16px;
  background-image: url("../images/social-icons-white.png");
  background-size: auto 16px;
  background-position: left;
  margin-right: 40px;
}
.social-links a.facebook {
  width: 8px;
}
.social-links a.twitter {
  width: 18px;
  background-position: -10px;
}
.social-links a.linkedin {
  width: 17px;
  background-position: -32px;
}
.social-links a.instagram {
  width: 16px;
  background-position: -52px;
}

.footer-links li {
  display: inline-block;
  margin-right: 30px;
}

.footer-form .gform_wrapper div.validation_error,
.footer-form .gform_wrapper li.gfield.gfield_error {
  border-top: 2px solid #c00;
  border-bottom: 2px solid #c00;
}
.footer-form .gform_wrapper li.gfield.gfield_error {
  background-color: transparent;
}
.footer-form .gform_wrapper div.validation_error,
.footer-form .gform_wrapper .validation_message,
.footer-form .gform_wrapper .gfield_error .gfield_label {
  color: #c00;
}

/******************************************************************
INTRO
******************************************************************/
/******************************************************************
INTRO - BASE
******************************************************************/
.intro {
  margin-top: -50px;
  padding-top: 164px;
  padding-bottom: 30px;
  position: relative;
  background-color: #121212;
  background-position: 40% top;
  background-size: cover;
  background-repeat: no-repeat;
  color: #000;
  overflow: hidden;
  z-index: 1500;
}
.intro.blank-section {
  padding-top: 300px;
}
.intro.blank-section.extended {
  padding-top: 450px;
}
.intro.intro-carousel {
  height: 300px;
}
.intro.intro-carousel .slide {
  height: 300px;
  background-position: center;
  background-size: cover;
}
.intro .wrap {
  height: 100%;
  position: relative;
  padding-bottom: 30px;
  z-index: 12;
}
.intro .intro-content {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  z-index: 2;
  transform: translateY(-50%);
}
.intro .intro-content .intro-sub-title {
  margin: 0 0 20px;
  font-size: 18px;
}
.intro h1,
.intro h4 {
  text-align: left;
}
.intro.center-content h1,
.intro.center-content h4,
.intro.center-content div.button {
  text-align: center;
  max-width: 100%;
}
.intro h1 {
  max-width: 246px;
}
.intro h4 {
  padding-bottom: 70px;
}
.intro .booking-form-wrapper {
  background: #fff;
  padding: 20px 20px 50px;
  min-height: 370px;
}
.intro .booking-form-wrapper #gform_4 .button {
  margin-top: 20px !important;
}
.intro .booking-form-wrapper li.gfield label {
  color: #121212;
}
.intro .booking-form-wrapper li.gfield.duration .ginput_container {
  margin-top: 0 !important;
}
.intro .booking-form-wrapper li.gfield.duration .ginput_container select {
  letter-spacing: 0;
}
.intro .booking-form-wrapper li.gfield#field_4_106 {
  margin-top: -15px;
}
.intro .booking-form-wrapper li.gfield#field_4_106 h3 {
  text-align: left;
}
.intro .left-align {
  text-align: left;
}
.intro.alternate-content-style {
  padding-top: 300px;
  padding-bottom: 0;
  background-size: auto 320px;
}
.intro.alternate-content-style .intro-content-wrapper {
  padding: 30px 30px 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.intro.alternate-content-style .intro-content-wrapper h1 {
  padding-bottom: 6px;
  font-size: 28px;
  line-height: 34px;
  max-width: 100%;
}
.intro.alternate-content-style .intro-content-wrapper h4 {
  padding-bottom: 0;
}
.intro.alternate-content-style .intro-content-wrapper .button {
  padding-top: 20px;
}
.intro.alternate-content-style .intro-content-wrapper.background-black {
  background-color: #121212;
}
.intro.alternate-content-style .intro-content-wrapper.background-white {
  background-color: #ffffff;
}
.intro.alternate-content-style .intro-content-wrapper.background-white h1,
.intro.alternate-content-style .intro-content-wrapper.background-white h4 {
  color: #121212;
}

.flexi-content .intro:not(:first-child) {
  margin-top: 50px !important;
}

.page-id-36482 .intro {
  margin-top: 0 !important;
}
.page-id-36482 .intro:first-of-type {
  margin-top: -50px !important;
}

.home .intro,
.single-cars .intro {
  background-size: auto 462px;
}
.home .intro .gradient-overlay,
.single-cars .intro .gradient-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 11;
  background-image: linear-gradient(180deg, rgba(18, 18, 18, 0) 42%, #121212 55%);
}

.single-cars .intro {
  background-size: auto 380px;
  background-position: 14% -75px;
}
.single-cars .intro .gradient-overlay {
  background-image: linear-gradient(180deg, rgba(18, 18, 18, 0) 35%, #121212 41%);
}

article .intro {
  padding-top: 150px;
  padding-bottom: 50px;
}
article .intro.empty-intro {
  padding-top: 70px !important;
  padding-bottom: 0px !important;
}
article .intro.extended {
  padding-bottom: 150px;
}
article .intro.alternate-content-style {
  padding-bottom: 0;
}

.post-type-archive .intro h1 {
  max-width: 100%;
}

body.header-sticky .intro.full-screen {
  margin-top: -50px;
}

@media only screen and (max-width: 533px) {
  .intro.alternate-content-style {
    background-size: auto 300px;
  }
}
/******************************************************************
CONTENT
******************************************************************/
/******************************************************************
CONTENT - BASE
******************************************************************/
.wrap.fixed {
  padding-top: 20px;
  padding-bottom: 20px;
}
.wrap.narrow-wrap {
  max-width: 633px;
}
.wrap.narrow-wrap img {
  max-width: 100%;
}

/******************************************************************
CONTENT SECTIONS
******************************************************************/
.full-width .content-section {
  padding-top: 20px;
  padding-bottom: 20px;
}
.full-width .content-section.boxed {
  padding-top: 30px;
  padding-bottom: 30px;
}

.fixed .content-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.content-section.blockquote {
  color: #2689EE;
}
.content-section.blockquote p {
  font-size: 1.5em;
  font-weight: 500;
}
.content-section.faqs-wrap ul.faqs {
  margin: 0 0 30px;
  list-style-type: none;
  border-top: 1px solid #D8D8D8;
}
.content-section.faqs-wrap ul.faqs li {
  border-bottom: 1px solid #D8D8D8;
}
.content-section.faqs-wrap ul.faqs li h3 {
  margin: 0;
  padding: 10px 40px 10px 0;
  position: relative;
  font-size: 15px;
  cursor: pointer;
}
.content-section.faqs-wrap ul.faqs li h3:after {
  content: "";
  width: 11px;
  height: 6px;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 10px;
  background: url(../images/icon-arrow-black-down.html) 0 0 no-repeat;
  -webkit-background-size: 11px;
  background-size: 11px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.content-section.faqs-wrap ul.faqs li h3:hover {
  color: #2689EE;
}
.content-section.faqs-wrap ul.faqs li .answer {
  padding: 0 0 15px;
  display: none;
}
.content-section.faqs-wrap ul.faqs li .answer p {
  margin: 0 0 15px;
  font-size: 12px;
}
.content-section.faqs-wrap ul.faqs li.open h3 {
  color: #2689EE;
}
.content-section.faqs-wrap ul.faqs li.open h3:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.content-section.faqs-wrap ul.faqs li.open .answer {
  display: block;
}
.content-section.cta-wrap .cta {
  margin-bottom: 20px;
  padding: 50px 30px;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
}
.content-section.cta-wrap .cta h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.content-section.cta-wrap .cta p {
  font-size: 14px;
  font-weight: 400;
}
.content-section.cta-wrap .cta .btn {
  width: auto;
}

.content-section.wrap + .content-section.wrap {
  padding-top: 0;
}

.content-section-alternating {
  margin: 0 0 20px;
  padding: 0 0 0;
}
.content-section-alternating .content-section-alternating-image {
  margin-bottom: 15px;
}
.content-section-alternating img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

.box {
  padding: 30px;
  position: relative;
  background: #fff;
  text-align: center;
}
.box h2, .box h3 {
  font-size: 24px;
}
.box h2 a:hover, .box h3 a:hover {
  /*color: $green;*/
}
.box img.icon {
  width: 25px;
  display: inline-block;
}

/******************************************************************
CONTACT CONTENT
******************************************************************/
.contact-section {
  margin-top: 20px;
}
.contact-section:last-child {
  margin-bottom: 30px;
}

.contact-details-wrap {
  margin-bottom: 30px;
}

p.contact-details {
  margin: 0 0 20px;
}
p.contact-details img {
  margin-right: 5px;
  display: inline;
  vertical-align: middle;
}
p.contact-details img.icon-email {
  margin-left: 10px;
}

ul.contact-pub-nav {
  border-top: 1px solid #CBCBC9;
}
ul.contact-pub-nav li {
  border-bottom: 1px solid #CBCBC9;
}
ul.contact-pub-nav li a {
  display: block;
  /*color: $green;*/
  background: url(../images/arrow-pub-menu.html) right center no-repeat;
  -webkit-background-size: 7px;
  background-size: 7px;
  /*font-family: $brother;*/
  font-size: 9px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
}

.map {
  height: 300px;
}

/******************************************************************
BLOG CONTENT
******************************************************************/
.blog .category-subscription,
.category .category-subscription {
  margin-bottom: 20px;
}
.blog .category-subscription label,
.category .category-subscription label {
  display: none;
}
.blog .type-post,
.category .type-post {
  margin-bottom: 30px;
}
.blog .type-post header,
.category .type-post header {
  margin-bottom: 15px;
}
.blog .type-post header h2,
.category .type-post header h2 {
  margin-bottom: 10px;
  font-size: 16px;
}
.blog .type-post header h2 a,
.category .type-post header h2 a {
  color: #111;
}
.blog .type-post footer a,
.category .type-post footer a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.meta {
  color: #aaa;
  font-size: 13px;
}

.pagination {
  clear: both;
  text-align: center;
}
.pagination ul {
  border: none;
  font-size: 14px;
}
.pagination ul li {
  margin: 0 3px;
  display: inline-block;
  border: none;
  vertical-align: top;
}
.pagination ul li a,
.pagination ul li span {
  width: 50px;
  height: 50px;
  padding: 0;
  display: block;
  color: #121212;
  font-weight: 600;
  -webkit-border-radius: 50px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
  border-radius: 50px;
  line-height: 48px;
  text-decoration: none;
  border: 1px solid #121212;
  transition: all 0.4s;
}
.pagination ul li span.current {
  background: #121212;
  color: #fff;
}
.pagination ul li a:hover {
  background: #121212;
  color: #fff;
}
.pagination ul li a.prev, .pagination ul li a.next {
  background-repeat: no-repeat;
  -webkit-background-size: 12px;
  background-size: 12px;
  position: relative;
  width: 150px;
  z-index: 10;
  font-size: 0;
}
.pagination ul li a.prev:before, .pagination ul li a.next:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  font-size: 12px;
  width: 150px;
  z-index: 11;
  line-height: 47px;
  text-transform: uppercase;
}
.pagination ul li a.prev {
  position: relative;
  background-position: 20% center;
  background-image: url(../images/arrow-black-left.svg);
}
.pagination ul li a.prev:before {
  content: "Previous";
  text-indent: 10px;
}
.pagination ul li a.next {
  position: relative;
  background-position: 80% center;
  background-image: url(../images/arrow-black-right.svg);
}
.pagination ul li a.next:before {
  content: "Next";
  text-indent: -10px;
}

.blog-post-date {
  font-size: 14px;
  text-align: left;
  padding: 0 18px;
  margin-bottom: 12px !important;
  color: #959595;
}

.blog-post-excerpt {
  text-align: left;
  padding: 0 18px;
}
.blog-post-excerpt p {
  font-size: 15px;
  line-height: 24px;
}

article.category-blog {
  min-height: 450px;
  background-color: #fff;
  position: relative;
}
article.category-blog h5 {
  text-align: left;
  padding: 0 18px;
  margin-bottom: 12px;
}
article.category-blog div.slide-lower {
  padding: 12px;
}
article.category-blog .text-link {
  position: absolute;
  bottom: 20px;
  left: 32px;
  font-weight: 100;
  font-size: 12px;
}
article.category-blog .chauffeur-blurb {
  margin-bottom: 50px;
}
article.category-blog .entry-title {
  line-height: 24px;
}

/******************************************************************
SINGLE BLOG CONTENT
******************************************************************/
.single-post img.wp-post-image {
  margin: 0 0 15px;
  display: block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.single-post .meta {
  padding: 0 0 0 23px;
  background: url(../images/icon-clock.html) 0 center no-repeat;
  -webkit-background-size: 16px;
  background-size: 16px;
  font-weight: 400;
}
.single-post .meta a {
  text-decoration: none;
}
.single-post .share {
  margin-bottom: 40px;
}
.single-post footer {
  margin-top: 30px;
}
.single-post .related-stories .wrap {
  padding-top: 40px;
  border-top: 1px solid #d8d8d8;
}
.single-post .related-stories .wrap .blog .type-post {
  text-align: left;
}
.single-post .related-stories .wrap .blog .type-post img {
  max-width: 100% !important;
  margin: 0 0 15px;
}

.entry-content img.alignnone {
  margin: 0 0 25px;
  display: block;
}

/******************************************************************
CONTACT US
******************************************************************/
.acf-map {
  height: 500px;
}

.address {
  margin-bottom: 0px;
}

/******************************************************************
TABLES
******************************************************************/
.entry-content table {
  margin: 0 0 20px;
}
.entry-content table tr:nth-child(2n+1) td {
  background: #F1F3F4;
}
.entry-content table th, .entry-content table td {
  padding: 5px 10px;
  font-size: 12px;
  vertical-align: top;
}
.entry-content table th {
  font-weight: 500;
  text-align: left;
}
.entry-content table td {
  font-weight: 300;
}

/******************************************************************
MODALS
******************************************************************/
.modal,
.modal-overlay {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.modal.open,
.modal-overlay.open {
  visibility: visible;
}

.modal {
  width: 90%;
  height: 90%;
  margin-left: -45%;
  padding: 20px;
  position: fixed;
  top: 5%;
  left: 50%;
  z-index: 99999;
  overflow: scroll;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.modal.open {
  opacity: 1;
}
.modal .close {
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  background: url(../images/close-dark.html) 0 0 no-repeat;
  -webkit-background-size: 18px;
  background-size: 18px;
  text-indent: -9999px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: #000 !important;
}
.modal-overlay.open {
  opacity: 0.8;
}

/******************************************************************
BOXES
******************************************************************/
.box.normal-padding {
  padding: 20px;
}

/******************************************************************
COLOUR STYLES
******************************************************************/
.grey-bg {
  background-color: #242424;
}

.light-grey-bg {
  background-color: #F7F7F7;
}
.light-grey-bg.content .blog-posts .slide {
  background-color: #fff;
}
.light-grey-bg.content .blog-posts .slide .text-link {
  color: #2689EE;
}
.light-grey-bg.content .blog-posts .slide .text-link:after {
  background-image: url("../images/arrow-blue-right.svg");
}
.light-grey-bg.custom-three-boxes .slide {
  background-color: #fff;
}

.light-blue-bg {
  background-color: #EBF1F5;
}

.black-bg {
  background-color: #121212;
}
.black-bg h2,
.black-bg h3,
.black-bg h4,
.black-bg h5 {
  color: #fff;
  margin-bottom: 0;
}
.black-bg .sub-heading {
  color: #959595;
  margin-bottom: 14px;
}
.black-bg p {
  color: #fff;
  margin-bottom: 50px;
}
.black-bg .text-link {
  color: #fff;
}
.black-bg.content .section-header:after {
  background-color: #fff;
}
.black-bg.content .slide {
  background-color: #242424;
}
.black-bg .slick-arrow.slick-prev {
  background-image: url("../images/arrow-white-left.svg");
}
.black-bg .slick-arrow.slick-next {
  background-image: url("../images/arrow-white-right.svg");
}
.black-bg .slick-dots li button {
  background-color: #696969;
}
.black-bg .slick-dots li.slick-active button {
  background-color: #fff;
}

/******************************************************************
BOOKING FORM
******************************************************************/
#input_1_139, #input_1_138 {
  width: 100%;
}

#input_1_81,
#input_4_81 {
  margin-left: 0;
  color: #818181;
}

body .gform_legacy_markup_wrapper .top_label #field_1_81 div.ginput_container {
  margin-top: 0;
}

#gform_1 .stripe-image,
#gform_4 .stripe-image {
  height: 94px;
  background-image: url("../images/secured-by-stripe.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  width: 100%;
}
#gform_1 .gf_page_steps,
#gform_4 .gf_page_steps {
  display: none;
}
#gform_1 .gform_title,
#gform_4 .gform_title {
  margin: 0;
  color: #121212;
  font-size: 24px;
  color: #121212;
  letter-spacing: 0.64px;
  line-height: 22px;
  text-align: center;
  font-weight: 500;
}
#gform_1 .gform_body #gform_page_1_1 .top_label li ul.gfield_radio,
#gform_4 .gform_body #gform_page_1_1 .top_label li ul.gfield_radio {
  width: 100%;
}
#gform_1 .gform_body #gform_page_1_1 .top_label li#field_1_87 ul.gfield_radio,
#gform_4 .gform_body #gform_page_1_1 .top_label li#field_1_87 ul.gfield_radio {
  margin: 6px 0;
  width: calc( 100% + 6px );
}
#gform_1 .gform_body li#field_4_87 ul.gfield_radio,
#gform_4 .gform_body li#field_4_87 ul.gfield_radio {
  margin: 6px -5px;
  width: calc( 100% + 16px );
}
#gform_1 .ginput_container_radio,
#gform_4 .ginput_container_radio {
  margin: 0 auto;
}
#gform_1 .ginput_container_radio li,
#gform_4 .ginput_container_radio li {
  display: inline-block;
  width: 50% !important;
  width: calc(50% - 5px) !important;
  padding: 0 5px !important;
  margin: 0 0 4px 0;
  overflow: visible;
}
#gform_1 .ginput_container_radio li input[type=checkbox]:checked + label,
#gform_1 .ginput_container_radio li input[type=radio]:checked + label,
#gform_4 .ginput_container_radio li input[type=checkbox]:checked + label,
#gform_4 .ginput_container_radio li input[type=radio]:checked + label {
  color: #2689EE;
  border: 2px solid #2689EE;
  background-color: #e8f4fc;
}
#gform_1 .ginput_container_radio input,
#gform_4 .ginput_container_radio input {
  margin-right: -15px;
  opacity: 0;
  margin-bottom: -15px;
}
#gform_1 .ginput_container_radio label,
#gform_4 .ginput_container_radio label {
  font-size: 14px;
  letter-spacing: -0.43px;
  text-transform: none;
  color: #121212;
  line-height: 17px;
  padding: 14px 20px;
  border: 1px solid #121212;
  display: block;
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
#gform_1 #field_1_87,
#gform_4 #field_1_87 {
  margin-top: -20px;
}
#gform_1 #input_1_87 > li.gchoice_1_87_0,
#gform_4 #input_1_87 > li.gchoice_1_87_0 {
  padding: 0 5px 0 0 !important;
}
#gform_1 #input_1_87 > li.gchoice_1_87_1,
#gform_4 #input_1_87 > li.gchoice_1_87_1 {
  padding: 0 0 0 5px !important;
}
#gform_1 #field_1_15 .ginput_container_text,
#gform_1 #field_1_16 .ginput_container_text,
#gform_1 #field_4_15 .ginput_container_text,
#gform_1 #field_4_16 .ginput_container_text,
#gform_4 #field_1_15 .ginput_container_text,
#gform_4 #field_1_16 .ginput_container_text,
#gform_4 #field_4_15 .ginput_container_text,
#gform_4 #field_4_16 .ginput_container_text {
  position: relative;
  margin-top: 0;
}
#gform_1 #field_1_15 .ginput_container_text:after,
#gform_1 #field_1_16 .ginput_container_text:after,
#gform_1 #field_4_15 .ginput_container_text:after,
#gform_1 #field_4_16 .ginput_container_text:after,
#gform_4 #field_1_15 .ginput_container_text:after,
#gform_4 #field_1_16 .ginput_container_text:after,
#gform_4 #field_4_15 .ginput_container_text:after,
#gform_4 #field_4_16 .ginput_container_text:after {
  position: absolute;
  height: 20px;
  width: 20px;
  top: 17px;
  right: 12px;
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#gform_1 #input_1_15,
#gform_1 #input_4_15,
#gform_4 #input_1_15,
#gform_4 #input_4_15 {
  background-image: url("../images/from.svg");
  background-size: 20px;
  background-position: 97.5% center;
  background-repeat: no-repeat;
  padding: 16px 14px 17px;
}
#gform_1 #input_1_16,
#gform_1 #input_4_16,
#gform_4 #input_1_16,
#gform_4 #input_4_16 {
  padding: 16px 14px 17px;
}
#gform_1 #field_1_16 .ginput_container_text:after,
#gform_1 #field_4_16 .ginput_container_text:after,
#gform_4 #field_1_16 .ginput_container_text:after,
#gform_4 #field_4_16 .ginput_container_text:after {
  background-image: url("../images/to.svg");
}
#gform_1 .gform_next_button,
#gform_4 .gform_next_button {
  font-weight: 400;
  line-height: 22px !important;
  width: 100%;
}
#gform_1 .gform_page_footer.working:after,
#gform_1 .gform_footer.working:after,
#gform_4 .gform_page_footer.working:after,
#gform_4 .gform_footer.working:after {
  right: 50%;
  transform: translate(50%, -25%);
  background-image: url("../images/select3-spinner.gif");
  height: 16px;
  width: 16px;
}

.gform_wrapper .gform_ajax_spinner {
  width: 25px;
  margin: -4px auto 20px;
}

.ginput_stripe_creditcard label {
  text-align: left;
  font-size: 11px !important;
}
.ginput_stripe_creditcard .StripeElement {
  border: 1px solid #f0f2f8;
  background-color: #f0f2f8;
}

.page-template-page-booking-form #gform_page_1_1 .ginput_container_radio li {
  width: calc(50% - 5px) !important;
}

#gform_4 .gform_footer {
  margin-top: 0px;
}

#gform_page_1_1 .gform_page_footer {
  margin-top: 0px;
}

/******************************************************************
CONTENT BLOCKS
******************************************************************/
.content {
  padding: 50px 0 60px;
  text-align: center;
  overflow: hidden;
}
.content + .intro {
  margin-top: 0;
}
.content.left .section-header h2,
.content.left .section-header h4 {
  text-align: left;
}
.content.left .section-header:after {
  left: 0;
  margin: 0;
}
.content.left .section-content p {
  text-align: left;
}
.content .section-header,
.content .section-content {
  max-width: 633px;
  margin: auto;
}
.content .section-header {
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 40px;
}
.content .section-header.smaller-gap {
  margin-bottom: 20px;
}
.content .section-header:after {
  width: 40px;
  height: 1px;
  background-color: #121212;
  left: 50%;
  margin: 0 -20px;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
}
.content .section-header h4 {
  color: #121212;
}
.content .section-header.type-2 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.content .section-header.type-2:after {
  display: none;
}
.content .section-header.type-2 h3 {
  text-align: left;
}
.content.black-bg .section-header h4 {
  color: #fff;
}
.content .cars .slick-list,
.content .services .slick-list {
  overflow: visible;
}
.content .slide .image,
.content .chauffeurs .image {
  overflow: hidden;
}
.content .slide .image img,
.content .chauffeurs .image img {
  transition: all 0.4s;
}
.content .slide .image.hover:hover img,
.content .chauffeurs .image.hover:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}
.content .slide {
  max-width: 310px;
  text-align: left;
  margin: 0 auto 40px;
  transition: all 0.4s;
}
.content .slide .image {
  max-height: 200px;
}
.content .slide .image img {
  margin: -20px 0;
}
.content .slide .image.oversized img {
  max-width: 130%;
  margin: 0 -15%;
}
.content .slide .title {
  text-align: left;
}
.content .slide .slide-lower {
  padding: 20px;
  position: relative;
  min-height: 200px;
}
.content .slide .slide-lower.minimal-padding {
  padding: 10px 0 0;
}
.content .slide .slide-lower .service-link {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.content .slide .slide-lower .service-link a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}
.content .slide .slide-lower .service-excerpt p {
  margin-bottom: 30px;
  font-size: 13px;
}
.content .slide .link {
  padding-top: 11px;
  line-height: 16px;
}
.content .slide.whole-slide-hover:hover {
  opacity: 0.7;
}
.content .slide.whole-slide-hover:hover .image img {
  transform: scale(1.05);
}
.content .link {
  text-align: center;
}
.content .image-full-width {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.content .button {
  margin-top: 0;
}
.content .button.space-top {
  margin-top: 30px;
}
.content.tall-block {
  background-size: 767px;
  background-repeat: no-repeat;
}
.content.tall-block h2,
.content.tall-block p {
  color: #fff;
}
.content.tall-block h4 {
  color: #fff;
}
.content.tall-block p {
  margin-bottom: 30px;
}
.content.tall-block .section-header:after {
  background-color: #fff;
}
.content.tall-block.content-top {
  background-position: center bottom;
  padding-bottom: 340px;
}
.content.tall-block.content-bottom {
  background-position: center top;
  padding-top: 340px;
}
.content .content-carousel {
  padding: 50px 0;
}
.content .content-carousel .slick-list {
  max-width: 320px;
  overflow: visible;
  margin: auto;
}
.content .content-carousel .slide-type-2 {
  transition: all 0.4s;
}
.content .content-carousel .slide-type-2 .image {
  max-height: 200px;
  padding: 0 10px;
  cursor: pointer;
}
.content .content-carousel .slick-center {
  transform: scale(1.15);
}
.content.dark-theme h2,
.content.dark-theme h3,
.content.dark-theme p,
.content.dark-theme a {
  color: #fff;
}
.content.dark-theme h4 {
  color: #959595;
}
.content.dark-theme a:hover {
  color: #cccccc;
}
.content.dark-theme .section-header:after {
  background-color: #fff;
}
.content.content-left .image, .content.content-right .image {
  padding-top: 30px;
}
.content .block-testimonial,
.content .testimonial-from {
  text-align: left;
}
.content .block-testimonial {
  padding-bottom: 30px;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 14px;
}
.content .testimonial-from {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 22px;
}
.content .testimonial-from .testimonial-name {
  font-weight: 600;
}
.content .semi-bold-spacer {
  font-weight: 600;
  padding: 0 5px;
}
.content .image-grid-small {
  width: 49.2%;
  display: inline-block;
}
.content.feature p {
  font-size: 20px;
}
.content.feature .column-content p {
  font-size: 13px;
}
.content.custom-three-boxes .slide .image {
  max-height: 250px;
}
.content.custom-three-boxes .slide .image img {
  max-width: 140%;
  margin: 0 -20%;
}
.content.custom-three-boxes .slide .slide-lower h5,
.content.custom-three-boxes .slide .slide-lower .sub-heading,
.content.custom-three-boxes .slide .slide-lower .service-excerpt,
.content.custom-three-boxes .slide .slide-lower p {
  color: #121212 !important;
}
.content.custom-three-boxes .slide .service-link a {
  bottom: 0;
  left: 0;
  color: #2689ee;
}
.content.blog-archive .chauffeur-sub-heading:empty,
.content.blog-archive .chauffeur-blurb:empty {
  padding-bottom: 50px;
}
.content .grid-image {
  margin-top: 25px;
}
.content .table-content {
  max-width: 1078px;
  margin: auto;
  padding-top: 30px;
  overflow: scroll;
}

table {
  border-collapse: separate;
  margin: auto;
}
table tr td {
  text-align: left;
  padding: 9px 10px 12px;
  border-collapse: separate;
}
table thead tr td {
  font-weight: 500;
  background-color: #ECECEC;
  border-bottom: 1px solid #CFCFCF;
}
table tbody th {
  padding: 0 8px;
}
table tbody tr td {
  background-color: #ECECEC;
}
table tbody tr:nth-child(odd) td {
  background-color: #fff;
}

.full-screen-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.full-screen-width-bookingform {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.banner {
  overflow: hidden;
  text-align: center;
  padding: 20px 0;
}
.banner p {
  color: #959595;
  margin-bottom: 0;
}
.banner .button {
  padding: 10px 0 20px;
}
.banner .button a.fr {
  float: none;
}

.feature-text,
.car-pricing-line,
.chauffeur-sub-heading,
.chauffeur-blurb {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: -0.4px;
}

.chauffeur-sub-heading {
  font-weight: 500;
}

.car-pricing-line {
  padding: 7px 0;
  border-bottom: 1px solid #D8D8D8;
}
.car-pricing-line .car-price-label,
.car-pricing-line .car-price {
  display: inline-block;
}
.car-pricing-line .car-price {
  float: right;
  text-align: right;
  font-weight: 600;
}
.car-pricing-line .car-price.large-price {
  font-size: 20px;
}
.car-pricing-line:last-of-type {
  border-bottom: 0px solid transparent;
}

.service-heading,
.date,
.job-title,
.sub-heading {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.43px;
  line-height: 24px;
}

.vat-line {
  padding: 3px 0 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 18px;
}

.video .video-js {
  max-width: 100%;
  margin: auto;
}
.video .video-js .vjs-big-play-button {
  background-image: url("../images/play.svg");
  border: 1px solid #fff;
  border-radius: 50%;
  height: 64px;
  width: 64px;
  background-color: transparent;
  background-position: 56% center;
  background-size: 24px 20px;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  margin: -32px;
}
.video .video-js .vjs-big-play-button span:before {
  display: none;
}
.video .video-js video {
  object-fit: cover;
}
.video .vjs-layout-small {
  height: 175px;
}
.video .vjs-layout-medium {
  height: 340px;
}

.testimonial {
  padding: 4px 0 28px;
}

.testimonial-slide {
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
}
.testimonial-slide .image {
  width: 115px;
  height: 80px;
  overflow: hidden;
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
.testimonial-slide .testimonial-1,
.testimonial-slide .testimonial-3,
.testimonial-slide .testimonial-5 {
  border-bottom: 1px solid #D8D8D8;
}

.testimonial-slider {
  margin-bottom: 40px;
}
.testimonial-slider .slick-dots {
  bottom: -40px;
}
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  bottom: -39px;
}

.flatpickr-calendar {
  display: none;
}

#gform_wrapper_2 #gform_2 .gform_footer {
  margin-top: 0;
  padding-top: 0;
}

.car-pricing-block,
.vat-line {
  text-align: left;
}

.car-pricing-block {
  padding: 15px 0;
}

.car-features-block {
  overflow: hidden;
  padding: 10px 0;
}
.car-features-block h5 {
  text-align: left;
}
.car-features-block .feature-icon,
.car-features-block .feature-text {
  display: inline-block;
}
.car-features-block .feature-icon {
  width: 14px;
  height: 16px;
}
.car-features-block .feature {
  text-align: left;
}

.cars.type-cars {
  padding-bottom: 40px;
}
.cars .car-lower h5 {
  text-align: left;
}

.post-type-archive-cars .section-header h2 {
  max-width: 65%;
  margin: auto;
}

.chauffeurs {
  background-color: #fff;
  max-width: 297px;
  margin: 0 auto 40px;
}
.chauffeurs .entry-header {
  height: 112px;
  width: 112px;
  margin: 20px auto 0;
  overflow: hidden;
  border: 1px solid #121212;
  border-radius: 50%;
}
.chauffeurs .entry-header img {
  margin-left: 0;
  margin-right: auto;
}
.chauffeurs .slide-lower {
  padding: 14px 14px 22px;
  text-align: left;
  position: relative;
}
.chauffeurs .slide-lower h5 {
  text-align: left;
}
.chauffeurs .slide-lower .chauffeur-sub-heading {
  color: #959595;
  margin-bottom: 10px;
}
.chauffeurs .slide-lower .chauffeur-blurb {
  margin-bottom: 0;
}
.chauffeurs .slide-lower .blurb-container {
  max-height: 155px;
  overflow: hidden;
  margin-bottom: 45px;
  transition: all 0.5s;
}
.chauffeurs .slide-lower.open .blurb-container {
  max-height: 1000px;
}

.single-cars article.cars.type-cars {
  padding-bottom: 0;
}
.single-cars .tall-block h4 {
  max-width: 75%;
  margin: auto;
}
.single-cars .tall-block .label {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 0;
}
.single-cars .content.tall-block.content-top {
  padding-bottom: 60px;
}
.single-cars .content .phone-numbers {
  padding-bottom: 40px;
}
.single-cars .content .phone-numbers a {
  color: #fff;
}
.single-cars .enquiry-form h3 {
  text-align: left;
}

.highlights {
  padding: 16px 0;
}

.highlight {
  text-align: left;
  padding: 6px 0 6px 30px;
  position: relative;
}
.highlight:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 0;
  top: 8px;
  background-image: url("../images/black-tick.svg");
  background-size: 20px;
  background-position: center;
}

.button {
  text-align: center;
}
.button a + a {
  margin-top: 20px;
}

.slides {
  overflow: hidden;
}

.youtube-wrapper iframe {
  max-width: 100%;
}

.page-id-20150 .flexi-content > div {
  margin-top: 100px;
}
.page-id-20150 .flexi-content > div:first-of-type {
  margin-top: -50px;
}

.overflow-hidden {
  overflow: hidden;
}

.page-template-page-booking-form article {
  background-color: #EBF1F5;
}
.page-template-page-booking-form article .content {
  padding-bottom: 0;
}
.page-template-page-booking-form article .content .section-header {
  max-width: 100%;
}
.page-template-page-booking-form #gform_next_button_1_54 {
  height: 0;
  padding: 0;
  border: 0px solid transparent;
  min-height: 0;
}
.page-template-page-booking-form .section-content {
  max-width: 100%;
}
.page-template-page-booking-form .section-content .phone-numbers {
  text-align: center;
  padding: 20px 0;
}
.page-template-page-booking-form .section-content .phone-numbers .phone-label {
  font-size: 15px;
  font-weight: 600;
  color: #121212;
  letter-spacing: -0.4px;
  line-height: 22px;
  margin-bottom: 3px;
}
.page-template-page-booking-form .section-content .phone-numbers a {
  margin-top: 3px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.4px;
  line-height: 22px;
}
.page-template-page-booking-form #gform_1 input[type=datetime-local] {
  padding: 21px 14px 7px;
  margin-bottom: 0;
}
.page-template-page-booking-form #gform_1 .ginput_container_email:after {
  display: none;
}
.page-template-page-booking-form #gform_1 .gf_page_steps {
  display: block;
  border-bottom: 0px solid transparent;
  margin-bottom: 30px;
}
.page-template-page-booking-form #gform_1 .gf_step {
  width: 24%;
  display: inline-block;
  margin-right: 0;
  opacity: 1;
  height: 16px;
  position: relative;
}
.page-template-page-booking-form #gform_1 .gf_step:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 10px;
  left: 40px;
  width: auto;
  height: 1px;
  background-color: #121212;
  z-index: 10;
}
.page-template-page-booking-form #gform_1 .gf_step.gf_step_last:after {
  display: none;
}
.page-template-page-booking-form #gform_1 .gf_step.gf_step_active .gf_step_number {
  color: #fff;
  background-color: #2689EE;
  border: 1px solid #2689EE;
}
.page-template-page-booking-form #gform_1 .gf_step .gf_step_label {
  display: none;
}
.page-template-page-booking-form #gform_1 .gf_step .gf_step_number {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1px solid #959595;
  color: #696969;
  border-radius: 15px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 28px;
}
.page-template-page-booking-form #gform_1 .gf_step.gf_step_completed .gf_step_number {
  border: 1px solid #2689EE;
  color: #121212;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 {
  padding: 30px;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 1px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1:before,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3:before {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #121212;
  letter-spacing: 0.4px;
  font-family: "gill-sans-nova", sans-serif;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1 {
  margin-bottom: -3px;
  width: 100vw;
  margin-left: calc( 50% - 50vw );
  margin-right: calc( 50% - 50vw );
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1 .button {
  margin-top: 10px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1:before {
  content: "GET A PRICE & BOOK";
  text-align: center;
  margin: 12px 0 0 0;
  color: #121212;
  font-size: 16px;
  color: #121212;
  letter-spacing: 0.64px;
  line-height: 22px;
  font-size: 22px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .previous-pseudo-wrapper {
  order: 3;
  position: relative;
  margin-bottom: -22px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .previous-pseudo-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  width: 13px;
  height: 9px;
  -webkit-mask-image: url("../images/arrow-form-back.svg");
  mask-image: url("../images/arrow-form-back.svg");
  -webkit-mask-size: 13px;
  mask-size: 13px;
  background-color: #2689EE;
  top: 21px;
  left: 19px;
  transition: all 0.3s;
  z-index: 10;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .previous-pseudo-wrapper:hover:before {
  left: 15px;
  background-color: #fff;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3:before {
  content: "BOOKING DETAILS";
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 ul.gform_fields li.gfield {
  margin-top: 14px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 ul.gform_fields li.gfield#field_1_67 {
  margin-top: 24px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .top_label div.ginput_container {
  margin-top: 0;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 #field_1_28 .gfield_description {
  padding: 0 0 10px;
  font-size: 12px;
  color: #121212;
  letter-spacing: -0.2px;
  line-height: 16px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  border-top: 0px solid transparent;
  padding-top: 0;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .gform_button {
  font-size: 15px;
  margin-bottom: 0;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .next-pseudo-wrapper,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper {
  order: 1;
  margin-top: 16px;
  position: relative;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .next-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .next-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper .gform_button {
  height: 54px;
  width: 100%;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper:after,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper:after,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .next-pseudo-wrapper:after,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 10px;
  background-image: url("../images/arrow-white-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 22px;
  right: 22px;
  transition: all 0.3s;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper:hover:after,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper:hover:after,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .next-pseudo-wrapper:hover:after,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper:hover:after {
  right: 18px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .form-button-spacer,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .form-button-spacer {
  order: 2;
  width: 100%;
  height: 1px;
  background-color: #CFCFCF;
  margin: 40px auto 20px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .gform_previous_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .gform_previous_button {
  font-size: 13px;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .previous-pseudo-wrapper,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .previous-pseudo-wrapper {
  order: 3;
  position: relative;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .previous-pseudo-wrapper:before,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .previous-pseudo-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  width: 13px;
  height: 9px;
  -webkit-mask-image: url("../images/arrow-form-back.svg");
  mask-image: url("../images/arrow-form-back.svg");
  -webkit-mask-size: 13px;
  mask-size: 13px;
  background-color: #2689EE;
  top: 21px;
  left: 19px;
  transition: all 0.3s;
  z-index: 10;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .previous-pseudo-wrapper:hover:before,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .previous-pseudo-wrapper:hover:before {
  left: 15px;
  background-color: #fff;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer #bookingform_mobilenumbers,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer #bookingform_mobilenumbers {
  order: 4;
}
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer {
  display: flex;
  padding: 10px 20px 50px;
}
.page-template-page-booking-form #gform_1 #field_1_67 .ginput_container {
  margin-top: 0;
}
.page-template-page-booking-form #gform_1 #field_1_67 .ginput_container label {
  text-align: left;
  padding-left: 10px;
  font-size: 14px;
  letter-spacing: -0.23px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.page-template-page-booking-form #gform_1 #field_1_67 .ginput_container input[type=checkbox] {
  margin-top: 0;
}
.page-template-page-booking-form #gform_1 #gform_page_1_2 {
  background-color: #fff;
  padding: 20px 13px;
}
.page-template-page-booking-form #gform_1 #gform_page_1_4 #field_1_100 {
  margin-top: 0;
}
.page-template-page-booking-form #gform_1 .hidden-field {
  display: none;
}
.page-template-page-booking-form #gform_1 .oneWay .ginput_product_price {
  display: none;
}
.page-template-page-booking-form #gform_1 .oneWay .ginput_product_price + .ginput_product_price {
  display: block;
}
.page-template-page-booking-form #gform_1 .byTheHour .ginput_product_price {
  display: block;
}
.page-template-page-booking-form #gform_1 .byTheHour .ginput_product_price + .ginput_product_price {
  display: none;
}
.page-template-page-booking-form #gform_1 .ginput_product_price {
  font-weight: 600;
  margin-right: 8px;
  font-size: 20px;
  color: #121212;
  letter-spacing: 0.17px;
  line-height: 24px;
}
.page-template-page-booking-form #gform_1 .car-pricing-block > p,
.page-template-page-booking-form #gform_1 .car-pricing-block .vat-line {
  display: inline-block;
}
.page-template-page-booking-form #gform_1 .car-pricing-block button {
  width: 100%;
}
.page-template-page-booking-form #gform_1 .journey-summary-list {
  list-style-type: none !important;
  list-style: none;
  margin: 0 !important;
  overflow: hidden;
}
.page-template-page-booking-form #gform_1 .journey-summary-list .detail-row + .detail-row {
  margin-top: 10px;
}
.page-template-page-booking-form #gform_1 .journey-summary-list .booking-detail,
.page-template-page-booking-form #gform_1 .journey-summary-list .booking-detail-label {
  display: block;
  float: left;
  font-size: 14px;
  color: #121212;
  letter-spacing: -0.4px;
  line-height: 18px;
}
.page-template-page-booking-form #gform_1 .journey-summary-list .booking-detail-label {
  width: 120px;
  font-weight: 600;
}
.page-template-page-booking-form #gform_1 .journey-summary-list .booking-detail {
  width: calc( 100% - 120px );
  font-weight: 400;
}
.page-template-page-booking-form #gform_1 .journey-summary-list li {
  padding: 10px 0;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 0;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  color: #121212;
  letter-spacing: -0.4px;
}
.page-template-page-booking-form #gform_1 .journey-summary-list li:first-of-type {
  padding: 18px 0 29px 139px;
}
.page-template-page-booking-form #gform_1 .journey-summary-list li:first-of-type:before {
  content: "";
  height: 94px;
  width: 127px;
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page-template-page-booking-form #gform_1 .journey-summary-list li.mercedes-s-class:before {
  background-image: url("../images/choose-mercedes-benz-s-class.png");
}
.page-template-page-booking-form #gform_1 .journey-summary-list li.mercedes-e-class:before {
  background-image: url("../images/choose-mercedes-benz-e-class.png");
}
.page-template-page-booking-form #gform_1 .journey-summary-list li.mercedes-v-class:before {
  background-image: url("../images/choose-mercedes-benz-v-class.png");
}
.page-template-page-booking-form #gform_1 .journey-summary-list li.range-rover:before {
  background-image: url("../images/choose-range-rover-autobiography.png");
}
.page-template-page-booking-form #gform_1 .journey-summary-list li.bentley-mulsanne:before {
  background-image: url("../images/choose-bentley-mulsanne.jpg");
}
.page-template-page-booking-form #gform_1 .journey-summary-list li.rolls-royce-phantom:before {
  background-image: url("../images/choose-rolls-royce-phantom.jpg");
}
.page-template-page-booking-form #gform_1 .journey-summary-list li::marker {
  height: 0;
}
.page-template-page-booking-form #gform_1 .journey-summary-list li .vehicle-name {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #121212;
  letter-spacing: 0.3px;
  line-height: 22px;
  text-transform: uppercase;
}
.page-template-page-booking-form .h2-journey-summary {
  padding-bottom: 20px;
}
.page-template-page-booking-form .h2-journey-summary,
.page-template-page-booking-form .billing-information {
  text-align: left;
}
.page-template-page-booking-form .gfmc-row-1-col-1-of-2 h4,
.page-template-page-booking-form .gfmc-row-1-col-2-of-2 h4 {
  font-weight: 500;
  font-size: 22px;
  color: #121212;
  letter-spacing: 0.4px;
  line-height: 30px;
}
.page-template-page-booking-form .totalPrice .gfield_label {
  font-weight: 400 !important;
  font-size: 14px;
  color: #121212;
  letter-spacing: -0.4px;
  margin-bottom: 0;
}
.page-template-page-booking-form .totalPrice .ginput_container_total .ginput_total {
  display: inline-block;
  font-weight: 600;
  font-size: 30px;
  color: #121212;
  letter-spacing: -0.88px;
  margin: 0;
}
.page-template-page-booking-form .totalPrice .ginput_container_total .ginput_total:after {
  display: inline-block;
  content: "Prices include VAT";
  font-weight: 600;
  font-size: 12px;
  color: #121212;
  letter-spacing: -0.37px;
  margin-left: 6px;
}
.page-template-page-booking-form .gfmc-row-1-col-1-of-2 {
  width: 100% !important;
  background-color: #fff;
  z-index: 10;
  margin-bottom: -5px;
  padding: 20px;
  position: relative;
}
.page-template-page-booking-form .gfmc-row-1-col-2-of-2 {
  width: 100% !important;
  background-color: #fff;
  padding: 0 20px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  z-index: 9;
  position: relative;
}
.page-template-page-booking-form #gform_page_1_4 .gform_page_fields {
  position: relative;
  z-index: 10;
}
.page-template-page-booking-form #gform_page_1_4 .gform_page_footer {
  position: relative;
  z-index: 11;
  margin: 0;
  background-color: #fff;
}
.page-template-page-booking-form #field_1_77 {
  overflow: hidden;
}
.page-template-page-booking-form .steps-header {
  opacity: 0;
  transition: all 0.3s;
}
.page-template-page-booking-form .steps-header.visible {
  opacity: 1;
}
.page-template-page-booking-form .steps-header h1,
.page-template-page-booking-form .steps-header h4 {
  text-align: left;
}
.page-template-page-booking-form .steps-header #step-number {
  color: #2689EE;
}
.page-template-page-booking-form .steps-header h1 {
  padding: 4px 0 2px;
}
.page-template-page-booking-form .gform_wrapper span.ginput_total {
  color: #121212;
  font-weight: 700;
}
.page-template-page-booking-form .gform_wrapper .labels-inside-fields .top_label #field_1_8 label {
  font-weight: 400;
  text-transform: none;
  font-size: 13px;
  color: #121212;
  letter-spacing: 0.2px;
  line-height: 24px;
  padding-left: 0;
}
.page-template-page-booking-form .gform_wrapper .labels-inside-fields .top_label #field_1_8 label + div.ginput_container {
  margin-top: 0;
}
.page-template-page-booking-form .gform_wrapper .labels-inside-fields .top_label #field_1_8 label + div.ginput_container .ginput_total_1 {
  font-weight: 600;
  font-size: 20px;
  color: #121212;
  letter-spacing: 0.17px;
  line-height: 24px;
  display: inline-block;
  position: relative;
}
.page-template-page-booking-form .gform_wrapper .labels-inside-fields .top_label #field_1_8 label + div.ginput_container .ginput_total_1:after {
  content: "Prices include VAT";
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2px;
  line-height: 18px;
  padding-left: 8px;
}
.page-template-page-booking-form .gform_wrapper .gform_body #gform_page_1_4 {
  padding-left: 0;
  padding-right: 0;
}

.gfmc-row-1-col-1-of-2 {
  display: none;
}

.form-page-2 div.gform_wrapper,
.form-page-3 div.gform_wrapper,
.form-page-4 div.gform_wrapper {
  overflow: visible;
}
.form-page-2 div.gform_wrapper form#gform_1,
.form-page-3 div.gform_wrapper form#gform_1,
.form-page-4 div.gform_wrapper form#gform_1 {
  overflow: visible;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body,
.form-page-3 div.gform_wrapper form#gform_1 .gform_body,
.form-page-4 div.gform_wrapper form#gform_1 .gform_body {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}

.form-page-4 #field_1_31 input,
.form-page-4 #field_1_31 select {
  margin-top: 0;
}

.form-page-2 div.gform_wrapper form#gform_1 .gform_body .section-header.type-2 h3 {
  margin-top: 0px;
  font-weight: 600;
  font-size: 24px;
  color: #121212;
  letter-spacing: 0.4px;
  line-height: 22px;
  margin-bottom: 12px;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .car-image img {
  display: block;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .feature-text,
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .highlights p {
  font-size: 14px;
  letter-spacing: -0.4px;
  line-height: 17px;
  font-weight: 500;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .car-features-block,
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .highlights {
  padding-bottom: 24px;
  border-bottom: 1px solid #CFCFCF;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .highlights {
  padding-top: 24px;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .highlights p {
  line-height: 29px;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .highlights .highlight:before {
  top: 11px;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .form-pricing-box {
  padding: 24px 0 0;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .form-pricing-box .car-pricing-block {
  padding: 0;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .form-pricing-box .car-price-label {
  font-weight: 400;
  font-size: 14px;
  color: #121212;
  letter-spacing: -0.4px;
  margin-bottom: 2px;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .form-pricing-box .ginput_product_price {
  font-weight: 600;
  font-size: 30px;
  color: #121212;
  letter-spacing: -0.88px;
}
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .form-pricing-box .vat-line {
  font-weight: 600;
  font-size: 12px;
  color: #121212;
  letter-spacing: -0.37px;
}

#gform_1 .button,
#gform_4 .button {
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  line-height: 22px;
  border-radius: 28px;
}
#gform_1 #gform_page_1_1 .button,
#gform_4 #gform_page_1_1 .button {
  font-size: 15px;
  height: 54px;
  letter-spacing: 0.5px;
}
#gform_1 #gform_page_1_2 .button,
#gform_4 #gform_page_1_2 .button {
  font-size: 13px;
  height: 50px;
  letter-spacing: 0.47px;
}
#gform_1 #gform_page_1_2 .gform_next_button,
#gform_4 #gform_page_1_2 .gform_next_button {
  height: 0;
  width: 0;
}
#gform_1 #gform_page_1_3 .flight-details h3,
#gform_4 #gform_page_1_3 .flight-details h3 {
  font-weight: 500;
  font-size: 22px;
  color: #121212;
  letter-spacing: 0.4px;
  line-height: 30px;
  text-align: left;
  margin-bottom: 6px;
}
#gform_1 #gform_page_1_3 .flight-details p,
#gform_4 #gform_page_1_3 .flight-details p {
  font-weight: 400;
  font-size: 13px;
  color: #121212;
  letter-spacing: -0.22px;
  line-height: 20px;
}
#gform_1 #gform_page_1_2 .gform_page_footer:before, #gform_1 #gform_page_1_2 .gform_page_footer:after,
#gform_1 #gform_page_1_3 .gform_page_footer:before,
#gform_1 #gform_page_1_3 .gform_page_footer:after,
#gform_1 #gform_page_1_4 .gform_page_footer:before,
#gform_1 #gform_page_1_4 .gform_page_footer:after,
#gform_4 #gform_page_1_2 .gform_page_footer:before,
#gform_4 #gform_page_1_2 .gform_page_footer:after,
#gform_4 #gform_page_1_3 .gform_page_footer:before,
#gform_4 #gform_page_1_3 .gform_page_footer:after,
#gform_4 #gform_page_1_4 .gform_page_footer:before,
#gform_4 #gform_page_1_4 .gform_page_footer:after {
  display: none;
}
#gform_1 #gform_page_1_2 .gform_page_footer input.button.gform_previous_button,
#gform_1 #gform_page_1_3 .gform_page_footer input.button.gform_previous_button,
#gform_1 #gform_page_1_4 .gform_page_footer input.button.gform_previous_button,
#gform_4 #gform_page_1_2 .gform_page_footer input.button.gform_previous_button,
#gform_4 #gform_page_1_3 .gform_page_footer input.button.gform_previous_button,
#gform_4 #gform_page_1_4 .gform_page_footer input.button.gform_previous_button {
  background-color: rgba(38, 137, 238, 0.12);
  border: 1px solid transparent;
  color: #2689EE;
  width: 100%;
}
#gform_1 #gform_page_1_2 .gform_page_footer input.button.gform_previous_button:hover,
#gform_1 #gform_page_1_3 .gform_page_footer input.button.gform_previous_button:hover,
#gform_1 #gform_page_1_4 .gform_page_footer input.button.gform_previous_button:hover,
#gform_4 #gform_page_1_2 .gform_page_footer input.button.gform_previous_button:hover,
#gform_4 #gform_page_1_3 .gform_page_footer input.button.gform_previous_button:hover,
#gform_4 #gform_page_1_4 .gform_page_footer input.button.gform_previous_button:hover {
  color: #fff;
  background-color: #2689EE;
  border: 1px solid #2689EE;
}
#gform_1 input[type=text],
#gform_1 input[type=password],
#gform_1 input[type=datetime],
#gform_1 input[type=datetime-local],
#gform_1 input[type=date],
#gform_1 input[type=month],
#gform_1 input[type=time],
#gform_1 input[type=week],
#gform_1 input[type=number],
#gform_1 input[type=email],
#gform_1 input[type=url],
#gform_1 input[type=search],
#gform_1 input[type=tel],
#gform_1 input[type=color],
#gform_1 input[type=checkbox],
#gform_1 select,
#gform_1 textarea,
#gform_4 input[type=text],
#gform_4 input[type=password],
#gform_4 input[type=datetime],
#gform_4 input[type=datetime-local],
#gform_4 input[type=date],
#gform_4 input[type=month],
#gform_4 input[type=time],
#gform_4 input[type=week],
#gform_4 input[type=number],
#gform_4 input[type=email],
#gform_4 input[type=url],
#gform_4 input[type=search],
#gform_4 input[type=tel],
#gform_4 input[type=color],
#gform_4 input[type=checkbox],
#gform_4 select,
#gform_4 textarea {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}

#bookingform_contactus {
  margin-top: 50px;
  background-color: #E7E7E7;
  padding: 16px;
  width: 100%;
  border-radius: 4px;
}
#bookingform_contactus a {
  color: #2689EE;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  color: #2689EE;
  letter-spacing: -0.4px;
  line-height: 18px;
  transition: all 0.3s;
}
#bookingform_contactus a:before, #bookingform_contactus a:after {
  content: "";
  display: inline-block;
  position: relative;
  background-color: #2689EE;
  transition: all 0.3s;
}
#bookingform_contactus a:before {
  width: 21px;
  height: 16px;
  -webkit-mask-image: url("../images/booking-form-contact-us-before.svg");
  mask-image: url("../images/booking-form-contact-us-before.svg");
  -webkit-mask-size: 21px 16px;
  mask-size: 21px 16px;
  margin-bottom: -3px;
  margin-right: 8px;
}
#bookingform_contactus a:after {
  width: 9px;
  height: 9px;
  -webkit-mask-image: url("../images/booking-form-contact-us-after.svg");
  mask-image: url("../images/booking-form-contact-us-after.svg");
  -webkit-mask-size: 9px 9px;
  mask-size: 9px 9px;
  margin-left: 6px;
}
#bookingform_contactus a:hover {
  color: #121212;
}
#bookingform_contactus a:hover:before, #bookingform_contactus a:hover:after {
  background-color: #121212;
}
#bookingform_contactus p {
  margin: 0;
}

.intl-tel-input .country-list {
  z-index: 1000 !important;
}

@media only screen and (min-width: 641px) {
  .gform_wrapper textarea.medium {
    height: 100px !important;
  }
}
.content .calculating-journey p {
  margin-bottom: 0;
  height: 0;
}

.testimonial-slider-mobile-only {
  margin-top: 40px;
  padding-bottom: 40px;
}

.faq-item {
  padding-bottom: 0;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 26px;
  max-height: 50px;
  overflow: hidden;
  text-align: left;
  padding-right: 40px;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
.faq-item:before {
  position: absolute;
  top: 0;
  right: 0;
  height: 38px;
  width: 38px;
  border: 1px solid #121212;
  border-radius: 20px;
  content: "";
  background-image: url("../images/arrow-black-right.svg");
  background-size: 12px 10px;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}
.faq-item.open {
  padding-bottom: 30px;
  margin-bottom: 26px;
  max-height: 1000px;
}
.faq-item.open:before {
  background-image: url("../images/arrow-white-right.svg");
  transform: rotate(-90deg);
  background-color: #121212;
}
.faq-item .faq-question {
  padding-bottom: 20px;
  text-align: left;
  padding-top: 2px;
}
.faq-item .faq-answer p {
  margin-bottom: 0;
}

.column-content {
  text-align: left;
}

.content-video .row > div,
.column-content .row > div {
  margin-bottom: 30px;
}

.background-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.background-video-wrap .vjs-default-skin {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 200%;
}

.icons-container .icon {
  margin-bottom: 30px;
}
.icons-container .icon-image {
  max-width: 64px;
  max-height: 64px;
  margin: 0 auto 25px;
}
.icons-container .icon-heading {
  margin-bottom: 10px;
}
.icons-container .icon-content {
  margin-bottom: 35px;
}

.left.button {
  text-align: left;
}

.includes-form .phone-numbers a {
  color: #fff;
}

#gform_4 .gform_heading {
  margin: 0;
}
#gform_4 .gform_heading .gform_description {
  margin: 0;
}

#ic-mobile-datepicker {
  min-width: 98%;
  padding: 0 14px !important;
  background: #F0F2F8 !important;
  -webkit-appearance: none !important;
  line-height: 50px;
}

.home .video .video-js {
  width: 100%;
  height: 240px;
  object-fit: cover;
  max-width: 200%;
}

.calculating-journey {
  color: #121212 !important;
  overflow: hidden;
  height: 0;
}
.calculating-journey p {
  opacity: 1;
}

.category-blog section.entry-content h2,
.category-blog section.entry-content h3,
.category-blog section.entry-content h4,
.category-blog section.entry-content h5 {
  padding-top: 20px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.category-blog section.entry-content h2:after,
.category-blog section.entry-content h3:after,
.category-blog section.entry-content h4:after,
.category-blog section.entry-content h5:after {
  width: 40px;
  height: 1px;
  background-color: #121212;
  left: 50%;
  margin: 0 -20px;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
}

.outline {
  border: 1px solid #790000 !important;
}

.geoip {
  display: none !important;
}

.geoip-country-GB .geoip-show-GB {
  display: block !important;
}

.geoip-country-DE .geoip-show-DE {
  display: block !important;
}

.preloaderNav {
  background-color: #121212;
}

.preloaderNotificationBar {
  z-index: 102;
}

#preloader {
  padding: 130px;
  height: 100vh;
  position: fixed;
  background-color: #fff;
  z-index: 101;
  top: 0;
  width: 100vw;
  transition: all 0.3s;
}
#preloader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

article.post-19 {
  opacity: 0;
}

.preloader-home {
  padding: 125px;
}

#bookingform_mobilenumbers {
  margin-bottom: -30px;
}

/******************************************************************
TERMS AND CONDITIONS PAGE
******************************************************************/
.page-id-20066 .content {
  padding: 30px 50px;
}

.page-id-20066 .content li {
  margin: 12px 0;
}

.booking-cta {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.booking-cta.booking-form-wrapper {
  min-height: 170px;
}
.booking-cta h3 {
  color: #121212;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.64px;
  line-height: 22px;
  margin-bottom: 20px;
}
.booking-cta .button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.booking-cta .button-wrapper .btn {
  padding: 13px 20px;
  width: auto;
  min-width: 40%;
}

.content-youtube .image-full-width.video {
  position: relative;
  margin-top: 30px;
}
.content-youtube .image-full-width.video .video-poster {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  min-height: 315px;
  max-width: 560px;
  z-index: 10;
  background-size: cover;
  background-position: center;
}
.content-youtube .image-full-width.video .video-poster.hide {
  display: none;
}
.content-youtube .image-full-width.video .video-poster:before, .content-youtube .image-full-width.video .video-poster:after {
  content: "";
  position: absolute;
  display: block;
  cursor: pointer;
}
.content-youtube .image-full-width.video .video-poster:before {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.content-youtube .image-full-width.video .video-poster:after {
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url("../images/play-button.png");
  mask-image: url("../images/play-button.png");
  -webkit-mask-size: 50px 50px;
  mask-size: 50px 50px;
  background-color: white;
}
.content-youtube .image-full-width.video .video-poster:hover:before {
  background-color: rgba(0, 0, 0, 0.7);
}
.content-youtube .image-full-width.video .video-poster:hover:after {
  background-color: rgba(255, 255, 255, 0.8);
}
.content-youtube iframe {
  max-width: 100%;
}

body > article {
  position: relative;
  z-index: 100;
}

.single-post.light-theme {
  background-color: #F7F7F7;
}
.single-post.dark-theme {
  background-color: #212121;
}
.single-post .flexi-content .h2 {
  text-align: left;
}
.single-post .flexi-content.light-theme {
  background-color: #F7F7F7;
}
.single-post .flexi-content.dark-theme {
  background-color: #212121;
}
.single-post .flexi-content.dark-theme h2,
.single-post .flexi-content.dark-theme .h2,
.single-post .flexi-content.dark-theme h3,
.single-post .flexi-content.dark-theme h4,
.single-post .flexi-content.dark-theme h5,
.single-post .flexi-content.dark-theme h6,
.single-post .flexi-content.dark-theme p,
.single-post .flexi-content.dark-theme li,
.single-post .flexi-content.dark-theme .blog-sub-heading,
.single-post .flexi-content.dark-theme .blog-intro-text,
.single-post .flexi-content.dark-theme .quote,
.single-post .flexi-content.dark-theme .quote-from,
.single-post .flexi-content.dark-theme .quote-from-company {
  color: #fff !important;
}
.single-post .flexi-content.dark-theme h2 .slide-lower,
.single-post .flexi-content.dark-theme .h2 .slide-lower,
.single-post .flexi-content.dark-theme h3 .slide-lower,
.single-post .flexi-content.dark-theme h4 .slide-lower,
.single-post .flexi-content.dark-theme h5 .slide-lower,
.single-post .flexi-content.dark-theme h6 .slide-lower,
.single-post .flexi-content.dark-theme p .slide-lower,
.single-post .flexi-content.dark-theme li .slide-lower,
.single-post .flexi-content.dark-theme .blog-sub-heading .slide-lower,
.single-post .flexi-content.dark-theme .blog-intro-text .slide-lower,
.single-post .flexi-content.dark-theme .quote .slide-lower,
.single-post .flexi-content.dark-theme .quote-from .slide-lower,
.single-post .flexi-content.dark-theme .quote-from-company .slide-lower {
  color: #121212 !important;
}
.single-post .flexi-content.dark-theme a {
  color: #fff;
}
.single-post .flexi-content.dark-theme a:hover {
  color: #cccccc;
}
.single-post .flexi-content.dark-theme li:before {
  color: #fff;
}
.single-post .flexi-content.dark-theme .slick-active button {
  background: #696969;
}
.single-post .flexi-content.dark-theme .slick-dots li button:hover {
  background: #696969;
}
.single-post .flexi-content.dark-theme .slick-arrow {
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url("../images/arrow-black-left.svg");
  mask-image: url("../images/arrow-black-left.svg");
  -webkit-mask-size: 12px 10px;
  mask-size: 12px 10px;
}
.single-post .flexi-content.dark-theme .slick-arrow.slick-next {
  -webkit-mask-image: url("../images/arrow-black-right.svg");
  mask-image: url("../images/arrow-black-right.svg");
}
.single-post .flexi-content.dark-theme .section-header:after {
  background-color: #fff;
}
.single-post .flexi-content.dark-theme .image-caption,
.single-post .flexi-content.dark-theme .video-caption {
  color: #959595;
}
.single-post .flexi-content .content {
  padding-top: 30px;
  padding-bottom: 0;
  background-color: transparent;
  text-align: left;
}
.single-post .flexi-content .content h2,
.single-post .flexi-content .content h3,
.single-post .flexi-content .content h4,
.single-post .flexi-content .content h5,
.single-post .flexi-content .content h6 {
  text-align: left;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}
.single-post .flexi-content .content.blog-intro h2 {
  margin-bottom: 4px;
}
.single-post .flexi-content .content .button.space-top {
  margin-top: 30px;
}
.single-post .flexi-content .content .button a {
  min-width: 204px;
  float: left;
  clear: both;
  padding-left: 40px;
  padding-right: 40px;
}
.single-post .flexi-content .content .button a + a {
  margin-top: 10px;
}
.single-post .flexi-content .content.block-quote {
  padding-top: 40px;
  padding-bottom: 10px;
}
.single-post .flexi-content .content.block-quote .quote {
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  color: #121212;
  letter-spacing: -0.4px;
  line-height: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 10px;
}
.single-post .flexi-content .content.block-quote .quote-from,
.single-post .flexi-content .content.block-quote .quote-from-company {
  font-size: 14px;
  color: #121212;
  letter-spacing: -0.4px;
  line-height: 27px;
  display: block;
  float: left;
}
.single-post .flexi-content .content.block-quote .quote-from {
  font-weight: 600;
}
.single-post .flexi-content .content.block-quote .quote-from-company {
  position: relative;
}
.single-post .flexi-content .content.block-quote .quote-from-company:before {
  content: "|";
  position: relative;
  display: block;
  float: left;
  margin: 0 5px;
}
.single-post .flexi-content .content .image-full-width.video {
  margin-bottom: 0;
}
.single-post .flexi-content .content-carousel {
  padding-top: 22px;
}
.single-post .flexi-content .image-grid-wrapper {
  padding: 0 8px;
}
.single-post .flexi-content .full-width-image img {
  display: block;
}
.single-post .flexi-content .image-caption,
.single-post .flexi-content .video-caption {
  font-weight: 500;
  font-size: 12px;
  color: #696969;
  letter-spacing: -0.4px;
  line-height: 16px;
  margin-top: 8px;
}
.single-post .flexi-content .vjs-poster {
  background-size: cover;
}
.single-post .content.latest-posts {
  padding-top: 60px;
  padding-bottom: 100px;
}
.single-post .content.latest-posts.light-theme {
  background-color: #f7f7f7;
}
.single-post .content.latest-posts.dark-theme {
  background-color: #212121;
}
.single-post .content.latest-posts.dark-theme h4 {
  color: #fff;
}
.single-post .content.latest-posts.dark-theme .slide-lower .blog-post-date {
  color: #959595;
}
.single-post .content.latest-posts.dark-theme .slide-lower .entry-title a {
  color: #121212;
}
.single-post .content.latest-posts.dark-theme .slide-lower .blog-post-excerpt p {
  color: #696969;
}
.single-post .content.latest-posts .slick-slide {
  margin: 0 15px;
}
.single-post .content.latest-posts .slick-list {
  margin: 0 -15px;
}
.single-post .content.latest-posts .image-wrapper {
  height: 200px;
}
.single-post .content.latest-posts .image-wrapper img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.single-post .content.latest-posts .slide-lower {
  padding: 20px;
}
.single-post .content.latest-posts .slide-lower .blog-post-date {
  padding: 0 0 10px;
}
.single-post .content.latest-posts .slide-lower h5 {
  padding: 0 0 8px;
}
.single-post .content.latest-posts .slide-lower .blog-post-excerpt {
  padding: 0 0 47px;
  color: #696969;
}
.single-post .content.latest-posts .slide-lower .text-link {
  left: 20px;
}
.single-post .content.latest-posts .slide-lower .text-link:after {
  top: 6px;
}
.single-post .content.latest-posts .slick-dots {
  bottom: -40px;
}
.single-post .content.latest-posts .slick-arrow {
  bottom: -38px;
}
.single-post .content.latest-posts .slick-arrow.slick-prev {
  margin-left: -124px;
}
.single-post .content.latest-posts .slick-arrow.slick-next {
  margin-right: -124px;
}

.single-post .flexi-content .content.blog-intro {
  padding-top: 0;
}

.blog-intro {
  margin-top: -50px;
}
.blog-intro .menu-backer {
  height: 64px;
  background-color: #121212;
  margin-bottom: 30px;
}
.blog-intro .post-date {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #959595;
  letter-spacing: -0.4px;
  line-height: 27px;
  margin-bottom: 10px;
}
.blog-intro .section-header {
  margin-bottom: 20px;
  max-width: 100%;
}
.blog-intro .section-header:after {
  left: 0;
  margin: 0;
}
.blog-intro .blog-sub-heading {
  font-size: 16px;
  color: #121212;
  letter-spacing: -0.4px;
  line-height: 22px;
}
.blog-intro .blog-intro-text {
  font-weight: 600;
  font-size: 16px;
  color: #121212;
  letter-spacing: -0.4px;
  line-height: 22px;
}

.pac-container {
  z-index: 10000 !important;
}

#gform_1 .ginput_container_radio li input[type=radio]:checked + label:before, #gform_1 .ginput_container_radio li input[type=radio]:checked + label:after,
#gform_4 .ginput_container_radio li input[type=radio]:checked + label:before,
#gform_4 .ginput_container_radio li input[type=radio]:checked + label:after {
  width: 24px;
  height: 10px;
  left: 50%;
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, 0);
}
#gform_1 .ginput_container_radio li input[type=radio]:checked + label:before,
#gform_4 .ginput_container_radio li input[type=radio]:checked + label:before {
  bottom: -10px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid #E6F2FD;
  z-index: 11;
}
#gform_1 .ginput_container_radio li input[type=radio]:checked + label:after,
#gform_4 .ginput_container_radio li input[type=radio]:checked + label:after {
  bottom: -12px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid #2680EE;
  z-index: 10;
}

.modal-lightbox {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(18, 18, 18, 0.9);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
}
.modal-lightbox.show {
  z-index: 10000;
  opacity: 1;
}
.modal-lightbox .lightbox-close {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/lightbox-close-icon.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.3s;
}
.modal-lightbox .lightbox-close:hover {
  opacity: 0.5;
}
.modal-lightbox .light-box-carousel {
  width: 90vw;
  max-width: 1077px;
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translate(-50%, 0);
}
.modal-lightbox .light-box-carousel img {
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-lightbox .light-box-carousel .slick-dots {
  bottom: -42px;
}
.modal-lightbox .light-box-carousel .slick-dots li button {
  background-color: #696969;
}
.modal-lightbox .light-box-carousel .slick-dots li.slick-active button {
  background-color: #fff;
}
.modal-lightbox .light-box-carousel .slick-arrow {
  bottom: -42px;
  width: 19px;
  height: 16px;
  background-size: 19px;
  background-image: url("../images/arrow-white-right.svg");
}
.modal-lightbox .light-box-carousel .slick-arrow.slick-prev {
  margin-left: -110px;
  transform: scale(-1);
}
.modal-lightbox .light-box-carousel .slick-arrow.slick-next {
  margin-right: -105px;
}

.hide-date-input {
  margin-top: 0 !important;
}
.hide-date-input .ginput_container,
.hide-date-input .gfield_label {
  height: 0;
  overflow: hidden;
}

.datepicker-time-labels {
  display: flex;
  gap: 20px;
}

.datepicker-time-labels div {
  flex-grow: 1;
  text-align: left;
}

div.flatpickr-calendar {
  padding: 26px 20px 30px;
  border-radius: 12px;
  border: 1px solid #2689ee;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.09);
  margin-top: -58px;
  max-width: 380px;
  width: 95%;
}
div.flatpickr-calendar.open {
  z-index: 999;
}
div.flatpickr-calendar .flatpickr-days {
  width: 336px;
}
div.flatpickr-calendar .flatpickr-day {
  margin: 0 5px;
  width: 38px;
  max-width: 38px;
  line-height: 38px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: #121212;
  letter-spacing: -0.4px;
  text-align: center;
}
div.flatpickr-calendar .flatpickr-day.prevMonthDay, div.flatpickr-calendar .flatpickr-day.nextMonthDay, div.flatpickr-calendar .flatpickr-day.flatpickr-disabled {
  color: #CFCFCF;
}
div.flatpickr-calendar .flatpickr-day.selected {
  color: #fff;
}
div.flatpickr-calendar .flatpickr-day.selected:hover {
  color: #fff;
  background-color: #2689EE;
  border-color: #fff;
}
div.flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
  color: #fff;
  border-color: #e6e6e6;
  background-color: #e6e6e6;
}
div.flatpickr-calendar .flatpickr-day:hover {
  color: #2689EE;
  border-color: #e6e6e6;
  background-color: #e6e6e6;
}
div.flatpickr-calendar .dayContainer {
  width: 336px;
  min-width: 336px;
  max-width: 336px;
}
div.flatpickr-calendar:before, div.flatpickr-calendar:after {
  display: none;
}
div.flatpickr-calendar .flatpickr-innerContainer {
  justify-content: center;
}
div.flatpickr-calendar .datepicker-title,
div.flatpickr-calendar .datepicker-time {
  font-weight: 600;
  font-size: 14px;
  color: #121212;
  letter-spacing: -0.23px;
  text-align: center;
  line-height: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #CFCFCF;
  margin-bottom: 20px;
}
div.flatpickr-calendar .datepicker-time {
  margin-top: 30px;
}
div.flatpickr-calendar .flatpickr-months {
  margin-bottom: 20px;
}
div.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
div.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  top: 77px;
  height: 38px;
  width: 38px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #121212;
  background-image: url("../images/arrow-black-right.svg");
  background-size: 12px 10px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
div.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover,
div.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover {
  opacity: 0.5;
}
div.flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg,
div.flatpickr-calendar .flatpickr-months .flatpickr-next-month svg {
  display: none;
}
div.flatpickr-calendar .flatpickr-months .flatpickr-prev-month {
  left: 20px;
  transform: rotate(180deg);
}
div.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  right: 20px;
}
div.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months,
div.flatpickr-calendar .flatpickr-current-month .numInputWrapper {
  width: 50%;
}
div.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months,
div.flatpickr-calendar .flatpickr-current-month .numInputWrapper,
div.flatpickr-calendar .flatpickr-current-month .numInputWrapper input {
  font-weight: 700;
  font-size: 18px;
  color: #121212;
  letter-spacing: -0.5px;
  line-height: 24px;
  appearance: initial;
  -webkit-appearance: initial;
  -moz-appearance: initial;
}
div.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months:hover,
div.flatpickr-calendar .flatpickr-current-month .numInputWrapper:hover,
div.flatpickr-calendar .flatpickr-current-month .numInputWrapper input:hover {
  background-color: transparent;
}
div.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
  text-align: right;
}
div.flatpickr-calendar.hasTime .flatpickr-time {
  height: 54px;
  max-height: 54px;
  border-width: 0px;
  margin-bottom: 20px;
}
div.flatpickr-calendar.hasTime .datepicker-time-labels {
  padding-bottom: 6px;
}
div.flatpickr-calendar.hasTime .datepicker-time-labels > div {
  font-weight: 600;
  font-size: 14px;
  color: #121212;
  letter-spacing: -0.23px;
  line-height: 14px;
}
div.flatpickr-calendar .flatpickr-time .flatpickr-time-separator {
  font-size: 0;
  padding: 5px;
}
div.flatpickr-calendar .flatpickr-time .numInputWrapper {
  height: 54px;
}
div.flatpickr-calendar .flatpickr-time .numInputWrapper input {
  border: 1px solid #696969;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 17px 14px 18px;
  height: 54px;
  max-height: 54px;
  font-weight: 400;
  font-size: 15px;
  color: #121212;
  letter-spacing: -0.46px;
  text-align: left;
}
div.flatpickr-calendar span.flatpickr-weekday {
  font-weight: 400;
  font-size: 13px;
  color: #121212;
  letter-spacing: -0.4px;
  text-align: center;
  line-height: 27px;
}
div.flatpickr-calendar .closeButtonWrapper button {
  width: 100%;
}

.int-phone.valid-msg, .int-phone.error-msg {
  top: 15px;
  right: 10px;
}
.int-phone.error-msg {
  right: 38px;
}

.flatpickr-time div.numInputWrapper input::-moz-number-spin-box {
  display: none !important;
}
.flatpickr-time div.numInputWrapper span {
  background-color: #2689ee;
  width: 27px;
}
.flatpickr-time div.numInputWrapper span.arrowUp:after, .flatpickr-time div.numInputWrapper span.arrowDown:after {
  right: 7px;
  height: 7px;
  width: 11px;
  border-width: 0;
  -webkit-mask-image: url("../images/dropdown-arrow.svg");
  mask-image: url("../images/dropdown-arrow.svg");
  -webkit-mask-size: 11px 7px;
  mask-size: 11px 7px;
  background-color: #fff;
}
.flatpickr-time div.numInputWrapper span.arrowUp:hover, .flatpickr-time div.numInputWrapper span.arrowDown:hover {
  background-color: #121212;
}
.flatpickr-time div.numInputWrapper span.arrowUp:after {
  top: 10px;
  transform: rotate(180deg);
}
.flatpickr-time div.numInputWrapper span.arrowDown:after {
  bottom: 9px;
  top: auto;
}

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  GENERAL STYLES
  ******************************************************************/
  .desktop {
    display: block !important;
  }

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

  .mobile {
    display: none !important;
  }

  .tablet {
    display: block !important;
  }

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

  .not-tablet {
    display: none !important;
  }

  p, ul {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.8;
  }

  /******************************************************************
  LINK STYLES
  ******************************************************************/
  a.text-link, a:visited.text-link {
    font-size: 13px;
    letter-spacing: -0.4px;
  }
  a.text-link.arrow:after, a:visited.text-link.arrow:after {
    top: 3px;
  }
  a.text-link.blue.black.arrow:after, a:visited.text-link.blue.black.arrow:after {
    margin-top: 0;
  }

  /******************************************************************
  BUTTON STYLES
  ******************************************************************/
  .btn {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  /******************************************************************
  H1, H2, H3, H4, H5 STYLES
  ******************************************************************/
  h1, .h1 {
    font-size: 62px;
    letter-spacing: 0.8px;
    line-height: 66px;
  }
  h1.h2, .h1.h2 {
    font-size: 36px;
    letter-spacing: 1.4px;
    line-height: 44px;
  }

  h2, .h2 {
    font-size: 36px;
    letter-spacing: 1.4px;
    line-height: 44px;
  }

  h3, .h3 {
    font-size: 30px;
    letter-spacing: 0.8px;
    line-height: 40px;
  }

  h4, .h4 {
    font-size: 22px;
    letter-spacing: 0.4px;
    line-height: 30px;
  }

  h5, .h5 {
    font-size: 22px;
    letter-spacing: 0.4px;
    line-height: 30px;
  }

  h6, .h6 {
    font-size: 18px;
    letter-spacing: 0.6px;
    line-height: 30px;
  }

  /******************************************************************
  CONTENT TEXT STYLES
  ******************************************************************/
  p {
    font-size: 17px;
    line-height: 30px;
  }
  p.intro-text {
    font-size: 24px;
    line-height: 36px;
  }
  p.testimonial-text {
    font-size: 18px;
    line-height: 32px;
  }
  p .p2 {
    font-size: 15px;
    line-height: 24px;
  }
  p.small {
    font-size: 15px;
  }

  li {
    font-size: 16px;
    line-height: 31px;
  }

  /******************************************************************
  SLICK LAYOUT
  ******************************************************************/
  .slick-dots li {
    width: 60px;
  }
  .slick-dots li button {
    width: 60px;
  }

  .testimonial-slider .slick-next,
.testimonial-slider .slick-prev {
    bottom: -37px;
  }
  .testimonial-slider .slick-next {
    margin-right: -130px;
  }
  .testimonial-slider .slick-prev {
    margin-left: -130px;
  }

  div.gform_wrapper input[type=text],
div.gform_wrapper input[type=password],
div.gform_wrapper input[type=datetime],
div.gform_wrapper input[type=datetime-local],
div.gform_wrapper input[type=date],
div.gform_wrapper input[type=month],
div.gform_wrapper input[type=time],
div.gform_wrapper input[type=week],
div.gform_wrapper input[type=number],
div.gform_wrapper input[type=email],
div.gform_wrapper input[type=url],
div.gform_wrapper input[type=search],
div.gform_wrapper input[type=tel],
div.gform_wrapper input[type=color],
div.gform_wrapper select,
div.gform_wrapper textarea,
div.gform_wrapper .field {
    font-size: 15px;
    letter-spacing: -0.4px;
  }

  /******************************************************************
  LAYOUT & GRID STYLES
  ******************************************************************/
  .wrap {
    width: 95%;
  }

  /******************************************************************
  HEADER STYLES
  ******************************************************************/
  /******************************************************************
  HEADER - 768 UP
  ******************************************************************/
  /******************************************************************
  NAVIGATION
  ******************************************************************/
  /******************************************************************
  NAVIGATION - 768 UP
  ******************************************************************/
  nav ul.nav.primary-nav, nav ul.nav.footer-nav {
    font-size: 13px;
  }
  nav ul.nav.primary-nav {
    font-weight: 500;
  }
  nav ul.nav.footer-nav {
    line-height: 32px;
  }

  /******************************************************************
  FOOTER
  ******************************************************************/
  /******************************************************************
  FOOTER - 768 UP
  ******************************************************************/
  /******************************************************************
  INTRO
  ******************************************************************/
  /******************************************************************
  INTRO - 768 UP
  ******************************************************************/
  .intro {
    background-size: cover;
    padding-bottom: 50px;
  }
  .intro.intro-home {
    background-position: center top;
    background-size: auto 320px;
  }
  .intro.intro-home .wrap {
    width: 100%;
  }
  .intro h1 {
    margin-bottom: 10px;
  }
  .intro h1.heading-large {
    font-size: 82px;
    line-height: 84px;
  }
  .intro h1.heading-extra-large {
    font-size: 110px;
    line-height: 84px;
  }
  .intro h1,
.intro h4 {
    max-width: 677px;
  }
  .intro h4 {
    padding-bottom: 30px;
  }
  .intro .gradient-overlay {
    background-image: none;
  }
  .intro .booking-form-wrapper {
    max-width: 500px;
    margin: auto;
    padding: 30px;
  }
  .intro .booking-form-wrapper li.gfield#field_4_106 h3 {
    text-align: center;
  }
  .intro.alternate-content-style, .intro.alternate-content-style.regular, .intro.alternate-content-style.extended {
    padding-top: 0;
    padding-bottom: 600px;
    margin-bottom: 111px;
    background-size: cover;
    overflow: visible;
  }
  .intro.alternate-content-style .intro-content-wrapper, .intro.alternate-content-style.regular .intro-content-wrapper, .intro.alternate-content-style.extended .intro-content-wrapper {
    position: absolute;
    margin: 0;
    bottom: -670px;
    max-width: 720px;
    padding: 40px 40px 54px;
    z-index: 10;
  }
  .intro.alternate-content-style .intro-content-wrapper h1, .intro.alternate-content-style.regular .intro-content-wrapper h1, .intro.alternate-content-style.extended .intro-content-wrapper h1 {
    font-size: 48px;
    line-height: 52px;
    margin-bottom: 0;
  }
  .intro.alternate-content-style .intro-content-wrapper h4, .intro.alternate-content-style.regular .intro-content-wrapper h4, .intro.alternate-content-style.extended .intro-content-wrapper h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .intro.alternate-content-style .intro-content-wrapper .button, .intro.alternate-content-style.regular .intro-content-wrapper .button, .intro.alternate-content-style.extended .intro-content-wrapper .button {
    padding-top: 30px;
  }
  .intro.alternate-content-style.black-background, .intro.alternate-content-style.regular.black-background, .intro.alternate-content-style.extended.black-background {
    position: relative;
  }
  .intro.alternate-content-style.black-background:after, .intro.alternate-content-style.regular.black-background:after, .intro.alternate-content-style.extended.black-background:after {
    content: "";
    background-color: #121212;
    position: absolute;
    bottom: -111px;
    height: 111px;
    z-index: 9;
    left: 0;
    right: 0;
    display: block;
  }

  .flexi-content .intro:not(:first-child) {
    margin-top: 100px !important;
  }

  .home .intro,
.single-cars .intro {
    background-size: cover;
    background-position: center top;
  }
  .home .intro .gradient-overlay,
.single-cars .intro .gradient-overlay {
    background-image: none;
  }

  .single-cars .intro .gradient-overlay {
    background-image: none;
  }

  .awards-image {
    max-width: 143px;
    margin-bottom: 30px;
  }

  article .intro {
    padding-top: 220px;
    padding-bottom: 280px;
  }
  article .intro.empty-intro {
    padding-top: 150px !important;
    padding-bottom: 50px !important;
  }
  article .intro.short {
    padding-bottom: 95px;
  }
  article .intro.extended {
    padding-bottom: 460px;
  }
  article .intro h1 {
    max-width: 100%;
  }

  /******************************************************************
  CONTENT
  ******************************************************************/
  /******************************************************************
  CONTENT - 768 UP
  ******************************************************************/
  /******************************************************************
  HOME CATEGORY LIST
  ******************************************************************/
  .home-cat-list .homecat-list-item p {
    font-size: 17px;
  }

  /******************************************************************
  PRODUCT ARCHIVE
  ******************************************************************/
  .sidebar {
    font-size: 13px;
  }
  .sidebar .widget {
    margin: 0 0 18px 10px;
    padding: 0 0 10px;
  }
  .sidebar .widget h4.widgettitle {
    padding: 0;
    font-size: 15px;
  }
  .sidebar .widget ul {
    margin-left: -10px;
  }

  .tax-product_cat .sidebar {
    padding: 0 12px;
    display: block;
    position: static;
    overflow: visible;
    background: none;
  }

  .woocommerce .woocommerce-ordering {
    margin: 0 0 23px;
    padding: 20px 0;
    float: none;
    border-bottom: 1px solid #D8D8D8;
  }
  .woocommerce .woocommerce-ordering select {
    width: 180px;
    height: auto;
    margin: 0;
    padding: 0 10px 0 0;
    float: left;
    border: none;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px !important;
  }
  .woocommerce ul.products[class*=columns-] {
    margin: 0 -12px;
  }
  .woocommerce ul.products[class*=columns-] li.product {
    width: 50%;
    margin-right: 0;
    margin-left: 0;
    padding: 0 12px;
  }
  .woocommerce ul.products[class*=columns-] li.product a h2.woocommerce-loop-product__title {
    font-size: 18px;
  }
  .woocommerce ul.products[class*=columns-] li.product a .price {
    font-size: 16px;
  }

  /******************************************************************
  TRUST PILOT
  ******************************************************************/
  .trust-pilot-wrap {
    width: 100%;
  }

  /******************************************************************
  GENERAL CONTENT STYLING
  ******************************************************************/
  .content .cars h5 {
    font-size: 22px;
  }
  .content .cars .car-pricing-block {
    padding: 12px 0 8px;
  }
  .content .cars .car-pricing-block .car-pricing-line {
    padding: 2px 0 4px;
  }
  .content.tall-block {
    background-size: 1030px;
  }
  .content.tall-block.content-top {
    background-position: center bottom;
    padding-bottom: 493px;
  }
  .content.tall-block.content-bottom {
    background-position: center top;
    padding-top: 493px;
  }
  .content .slide .slide-lower .service-excerpt p {
    font-size: 16px;
    line-height: 27px;
  }
  .content .content-carousel {
    padding-bottom: 75px;
  }
  .content .content-carousel .slick-list {
    max-width: 570px;
  }
  .content .content-carousel .slide-type-2 .image {
    max-height: 340px;
    padding: 0 20px;
  }
  .content .content-carousel .slick-center {
    transform: scale(1.15);
  }
  .content .content-carousel .slick-arrow.slick-prev {
    margin-left: -130px;
  }
  .content .content-carousel .slick-arrow.slick-next {
    margin-right: -130px;
  }
  .content .section-header.wider {
    max-width: 856px;
  }
  .content .section-content.wider {
    max-width: 856px;
  }
  .content .image-grid-large {
    width: 64%;
    display: inline-block;
    float: left;
    margin-right: 10px;
    overflow: hidden;
    height: 500px;
  }
  .content .image-grid-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .content .image-grid-small {
    width: 34%;
    float: left;
    margin-bottom: 10px;
    height: 245px;
  }
  .content .image-grid-small:last-child {
    margin-bottom: 0;
  }
  .content .image-grid-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 105%;
    display: block;
  }
  .content .image-grid-wrapper {
    vertical-align: top;
    overflow: hidden;
    max-height: 500px;
  }
  .content.feature p {
    font-size: 24px;
  }
  .content.feature .column-content p {
    font-size: 16px;
  }
  .content .grid-image {
    margin-top: 30px;
  }

  .car-pricing-line,
.feature-text,
.feature,
.chauffeur-sub-heading {
    font-size: 14px;
    line-height: 27px;
  }
  .car-pricing-line .car-price.large-price,
.feature-text .car-price.large-price,
.feature .car-price.large-price,
.chauffeur-sub-heading .car-price.large-price {
    font-size: 24px;
  }

  .service-heading,
.date,
.job-title,
.sub-heading {
    font-size: 18px;
    margin-top: 2px;
  }

  .service-excerpt {
    margin-bottom: 40px;
  }

  .testimonial {
    padding: 10px 0;
  }

  .post-type-archive-cars .content > .wrap {
    width: 100%;
  }
  .post-type-archive-cars main .section-header h2 {
    max-width: 75%;
  }
  .post-type-archive-cars .tall-block p {
    max-width: 533px;
    margin-left: auto;
    margin-right: auto;
  }

  .chauffeurs {
    margin: 0 auto 80px;
  }
  .chauffeurs .slide-lower {
    padding: 20px 20px 30px;
  }

  .highlights {
    padding: 0;
  }

  .left .button {
    text-align: left;
  }

  .button a + a {
    margin-top: 0;
    margin-left: 10px;
  }

  .highlight:before {
    top: 11px;
  }

  .page-template-page-booking-form #gform_page_1_1:before {
    font-size: 26px !important;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps {
    padding-top: 40px;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step_label {
    background-color: #EBF1F5;
    position: relative;
    z-index: 11;
    font-weight: 500;
    font-size: 15px;
    color: #959595;
    letter-spacing: 0.2px;
    line-height: 32px;
    padding-right: 8px;
    display: inline-block;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step_active .gf_step_label {
    color: #121212;
  }
  .page-template-page-booking-form #gform_1 .gf_step {
    height: 19px;
  }
  .page-template-page-booking-form #gform_1 .car-pricing-block button {
    width: auto;
    display: block;
  }
  .page-template-page-booking-form #gform_1 .box.normal-padding {
    padding: 20px 20px 0;
  }
  .page-template-page-booking-form #gform_1 #gform_fields_1_2 .box.normal-padding {
    padding: 20px 20px;
  }
  .page-template-page-booking-form #gform_1 #gform_fields_1_2 .box.normal-padding.form-pricing-box {
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .page-template-page-booking-form #gform_1 #gform_page_1_2 .gform_page_fields {
    max-width: 95%;
    margin: auto;
    padding: 0 20px;
  }
  .page-template-page-booking-form #gform_1 #gform_page_1_4 .gform_page_fields,
.page-template-page-booking-form #gform_1 #gform_page_1_4 .gform_page_footer {
    margin: 0 -5px;
  }
  .page-template-page-booking-form #gform_1 #gform_page_1_4 .gform_page_footer {
    width: 100vw;
  }
  .page-template-page-booking-form #gform_1 #gform_page_1_4 .gform_page_footer:before {
    bottom: 17px;
  }
  .page-template-page-booking-form #gform_1 #gform_page_1_4 .gform_page_footer:after {
    top: 48px;
  }
  .page-template-page-booking-form #gform_1 #gform_page_1_4 .top_label .ginput_card_expiration_container select {
    margin: 0 0 10px;
  }
  .page-template-page-booking-form #gform_1 #gform_page_1_4 .top_label .ginput_card_expiration_container label,
.page-template-page-booking-form #gform_1 #gform_page_1_4 .top_label .ginput_cardinfo_right label {
    margin-top: 8px !important;
  }
  .page-template-page-booking-form #gform_1 #gform_page_1_4 .top_label .ginput_cardinfo_right input {
    height: 50px;
    margin-top: 0;
    min-width: 150px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer input.button.gform_previous_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer input.button.gform_previous_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer input.button.gform_previous_button {
    width: auto;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .next-pseudo-wrapper,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .confirm-pseudo-wrapper,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .next-pseudo-wrapper,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper {
    text-align: right;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .next-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .next-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .confirm-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .confirm-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .next-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .next-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper .gform_button {
    width: auto;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer .previous-pseudo-wrapper {
    max-width: 95%;
    margin: 0 40px;
  }
  .page-template-page-booking-form #gform_1 .ginput_product_price {
    font-size: 24px;
    letter-spacing: 0.2px;
    line-height: 24px;
  }
  .page-template-page-booking-form .steps-header h1 {
    padding-bottom: 10px;
    max-width: 100%;
  }
  .page-template-page-booking-form .steps-header .desktop-break {
    display: block;
  }

  .form-page-2 div.gform_wrapper form#gform_1 .gform_body .car-features-block,
.form-page-2 div.gform_wrapper form#gform_1 .gform_body .highlights {
    border-width: 0px;
  }

  .gform_wrapper #gform_page_1_2 .gform_page_footer:after {
    top: 20px;
  }

  .slick-arrow.slick-prev {
    margin-left: -125px;
  }
  .slick-arrow.slick-next {
    margin-right: -125px;
  }

  .multirow .slick-arrow.slick-prev {
    margin-left: -125px;
  }
  .multirow .slick-arrow.slick-next {
    margin-right: -125px;
  }
  .multirow .slick-dots li {
    width: 40px;
  }
  .multirow .slick-dots li button {
    width: 40px;
  }

  .home .video .video-js {
    width: 100%;
    height: 390px;
    object-fit: cover;
    max-width: 200%;
  }

  #gform_page_1_1 .gform_page_footer {
    margin-top: 20px;
  }

  #gform_4 .ginput_container_radio li {
    width: 48.7% !important;
  }

  /******************************************************************
  BLOG
  ******************************************************************/
  article.category-blog {
    min-height: 480px;
  }
  article.category-blog .blog-post-date {
    font-size: 16px;
  }

  #post-19 {
    margin-top: 0;
  }

  #gform_submit_button_4,
#gform_submit_button_3 {
    font-size: 15px;
  }

  #gform_1 .ginput_container_radio label,
#gform_4 .ginput_container_radio label {
    font-size: 13px;
  }

  .single-post .flexi-content .content {
    padding-top: 40px;
  }
  .single-post .flexi-content .content .wrap {
    max-width: 856px;
  }
  .single-post .flexi-content .content.blog-intro h2 {
    margin-bottom: 2px;
  }
  .single-post .flexi-content .content.blog-intro .blog-sub-heading {
    font-size: 24px;
    line-height: 30px;
  }
  .single-post .flexi-content .content.blog-intro .section-header {
    padding-bottom: 30px;
    margin-bottom: 24px;
  }
  .single-post .flexi-content .content.blog-intro .blog-intro-text {
    font-size: 24px;
    letter-spacing: -0.6px;
    line-height: 34px;
  }
  .single-post .flexi-content .content .button a {
    clear: none;
  }
  .single-post .flexi-content .content .button a + a {
    margin-top: 0;
  }
  .single-post .flexi-content .content.block-quote {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .single-post .flexi-content .content.block-quote .quote {
    font-size: 24px;
    letter-spacing: -0.6px;
    line-height: 34px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .single-post .flexi-content .content.block-quote .quote-from,
.single-post .flexi-content .content.block-quote .quote-from-company {
    font-size: 14px;
    letter-spacing: -0.4px;
    line-height: 27px;
  }
  .single-post .flexi-content .image-caption {
    font-size: 13px;
    letter-spacing: -0.4px;
    line-height: 20px;
  }
  .single-post .flexi-content .intro + .content {
    padding-top: 80px;
  }
  .single-post .flexi-content .image-grid-wrapper {
    padding: 0 12px;
  }
  .single-post .flexi-content .video .video-js {
    margin-left: 0;
    margin-right: auto;
  }
  .single-post .flexi-content .content-carousel {
    padding-top: 32px;
    padding-bottom: 50px;
  }
  .single-post .content.latest-posts {
    padding-top: 120px;
  }
  .single-post .content.latest-posts .section-header {
    padding-bottom: 30px;
    margin-bottom: 50px;
  }
  .single-post .content.latest-posts .image-wrapper {
    height: 180px;
  }
  .single-post .content.latest-posts .slide-lower {
    padding: 20px 30px 30px;
  }
  .single-post .content.latest-posts .slide-lower .blog-post-date {
    padding-bottom: 6px;
    margin-bottom: 0px !important;
  }
  .single-post .content.latest-posts .slide-lower .entry-title {
    padding-bottom: 6px;
    margin-bottom: 0px !important;
  }
  .single-post .content.latest-posts .slide-lower .blog-post-excerpt {
    font-size: 16px;
    letter-spacing: -0.4px;
    line-height: 27px;
    padding-bottom: 18px;
  }
  .single-post .content.latest-posts .slide-lower .text-link {
    left: 30px;
    bottom: 30px;
  }

  .blog-intro .post-date {
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .page-template-page-booking-form #gform_1 #gform_page_1_2 ul#gform_fields_1_2 > li.gfield {
    border-radius: 8px;
    padding: 10px 20px 30px;
    border: 1px solid #DEDEDE;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.09);
    margin-top: 0;
    margin-bottom: 30px;
  }
  .page-template-page-booking-form #gform_1 .steps-header {
    float: right;
    width: calc( 100% - 80px );
    padding-left: 16px;
    margin-top: 6px;
  }
  .page-template-page-booking-form #gform_1 .steps-header .page-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
  }
  .page-template-page-booking-form #gform_1 .steps-header h4 {
    color: #959595;
    font-size: 14px;
    line-height: 20px;
  }
  .page-template-page-booking-form #gform_1 #step-number {
    display: none;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps {
    position: relative;
    height: 80px;
    width: 80px;
    float: left;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step {
    position: absolute;
    height: 40px;
    width: 40px;
    margin: 0;
    background-color: #CFCFCF;
    opacity: 1;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step.gf_step_active, .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step.gf_step_completed {
    background-color: #2667ee;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step .gf_step_label {
    display: none;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step .gf_step_number {
    position: absolute;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: #EBF1F5;
    text-align: left;
    line-height: 68px;
    padding-left: 16px;
    opacity: 0;
    z-index: 10;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    border-width: 0px;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step .gf_step_number:after {
    content: " of 4";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 84%;
    text-align: center;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step.gf_step_active .gf_step_number {
    opacity: 1;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step#gf_step_1_1 {
    top: 0;
    right: 0;
    border-radius: 0 100% 0 0;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step#gf_step_1_1 .gf_step_number {
    top: 6px;
    left: -34px;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step#gf_step_1_2 {
    bottom: 0;
    right: 0;
    border-radius: 0 0 100% 0;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step#gf_step_1_2 .gf_step_number {
    top: -34px;
    left: -34px;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step#gf_step_1_3 {
    bottom: 0;
    left: 0;
    border-radius: 0 0 0 100%;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step#gf_step_1_3 .gf_step_number {
    top: -34px;
    left: 6px;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step#gf_step_1_4 {
    top: 0;
    left: 0;
    border-radius: 100% 0 0 0;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step#gf_step_1_4 .gf_step_number {
    top: 6px;
    left: 6px;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step .gf_step_label {
    display: none;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1 {
    padding: 20px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1:before {
    text-align: left;
    margin-top: 0;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  GENERAL STYLES
  ******************************************************************/
  .tablet {
    display: none !important;
  }

  .not-tablet.desktop {
    display: block !important;
  }

  .not-tablet.desktop-inline {
    display: inline-block !important;
  }

  /******************************************************************
  LAYOUT & GRID STYLES
  ******************************************************************/
  .wrap {
    width: 990px;
    padding-right: 0;
    padding-left: 0;
  }
  .wrap.variable-width {
    width: 95%;
  }

  /******************************************************************
  HEADER STYLES
  ******************************************************************/
  /******************************************************************
  HEADER - 1030 UP
  ******************************************************************/
  /******************************************************************
  HEADER - 1030 UP
  ******************************************************************/
  .header {
    height: 138px;
    text-align: left;
  }
  .header a:hover {
    color: #aaa;
  }
  .header .header-top {
    height: 98px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    max-width: 1380px;
    margin: auto;
    padding: 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .header-top .wrap {
    position: relative;
    max-width: 100%;
  }
  .header .logo {
    width: 192px;
    margin: 25px auto 0;
    display: block;
    overflow: hidden;
    transition: all 0.3s;
  }
  .header .logo img {
    max-width: 192px;
    width: 192px;
    height: 52px;
  }
  .header .button-and-numbers {
    max-width: 190px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: -70px;
  }
  .header .button-and-numbers .phone-numbers a {
    display: block;
    text-align: left;
  }
  .header .button-and-numbers .phone-numbers a.uk {
    margin-bottom: 0;
  }
  .header .button-and-numbers .button {
    display: none;
  }
  .header .button {
    border-bottom: 0px solid transparent;
  }
  .header .button.desktop-inline {
    float: right;
    padding-bottom: 0;
    position: absolute;
    right: 0;
    top: -70px;
  }
  .header .header-contact {
    margin: 33px 0 0 50px;
    font-size: 14px;
  }
  .header .header-contact .header-contact-telephone,
.header .header-contact .header-contact-chat {
    height: 24px;
    display: inline-block;
    line-height: 24px;
  }
  .header .header-contact .header-contact-telephone {
    margin-right: 17px;
    padding-left: 25px;
    background: url(../images/icon-phone.html) 0 center no-repeat;
    -webkit-background-size: 14px;
    background-size: 14px;
  }
  .header .header-contact .header-contact-chat {
    padding-left: 32px;
    background: url(../images/icon-chat.html) 0 center no-repeat;
    -webkit-background-size: 22px;
    background-size: 22px;
  }
  .header .nav-wrap {
    margin: 0;
    display: block;
    position: inherit;
    clear: both;
    background: transparent;
    text-align: center;
    width: calc( 100% - 60px );
    z-index: 150;
  }
  .header .nav-wrap .wrap {
    position: relative;
    width: auto;
    max-width: 1380px;
  }
  .header .nav-wrap .wrap nav {
    margin-bottom: 0;
    height: 40px;
  }

  /******************************************************************
  STICKY HEADER
  ******************************************************************/
  body.header-sticky {
    padding-top: 138px;
  }
  body.header-sticky .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 30px;
  }
  body.header-sticky .header.with-banner-above {
    top: 52px;
  }
  body.header-sticky.scrolled .header {
    height: 124px;
  }
  body.header-sticky.scrolled .header .header-top {
    overflow: hidden;
    height: 84px;
  }
  body.header-sticky.scrolled .header .logo {
    margin-top: 16px;
    width: 51px;
  }
  body.header-sticky.scrolled .header .button-and-numbers,
body.header-sticky.scrolled .header .button.desktop-inline {
    margin-top: 6px;
  }

  /******************************************************************
  SEARCH FORM
  ******************************************************************/
  .searchform {
    width: 314px;
    margin-top: 26px;
  }
  .searchform input {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  .searchform input:active, .searchform input:focus {
    background: rgba(255, 255, 255, 0.4);
  }
  .searchform input::-webkit-input-placeholder {
    color: #fff;
  }
  .searchform input::-moz-placeholder {
    color: #fff;
  }
  .searchform input:-ms-input-placeholder {
    color: #fff;
  }
  .searchform input:-moz-placeholder {
    color: #fff;
  }
  .searchform button {
    background: url(../images/icon-search.html) 0 0 no-repeat;
    -webkit-background-size: 18px;
    background-size: 18px;
  }

  .notification-banner {
    padding: 21px 20px;
  }
  .notification-banner:before {
    top: 60px;
  }
  .notification-banner.open:after {
    height: 500px;
  }
  .notification-banner .hide-bar {
    top: 14px;
    border-width: 1px;
    font-weight: 400;
  }
  .notification-banner .banner-upper {
    max-width: 815px;
    margin: auto;
  }
  .notification-banner .notification-banner-image {
    max-width: 58px;
    max-height: 35px;
    margin-top: -11px;
    margin-bottom: -8px;
    margin-right: 17px;
  }
  .notification-banner .banner-title,
.notification-banner .banner-title a {
    font-size: 14px;
    letter-spacing: -0.4px;
  }
  .notification-banner .banner-title a.external-link,
.notification-banner .banner-title a a.external-link {
    width: 12px;
    height: 12px;
  }
  .notification-banner .banner-read-more {
    width: 85px;
    font-size: 14px;
    padding-right: 16px;
  }
  .notification-banner .banner-body-text {
    max-width: 855px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .notification-banner .banner-body-text p {
    margin-bottom: 24px;
  }
  .notification-banner .banner-body-text p:last-child {
    margin-bottom: 0;
  }
  .notification-banner.open .banner-body-text {
    margin-top: 22px;
  }

  /******************************************************************
  NAVIGATION
  ******************************************************************/
  /******************************************************************
  NAVIGATION - 1030 UP
  ******************************************************************/
  nav ul.nav.primary-nav, nav ul.nav.footer-nav {
    display: inline-block;
  }
  nav ul.nav.primary-nav li a, nav ul.nav.footer-nav li a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
  }
  nav ul.nav.primary-nav li {
    float: left;
    margin-right: 30px;
    padding: 0;
    position: relative;
  }
  nav ul.nav.primary-nav li a {
    line-height: 39px;
    border: none;
  }
  nav ul.nav.primary-nav li.menu-item-has-children > a {
    padding-right: 16px;
    position: relative;
    border-bottom: 1px solid transparent;
  }
  nav ul.nav.primary-nav li.menu-item-has-children > a:after {
    top: 42%;
    right: 0;
    display: block;
  }
  nav ul.nav.primary-nav li.menu-item-has-children > a:hover {
    border-bottom: 1px solid #fff;
  }
  nav ul.nav.primary-nav li.menu-item-has-children > a:hover:after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  nav ul.nav.primary-nav li.menu-item-has-children:hover > a {
    border-bottom: 1px solid #fff;
  }
  nav ul.nav.primary-nav li.menu-item-has-children:hover > a:after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  nav ul.nav.primary-nav li > ul.sub-menu {
    width: 250px;
    padding: 20px;
    position: absolute;
    top: 40px;
    right: auto;
    left: -20px;
    background: #111111;
    border: 0px solid transparent;
  }
  nav ul.nav.primary-nav li > ul.sub-menu.open {
    display: block;
  }
  nav ul.nav.primary-nav li > ul.sub-menu li {
    width: 100%;
  }
  nav ul.nav.primary-nav li:hover > .sub-menu-wrap {
    display: block;
  }
  nav ul.nav.footer-nav {
    margin: 0;
    width: 100%;
  }
  nav ul.nav.footer-nav li a {
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.4px;
  }
  nav ul.nav.footer-nav li .sub-menu {
    margin-top: 10px;
  }
  nav ul.nav.footer-nav li .sub-menu li a {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.4px;
    line-height: 32px;
    text-transform: none;
  }

  /******************************************************************
  FOOTER
  ******************************************************************/
  /******************************************************************
  FOOTER - 1030 UP
  ******************************************************************/
  .page-id-19 .footer {
    display: block;
  }

  .footer {
    padding: 0 30px;
  }
  .footer .footer-top .wrap,
.footer .footer-bottom .wrap {
    width: 100%;
    max-width: 1300px;
  }
  .footer h2 {
    margin: 0 0 5px;
    font-size: 15px;
  }
  .footer h3 {
    margin: 0 0 10px;
    height: auto;
    background: none;
    border-bottom: none;
    font-size: 16px;
    line-height: 1;
  }
  .footer p {
    font-size: 14px;
    font-weight: 300;
  }
  .footer a {
    font-size: 14px;
  }
  .footer a:hover {
    color: #aaa;
  }
  .footer .social-links {
    padding: 50px 24px 0;
  }
  .footer .social-links a {
    font-size: 0;
  }
  .footer .footer-top {
    padding: 60px 0;
  }
  .footer .footer-top form input[type=submit] {
    width: auto;
    min-width: 168px;
  }
  .footer .footer-top nav {
    display: block;
  }
  .footer .footer-top .footer-form {
    max-width: 581px;
    min-width: 381px;
    width: 100%;
    float: right;
    padding: 40px;
  }
  .footer .footer-top .footer-form h5 {
    font-size: 14px;
    line-height: 22px;
  }
  .footer .footer-top .footer-newsletter h3 {
    text-align: left;
  }
  .footer .footer-top .social {
    text-align: left;
  }
  .footer .footer-top .social a {
    margin: 0 24px 45px 0;
  }
  .footer .footer-top .footer-logo {
    padding-bottom: 60px;
  }
  .footer .footer-top .logo img {
    max-width: 185px;
    margin-top: 1px;
    margin-left: 12px;
    float: left;
  }
  .footer .footer-top .phone-numbers {
    padding: 16px 0 12px;
    float: right;
  }
  .footer .footer-top .phone-numbers span {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.2px;
    line-height: 22px;
    padding-right: 20px;
    text-transform: uppercase;
  }
  .footer .footer-bottom .copyright {
    float: left;
    font-size: 13px;
    line-height: 32px;
    text-align: left;
  }
  .footer .footer-bottom .footer-links {
    float: right;
  }
  .footer .footer-bottom .footer-links li {
    margin-left: 30px;
    margin-right: 0;
  }
  .footer .footer-bottom .footer-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 32px;
  }
  .footer .footer-bottom img {
    vertical-align: middle;
  }

  /******************************************************************
  INTRO
  ******************************************************************/
  /******************************************************************
  INTRO - 1030 UP
  ******************************************************************/
  .intro {
    padding-top: 258px;
    margin-top: -150px;
    background-image: linear-gradient(180deg, #121212 0%, rgba(18, 18, 18, 0) 22%);
  }
  .intro.intro-carousel {
    height: 600px;
  }
  .intro.intro-carousel .slide {
    height: 600px;
  }
  .intro.includes-notification-banner {
    margin-top: -138px;
  }
  .intro .booking-form-wrapper {
    margin: 0 0 0 auto;
  }
  .intro .intro-content {
    right: 0;
    left: 0;
  }
  .intro .intro-content .intro-sub-title {
    font-size: 25px;
  }
  .intro .intro-content ul {
    display: block;
  }
  .intro .intro-content ul li {
    margin: 0 0 10px;
    padding: 0 0 0 25px;
    background: url(../images/icon-tick.html) 0 center no-repeat;
    -webkit-background-size: 16px;
    background-size: 16px;
    font-size: 15px;
    font-weight: 400;
  }
  .intro h1 {
    padding-top: 40px;
  }
  .intro.extended {
    padding-top: 218px;
    padding-bottom: 268px;
  }
  .intro.blank-section {
    padding-top: 500px;
  }
  .intro.blank-section.extended {
    padding-top: 650px;
  }
  .intro.alternate-content-style .intro-content-wrapper h1, .intro.alternate-content-style.regular .intro-content-wrapper h1, .intro.alternate-content-style.extended .intro-content-wrapper h1 {
    padding-top: 0;
    padding-bottom: 12px;
  }

  article .intro .button {
    text-align: left;
  }

  .page-id-36482 .intro {
    margin-top: 0 !important;
  }
  .page-id-36482 .intro:first-of-type {
    margin-top: -138px !important;
  }

  .post-type-archive .intro {
    padding: 260px 0 238px;
  }
  .post-type-archive .intro.extended {
    padding: 300px 0 450px;
  }
  .post-type-archive .intro h1 {
    padding-top: 0;
  }
  .post-type-archive .intro .wrap,
.post-type-archive .intro h4 {
    padding-bottom: 0;
  }

  body.header-sticky .intro.full-screen {
    margin-top: -150px;
  }

  /******************************************************************
  CONTENT
  ******************************************************************/
  /******************************************************************
  CONTENT - 1030UP
  ******************************************************************/
  .wrap.fixed {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /******************************************************************
  CONTENT SECTIONS
  ******************************************************************/
  .full-width .content-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .full-width .content-section.boxed {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .fixed .content-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .content-section.blockquote {
    margin-left: -5%;
  }
  .content-section.faqs-wrap ul.faqs {
    margin: 0 0 40px;
  }
  .content-section.faqs-wrap ul.faqs li h3 {
    padding: 20px 40px 20px 0;
    font-size: 20px;
  }
  .content-section.faqs-wrap ul.faqs li .answer {
    padding: 0 0 20px;
  }
  .content-section.faqs-wrap ul.faqs li .answer p {
    font-size: 16px;
  }
  .content-section.cta-wrap .cta {
    margin-bottom: 24px;
    padding: 80px 30px;
    position: relative;
    bottom: 0;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-align: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .content-section.cta-wrap .cta:hover {
    bottom: 5px;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  }
  .content-section.cta-wrap .cta h2 {
    font-size: 30px;
  }
  .content-section.cta-wrap .cta p {
    font-size: 20px;
  }
  .content-section.cta-wrap .cta.cta-image {
    color: #fff;
  }

  .content-section-alternating {
    margin: 0;
    padding: 60px 0;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
  .content-section-alternating h2 {
    font-size: 30px;
  }
  .content-section-alternating p {
    font-size: 17px;
  }

  .box {
    padding: 70px 30px 90px;
  }
  .box h2 {
    margin: 0 0 30px;
    font-size: 48px;
  }
  .box h3 {
    font-size: 30px;
  }
  .box img.icon {
    width: 33px;
  }
  .box.minimal-padding {
    padding: 40px 30px 30px;
  }

  /******************************************************************
  LATEST NEWS
  ******************************************************************/
  .latest-news {
    margin: 50px 0 0;
  }
  .latest-news .box {
    padding: 30px 30px 50px;
  }
  .latest-news .box p {
    font-size: 15px;
  }

  a.read-more {
    height: 40px;
    font-size: 11px;
    line-height: 40px;
  }

  /******************************************************************
  CONTACT CONTENT
  ******************************************************************/
  .contact-section {
    margin-top: 30px;
  }

  .contact-details-wrap {
    margin-bottom: 0;
  }

  ul.contact-pub-nav li a {
    font-size: 11px;
    line-height: 50px;
  }

  .map {
    height: 600px;
  }

  /******************************************************************
  BLOG CONTENT
  ******************************************************************/
  .blog .category-subscription,
.category .category-subscription {
    margin-bottom: 50px;
  }
  .blog .type-post,
.category .type-post {
    margin: 0 8px 55px 8px;
  }
  .blog .type-post header,
.category .type-post header {
    margin-bottom: 20px;
  }
  .blog .type-post header h2,
.category .type-post header h2 {
    font-size: 18px;
  }
  .blog .type-post footer a,
.category .type-post footer a {
    font-size: 16px;
  }

  .meta {
    font-size: 15px;
  }

  .pagination ul {
    font-size: 17px;
  }

  /******************************************************************
  SINGLE BLOG CONTENT
  ******************************************************************/
  .single-post img.wp-post-image {
    max-width: none;
    margin: 0 -50px 25px;
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .single-post h1 {
    margin-bottom: 20px;
  }
  .single-post p.meta {
    margin: 0 0 10px;
  }
  .single-post footer {
    margin-top: 50px;
  }
  .single-post .related-stories .wrap {
    padding-top: 60px;
  }
  .single-post .related-stories .wrap .blog img {
    margin: 0 0 20px;
  }
  .single-post .content.custom-three-boxes .slide .image.oversized {
    max-height: 250px;
  }
  .single-post .content.custom-three-boxes .slide .service-excerpt {
    margin-bottom: 15px;
  }
  .single-post .content.custom-three-boxes .slide p {
    margin-bottom: 0;
  }

  .entry-content img.alignnone {
    max-width: 120%;
    margin: 0 0 45px -10%;
  }

  /******************************************************************
  TABLES
  ******************************************************************/
  .entry-content table {
    margin: 0 0 30px;
  }
  .entry-content table th, .entry-content table td {
    padding: 8px 20px;
    font-size: 14px;
  }

  /******************************************************************
  MODALS
  ******************************************************************/
  .modal {
    width: 60%;
    height: 80%;
    margin-left: -30%;
    padding: 40px;
    top: 10%;
  }

  /******************************************************************
  CONTENT BLOCKS
  ******************************************************************/
  .banner h4,
.banner p {
    text-align: left;
  }
  .banner .text {
    float: left;
    padding: 30px 0;
    margin-right: -100%;
  }
  .banner .button {
    float: none;
    padding: 35px 0;
  }
  .banner .button a.fr {
    float: right;
  }

  .bespoke-cta {
    text-align: left;
  }
  .bespoke-cta .crest {
    max-width: 52px;
  }
  .bespoke-cta h5 {
    color: #fff;
    text-align: left;
    margin-bottom: 16px;
  }
  .bespoke-cta p {
    margin-bottom: 60px;
    font-size: 14px;
    line-height: 24px;
  }
  .bespoke-cta .text-link {
    text-decoration: none;
    text-transform: uppercase;
  }
  .bespoke-cta .car-image {
    display: none;
  }

  .content {
    padding: 150px 0 160px;
  }
  .content + .intro {
    margin-top: 0;
  }
  .content.custom-three-boxes .slide .image.oversized {
    max-height: 380px;
    height: 380px;
  }
  .content.custom-three-boxes .slide .image.oversized img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 170%;
  }
  .content .slide {
    max-width: 500px;
    margin-bottom: 20px;
  }
  .content .slide.multi-row {
    margin-bottom: 80px;
  }
  .content .slide .image.oversized img {
    margin: 0;
  }
  .content .slide .slide-lower {
    padding: 30px 30px 40px;
  }
  .content .slide .slide-lower .service-link {
    left: 30px;
    bottom: 30px;
  }
  .content .slide .btn {
    display: block;
  }
  .content .slide .sub-heading {
    margin-bottom: 20px;
  }
  .content .slide p {
    margin-bottom: 60px;
  }
  .content .section-header {
    padding-bottom: 30px;
    margin-bottom: 60px;
  }
  .content .section-header.smaller-gap {
    margin-bottom: 30px;
  }
  .content .section-header:after {
    width: 60px;
    margin: 0 -30px;
  }
  .content .image-full-width {
    margin-bottom: 50px;
  }
  .content.tall-block {
    background-size: 100%;
  }
  .content.tall-block.content-top {
    padding-top: 150px;
    padding-bottom: 786px;
  }
  .content.tall-block.content-bottom {
    padding-top: 786px;
    padding-bottom: 150px;
  }
  .content p {
    margin-bottom: 40px;
  }
  .content.content-left, .content.content-right {
    text-align: left;
  }
  .content.content-left h2,
.content.content-left h3,
.content.content-left h4,
.content.content-left .button, .content.content-right h2,
.content.content-right h3,
.content.content-right h4,
.content.content-right .button {
    text-align: left;
  }
  .content.content-left .image, .content.content-right .image {
    padding-top: 0;
  }
  .content.content-left .button.space-top, .content.content-right .button.space-top {
    margin-top: 0;
  }
  .content.content-left .section-header:after, .content.content-right .section-header:after {
    margin: 0;
    left: 0;
  }
  .content.content-left .section-header,
.content.content-left .section-content {
    padding-right: 75px;
  }
  .content.content-right .row > div:first-of-type {
    float: right;
  }
  .content.content-right .section-header,
.content.content-right .section-content {
    padding-left: 75px;
  }
  .content.content-right .section-header:after {
    left: 75px;
  }
  .content.content-video .section-header,
.content.content-video .section-content {
    padding-right: 75px;
  }
  .content.content-video.swap-content .section-header,
.content.content-video.swap-content .section-content {
    padding-right: 0;
    padding-left: 75px;
  }
  .content.content-video.swap-content .section-header:after {
    left: 75px;
  }
  .content.content-video.swap-content .youtube-wrapper {
    text-align: right;
  }
  .content.swap-content .row > div:first-of-type {
    float: right;
  }
  .content .table-content {
    overflow: visible;
  }

  .left-desktop {
    text-align: left;
  }

  .icons-container .section-content {
    max-width: 1300px;
  }
  .icons-container .icon-image {
    margin-bottom: 48px;
  }
  .icons-container .icon-heading {
    margin-bottom: 18px;
  }

  .testimonial-slide {
    border: 0px solid transparent;
  }
  .testimonial-slide .testimonial {
    width: 49%;
    display: inline-block;
    border: 0px solid transparent;
    vertical-align: top;
  }
  .testimonial-slide .testimonial .image {
    width: 172px;
    height: 148px;
  }
  .testimonial-slide .testimonial .image,
.testimonial-slide .testimonial .testimonial-text {
    display: inline-block;
    vertical-align: top;
  }
  .testimonial-slide .testimonial .testimonial-text {
    margin-left: 30px;
    width: 55%;
    padding: 40px 0 50px;
    border-top: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
  }

  .video .vjs-layout-medium,
.video .vjs-layout-large {
    max-width: 1079px;
    width: 100%;
    height: 569px;
  }

  .car-lower {
    overflow: hidden;
    padding-top: 15px;
  }
  .car-lower .car-features-block {
    padding-top: 0;
  }
  .car-lower h5 {
    margin-bottom: 18px;
  }
  .car-lower .feature {
    padding-top: 3px;
    padding-bottom: 3px;
    border-top: 1px solid #D8D8D8;
  }
  .car-lower .feature:first-of-type {
    border-top: 0px solid transparent;
  }
  .car-lower .link {
    padding-top: 12px;
  }

  .post-type-archive .content > .wrap {
    width: 95%;
    max-width: 1080px;
  }
  .post-type-archive .content .section-header {
    max-width: 100%;
  }
  .post-type-archive .wider-wrap .content > .wrap {
    max-width: 1300px;
  }
  .post-type-archive .tall-block .section-header h2 {
    max-width: 100%;
  }

  .single-cars .section-header.type-2 {
    margin-left: 0;
    max-width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 40px;
  }
  .single-cars .car-features-block {
    padding-bottom: 0;
    max-width: 545px;
  }
  .single-cars .content.tall-block.content-top {
    padding-bottom: 598px;
    text-align: left;
  }
  .single-cars .content.tall-block.content-top .label,
.single-cars .content.tall-block.content-top h2,
.single-cars .content.tall-block.content-top h4 {
    text-align: left;
  }
  .single-cars .content.tall-block.content-top .section-header {
    max-width: 100%;
  }
  .single-cars .content.tall-block.content-top .section-header h4 {
    max-width: 100%;
  }
  .single-cars .content.tall-block.content-top .section-header:after {
    left: 0;
    margin: 0;
  }
  .single-cars .content.tall-block.content-top .label,
.single-cars .content.tall-block.content-top .phone-numbers {
    display: inline-block;
  }
  .single-cars .content.tall-block.content-top .label {
    padding-right: 20px;
  }

  .includes-form.content.tall-block.content-top {
    padding-bottom: 598px;
    text-align: left;
  }
  .includes-form.content.tall-block.content-top .label,
.includes-form.content.tall-block.content-top h2,
.includes-form.content.tall-block.content-top h4 {
    text-align: left;
  }
  .includes-form.content.tall-block.content-top .section-header {
    max-width: 100%;
  }
  .includes-form.content.tall-block.content-top .section-header h4 {
    max-width: 100%;
  }
  .includes-form.content.tall-block.content-top .section-header:after {
    left: 0;
    margin: 0;
  }
  .includes-form.content.tall-block.content-top .label,
.includes-form.content.tall-block.content-top .phone-numbers {
    display: inline-block;
  }
  .includes-form.content.tall-block.content-top .label {
    padding-right: 20px;
    font-size: 13px;
  }
  .includes-form .enquiry-form h3 {
    text-align: left;
  }

  .highlights {
    padding-top: 13px;
  }

  .highlight p {
    margin-bottom: 0;
  }

  .box.normal-padding {
    padding: 30px;
  }

  .content-video {
    text-align: left;
  }
  .content-video h2,
.content-video h3,
.content-video h4 {
    text-align: left;
  }
  .content-video .section-header:after {
    left: 0;
    margin: 0;
  }

  .page-id-20150 .flexi-content > div:first-of-type {
    margin-top: -150px;
  }

  .page-template-page-booking-form .content {
    padding-top: 120px;
  }
  .page-template-page-booking-form #gform_1 {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
  }
  .page-template-page-booking-form #gform_1 textarea {
    height: 150px;
  }
  .page-template-page-booking-form #gform_1 .gform_next_button {
    min-width: auto;
  }
  .page-template-page-booking-form #gform_1 .ginput_container_radio label {
    padding: 12px;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps {
    opacity: 0;
    transition: all 0.3s;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps.visible {
    opacity: 1;
  }
  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step_label {
    display: block;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1:before {
    margin-top: 0;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1 .button {
    margin-top: -8px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 {
    margin-top: 50px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_fields {
    max-width: 1180px;
    margin: auto;
    padding: 0 20px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .gform_page_footer {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_2 .box.normal-padding.form-pricing-box {
    border-width: 0;
    background-color: #F7F7F7;
    padding: 20px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 {
    position: static !important;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer {
    position: relative;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer:before {
    left: 19px !important;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer:after {
    top: 17px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .gform_previous_button {
    height: 50px;
    line-height: 22px;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .next-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper .gform_next_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_3 .gform_page_footer .confirm-pseudo-wrapper .gform_button {
    width: 100%;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gfmc-row-1-col-1-of-2 {
    position: absolute;
    left: 14px;
    top: 498px;
    width: 65% !important;
    max-width: 560px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .h2-journey-summary {
    padding-bottom: 20px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .vehicle-name {
    font-size: 20px;
    letter-spacing: 0.8px;
    line-height: 30px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 li {
    font-size: 15px;
    letter-spacing: 0.2px;
    line-height: 24px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #input_1_31_3_container,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #input_1_31_5_container,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #input_1_31_6_container,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #input_1_70_2_month,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #input_1_70_2_year,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #input_1_70_2_cardinfo_left,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #input_1_70_2_cardinfo_right,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #input_1_70_3 {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #input_1_70_2_year {
    margin-top: 0;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 #field_1_99 p {
    line-height: 1.2;
  }
  .page-template-page-booking-form #gform_1 .section-header.type-2 {
    margin-left: 0;
    max-width: 100%;
    border-top: 1px solid #D8D8D8;
    padding-top: 40px;
  }
  .page-template-page-booking-form #gform_1 .section-header .car-features-block {
    max-width: 600px;
  }
  .page-template-page-booking-form #gform_1 #field_1_39 .section-header.type-2 {
    border-top: 0px solid #D8D8D8;
    padding-top: 0;
  }
  .page-template-page-booking-form #gform_1 .highlights {
    padding-top: 0;
  }
  .page-template-page-booking-form #gform_1 .car-chooser {
    padding-bottom: 50px;
  }
  .page-template-page-booking-form #gform_1 .car-pricing-block p {
    margin-bottom: 0;
  }
  .page-template-page-booking-form #gform_1 .car-pricing-block button {
    width: 100%;
  }
  .page-template-page-booking-form .wrap {
    max-width: 1180px;
  }
  .page-template-page-booking-form.form-page-3 .content {
    margin-bottom: 100px;
  }
  .page-template-page-booking-form .gfmc-row-1-col-2-of-2 {
    padding: 12px 30px;
  }

  #gform_1 .gform_page_footer:after {
    top: 14px;
  }

  .testimonial-slider-mobile-only .testimonial .testimonial-text {
    border-bottom: 0px solid transparent;
  }
  .testimonial-slider-mobile-only .testimonial-5 .testimonial-text,
.testimonial-slider-mobile-only .testimonial-6 .testimonial-text {
    border-bottom: 1px solid #D8D8D8;
  }

  #gform_wrapper_1 form {
    padding-top: 120px;
  }
  #gform_wrapper_1 div.validation_error {
    position: absolute;
    top: 0px;
  }

  .page-template-page-booking-form .content {
    padding-top: 0;
  }
  .page-template-page-booking-form #gform_1 .gform_body .gform_page {
    margin: 0 0 128px;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_1 {
    width: 50%;
    margin: 0 0 128px;
  }

  .form-page-3 form .d-7of10 {
    width: 60%;
    padding-right: 50px;
  }

  .home .video .video-js {
    width: 100%;
    height: 555px;
    object-fit: cover;
    max-width: 200%;
  }

  table {
    min-width: 100%;
    max-width: 100%;
  }

  #bookingform_mobilenumbers {
    margin-bottom: -70px;
  }

  #preloader {
    padding: 200px;
  }
  #preloader img {
    transform: translate(-50%, 0%);
  }

  .preloader-home {
    padding: 250px;
  }

  /******************************************************************
  TERMS AND CONDITIONS PAGE
  ******************************************************************/
  .page-id-20066 .content {
    padding: 150px 0 160px;
  }

  .booking-cta.booking-form-wrapper {
    min-height: 210px;
  }
  .booking-cta h3 {
    margin-bottom: 40px;
  }
  .booking-cta .button-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .booking-cta .button-wrapper .btn {
    padding: 13px 20px;
    width: auto;
    min-width: 40%;
  }
  .booking-cta .button-wrapper .btn + .btn {
    margin-top: 20px;
  }

  .content-youtube .row {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
  }
  .content-youtube.swap-content .row {
    flex-direction: row-reverse;
  }
  .content-youtube iframe {
    margin-top: 0;
  }

  .single-post .flexi-content .content .section-header:after {
    margin: 0;
  }
  .single-post .flexi-content .content .content-carousel .slick-dots {
    bottom: -3px;
  }
  .content-youtube .section-header,
.content-youtube .section-content {
    margin-right: 20px;
  }
  .content-youtube .image-full-width.video {
    margin-left: 20px;
  }

  .blog-intro {
    margin-top: -138px;
  }
  .blog-intro .menu-backer {
    height: 138px;
    margin-bottom: 100px;
  }

  .form-page-3 div.gform_wrapper form#gform_1 .gform_body,
.form-page-4 div.gform_wrapper form#gform_1 .gform_body {
    width: 50%;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 128px;
  }
  .form-page-3 div.gform_wrapper form#gform_1 .gform_body .gform_page,
.form-page-4 div.gform_wrapper form#gform_1 .gform_body .gform_page {
    width: 100%;
  }
  .form-page-3 div.gform_wrapper form#gform_1 .gform_body #gform_page_1_3,
.form-page-4 div.gform_wrapper form#gform_1 .gform_body #gform_page_1_3 {
    margin-bottom: 0;
  }
  .form-page-3 div.gform_wrapper form#gform_1 .gform_body #gform_page_1_4,
.form-page-4 div.gform_wrapper form#gform_1 .gform_body #gform_page_1_4 {
    margin-bottom: 0;
  }
  .form-page-3 div.gform_wrapper form#gform_1 .gform_body #gform_page_1_4 .gform_page_fields,
.form-page-4 div.gform_wrapper form#gform_1 .gform_body #gform_page_1_4 .gform_page_fields {
    margin-top: -5px;
  }

  .page-template-page-booking-form .gf_page_steps .gfmc-row-1-col-1-of-2 {
    padding: 0;
    margin-top: 90px;
    background-color: transparent;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_fields,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer {
    margin: 0;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer {
    width: 100%;
  }
  .page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .confirm-pseudo-wrapper input.button.gform_previous_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .previous-pseudo-wrapper .gform_button,
.page-template-page-booking-form #gform_1 .gform_body #gform_page_1_4 .gform_page_footer .previous-pseudo-wrapper input.button.gform_previous_button {
    width: 100%;
  }
  .page-template-page-booking-form.form-page-4 #gform_1 {
    padding-bottom: 0;
  }

  #gform_1 .ginput_container_radio label,
#gform_4 .ginput_container_radio label {
    padding: 12px;
  }
  #gform_1 .stripe-image,
#gform_4 .stripe-image {
    height: 144px;
  }

  .content-carousel .slick-arrow {
    bottom: 5px;
  }

  .modal-lightbox .lightbox-close {
    left: auto;
    transform: none;
    top: 120px;
    right: 5vw;
  }
  .modal-lightbox .light-box-carousel {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .modal-lightbox .light-box-carousel .slick-dots {
    bottom: -68px;
  }
  .modal-lightbox .light-box-carousel .slick-list {
    overflow: visible;
  }
  .modal-lightbox .light-box-carousel .slick-slide {
    opacity: 0;
    transition: all 0.3s;
  }
  .modal-lightbox .light-box-carousel .slick-slide.slick-active {
    opacity: 1;
  }
  .modal-lightbox .light-box-carousel .image {
    width: 90vw;
    max-width: 1077px;
    height: 60vh;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.7);
  }
  .modal-lightbox .light-box-carousel .slick-arrow {
    bottom: -65px;
  }
  .modal-lightbox .light-box-carousel .slick-arrow.slick-prev {
    margin-left: -130px;
  }
  .modal-lightbox .light-box-carousel .slick-arrow.slick-next {
    margin-right: -130px;
  }

  .form-page-4 .gf_page_steps .gfmc-row-1-col-1-of-2 {
    display: block;
  }

  div.flatpickr-calendar {
    margin-top: 0px;
  }

  .int-phone.valid-msg, .int-phone.error-msg {
    top: 11px;
  }

  .form-page-3 #gform_wrapper_1 #gform_1 .gform_body.gform-body {
    margin: 0;
  }

  .form-page-4 #gform_wrapper_1 #gform_1 .gform_body.gform-body {
    margin: 0;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  GENERAL STYLES
  ******************************************************************/
  .wrap {
    max-width: 1300px;
    width: 95%;
  }

  /******************************************************************
  HEADER
  ******************************************************************/
  /******************************************************************
  HEADER - 1240 UP
  ******************************************************************/
  .header .header-contact {
    margin: 33px 0 0 118px;
  }

  .searchform {
    width: 364px;
  }

  /******************************************************************
  FOOTER
  ******************************************************************/
  /******************************************************************
  FOOTER - 1030 UP
  ******************************************************************/
  .footer .logo img {
    width: 190px;
  }
  .footer .apple-tech {
    width: 156px;
  }
  .footer .footer-bottom .cards {
    margin: 0;
  }
  .footer .footer-bottom .eu-grant {
    margin: 0 0 0 20px;
  }

  /******************************************************************
  NAV
  ******************************************************************/
  /******************************************************************
  NAVIGATION - 1030 UP
  ******************************************************************/
  /******************************************************************
  NAVIGATION - 1030 UP
  ******************************************************************/
  /******************************************************************
  INTRO
  ******************************************************************/
  /******************************************************************
  INTRO - 1030 UP
  ******************************************************************/
  .intro.intro-home .wrap {
    width: 1190px;
  }
  .intro .intro-content {
    max-width: 70%;
  }
  .intro.alternate-content-style .intro-content-wrapper, .intro.alternate-content-style.regular .intro-content-wrapper, .intro.alternate-content-style.extended .intro-content-wrapper {
    left: 50%;
    margin-left: -591px;
  }

  /******************************************************************
  CONTENT
  ******************************************************************/
  /******************************************************************
  CONTENT - 1240 UP
  ******************************************************************/
  /******************************************************************
  CONTENT SECTIONS
  ******************************************************************/
  .section-logos-content img {
    margin: 0 40px;
  }

  /******************************************************************
  CATEGORY LIST
  ******************************************************************/
  .cat-list .cat-list-item {
    width: 190px;
  }

  /******************************************************************
  WOOCOMMERCE CHECKOUT
  ******************************************************************/
  .checkout-help {
    padding: 0 58px 0 215px;
    background: #eee url(../images/checkout-help.html) 0 0 no-repeat;
    -webkit-background-size: 335px;
    background-size: 335px;
  }
  .checkout-help ul li {
    margin-left: 40px;
  }

  /******************************************************************
  TRUST PILOT
  ******************************************************************/
  .trust-pilot .tp-left,
.trust-pilot .tp-right {
    padding: 40px 130px;
  }

  /******************************************************************
  CONTENT BLOCKS
  ******************************************************************/
  .bespoke-cta .car-image {
    display: block;
    height: 74px;
    background-image: url("../images/bespoke-cta-car-image.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 57px;
  }

  .content .slide .image {
    max-height: 240px;
  }
  .content .slide .image img {
    margin: 0;
  }

  .testimonial-slide .testimonial .testimonial-text {
    width: 65%;
  }

  .home .video .video-js {
    width: 1080px;
    height: 570px;
    object-fit: cover;
    max-width: 200%;
  }

  /******************************************************************
  BOOKING FORM
  ******************************************************************/
  #gform_4 .gform_title {
    font-size: 30px;
  }

  .page-template-page-booking-form #gform_1 .gf_page_steps .gf_step_label {
    display: inline-block;
  }

  .booking-cta.booking-form-wrapper {
    min-height: 210px;
  }
  .booking-cta h3 {
    margin-bottom: 40px;
  }
  .booking-cta .button-wrapper {
    flex-direction: row;
  }
  .booking-cta .button-wrapper .btn {
    padding: 13px 20px;
    width: auto;
    min-width: 45%;
  }
  .booking-cta .button-wrapper .btn + .btn {
    margin-top: 0;
  }

  .modal-lightbox .lightbox-close {
    left: 50%;
    margin-left: 555px;
    transform: none;
    top: 155px;
    right: auto;
    z-index: 1000;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
  /* 

  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  .sidebar,
.page-navigation,
.wp-prev-next,
.respond-form,
nav {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
