@charset "UTF-8";
/**
*
* Text Smoothing Mixin
*
* Useful for font antialiasing.
* Set to true.
* Set `$aa` argument to false to remove antialiasing.
*
**/
/**
*
* Type Setting Mixin
*
* Let all your relative size values wash away with this Mixin.
* This mixin requires a target value, and a line height that will output a
* font-size in rems as a default. In addition, if a context value is given,
* the font size will be written in ems instead.
*
**/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can’t take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
h1, h2, .left-sidebar {
  font-family: "Montserrat", sans-serif; }

h4 {
  margin-bottom: 15px;
  font-weight: 400; }

body {
  font-family: "Raleway", sans-serif; }

h1 {
  font-size: 28px;
  line-height: 42px;
  font-size: 1.75rem;
  line-height: 2.1rem; }

h2 {
  font-size: 26px;
  line-height: 39px;
  font-size: 1.625rem;
  line-height: 1.95rem;
  font-weight: 100; }

h3 {
  font-size: 26px;
  line-height: 39px;
  font-size: 1.625rem;
  line-height: 1.95rem; }

h4 {
  font-size: 22px;
  line-height: 33px;
  font-size: 1.375rem;
  line-height: 1.65rem; }

p {
  font-weight: 100;
  letter-spacing: 1px;
  line-height: 30px; }

p.large {
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.35rem; }

.font-smooth {
  -webkit-font-smoothing: antialiased; }

@media (min-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 60px;
    font-size: 2.5rem;
    line-height: 3rem; }
  h2 {
    font-size: 30px;
    line-height: 45px;
    font-size: 1.875rem;
    line-height: 2.25rem; }
  h4 {
    font-size: 30px;
    line-height: 45px;
    font-size: 1.875rem;
    line-height: 2.25rem; } }

@media (min-width: 992px) {
  h1 {
    font-size: 60px;
    line-height: 90px;
    font-size: 3.75rem;
    line-height: 4.5rem;
    margin: 20px 0; }
  h3 {
    font-size: 32px;
    line-height: 48px;
    font-size: 2rem;
    line-height: 2.4rem; }
  p.large {
    font-size: 20px;
    line-height: 30px;
    font-size: 1.25rem;
    line-height: 1.5rem; } }

@media (min-width: 1300px) {
  h2 {
    font-size: 50px;
    line-height: 75px;
    font-size: 3.125rem;
    line-height: 3.75rem;
    line-height: 60px; }
  p.large {
    font-size: 22px;
    line-height: 33px;
    font-size: 1.375rem;
    line-height: 1.65rem; } }

::selection {
  color: #FFFFFF !important;
  background: #F45C56 !important; }

/**
*
* The Relative Sizing Function
*
* Accepts two arguments.
* $target takes in the target value, which can output in rems as a default.
* `$context` is optional as it can provide a context value to write out the
* target value in ems instead.
*
**/
/**
*
* Vertical Rhythm Function
*
* References the typography settings to make easy writing of vertical rhythms.
* Can be useful for vertical spacing.
*
**/
/**
*
* Get Body Type
*
*
**/
/**
 *
 * get-palette-color() function
 *
 * References the `$palette` map written in the config directory
 *
 */
/**
 *
 * scale-color() function
 *
 * Apply a color from the `$palette` map, then set its lightness
 *
 */
/**
*
* Power function in Sass.
*
* For power calculations in Sass.
* Place a number as a base, then a number to multiply from. Finally, add an
* exponent number.
*
* Simple example of such math being the speed of light:
* power(3, 10, 8);
* Output:
* 300000000 (300,000,000m a second - the speed of light).
*
* Could be useful in terms of grids or layout following a simple grid space?
* example - 20 pixels multiplied by 2 to the power of 6:
* power(20, 2, 6);
* Output:
* 1280 (for a 1280px wide element).
*
**/
/**
*
* Set HTML tag to `border-box` setting
* Also provide scroll overflow by default
*
**/
html {
  box-sizing: border-box;
  overflow-y: scroll; }

/**
*
* Make all elements and pseudo-elements inherit their parent's box model
*
**/
*,
*:after,
*:before {
  box-sizing: inherit; }

/**
*
* Make sure `style` tag is completely hidden
*
*
**/
style {
  display: none; }

/**
*
* Remove margins and paddings from `body` tag
*
**/
body {
  margin: 0;
  padding: 0; }

/**
*
* Make sure images act responsively
*
**/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle; }

/**
*
* Make sure embedded content fit in their responsive containers
*
**/
embed,
iframe,
object {
  max-width: 100%; }

/**
*
* Form Element Font Inheritence
*
* Use the Project's font instead of the system
*
**/
input,
textarea,
select,
button {
  font: inherit; }

/**
*
* Override iOS form input styling
*
* 1. Remove shadow in iOS
* 2. Remove border-radius in iOS
*
**/
input:not('[type="checkbox"]'):not('[type="radio"]'),
select {
  appearance: none;
  /* [1] */
  border-radius: 0;
  /* [2] */ }

/**
*
* Set Border Box method on Search Inputs
*
**/
input[type="search"] {
  box-sizing: border-box; }

.grunticon {
  background-size: contain;
  background-repeat: no-repeat; }

.grunticon--no-bg {
  background-image: none; }

@font-face {
  font-family: "fonticon";
  src: url("fonts/generated/fonticon.eot?4de9c03166da3ca8da40bd6fae7b9995");
  src: url("fonts/generated/fonticon.eot?#iefix") format("embedded-opentype"), url("fonts/generated/fonticon.woff?4de9c03166da3ca8da40bd6fae7b9995") format("woff"), url("fonts/generated/fonticon.ttf?4de9c03166da3ca8da40bd6fae7b9995") format("truetype");
  font-weight: normal;
  font-style: normal; }

.fonticon {
  font-family: "fonticon";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.fonticon--burger:before {
  content: "\f101"; }

[data-animation] {
  opacity: 0; }
  [data-animation].animate {
    opacity: 1; }
  [data-animation] html.lt-ie10 {
    opacity: 1 !important; }

.banner .heroBannerImage.animation-banner-scale {
  position: absolute;
  width: 106%;
  height: 106%;
  top: -3%;
  left: -3%;
  background-size: cover;
  background-position: center center;
  transform: scale(0.95);
  transition: transform 7s ease-in-out; }
  .banner .heroBannerImage.animation-banner-scale.animate {
    transform: scale(1); }

.animation-title-mask {
  opacity: 0; }
  .animation-title-mask .a-hide {
    display: none; }
  .animation-title-mask .a-word {
    overflow: hidden;
    display: inline-block;
    margin-right: 0.25em; }
    .animation-title-mask .a-word:nth-child(1n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.1s; }
    .animation-title-mask .a-word:nth-child(2n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.2s; }
    .animation-title-mask .a-word:nth-child(3n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.3s; }
    .animation-title-mask .a-word:nth-child(4n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.4s; }
    .animation-title-mask .a-word:nth-child(5n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.5s; }
    .animation-title-mask .a-word:nth-child(6n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.6s; }
    .animation-title-mask .a-word:nth-child(7n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.7s; }
    .animation-title-mask .a-word:nth-child(8n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.8s; }
    .animation-title-mask .a-word:nth-child(9n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.9s; }
    .animation-title-mask .a-word:nth-child(10n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 1s; }
    .animation-title-mask .a-word:nth-child(11n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 1.1s; }
    .animation-title-mask .a-word:nth-child(12n) .a-mask {
      transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1) 1.2s; }
  .animation-title-mask .a-mask {
    transform: translateY(100%); }
  .animation-title-mask.animate {
    opacity: 1; }
    .animation-title-mask.animate .a-mask {
      transform: translateY(0); }
  .subPage .animation-title-mask {
    opacity: 1; }
    .subPage .animation-title-mask .a-hide {
      display: block !important; }
    .subPage .animation-title-mask .a-word {
      display: inline-block; }

/* Makes border-box properties */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.noselect, .button {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                    not supported by any browser */ }

section {
  overflow: hidden; }

.icon-logo_a {
  display: none; }

a {
  text-decoration: none;
  outline: 0; }
  a:hover, a:focus {
    outline: 0; }

.contained {
  margin: 0 30px; }
  @media (min-width: 768px) {
    .contained {
      margin: 0 50px; } }

.content {
  width: 100%;
  position: relative;
  margin-top: 70px; }
  @media (min-width: 768px) {
    .content {
      padding-left: 240px;
      margin-top: 0; } }
  @media (min-width: 768px) and (max-width: 1299px) {
    .content {
      padding-left: 90px; }
      .content--open {
        padding-left: 240px; }
        .content--open .fixed-nav {
          left: 240px !important; } }

.navigation {
  background: #1f2731; }
  @media (min-width: 768px) {
    .navigation {
      width: 240px; } }
  @media (min-width: 768px) and (max-width: 1299px) {
    .navigation {
      width: 90px; }
      .navigation--open {
        width: 240px; }
        .navigation--open .sidebar-contained {
          padding: 0 50px; }
        .navigation--open ul {
          margin-bottom: 40px !important; }
        .navigation--open .slide-menu {
          margin: 30px 40px 30px !important; }
          .navigation--open .slide-menu.slide-menu {
            margin-left: 40px !important;
            margin-bottom: 0 !important; }
          .navigation--open .slide-menu span:before, .navigation--open .slide-menu span:after {
            width: 50% !important; }
          .navigation--open .slide-menu span:before {
            top: 0;
            transform: translateX(-6px) translateY(-4px) rotate(-45deg); }
          .navigation--open .slide-menu span:after {
            bottom: 0;
            transform: translateX(-6px) translateY(4px) rotate(45deg); }
        .navigation--open li {
          padding: 0 !important;
          margin-bottom: 8px !important; }
          .navigation--open li.item-31 > div {
            margin-top: 35px; }
          .navigation--open li.item-738 > div {
            margin-bottom: 48px;
            padding-right: 0 !important; }
          .navigation--open li > div {
            display: block !important;
            visibility: visible;
            padding: 15px 40px !important;
            transition: all 0.3s ease-out;
            transition-delay: 0.5s; }
            .navigation--open li > div:last-child {
              margin-bottom: 15px; }
          .navigation--open li > span {
            transition: all 0.3s ease-out;
            opacity: 0;
            visibility: hidden; }
        .navigation--open .item-28 {
          font-size: 15px;
          line-height: 22.5px;
          font-size: 0.9375rem;
          line-height: 1.125rem; }
          .navigation--open .item-28.item-28 {
            padding-top: 10px !important;
            padding-bottom: 10px !important;
            height: 68px !important; }
          .navigation--open .item-28 div {
            font-size: 0.9375rem !important;
            line-height: 1.125rem !important; }
          .navigation--open .item-28 span {
            display: block !important;
            float: right !important;
            width: 35px !important;
            height: 25px !important;
            margin-top: 5px !important;
            padding: 10px 50px !important;
            animation: fadeInOut 0.3s ease-out;
            animation-iteration-count: 1; }
        .navigation--open .grey-ul {
          font-size: 14px;
          line-height: 21px;
          font-size: 0.875rem;
          line-height: 1.05rem;
          display: block !important; }
          .navigation--open .grey-ul li {
            padding: 20px 40px !important; }
        .navigation--open .phone {
          font-size: 15px;
          line-height: 22.5px;
          font-size: 0.9375rem;
          line-height: 1.125rem;
          letter-spacing: 0.05em;
          width: 100%;
          text-align: center; }
        .navigation--open .lighter-blue .cta-icons {
          padding: 0 40px !important;
          margin: 0 !important; }
          .navigation--open .lighter-blue .cta-icons li {
            width: 33% !important;
            display: inline-block !important;
            margin: 0 !important; }
          .navigation--open .lighter-blue .cta-icons .icon {
            padding: 0 !important; }
          .navigation--open .lighter-blue .cta-icons .icon.call svg {
            float: left !important; }
          .navigation--open .lighter-blue .cta-icons .icon.enquire svg {
            float: right !important; }
        .navigation--open .lighter-blue span {
          height: 25px;
          width: 100% !important;
          background-size: contain; }
          .navigation--open .lighter-blue span.icon-search {
            background-position: center center;
            margin: 0 auto; }
          .navigation--open .lighter-blue span.icon-email {
            background-position: right center;
            margin: 0 auto; }
        .navigation--open .lighter-blue .sidebar-contained {
          display: inherit; }
        .navigation--open .logo-main {
          display: block; } }

.no-padding {
  padding: 0 !important; }

.no-margin {
  margin: 0; }

body {
  color: #1f2731; }

.wrap:after {
  content: " ";
  clear: both;
  display: block; }

hr {
  border-color: #1f2731; }

.contained-deep {
  margin: 0 auto;
  padding: 0 30px; }
  @media (min-width: 992px) {
    .contained-deep {
      padding: 0;
      width: 80%; } }

@media (max-width: 767px) {
  .full-width-mobile {
    padding: 0;
    margin: 0;
    width: 100%; } }

.flickity-prev-next-button {
  display: none; }

a {
  color: #1f2731; }

a.button {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 18px 50px;
  font-size: 12px;
  line-height: 18px;
  font-size: 0.75rem;
  line-height: 0.9rem;
  text-align: center; }
  a.button:hover {
    transition: all .3s ease;
    background: #ffffff;
    color: #1f2731; }

a.red {
  background: #f45c5b;
  border-color: #f45c5b; }
  a.red:hover {
    transition: all .3s ease;
    background: #d85251;
    color: #ffffff; }

a.blue {
  background: #1f2731;
  border-color: #1f2731; }
  a.blue:hover {
    transition: all .3s ease;
    background: #263342;
    color: #ffffff; }

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

.full-width {
  width: 100%; }

.content p, .content h4, .content li {
  color: #263342; }

@media (min-width: 768px) and (max-width: 1299px) {
  .navigation .left-sidebar li {
    padding: 0;
    margin-bottom: 40px; }
    .navigation .left-sidebar li span {
      background-position: center center;
      background-size: contain;
      display: block;
      width: 100%;
      height: 30px; }
    .navigation .left-sidebar li div {
      display: none; }
  .navigation .left-sidebar .phone {
    display: none !important; }
  .navigation .left-sidebar .grey-ul {
    display: none; }
  .navigation .left-sidebar .lighter-blue .icon {
    width: 100%;
    float: none;
    text-align: center;
    display: block;
    height: 25px;
    background-position: center center;
    background-size: contain;
    margin-bottom: 25px; }
  .navigation .left-sidebar li.item-28 {
    color: #fff;
    background: #1f2731;
    padding: 10px 10px; }
    .navigation .left-sidebar li.item-28 span {
      height: 25px;
      float: none;
      margin-top: 0px;
      background-size: contain;
      width: 100%; }
  .navigation .left-sidebar .logo-main {
    display: none; }
  .navigation .left-sidebar .icon-logo_a {
    display: block;
    height: 35px; } }

.loadingDiv {
  min-height: 100vh;
  width: 100%;
  background-color: #1f2731;
  position: relative; }
  .loadingDiv.loadingDiv--small {
    min-height: 100%; }
  .loadingDiv__inner {
    position: absolute;
    font-size: 24px;
    color: white;
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100px;
    min-width: 100px; }
    .loadingDiv__inner .icon {
      height: 100px;
      width: 100px;
      display: block;
      background-size: contain; }

a, img {
  outline: none !important;
  border-style: none;
  text-decoration: none; }

.footer {
  background: #ebebeb;
  padding: 80px 0;
  overflow: hidden; }
  .footer ul {
    padding: 0;
    margin-bottom: 0; }
    .footer ul li {
      list-style: none;
      margin-bottom: 26.5px;
      font-size: 12px;
      line-height: 18px;
      font-size: 0.75rem;
      line-height: 0.9rem; }
      .footer ul li:last-of-type {
        margin-bottom: 0; }
      .footer ul li a {
        color: #828690; }
        .footer ul li a:hover {
          transition: .3s ease;
          color: #1f2731; }
  .footer .logo-footer {
    height: 60px;
    background-position: left center;
    background-size: contain;
    width: 100px;
    margin-right: 61px; }
    .footer .logo-footer:last-child {
      margin-right: 0; }
  .footer .icon-logo-3 {
    background-image: url(../img/icons/png/logo-3.png) !important; }
  .footer .menus {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .footer .menus {
        width: 66.10169%;
        float: left;
        margin-right: 1.69492%;
        border-right: 1px solid #828690;
        padding-right: 30px; } }
    @media (min-width: 992px) {
      .footer .menus {
        width: 57.62712%;
        float: left;
        margin-right: 1.69492%;
        border-right: 1px solid #828690;
        padding-right: 30px; } }
  .footer h4 {
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 15px;
    font-size: 16px;
    line-height: 24px;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.07em; }
  .footer .contact {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    .footer .contact .footer-aerocogroup {
      padding-top: 10px;
      font-size: 15px;
      line-height: 22.5px;
      font-size: 0.9375rem;
      line-height: 1.125rem;
      color: black; }
      .footer .contact .footer-aerocogroup a {
        margin-top: 40px; }
        @media (min-width: 1600px) {
          .footer .contact .footer-aerocogroup a {
            margin-top: 0; } }
    .footer .contact a {
      display: block; }
    @media (min-width: 768px) {
      .footer .contact {
        padding-left: 15px;
        width: 32.20339%;
        float: left;
        margin-right: 1.69492%;
        float: right;
        margin-right: 0; } }
    @media (min-width: 992px) {
      .footer .contact {
        padding-left: 97px;
        width: 40.67797%;
        float: left;
        margin-right: 1.69492%;
        float: right;
        margin-right: 0; } }
    .footer .contact__logos a {
      width: 50%;
      display: inline-block; }
      .footer .contact__logos a span {
        display: block;
        width: 100%;
        max-width: 150px;
        filter: grayscale(100%);
        transition: filter 0.5s ease-out;
        background-size: 80%;
        background-position: center; }
        .footer .contact__logos a span:hover {
          filter: none; }
    .footer .contact .phone {
      margin-bottom: 10px; }
  .footer .one-third {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .footer .one-third {
        margin-bottom: 0;
        width: 32.20339%;
        float: left;
        margin-right: 1.69492%; }
        .footer .one-third:last-of-type {
          float: right;
          margin-right: 0; } }
  @media (min-width: 992px) {
    .footer .contact {
      padding-left: 97px;
      padding-right: 35px; } }
  .footer .contact p {
    padding-top: 10px; }
  .footer .contact ul {
    width: 100%;
    padding-bottom: 30px; }
  .footer .contact .social {
    overflow: hidden;
    margin-bottom: 25px; }
    .footer .contact .social .icon {
      width: 40px;
      height: 40px;
      background-size: cover;
      display: inline-block;
      float: left;
      margin-right: 10px; }
      @media (min-width: 1300px) {
        .footer .contact .social .icon {
          margin-right: 30px; } }

.left-sidebar {
  background: #1f2731;
  color: #fff;
  position: relative; }
  .left-sidebar .cta-icons {
    transition: all 0.3s ease-out;
    margin: 0;
    padding: 0 15px; }
    @media (min-width: 1300px) {
      .left-sidebar .cta-icons {
        padding: 0 40px; } }
    .left-sidebar .cta-icons li {
      width: 33.3%;
      display: inline-block;
      line-height: 0;
      margin: 0;
      padding: 0; }
      .left-sidebar .cta-icons li .icon {
        width: 100%;
        cursor: pointer; }
      .left-sidebar .cta-icons li .icon svg {
        fill: #fff;
        transition: fill 0.3s ease-in-out; }
      .left-sidebar .cta-icons li .icon:hover svg {
        fill: #5a606f; }
  @media (max-height: 780px) {
    .left-sidebar {
      overflow: scroll; } }
  @media (min-width: 768px) and (max-width: 1299px) {
    .left-sidebar .cta-icons li {
      width: 100%;
      height: 30px;
      margin-bottom: 20px; }
    .left-sidebar .cta-icons:first-child {
      margin-top: 20px; } }
  @media (min-width: 768px) {
    .left-sidebar .aog-button, .left-sidebar .icon-burger, .left-sidebar .burger {
      display: none; }
    .left-sidebar .nav-collapse {
      display: table;
      width: 100%;
      height: 100%; } }
  .left-sidebar .slide-menu {
    display: none;
    position: relative;
    width: 40px !important;
    height: 40px !important;
    margin: 20px auto 47px !important;
    background: #1f2731;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s; }
    .left-sidebar .slide-menu:focus {
      outline: none; }
    .left-sidebar .slide-menu span {
      display: block;
      position: absolute;
      top: 20px;
      left: 0;
      right: 0;
      height: 2px;
      background: #f1f1f2;
      transition: transform 0.3s ease-out; }
      .left-sidebar .slide-menu span:before, .left-sidebar .slide-menu span:after {
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        height: 2px;
        background: #f1f1f2;
        content: ''; }
      .left-sidebar .slide-menu span:before {
        top: -10px;
        transform-origin: top right;
        transition: transform 0.3s ease-out, width 0.3s ease-out, top 0.3s ease-out; }
      .left-sidebar .slide-menu span:after {
        bottom: -10px;
        transform-origin: bottom right;
        transition: transform 0.3s ease-out, width 0.3s ease-out, bottom 0.3s ease-out; }
    @media (min-width: 768px) {
      .left-sidebar .slide-menu {
        display: block; } }
    @media (min-width: 1300px) {
      .left-sidebar .slide-menu {
        display: none; } }
  .left-sidebar .sidebar-wrap {
    height: 70px;
    transition: height 0.3s ease-out;
    overflow: hidden;
    background: #1f2731;
    z-index: 100;
    position: fixed;
    left: 0;
    right: 0;
    top: 0; }
    @media (min-width: 768px) {
      .left-sidebar .sidebar-wrap {
        display: table;
        position: static;
        width: 100%;
        height: 100%; } }
    .left-sidebar .sidebar-wrap--toggled {
      height: 510px; }
  .left-sidebar .sidebar-contained {
    text-align: center;
    display: inline-block;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .left-sidebar .sidebar-contained {
        padding: 0 10px;
        text-align: left;
        display: inherit;
        margin: 0; } }
    @media (min-width: 1300px) {
      .left-sidebar .sidebar-contained {
        padding: 0 50px; } }
  .left-sidebar .icon-logo-a {
    display: block;
    height: 45px;
    background-position: 48% 0;
    background-size: contain; }
    @media (min-width: 767px) {
      .left-sidebar .icon-logo-a {
        background-position: center center; } }
    @media (min-width: 768px) {
      .left-sidebar .icon-logo-a {
        margin-bottom: 20px !important; } }
    @media (min-width: 1300px) {
      .left-sidebar .icon-logo-a {
        display: none; } }
  .left-sidebar .logo-wrap {
    display: inline-block;
    width: 35%; }
    @media (min-width: 768px) {
      .left-sidebar .logo-wrap {
        display: table-row;
        height: 60px;
        width: inherit; } }
  @media (min-width: 768px) {
    .left-sidebar .navigation-wrap {
      display: table-row;
      height: 100%; } }
  @media (min-width: 1300px) {
    .left-sidebar .logo-main {
      display: block !important; } }
  @media (min-width: 768px) {
    .left-sidebar .logo {
      width: 100%;
      max-width: 115px;
      margin: 43px 0 47px;
      height: 45px;
      background-position: center center;
      background-size: contain; } }
  @media (min-width: 1300px) {
    .left-sidebar .logo {
      max-width: 100%;
      margin: 30px 40px 30px;
      height: 75px;
      background-position: center left; } }
  @media (min-width: 768px) {
    .left-sidebar {
      position: fixed;
      width: inherit;
      left: 0;
      height: 100%;
      z-index: 9999; } }
  .left-sidebar a {
    color: #8f9398; }
    .left-sidebar a .nav-active {
      color: #fff; }
  .left-sidebar ul {
    padding: 0;
    margin: 0 0 17px; }
    @media (min-width: 1300px) {
      .left-sidebar ul {
        margin-bottom: 40px; } }
    .left-sidebar ul:first-of-type {
      text-transform: uppercase; }
    .left-sidebar ul li {
      list-style: none;
      font-size: 12px;
      line-height: 18px;
      font-size: 0.75rem;
      line-height: 0.9rem;
      overflow: hidden;
      margin-bottom: 8px;
      letter-spacing: 1px; }
      @media (min-width: 768px) {
        .left-sidebar ul li {
          padding: 12px 10px; } }
      .left-sidebar ul li div {
        float: left;
        transition: padding 0.3s ease-out; }
      .left-sidebar ul li:hover {
        transition: .2s ease;
        color: #fff; }
      @media (min-width: 768px) {
        .left-sidebar ul li {
          padding: 15px 40px;
          font-size: 13px;
          line-height: 19.5px;
          font-size: 0.8125rem;
          line-height: 0.975rem; } }
      @media (min-width: 1300px) {
        .left-sidebar ul li {
          padding: 20px 40px; } }
      .left-sidebar ul li.item-28 {
        color: #fff;
        background: #f45c5b;
        font-size: 12px;
        line-height: 18px;
        font-size: 0.75rem;
        line-height: 0.9rem;
        font-weight: 700;
        transition: .3s ease; }
        .left-sidebar ul li.item-28:hover {
          background-color: #d85251 !important; }
        @media (min-width: 768px) {
          .left-sidebar ul li.item-28 {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
            background: #f45c5b !important; } }
        @media (min-width: 1300px) {
          .left-sidebar ul li.item-28 {
            font-size: 15px;
            line-height: 22.5px;
            font-size: 0.9375rem;
            line-height: 1.125rem; } }
        .left-sidebar ul li.item-28 span {
          width: 25px;
          height: 30px;
          float: right;
          margin-top: -2px;
          background-size: contain;
          visibility: visible; }
          @media (min-width: 1300px) {
            .left-sidebar ul li.item-28 span {
              width: 35px;
              height: 25px;
              margin-top: -6px; } }
    .left-sidebar ul.grey-ul {
      margin-bottom: 40px; }
      .left-sidebar ul.grey-ul li {
        letter-spacing: 0; }
        @media (min-width: 1300px) {
          .left-sidebar ul.grey-ul li {
            font-size: 14px;
            line-height: 21px;
            font-size: 0.875rem;
            line-height: 1.05rem; } }
        .left-sidebar ul.grey-ul li a {
          color: #8f9398; }
  .left-sidebar .cta-block {
    width: 100%;
    display: block; }
    @media (min-width: 768px) {
      .left-sidebar .cta-block {
        display: table-row; } }
    @media (min-width: 1300px) {
      .left-sidebar .cta-block .cta-icons .icon.call svg {
        float: left; }
      .left-sidebar .cta-block .cta-icons .icon.enquire svg {
        float: right; } }
  .left-sidebar .phone {
    text-align: center;
    display: block;
    margin: 20px 0;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-size: 1rem;
    line-height: 1.2rem; }
    @media (min-width: 768px) {
      .left-sidebar .phone {
        margin-bottom: 30px;
        width: 100%;
        display: block; } }
    @media (min-width: 992px) {
      .left-sidebar .phone {
        font-size: 15px;
        line-height: 22.5px;
        font-size: 0.9375rem;
        line-height: 1.125rem; } }
    @media (min-width: 1300px) {
      .left-sidebar .phone {
        font-size: 15px;
        line-height: 22.5px;
        font-size: 0.9375rem;
        line-height: 1.125rem;
        letter-spacing: 0.05em;
        width: 100%;
        text-align: center; } }
  .left-sidebar .lighter-blue {
    background-color: #263342;
    overflow: hidden;
    padding: 15px 0; }
    .left-sidebar .lighter-blue .icon {
      width: 33.3%;
      float: left;
      text-align: center; }
      .left-sidebar .lighter-blue .icon span {
        background-size: contain; }
      @media (max-width: 767px) {
        .left-sidebar .lighter-blue .icon {
          height: 30px; } }
    .left-sidebar .lighter-blue .sidebar-contained {
      display: block; }
    @media (min-width: 768px) {
      .left-sidebar .lighter-blue span {
        background-size: initial; }
      .left-sidebar .lighter-blue .sidebar-contained {
        display: inherit;
        display: inherit; } }
    @media (min-width: 1300px) {
      .left-sidebar .lighter-blue span {
        height: 25px;
        width: 100% !important;
        background-size: contain; }
        .left-sidebar .lighter-blue span.icon-search {
          background-position: center center;
          margin: 0 auto; }
        .left-sidebar .lighter-blue span.icon-email {
          background-position: right center;
          margin: 0 auto; }
      .left-sidebar .lighter-blue .sidebar-contained {
        display: inherit; } }
  @media (max-width: 767px) {
    .left-sidebar .logo-wrap {
      width: 100%;
      padding: 0;
      height: 70px;
      overflow: hidden;
      display: block;
      position: relative; }
    .left-sidebar li {
      padding-left: 0; }
    .left-sidebar .burger-wrapper {
      width: 23.72881%;
      float: left;
      margin-right: 1.69492%;
      height: 25px;
      margin-top: 27px; }
      .left-sidebar .burger-wrapper .burger {
        width: 40px;
        height: 25px;
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
        margin-left: 15px; }
        .left-sidebar .burger-wrapper .burger span {
          display: block;
          position: absolute;
          height: 1px;
          width: 100%;
          background: #fff;
          border-radius: 2px;
          opacity: 1;
          left: 0;
          -webkit-transform: rotate(0deg);
          -moz-transform: rotate(0deg);
          -o-transform: rotate(0deg);
          transform: rotate(0deg);
          -webkit-transition: .25s ease-in-out;
          -moz-transition: .25s ease-in-out;
          -o-transition: .25s ease-in-out;
          transition: .25s ease-in-out; }
          .left-sidebar .burger-wrapper .burger span:nth-child(1) {
            top: 0px; }
          .left-sidebar .burger-wrapper .burger span:nth-child(2), .left-sidebar .burger-wrapper .burger span:nth-child(3) {
            top: 12px; }
          .left-sidebar .burger-wrapper .burger span:nth-child(4) {
            top: 25px; }
        .left-sidebar .burger-wrapper .burger.open span:nth-child(1) {
          top: 12px;
          width: 0%;
          left: 50%; }
        .left-sidebar .burger-wrapper .burger.open span:nth-child(2) {
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg); }
        .left-sidebar .burger-wrapper .burger.open span:nth-child(3) {
          -webkit-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          -o-transform: rotate(-45deg);
          transform: rotate(-45deg); }
        .left-sidebar .burger-wrapper .burger.open span:nth-child(4) {
          top: 12px;
          width: 0%;
          left: 50%; }
    .left-sidebar .logo-wrapper {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%;
      margin-top: 14px; }
    .left-sidebar .aog-button {
      width: 23.72881%;
      float: left;
      margin-right: 1.69492%;
      float: right;
      margin-right: 0; }
    .left-sidebar .logo-main {
      width: 65%;
      height: 40px;
      display: none;
      background-position: center center;
      background-size: contain;
      margin: 0 auto; } }
  @media (max-width: 767px) and (min-width: 1300px) {
    .left-sidebar .logo-main {
      display: block; } }
  @media (max-width: 767px) {
    .left-sidebar .hidden-nav {
      opacity: 0;
      height: 0; }
    .left-sidebar ul {
      padding-left: 15px; }
    .left-sidebar .grey-ul {
      margin-bottom: 0 !important; }
    .left-sidebar .phone {
      display: none; }
    .left-sidebar .toggled-nav {
      transition: .3s ease;
      opacity: 1;
      text-transform: uppercase; }
    .left-sidebar li {
      padding: 12px 0; }
    .left-sidebar li.item-28 {
      display: none; }
    .left-sidebar .red-button {
      height: 70px;
      width: 85%;
      background: #f45c5b;
      color: #fff;
      float: right;
      font-size: 14px;
      font-weight: 400;
      cursor: pointer;
      transition: .3s ease; }
      .left-sidebar .red-button .icon {
        height: 40px;
        display: block;
        background-position: center center; }
      .left-sidebar .red-button:hover {
        background: #d85251 !important; } }

.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

.carousel-cell {
  width: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

.searchForm {
  position: fixed;
  background-color: #263342;
  color: #ffffff;
  height: 100vh;
  width: 100vw;
  top: -120%;
  z-index: 999999;
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  overflow-x: hidden; }
  @media (max-width: 767px) {
    .searchForm {
      width: 100% !important; } }
  .searchForm > * {
    opacity: 0;
    transition: opacity .5s ease-in;
    transition-delay: .5s; }
  .searchForm .close {
    position: fixed;
    display: inline-block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    transition: background .3s ease;
    transition-delay: 0s !important;
    top: 25px;
    right: 35px;
    cursor: pointer; }
    .searchForm .close:before, .searchForm .close:after {
      content: '';
      position: absolute;
      height: 2px;
      width: 100%;
      top: 50%;
      left: 0;
      margin-top: -1px;
      background: #8f9398;
      transform: scale(3); }
    .searchForm .close:before {
      transform: rotate(45deg); }
    .searchForm .close:after {
      transform: rotate(-45deg); }
    .searchForm .close:hover:before, .searchForm .close:hover:after {
      background: #FFFFFF; }
  .searchForm .search-inner {
    width: 80%;
    margin: 50px auto;
    overflow: hidden; }
    .searchForm .search-inner input {
      width: 100%;
      background: transparent;
      border: 0;
      border-bottom: 1px solid grey;
      padding-bottom: 15px;
      outline: 0;
      color: #fff;
      font-size: 24px;
      font-weight: 100;
      margin-bottom: 5px; }
    .searchForm .search-inner .count {
      font-weight: 100;
      letter-spacing: 0.05em;
      animation: intro 0.6s forwards; }
    .searchForm .search-inner .searchItemWrapper {
      padding: 0;
      overflow: auto;
      width: 100%;
      width: calc(100% + 20px);
      margin-bottom: 40px; }
      @media (min-width: 768px) {
        .searchForm .search-inner .searchItemWrapper {
          height: 400px;
          height: 60vh; } }
      .searchForm .search-inner .searchItemWrapper .search-item {
        color: #8f9398;
        padding: 40px 0;
        border-bottom: 1px solid #364150;
        animation: intro 0.6s forwards; }
        .searchForm .search-inner .searchItemWrapper .search-item:hover h4 {
          color: #fff; }
    .searchForm .search-inner .center {
      text-align: center; }
    .searchForm .search-inner .button {
      margin-top: 30px;
      display: inline-block; }
    .searchForm .search-inner h4 {
      color: #8f9398;
      margin: 0;
      font-weight: 100;
      transition: color 0.3s ease-in; }
  .searchForm.search-open {
    transform: translateY(120%);
    overflow: scroll;
    overflow-x: hidden; }
    .searchForm.search-open > * {
      opacity: 1; }
  .searchForm .search-mouse {
    width: 100%;
    margin: 0 auto;
    display: none; }
    @media (min-width: 768px) {
      .searchForm .search-mouse {
        display: block; } }
    .searchForm .search-mouse path, .searchForm .search-mouse polyline {
      fill: none;
      stroke: white;
      stroke-width: 1;
      stroke-linecap: round; }
    .searchForm .search-mouse path {
      opacity: 0;
      animation: stroke .9s .35s forwards;
      animation-timing-function: cubic-bezier(1, 0.1, 0.8, 1); }

@keyframes stroke {
  100% {
    opacity: 1;
    stroke-dashoffset: 0; } }
    .searchForm .search-mouse polyline {
      opacity: 0;
      animation: arrows .7s infinite, intro 1.5s forwards; }

@keyframes arrows {
  0%, 100% {
    transform: translate3d(0, 0, 0); }
  50% {
    transform: translate3d(0, -2px, 0); } }

@keyframes intro {
  0%, 50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.enquiryForm {
  position: fixed;
  z-index: 99999;
  height: 100vh;
  top: -120%;
  background-color: #263342;
  color: #ffffff;
  background-image: url("../img/enquiry-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: all .5s ease-in; }
  .enquiryForm > * {
    opacity: 0;
    transition: opacity .5s ease-in;
    transition-delay: .5s; }
  @media (max-width: 767px) {
    .enquiryForm {
      width: 100% !important; } }
  .enquiryForm .contact-form__title-wrap, .enquiryForm .contact-form__details-wrap {
    display: none; }
  .enquiryForm .close {
    position: fixed;
    display: inline-block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    transition: background .3s ease;
    transition-delay: 0s !important;
    top: 25px;
    right: 35px;
    cursor: pointer; }
    .enquiryForm .close:before, .enquiryForm .close:after {
      content: '';
      position: absolute;
      height: 2px;
      width: 100%;
      top: 50%;
      left: 0;
      margin-top: -1px;
      background: #8f9398;
      transform: scale(3); }
    .enquiryForm .close:before {
      transform: rotate(45deg); }
    .enquiryForm .close:after {
      transform: rotate(-45deg); }
    .enquiryForm .close:hover:before, .enquiryForm .close:hover:after {
      background: #FFFFFF; }
  .enquiryForm .error {
    border-bottom: 1px solid #f45c5b !important; }
  .enquiryForm__inner {
    width: 350px;
    margin: 0 auto;
    text-align: center; }
    .enquiryForm__inner hr {
      width: 70px;
      border-color: #ebebeb; }
    @media (min-width: 768px) {
      .enquiryForm__inner {
        width: 700px; } }
    .enquiryForm__inner input[type=text] {
      width: 100%;
      margin: 5px; }
    .enquiryForm__inner input[type=text], .enquiryForm__inner .enquiryForm__form__dropdown__placeholder, .enquiryForm__inner .enquiryForm__form__dropdown__choice {
      background: #1d2a38;
      border: none;
      padding: 20px;
      outline: 0;
      color: #fff;
      font-size: 15px;
      line-height: 22.5px;
      font-size: 0.9375rem;
      line-height: 1.125rem;
      font-weight: 500;
      letter-spacing: 0.05em; }
    .enquiryForm__inner .enquiryForm__form__dropdown__choice {
      padding: 15px 20px; }
  .enquiryForm__title {
    font-weight: 100;
    color: #ebebeb;
    font-size: 30px;
    line-height: 45px;
    font-size: 1.875rem;
    line-height: 2.25rem; }
  .enquiryForm__intro {
    color: #ebebeb !important;
    max-width: 200px;
    margin: 25px auto 50px auto; }
    @media (min-width: 768px) {
      .enquiryForm__intro {
        max-width: 350px; } }
  .enquiryForm__form__dropdown {
    position: relative; }
    .enquiryForm__form__dropdown__wrap {
      height: 0;
      overflow: hidden;
      transition: height 0.5s ease-in; }
    .enquiryForm__form__dropdown__placeholder, .enquiryForm__form__dropdown__choice {
      width: 350px;
      cursor: pointer;
      position: relative;
      margin: 5px;
      color: #ebebeb !important;
      text-align: left; }
      @media (min-width: 768px) {
        .enquiryForm__form__dropdown__placeholder, .enquiryForm__form__dropdown__choice {
          width: 680px;
          margin: 5px 5px 5px 15px; } }
    .enquiryForm__form__dropdown__choice {
      background: #394453 !important;
      margin: 0 5px 0 15px;
      border-top: 1px solid #1a1f26 !important; }
      .enquiryForm__form__dropdown__choice:first-child {
        border-top: none !important; }
      .enquiryForm__form__dropdown__choice:hover {
        background: #4e5d72 !important; }
    .enquiryForm__form__dropdown__arrow {
      position: absolute;
      top: 0;
      right: 0;
      width: 58px;
      bottom: 0;
      background-color: black; }
      .enquiryForm__form__dropdown__arrow span {
        position: absolute;
        left: 19px;
        top: 20px;
        height: 18px;
        width: 20px; }
  .enquiryForm__form__name, .enquiryForm__form__email, .enquiryForm__form__phone, .enquiryForm__form__company {
    display: inline-block;
    background-color: #263342;
    width: 100%; }
    @media (min-width: 768px) {
      .enquiryForm__form__name, .enquiryForm__form__email, .enquiryForm__form__phone, .enquiryForm__form__company {
        width: 340px; } }
  .enquiryForm__form__enquiry textarea {
    width: 350px;
    color: #ebebeb;
    padding: 20px;
    background: #1d2a38;
    height: 165px;
    border: none;
    margin: 5px; }
    .enquiryForm__form__enquiry textarea:focus {
      outline: none; }
    @media (min-width: 768px) {
      .enquiryForm__form__enquiry textarea {
        width: 680px;
        margin: 5px 5px 5px 15px; } }
  .enquiryForm__form__submit {
    margin-top: 50px; }
    .enquiryForm__form__submit__button {
      padding: 18px 50px;
      width: 170px;
      background-color: #f45c5b;
      color: #ebebeb;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      margin-top: 35px;
      font-size: 0.75rem; }
      .enquiryForm__form__submit__button:hover {
        background-color: #d85251; }
      @media (min-width: 768px) {
        .enquiryForm__form__submit__button {
          width: 240px; } }
  .enquiryForm__visible {
    height: 195px;
    margin-bottom: 5 px; }
  .enquiryForm.enquiry-open {
    transform: translateY(120%);
    overflow: scroll;
    padding-bottom: 80px; }
    .enquiryForm.enquiry-open > * {
      opacity: 1; }

.subNav {
  background-color: #bfbfbf; }
  .subNav.fixed-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9999;
    width: auto; }
    @media (min-width: 768px) {
      .subNav.fixed-nav {
        top: 0;
        left: 90px; } }
    @media (min-width: 1300px) {
      .subNav.fixed-nav {
        left: 240px; } }
    .subNav.fixed-nav + section {
      margin-top: 61px; }
  @media (min-width: 992px) {
    .subNav {
      padding: 0 50px; } }
  .subNav .outer {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center; }
    .subNav .outer li {
      list-style: none; }
      @media (min-width: 768px) {
        .subNav .outer li {
          display: inline-block; } }
    .subNav .outer .item {
      position: relative;
      padding: 0;
      font-size: 13px;
      color: #aaa; }
      .subNav .outer .item a {
        display: block;
        padding: 7px 0;
        text-transform: capitalize; }
        @media (min-width: 768px) {
          .subNav .outer .item a {
            padding: 23px 0; } }
      @media (min-width: 768px) {
        .subNav .outer .item {
          margin: 0 8px;
          display: inline-block;
          transition: all 0.3s; }
          .subNav .outer .item:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d85251;
            opacity: 0;
            transform: scaleX(0);
            transition: all 0.3s; }
          .subNav .outer .item:hover, .subNav .outer .item.sub-page-active {
            color: #1f2731; }
            .subNav .outer .item:hover:after, .subNav .outer .item.sub-page-active:after {
              opacity: 1;
              transform: scaleX(1); } }
      @media (min-width: 992px) {
        .subNav .outer .item {
          margin: 0 10px; } }
      @media (min-width: 1300px) {
        .subNav .outer .item {
          margin: 0 20px; } }
      @media (min-width: 1500px) {
        .subNav .outer .item {
          margin: 0 30px; } }
  @media (max-width: 767px) {
    .subNav .sub-fixed {
      height: 60px; }
    .subNav li {
      opacity: 0;
      transition: opacity 0.5s ease-out;
      transition-delay: 0.2s; }
    .subNav .sub-menu {
      text-align: right;
      width: 40px;
      height: 40px;
      float: right;
      position: relative;
      margin: 10px 18px 10px;
      background: #bfbfbf;
      font-size: 0;
      text-indent: -9999px;
      appearance: none;
      box-shadow: none;
      border-radius: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease-out; }
      .subNav .sub-menu:focus {
        outline: none; }
      .subNav .sub-menu span {
        display: block;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 2px;
        background: #f1f1f2;
        transition: transform 0.3s ease-out; }
        .subNav .sub-menu span:before, .subNav .sub-menu span:after {
          position: absolute;
          display: block;
          left: 0;
          width: 100%;
          height: 2px;
          background: #f1f1f2;
          content: ''; }
        .subNav .sub-menu span:before {
          top: -10px;
          transform-origin: top right;
          transition: transform 0.3s ease-out, width 0.3s ease-out, top 0.3s ease-out; }
        .subNav .sub-menu span:after {
          bottom: -10px;
          transform-origin: bottom right;
          transition: transform 0.3s ease-out, width 0.3s ease-out, bottom 0.3s ease-out; }
      .subNav .sub-menu--open span {
        transform: rotate(-90deg) scale(0.8); }
      .subNav .sub-menu--open span:before, .subNav .sub-menu--open span:after {
        width: 50% !important; }
      .subNav .sub-menu--open span:before {
        top: 0;
        transform: translateX(20px) rotate(-45deg); }
      .subNav .sub-menu--open span:after {
        bottom: 0;
        transform: translateX(20px) rotate(45deg); }
    .subNav .hidden-nav {
      height: 0;
      opacity: 0;
      pointer-events: none;
      text-align: left;
      padding-left: 15px; }
    .subNav .toggled-nav {
      transition: .3s ease;
      height: inherit;
      opacity: 1;
      text-align: left;
      padding-left: 15px; }
      .subNav .toggled-nav li {
        margin-bottom: 20px;
        opacity: 1;
        font-size: 14px;
        line-height: 21px;
        font-size: 0.875rem;
        line-height: 1.05rem; }
      .subNav .toggled-nav .sub-page-active a {
        color: #f45c5b; } }

.svg-images {
  margin-bottom: 50px; }
  .svg-images .svg-box {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    position: relative; }
    .svg-images .svg-box:before {
      position: absolute;
      content: " ";
      background-color: #1f2731;
      opacity: .5;
      width: 100%;
      height: 100%; }
    @media (min-width: 768px) {
      .svg-images .svg-box {
        width: 50%;
        float: left; }
        .svg-images .svg-box:last-of-type {
          float: right;
          margin-right: 0; } }
    @media (min-width: 992px) {
      .svg-images .svg-box {
        height: 375px; } }
    @media (min-width: 1300px) {
      .svg-images .svg-box {
        height: 485px; } }
    .svg-images .svg-box object {
      max-width: 100%;
      position: absolute;
      width: 80%;
      height: 100%;
      left: 0;
      top: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto; }

.left-svg {
  background-image: url(../img/home-left-svg.jpg); }

.right-svg {
  background-image: url(../img/home-right-svg.jpg); }

.buttonBlock {
  display: inline-block; }

.banner {
  position: relative; }
  .banner--call {
    cursor: pointer; }
  .banner .heroBanner {
    width: 100%;
    height: 500px; }
    @media (min-width: 768px) {
      .banner .heroBanner {
        height: 650px; } }
    @media (min-width: 992px) {
      .banner .heroBanner {
        height: 867px;
        height: 89vh; } }
    .banner .heroBannerImage {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-size: cover;
      background-position: center center; }
      .banner .heroBannerImage--overlay {
        position: absolute;
        width: 100%;
        height: 100%; }
    .banner .heroBanner__line {
      display: none;
      position: absolute;
      top: 70%;
      bottom: 0;
      left: 50%;
      border-right: 1px solid white;
      border-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.001)) 1 100%; }
      @media (min-width: 768px) {
        .banner .heroBanner__line {
          display: block; } }
  .banner .overlay {
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    @media (min-width: 768px) {
      .banner .overlay {
        padding-bottom: 50px; } }
    .banner .overlay .overlay-wrap {
      display: table;
      width: 100%;
      height: 100%;
      margin: 0 auto;
      max-width: 900px; }
    .banner .overlay .overlay-text {
      display: table-cell;
      vertical-align: middle;
      width: 100%; }
    .banner .overlay h1 {
      text-transform: uppercase;
      font-weight: 100;
      margin-bottom: 60px;
      letter-spacing: 5px; }
    .banner .overlay .subtitle {
      margin-bottom: 0;
      color: #fff; }
    .banner .overlay .posttitle {
      text-transform: uppercase;
      font-size: 29px;
      line-height: 43.5px;
      font-size: 1.8125rem;
      line-height: 2.175rem;
      letter-spacing: 0.06em;
      color: #fff;
      margin-bottom: 0;
      margin-top: 0; }

@media (min-width: 768px) {
  .banner + div {
    margin-top: -50px;
    margin-bottom: 35px; } }

@media (min-width: 768px) {
  .banner + .clc {
    margin-top: 0;
    margin-bottom: 0; } }

.banner + .subNav {
  margin-top: 0; }

.subtitle + .button {
  margin-top: 30px; }

.imageBoxRepeater .box {
  position: relative; }
  .imageBoxRepeater .box p.large {
    display: none;
    color: #fff; }
    .imageBoxRepeater .box p.large strong {
      font-weight: 400; }
  .imageBoxRepeater .box:nth-child(3) p.large {
    display: block; }

.imageBoxRepeater h3 {
  font-weight: 200;
  letter-spacing: 3px;
  text-transform: uppercase; }

.imageBoxRepeater .inner {
  position: absolute;
  top: 33%;
  width: 100%;
  transition: all 0.3s ease-in-out; }
  @media (min-width: 992px) {
    .imageBoxRepeater .inner {
      top: 27%; } }
  @media (min-width: 1300px) {
    .imageBoxRepeater .inner {
      top: 38%; } }

.imageBoxRepeater .img {
  width: 101%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 320px;
  position: relative; }
  @media (min-width: 768px) {
    .imageBoxRepeater .img {
      height: 300px; } }
  @media (min-width: 1300px) {
    .imageBoxRepeater .img {
      height: 500px; } }
  .imageBoxRepeater .img__overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }

.imageBoxRepeater .video-container {
  position: absolute;
  width: 100%;
  height: 320px;
  top: 0;
  left: 0;
  overflow: hidden; }
  .imageBoxRepeater .video-container video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    object-fit: cover; }
  @media (min-width: 768px) {
    .imageBoxRepeater .video-container {
      height: 300px; }
      .imageBoxRepeater .video-container video {
        height: 300px; } }
  @media (min-width: 1300px) {
    .imageBoxRepeater .video-container {
      height: 500px; }
      .imageBoxRepeater .video-container video {
        height: 500px; } }

.imageBoxRepeater .overlay {
  position: absolute;
  width: 101%;
  height: 100%;
  top: 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out; }
  .imageBoxRepeater .overlay .hoverContent {
    opacity: 0;
    height: 0;
    transition: all 0.3s ease-in-out; }
    .imageBoxRepeater .overlay .hoverContent p {
      color: #ebebeb;
      max-width: 90%;
      margin: 0 auto; }
      @media (min-width: 768px) {
        .imageBoxRepeater .overlay .hoverContent p {
          max-width: 70%; } }
      @media (min-width: 1300px) {
        .imageBoxRepeater .overlay .hoverContent p {
          max-width: 60%; } }
    .imageBoxRepeater .overlay .hoverContent hr {
      border-color: #ebebeb;
      width: 60px; }
  .imageBoxRepeater .overlay:hover {
    background: rgba(204, 77, 77, 0.8);
    transition: .3s ease-in-out; }
    .imageBoxRepeater .overlay:hover .inner {
      transition: all 0.3s ease-in-out;
      top: 18%; }
    .imageBoxRepeater .overlay:hover .hoverContent {
      transition: all 0.3s ease-in-out;
      opacity: 1;
      height: initial;
      margin: 0 auto; }
    @media (min-width: 768px) {
      .imageBoxRepeater .overlay:hover .inner {
        top: 2%; } }
    @media (min-width: 992px) {
      .imageBoxRepeater .overlay:hover .inner {
        top: 15%; } }
    @media (min-width: 1300px) {
      .imageBoxRepeater .overlay:hover .inner {
        top: 28%; } }

.imageBoxRepeater .six, .imageBoxRepeater .four {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }
  @media (min-width: 768px) {
    .imageBoxRepeater .six, .imageBoxRepeater .four {
      width: 50%;
      float: left; } }

@media (min-width: 992px) {
  .imageBoxRepeater .six {
    width: 60%;
    float: left; } }

@media (min-width: 992px) {
  .imageBoxRepeater .four {
    width: 40%;
    float: left; } }

.imageBoxRepeater .box {
  height: 320px; }
  @media (min-width: 768px) {
    .imageBoxRepeater .box {
      height: 300px; } }
  @media (min-width: 1300px) {
    .imageBoxRepeater .box {
      height: 500px; } }
  @media (min-width: 768px) {
    .imageBoxRepeater .box:nth-child(even) {
      float: right;
      margin-right: 0; } }

.text-banner {
  position: relative; }
  .text-banner .textBanner {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff !important;
    position: absolute;
    height: 100%; }
  .text-banner .overlay {
    background-color: rgba(31, 39, 49, 0.8);
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 100px 20px; }
    @media (min-width: 768px) {
      .text-banner .overlay {
        padding: 150px 20px; } }
    @media (min-width: 992px) {
      .text-banner .overlay {
        padding: 200px 20px; } }
    .text-banner .overlay .overlay-text {
      margin: 0 auto; }
      @media (min-width: 992px) {
        .text-banner .overlay .overlay-text {
          width: 75%; } }
      .text-banner .overlay .overlay-text p {
        color: #fff;
        line-height: 45px;
        font-weight: 100 !important;
        margin-top: 0;
        margin-bottom: 50px; }
        .text-banner .overlay .overlay-text p.no-button {
          margin-bottom: 0px; }
          .text-banner .overlay .overlay-text p.no-button p {
            margin-bottom: 0px; }
        .text-banner .overlay .overlay-text p .button {
          margin-bottom: 60px; }
        @media (min-width: 768px) {
          .text-banner .overlay .overlay-text p {
            font-size: 20px;
            line-height: 30px;
            font-size: 1.25rem;
            line-height: 1.5rem;
            font-weight: initial; } }
        @media (min-width: 992px) {
          .text-banner .overlay .overlay-text p {
            font-size: 30px;
            line-height: 45px;
            font-size: 1.875rem;
            line-height: 2.25rem;
            line-height: 60px;
            font-weight: 100; } }
        .text-banner .overlay .overlay-text p span {
          display: none;
          position: relative; }
          @media (min-width: 768px) {
            .text-banner .overlay .overlay-text p span {
              display: initial; } }
          .text-banner .overlay .overlay-text p span:after {
            border-bottom: 1px solid #fff;
            position: absolute;
            content: " ";
            left: 0;
            bottom: -8px;
            width: 100%; }
    .text-banner .overlay a.button {
      background: transparent;
      color: #fff;
      border: 1px solid #fff; }
      .text-banner .overlay a.button:hover {
        background-color: #ffffff;
        color: #1f2731; }
    .text-banner .overlay h1 {
      padding: 0;
      text-transform: uppercase; }
    .text-banner .overlay .subtitle {
      margin-bottom: 0; }
  .text-banner.red-overlay .overlay {
    background-color: rgba(244, 79, 88, 0.8); }
  .text-banner.red-overlay:before {
    display: none !important; }
  .text-banner.red-overlay + .img-negative {
    margin-top: -40px; }

@media (min-width: 768px) {
  .text-banner + div {
    margin-top: -50px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2; } }

.established {
  min-height: 320px;
  position: relative;
  text-align: center;
  padding: 30px 0; }
  @media (min-width: 768px) {
    .established {
      padding: 0; } }
  .established p#years {
    color: #5a606f;
    font-size: 70px;
    font-weight: 600;
    line-height: 0px; }
    .established p#years span {
      font-size: 30px;
      font-weight: 300; }
  .established #established {
    margin-bottom: 35px;
    font-size: 24px;
    line-height: 36px;
    font-size: 1.5rem;
    line-height: 1.8rem; }
  .established__number {
    color: #f45c5b !important;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    display: inline-block;
    font-size: 100px;
    line-height: 150px;
    font-size: 6.25rem;
    line-height: 7.5rem;
    line-height: 90px; }
  @media (min-width: 768px) {
    .established {
      margin-top: 20px;
      background-image: url(../img/established-background.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      background-position-y: 10px;
      min-height: 450px; }
      .established #established {
        margin-bottom: 75px; }
      .established .half {
        margin-top: 56px; }
      .established__number {
        font-size: 150px;
        line-height: 225px;
        font-size: 9.375rem;
        line-height: 11.25rem;
        line-height: 0; } }
  @media (min-width: 992px) {
    .established {
      background-position: center center;
      min-height: 567px; }
      .established .half {
        margin-top: 63px; }
      .established #established {
        font-size: 28px;
        line-height: 42px;
        font-size: 1.75rem;
        line-height: 2.1rem;
        margin-bottom: 125px;
        line-height: 8px; }
      .established__number {
        letter-spacing: -15px;
        font-size: 270px;
        line-height: 405px;
        font-size: 16.875rem;
        line-height: 20.25rem;
        font-weight: 500;
        line-height: 0; }
      .established p#years {
        line-height: 0px;
        margin-top: 40px; } }
  .established .inner-contained {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%; }
  .established .half {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .established .half {
        width: 49.15254%;
        float: left;
        margin-right: 1.69492%;
        text-align: center; }
        .established .half:last-of-type {
          float: right;
          margin-right: 0; } }

.introductionBlock {
  padding: 80px 0; }
  .introductionBlock .content-wrapper {
    position: relative; }
    .introductionBlock .content-wrapper:after {
      content: " ";
      position: absolute;
      height: 385px;
      width: 1px;
      background: #9da1ab;
      right: 50%;
      top: 8px;
      z-index: 1;
      display: none; }
      @media (min-width: 992px) {
        .introductionBlock .content-wrapper:after {
          display: block; } }
    .introductionBlock .content-wrapper.no-line:after {
      display: none; }
  .introductionBlock h2 {
    text-transform: uppercase;
    margin-top: 0;
    font-weight: 100;
    letter-spacing: 5px;
    margin-bottom: 25px;
    line-height: 35px;
    max-width: 75%; }
    @media (min-width: 1300px) {
      .introductionBlock h2 {
        font-size: 45px;
        line-height: 67.5px;
        font-size: 2.8125rem;
        line-height: 3.375rem;
        margin-bottom: 40px;
        line-height: 70px !important; } }
    @media (min-width: 1360) {
      .introductionBlock h2 {
        font-size: 52px;
        line-height: 78px;
        font-size: 3.25rem;
        line-height: 3.9rem; } }
  .introductionBlock h4 {
    margin-top: 0;
    line-height: 40px; }
  .introductionBlock p {
    line-height: 30px;
    margin: 0; }
    @media (min-width: 992px) {
      .introductionBlock p {
        padding-right: 5px; } }
  .introductionBlock hr {
    width: 22%;
    min-width: 150px;
    text-align: left;
    margin-left: 0;
    margin-bottom: 25px;
    border-top: none; }
  .introductionBlock .half {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .introductionBlock .half {
        width: 49.15254%;
        float: left;
        margin-right: 1.69492%; }
        .introductionBlock .half:last-of-type {
          float: right;
          margin-right: 0; } }
    @media (min-width: 768px) and (min-width: 992px) {
      .introductionBlock .half:last-of-type {
        padding: 7px 50px 1px 80px; } }
  .introductionBlock .full-width {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding: 30px 0;
    text-align: center; }
    @media (min-width: 768px) {
      .introductionBlock .full-width p {
        max-width: 80%;
        margin: 0 auto; } }
    @media (min-width: 992px) {
      .introductionBlock .full-width p {
        max-width: 65%;
        margin: 0 auto; } }

.introductionBlock + .text-banner:before {
  content: " ";
  position: absolute;
  height: 100px;
  width: 1px;
  background: #9da1ab;
  right: 50%;
  top: 0;
  z-index: 1;
  display: none; }
  @media (min-width: 992px) {
    .introductionBlock + .text-banner:before {
      display: block;
      padding: 50px 0; } }

.map {
  color: #ffffff;
  background-color: #1F2831;
  min-height: 650px;
  position: relative;
  display: none;
  overflow: hidden; }
  @media (min-width: 768px) {
    .map {
      display: block; } }
  @media (min-width: 992px) {
    .map {
      min-height: 800px; } }
  .map h2 {
    margin-bottom: 15px; }
  .map .countries {
    position: absolute;
    left: 0;
    top: 0;
    right: 0; }
    @media (min-width: 1300px) {
      .map .countries {
        top: 5%; } }
    .map .countries p {
      color: #ffffff;
      line-height: 30px; }
    .map .countries hr {
      border-color: #fff;
      width: 10%;
      text-align: left;
      margin: 30px 0; }
    @media (min-width: 1300px) {
      .map .countries .half-desktop {
        width: 50%;
        float: left; } }
    .map .countries .one-third {
      width: 100%;
      float: left;
      margin-left: 0;
      margin-right: 0; }
      @media (min-width: 768px) {
        .map .countries .one-third {
          width: 32.20339%;
          float: left;
          margin-right: 1.69492%; } }
      .map .countries .one-third:last-of-type {
        float: right;
        margin-right: 0; }
    .map .countries ul {
      list-style: none;
      padding: 0; }
      .map .countries ul li {
        color: #737986;
        margin-bottom: 15px;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        transition: color 0.2s ease-in-out;
        font-size: 14px;
        line-height: 21px;
        font-size: 0.875rem;
        line-height: 1.05rem; }
        .map .countries ul li.current {
          font-weight: 700;
          opacity: 1;
          color: #ffffff; }

.logosBlock {
  position: relative;
  margin-bottom: 40px;
  background: #ebebeb;
  margin-bottom: 0;
  padding-top: 30px; }
  @media (min-width: 768px) {
    .logosBlock {
      padding: 50px 0;
      margin-bottom: 30px;
      margin-top: 60px;
      background: #ffffff; } }
  .logosBlock .contained {
    position: relative;
    overflow: hidden;
    max-width: 2000px; }
  .logosBlock .grey-background {
    position: absolute;
    top: 22%;
    left: 0;
    width: 100%;
    height: 52%;
    background: #ebebeb; }
  .logosBlock h2 {
    text-transform: uppercase;
    margin-bottom: 35px; }
  .logosBlock hr {
    width: 200px;
    text-align: left;
    margin-left: 0;
    border-top: none; }
  .logosBlock .half {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    .logosBlock .half .logo {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%;
      margin-bottom: 15px; }
      .logosBlock .half .logo img {
        display: block;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        width: 85%;
        margin: 18px 0 40px 20px; }
        @media (min-width: 1300px) {
          .logosBlock .half .logo img {
            margin: 18px 0 40px 40px;
            width: 70%; } }
        .logosBlock .half .logo img:hover {
          filter: none;
          transition: .3s ease; }
      .logosBlock .half .logo:nth-child(even) {
        float: right;
        margin-right: 0; }
    @media (min-width: 768px) {
      .logosBlock .half {
        width: 49.15254%;
        float: left;
        margin-right: 1.69492%; }
        .logosBlock .half.title-half {
          position: absolute;
          top: 30%;
          left: 12%; }
        .logosBlock .half.title-half-right {
          right: 0;
          left: initial; }
        .logosBlock .half:last-of-type {
          float: right;
          margin-right: 0; } }
  .logosBlock .view-all {
    margin-top: 34px;
    width: 200px;
    background-color: #f45c5b;
    color: #fff;
    text-align: center;
    border-color: #f45c5b;
    padding: 18px 50px;
    font-size: 0.75rem;
    line-height: 0.9rem;
    cursor: pointer;
    border: none;
    margin-bottom: 40px; }
    .logosBlock .view-all:hover {
      background-color: #d85251;
      color: #fff;
      transition: 0.3s ease; }
    @media (min-width: 768px) {
      .logosBlock .view-all {
        margin-bottom: 0; } }

.caseStudies {
  padding: 80px 0;
  position: relative;
  overflow: hidden; }
  .caseStudies p:first-of-type {
    margin-top: 0;
    font-size: 18px;
    line-height: 27px;
    font-size: 1.125rem;
    line-height: 1.35rem; }
    @media (min-width: 768px) {
      .caseStudies p:first-of-type {
        font-size: inherit; } }
  .caseStudies .flickity-prev-next-button {
    display: inline-block; }
    .caseStudies .flickity-prev-next-button.next {
      right: -10%; }
    .caseStudies .flickity-prev-next-button.previous {
      left: -10%; }
  .caseStudies .cases__case__review p {
    line-height: 54px;
    font-weight: 100;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
    font-size: 1.25rem;
    line-height: 1.5rem; }
    @media (min-width: 1300px) {
      .caseStudies .cases__case__review p {
        font-size: 32px !important;
        line-height: 54px; } }
  .caseStudies .cases__case__author {
    padding-top: 20px;
    font-size: 19px;
    line-height: 19px;
    font-weight: 600; }

@media (max-width: 766px) {
  .contentRepeater .contained.boxesWrapper {
    display: inline-block; }
    .contentRepeater .contained.boxesWrapper:first-of-type {
      margin-bottom: 80px; } }

.contentRepeater h3 {
  text-transform: uppercase;
  margin-top: 0;
  font-weight: 100;
  letter-spacing: 3px;
  margin-bottom: 0; }

.contentRepeater hr {
  width: 60px;
  margin-top: 30px;
  margin-bottom: 40px;
  border-width: 1px;
  float: left;
  border-top: none; }
  @media (min-width: 768px) {
    .contentRepeater hr {
      float: initial; } }

.contentRepeater img {
  margin-bottom: 30px; }

.contentRepeater section {
  padding: 50px 0 65px 0;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center; }
  .contentRepeater section.white {
    background-image: url("../img/white-plane-bg.jpg"); }
  .contentRepeater section.blue {
    background-image: url("../img/blue-plane-bg.jpg");
    background-color: #1f2731;
    color: #ffffff; }
    .contentRepeater section.blue hr {
      border-color: #fff; }
    .contentRepeater section.blue p {
      color: #ffffff; }
  @media (min-width: 768px) {
    .contentRepeater section {
      padding: 120px 0 135px 0; } }

.contentRepeater .boxesWrapper .half {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .contentRepeater .boxesWrapper .half {
      width: 50%;
      float: left; } }
  .contentRepeater .boxesWrapper .half h3 {
    order: 1; }
  .contentRepeater .boxesWrapper .half hr {
    order: 2;
    margin-left: 0; }
  .contentRepeater .boxesWrapper .half__txt {
    order: 3; }
    .contentRepeater .boxesWrapper .half__txt p {
      margin-top: 0;
      margin-bottom: 45px; }
  .contentRepeater .boxesWrapper .half__img {
    order: 4;
    margin-bottom: 30px; }
  .contentRepeater .boxesWrapper .half__btn {
    order: 5;
    width: 180px; }
  @media (min-width: 767px) {
    .contentRepeater .boxesWrapper .half {
      display: block; }
      .contentRepeater .boxesWrapper .half__txt p {
        margin-top: 1em;
        margin-bottom: 55px; }
      .contentRepeater .boxesWrapper .half__btn {
        width: auto; }
      .contentRepeater .boxesWrapper .half__img {
        margin-bottom: initial; } }
  @media (min-width: 992px) {
    .contentRepeater .boxesWrapper .half hr {
      margin-left: 118px; } }

@media (min-width: 992px) {
  .contentRepeater .boxesWrapper h3, .contentRepeater .boxesWrapper p, .contentRepeater .boxesWrapper hr, .contentRepeater .boxesWrapper .button {
    margin-left: 118px; } }

@media (min-width: 768px) {
  .contentRepeater .boxesWrapper:nth-child(2) .half:last-child {
    float: right;
    margin-right: 0;
    margin-top: 350px; }
    .contentRepeater .boxesWrapper:nth-child(2) .half:last-child h3, .contentRepeater .boxesWrapper:nth-child(2) .half:last-child p, .contentRepeater .boxesWrapper:nth-child(2) .half:last-child hr, .contentRepeater .boxesWrapper:nth-child(2) .half:last-child .button {
      margin-left: 91px; } }

.contentRepeater .half p {
  font-size: 16px;
  line-height: 24px;
  font-size: 1rem;
  line-height: 1.2rem;
  line-height: 30px;
  margin-bottom: 55px; }
  @media (min-width: 768px) {
    .contentRepeater .half p {
      max-width: 75%; } }

.contentRepeater .half img {
  opacity: 0.85;
  width: 100%;
  transition: opacity 0.3s ease-in-out; }
  .contentRepeater .half img:hover {
    opacity: 1; }

.news, .jobs {
  display: block;
  overflow: hidden; }
  .news .heroBanner, .jobs .heroBanner {
    height: 60vh; }
  .news .article, .news .job, .jobs .article, .jobs .job {
    position: relative;
    background-color: #fff;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 992px) and (max-width: 1400px) {
      .news .article, .news .job, .jobs .article, .jobs .job {
        width: 50%;
        float: left; }
        .news .article:nth-of-type(2n), .news .job:nth-of-type(2n), .jobs .article:nth-of-type(2n), .jobs .job:nth-of-type(2n) {
          float: right;
          margin-right: 0; } }
    @media (min-width: 1401px) {
      .news .article, .news .job, .jobs .article, .jobs .job {
        width: 33.33333%;
        float: left; }
        .news .article:nth-of-type(3n), .news .job:nth-of-type(3n), .jobs .article:nth-of-type(3n), .jobs .job:nth-of-type(3n) {
          float: right;
          margin-right: 0; } }
    .news .article:nth-of-type(2n), .news .job:nth-of-type(2n), .jobs .article:nth-of-type(2n), .jobs .job:nth-of-type(2n) {
      background-color: #ebebeb; }
    .news .article__date, .news .job__date, .jobs .article__date, .jobs .job__date {
      color: #f45c5b; }
    .news .article__content, .news .job__content, .jobs .article__content, .jobs .job__content {
      padding: 70px 75px 80px;
      height: 480px; }
    .news .article__excerpt, .news .job__excerpt, .jobs .article__excerpt, .jobs .job__excerpt {
      color: #5a606f; }
    .news .article__header, .news .job__header, .jobs .article__header, .jobs .job__header {
      margin-top: 10px;
      color: #5a606f;
      cursor: pointer; }
    .news .article__image, .news .job__image, .jobs .article__image, .jobs .job__image {
      height: 420px;
      background-position: center center;
      background-size: cover;
      cursor: pointer; }
    .news .article .buttonBlock a, .news .job .buttonBlock a, .jobs .article .buttonBlock a, .jobs .job .buttonBlock a {
      position: absolute;
      bottom: 75px;
      left: 75px;
      color: #5a606f;
      border-color: #5a606f;
      cursor: pointer; }
      .news .article .buttonBlock a:hover, .news .job .buttonBlock a:hover, .jobs .article .buttonBlock a:hover, .jobs .job .buttonBlock a:hover {
        color: #fff;
        background-color: #1f2731; }

.learnMoreAbout {
  padding: 75px 0 125px 0;
  text-align: center; }
  .learnMoreAbout p {
    font-size: 32px;
    line-height: 48px;
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 80px; }
  @media (min-width: 1300px) {
    .learnMoreAbout {
      padding: 100px 0 150px 0; } }

.meetTheTeam {
  overflow: hidden;
  background-color: #f8f8f8;
  padding-top: 50px;
  position: relative; }
  .meetTheTeam .intro-section {
    position: relative;
    z-index: 100; }
  .meetTheTeam .icon-left {
    display: none;
    height: 60px;
    width: 50px;
    position: absolute;
    top: 36%;
    z-index: 999999999;
    content: " ";
    left: 50px; }
  .meetTheTeam .icon-right {
    display: none;
    height: 60px;
    width: 50px;
    position: absolute;
    top: 36%;
    z-index: 999;
    content: " ";
    right: 50px; }
  @media (min-width: 992px) {
    .meetTheTeam .icon-left, .meetTheTeam .icon-right {
      display: block;
      top: 50%; } }
  .meetTheTeam .team {
    margin-top: -200px;
    height: 450px; }
    @media (min-width: 767px) {
      .meetTheTeam .team {
        height: 600px; } }
    @media (min-width: 992px) {
      .meetTheTeam .team {
        margin-top: -150px; } }
    @media (min-width: 1660px) {
      .meetTheTeam .team {
        height: 750px; } }
  .meetTheTeam hr {
    width: 11%;
    text-align: left;
    margin-left: 0;
    margin-bottom: 25px;
    display: block; }
    @media (min-width: 768px) {
      .meetTheTeam hr {
        display: none; } }
    @media (min-width: 992px) {
      .meetTheTeam hr {
        display: block; } }
  @media (min-width: 768px) {
    .meetTheTeam .person-wrap {
      position: relative; } }
  .meetTheTeam .person-details {
    position: absolute;
    left: 0;
    bottom: -420px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    float: left;
    z-index: 50;
    max-width: 35%;
    font-size: 14px;
    line-height: 21px;
    font-size: 0.875rem;
    line-height: 1.05rem;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .meetTheTeam .person-details {
        max-width: 100%;
        bottom: -570px;
        font-size: 16px;
        line-height: 24px;
        font-size: 1rem;
        line-height: 1.2rem; } }
    @media (min-width: 992px) {
      .meetTheTeam .person-details {
        position: initial;
        margin-top: 170px; } }
    .meetTheTeam .person-details h3 {
      font-weight: 400;
      margin: 0 0 10px; }
    .meetTheTeam .person-details__title {
      margin: 0;
      font-weight: 600;
      line-height: 1.5;
      text-transform: uppercase; }
    .meetTheTeam .person-details__description {
      display: none;
      margin-top: 50px; }
      @media (min-width: 768px) {
        .meetTheTeam .person-details__description {
          display: block;
          margin-top: 30px; } }
      @media (min-width: 992px) {
        .meetTheTeam .person-details__description {
          margin-top: 50px; } }
    @media (min-width: 768px) {
      .meetTheTeam .person-details {
        width: 40.67797%;
        float: left;
        margin-right: 1.69492%; } }
  .meetTheTeam .person-photo {
    position: absolute;
    right: 0;
    bottom: -450px;
    max-height: 450px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .meetTheTeam .person-photo {
        left: 245px;
        bottom: -600px;
        max-height: 600px; } }
    @media (min-width: 992px) {
      .meetTheTeam .person-photo {
        left: 300px;
        right: 0; } }
    @media (min-width: 1401px) {
      .meetTheTeam .person-photo {
        left: 650px; } }
    @media (min-width: 1660px) {
      .meetTheTeam .person-photo {
        bottom: -518px;
        max-height: 518px; } }
    @media (min-width: 768px) {
      .meetTheTeam .person-photo {
        width: 40.10169%;
        float: left;
        margin-right: 1.69492%;
        float: right;
        margin-right: 0; } }
  .meetTheTeam .flickity-viewport {
    height: inherit !important; }

.is-selected .person-photo {
  opacity: 1;
  right: -50px; }
  @media (min-width: 992px) {
    .is-selected .person-photo {
      right: 0; } }

.splitParagraph {
  padding: 80px 0;
  color: #5a606f; }
  .splitParagraph .half {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .splitParagraph .half {
        width: 46.15385%;
        float: left;
        margin-right: 7.69231%; }
        .splitParagraph .half:last-of-type {
          float: right;
          margin-right: 0; } }
    .splitParagraph .half p {
      color: #5a606f;
      font-weight: 100; }
      .splitParagraph .half p strong {
        font-weight: 500; }

.breakOutContentWithLink {
  padding: 80px 0; }
  .breakOutContentWithLink p {
    font-size: 20px;
    line-height: 30px;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 0;
    text-align: center;
    line-height: 30px; }
    @media (min-width: 768px) {
      .breakOutContentWithLink p {
        font-size: 28px;
        line-height: 42px;
        font-size: 1.75rem;
        line-height: 2.1rem;
        line-height: 40px; } }
    @media (min-width: 992px) {
      .breakOutContentWithLink p {
        line-height: 50px; } }
  .breakOutContentWithLink .breakOutContentWithLink .button {
    border-color: #ebebeb;
    display: block;
    margin: 0 auto;
    max-width: 180px;
    color: #5a606f;
    margin-top: 35px;
    margin-bottom: 10px; }
  .breakOutContentWithLink .button {
    color: #5a606f;
    margin-top: 40px;
    max-width: 180px;
    display: block;
    margin: 40px auto 0;
    border-color: #1f2731; }
    .breakOutContentWithLink .button:hover {
      background: #1f2731;
      color: #fff; }

.centeredLargeContent {
  padding: 80px 0; }
  .centeredLargeContent p {
    font-size: 22px;
    line-height: 33px;
    font-size: 1.375rem;
    line-height: 1.65rem;
    margin: 0;
    text-align: center;
    line-height: 30px; }
  @media (min-width: 768px) {
    .centeredLargeContent p {
      font-size: 30px;
      line-height: 45px;
      font-size: 1.875rem;
      line-height: 2.25rem;
      line-height: 40px; } }
  @media (min-width: 992px) {
    .centeredLargeContent {
      max-width: 69%;
      margin: 0 auto; }
      .centeredLargeContent p {
        line-height: 50px; } }
  @media (min-width: 1300px) {
    .centeredLargeContent {
      padding: 140px 0; } }

.leftLargeContent {
  padding: 80px 0; }
  .leftLargeContent p {
    font-size: 22px;
    line-height: 33px;
    font-size: 1.375rem;
    line-height: 1.65rem;
    margin: 0;
    text-align: left;
    line-height: 30px; }
    @media (min-width: 768px) {
      .leftLargeContent p {
        font-size: 30px;
        line-height: 45px;
        font-size: 1.875rem;
        line-height: 2.25rem;
        line-height: 40px; } }
    @media (min-width: 992px) {
      .leftLargeContent p {
        line-height: 50px; } }

.contentFullWidth {
  padding: 80px 0; }

.img-alone .img {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  @media (min-width: 768px) {
    .img-alone .img {
      height: 750px; } }

.newsletter {
  width: 100%;
  margin: 0 !important;
  padding: 17px 0;
  text-align: center;
  background-color: #ebebeb; }
  .newsletter.fixed-nav {
    position: fixed;
    top: 0;
    z-index: 9999; }
  .newsletter__text {
    font-size: 24px;
    line-height: 36px;
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 300; }
  .newsletter__email {
    padding: 8px 20px 16px;
    border: none;
    line-height: 0.9rem;
    font-size: 24px;
    line-height: 36px;
    font-size: 1.5rem;
    line-height: 1.8rem;
    width: 33%;
    min-width: 300px; }
    .newsletter__email:focus {
      outline: none; }
  .newsletter__subscribe {
    appearance: none;
    -webkit-appearance: none;
    color: #fff;
    background-color: #f45c5b;
    border: 1px solid #f45c5b;
    padding: 18px 50px;
    font-size: 0.75rem;
    line-height: 0.9rem;
    text-align: center; }
    .newsletter__subscribe:hover {
      transition: 0.3s ease;
      background: #d85251;
      color: #fff; }
  .newsletter__text, .newsletter__email, .newsletter__subscribe {
    display: block;
    margin: 0 auto;
    margin-bottom: 5px; }
    @media (min-width: 992px) {
      .newsletter__text, .newsletter__email, .newsletter__subscribe {
        display: inline-block; } }
  @media (min-width: 992px) {
    .newsletter__text {
      margin-right: 20px; }
    .newsletter__email {
      margin-right: 20px; } }
  .newsletter .error {
    border-bottom: 1px solid #f45c5b; }

.circular-slider {
  position: relative; }
  .circular-slider:before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    content: " ";
    background-image: url("../img/slider-overlay.png");
    background-image: url("../img/slider-overlay.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 995;
    pointer-events: none; }
  .circular-slider .intro-section {
    position: absolute;
    top: 80px;
    left: 120px;
    z-index: 996;
    pointer-events: none; }
  .circular-slider .carousel-cell {
    height: 860px;
    width: 100%; }
  .circular-slider .slide-wrapper {
    position: relative; }
  .circular-slider .icon-left {
    height: 60px;
    width: 50px;
    position: absolute;
    top: 50%;
    z-index: 999999999;
    content: " ";
    left: 50px; }
  .circular-slider .icon-right {
    height: 60px;
    width: 50px;
    position: absolute;
    top: 50%;
    z-index: 999;
    content: " ";
    right: 50px; }
  .circular-slider .slide-info {
    position: absolute;
    top: 82%;
    left: 5%;
    right: 5%;
    z-index: 999;
    opacity: 0; }
    @media (min-width: 768px) {
      .circular-slider .slide-info {
        left: 120px;
        right: initial;
        max-width: 50%; } }
    @media (min-width: 992px) {
      .circular-slider .slide-info {
        top: 60%;
        max-width: 18%; } }
    .circular-slider .slide-info.active-text {
      opacity: 1;
      transition: .5s ease; }
  .circular-slider .slide-transBg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.01); }
  .circular-slider .slide-photo {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 860px;
    width: 100%; }

.articleDetail__hero {
  width: 100%;
  height: 500px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }
  @media (min-width: 768px) {
    .articleDetail__hero {
      height: 650px; } }
  @media (min-width: 992px) {
    .articleDetail__hero {
      height: 867px;
      height: 89vh; } }
  .articleDetail__hero__titles {
    position: absolute;
    bottom: 75px;
    left: 60px; }
    .articleDetail__hero__titles__subtitle {
      margin-bottom: 25px;
      color: #fff !important;
      font-size: 21px;
      line-height: 31.5px;
      font-size: 1.3125rem;
      line-height: 1.575rem; }
    .articleDetail__hero__titles__title {
      margin-bottom: 0;
      text-transform: uppercase;
      color: #fff;
      font-size: 40px;
      line-height: 60px;
      font-size: 2.5rem;
      line-height: 3rem;
      font-weight: 100;
      letter-spacing: 5px; }
      .articleDetail__hero__titles__title--blue {
        color: #263342; }
      .articleDetail__hero__titles__title--smaller {
        font-size: 30px;
        line-height: 45px;
        font-size: 1.875rem;
        line-height: 2.25rem; }
    @media (min-width: 768px) {
      .articleDetail__hero__titles {
        bottom: 10%;
        left: 100px;
        max-width: 60%; }
        .articleDetail__hero__titles__title {
          font-size: 50px;
          line-height: 75px;
          font-size: 3.125rem;
          line-height: 3.75rem; }
          .articleDetail__hero__titles__title--smaller {
            font-size: 40px;
            line-height: 60px;
            font-size: 2.5rem;
            line-height: 3rem; } }
    @media (min-width: 992px) {
      .articleDetail__hero__titles {
        bottom: 20%;
        left: 200px; }
        .articleDetail__hero__titles__title {
          font-size: 60px;
          line-height: 90px;
          font-size: 3.75rem;
          line-height: 4.5rem; }
          .articleDetail__hero__titles__title--smaller {
            font-size: 45px;
            line-height: 67.5px;
            font-size: 2.8125rem;
            line-height: 3.375rem; } }
  .articleDetail__hero__back {
    position: absolute;
    top: 100px;
    left: 60px;
    color: #fff;
    font-weight: 200;
    border-bottom: 1px solid #fff;
    padding-bottom: 7px;
    font-size: 20px;
    line-height: 30px;
    font-size: 1.25rem;
    line-height: 1.5rem; }
    @media (min-width: 768px) {
      .articleDetail__hero__back {
        left: 100px; } }
    @media (min-width: 992px) {
      .articleDetail__hero__back {
        left: 200px; } }
  .articleDetail__hero .icon-prev {
    position: absolute;
    top: 107px;
    left: 38px;
    height: 22px;
    width: 22px;
    background-image: url("../img/icons/png/prev.png") !important; }
    @media (min-width: 768px) {
      .articleDetail__hero .icon-prev {
        left: 78px; } }
    @media (min-width: 992px) {
      .articleDetail__hero .icon-prev {
        left: 178px; } }
  .articleDetail__hero__share {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 !important; }
    .articleDetail__hero__share__icon {
      height: 84px;
      width: 84px;
      position: relative;
      padding: 35px 50px !important; }
      .articleDetail__hero__share__icon-span {
        position: absolute;
        top: 50%;
        left: 50%;
        height: 22px;
        width: 22px;
        transform: translate(-50%, -50%); }
    .articleDetail__hero__share .icon-share-fb {
      height: 40px;
      width: 20px; }
    .articleDetail__hero__share .icon-share-twitter {
      height: 34px;
      width: 34px; }
    .articleDetail__hero__share .icon-share-google {
      height: 38px;
      width: 38px;
      top: 58%;
      left: 54%; }
    .articleDetail__hero__share .icon-share-linkedin {
      height: 34px;
      width: 30px; }
    .articleDetail__hero__share .icon-share-mail {
      height: 25px;
      width: 35px; }
    .articleDetail__hero__share .icon-share-close {
      height: 32px;
      width: 30px; }
    @media (min-width: 768px) {
      .articleDetail__hero__share {
        bottom: 12%; } }
    @media (min-width: 992px) {
      .articleDetail__hero__share {
        bottom: 25%; } }
    .articleDetail__hero__share__menu {
      height: 84px;
      overflow: hidden;
      transition: all .5s ease-in-out; }
      .articleDetail__hero__share__menu a {
        display: block; }
      .articleDetail__hero__share__menu.is-open {
        height: 504px; }
  .articleDetail__hero:after {
    content: '';
    position: absolute;
    left: 50%;
    border-right: 1px solid white;
    border-image: linear-gradient(to bottom, white, black) 1 100%;
    bottom: -50px;
    height: 100px;
    display: none; }
    @media (min-width: 768px) {
      .articleDetail__hero:after {
        display: block; } }
    @media (min-width: 992px) {
      .articleDetail__hero:after {
        bottom: -140px;
        height: 240px; } }

.articleDetail__meta {
  padding: 0 30px;
  margin-top: 50px; }
  .articleDetail__meta__date {
    color: #f45c5b !important;
    font-size: 24px;
    line-height: 36px;
    font-size: 1.5rem;
    line-height: 1.8rem; }
  .articleDetail__meta__heading {
    font-size: 30px;
    line-height: 45px;
    font-size: 1.875rem;
    line-height: 2.25rem;
    line-height: 55px;
    margin-bottom: 45px; }
  @media (min-width: 767px) {
    .articleDetail__meta {
      padding: 0 60px; } }
  @media (min-width: 768px) {
    .articleDetail__meta {
      padding: 0 100px;
      margin-top: 150px; } }

.articleDetail__section div {
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .articleDetail__section div {
      margin-bottom: 70px; } }

.articleDetail__section__content__first {
  padding: 0; }
  .articleDetail__section__content__first p:first-child {
    font-weight: 400;
    margin-top: 0; }
  .articleDetail__section__content__first p {
    margin-bottom: 45px; }
  @media (min-width: 767px) {
    .articleDetail__section__content__first {
      padding: 0 60px; } }
  @media (min-width: 768px) {
    .articleDetail__section__content__first {
      padding: 0 100px;
      column-count: 2; } }

.articleDetail__section__content {
  padding: 0; }
  @media (min-width: 767px) {
    .articleDetail__section__content {
      padding: 0 60px; } }
  @media (min-width: 768px) {
    .articleDetail__section__content {
      padding: 0 100px; } }

.articleDetail__section__pullout {
  min-width: 290px;
  width: 80%;
  margin: 0 auto; }
  .articleDetail__section__pullout__text {
    font-size: 30px;
    line-height: 45px;
    font-size: 1.875rem;
    line-height: 2.25rem;
    line-height: 55px;
    margin-bottom: 50px; }
  .articleDetail__section__pullout__link {
    text-align: center; }
    .articleDetail__section__pullout__link .button {
      border-color: #5a606f;
      color: #5a606f;
      margin: 80px auto; }
      .articleDetail__section__pullout__link .button:hover {
        background-color: #f45c5b;
        border-color: #f45c5b; }
  @media (min-width: 768px) {
    .articleDetail__section__pullout {
      width: 500px; } }

.relatedArticles {
  background-color: #ebebeb; }
  .relatedArticles__title {
    text-align: center;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 25px;
    margin-top: 65px; }
  .relatedArticles hr {
    width: 75px;
    margin-bottom: 60px; }

.contentLeftImageRight {
  padding: 80px 0; }
  .contentLeftImageRight h3 {
    text-transform: uppercase;
    margin-top: 0;
    font-weight: 100;
    letter-spacing: 3px;
    margin-bottom: 0; }
  .contentLeftImageRight hr {
    width: 60px;
    margin-top: 30px;
    margin-bottom: 40px;
    border-width: 1px;
    margin-left: 0; }
  .contentLeftImageRight img {
    margin-bottom: 30px; }
  .contentLeftImageRight .half {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .contentLeftImageRight .half {
        width: 46.26866%;
        float: left;
        margin-right: 7.46269%; }
        .contentLeftImageRight .half:last-of-type {
          float: right;
          margin-right: 0; } }
  .contentLeftImageRight--circular hr {
    display: none; }
    @media (min-width: 768px) {
      .contentLeftImageRight--circular hr {
        display: block; } }
  .contentLeftImageRight--circular .contentLeftImageRight__img {
    height: 250px;
    width: 250px;
    background-size: cover;
    background-position: center center;
    border-radius: 50%;
    padding: 0;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .contentLeftImageRight--circular .contentLeftImageRight__img {
        height: 300px;
        width: 300px; } }
    @media (min-width: 992px) {
      .contentLeftImageRight--circular .contentLeftImageRight__img {
        width: 500px;
        height: 500px; } }
  .contentLeftImageRight--circular .half {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .contentLeftImageRight--circular .half:last-child {
        float: right;
        margin-right: 0; } }
  @media (min-width: 768px) {
    .contentLeftImageRight--circular .contentLeftImageRight__imageDiv {
      width: 64.1791%;
      float: left;
      margin-right: 7.46269%; } }
  @media (min-width: 768px) {
    .contentLeftImageRight--circular .contentLeftImageRight__contentDiv {
      width: 28.35821%;
      float: left;
      margin-right: 7.46269%; } }

.serviceBoxesWithButton {
  padding: 100px 0;
  background-image: url("../img/inner-plane-bg.jpg"); }
  .serviceBoxesWithButton .service {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    margin-bottom: 80px; }
    .serviceBoxesWithButton .service hr {
      max-width: 10%;
      margin: 35px auto;
      border-color: #ebebeb; }
    .serviceBoxesWithButton .service h3 {
      text-transform: uppercase;
      margin-top: 0;
      font-weight: 100;
      letter-spacing: 3px;
      margin-bottom: 0;
      line-height: 40px; }
    .serviceBoxesWithButton .service .button {
      border-color: #5a606f;
      color: #5a606f;
      display: inline-block; }
      .serviceBoxesWithButton .service .button:hover {
        transition: .3s ease;
        background: #1f2731;
        color: #fff; }
    @media (min-width: 768px) {
      .serviceBoxesWithButton .service {
        margin-bottom: 220px;
        width: 49.15254%;
        float: left;
        margin-right: 1.69492%; }
        .serviceBoxesWithButton .service:nth-child(even) {
          float: right;
          margin-right: 0; }
        .serviceBoxesWithButton .service:nth-child(3), .serviceBoxesWithButton .service:nth-child(4) {
          margin-bottom: 120px; } }

.statementBoxes .box {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative; }
  @media (min-width: 768px) {
    .statementBoxes .box {
      width: 50%;
      float: left; }
      .statementBoxes .box:last-of-type {
        float: right;
        margin-right: 0; } }
  .statementBoxes .box .text-overlay {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%; }
    .statementBoxes .box .text-overlay .inner {
      display: table-cell;
      vertical-align: middle;
      padding: 0 50px; }
      @media (min-width: 992px) {
        .statementBoxes .box .text-overlay .inner {
          padding: 0 80px; } }
      .statementBoxes .box .text-overlay .inner h4, .statementBoxes .box .text-overlay .inner p {
        color: #fff;
        margin: 0; }
      .statementBoxes .box .text-overlay .inner h4 {
        font-weight: 100;
        line-height: 40px; }
  .statementBoxes .box hr {
    max-width: 15%;
    margin: 30px 0 30px;
    border-color: #ffffff; }
    @media (min-width: 992px) {
      .statementBoxes .box hr {
        max-width: 10%; } }

@media (max-width: 767px) {
  .statementBoxes .contained {
    margin: 0; } }

.imageGrid__clear {
  float: right;
  margin-right: 0; }

.imageGrid__five .imageGrid__array {
  width: 50%;
  float: left; }

.imageGrid__five .imageGrid__big {
  width: 50%;
  float: left; }

.imageGrid__three .imageGrid__array {
  width: 25%;
  float: left; }

.imageGrid__three .imageGrid__big {
  width: 75%;
  float: left; }

.imageGrid__big.half, .imageGrid__big.three-quarter {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 200px; }
  @media (min-width: 768px) {
    .imageGrid__big.half, .imageGrid__big.three-quarter {
      height: 300px; } }
  @media (min-width: 992px) {
    .imageGrid__big.half, .imageGrid__big.three-quarter {
      height: 500px; } }
  @media (min-width: 1300px) {
    .imageGrid__big.half, .imageGrid__big.three-quarter {
      height: 750px; } }

.imageGrid__array__4, .imageGrid__array__2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100px; }
  @media (min-width: 768px) {
    .imageGrid__array__4, .imageGrid__array__2 {
      height: 150px; } }
  @media (min-width: 992px) {
    .imageGrid__array__4, .imageGrid__array__2 {
      height: 250px; } }
  @media (min-width: 1300px) {
    .imageGrid__array__4, .imageGrid__array__2 {
      height: 375px; } }

.imageGrid__array__4 {
  width: 50%;
  float: left; }

.imageGrid__array__2 {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }

.accreditations h2 {
  max-width: 40%;
  margin-bottom: 25px; }

.accreditations hr {
  width: 100px;
  margin-bottom: 40px;
  margin-left: 0; }

.accreditations__logowrap {
  width: 100%;
  height: 200px;
  margin-bottom: 40px; }

.accreditations__logo {
  width: 48.07692%;
  float: left;
  margin-right: 3.84615%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  max-height: 100px;
  margin-bottom: 10px;
  padding: 0 15px; }
  .accreditations__logo:nth-child(2n) {
    float: right;
    margin-right: 0; }
  @media (min-width: 767px) {
    .accreditations__logo {
      max-height: 200px;
      margin-bottom: 40px; } }
  @media (min-width: 768px) {
    .accreditations__logo {
      width: 23.58491%;
      float: left;
      margin-right: 1.88679%; }
      .accreditations__logo:nth-child(4n) {
        float: right;
        margin-right: 0; } }
  .accreditations__logo:last-child {
    float: right;
    margin-right: 0; }

.accreditations__p {
  max-width: 75%;
  margin-bottom: 40px;
  margin-top: 50px; }

@media (min-width: 992px) {
  .accreditations {
    margin-bottom: 120px; } }

.imageLeftRight {
  margin-bottom: 60px; }
  @media (min-width: 768px) {
    .imageLeftRight {
      margin-bottom: 0; } }
  .imageLeftRight .half {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 768px) {
      .imageLeftRight .half {
        width: 50%;
        float: left; }
        .imageLeftRight .half:last-of-type {
          float: right;
          margin-right: 0; }
        .imageLeftRight .half img {
          width: 100%; } }

.jobs {
  min-height: 500px; }
  .jobs .job {
    min-height: 500px;
    padding: 50px; }
    .jobs .job .buttonBlock {
      display: block;
      margin-top: 50px;
      margin-bottom: 25px; }
      .jobs .job .buttonBlock a {
        position: static; }
    .jobs .job__closing {
      color: #f45c5b; }
  .jobs__no-openings {
    margin-top: 100px; }

.job__detail {
  padding: 0 30px;
  max-width: 540px;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .job__detail {
      padding: 0;
      max-width: 768px; } }
  .job__detail .job {
    padding: 80px 0 100px 0; }
    .job__detail .job__date {
      margin-bottom: 0;
      color: #f45c5b; }
    .job__detail .job__title {
      font-weight: 100;
      margin-top: 10px;
      margin-bottom: 40px; }
    .job__detail .job__form {
      margin: 60px 0; }
      .job__detail .job__form input[type=text], .job__detail .job__form textarea {
        border: none;
        padding: 20px;
        outline: 0;
        color: #263342;
        background-color: #ebebeb;
        font-size: 15px;
        line-height: 22.5px;
        font-size: 0.9375rem;
        line-height: 1.125rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        width: 100%; }
        .job__detail .job__form input[type=text].error, .job__detail .job__form textarea.error {
          background-color: #ffd2d2; }
      .job__detail .job__form > div {
        margin-bottom: 6px; }
      .job__detail .job__form__name {
        width: 100%; }
      .job__detail .job__form__email {
        display: inline-block;
        width: 49%;
        width: calc(50% - 3px);
        margin-right: 3px; }
      .job__detail .job__form__phone {
        display: inline-block;
        width: 49%;
        width: calc(50% - 3px);
        margin-left: 3px; }
      .job__detail .job__form__comments textarea {
        min-height: 150px; }
      .job__detail .job__form__submit > a {
        margin-top: 25px;
        background-color: #f45c5b;
        float: left;
        padding: 15px 40px;
        color: white;
        font-weight: 100;
        cursor: pointer;
        transition: background-color 0.3s ease; }
        .job__detail .job__form__submit > a:hover {
          background-color: #f12c2b; }
      .job__detail .job__form__submit:after {
        content: '';
        display: table;
        clear: both; }
      .job__detail .job__form .hidden {
        display: none; }
    .job__detail .job__post {
      margin-top: 50px; }
      .job__detail .job__post p:first-of-type {
        font-weight: 600; }
      .job__detail .job__post button {
        border: 0;
        background-color: #f45c5b;
        padding: 15px 40px;
        color: white;
        font-weight: 100;
        cursor: pointer;
        transition: background-color 0.3s ease; }
        .job__detail .job__post button:hover {
          background-color: #f12c2b; }
    .job__detail .job table {
      margin-bottom: 30px; }
    .job__detail .job tr > td:first-of-type {
      color: #263342;
      letter-spacing: 1px;
      min-width: 140px;
      font-weight: 600;
      padding: 4px 0; }
      @media (min-width: 768px) {
        .job__detail .job tr > td:first-of-type {
          min-width: 280px; } }
    .job__detail .job tr > td:nth-of-type(2) {
      color: #263342;
      letter-spacing: 1px;
      font-weight: 100; }
    .job__detail .job td.red {
      color: #f45c5b !important; }
    .job__detail .job ul li {
      color: #263342;
      font-weight: 100;
      letter-spacing: 1px;
      line-height: 30px; }

.contact .quarter {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }
  @media (min-width: 768px) {
    .contact .quarter {
      width: 28.57143%;
      float: left;
      margin-right: 7.14286%; }
      .contact .quarter:last-of-type {
        float: right;
        margin-right: 0; } }
  .contact .quarter:last-child {
    position: relative;
    color: #f45c5b; }
    .contact .quarter:last-child p {
      color: #f45c5b; }
      .contact .quarter:last-child p a {
        color: #f45c5b;
        cursor: pointer; }
    @media (min-width: 1400px) {
      .contact .quarter:last-child .introductionBlock__outline {
        position: absolute;
        pointer-events: none;
        top: -40px;
        left: -50px;
        right: -50px;
        bottom: -100%;
        border: 1px solid red; } }
  @media (min-width: 768px) and (max-width: 1075px) {
    .contact .quarter strong {
      display: block; } }

.contact h2 {
  line-height: initial !important; }
  @media (min-width: 1300px) {
    .contact h2 {
      font-size: 45px;
      line-height: 67.5px;
      font-size: 2.8125rem;
      line-height: 3.375rem; } }

.contact h3 {
  margin-top: 0;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 30px; }
  @media (min-width: 768px) {
    .contact h3 {
      margin-top: initial; } }

.contact .custom-map {
  height: 600px;
  width: 100%;
  background: #EAEAEA; }
/*  .contact .custom-map a[href^="http://maps.google.com/maps"] {
    display: none !important; }
  .contact .custom-map a[href^="https://maps.google.com/maps"] {
    display: none !important; }
  .contact .custom-map .gmnoprint a, .contact .custom-map .gmnoprint span, .contact .custom-map .gm-style-cc {
    display: none; }
  .contact .custom-map .gmnoprint div {
    background: none !important; }
*/
.contact .contact-form {
  padding: 30px;
  background: #263342;
  background-image: url("../img/enquiry-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }
  .contact .contact-form .enquiryForm {
    background-image: none;
    background-color: initial;
    position: initial; }
  .contact .contact-form__title-wrap, .contact .contact-form__details-wrap {
    display: block !important;
    text-align: left;
    color: #ebebeb; }
    .contact .contact-form__title-wrap h2, .contact .contact-form__details-wrap h2 {
      margin-top: 0;
      font-size: 54px;
      line-height: 81px;
      font-size: 3.375rem;
      line-height: 4.05rem;
      letter-spacing: 0.06em;
      font-weight: 300; }
  .contact .contact-form__title-wrap hr {
    width: 105px;
    border-color: #ebebeb;
    margin-top: 45px;
    margin-bottom: 45px;
    margin-left: 0; }
  .contact .contact-form__submit {
    padding: 18px 50px;
    width: 170px;
    background-color: #f45c5b;
    color: #ebebeb;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 35px;
    text-align: center;
    width: 100%;
    margin-right: 5px;
    font-size: 0.75rem; }
    .contact .contact-form__submit:after {
      clear: both; }
    .contact .contact-form__submit:hover {
      background-color: #d85251; }
    @media (min-width: 768px) {
      .contact .contact-form__submit {
        width: 240px;
        float: right; } }
  .contact .contact-form__details-wrap {
    margin-left: 15px; }
    .contact .contact-form__details-wrap p, .contact .contact-form__details-wrap a {
      display: inline-block;
      color: #ebebeb; }
    .contact .contact-form__details-wrap p {
      margin-top: 48px; }
  @media (min-width: 768px) {
    .contact .contact-form {
      padding: 118px 25px 128px; } }
  @media (min-width: 992px) {
    .contact .contact-form {
      padding: 118px 50px 128px; } }
  @media (min-width: 1300px) {
    .contact .contact-form {
      padding: 118px 200px 128px; } }
  .contact .contact-form .enquiryForm {
    height: initial !important;
    position: initial !important; }
    .contact .contact-form .enquiryForm > * {
      opacity: 1 !important; }
    .contact .contact-form .enquiryForm__inner {
      max-width: 700px;
      width: 90%; }
    .contact .contact-form .enquiryForm__form__name, .contact .contact-form .enquiryForm__form__email, .contact .contact-form .enquiryForm__form__phone, .contact .contact-form .enquiryForm__form__company {
      width: 45%;
      width: calc(50% - 10px); }
    .contact .contact-form .enquiryForm__form__dropdown__placeholder {
      width: 90%;
      width: calc(100% - 20px);
      margin: 5px 5px 5px 15px; }
    .contact .contact-form .enquiryForm__form__dropdown__choice {
      width: 90%;
      width: calc(100% - 20px);
      margin: 0 5px 0 15px; }
    .contact .contact-form .enquiryForm__form__enquiry textarea {
      width: 90%;
      width: calc(100% - 20px);
      margin: 5px 5px 0 15px; }
    .contact .contact-form .enquiryForm__inner {
      margin-right: 0; }
    .contact .contact-form .enquiryForm__title, .contact .contact-form .enquiryForm__intro, .contact .contact-form .enquiryForm__form__submit, .contact .contact-form .enquiryForm__hr {
      display: none; }
  .contact .contact-form .close {
    display: none !important; }
