/**
 * Theme Name: ExtraMile Communications WordPress Theme
 * Theme URI: https://www.extramilecommunications.com/
 * Author: ExtraMile Dev Squad
 * Author URI: https://www.extramilecommunications.com/
 * Description: The base theme template for ExtraMile
 * Version: 1.0
*/
/**
 * Dependencies.
 */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
 .owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
  }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
  }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
  }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
  }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
  }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%;
  }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none;
  }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
  }
  .owl-carousel.owl-loaded {
    display: block;
  }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block;
  }
  .owl-carousel.owl-hidden {
    opacity: 0;
  }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
  }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .owl-carousel.owl-rtl {
    direction: rtl;
  }
  .owl-carousel.owl-rtl .owl-item {
    float: right;
  }
  /* No Js */
  .no-js .owl-carousel {
    display: block;
  }
  /*
   *  Owl Carousel - Animate Plugin
   */
  .owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
            animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  .owl-carousel .owl-animated-in {
    z-index: 0;
  }
  .owl-carousel .owl-animated-out {
    z-index: 1;
  }
  .owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
            animation-name: fadeOut;
  }
  @-webkit-keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  /*
   * 	Owl Carousel - Auto Height Plugin
   */
  .owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
  }
  /*
   * 	Owl Carousel - Lazy Load Plugin
   */
  .owl-carousel .owl-item {
    /**
              This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
              calculation of the height of the owl-item that breaks page layouts
           */
  }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
  }
  .owl-carousel .owl-item .owl-lazy[src^=""],
  .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
  }
  .owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  /*
   * 	Owl Carousel - Video Plugin
   */
  .owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
  }
  .owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -o-transition: transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease;
  }
  .owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
  }
  .owl-carousel .owl-video-playing .owl-video-tn,
  .owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
  }
  .owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
            background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
  }
  .owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
  }
  /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  /* Document
     ========================================================================== */
  /**
   * 1. Correct the line height in all browsers.
   * 2. Prevent adjustments of font size after orientation changes in iOS.
   */
  html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
  }
  /* Sections
     ========================================================================== */
  /**
   * Remove the margin in all browsers.
   */
  body {
    margin: 0;
  }
  /**
   * Render the `main` element consistently in IE.
   */
  main {
    display: block;
  }
  /**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  /* Grouping content
     ========================================================================== */
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  hr {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
  }
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
  }
  /* Text-level semantics
     ========================================================================== */
  /**
   * Remove the gray background on active links in IE 10.
   */
  a {
    background-color: transparent;
  }
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
  abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
    /* 2 */
  }
  /**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
  b,
  strong {
    font-weight: bolder;
  }
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  code,
  kbd,
  samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
  }
  /**
   * Add the correct font size in all browsers.
   */
  small {
    font-size: 80%;
  }
  /**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  /* Embedded content
     ========================================================================== */
  /**
   * Remove the border on images inside links in IE 10.
   */
  img {
    border-style: none;
  }
  /* Forms
     ========================================================================== */
  /**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
  }
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  button,
  input {
    /* 1 */
    overflow: visible;
  }
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  button,
  select {
    /* 1 */
    text-transform: none;
  }
  /**
   * Correct the inability to style clickable types in iOS and Safari.
   */
  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button;
  }
  /**
   * Remove the inner border and padding in Firefox.
   */
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  /**
   * Restore the focus styles unset by the previous rule.
   */
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  /**
   * Correct the padding in Firefox.
   */
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
  legend {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
  }
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  progress {
    vertical-align: baseline;
  }
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  textarea {
    overflow: auto;
  }
  /**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
  [type="checkbox"],
  [type="radio"] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
  }
  /**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  /**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
  [type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
  }
  /**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  /**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
  }
  /* Interactive
     ========================================================================== */
  /*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
  details {
    display: block;
  }
  /*
   * Add the correct display in all browsers.
   */
  summary {
    display: list-item;
  }
  /* Misc
     ========================================================================== */
  /**
   * Add the correct display in IE 10+.
   */
  template {
    display: none;
  }
  /**
   * Add the correct display in IE 10.
   */
  [hidden] {
    display: none;
  }
  /**
   * Variables and mixins.
   */
  /**
   * Site variables.
   */
  /**
   * Site structure.
   */
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3p-ks51op.ttf) format('truetype');
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/barlow/v5/7cHpv4kjgoGqM7E_DMs8.ttf) format('truetype');
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3_-gs51op.ttf) format('truetype');
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E30-8s51op.ttf) format('truetype');
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3t-4s51op.ttf) format('truetype');
  }
  /**
   * Colours.
   */
  /**
   * Other Styles.
   */
  /**
   * Site mixins.
   */
  .wrapper {
    max-width: 1500px;
    width: 90%;
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .text-wrapper {
    max-width: 50%;
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .text-wrapper .post-date {
    font-size: 14px;
    line-height: 22px;
  }
  .text-wrapper .post-categories {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
  }
  .text-wrapper .post-categories a {
        width: 132px;
        display: flex;
        background: white;
        color: #0091D9;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        line-height: 22px;
        padding: 8px;
     }

  .text-wrapper .post-categories a:hover {
      background-color: #eaeaea;
      color: black;
  }
 
  .flex-between-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flex-between-stretch {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .flex-center-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flex-space-children {
    width: 100%;
    max-width: 100%;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
  .bk-image-cover {
    position: relative;
    -webkit-background-size: cover;
            background-size: cover;
    background-position: 50% 50%;
  }
  .bk-image-cover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.85)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.85) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.85) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.85) 100%);
  }
  .li-bullet {
    position: relative;
  }
  .li-bullet:before {
    content: '';
    display: inline-block;
    height: 8px;
    width: 8px;
    background-color: #981B1E;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 20px;
    margin-bottom: 2px;
  }
  /**
   * Plugin markup style overrides.
   */
  /**
   * Base styling.
   */
  html {
    font-size: 62.5%;
  }
  body {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 16px;
    font-size: 1.6rem;
    color: #232323;
    line-height: 1.5;
  }
  @media only screen and (min-width: 768px) {
    body {
      font-size: 18px;
      font-size: 1.8rem;
    }
  }
  img {
    max-width: 100%;
  }
  /**
   * Site typography styling.
   */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
  }
  h1 {
    color: #ffffff;
    font-weight: 600;
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.2;
  }
  h2 {
    color: #232323;
    font-weight: 600;
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.2;
  }
  h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  h4 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  h5 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  h6 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  p {
    margin: 0;
  }
  a {
    text-decoration: none;
    color: #232323;
  }
  /**
   * Site buttons styling.
   */
  .button {
    display: inline-block;
    text-align: center;
    font-weight: 400;
    vertical-align: middle;
    padding: 15px 25px;
    -webkit-border-radius: 0;
            border-radius: 0;
    -webkit-transition: background-color ease 0.1s, color ease 0.1s;
    -o-transition: background-color ease 0.1s, color ease 0.1s;
    transition: background-color ease 0.1s, color ease 0.1s;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  @media only screen and (min-width: 768px) {
    .button {
      white-space: nowrap;
    }
  }
  .button.button-primary {
    color: #ffffff;
    background-color: #981B1E;
  }
  .button.button-primary:hover {
    background-color: #82171a;
  }
  .button svg {
    margin-left: 5px;
  }
  @media only screen and (min-width: 768px) {
    .button svg {
      margin-left: 15px;
    }
  }
  /**
   * Default mobile and desktop menu styling.
   */
  .main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .main-menu ul li a {
    display: inline-block;
    color: #A2A7AA;
  }
  @media only screen and (min-width: 992px) {
    .main-menu ul li a {
      display: block;
    }
  }
  .main-menu > ul > li {
    display: block;
    position: relative;
    text-align: right;
    padding: 10px;
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li {
      display: inline-block;
      text-align: left;
      padding: 0;
    }
    
    .social-mobile-menu {
        display: none;
    }
  }
  
  .social-mobile-menu {
      display: none;
  }
  
  @media( max-width: 991px ) {
      .main-menu > ul > li.append {
          display: none;
      }
      
      .social-mobile-menu {
          display: block;
          margin-top: 15px;
      }
      
      .social-mobile-menu ul {
          margin: 0 0 10px;
          padding-left: 0;
      }
      
      .social-mobile-menu ul > li {
          display: inline-block;
          margin-right: 20px;
          list-style-type: none;
      }
      
      .social-mobile-menu ul > li:last-child {
          margin-right: 0;
      }
      
      .social-mobile-menu ul > li i {
          font-size: 20px;
      }
  }
  
  .main-menu > ul > li.menu-item-has-children {
    padding-right: 35px;
  }
  .main-menu > ul > li.menu-item-has-children.toggled > .sub-menu {
    display: block;
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li.menu-item-has-children {
      padding-right: 0;
    }
    .main-menu > ul > li.menu-item-has-children.toggled > .sub-menu {
      display: none;
    }
    .main-menu > ul > li.menu-item-has-children:hover > .sub-menu {
      display: block;
    }
  }
  .main-menu > ul > li.menu-item-has-children:before:hover {
    cursor: pointer;
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li.menu-item-has-children:before {
      display: none;
    }
  }
  .main-menu > ul > li.menu-item-has-children:after {
    font-family: 'Font Awesome 5 Free';
    content: '\f107';
    color: #ffffff;
    position: absolute;
    top: 19px;
    right: 6px;
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li.menu-item-has-children:after {
      display: none;
    }
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li > a {
      text-align: center;
      padding: 15px 12px;
    }
  }
  .main-menu > ul > li .sub-menu {
    display: none;
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li .sub-menu {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      min-width: 200px;
      z-index: 9999;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
    }
  }
  .main-menu > ul > li .sub-menu > li {
    position: relative;
    padding: 5px 0;
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li .sub-menu > li {
      padding: 0;
    }
  }
  .main-menu > ul > li .sub-menu > li.menu-item-has-children.toggled > .sub-menu {
    display: block;
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li .sub-menu > li.menu-item-has-children.toggled > .sub-menu {
      display: none;
    }
    .main-menu > ul > li .sub-menu > li.menu-item-has-children:hover > .sub-menu {
      display: block;
    }
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li .sub-menu > li > a {
      padding: 10px;
    }
  }
  .main-menu > ul > li .sub-menu > li > .sub-menu {
    display: block;
  }
  @media only screen and (min-width: 992px) {
    .main-menu > ul > li .sub-menu > li > .sub-menu {
      display: none;
      top: 0;
      left: 100%;
    }
  }
  /**
   * Site styling.
   */
  * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .text-wrapper {
    width: 100%;
    max-width: 100%;
  }
  img {
    vertical-align: top;
  }
  img.round {
    -webkit-border-radius: 50%;
            border-radius: 50%;
  }
  .btn {
    font-size: 16px;
    font-size: 1.6rem;
    position: relative;
    float: left;
    overflow: hidden;
    padding: 11px 120px 11px 23px;
    font-weight: 700;
    font-weight: 500;
    line-height: 22px;
    -webkit-transition: color 0.8s;
    -o-transition: color 0.8s;
    transition: color 0.8s;
    letter-spacing: 0.1px;
    color: #A2A7AA;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    background: #ffffff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(167, 167, 167, 0.5);
            box-shadow: 0 2px 4px 0 rgba(167, 167, 167, 0.5);
  }
  .btn:after {
    position: absolute;
    top: 0;
    right: -26px;
    bottom: 0;
    overflow: hidden;
    width: 85px;
    height: 100%;
    content: '';
    -webkit-transition: background-color 0.8s;
    -o-transition: background-color 0.8s;
    transition: background-color 0.8s;
    -webkit-transform: skewX(-29deg);
        -ms-transform: skewX(-29deg);
            transform: skewX(-29deg);
    background-color: #2C2B28;
  }
  .btn:before {
    font-size: 24px;
    font-size: 2.4rem;
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 0;
    right: 19px;
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    line-height: 24px;
    content: '\f30b';
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    letter-spacing: 0.1px;
    color: #ffffff;
  }
  .btn:hover {
    color: #0091D9;
  }
  .btn:hover:after {
    background-color: #1f1e1c;
  }
  .btn:hover:before {
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .btn.light-blue:after {
    background-color: #0091D9;
  }
  .btn.light-blue:hover:after {
    background: #006fa6;
  }
  .btn.light-dark-blue {
    background: #0091D9;
    color: #ffffff;
  }
  .btn.light-dark-blue:after {
    background-color: #00314A;
  }
  .btn.light-dark-blue:hover:after {
    background: #000f17;
  }
  @media only screen and (min-width: 992px) {
    a.btn {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 22px;
      line-height: 2.2rem;
      padding: 15px 150px 15px 30px;
    }
  }
  h4 {
    color: #0091D9;
  }
  h5 {
    color: #0091D9;
  }
  .written h2 {
    font-size: 32px;
  }
  .written h2:not(:last-child) {
    margin-bottom: 30px;
  }
  .written h2:not(:first-child) {
    margin-top: 50px;
  }
  @media only screen and (min-width: 1500px) {
    .written h2 {
      font-size: 40px;
    }
  }
  .written li,
  .written p {
    font-size: 20px;
  }
  @media only screen and (min-width: 1500px) {
    .written p:first-of-type {
      font-size: 24px;
    }
  }
  .written p:not(:last-child) {
    margin-bottom: 20px;
  }
  .written b {
    color: #0091D9;
    font-weight: 400;
  }
  .top-header {
    display: inline-block;
    width: 100%;
    padding: 30px 0;
    vertical-align: top;
    border-bottom: solid 1px #D0D0D0;
  }
  a.burger {
    font-size: 18px;
    font-size: 1.8rem;
    float: right;
    width: 10%;
    max-width: 20px;
  }
  a.burger svg {
    color: #0091D9;
  }
  .search {
    float: left;
    width: 90%;
    max-width: 500px;
  }
  .search form a {
    font-size: 20px;
    font-size: 2rem;
    margin-right: 20px;
    line-height: 20px;
  }
  .search form a svg {
    color: #0091D9;
  }
  .search form input {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 22px;
    color: #232323;
    border: none;
  }
  .search form input:focus {
    outline: none;
  }
  .search form input::-webkit-input-placeholder {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 22px;
    color: #232323;
  }
  .search form input::-moz-placeholder {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 22px;
    color: #232323;
  }
  .search form input:-ms-input-placeholder {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 22px;
    color: #232323;
  }
  .search form input:-moz-placeholder {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 22px;
    color: #232323;
  }
  @media only screen and (min-width: 992px) {
    .top-header {
      position: relative;
      z-index: 1000;
      padding: 30px 0 20px;
    }
    .burger {
      display: none;
    }
    .top-menu {
      float: left;
      clear: none;
      width: 70%;
    }
    .top-menu ul {
      margin: 0;
      padding-left: 0;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
    }
    .top-menu ul > li {
      display: inline-block;
      margin-right: 20px;
      list-style-type: none;
    }
    
    .top-menu ul > li i {
        font-size: 20px;
    }
    
    .top-menu ul > li#menu-item-1067 > a,
    .top-menu ul > li#menu-item-90 > a,
    .top-menu ul > li#menu-item-91 > a,
    .top-menu ul > li#menu-item-92 > a {
      color: #2C2B28;
    }
    .top-menu ul > li#menu-item-1067 > a:hover,
    .top-menu ul > li#menu-item-90 > a:hover,
    .top-menu ul > li#menu-item-91 > a:hover,
    .top-menu ul > li#menu-item-92 > a:hover {
      color: #0091D9;
    }
    .top-menu ul > li:last-child {
      margin-right: 0;
    }
    .top-menu ul > li:hover > a,
    .top-menu ul > li:hover > span {
      color: #0091D9;
    }
    .top-menu ul > li > ul {
      overflow: hidden;
    }
    .top-menu ul > li.menu-item-has-children {
      position: relative;
    }
    .top-menu ul > li.menu-item-has-children:after {
      display: inline-block;
      margin-left: 15px;
      font-family: 'Font Awesome 5 Pro';
      font-weight: 900;
      content: '\f078';
      color: #0091D9;
    }
    .top-menu ul > li.menu-item-has-children > ul {
      position: absolute;
      right: 0;
      left: 0;
      width: 100%;
      min-width: 200px;
      max-height: 0;
      margin-top: 15px;
      opacity: 0;
      background: #0091D9;
    }
    .top-menu ul > li.menu-item-has-children > ul > li {
      width: 100%;
      padding: 10px;
    }
    .top-menu ul > li.menu-item-has-children > ul > li > a,
    .top-menu ul > li.menu-item-has-children > ul > li > span {
      color: #ffffff;
    }
    .top-menu ul > li.menu-item-has-children > ul > li:hover {
      background-color: #006fa6;
    }
    .top-menu ul > li.menu-item-has-children:hover > ul {
      max-height: 1000px;
      opacity: 1;
    }
    .search {
      float: right;
      clear: none;
      width: 28%;
    }
  }
  @media only screen and (min-width: 1500px) {
    .top-header {
      padding: 30px 0 16px;
    }
    
    .top-menu ul > li i {
        font-size: 22px;
    }
    
    .search {
      width: 22%;
      max-width: 235PX;
    }
    .search form a {
      font-size: 28px;
      font-size: 2.8rem;
      line-height: 28px;
    }
    .search form input {
      font-size: 20px;
      font-size: 2rem;
      max-width: 175px;
      font-weight: 500;
      line-height: 24px;
    }
    .search form input::-webkit-input-placeholder {
      font-size: 20px;
      font-size: 2rem;
      font-weight: 500;
      line-height: 24px;
    }
    .search form input::-moz-placeholder {
      font-size: 20px;
      font-size: 2rem;
      font-weight: 500;
      line-height: 24px;
    }
    .search form input:-ms-input-placeholder {
      font-size: 20px;
      font-size: 2rem;
      font-weight: 500;
      line-height: 24px;
    }
    .search form input:-moz-placeholder {
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 500;
      line-height: 24px;
    }
    .top-menu {
      width: 78%;
    }
    .top-menu ul > li > a,
    .top-menu ul > li > span {
      font-size: 18px;
      font-size: 1.8rem;
    }
    .top-menu ul > li#menu-item-1067,
    .top-menu ul > li#menu-item-90,
    .top-menu ul > li#menu-item-91,
    .top-menu ul > li#menu-item-92 {
      margin-right: 30px;
    }
    .top-menu ul > li#menu-item-1067 > a,
    .top-menu ul > li#menu-item-90 > a,
    .top-menu ul > li#menu-item-91 > a,
    .top-menu ul > li#menu-item-92 > a {
      font-size: 26px;
      font-size: 2.6rem;
      line-height: 26px;
      color: #2C2B28;
    }
    .top-menu ul > li ul > li > a,
    .top-menu ul > li ul > li > span {
      font-size: 18px;
      font-size: 1.8rem;
    }
  }
  @media screen and (max-width: 991px) {
    .navigation {
      position: absolute;
      top: 88px;
      right: 0;
      left: 0;
      overflow: hidden;
      width: 100%;
      max-height: 0;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      background: #0091D9;
    }
    .navigation .wrapper {
      width: 100%;
    }
    .navigation.toggled {
      max-height: 1000px;
      z-index: 999999;
    }
    .navigation ul > li {
      padding-right: 50px;
      cursor: pointer;
    }
    .navigation ul > li > a,
    .navigation ul > li > span {
      color: #ffffff;
    }
    .navigation ul > li:hover {
      background-color: #006fa6;
    }
    .navigation ul > li:hover > a,
    .navigation ul > li:hover > span {
      font-weight: 700;
    }
    .navigation ul > li.menu-item-has-children {
      padding-right: 50px;
    }
    .navigation ul > li.menu-item-has-children:before {
      position: absolute;
      right: 2.5%;
      font-family: 'Font Awesome 5 Pro';
      content: '\f078';
      color: #ffffff;
    }
    .navigation ul > li.menu-item-has-children:after {
      display: none;
    }
  }
  .logo-cta {
    padding: 20px 0;
    vertical-align: top;
  }
  .logo-cta img {
    width: 100%;
    max-width: 200px;
  }
  .logo-cta .cta {
    margin-top: 15px;
  }
  .logo-cta .cta a.phone {
    display: inline-block;
    margin-bottom: 12px;
  }
  .logo-cta .cta a.phone span {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 25px;
    color: #2C2B28;
  }
  .logo-cta .cta a.phone svg {
    font-size: 20px;
    font-size: 2rem;
    line-height: 27px;
    color: #0091D9;
  }
  .logo-cta .cta a.phone:hover span {
    color: #0091D9;
  }
  .logo-cta .cta p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    color: #A2A7AA;
  }
  .logo-cta .cta p a {
    font-weight: 600;
    color: #0091D9;
  }
  @media only screen and (min-width: 650px) {
    .logo-cta {
      display: inline-block;
      width: 100%;
    }
    @supports (display: flex) {
      .logo-cta .wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
      }
    }
    .logo-cta .logo {
      float: left;
      clear: none;
      width: 40%;
      margin-right: 2%;
    }
    .logo-cta .logo a {
      display: inline-block;
      width: 100%;
    }
    .logo-cta .cta {
      float: left;
      clear: none;
      width: 58%;
      margin-top: 0;
      text-align: right;
    }
  }
  @media only screen and (min-width: 992px) {
    .logo-cta {
      padding: 30px 0;
    }
  }
  @media only screen and (min-width: 1500px) {
    .logo-cta {
      /*padding: 60px 0;*/
    }
    .logo-cta img {
      width: 100%;
      max-width: 300px;
    }
    .logo-cta .cta a.phone {
      margin-bottom: 28px;
    }
    .logo-cta .cta a.phone span {
      font-size: 34px;
      font-size: 3.4rem;
      font-size: 3rem;
      font-weight: 500;
      line-height: 41px;
    }
    .logo-cta .cta a.phone svg {
      font-size: 36px;
      font-size: 3.6rem;
      margin-right: 30px;
      line-height: 36px;
    }
    .logo-cta .cta p {
      font-size: 20px;
      font-size: 2rem;
      font-weight: 400;
      line-height: 24px;
    }
    .logo-cta .cta p a {
      font-weight: 600;
    }
    .logo-cta .cta p a:hover {
      color: #2C2B28;
    }
  }
  @media only screen and (min-width: 992px) {
    .main-menu.navigation {
      background: #F2F2F2;
    }
    .main-menu.navigation ul > li {
      margin-right: 40px;
      padding: 20px 0;
    }
    .main-menu.navigation ul > li > a,
    .main-menu.navigation ul > li > span {
      font-size: 18px;
      font-size: 1.8rem;
      overflow: hidden;
      padding: 0;
      line-height: 18px;
      color: #2C2B28;
    }
  
    .main-menu.navigation ul.menu > li > a:hover {
        color: #0091D9;
    }
    .main-menu.navigation ul > li.menu-item-has-children {
      padding-right: 30px;
    }
    .main-menu.navigation ul > li.menu-item-has-children:after {
      top: 50%;
      right: 0;
      display: inline-block;
      float: right;
      margin-left: 15px;
      font-family: 'Font Awesome 5 Pro';
      font-weight: 900;
      content: '\f078';
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      color: #0091D9;
    }
    .main-menu.navigation ul > li > ul {
      display: inline-block;
      display: none;
      min-width: 275px;
      max-height: 0;
      -webkit-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      background: #006fa6;
    }
    .main-menu.navigation ul > li > ul > li {
      width: 100%;
      padding: 5px 0;
    }
    .main-menu.navigation ul > li > ul > li > a,
    .main-menu.navigation ul > li > ul > li > span {
      font-weight: 400;
      color: #ffffff;
    }
    .main-menu.navigation ul > li > ul > li:hover {
      background: #006fa6;
    }
    .main-menu.navigation ul > li:hover > ul {
      max-height: 1000px;
      opacity: 1;
    }
  }
  @media only screen and (min-width: 1500px) {
    .main-menu.navigation ul > li {
      margin-right: 87px;
      padding: 30px 0;
    }
    .main-menu.navigation ul > li > a,
    .main-menu.navigation ul > li > span {
      font-size: 22px;
      font-size: 2.2rem;
      font-weight: 500;
      line-height: 22px;
      line-height: 30px;
    }
    .main-menu.navigation ul > li.menu-item-has-children {
      padding-right: 40px;
    }
    .main-menu.navigation ul > li.menu-item-has-children > ul > li > a,
    .main-menu.navigation ul > li.menu-item-has-children > ul > li > span {
      font-size: 18px;
      font-size: 1.8rem;
    }
  }
  .banner .bg {
    -webkit-background-size: cover;
            background-size: cover;
    background-position: center;
    min-height: 300px;
  }
  
  /*
  @media (max-width: 1199px) {
    .banner .bg {
      min-height: 550px;
    }
  }
  @media (max-width: 991px) {
    .banner .bg {
      min-height: 450px;
    }
  }
  @media (max-width: 767px) {
    .banner .bg {
      min-height: 400px;
    }
  }
  */
  .banner .bg.fsbanner {
    min-height: 650px;
  }
  @media only screen and (max-width: 767px) {
    .banner .bg.fsbanner {
      min-height: 200px;
    }
  }
  .banner .bg.poslow {
    background-position: 50% 65%;
  }
  .banner .bg.posmid {
    background-position: 50% 50%;
  }
  .banner .bg.postop {
    background-position: 50% 30%;
  }
  .banner.single .image img {
    display: block;
    float: none;
    width: auto;
    max-width: 100%;
  }
  .banner.single .number-tagline {
    display: none;
  }
  
  @media only screen and (min-width: 992px) {
    .banner.carousel .banner-inner:after {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      left: -45%;
      width: 100%;
      height: 100%;
      content: '';
      -webkit-transform: skewX(-14deg);
          -ms-transform: skewX(-14deg);
              transform: skewX(-14deg);
      background: #0091D9;
    }
  }
  @media only screen and (min-width: 992px) {
    .banner.carousel .banner-inner .owl-item .item {
      position: relative;
     
      display: grid;
      grid-template-columns: 1fr 1fr;
      
    }
  
    
    .banner.carousel .banner-inner .owl-item .item .bg.fsbanner {
      grid-column-start: 2;
    }
    
    .banner.carousel .owl-carousel {
      z-index: 1001;
    }
    .banner.carousel .banner-inner .owl-item .item:after,
    .banner.carousel .banner-inner:after {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      left: -45%;
      width: 100%;
      height: 100%;
      content: '';
      -webkit-transform: skewX(-14deg);
      -ms-transform: skewX(-14deg);
      transform: skewX(-14deg);
      background: #0091D9;
    }
  }
  .banner-inner .number-tagline {
    display: none;
  }
  .banner-inner .text {
    display: inline-block;
    width: 100%;
    padding: 30px 0;
    background: #0091D9;
  }
  .banner-inner h1 {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 24px;
  }
  .banner-inner p {
    color: #ffffff;
  }
  .banner-inner ul {
    padding-left: 0;
  }
  .banner-inner ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 30px;
    font-weight: 500;
    list-style-type: none;
    color: #00314A;
  }
  .banner-inner ul li:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    content: '\f30b';
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    letter-spacing: 0.1px;
    color: #fff;
  }
  @media only screen and (min-width: 768px) {
    .banner-inner {
      position: relative;
    }
    .banner-inner .item {
      overflow: hidden;
    }
    .banner-inner .image img {
      -webkit-transform: translateY(-35%);
          -ms-transform: translateY(-35%);
              transform: translateY(-35%);
    }
    .banner-inner .text {
      position: absolute;
      bottom: 0;
    }
    .single .banner-inner .image img {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
    }
  }
  .banner.carousel .banner-inner .owl-item .item:before {
    position: absolute;
    z-index: 1000;
    bottom: 18%;
    left: 2%;
    width: 397px;
    height: 610px;
    content: '';
    background-image: url(../emc/images/banner-rectangle.png);
  }
  
  @media only screen and (max-width: 992px) {
    .banner.carousel .banner-inner .owl-item .item:before {
    display: none;
    }
  }
  
  @media only screen and (min-width: 992px) {
    .banner-inner {
      overflow: hidden;
      max-height: 600px;
    }
    .banner-inner .text-wrapper {
      max-width: 450px;
    }
    .banner-inner h1 {
      font-size: 30px;
      font-size: 3rem;
      line-height: 44px;
      line-height: 4.4rem;
    }
    .banner-inner p {
      font-size: 20px;
      font-size: 2rem;
      line-height: 24px;
      line-height: 2.8rem;
    }
    .banner-inner ul li {
      font-size: 20px;
      font-size: 2rem;
      line-height: 24px;
      line-height: 2.4rem;
    }
    .banner-inner .image img {
      float: right;
      width: 73%;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
    }
    .banner-inner .text {
      position: absolute;
      z-index: 1000;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 0;
      background: transparent;
    }
    @supports (display: flex) {
      .banner-inner .text {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
      }
    }
  }
  @media only screen and (min-width: 1500px) {
    .banner-inner {
      max-height: 835px;
    }
    .banner-inner:before {
      position: absolute;
      z-index: 1000;
      bottom: 18%;
      left: 2%;
      width: 397px;
      height: 610px;
      content: '';
      background-image: url(../emc/images/banner-rectangle.png);
    }
    .banner-inner .text {
      top: 17%;
    }
    @supports (display: flex) {
      .banner-inner .text {
        display: inline-block;
      }
    }
    .banner-inner .number-tagline {
      position: absolute;
      z-index: 10000;
      bottom: 10%;
      left: -10%;
      display: block;
      width: 60%;
      padding: 29px 7% 29px 29px;
      -webkit-transform: skewX(-14deg);
          -ms-transform: skewX(-14deg);
              transform: skewX(-14deg);
      text-align: right;
      background: #00314A;
    }
    .banner-inner .number-tagline p {
      font-size: 28px;
      font-size: 2.8rem;
      line-height: 34px;
      line-height: 3.4rem;
      margin-bottom: 0;
      -webkit-transform: skewX(14deg);
          -ms-transform: skewX(14deg);
              transform: skewX(14deg);
    }
    .banner-inner h1 {
      font-size: 40px;
      font-size: 4rem;
      line-height: 54px;
      line-height: 5.4rem;
      margin-bottom: 26px;
      font-weight: 700;
    }
    .banner-inner p {
      margin-bottom: 30px;
    }
    .banner-inner ul {
      margin-bottom: 54px;
    }
    .banner-inner:after {
      left: -51%;
    }
    .text-wrapper {
      width: 100%;
      max-width: 567px;
    }
  }
  .breadcrumb {
    background-color: #0091D9;
    padding: 40px 0;
  }


  .breadcrumb.titleover {
    position: absolute;
    z-index: 999;
    width: 100%;
    background-color: rgba(0, 57, 85, 0.4);
    height: 300px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .breadcrumb.titleover h1 {
    margin-left: 50px;
  }
  
  @media only screen and (max-width: 992px) {
    .breadcrumb .crumbs ul {
      display: none !important;
    }
  
  }
  .breadcrumb .crumbs {
    margin-bottom: 30px;
  }
  
  /*.breadcrumb .crumbs h1 {
    visibility: hidden;
  }*/
  
  .breadcrumb .crumbs ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .breadcrumb .crumbs ul li,
  .breadcrumb .crumbs ul li a {
    line-height: 1.2;
    font-size: 20px;
    color: #ffffff;
  }
  .breadcrumb .crumbs ul li.separator,
  .breadcrumb .crumbs ul li a.separator {
    font-size: 14px;
    margin: 0 20px;
  }
  .breadcrumb .crumbs ul li {
    display: inline-block;
  }
  .breadcrumb h1 {
    font-size: 40px;
    font-weight: bold;
  }
  .image-text {
    padding: 30px 0;
  }
  
  .image-text iframe {
      max-width: 100%;
  }
  
  .image-text.ip-left .text.half {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .image-text.ip-left .image.half {
    margin-right: 4%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }


  @media only screen and (min-width: 768px) {

    .single-post .image-text.ip-left .text.half {
      width: 58%;
    }

    .single-post .image-text.ip-left .image.half {
      width: 38%;
    }

  }

  .image-text.bk-white {
    background-color: #ffffff;
  }
  .image-text.bk-grey {
    background-color: #F4F4F4;
  }
  .image-text .half {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
  }
  .image-text h2 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 32px;
    line-height: 3.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #232323;
  }
  .image-text h4 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 40px;
    line-height: 4rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #232323;
  }
  .image-text p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
    margin-bottom: 20px;
    color: #232323;
  }
  .image-text .full-text p {
    max-width: none;
    line-height: 28px;
  }
  .full-text {
    width: 100%;
  }


    .custom-background-shape {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
      padding: 79px 60px;
      background: #0091D9;
   }
  @media only screen and (min-width: 992px) {
    .custom-background-shape {
      clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
      padding: 79px 60px;
      background: #0091D9;
   }
  }

 .custom-background-shape p {
    font-size: 16px;
    line-height: 28px;
    color: white;
 }
  .image-text p strong {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 25px;
    line-height: 2.5rem;
    color: #0091D9;
  }
  .image-text p strong b {
    color: #232323;
  }
  @media only screen and (min-width: 768px) {
    @supports (display: flex) {
      .image-text .wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        /*-webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;*/
      }
    }
    .image-text .half {
      float: left;
      clear: none;
      width: 48%;
      margin-right: 4%;
    }
    .image-text .half:nth-child(2n+2) {
      margin-right: 0;
    }
  }
  @media only screen and (min-width: 1500px) {
    .image-text {
      padding: 60px 0;
    }
    .image-text .half {
      width: 48%;
      margin-right: 4%;
    }
    .image-text .half img {
      float: right;
    }
    
    .image-text .half img.alignleft {
        float:none;
        margin-bottom: 15px;
    }
    .image-text h2 {
      font-size: 40px;
      font-size: 4rem;
      line-height: 48px;
      line-height: 4.8rem;
      margin-bottom: 36px;
    }
    
    .image-text p {
      font-size: 20px;
      font-size: 2rem;
      line-height: 28px;
      line-height: 2.8rem;
      max-width: 607px;
      margin-bottom: 25px;
    }
    .image-text p strong {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 29px;
      line-height: 2.9rem;
    }
  }
  .text-icon {
    overflow: hidden;
    padding: 35px 0;
    text-align: center;
    background: #2C2B28;
  }
  .text-icon p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 25px;
    line-height: 2.5rem;
    margin-bottom: 20px;
    line-height: 30px;
    color: #ffffff;
  }
  .text-icon p b {
    color: #0091D9;
  }
  .text-icon h3 {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 32px;
    line-height: 3.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #0091D9;
  }
  .text-icon a.btn {
    display: inline-block;
    float: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .text-icon .icon {
    margin-bottom: 20px;
  }
  
  @media only screen and (max-width: 767px) {
    .text-icon .icon {
      margin-bottom: 50px;
    }
  }
  
  .text-icon .icon a {
    font-weight: 500;
    color: #ffffff;
  }
  .text-icon .icon a svg {
    color: #0091D9;
  }
  .text-icon .icon a:hover {
    color: #0091D9;
  }
  .text-icon .icon p {
    margin-bottom: 0;
  }
  .text-icon .icon p.icon {
    margin-bottom: 10px;
  }
  .text-icon .icon p.icon span {
    display: inline-block;
    width: 84px;
    height: 84px;
    padding: 24px;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
  }
  
  .text-icon .icon p.icon span i,
  .text-icon .icon p.icon span svg {
      transition: all 0.3s;
  }
  
  .text-icon .icon:hover p.icon span i,
  .text-icon .icon:hover p.icon span svg {
      transform: scale(1.3);
  }
  
  
  @supports (display: flex) {
    .text-icon .icon p.icon span {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      margin: 0 auto;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
    }
  }
  .text-icon .icon p.icon span svg {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 24px;
    line-height: 2.4rem;
    letter-spacing: 0.1px;
  }
  .text-icon h4,
  .text-icon .icon p.icon-subtitle {
    font-size: 20px;
    font-size: 2rem;
    line-height: 27px;
    line-height: 2.7rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #0091D9;
  }
  .text-icon .icon p.icon-content {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 23px;
    line-height: 2.3rem;
    margin-bottom: 10px;
    line-height: 30px;
    color: #ffffff;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .text-icon .icons div.icon {
      float: left;
      clear: none;
      width: 48%;
      margin-right: 4%;
    }
    .text-icon .icons div.icon:nth-child(2n+2) {
      margin-right: 0;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1499px) {
    .text-icon .icons div.icon {
      float: left;
      clear: none;
      width: 22%;
      margin-right: 4%;
    }
    .text-icon .icons div.icon:nth-child(4n+4) {
      margin-right: 0;
    }
  }
  @media only screen and (min-width: 992px) {
    .text-icon {
      position: relative;
    }
    .text-icon .wrapper {
      position: relative;
      z-index: 1000;
    }
    .text-icon:after {
      position: absolute;
      top: 0;
      right: -20%;
      right: auto;
      left: -15%;
      bottom: 0;
      width: 57%;
      height: 100%;
      min-height: 1000px;
      content: '';
      -webkit-transform: skewX(-20deg);
          -ms-transform: skewX(-20deg);
              transform: skewX(-20deg);
      background: #373734;
    }
    .text-icon p {
      display: block;
      max-width: 844px;
      margin: 0 auto;
      margin-bottom: 20px;
    }
  }
  @media only screen and (min-width: 1500px) {
    .text-icon {
      padding: 60px 0;
    }
    .text-icon a.btn {
      margin-top: 30px;
      padding: 15px 87px 15px 30px;
    }
    .text-icon h3 {
      font-size: 48px;
      font-size: 4.8rem;
      line-height: 58px;
      line-height: 5.8rem;
      margin-bottom: 30px;
      font-weight: 500;
      letter-spacing: 0.08px;
    }
    .text-icon p {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 30px;
      line-height: 3rem;
    }
    .text-icon .icons div.icon {
      float: left;
      clear: none;
      width: 19%;
      margin-right: 8%;
    }
    .text-icon .icons div.icon:nth-child(4n+4) {
      margin-right: 0;
    }
    .text-icon .icons div.icon p.icon {
      margin-bottom: 17px;
    }
    .text-icon .icons div.icon p.icon span svg {
      font-size: 36px;
      font-size: 3.6rem;
      line-height: 36px;
      line-height: 3.6rem;
    }
    .text-icon h4,
    .text-icon .icons div.icon p.icon-subtitle {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 30px;
      line-height: 3rem;
      font-weight: 600;
      letter-spacing: 0.11px;
    }
    .text-icon .icons div.icon p.icon-content {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 20px;
      line-height: 2rem;
      letter-spacing: 0.08px;
    }
    .text-icon .icons div.icon a {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 20px;
      line-height: 2rem;
      letter-spacing: 0.09px;
    }
  }
  .icons {
    display: inline-block;
    width: 100%;
    margin-top: 60px;
  }
  section.cards.carousel {
    overflow: hidden;
    padding: 35px 0;
    text-align: center;
  }
  section.cards.carousel p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 25px;
    line-height: 2.5rem;
    margin-bottom: 20px;
    line-height: 30px;
    color: #A2A7AA;
  }
  section.cards.carousel h3 {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 32px;
    line-height: 3.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #0091D9;
  }
  section.cards.carousel a.btn {
    display: inline-block;
    float: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  section.cards.carousel .card-info {
    position: relative;
    margin-top: 30px;
  }
  section.cards.carousel .card-info .desc {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 25px 25px 25px 25px;
    background: #2C2B28;
  }
  section.cards.carousel .card-info .desc p {
    color: #ffffff;
  }
  section.cards.carousel .card-info .desc h4 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 27px;
    line-height: 2.7rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #0091D9;
  }
  section.cards.carousel .card-info .desc .owl-nav {
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 999;
    width: -webkit-calc(100% + 250px);
    width: calc(100% + 250px);
  }
  @media screen and (min-width: 1800px) {
    section.cards.carousel .card-info .desc .owl-nav {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  section.cards.carousel .card-info .desc .owl-nav button {
    width: 84px;
    height: 84px;
    background-color: #DFE3E5;
    color: #A2A7AA;
    font-size: 36px;
    border: 2px solid #A2A7AA;
    -webkit-border-radius: 50%;
            border-radius: 50%;
  }
  section.cards.carousel .card-info .desc .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    margin: 20px 10px 0 10px;
    cursor: pointer;
    -webkit-transition: background-color 0.8s;
    -o-transition: background-color 0.8s;
    transition: background-color 0.8s;
    border: none;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  @media only screen and (max-width: 992px) {
    section.cards.carousel .card-info .desc .owl-dots .owl-dot {
      padding-top: 10%;
    }
  }
  section.cards.carousel .card-info .desc .owl-dots .owl-dot:focus {
    outline: none;
  }
  section.cards.carousel .card-info .desc .owl-dots .owl-dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
  section.cards.carousel .card-info .desc .owl-dots .owl-dot.active {
    background-color: #ffffff;
  }
  section.cards.carousel .card-info .desc .owl-dots .owl-dot.active:focus {
    background-color: #ffffff;
  }
  section.cards.carousel .card-info .desc .owl-dots .owl-dot.active:hover {
    background-color: #ffffff;
  }
  section.cards.carousel .card-info .info-cards .item {
    background: #0091D9;
  }
  
  section.cards.carousel .card-info .info-cards .item,
  section.cards.carousel .card-info .info-cards .item .content {
      transition: all 0.2s;
  }
  
  section.cards.carousel .card-info .info-cards .item:hover,
  section.cards.carousel .card-info .info-cards .item:hover .content {
      background: #00314A;
  }
  
  
  @media (min-width: 600px) {
    section.cards.carousel .card-info .info-cards .item {
      padding-bottom: 60px;
      position: relative;
    }
    
    section.cards.carousel .card-info .info-cards .item.no-padding {
        padding-bottom: 0;
        margin-bottom: 30px;
        background: transparent;
    }
    section.cards.carousel .card-info .info-cards .item .bottom {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
    }
  }
  @media (max-width: 599px) {
    section.cards.carousel .card-info .info-cards .item .bottom {
      padding-bottom: 20px;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
    }
  }
  section.cards.carousel .card-info .info-cards .item .title {
    min-height: 100px;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.11px;
  }
  @media (max-width: 599px) {
    section.cards.carousel .card-info .info-cards .item .title {
      min-height: 40px;
    }
  }
  section.cards.carousel .card-info .info-cards .item .image img {
    width: 100%;
    vertical-align: top;
  }
  section.cards.carousel .card-info .info-cards .item .content {
    display: inline-block;
    width: 100%;
    padding: 20px;
    background: #0091D9;
  }
  
  @media only screen and (max-width: 992px) {
    section.cards.carousel .card-info .info-cards .item .content {
      margin-bottom: 25px;
  
    }
  }
  
  section.cards.carousel .card-info .info-cards .item .content h5,
  section.cards.carousel .card-info .info-cards .item .content p {
    color: #ffffff;
    margin-bottom: 25px;
  }
  section.cards.carousel .card-info .info-cards .item .content h5 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 27px;
    line-height: 2.7rem;
    margin-bottom: 15px;
    font-weight: 700;
  }
  @media screen and (min-width: 600px) {
    @supports (display: flex) {
      section.cards.carousel .owl-stage {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
      }
      section.cards.carousel .owl-stage .item {
        height: 100%;
        background: #0091D9;
      }
    }
  }
  @media only screen and (min-width: 992px) {
    section.cards.carousel {
      position: relative;
    }
    section.cards.carousel .wrapper {
      position: relative;
      z-index: 1000;
    }
    section.cards.carousel a.btn {
      font-size: 16px;
      font-size: 1.6rem;
      padding: 15px 90px 15px 30px;
    }
    .single section.intro-links,
    section.contact-block,
    section.contact-block > div {
        position: relative;
    }
    .single section.intro-links:before,
    section.contact-block:before,
    section.cards.carousel:after {
      position: absolute;
      top: 0;
      bottom: 0;
      left: -15%;
      width: 57%;
      height: 100%;
      min-height: 1000px;
      content: '';
      -webkit-transform: skewX(-20deg);
          -ms-transform: skewX(-20deg);
              transform: skewX(-20deg);
      background: #e7eaed;
    }
  
    section.cards.carousel.white-bg:after {
        display: none;
    }
  
    section.cards.carousel.white-bg {
        background: #fff;
    }
  
    section.cards.carousel.grey-bg:after {
        display: none;
    }
  
    section.cards.carousel.grey-bg {
        background: #e7eaed;
    }
  
  
  
  
    .single section.intro-links:before,
    section.contact-block:before {
        left: -20%;
    }
  
        .single section.intro-links {
            padding: 45px 0;
            margin-top: 0;
            margin-bottom: 0;
        }
  
        .single section.intro-links .wrapper {
            position: relative;
        }
  
    section.cards.carousel p {
      display: block;
      max-width: 844px;
      margin: 0 auto;
      margin-bottom: 20px;
    }
    section.cards.carousel .card-info a.btn {
      margin-top: 0;
    }
  }
  @media screen and (min-width: 1300px) {
    @supports (display: flex) {
      section.cards.carousel .card-info {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
      }
    }
    section.cards.carousel .card-info .desc {
      float: left;
      clear: none;
      width: 22%;
      margin-right: 3%;
      margin-bottom: 0;
      text-align: left;
    }
    section.cards.carousel .card-info .info-cards.standard {
      float: left;
      clear: none;
      width: 75%;
    }
    section.cards.carousel .card-info .info-cards.full-width-slider {
      float: left;
      clear: none;
      width: 100%;
    }
  }
  @media only screen and (min-width: 1500px) {
    section.cards.carousel {
      padding: 60px 0;
    }
    section.cards.carousel:after {
      left: -15%;
    }
    section.cards.carousel a.btn {
      margin-top: 30px;
      padding: 15px 87px 15px 30px;
    }
    section.cards.carousel h3 {
      font-size: 48px;
      font-size: 4.8rem;
      line-height: 58px;
      line-height: 5.8rem;
      display: block;
      max-width: 1200px;
      margin: 0 auto;
      margin-bottom: 30px;
      font-weight: 500;
      letter-spacing: 0.08px;
    }
    section.cards.carousel p {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 30px;
      line-height: 3rem;
    }
    section.cards.carousel .card-info {
      margin-top: 60px;
    }
    section.cards.carousel .card-info a.btn {
      font-size: 18px;
      font-size: 1.8rem;
    }
    section.cards.carousel .card-info .desc {
      padding: 40px;
    }
    section.cards.carousel .card-info .desc h4 {
      font-size: 30px;
      font-size: 3rem;
      line-height: 30px;
      line-height: 3rem;
      margin-bottom: 30px;
      font-weight: 600;
      letter-spacing: 0.11px;
    }
    section.cards.carousel .card-info .desc p {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 20px;
      line-height: 2rem;
      margin-bottom: 30px;
      letter-spacing: 0.08px;
    }
    section.cards.carousel .card-info .info-cards .item .content {
      padding: 30px 25px;
    }
    section.cards.carousel .card-info .info-cards .item .content h5 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 30px;
      line-height: 3rem;
      font-weight: 600;
      letter-spacing: 0.11px;
    }
    section.cards.carousel .card-info .info-cards .item .content p {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 20px;
      line-height: 2rem;
      letter-spacing: 0.08px;
    }
  }
  .full-width {
    overflow: hidden;
    padding: 35px 0;
    text-align: center;
    background-color: #00314A;
    -webkit-background-size: cover;
            background-size: cover;
            position: relative;
  }
  
  .full-width .wrapper {
      position: relative;
  }
  
  .full-width:before {
      content: "";
      background: #00314A;
      opacity: 0.9;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
  }
  
  .full-width .nf-form-content nf-field:nth-child(5) {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
  }
  
  .full-width p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 25px;
    line-height: 2.5rem;
    margin-bottom: 20px;
    line-height: 30px;
    color: #ffffff;
  }
  .full-width h3 {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 32px;
    line-height: 3.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #ffffff;
  }

  .h3 {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 32px;
    line-height: 3.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #ffffff;
  }
  .full-width a.btn {
    display: inline-block;
    float: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  @media only screen and (min-width: 992px) {
    .full-width {
      position: relative;
    }
    .full-width .wrapper {
      position: relative;
      z-index: 1000;
    }
    .full-width p {
      display: block;
      max-width: 844px;
      margin: 0 auto;
      margin-bottom: 20px;
    }
  }
  @media only screen and (min-width: 1500px) {
    .full-width {
      padding: 60px 0;
    }
    .full-width a.btn {
      margin-top: 30px;
      padding: 15px 87px 15px 30px;
    }
    .full-width h3 {
      font-size: 48px;
      font-size: 4.8rem;
      line-height: 58px;
      line-height: 5.8rem;
      margin-bottom: 30px;
      font-weight: 500;
      letter-spacing: 0.08px;
    }
    .h3 {
      font-size: 48px;
      font-size: 4.8rem;
      line-height: 58px;
      line-height: 5.8rem;
      margin-bottom: 30px;
      font-weight: 500;
      letter-spacing: 0.08px;
    }
    .full-width p {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 30px;
      line-height: 3rem;
    }
  }
  .nf-form-fields-required {
    display: none;
  }
  .nf-form-title {
    display: none;
  }
  .nf-fu-progress {
    display: none;
  }
  .file_upload-container {
    border-bottom: 1px solid #00699f;
  }
  .nf-form-content {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .nf-form-content .submit-container .nf-field-element {
    position: relative;
    display: inline-block;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element,
  .nf-form-content .submit-container #nf-field-16-wrap .nf-field-element,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element {
    display: inline-block;
    width: auto;
    font-size: 16px;
    font-size: 1.6rem;
    position: relative;
    float: left;
    overflow: hidden;
    padding: 11px 120px 11px 23px;
    font-weight: 700;
    font-weight: 500;
    line-height: 22px;
    -webkit-transition: color 0.8s;
    -o-transition: color 0.8s;
    transition: color 0.8s;
    letter-spacing: 0.1px;
    color: #A2A7AA;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    background: #ffffff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(167, 167, 167, 0.5);
            box-shadow: 0 2px 4px 0 rgba(167, 167, 167, 0.5);
    padding: 0;
    cursor: pointer;
    margin: auto;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element:after,
  .nf-form-content .submit-container #nf-field-16-wrap .nf-field-element:after,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element:after {
    position: absolute;
    top: 0;
    right: -26px;
    bottom: 0;
    overflow: hidden;
    width: 85px;
    height: 100%;
    content: '';
    -webkit-transition: background-color 0.8s;
    -o-transition: background-color 0.8s;
    transition: background-color 0.8s;
    -webkit-transform: skewX(-29deg);
        -ms-transform: skewX(-29deg);
            transform: skewX(-29deg);
    background-color: #2C2B28;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element:before,
  .nf-form-content .submit-container #nf-field-16-wrap .nf-field-element:before,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element:before {
    font-size: 24px;
    font-size: 2.4rem;
    position: absolute;
    z-index: 999999;
    top: 50%;
    right: 0;
    right: 19px;
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    line-height: 24px;
    content: '\f30b';
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    letter-spacing: 0.1px;
    color: #ffffff;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element:hover,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element:hover {
    color: #0091D9;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element:hover:after,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element:hover:after {
    background-color: #1f1e1c;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element:hover:before,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element:hover:before {
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element.light-blue:after,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element.light-blue:after {
    background-color: #0091D9;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element.light-blue:hover:after,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element.light-blue:hover:after {
    background: #006fa6;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element.light-dark-blue,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element.light-dark-blue {
    background: #0091D9;
    color: #ffffff;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element.light-dark-blue:after,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element.light-dark-blue:after {
    background-color: #00314A;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element.light-dark-blue:hover:after,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element.light-dark-blue:hover:after {
    background: #000f17;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element:after,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element:after {
    background-color: #0091D9;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element:hover:after,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element:hover:after {
    background: #006fa6;
  }
  .nf-form-content .submit-container .submit-wrap .nf-field-element input,
  .nf-form-content .submit-container #nf-field-4-wrap .nf-field-element input {
    position: relative;
    z-index: 999;
    color: #A2A7AA;
    padding: 11px 120px 11px 23px;
    border: none;
    cursor: pointer;
    font-size: 18px;
      font-size: 1.8rem;
  }
  .nf-form-content button.btn.nf-fu-fileinput-button {
    cursor: pointer;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .nf-form-content button.btn.nf-fu-fileinput-button:after {
    background: #0091D9;
  }
  .nf-form-content button.btn.nf-fu-fileinput-button:before {
    font-size: 18px;
    font-size: 1.8rem;
    content: '\f382';
  }
  .nf-form-content .label-left .nf-field-label {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }
  .nf-form-content label {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
    margin-bottom: 10px;
    font-weight: 400 !important;
    color: #ffffff;
  }
  .nf-form-content textarea,
  .nf-form-content input {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
    color: #ffffff;
    border: none;
    border-bottom: 1px solid #00699f;
    background: transparent;
  }
  .nf-form-content input:focus {
    outline: none;
  }
  .nf-form-content input::-webkit-input-placeholder {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
    color: #ffffff;
    /* Chrome/Opera/Safari */
  }
  .nf-form-content input::-moz-placeholder {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
    color: #ffffff;
    /* Firefox 19+ */
  }
  .nf-form-content input:-ms-input-placeholder {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
    color: #ffffff;
    /* IE 10+ */
  }
  .nf-form-content input:-moz-placeholder {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
    color: #ffffff;
    /* Firefox 18- */
  }
  @media only screen and (min-width: 992px) {
    .nf-form-content {
      margin-top: 60px;
    }
    .nf-form-content nf-field:nth-child(6) {
      margin-top: 70px !important;
    }
    .nf-form-content nf-field:nth-child(7) {
      margin-top: 30px !important;
    }
    .nf-form-content nf-field:nth-child(6),
    .nf-form-content nf-field:nth-child(7) {
      display: block;
      width: auto;
      margin: 0 auto;
      text-align: -webkit-center;
    }
    .nf-form-content nf-field:nth-child(6) label,
    .nf-form-content nf-field:nth-child(7) label {
      display: none;
    }
    .nf-form-content nf-field:nth-child(6) input#nf-field-4,
    .nf-form-content nf-field:nth-child(7) input#nf-field-4 {
      float: none;
    }
    .nf-form-content label {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 26px;
      line-height: 2.6rem;
    }
    .nf-form-content textarea,
    .nf-form-content input {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 26px;
      line-height: 2.6rem;
    }
    .nf-form-content input:focus {
      outline: none;
    }
    .nf-form-content input::-webkit-input-placeholder {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 26px;
      line-height: 2.6rem;
      /* Chrome/Opera/Safari */
    }
    .nf-form-content input::-moz-placeholder {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 26px;
      line-height: 2.6rem;
      /* Firefox 19+ */
    }
    .nf-form-content input:-ms-input-placeholder {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 26px;
      line-height: 2.6rem;
      /* IE 10+ */
    }
    .nf-form-content input:-moz-placeholder {
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 26px;
      line-height: 2.6rem;
      /* Firefox 18- */
    }
    .nf-form-content nf-field {
      float: left;
      clear: none;
      width: 48%;
      margin-right: 4%;
    }
    .nf-form-content nf-field:nth-child(2n+2) {
      margin-right: 0;
    }
    .nf-form-content nf-field:nth-child(6),
    .nf-form-content nf-field:nth-child(7) {
      width: 100%;
      margin-right: 0;
    }
  }
  @media only screen and (min-width: 1500px) {
    .nf-form-content .label-left .nf-field-label {
      width: 40% !important;
    }
    .nf-form-content .label-left .nf-field-element {
      width: 60%;
      text-align: right;
    }
    .nf-form-content .label-left .nf-field-element button {
      float: right;
    }
  }
  section.media-room-summary {
    margin: 30px 0;
  }
  @media only screen and (min-width: 992px) {
    section.media-room-summary {
      margin: 100px 0;
    }
  }
  section.media-room-summary .wrapper {
    display: grid;
    grid-gap: 40px;
  }
  @media only screen and (min-width: 992px) {
    section.media-room-summary .wrapper {
      grid-template-columns: 5fr 6fr;
      grid-gap: 80px;
    }
  }
  section.media-room-summary .wrapper .written {
    margin-bottom: 40px;
  }
  @media only screen and (min-width: 992px) {
    section.media-room-summary .wrapper .written {
      margin-bottom: 60px;
    }
  }
  section.media-room-summary .wrapper .categories .btn {
    display: block;
    float: none;
    width: 100%;
    background-color: #eaeaea;
    color: #232323;
    -webkit-transition: background-color 0.15s ease;
    -o-transition: background-color 0.15s ease;
    transition: background-color 0.15s ease;
  }
  section.media-room-summary .wrapper .categories .btn:not(:last-child) {
    margin-bottom: 15px;
  }
  section.media-room-summary .wrapper .categories .btn:before,
  section.media-room-summary .wrapper .categories .btn:after {
    display: none;
  }
  section.media-room-summary .wrapper .categories .btn:hover {
    background-color: #dddddd;
  }
  section.media-room-summary .wrapper .categories .btn.active {
    background-color: #0091D9;
    color: #ffffff;
  }
  section.media-room-summary .wrapper .categories .btn.active:before,
  section.media-room-summary .wrapper .categories .btn.active:after {
    display: block;
  }
  section.media-room-summary .wrapper .articles-container {
    display: none;
  }
  section.media-room-summary .wrapper .articles-container.active {
    display: block;
  }
  section.media-room-summary .wrapper .articles-container .article {
    background-color: #ffffff;
    border: 1px solid #EAEAEA;
    -webkit-transition: -webkit-box-shadow 0.15s ease;
    transition: -webkit-box-shadow 0.15s ease;
    -o-transition: box-shadow 0.15s ease;
    transition: box-shadow 0.15s ease;
    transition: box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
  }
  section.media-room-summary .wrapper .articles-container .article:not(:last-child) {
    margin-bottom: 30px;
  }
  section.media-room-summary .wrapper .articles-container .article:hover {
    -webkit-box-shadow: 0 3px 17px 0 rgba(200, 200, 200, 0.5);
            box-shadow: 0 3px 17px 0 rgba(200, 200, 200, 0.5);
  }
  section.media-room-summary .wrapper .articles-container .article a {
    display: block;
    padding: 30px;
  }
  section.media-room-summary .wrapper .articles-container .article .eyebrow {
    color: #0091D9;
    margin-bottom: 20px;
  }
  @media only screen and (min-width: 1500px) {
    section.media-room-summary .wrapper .articles-container .article .eyebrow {
      font-size: 20px;
    }
  }
  section.media-room-summary .wrapper .articles-container .article h3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  @media only screen and (min-width: 1500px) {
    section.media-room-summary .wrapper .articles-container .article h3 {
      font-size: 24px;
    }
  }
  section.media-room-summary .wrapper .articles-container .article h3 svg {
    color: #0091D9;
    font-size: 32px;
    margin-left: 60px;
  }
  section.intro-links {
    margin: 30px 0;
    position: relative;
  }
  @media only screen and (min-width: 992px) {
    section.intro-links {
      margin: 45px 0;
    }
  }
  section.intro-links.blog-summary .wrapper {
    display: block;
  }
  section.intro-links .wrapper {
    display: grid;
    grid-gap: 30px;
  }
  @media only screen and (min-width: 992px) {
    section.intro-links .wrapper {
      grid-template-columns: 1fr 350px;
      grid-gap: 90px;
    }
  }
  @media only screen and (min-width: 1500px) {
    section.intro-links .wrapper {
      grid-template-columns: 1fr 500px;
    }
  }
  @media only screen and (min-width: 650px) {
    section.intro-links .wrapper .links {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
    }
    section.intro-links .wrapper .links .link {
      padding: 90px 30px 30px 30px;
    }
    section.intro-links .wrapper .links .link:not(:last-child) {
      margin: 0 30px 0 0;
    }
  }
  @media only screen and (min-width: 992px) {
    section.intro-links .wrapper .links {
      display: block;
    }
    section.intro-links .wrapper .links .link {
      padding: 90px 45px 45px 45px;
    }
    section.intro-links .wrapper .links .link:not(:last-child) {
      margin: 0 0 30px 0;
    }
  }
  @media only screen and (min-width: 1500px) {
    section.intro-links .wrapper .links {
      margin-top: -90px;
    }
  }
  section.intro-links .wrapper .links .link {
    background-color: #F2F2F2;
    padding: 90px 45px 45px 45px;
  }
  section.intro-links .wrapper .links .link:first-child {
    background-color: #00314A;
  }
  section.intro-links .wrapper .links .link:first-child p,
  section.intro-links .wrapper .links .link:first-child svg,
  section.intro-links .wrapper .links .link:first-child i {
    color: #ffffff;
  }
  
  section.intro-links .wrapper .links {
      position: relative;
      z-index: 999;
  }
  
  section.intro-links .wrapper .links .link:hover {
      background-color: #0091D9;
      color: #fff;
      transition: all 0.3s;
  }
  
  section.intro-links .wrapper .links .link:hover p,
  section.intro-links .wrapper .links .link:hover a,
  section.intro-links .wrapper .links .link:hover svg,
  section.intro-links .wrapper .links .link:hover i {
      color: #fff;
      transition: all 0.3s;
  }
  
  
  section.intro-links .wrapper .links .link a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  section.intro-links .wrapper .links .link a p {
    margin-right: 20px;
  }
  section.intro-links .wrapper .links .link a p,
  section.intro-links .wrapper .links .link a svg,
  section.intro-links .wrapper .links .link a i {
    font-size: 28px;
  }
  footer {
    margin-top: 30px;
  }
  @media only screen and (min-width: 992px) {
    footer {
      margin-top: 100px;
    }
  }
  footer .back-to-top {
    position: relative;
    line-height: 1;
    text-align: center;
  }
  footer .back-to-top:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #EAEAEA;
  }
  footer .back-to-top .btn {
    display: inline-block;
    float: none;
    background-color: #0091D9;
    color: #ffffff;
  }
  footer .back-to-top .btn:before {
    content: '\f30c';
  }
  footer .middle {
    padding: 60px 0;
  }
  footer .middle .wrapper {
    display: grid;
    grid-gap: 20px;
  }
  @media only screen and (min-width: 992px) {
    footer .middle .wrapper {
      grid-template-columns: 1fr 475px;
    }
  }
  footer .middle .wrapper .left .logo {
    text-align: center;
  }
  @media only screen and (min-width: 992px) {
    footer .middle .wrapper .left .logo {
      text-align: left;
    }
  }
  footer .middle .wrapper .left .logo a {
    display: inline-block;
  }
  footer .middle .wrapper .left .footer-menu {
    margin: 30px 0 0 0;
  }
  @media only screen and (min-width: 992px) {
    footer .middle .wrapper .left .footer-menu {
      margin: 30px 0;
    }
  }
  @media only screen and (min-width: 1500px) {
    footer .middle .wrapper .left .footer-menu {
      margin: 45px 0;
    }
  }
  footer .middle .wrapper .left .footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  @media only screen and (min-width: 992px) {
    footer .middle .wrapper .left .footer-menu ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
    }
  }
  footer .middle .wrapper .left .footer-menu ul li:not(:last-child) {
    margin: 0 0 15px 0;
  }
  @media only screen and (min-width: 992px) {
    footer .middle .wrapper .left .footer-menu ul li:not(:last-child) {
      margin: 0 20px 0 0;
    }
  }
  @media only screen and (min-width: 1500px) {
    footer .middle .wrapper .left .footer-menu ul li:not(:last-child) {
      margin: 0 60px 0 0;
    }
  }
  footer .middle .wrapper .left .footer-menu ul li a {
    font-weight: 600;
  }
  @media only screen and (min-width: 1500px) {
    footer .middle .wrapper .left .footer-menu ul li a {
      font-size: 22px;
    }
  }
  footer .middle .wrapper .left p {
    margin-top: 15px;
  }
  footer .middle .wrapper .right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  @media (max-width: 767px) {
    footer .middle .wrapper .right {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  @media (max-width: 767px) {
    footer .middle .wrapper .right img {
      padding: 0 5px;
      max-width: 12%;
    }
  }
  
  footer .middle .wrapper .right img {
      width: 100px;
      max-width: 100px;
  }
  
  footer .middle .wrapper .right img:first-child {
    margin-right: 0;
  }
  footer .middle .wrapper .right img:not(:last-child) {
    margin-right: 20px;
  }
  @media (max-width: 767px) {
    footer .middle .wrapper .right img:not(:last-child) {
      margin-right: 0;
      max-width: 100%;
      margin-bottom: 0;
    }
  }
  footer .bottom {
    padding: 30px 0;
    background-color: #F0F0F0;
  }
  @media only screen and (min-width: 1500px) {
    footer .bottom {
      padding: 45px 0;
    }
  }
  footer .bottom .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  @media (max-width: 767px) {
    footer .bottom .wrapper {
      text-align: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  footer .bottom .wrapper p,
  footer .bottom .wrapper a {
    color: #232323;
    font-size: 16px;
  }
  @media only screen and (min-width: 1500px) {
    footer .bottom .wrapper p,
    footer .bottom .wrapper a {
      font-size: 18px;
    }
  }
  footer .bottom .wrapper .emc:hover span {
    color: #51c1b0;
  }
  footer .bottom .wrapper .emc a,
  footer .bottom .wrapper .emc span {
    -webkit-transition: color 0.15s ease;
    -o-transition: color 0.15s ease;
    transition: color 0.15s ease;
  }
  footer .content {
    padding: 35px 0;
  }
  footer .copyright {
    padding: 15px 0;
    background-color: #F0F0F0;
  }
  footer .copyright p,
  footer .copyright a {
    color: #232323;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
    margin-bottom: 10px;
  }
  footer .copyright a:hover {
    color: #0091D9;
  }
  /* POPUP GALLERY */
  /* MAGNIFIC POPUP */
  .mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
  }
  .mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
  }
  .mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  .mfp-align-top .mfp-container:before {
    display: none;
  }
  .mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
  }
  .mfp-inline-holder .mfp-content,
  .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
  }
  .mfp-ajax-cur {
    cursor: progress;
  }
  .mfp-zoom-out-cur,
  .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
  }
  .mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .mfp-auto-cursor .mfp-content {
    cursor: auto;
  }
  .mfp-close,
  .mfp-arrow,
  .mfp-preloader,
  .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
  }
  .mfp-loading.mfp-figure {
    display: none;
  }
  .mfp-hide {
    display: none !important;
  }
  .mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
  }
  .mfp-preloader a {
    color: #CCC;
  }
  .mfp-preloader a:hover {
    color: #FFF;
  }
  .mfp-s-ready .mfp-preloader {
    display: none;
  }
  .mfp-s-error .mfp-content {
    display: none;
  }
  button.mfp-close,
  button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
            box-shadow: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
  button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }
  .mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
  }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1;
  }
  .mfp-close:active {
    top: 1px;
  }
  .mfp-close-btn-in .mfp-close {
    color: #333;
  }
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
  }
  .mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
  }
  .mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
  }
  .mfp-arrow:active {
    margin-top: -54px;
  }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1;
  }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
  }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
  }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
  }
  .mfp-arrow-left {
    left: 0;
  }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
  }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
  }
  .mfp-arrow-right {
    right: 0;
  }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
  }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
  }
  .mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
  }
  .mfp-iframe-holder .mfp-close {
    top: -40px;
  }
  .mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
  }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
  }
  /* Main image in popup */
  img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
  }
  /* The shadow behind the image */
  .mfp-figure {
    line-height: 0;
  }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
  }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
  }
  .mfp-figure figure {
    margin: 0;
  }
  .mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
  }
  .mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
  }
  .mfp-image-holder .mfp-content {
    max-width: 80%;
  }
  .mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
  }
  @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
      padding-left: 0;
      padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
      padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
      top: 0;
      bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
      display: inline;
      margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
      background: rgba(0, 0, 0, 0.6);
      bottom: 0;
      margin: 0;
      top: auto;
      padding: 3px 5px;
      position: fixed;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
      right: 5px;
      top: 3px;
    }
    .mfp-img-mobile .mfp-close {
      top: 0;
      right: 0;
      width: 35px;
      height: 35px;
      line-height: 35px;
      background: rgba(0, 0, 0, 0.6);
      position: fixed;
      text-align: center;
      padding: 0;
    }
  }
  @media all and (max-width: 900px) {
    .mfp-arrow {
      -webkit-transform: scale(0.75);
      -ms-transform: scale(0.75);
          transform: scale(0.75);
    }
    .mfp-arrow-left {
      -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
    }
    .mfp-arrow-right {
      -webkit-transform-origin: 100%;
      -ms-transform-origin: 100%;
          transform-origin: 100%;
    }
    .mfp-container {
      padding-left: 6px;
      padding-right: 6px;
    }
  }
  .photo-gallery {
    padding: 60px 0 50px;
  }
  .photo-gallery .gallery {
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
  }
  
  @media only screen and (max-width: 992px) {
    .photo-gallery .gallery {
      display: grid !important;
      grid-template-columns: 1fr 1fr;
    }
    .photo-gallery .gallery a {
      width: auto !important;
    }
  }
  
  .photo-gallery .gallery a {
    display: inline-block;
    margin: 0 5px 10px;
    width: -webkit-calc(20% - 10px);
    width: calc(20% - 10px);
  }
  .photo-gallery .gallery a img {
    display: block;
    width: 100%;
  }
  
  footer ul.social,
  .contact-block ul.social {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  footer ul.social {
      margin-top: 45px;
  }
  footer ul.social li,
  .contact-block ul.social li {
    display: inline-block;
    margin: 0 15px 0 0;
    font-size: 24px;
  }
  
  footer ul.social li a:hover,
  .contact-block ul.social li a:hover {
      color: #0091D9;
  }
  
  .contact-block iframe {
    width: 100%;
    margin-top: 60px;
  }
  .contact-block .g-recaptcha iframe {
    margin-top: 0;
  }
  .contact-block .nf-form-content nf-field,
  .contact-block.image-text .nf-form-layout .half {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  .contact-block .nf-form-content label,
  .contact-block .nf-form-content input {
    color: #232323;
  }
  @media (min-width: 992px) {
    .page-id-309 .banner.carousel .bg {
      width: 50%;
      float: right;
    }
  }
  body.search.search-no-results,
  body.search.search-results {
    width: 100%;
    float: none;
    max-width: 100%;
  }
  img.aligncenter {
    display: block;
    margin: 0 auto 30px;
    height: auto;
  }
  .info-cards.owl-carousel.full-width-slider .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    margin: 20px 10px 0 10px;
    cursor: pointer;
    -webkit-transition: background-color 0.8s;
    -o-transition: background-color 0.8s;
    transition: background-color 0.8s;
    border: none;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #e7eaed;
     background-color: #0091D9;
     opacity: 0.3;
  }
  
  .info-cards.owl-carousel.full-width-slider .owl-dots .owl-dot.active {
    background-color: #0091D9;
    opacity: 1;
  }
  
  .image-text .nf-form-content nf-field:nth-child(6) label {
      display: block;
  }
  
  .image-text .nf-form-content button.btn.nf-fu-fileinput-button,
  .image-text .nf-form-content .submit-container .submit-wrap .nf-field-element input {
      background-color: #0091D9;
      color: #fff;
      font-size: 18px;
      font-size: 1.8rem;
  }
  
  .image-text .nf-form-content button.btn.nf-fu-fileinput-button:before,
  .image-text .nf-form-content .submit-container .submit-wrap .nf-field-element:before {
      color: #FFF!important;
      z-index: 999999;
  }
  
  .image-text .nf-form-content .submit-container .submit-wrap .nf-field-element:after,
  .image-text .nf-form-content button.btn.nf-fu-fileinput-button:after {
      background-color: #2C2B28;
      z-index: 99999;
  }
  
  .field-wrap.recaptcha-wrap .nf-field-label {
      margin-left: auto;
      margin-right: auto;
  }
  
  .g-recaptcha > div {
      margin: 0 auto;
  }
  
  footer .newsletter {
      padding-top: 0;
      padding-bottom: 30px;
  }
  
  footer .nf-form-content {
      margin-top: 0;
  }
  
  footer .contact-block .nf-form-content label {
      position: relative;
      top: -3px;
      font-size: 1.5rem;
  }
  
  @media( min-width: 768px ) {
      
      footer .contact-block nf-field:nth-of-type(2) {
          float: left;
          width: 305px;
      }
      
      footer .contact-block nf-field:nth-of-type(3) {
          float: right;
          width: calc(100% - 315px);
      }
  }
  
  footer .contact-block nf-field:nth-of-type(4) .nf-field-container {
      margin-bottom: 0!important;
  }
  
  footer .newsletter h2 {
      font-size: 2.6rem;
      line-height: 1;
      margin-bottom: 30px;
  }
  
  @media( max-width: 991px ) {
      footer .newsletter {
          width: 100%;
      }
  }
  
  .single .written p.text-right {
      float: right;
      margin-top: 30px;
  }
  
  @media only screen and (max-width: 992px) {
    .single .written p.text-right {
      float: none;
      margin-bottom: 100px;
  }
  }
  
  .written ul {
    padding-left: 0;
  }
  
  .written ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 30px;
    list-style-type: none;
  }
  
  .written ul li:before {
    position: absolute;
    top: 8px;
    left: 0;
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    content: '\f30b';
    letter-spacing: 0.1px;
  }
  
  .main-menu div.logo,
  .main-menu .search {
      display: none;
  }
  
  .main-menu.sticky div.logo,
  .main-menu.sticky .search {
      display: block;
  }
  
  .main-menu.navigation ul > li,
  .main-menu div.logo {
      transition: all 0.2s;
  }
  
  .main-menu.navigation.sticky ul > li,
  .main-menu.sticky div.logo {
      margin-right: 30px;
  }
  
  .main-menu div.logo img {
      width: 130px;
  }
  
  .main-menu .search {
      width: auto;
  }
  
  .main-menu .search form input {
      background: transparent;
  }
  
  .main-menu .wrapper {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    

.main-menu .wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

}
  
  .main-menu.sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 99999;
  }
  
  @media( max-width: 1199px ) {
      
      .main-menu div.logo img {
          width: 100px;
      }
      
      .main-menu .search form a {
          margin-right: 10px;
      }
      
      .main-menu.navigation.sticky ul > li, .main-menu.sticky div.logo {
          margin-right: 20px;
      }
      
  }
  
  @media( max-width: 1099px ) {
      .main-menu.sticky .search {
          display: none;
      }
  }
  
  
  .background-video-container {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      width: 55%;
      height: 100%;
      overflow: hidden;
      padding-top: 0;
      z-index: 1;
      pointer-events: none;
  }
  
  .banner.carousel .banner-inner .owl-item .item:after, .banner.carousel .banner-inner:after {
      z-index: 2;
  }
  
  .background-video-container iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      width: 130%;
      height: 135%;
      pointer-events: none;
  }
  
  @media (max-width: 991px) {
      
      .background-video-container {
          width: 100%;
          height: 50%;
      }
  
      .banner-inner .text {
          z-index: 3;
      }
  }
  
  @media (max-width: 767px) {
      
      .background-video-container {
          width: 100%;
          display: block;
          position: static;
          height: auto;
      }
      
      .background-video-container iframe {
          position: static;
          transform: none;
          width: 100%;
          height: auto;
          display: block;
          min-height: 350px;
      }
  
      .banner-inner .text {
          z-index: 3;
      }
  }
  
  .banner .item.with-video {
      min-height: 650px;
  }
  
  .banner .item.with-video .bg {
      opacity: 0;
      display: none;
  }
  
  footer .middle .wrapper .left .footer-menu ul li a:hover,
  .search form:focus a,
  .search form:hover a {
      color: #0091D9;
  }
  
  .search form input:focus::-webkit-input-placeholder {
    color: #0091D9;
  }
  .search form input:focus::-moz-placeholder {
    color: #0091D9;
  }
  .search form input:focus:-ms-input-placeholder {
    color: #0091D9;
  }
  .search form input:focus:-moz-placeholder {
    color: #0091D9;
  }
  
  
  .search form input:hover::-webkit-input-placeholder {
    color: #0091D9;
  }
  .search form input:hover::-moz-placeholder {
    color: #0091D9;
  }
  .search form input:hover:-ms-input-placeholder {
    color: #0091D9;
  }
  .search form input:hover:-moz-placeholder {
    color: #0091D9;
  }
  
  
  .nf-form-content button.btn.nf-fu-fileinput-button:hover:after,
  .btn:hover:after,
  .image-text .nf-form-content .submit-container .submit-wrap .nf-field-element:hover:after, 
  .image-text .nf-form-content button.btn.nf-fu-fileinput-button:hover:after {
      background-color: #00314A;
  }
  
  .contact-block p a:hover {
      color: #0091D9;
  }
  
  @media( min-width: 992px ) {
      .logo-cta .cta {
          display: flex;
          flex-direction: column;
          align-items: flex-end;
          justify-content: center;
      }
      
      .logo-cta .cta a:last-of-type {
          margin-bottom: 0;
      }
  }
  
  
  
  
  section.cards.carousel .card-info .info-cards .item.text-over {
      background: transparent;
      background-color: transparent;
      padding-bottom: 0;
  }
  
  section.cards.carousel .card-info .info-cards .item.text-over .image {
      height: 400px;
      width: 100%;
  }
  
  section.cards.carousel .card-info .info-cards .item.text-over .image img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: center;
  }
  
  section.cards.carousel .card-info .info-cards .item.text-over .content {
      position: absolute;
      top: 0;
      right: 0;
      padding-bottom: 60px;
      bottom: 0px;
      left: 0;
      background: rgba(0, 57, 85, 0.7);
      display: flex;
      padding-top: 40px;
      height: 100%;
  }
  
  
  
  

#moove_gdpr_cookie_info_bar {
  width: 60% !important;
  height: 100%;
  top: 30% !important;;
  left: 20% !important;
  justify-content: center !important;
  align-content: center !important;
  display: flex;
}

.moove-gdpr-info-bar-container {
  display: flex !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
  justify-content: center !important;
  flex-direction: column !important;
  gap: 50px !important;
}

.moove-gdpr-cookie-notice {
  text-align: center !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a {
  font-size: 25px !important;
  line-height: 25px !important;
  margin-bottom: 20px !important;
}

.moove-gdpr-button-holder {
  justify-content: center !important;
  padding-left: 0 !important;
}

@media only screen and (max-width: 767px) {

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
      display: flex !important;
  }

  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a {

      font-size: 15px !important;
      line-height: 15px !important;
      margin-bottom: 20px !important;
  }

}

.single-post .text-wrapper h1 {
  font-size: 30px;
  line-height: 46px;
}

@media only screen and (min-width: 768px) {
  .single-post .image-text {
    max-width: 85%;
    margin: 0 auto;
  }
}


.box {
  display: flex;
  gap: 12px;
}

.sub-box {
  display: flex;
  justify-content: center;
  padding: 62px 75px 32px;
  background: #0091D9;
  flex-direction: column;
  width: 100%;
}

@media only screen and (max-width: 1185px) {
  .box {
    flex-direction: column;
  }
}

.sub-box p {
  color: white;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.sub-box .btn {
  padding: 15px;
  width: 198px;
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .w-80 p { 
    width: 80%;
  }
}