@charset "UTF-8";
.content p,
.content li {
  font-size: 20px;
  line-height: 28px; }
  @media screen and (max-width: 1000px) {
    .content p,
    .content li {
      font-size: 18px;
      line-height: 24px; } }
  @media screen and (max-width: 600px) {
    .content p,
    .content li {
      font-size: 14px;
      line-height: 20px; } }
  .content p:not(:last-child),
  .content li:not(:last-child) {
    margin-bottom: 10px; }
    @media screen and (max-width: 1000px) {
      .content p:not(:last-child),
      .content li:not(:last-child) {
        margin-bottom: 9px; } }
    @media screen and (max-width: 600px) {
      .content p:not(:last-child),
      .content li:not(:last-child) {
        margin-bottom: 7px; } }

.search-cta__list, .card-generic, .card-landscape, .stats-panel {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 25px;
  transition: box-shadow 0.5s; }
  .search-cta__list:hover, .card-generic:hover, .card-landscape:hover, .stats-panel:hover {
    box-shadow: 0 0 20px 2px rgba(0, 23, 43, 0.35); }
  @media screen and (max-width: 600px) {
    .search-cta__list, .card-generic, .card-landscape, .stats-panel {
      box-shadow: 0 0 10px 2px rgba(0, 23, 43, 0.2); } }

/* headings */
/* CONTENT */
/* CARDS */
/* NAVIGATION */
.language-modal {
  display: none; }

.lazy-img {
  display: block; }
  .lazy-img img {
    display: block;
    background: #ffffff; }
  .lazy-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 2;
    transition: 0.2s;
    background: #004b8d; }
  .lazy-img .presentation-icon {
    padding: 30px;
    width: calc(100% - 60px) !important;
    display: block;
    background: #004b8d; }

.card-generic a:hover .lazy-img:before,
.card-landscape a:hover .lazy-img:before,
.gallery__item a:hover .lazy-img:before,
.mia__item a:hover .lazy-img:before,
.list-item a:hover .lazy-img:before {
  opacity: 0.5; }
.card-generic .icon,
.card-landscape .icon,
.gallery__item .icon,
.mia__item .icon,
.list-item .icon {
  z-index: 3; }
.card-generic .icon-link,
.card-landscape .icon-link,
.gallery__item .icon-link,
.mia__item .icon-link,
.list-item .icon-link {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 40%;
  top: 50%;
  opacity: 0;
  transition: opacity 0.5s, left 0.5s; }
  .card-generic .icon-link svg,
  .card-landscape .icon-link svg,
  .gallery__item .icon-link svg,
  .mia__item .icon-link svg,
  .list-item .icon-link svg {
    fill: #ffffff !important;
    width: 48px;
    height: 48px; }
.card-generic a:hover .icon,
.card-landscape a:hover .icon,
.gallery__item a:hover .icon,
.mia__item a:hover .icon,
.list-item a:hover .icon {
  left: 50%;
  opacity: 1; }
.card-generic .icon-download,
.card-landscape .icon-download,
.gallery__item .icon-download,
.mia__item .icon-download,
.list-item .icon-download {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 40%;
  opacity: 0;
  transition: opacity 0.5s, top 0.5s; }
  .card-generic .icon-download svg,
  .card-landscape .icon-download svg,
  .gallery__item .icon-download svg,
  .mia__item .icon-download svg,
  .list-item .icon-download svg {
    fill: #ffffff !important;
    width: 48px;
    height: 48px; }
.card-generic a:hover .icon-download,
.card-landscape a:hover .icon-download,
.gallery__item a:hover .icon-download,
.mia__item a:hover .icon-download,
.list-item a:hover .icon-download {
  opacity: 1;
  top: 50%; }
.card-generic .icon-zoom,
.card-landscape .icon-zoom,
.gallery__item .icon-zoom,
.mia__item .icon-zoom,
.list-item .icon-zoom {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  opacity: 0;
  transition: opacity 0.5s, top 0.5s; }
  .card-generic .icon-zoom svg,
  .card-landscape .icon-zoom svg,
  .gallery__item .icon-zoom svg,
  .mia__item .icon-zoom svg,
  .list-item .icon-zoom svg {
    transition: 0.5s;
    fill: #ffffff !important;
    width: 24px;
    height: 24px; }
.card-generic a:hover .icon-zoom,
.card-landscape a:hover .icon-zoom,
.gallery__item a:hover .icon-zoom,
.mia__item a:hover .icon-zoom,
.list-item a:hover .icon-zoom {
  opacity: 1; }
  .card-generic a:hover .icon-zoom svg,
  .card-landscape a:hover .icon-zoom svg,
  .gallery__item a:hover .icon-zoom svg,
  .mia__item a:hover .icon-zoom svg,
  .list-item a:hover .icon-zoom svg {
    fill: #ffffff !important;
    width: 48px;
    height: 48px; }

/*
.js-image-load {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: $color-light;
    .js-placeholder {
        transition: opacity 0.2s;
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        filter: blur(3px);
        z-index: 2;
    }
    img {
        display: none;
        z-index: 1;
        background-color: #ffffff;
        transition: background 0.5s;
    }
    &.js-image-loaded {
        background: none;
        .js-placeholder {
            opacity: 0;
        }
        img {
            display: block;
        }
        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            z-index: 2;
            transition: 0.2s;
            background: $color-primary;
        }
    }
    .presentation-icon {
        padding: 30px;
        width: calc(100% - 60px) !important;
        display: block;
        background: $color-primary;
    }
}

.card-generic,
.card-landscape,
.gallery__item,
.list-item {
    a:hover {
        .js-image-loaded {
            &:before {
                opacity: 0.5;
            }
        }  
    }
    a:hover .image {
		img {
			filter: grayscale(100%);
		}
    }
    .icon {
        z-index: 3;
    }
	.icon-link {
		position: absolute;
		transform: translate(-50%,-50%);
		left: 40%;
		top: 50%;
		opacity: 0;
		transition: opacity 0.5s, left 0.5s;
		svg {
            fill: #ffffff !important;
            width: 48px;
            height: 48px;
        }
    }
    a:hover {
		.icon {
			left: 50%;
			opacity: 1;
		}
    }
    .icon-download {
		position: absolute;
		transform: translate(-50%,-50%);
		left: 50%;
		top: 40%;
		opacity: 0;
		transition: opacity 0.5s, top 0.5s;
		svg {
            fill: #ffffff !important;
            width: 48px;
            height: 48px;
        }
    }
    a:hover {
		.icon-download {
			opacity: 1;
            top: 50%;
		}
    }
    .icon-zoom {
		position: absolute;
		transform: translate(-50%,-50%);
		left: 50%;
		top: 50%;
		opacity: 0;
		transition: opacity 0.5s, top 0.5s;
		svg {
            transition: 0.5s;
			fill: #ffffff !important;
			width: 24px;
			height: 24px;
        }
    }
    a:hover {
		.icon-zoom {
			opacity: 1;
            svg {
                fill: #ffffff !important;
                width: 48px;
                height: 48px;
            }
		}
    }
}

*/
body {
  padding: 0;
  margin: 0;
  font-family: open sans, Arial, Helvetica, sans-serif; }
  @media (prefers-color-scheme: dark) {
    body {
      background: #202020; } }

input, textarea, button {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  box-sizing: content-box;
  padding: 0;
  background: none; }

.wrapper {
  margin: 0 auto;
  max-width: 1400px;
  padding-left: 30px;
  padding-right: 30px; }
  @media screen and (max-width: 1000px) {
    .wrapper {
      padding-left: 20px;
      padding-right: 20px; } }
  .wrapper--wide {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1600px; }
    @media screen and (max-width: 1000px) {
      .wrapper--wide {
        padding-left: 0;
        padding-right: 0; } }

.wrapper-wide {
  max-width: 1800px;
  margin: 0 auto; }

.wrapper-narrow {
  max-width: 1000px;
  margin: 0 auto; }

.text-center {
  text-align: center; }

ul, li {
  list-style: none;
  margin: 0;
  padding: 0; }

h1, h2, h3, h4, h5, p, ul, ol {
  padding: 0;
  margin: 0; }

.line-break {
  white-space: pre-wrap; }

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8; }

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0; }

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0; }

/* Magnific Popup CSS */
.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;
  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: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-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;
  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;
  box-shadow: none;
  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; }

.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%;
  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;
  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;
  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: 100%; }

.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;
    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);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.header-bar {
  background: #f2f5f7; }
  .header-bar__links {
    display: flex;
    min-height: 46px; }
  .header-bar__link {
    display: flex;
    align-items: center;
    color: #505050;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer; }
    .header-bar__link-a {
      height: 100%;
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #666666;
      font-size: 13px; }
      .header-bar__link-a:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px; }
      .header-bar__link-a--enquiry {
        background: #fae000;
        color: #004b8d;
        padding: 0 15px;
        margin-left: 15px; }
        .header-bar__link-a--enquiry .header-bar__link-svg {
          fill: #004b8d; }
    .header-bar__link--right {
      margin-left: auto; }
    .header-bar__link-svg {
      fill: #505050;
      margin-right: 6px;
      height: 24px; }
  @media (prefers-color-scheme: dark) {
    .header-bar {
      background: #404040; }
      .header-bar__link {
        color: #fafafa; }
        .header-bar__link-a {
          color: #fafafa; }
          .header-bar__link-a--enquiry {
            background: #fae000;
            color: #004b8d; }
            .header-bar__link-a--enquiry .header-bar__link-svg {
              fill: #004b8d; }
        .header-bar__link-svg {
          fill: #fafafa; } }
  @media screen and (max-width: 1000px) {
    .header-bar {
      display: none; } }

html[lang="ar"] .header-bar__link-a--enquiry {
  margin-left: 0px;
  margin-right: 15px; }
html[lang="ar"] .header-bar__link--right {
  margin-left: 0;
  margin-right: auto; }
html[lang="ar"] .header-bar__link-svg {
  padding-right: 0px;
  padding-left: 6px; }

.header-nav {
  position: relative;
  border-bottom: 1px solid #fae000;
  z-index: 999; }
  .header-nav .wrapper {
    display: flex;
    align-items: center;
    height: 90px; }
    @media screen and (max-width: 1000px) {
      .header-nav .wrapper {
        height: 70px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; } }
  .header-nav__logo-svg {
    height: 60px;
    width: auto; }
    @media screen and (max-width: 1000px) {
      .header-nav__logo-svg {
        height: 40px; } }
  @media screen and (max-width: 1000px) {
    .header-nav__logo {
      order: 2;
      margin: 0 auto; } }
  .header-nav__list {
    display: flex;
    margin-left: auto; }
    @media screen and (max-width: 1000px) {
      .header-nav__list {
        display: none; } }
    .header-nav__list-item {
      height: 90px; }
      .header-nav__list-item:hover .header-hover {
        top: 90px;
        opacity: 1; }
      .header-nav__list-item:hover .header-nav__list-label:after {
        width: 100%;
        opacity: 1; }
    .header-nav__list-link {
      position: relative;
      z-index: 3;
      height: 90px;
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #004b8d;
      padding: 0 40px; }
      @media screen and (max-width: 1600px) {
        .header-nav__list-link {
          padding: 0 20px; } }
    .header-nav__list-label {
      align-self: center;
      position: relative; }
      .header-nav__list-label:after {
        content: '';
        position: absolute;
        bottom: -3px;
        height: 2px;
        background: #004b8d;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        width: 0%;
        opacity: .2s;
        transition: .2s; }
  @media (prefers-color-scheme: dark) {
    .header-nav {
      background: #353535; }
      .header-nav__logo-svg path[fill="#004B8D"] {
        fill: #ffffff !important; }
      .header-nav__list-link {
        color: #fafafa; }
      .header-nav__list-label:after {
        background: #fae000; } }

.header-hover {
  position: absolute;
  top: -9999px;
  opacity: 0;
  transition: opacity 0.5s 0.5s, top 0s 0.5s;
  background: #ffffff;
  width: 1400px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1px solid #004b8d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2; }
  @media screen and (max-width: 1440px) {
    .header-hover {
      width: calc(100vw - 40px); } }
  .header-hover__columns {
    padding: 20px;
    display: flex; }
  .header-hover__column--1 {
    width: calc(55% - 10px); }
  .header-hover__column--2 {
    width: calc(45% - 10px);
    margin-left: auto; }
  .header-hover__title {
    display: block;
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 10px; }
    .header-hover__title-link {
      text-transform: uppercase;
      text-decoration: underline;
      text-decoration-color: #fae000;
      text-underline-offset: 6px;
      text-decoration-thickness: 3px;
      color: #004b8d;
      transition: text-decoration 0.25s ease; }
      .header-hover__title-link:hover {
        text-decoration-color: #004b8d; }
  .header-hover__list {
    display: flex;
    flex-wrap: wrap; }
    .header-hover__list-item {
      width: calc(50% - 10px); }
      .header-hover__list-item:nth-child(2n+1) {
        margin-right: 20px; }
      .header-hover__list-item:nth-child(n+3) {
        border-top: 1px dashed #999; }
      .header-hover__list-item--location {
        padding: 12px 0; }
    .header-hover__list-link {
      font-size: 14px;
      line-height: 20px;
      color: #666666;
      text-decoration: none;
      display: block;
      text-decoration-color: #666666;
      display: block;
      transition: .2s;
      padding: 12px 0;
      display: flex;
      align-items: center; }
      .header-hover__list-link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px; }
      .header-hover__list-link--office {
        padding: 0;
        margin-bottom: 4px; }
      .header-hover__list-link--tel {
        padding: 0;
        margin-left: 50px; }
    .header-hover__list svg {
      border-radius: 3px;
      width: 40px;
      height: 26px;
      margin-right: 10px; }
  @media (prefers-color-scheme: dark) {
    .header-hover {
      background: #353535;
      border-top: 1px solid #fae000; }
      .header-hover__title-link {
        color: #fafafa;
        text-decoration-color: #fae000; }
      .header-hover__list-item:nth-child(n+3) {
        border-top: 1px dashed #fafafa; }
      .header-hover__list-link {
        color: #fafafa; } }

.card-feature {
  z-index: 9;
  opacity: 1;
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  display: block; }
  .card-feature:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .6;
    background: #004b8d;
    z-index: 2;
    width: 280px;
    transition: .2s; }
  .card-feature__main {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 20px;
    width: 240px;
    z-index: 5;
    white-space: normal; }
  .card-feature__img {
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
  .card-feature__title {
    font-size: 20px;
    line-height: 30px;
    text-decoration: underline;
    text-decoration-color: #fae000;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    display: block;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #004b8d;
    font-weight: bold;
    transition: text-decoration 0.25s ease;
    color: #ffffff; }
  .card-feature__summary {
    font-size: 14px;
    line-height: 22px;
    display: block;
    color: #fff;
    position: relative;
    z-index: 3;
    margin-bottom: 10px; }
    @media screen and (max-width: 1000px) {
      .card-feature__summary {
        font-size: 14px;
        line-height: 20px; } }
    @media screen and (max-width: 600px) {
      .card-feature__summary {
        font-size: 12px;
        line-height: 18px; } }
    .card-feature__summary:not(:last-child) {
      margin-bottom: 8px; }
      @media screen and (max-width: 1000px) {
        .card-feature__summary:not(:last-child) {
          margin-bottom: 7px; } }
      @media screen and (max-width: 600px) {
        .card-feature__summary:not(:last-child) {
          margin-bottom: 6px; } }
  .card-feature:hover:before {
    opacity: .8; }

html[lang="ar"] .header-nav__list {
  margin-left: 0px;
  margin-right: auto; }
html[lang="ar"] .header-hover__column--2 {
  margin-left: 0px;
  margin-right: auto; }
html[lang="ar"] .card-feature__main {
  left: auto;
  right: 0px; }
html[lang="ar"] .header-hover__list-item:nth-child(2n+1) {
  margin-right: 0px;
  margin-left: 20px; }
html[lang="ar"] .header-hover__list svg {
  margin-right: 0px;
  margin-left: 10px; }

.search-cta {
  background: #004b8d;
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px; }
  .search-cta__input {
    background: #ffffff;
    border-radius: 3px;
    border: none;
    font-size: 18px;
    width: calc(100% - 30px);
    padding: 0 15px;
    font-style: italic;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill:grey;'><path d='M10 18a7.952 7.952 0 0 0 4.897-1.688l4.396 4.396 1.414-1.414-4.396-4.396A7.952 7.952 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8 3.589 8 8 8zm0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6-6-2.691-6-6 2.691-6 6-6z'></path></svg>");
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: 550px center;
    height: 50px;
    line-height: 50px; }
    @media screen and (max-width: 800px) {
      .search-cta__input {
        background-position: 310px center; } }
    .search-cta__input:focus + .search-cta__nav {
      display: block; }
  .search-cta__main {
    width: 600px;
    position: relative;
    height: 50px; }
    @media screen and (max-width: 800px) {
      .search-cta__main {
        width: 360px; } }
  .search-cta__nav {
    height: 0px;
    position: relative;
    display: none; }
  .search-cta__list {
    height: 300px;
    overflow-y: scroll;
    background: #ffffff; }
    .search-cta__list-item {
      margin-top: 2px; }
    .search-cta__list-link {
      display: block;
      color: #505050;
      background: #f2f5f7;
      font-size: 15px;
      text-decoration: none;
      padding: 15px; }
      .search-cta__list-link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px; }
  @media (prefers-color-scheme: dark) {
    .search-cta {
      background: #353535; }
      .search-cta__input {
        background-color: #202020;
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill:white;'><path d='M10 18a7.952 7.952 0 0 0 4.897-1.688l4.396 4.396 1.414-1.414-4.396-4.396A7.952 7.952 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8 3.589 8 8 8zm0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6-6-2.691-6-6 2.691-6 6-6z'></path></svg>");
        color: #fafafa; }
      .search-cta__list {
        background: #353535; }
        .search-cta__list-link {
          color: #fafafa;
          background: #404040; } }

.map-cta {
  background: #f2f5f7;
  display: flex;
  margin-bottom: 60px; }
  @media screen and (max-width: 1000px) {
    .map-cta {
      margin-bottom: 40px; } }
  @media screen and (max-width: 800px) {
    .map-cta {
      margin-bottom: 20px; } }
  .map-cta__logo {
    display: block;
    margin-bottom: 20px; }
    .map-cta__logo-svg {
      height: 60px;
      width: auto;
      display: block; }
  .map-cta__column {
    display: flex;
    align-items: center;
    width: calc(50% - 25px); }
    .map-cta__column--1 {
      margin-right: 50px; }
      @media screen and (max-width: 1000px) {
        .map-cta__column--1 {
          margin-right: 0px; } }
  .map-cta__content {
    padding: 60px 0;
    max-width: 670px;
    margin-left: auto;
    padding-left: 30px;
    margin-left: auto; }
    @media screen and (max-width: 1000px) {
      .map-cta__content {
        padding: 40px 0; } }
    @media screen and (max-width: 800px) {
      .map-cta__content {
        padding: 20px 0; } }
    .map-cta__content p {
      color: #666666;
      font-size: 20px;
      line-height: 28px; }
      .map-cta__content p:not(:last-child) {
        margin-bottom: 15px; }
  .map-cta__locations {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap; }
    @media screen and (min-width: 801px) {
      .map-cta__locations-item {
        width: calc(33% - 10px);
        margin-right: 15px; }
        .map-cta__locations-item:nth-child(3n+3) {
          margin-right: 0px; }
        .map-cta__locations-item:nth-child(n+4) {
          border-top: 1px dashed #999999;
          margin-top: 10px;
          padding-top: 10px; } }
    @media screen and (max-width: 800px) {
      .map-cta__locations-item {
        width: calc(50% - 10px);
        margin-right: 20px; }
        .map-cta__locations-item:nth-child(2n+2) {
          margin-right: 0px; }
        .map-cta__locations-item:nth-child(n+3) {
          border-top: 1px dashed #999999;
          margin-top: 10px;
          padding-top: 10px; } }
    .map-cta__locations-link {
      display: flex;
      align-items: center;
      padding-right: 15px;
      color: #666666;
      text-decoration: none;
      font-size: 15px;
      height: 100%; }
      .map-cta__locations-link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px;
        text-decoration-color: #666666; }
    .map-cta__locations svg {
      display: block;
      border-radius: 3px;
      margin-right: 10px;
      width: 40px;
      height: 26px;
      flex-shrink: 0; }
    .map-cta__locations-label {
      font-size: 15px;
      line-height: 20px; }
  @media screen and (max-width: 1000px) {
    .map-cta {
      display: block; }
      .map-cta__column {
        width: 100%; }
      .map-cta__content {
        margin-left: 0px;
        max-width: none;
        padding-left: 20px;
        padding-right: 20px; } }
  @media (prefers-color-scheme: dark) {
    .map-cta {
      background: #404040; }
      .map-cta__logo-svg path[fill="#004B8D"] {
        fill: #ffffff !important; }
      .map-cta__content p {
        color: #fafafa; } }
  @media screen and (prefers-color-scheme: dark) and (min-width: 801px) {
    .map-cta__locations-item:nth-child(n+4) {
      border-top: 1px dashed #fafafa; } }
  @media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
    .map-cta__locations-item:nth-child(n+3) {
      border-top: 1px dashed #fafafa; } }
  @media (prefers-color-scheme: dark) {
      .map-cta__locations-link {
        color: #fafafa; }
        .map-cta__locations-link:hover {
          text-decoration-color: #fafafa; } }

.global-map {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; }
  .global-map__container iframe {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 70px);
    border: none;
    z-index: 1; }
  .global-map:hover .global-map__overlay {
    opacity: 1; }
  .global-map__overlay {
    transition: opacity 0.2s;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    cursor: pointer;
    text-align: center; }
    .global-map__overlay span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #ffffff; }
      .global-map__overlay span svg {
        display: block;
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
        margin: 0 auto;
        fill: #ffffff; }
  @media screen and (max-width: 1000px) {
    .global-map {
      padding-bottom: 60%; } }

html[lang="ar"] .map-cta__locations-link {
  margin-right: 0px;
  margin-left: 15px; }
html[lang="ar"] .map-cta__locations svg {
  margin-right: 0px;
  margin-left: 10px; }
@media screen and (max-width: 800px) {
  html[lang="ar"] .map-cta__locations-item {
    margin-right: 0;
    margin-left: 20px; }
  html[lang="ar"] .map-cta__locations-item:nth-child(2n+2) {
    margin-left: 0px; } }

.footer-nav {
  padding: 60px 0; }
  @media screen and (max-width: 1000px) {
    .footer-nav {
      padding: 40px 0; } }
  @media screen and (max-width: 800px) {
    .footer-nav {
      padding: 20px 0; } }
  .footer-nav__columns {
    display: flex;
    flex-wrap: wrap; }
  @media screen and (min-width: 1001px) {
    .footer-nav__column {
      width: calc(25% - 22.5px); }
      .footer-nav__column:not(:last-child) {
        margin-right: 29px;
        border-right: 1px solid #cccccc; } }
  @media screen and (max-width: 1000px) {
    .footer-nav__column {
      width: 100%; }
      .footer-nav__column:not(:last-child) {
        margin-bottom: 30px; } }
  .footer-nav__title-link {
    font-size: 20px;
    line-height: 30px;
    text-decoration: underline;
    text-decoration-color: #fae000;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    display: block;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #004b8d;
    font-weight: bold;
    transition: text-decoration 0.25s ease; }
    .footer-nav__title-link:hover {
      text-decoration-color: #004b8d; }
  @media screen and (max-width: 1000px) {
    .footer-nav__list {
      display: flex;
      flex-wrap: wrap; } }
  .footer-nav__list-item {
    margin-bottom: 10px; }
    @media screen and (min-width: 801px) and (max-width: 1000px) {
      .footer-nav__list-item {
        margin-bottom: 15px;
        width: calc(33.3% - 15px);
        margin-right: 20px; }
        .footer-nav__list-item:nth-child(3n+3) {
          margin-right: 0px; } }
    @media screen and (max-width: 800px) {
      .footer-nav__list-item {
        margin-bottom: 15px;
        width: calc(50% - 10px);
        margin-right: 20px; }
        .footer-nav__list-item:nth-child(2n+2) {
          margin-right: 0px; } }
  .footer-nav__list-link {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    text-decoration: none;
    display: block;
    text-decoration-color: #666666; }
    .footer-nav__list-link:hover {
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-thickness: 2px; }
  .footer-nav__icon {
    border-top: 1px solid #cccccc;
    padding-top: 15px;
    margin-top: 15px; }
    .footer-nav__icon-link {
      display: flex !important;
      align-items: center;
      color: #666666;
      text-decoration: none; }
      .footer-nav__icon-link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px;
        text-decoration-color: #666666; }
    .footer-nav__icon-svg {
      fill: #ffffff;
      padding: 3px;
      border-radius: 3px;
      margin-right: 10px;
      background: #666666; }
      .footer-nav__icon-svg--linkedin {
        background: #0A66C2; }
@media screen and (prefers-color-scheme: dark) and (min-width: 1001px) {
  .footer-nav__column:not(:last-child) {
    border-right: 1px solid #fafafa; } }
  @media (prefers-color-scheme: dark) {
    .footer-nav__title-link {
      color: #fafafa; }
      .footer-nav__title-link:hover {
        text-decoration-color: #fafafa; }
    .footer-nav__list-link {
      color: #fafafa; }
    .footer-nav__icon {
      border-top: 1px solid #fafafa; }
      .footer-nav__icon-link {
        color: #fafafa; }
        .footer-nav__icon-link:hover {
          text-decoration-color: #fafafa; } }

.footer-legal {
  background: #004b8d;
  padding: 30px 0; }
  .footer-legal__row {
    display: flex;
    align-items: center; }
    @media screen and (max-width: 1000px) {
      .footer-legal__row {
        flex-wrap: wrap; } }
    @media screen and (max-width: 800px) {
      .footer-legal__row {
        display: block; } }
    .footer-legal__row:first-child {
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
      @media screen and (max-width: 800px) {
        .footer-legal__row:first-child {
          margin-bottom: 15px;
          padding-bottom: 15px; } }
  .footer-legal__logo {
    margin-right: 20px; }
    .footer-legal__logo-svg {
      display: block;
      height: 50px;
      width: auto; }
    @media screen and (max-width: 800px) {
      .footer-legal__logo {
        margin-bottom: 15px; } }
  .footer-legal__info {
    margin-right: 30px; }
    .footer-legal__info p {
      color: #ffffff;
      font-size: 14px;
      line-height: 18px;
      white-space: nowrap; }
      @media screen and (max-width: 800px) {
        .footer-legal__info p {
          white-space: pre-wrap; } }
      .footer-legal__info p:not(:last-child) {
        margin-bottom: 6px; }
  @media screen and (max-width: 1000px) {
    .footer-legal__nav {
      width: 100%;
      display: block; } }
  .footer-legal__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end; }
    @media screen and (max-width: 1000px) {
      .footer-legal__list {
        justify-content: flex-start;
        display: block; } }
    .footer-legal__list-item {
      margin-right: 20px;
      font-size: 14px;
      line-height: 18px;
      padding: 5px 0; }
      @media screen and (max-width: 1000px) {
        .footer-legal__list-item {
          margin-right: 0px;
          margin-left: 0; } }
    .footer-legal__list-link {
      font-size: 14px;
      line-height: 20px;
      color: #666666;
      text-decoration: none;
      display: block;
      text-decoration-color: #666666;
      color: #ffffff;
      text-decoration-color: #ffffff; }
      .footer-legal__list-link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px; }
  @media (prefers-color-scheme: dark) {
    .footer-legal {
      background: #353535; }
      .footer-legal__info p {
        color: #fafafa; }
      .footer-legal__list-link {
        color: #fafafa;
        text-decoration-color: #fafafa; } }

.footer__strapline {
  display: block;
  margin-left: auto; }
  .footer__strapline-svg {
    fill: #ffffff;
    height: 50px;
    width: auto; }
  @media screen and (max-width: 1650px) {
    .footer__strapline {
      margin-right: 120px; } }
  @media screen and (max-width: 1000px) {
    .footer__strapline {
      margin-top: 20px;
      margin-right: 0px;
      margin-left: 0px; } }
  @media screen and (max-width: 1000px) {
    .footer__strapline {
      margin-left: none;
      border-top: 1px solid rgba(255, 255, 255, 0.5);
      margin-top: 20px;
      padding-top: 20px;
      width: 100%; } }

@media screen and (min-width: 1001px) {
  html[lang="ar"] .footer-nav__column:not(:last-child) {
    margin-right: 0px;
    border-right: none;
    margin-left: 29px;
    border-left: 1px solid #cccccc; } }
html[lang="ar"] .footer-nav__icon-svg {
  margin-right: none;
  margin-left: 10px; }
html[lang="ar"] .footer-legal__logo {
  margin-right: 0px;
  margin-left: 20px; }
  @media screen and (max-width: 1650px) {
    html[lang="ar"] .footer-legal__logo {
      margin-right: 120px; } }
  @media screen and (max-width: 1000px) {
    html[lang="ar"] .footer-legal__logo {
      margin-right: 0px; } }
html[lang="ar"] .footer-legal__nav {
  margin-left: 0px;
  margin-right: auto; }
html[lang="ar"] .footer__strapline {
  margin-left: 0px;
  margin-right: auto; }
  @media screen and (max-width: 1650px) {
    html[lang="ar"] .footer__strapline {
      margin-right: auto; } }

.js-nav-r-button {
  margin-left: auto;
  cursor: pointer;
  display: none; }
  .js-nav-r-button svg {
    display: block;
    margin: 0 auto;
    fill: #004b8d;
    width: 24px;
    height: 24px; }
    @media (prefers-color-scheme: dark) {
      .js-nav-r-button svg {
        fill: #fafafa; } }
  .js-nav-r-button strong {
    display: block;
    text-align: center;
    color: #004b8d;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase; }
    @media (prefers-color-scheme: dark) {
      .js-nav-r-button strong {
        color: #fafafa; } }
  @media screen and (max-width: 1000px) {
    .js-nav-r-button {
      display: block; } }
  .js-nav-r-button[data-menu=language] {
    order: 1;
    margin-left: 0;
    margin-right: auto; }
  .js-nav-r-button[data-menu=navigation] {
    order: 3; }

.js-site-menu-r .nav-r-wrapper {
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  overflow-y: scroll;
  background: #efefef;
  z-index: 99999999;
  transition: .5s; }

.js-site-menu-r.active .nav-r-wrapper {
  right: 0; }

.js-site-menu-r .nav-r-close {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8888;
  transition: opacity .5s; }

.js-site-menu-r.active .nav-r-close {
  opacity: 1;
  left: 0; }

.nav-r-panel {
  padding: 12px; }
  .nav-r-panel .nav-r-link,
  .nav-r-panel .nav-r-more-button {
    background: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    padding: 12px;
    color: #666666;
    cursor: pointer;
    min-height: 24px;
    transition: 0.2s; }
    .nav-r-panel .nav-r-link:not(:last-child),
    .nav-r-panel .nav-r-more-button:not(:last-child) {
      margin-bottom: 3px; }
    .nav-r-panel .nav-r-link .svg-icon,
    .nav-r-panel .nav-r-more-button .svg-icon {
      fill: #666666;
      width: 24px;
      height: 24px; }
    .nav-r-panel .nav-r-link:hover,
    .nav-r-panel .nav-r-more-button:hover {
      background: #004b8d;
      color: #ffffff; }
      .nav-r-panel .nav-r-link:hover .svg-icon,
      .nav-r-panel .nav-r-more-button:hover .svg-icon {
        fill: #ffffff; }
  .nav-r-panel .nav-r-link {
    display: flex;
    align-items: center; }
    .nav-r-panel .nav-r-link.svg-flag svg {
      width: 20px;
      height: 13px;
      border-radius: 3px;
      margin-right: 10px; }
  .nav-r-panel .nav-r-cat-title {
    background: #004b8d;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    padding: 15px 12px;
    color: #ffffff;
    cursor: pointer;
    display: block;
    font-weight: bold; }
  .nav-r-panel + .nav-r-panel {
    border-top: 3px solid #ffffff; }

.nav-r-svg-left {
  display: flex;
  align-items: center; }

.nav-r-svg-left svg {
  margin-right: 10px; }

.nav-r-svg-left span {
  width: calc(100% - 20px); }

.nav-r-svg-right {
  display: flex;
  align-items: center; }

.nav-r-svg-right svg {
  margin-left: auto; }

.nav-r-svg-right span {
  width: calc(100% - 20px); }

.nav-r-svg-top {
  display: block !important; }

.nav-r-svg-top svg {
  display: block;
  margin: 0 auto 5px auto; }

.nav-r-svg-top span {
  display: block;
  width: 100%;
  text-align: center; }

.nav-r-more {
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  overflow-y: scroll;
  background: #efefef;
  z-index: 999;
  transition: .5s; }

.nav-r-more.active {
  right: 0; }

.nav-r-wrapper .js-nav-r-close,
.nav-r-wrapper .nav-r-back {
  padding: 12px;
  background: #ffffff;
  cursor: pointer;
  color: #004b8d; }
  .nav-r-wrapper .js-nav-r-close svg,
  .nav-r-wrapper .nav-r-back svg {
    fill: #004b8d; }

@media (prefers-color-scheme: dark) {
  .js-site-menu-r .nav-r-wrapper {
    background: #202020; }

  .nav-r-panel {
    padding: 12px; }
    .nav-r-panel .nav-r-link,
    .nav-r-panel .nav-r-more-button {
      background: #404040;
      color: #fafafa; }
      .nav-r-panel .nav-r-link .svg-icon,
      .nav-r-panel .nav-r-more-button .svg-icon {
        fill: #fafafa; }
      .nav-r-panel .nav-r-link:hover,
      .nav-r-panel .nav-r-more-button:hover {
        background: #353535;
        color: #fafafa; }
        .nav-r-panel .nav-r-link:hover .svg-icon,
        .nav-r-panel .nav-r-more-button:hover .svg-icon {
          fill: #fafafa; }
    .nav-r-panel .nav-r-cat-title {
      background: #404040;
      color: #fafafa; }
    .nav-r-panel + .nav-r-panel {
      border-top: 3px solid yellow; }

  .nav-r-more {
    background: #202020; }

  .nav-r-wrapper .js-nav-r-close,
  .nav-r-wrapper .nav-r-back {
    background: #353535;
    color: #fafafa; }
    .nav-r-wrapper .js-nav-r-close svg,
    .nav-r-wrapper .nav-r-back svg {
      fill: #fafafa; } }
html[lang="ar"] .js-nav-r-button[data-menu=language] {
  order: 1;
  margin-left: auto;
  margin-right: 0; }
html[lang="ar"] .js-nav-r-button {
  margin-left: 0;
  margin-right: auto; }
html[lang="ar"] .nav-r-svg-left svg {
  margin-right: 0;
  margin-left: auto; }
html[lang="ar"] .nav-r-panel .nav-r-more-button .svg-icon {
  transform: rotate(180deg); }
html[lang="ar"] .nav-r-panel .nav-r-link.svg-flag svg {
  margin-right: 0;
  margin-left: auto; }

.page-rows .row:first-child,
.page-rows .anchors-nav + .row {
  margin-top: 60px; }
  .page-rows .row:first-child.homepage-hero,
  .page-rows .anchors-nav + .row.homepage-hero {
    margin-top: 0px; }
  .page-rows .row:first-child.row--columns,
  .page-rows .anchors-nav + .row.row--columns {
    margin-top: 0px; }
  @media screen and (max-width: 1000px) {
    .page-rows .row:first-child,
    .page-rows .anchors-nav + .row {
      margin-top: 40px; } }
  @media screen and (max-width: 800px) {
    .page-rows .row:first-child,
    .page-rows .anchors-nav + .row {
      margin-top: 20px; } }

.row {
  margin-bottom: 60px;
  /* Individual row preferences */
  /*
  &--columns {
  	padding-top: 0px;
  }
  &--carousel {
  	padding-top: 30px;
  	+ .row {
  		padding-top: 30px;
  	}
  }
  &--content + &--carousel {
  	padding-top: 10px;
  }
  &--carousel + &--content {
  	padding-top: 10px;
  }*/ }
  @media screen and (max-width: 1000px) {
    .row {
      margin-bottom: 40px; } }
  @media screen and (max-width: 800px) {
    .row {
      margin-bottom: 20px; } }
  .row--no-margin {
    margin-bottom: 0px; }
  .row--intro {
    background: linear-gradient(0deg, #f2f5f7 0%, rgba(242, 245, 247, 0) 100%); }
    @media (prefers-color-scheme: dark) {
      .row--intro {
        background: #202020; } }
  .row--carousel {
    margin-top: -30px; }
    .row--carousel + .row {
      margin-top: -30px; }
    @media screen and (max-width: 800px) {
      .row--carousel {
        margin-top: -20px; }
        .row--carousel + .row {
          margin-top: -20px; } }
  .row--content-above-grid {
    margin-bottom: 40px; }
    @media screen and (max-width: 1000px) {
      .row--content-above-grid {
        margin-bottom: 30px; } }
    @media screen and (max-width: 800px) {
      .row--content-above-grid {
        margin-bottom: 20px; } }

/*
.spacing--widget {
	margin-bottom: 15px;
}	
.spacing--grid {
	//
	margin-bottom: 15px;
}	

.spacing--widget + .spacing--normal {
	margin-top: 60px;
}

.spacing--widget + .spacing--grid {
	margin-top: 30px;
}

.spacing--grid + .spacing--normal,
.spacing--grid + .spacing--widget {
	margin-top: 30px;
}

.row__inner {
	border: 1px solid yellow;
	background: grey;
	min-height: 200px;
}
*/
/*
.row {
  	$root: &;
	
	border: 1px solid red;
	
	margin-bottom: 60px;
	@media screen and (max-width: 1000px) {
		margin-bottom: 40px;
	}
	@media screen and (max-width: 800px) {
		margin-bottom: 20px;
	}
	
	&:first-child {
		&:not(.row--no-padding) {
			padding-top: 60px;
			@media screen and (max-width: 1000px) {
				padding-top: 40px;
			}
			@media screen and (max-width: 800px) {
				padding-top: 20px;
			}
		}
	}
	
	&--no-padding {
		padding: 0px;
	}
	&--no-margin {
		margin-bottom: 0px;
	}
	
	&--default {
		background: none;
		& + &--default {
			padding-top: 0px;
		}
	}
	&--intro {
		background: linear-gradient(0deg, rgba(242,245,247,1) 0%, rgba(242,245,247,0) 100%);
	}
}
.row-child {
	margin-bottom: 30px;
	@media screen and (max-width: 1000px) {
		margin-bottom: 20px;
	}
	@media screen and (max-width: 800px) {
		margin-bottom: 10px;
	}
	
}
*/
.block {
  padding: 40px; }
  @media screen and (max-width: 1000px) {
    .block {
      padding: 20px; } }
  @media screen and (max-width: 800px) {
    .block {
      padding: 20px; } }
  .block--blue {
    background: #004b8d; }
  .block--grey {
    background: #f2f5f7; }
  .block--dark-grey {
    background: #505050; }
  @media (prefers-color-scheme: dark) {
    .block--blue, .block--grey {
      background: #404040; } }
  .block .wrapper {
    padding: 0; }

.homepage-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* or absolute or fixed */ }
  .homepage-hero__video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 105%;
    top: 0;
    height: 100%;
    object-fit: cover; }
  .homepage-hero .wrapper {
    height: 400px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center; }
    @media screen and (max-width: 800px) {
      .homepage-hero .wrapper {
        height: auto;
        padding: 30px; } }
  .homepage-hero__container {
    z-index: 2; }
    @media screen and (max-width: 1000px) {
      .homepage-hero__container {
        text-align: center;
        width: 100%; } }
  .homepage-hero__title-1 {
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #fae000;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    color: #ffffff;
    margin-bottom: 10px; }
    @media screen and (max-width: 800px) {
      .homepage-hero__title-1 {
        font-size: 18px;
        line-height: 24px; } }
  .homepage-hero__title-2 {
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px; }
    @media screen and (max-width: 1000px) {
      .homepage-hero__title-2 {
        font-size: 34px;
        line-height: 40px; } }
    @media screen and (max-width: 800px) {
      .homepage-hero__title-2 {
        font-size: 24px;
        line-height: 30px; } }
  .homepage-hero__list {
    display: flex;
    margin-bottom: 0px; }
    @media screen and (max-width: 1000px) {
      .homepage-hero__list {
        justify-content: center;
        margin-bottom: 20px; } }
    .homepage-hero__list-item:not(:last-child) {
      margin-right: 15px; }
    @media screen and (max-width: 1000px) {
      .homepage-hero__list-item {
        display: none; } }
    @media screen and (max-width: 1000px) {
      .homepage-hero__list-item--enquiry {
        display: block; } }

html[lang="ar"] .homepage-hero__list-item:not(:last-child) {
  margin-right: 0;
  margin-left: 15px; }
html[lang="ar"] .homepage-hero__locations-link {
  margin-right: 0;
  margin-left: 15px; }

.content {
  	/*
      .button-highlight {
          padding: 15px;
          background: $color-primary;
          display: inline-flex;
          text-decoration: none;
          align-items: center;
          @extend %text-body;
          color: #ffffff;
          img {
              width: 24px !important;
              height: 24px !important;
              margin-right: 10px;
          }
      }
  	*/ }
  .content p,
  .content li {
    color: #666666; }
  .content ol,
  .content ul {
    margin-left: 30px; }
  .content li {
    margin: 15px 0; }
  .content ol li {
    list-style: decimal; }
  .content ul li {
    list-style: square; }
  .content * + h3 {
    margin-top: 40px; }
  .content a {
    text-decoration: none;
    color: #004b8d; }
    .content a:hover {
      text-decoration: underline; }
  .content img {
    max-width: 100%;
    width: auto !important;
    height: auto !important; }
  .content iframe {
    margin: 0 auto;
    display: block; }
    .content iframe[src*=youtube], .content iframe[src*=vimeo] {
      width: 755px;
      height: 424px;
      max-width: 100%;
      max-height: calc((100vw - 40px) / (16/9)); }
  .content h1, .content .header-1 {
    font-size: 34px;
    line-height: 46px;
    color: #505050;
    font-weight: 900; }
    .content h1:first-child, .content .header-1:first-child {
      text-transform: uppercase;
      text-decoration: underline;
      text-decoration-color: #fae000;
      text-underline-offset: 6px;
      text-decoration-thickness: 3px; }
      .content h1:first-child a, .content .header-1:first-child a {
        text-decoration-color: #fae000; }
    .content h1:not(:last-child), .content .header-1:not(:last-child) {
      margin-bottom: 20px; }
    @media screen and (max-width: 1000px) {
      .content h1, .content .header-1 {
        font-size: 24px;
        line-height: 36px; }
        .content h1:not(:last-child), .content .header-1:not(:last-child) {
          margin-bottom: 18px; } }
    @media screen and (max-width: 800px) {
      .content h1, .content .header-1 {
        font-size: 20px;
        line-height: 32px; }
        .content h1:not(:last-child), .content .header-1:not(:last-child) {
          margin-bottom: 16px; } }
    .content h1:first-child, .content .header-1:first-child {
      color: #004b8d; }
  .content h2, .content h3, .content h4, .content h5, .content .header-2 {
    font-size: 28px;
    line-height: 40px;
    color: #004b8d;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: #fae000;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    font-weight: 900; }
    .content h2 a, .content h3 a, .content h4 a, .content h5 a, .content .header-2 a {
      text-decoration-color: #fae000; }
    .content h2:not(:last-child), .content h3:not(:last-child), .content h4:not(:last-child), .content h5:not(:last-child), .content .header-2:not(:last-child) {
      margin-bottom: 20px; }
    @media screen and (max-width: 1000px) {
      .content h2, .content h3, .content h4, .content h5, .content .header-2 {
        font-size: 24px;
        line-height: 36px; }
        .content h2:not(:last-child), .content h3:not(:last-child), .content h4:not(:last-child), .content h5:not(:last-child), .content .header-2:not(:last-child) {
          margin-bottom: 18px; } }
    @media screen and (max-width: 800px) {
      .content h2, .content h3, .content h4, .content h5, .content .header-2 {
        font-size: 20px;
        line-height: 32px; }
        .content h2:not(:last-child), .content h3:not(:last-child), .content h4:not(:last-child), .content h5:not(:last-child), .content .header-2:not(:last-child) {
          margin-bottom: 16px; } }
  .content__profile-h1 {
    text-decoration: none !important; }
    .content__profile-h1 small {
      font-size: 24px;
      line-height: 30px;
      text-transform: uppercase;
      font-weight: bold;
      text-decoration: underline;
      text-decoration-color: #fae000;
      text-underline-offset: 6px;
      text-decoration-thickness: 3px;
      display: block;
      margin-bottom: 10px; }
      @media screen and (max-width: 800px) {
        .content__profile-h1 small {
          font-size: 18px;
          line-height: 24px; } }
    .content__profile-h1 strong {
      font-size: 40px;
      line-height: 50px;
      text-transform: uppercase;
      font-weight: bold;
      text-decoration: none !important; }
      @media screen and (max-width: 1000px) {
        .content__profile-h1 strong {
          font-size: 34px;
          line-height: 40px; } }
      @media screen and (max-width: 800px) {
        .content__profile-h1 strong {
          font-size: 24px;
          line-height: 30px; } }
  .content p, .content li {
    font-size: 20px;
    line-height: 30px;
    color: #505050; }
    .content p:not(:last-child), .content li:not(:last-child) {
      margin-bottom: 20px; }
    @media screen and (max-width: 1000px) {
      .content p, .content li {
        font-size: 18px;
        line-height: 26px; }
        .content p:not(:last-child), .content li:not(:last-child) {
          margin-bottom: 18px; } }
    @media screen and (max-width: 800px) {
      .content p, .content li {
        font-size: 16px;
        line-height: 24px; }
        .content p:not(:last-child), .content li:not(:last-child) {
          margin-bottom: 16px; } }
  .content h1 a, .content h2 a, .content h3 a, .content h4 a, .content h5 a, .content p a, .content li a {
    color: #004b8d; }
  .content--center {
    text-align: center; }
  @media screen and (min-width: 1001px) {
    .content--narrow {
      max-width: 900px;
      margin: 0 auto; } }
  @media (prefers-color-scheme: dark) {
    .content h1 {
      color: #fafafa;
      font-weight: 900; }
      .content h1:first-child {
        color: #fafafa; }
    .content h2, .content h3, .content h4, .content h5 {
      color: #fafafa; }
      .content h2:first-child, .content h3:first-child, .content h4:first-child, .content h5:first-child {
        color: #fafafa; }
    .content p, .content ol, .content ul, .content li {
      color: #fafafa; }
    .content--grey {
      background: #353535; }
    .content--blue {
      background: #004b8d; }
      .content--blue h1, .content--blue h2, .content--blue h3, .content--blue h4, .content--blue p {
        color: #fafafa; }
        .content--blue h1:first-child, .content--blue h2:first-child, .content--blue h3:first-child, .content--blue h4:first-child, .content--blue p:first-child {
          color: #fafafa; }
    .content h1 a, .content h2 a, .content h3 a, .content h4 a, .content h5 a, .content p a, .content li a {
      color: #fafafa; }
    .content .button, .content .card-generic__button, .content .card-landscape__button {
      color: #004b8d; } }

.block--blue .content h1,
.block--dark-grey .content h1 {
  color: #ffffff;
  font-weight: 900; }
  .block--blue .content h1:first-child,
  .block--dark-grey .content h1:first-child {
    color: #ffffff; }
.block--blue .content h2, .block--blue .content h3, .block--blue .content h4,
.block--dark-grey .content h2,
.block--dark-grey .content h3,
.block--dark-grey .content h4 {
  color: #ffffff; }
  .block--blue .content h2:first-child, .block--blue .content h3:first-child, .block--blue .content h4:first-child,
  .block--dark-grey .content h2:first-child,
  .block--dark-grey .content h3:first-child,
  .block--dark-grey .content h4:first-child {
    color: #ffffff; }
.block--blue .content p,
.block--dark-grey .content p {
  color: #ffffff; }
.block--blue .content h1 a, .block--blue .content h2 a, .block--blue .content h3 a, .block--blue .content h4 a, .block--blue .content p a, .block--blue .content li a,
.block--dark-grey .content h1 a,
.block--dark-grey .content h2 a,
.block--dark-grey .content h3 a,
.block--dark-grey .content h4 a,
.block--dark-grey .content p a,
.block--dark-grey .content li a {
  color: #ffffff; }
.block--blue .content .button, .block--blue .content .card-generic__button, .block--blue .content .card-landscape__button,
.block--dark-grey .content .button,
.block--dark-grey .content .card-generic__button,
.block--dark-grey .content .card-landscape__button {
  color: #004b8d; }
  .block--blue .content .button:hover, .block--blue .content .card-generic__button:hover, .block--blue .content .card-landscape__button:hover,
  .block--dark-grey .content .button:hover,
  .block--dark-grey .content .card-generic__button:hover,
  .block--dark-grey .content .card-landscape__button:hover {
    color: #ffffff; }

.block--sticky {
  position: sticky;
  top: 40px; }

.columns__column--blue .content h1,
.columns__column--dark-grey .content h1 {
  color: #ffffff;
  font-weight: 900; }
  .columns__column--blue .content h1:first-child,
  .columns__column--dark-grey .content h1:first-child {
    color: #ffffff; }
.columns__column--blue .content h2, .columns__column--blue .content h3, .columns__column--blue .content h4,
.columns__column--dark-grey .content h2,
.columns__column--dark-grey .content h3,
.columns__column--dark-grey .content h4 {
  color: #ffffff; }
  .columns__column--blue .content h2:first-child, .columns__column--blue .content h3:first-child, .columns__column--blue .content h4:first-child,
  .columns__column--dark-grey .content h2:first-child,
  .columns__column--dark-grey .content h3:first-child,
  .columns__column--dark-grey .content h4:first-child {
    color: #ffffff; }
.columns__column--blue .content p, .columns__column--blue .content li,
.columns__column--dark-grey .content p,
.columns__column--dark-grey .content li {
  color: #ffffff; }
.columns__column--blue .content h1 a, .columns__column--blue .content h2 a, .columns__column--blue .content h3 a, .columns__column--blue .content h4 a, .columns__column--blue .content p a, .columns__column--blue .content li a,
.columns__column--dark-grey .content h1 a,
.columns__column--dark-grey .content h2 a,
.columns__column--dark-grey .content h3 a,
.columns__column--dark-grey .content h4 a,
.columns__column--dark-grey .content p a,
.columns__column--dark-grey .content li a {
  color: #ffffff; }
.columns__column--blue .content .button, .columns__column--blue .content .card-generic__button, .columns__column--blue .content .card-landscape__button,
.columns__column--dark-grey .content .button,
.columns__column--dark-grey .content .card-generic__button,
.columns__column--dark-grey .content .card-landscape__button {
  color: #004b8d; }
  .columns__column--blue .content .button:hover, .columns__column--blue .content .card-generic__button:hover, .columns__column--blue .content .card-landscape__button:hover,
  .columns__column--dark-grey .content .button:hover,
  .columns__column--dark-grey .content .card-generic__button:hover,
  .columns__column--dark-grey .content .card-landscape__button:hover {
    color: #ffffff; }

.button-list {
  display: flex;
  align-items: center;
  justify-content: center; }
  .button-list:not(:first-child) {
    margin-top: 15px; }
  .button-list .button, .button-list .card-generic__button, .button-list .card-landscape__button {
    margin: 0 10px; }

.button, .card-generic__button, .card-landscape__button {
  background: #fae000;
  color: #004b8d;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  font-size: 16px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 2px solid #fae000;
  display: inline-flex;
  align-items: center; }
  .button:after, .card-generic__button:after, .card-landscape__button:after {
    content: '';
    width: 1%;
    padding-bottom: 1%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .3s;
    background: #004b8d;
    z-index: -1;
    border-radius: 120%; }
  .button:hover, .card-generic__button:hover, .card-landscape__button:hover {
    text-decoration: none !important;
    color: #ffffff; }
    .button:hover .button__icon-svg, .card-generic__button:hover .button__icon-svg, .card-landscape__button:hover .button__icon-svg {
      fill: #ffffff; }
  .button:hover:after, .card-generic__button:hover:after, .card-landscape__button:hover:after {
    width: 120%;
    padding-bottom: 120%;
    opacity: 1; }
  .button--white {
    background: #ffffff;
    color: #004b8d;
    border: 2px solid #ffffff; }
  .button__icon {
    width: 20px;
    height: 20px;
    margin-right: 10px; }
    .button__icon svg {
      width: 20px;
      height: 20px;
      fill: #004b8d; }

.link-icons__list-item {
  display: block; }
  .link-icons__list-item:not(:last-child) {
    margin-bottom: 15px; }
.link-icons__list-link {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 30px; }
  .link-icons__list-link:not(:last-child) {
    margin-bottom: 20px; }
  @media screen and (max-width: 1000px) {
    .link-icons__list-link {
      font-size: 18px;
      line-height: 26px; }
      .link-icons__list-link:not(:last-child) {
        margin-bottom: 18px; } }
  @media screen and (max-width: 800px) {
    .link-icons__list-link {
      font-size: 16px;
      line-height: 24px; }
      .link-icons__list-link:not(:last-child) {
        margin-bottom: 16px; } }
.link-icons__list-svg {
  width: 24px;
  height: 24px;
  fill: #004b8d;
  margin-right: 10px; }
@media (prefers-color-scheme: dark) {
  .link-icons__list-svg {
    fill: #fafafa; } }

html[lang="ar"] .content ol,
html[lang="ar"] .content ul {
  margin-left: 0;
  margin-right: 30px; }

.columns {
  display: flex;
  align-items: center; }
  .columns--align-top {
    align-items: flex-start; }
  .columns__column {
    width: calc(50% - 25px);
    position: relative;
    /*
    &--padding {
    	background: red;
    	@media screen and (min-width:1001px) {
    		margin-top: 60px;
    		margin-bottom: 60px;
    	}
    	@media screen and (max-width:1000px) {
    		margin-top: 40px;
    		margin-bottom: 40px;
    	}
    }
    */ }
    .columns__column--order-1 {
      order: 1;
      margin-right: 50px; }
    .columns__column--order-2 {
      order: 2; }
    .columns__column--blue {
      background: #004b8d; }
    .columns__column--grey {
      background: #f2f5f7; }
    .columns__column--dark-grey {
      background: #666666; }
    .columns__column--stretch {
      align-self: stretch; }
    .columns__column--blue, .columns__column--grey, .columns__column--dark-grey {
      padding: 20px;
      width: calc(50% - 60px) !important;
      align-items: center;
      display: flex;
      flex-wrap: wrap; }
      @media screen and (max-width: 1000px) {
        .columns__column--blue, .columns__column--grey, .columns__column--dark-grey {
          width: calc(100% - 40px) !important; } }
    @media (prefers-color-scheme: dark) {
      .columns__column--blue, .columns__column--grey {
        background: #404040; } }
  .columns__widget {
    width: 100%; }
    .columns__widget:not(:last-child) {
      margin-bottom: 20px; }
  @media screen and (min-width: 1001px) {
    .columns__inner-row:not(:last-child) {
      margin-bottom: 60px; } }
  @media screen and (max-width: 1000px) {
    .columns__inner-row:not(:last-child) {
      margin-bottom: 20px; } }
  .columns__inner-row.background-blue, .columns__inner-row.background-grey {
    position: relative; }
    @media screen and (min-width: 1001px) {
      .columns__inner-row.background-blue, .columns__inner-row.background-grey {
        padding: 60px 0; } }
    @media screen and (max-width: 1000px) {
      .columns__inner-row.background-blue, .columns__inner-row.background-grey {
        padding: 20px 0; } }
    .columns__inner-row.background-blue:before, .columns__inner-row.background-grey:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: -1;
      right: -15px;
      width: 100vw;
      margin-right: -50vw; }
      @media screen and (max-width: 1000px) {
        .columns__inner-row.background-blue:before, .columns__inner-row.background-grey:before {
          margin-right: 0px;
          left: -20px;
          right: -20px;
          width: auto; } }
  @media screen and (max-width: 1000px) {
    .columns {
      display: block; }
      .columns__column {
        width: 100%; }
        .columns__column--order-1 {
          order: none;
          margin-right: 0px; }
        .columns__column--order-2 {
          order: none; }
        .columns__column:first-child {
          margin-bottom: 30px; } }

.background-grey {
  background: #f2f5f7; }
  .background-grey:before {
    background: #f2f5f7; }
  @media (prefers-color-scheme: dark) {
    .background-grey {
      background: #404040; }
      .background-grey:before {
        background: #404040; } }

.background-blue {
  background: #004b8d; }
  .background-blue:before {
    background: #004b8d; }
  .background-blue .content * {
    color: #ffffff; }

.overflow-hidden {
  overflow: hidden; }

html[lang="ar"] .columns__column--order-1 {
  margin-right: 0;
  margin-left: 50px; }

.widget__video {
  width: 100%;
  padding-bottom: 56%;
  position: relative; }
  .widget__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%; }

.widget__image {
  width: 100%;
  position: relative;
  display: block; }
  .widget__image-img {
    width: 100%;
    height: auto;
    display: block; }

.widget__map {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; }
  .widget__map iframe {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 70px);
    border: none; }
  @media screen and (max-width: 1000px) {
    .widget__map {
      padding-bottom: 60%; } }
  @media screen and (max-width: 800px) {
    .widget__map {
      padding-bottom: 100%; } }

.columns__widget .card-generic {
  max-width: 450px; }

.owl-grid {
  overflow: hidden; }
  .owl-grid .button, .owl-grid .card-generic__button, .owl-grid .card-landscape__button {
    display: inline-block;
    margin: 30px auto 0 auto; }

.owl-grid-load {
  width: 100%;
  background: #ffffff no-repeat center / 150px auto !important;
  padding-top: 45px; }
  .owl-grid-load .owl-card {
    opacity: 0; }
  @media screen and (max-width: 1000px) {
    .owl-grid-load {
      padding-top: 30px; } }
  @media screen and (max-width: 800px) {
    .owl-grid-load {
      padding-top: 20px; } }
  @media (prefers-color-scheme: dark) {
    .owl-grid-load {
      background: #202020 no-repeat center/150px auto !important; } }

.owl-grid .owl-item {
  width: auto !important; }

.owl-card {
  width: 446.6px;
  display: block;
  height: 100%;
  margin: 0 15px; }
  @media screen and (max-width: 1440px) {
    .owl-card {
      width: calc(33vw - 30px);
      margin: 0 15px; } }
  @media screen and (max-width: 1000px) {
    .owl-card {
      width: calc(50vw - 20px);
      margin: 0 10px; } }
  @media screen and (max-width: 600px) {
    .owl-card {
      width: calc(70vw);
      margin: 0 10px; } }

.owl-grid-carousel {
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 1;
  margin: 0 auto;
  width: 1430px;
  overflow: visible; }
  @media screen and (max-width: 1000px) {
    .owl-grid-carousel {
      padding-top: 30px; } }
  @media screen and (max-width: 800px) {
    .owl-grid-carousel {
      padding-top: 20px; } }
  @media screen and (max-width: 1440px) {
    .owl-grid-carousel {
      width: 100%; } }
  .owl-grid-carousel .card-generic {
    height: 100%; }
  .owl-grid-carousel .owl-stage {
    display: flex; }
  .owl-grid-carousel .owl-item {
    display: block; }
  .owl-grid-carousel .owl-nav {
    display: flex; }
    .owl-grid-carousel .owl-nav .owl-prev,
    .owl-grid-carousel .owl-nav .owl-next {
      position: absolute;
      top: calc(50% - 30px);
      transform: translateY(-50%);
      background: #fae000;
      fill: #004b8d;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 100%;
      z-index: 3;
      overflow: hidden;
      border: 2px solid #fae000; }
      .owl-grid-carousel .owl-nav .owl-prev:after,
      .owl-grid-carousel .owl-nav .owl-next:after {
        content: '';
        width: 1%;
        padding-bottom: 1%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: .2s;
        background: #004b8d;
        z-index: -1;
        border-radius: 120%; }
      .owl-grid-carousel .owl-nav .owl-prev:hover,
      .owl-grid-carousel .owl-nav .owl-next:hover {
        text-decoration: none !important;
        color: #ffffff; }
        .owl-grid-carousel .owl-nav .owl-prev:hover svg,
        .owl-grid-carousel .owl-nav .owl-next:hover svg {
          fill: #ffffff; }
      .owl-grid-carousel .owl-nav .owl-prev:hover:after,
      .owl-grid-carousel .owl-nav .owl-next:hover:after {
        width: 120%;
        padding-bottom: 120%;
        opacity: 1; }
    .owl-grid-carousel .owl-nav .owl-prev {
      left: 0px; }
    .owl-grid-carousel .owl-nav .owl-next {
      right: 0px; }
  .owl-grid-carousel .owl-dots {
    margin-top: 20px;
    justify-content: center;
    display: none; }
  .owl-grid-carousel .owl-dot {
    border-radius: 3px;
    width: 40px;
    height: 20px;
    background: #fae000;
    margin: 0 5px;
    cursor: pointer; }
    .owl-grid-carousel .owl-dot.active {
      background: #004b8d; }

.owl-grid-carousel,
.owl-grid-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative; }

.owl-grid-carousel .owl-stage-outer {
  position: relative;
  -webkit-transform: translate3d(0, 0, 0); }

.owl-grid-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; }

.owl-grid-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none; }

.owl-grid-load {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr; }

.owl-grid-load .owl-card {
  grid-area: 1/1; }

/* hero */
.hide-carousel .owl-nav,
.hide-carousel .owl-dots {
  display: none !important; }
@media screen and (max-width: 1000px) {
  .hide-carousel .hero-carousel-loader {
    padding-bottom: calc(60%); } }

.hero-carousel-loader {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 36%; }
  @media screen and (max-width: 1000px) {
    .hero-carousel-loader {
      background: #004b8d;
      padding-bottom: calc(60% + 80px); } }
  .hero-carousel-loader .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }

.owl-hero-carousel,
.owl-hero-carousel .owl-stage-outer,
.owl-hero-carousel .owl-stage,
.owl-hero-carousel .owl-item {
  height: 100%; }

.owl-hero-carousel .owl-stage {
  display: flex; }

.owl-hero-carousel .owl-item {
  position: relative; }

.card-slide {
  /* Kept blank as Java works out the size of the width*/
  	/*
          @media screen and (max-width:800px) {
              display: flex;
              flex-wrap: wrap;
              .hero-information {
  				position: absolute;
  				top: 0;
  				left: 0;
  				right: 0;
  				bottom: 0;
  				width: auto;
  				padding: 20px;
  				z-index: 2;
  				.summary {
  					margin: 0;
  				}
              }
              .hero-image {
                  width: 100%;
  				opacity: 0.6;
              }
          }*/ }
  .card-slide__link {
    width: 100%;
    position: relative;
    background: #004b8d;
    display: flex;
    color: #ffffff;
    text-decoration: none; }
    @media screen and (max-width: 1000px) {
      .card-slide__link {
        display: block; } }
    @media (prefers-color-scheme: dark) {
      .card-slide__link {
        background: #353535; } }
  .card-slide__column--1 {
    width: calc(40% - 60px);
    padding: 30px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    z-index: 2; }
    @media screen and (max-width: 1000px) {
      .card-slide__column--1 {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        padding: 20px;
        width: auto; } }
  .card-slide__column--2 {
    width: 60%;
    display: block; }
    @media screen and (max-width: 1000px) {
      .card-slide__column--2 {
        width: 100%; } }
  .card-slide__title {
    font-size: 28px;
    line-height: 40px;
    color: #004b8d;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: #fae000;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    color: #ffffff;
    display: block; }
    .card-slide__title a {
      text-decoration-color: #fae000; }
    .card-slide__title:not(:last-child) {
      margin-bottom: 20px; }
    @media screen and (max-width: 1000px) {
      .card-slide__title {
        font-size: 24px;
        line-height: 36px; }
        .card-slide__title:not(:last-child) {
          margin-bottom: 18px; } }
    @media screen and (max-width: 800px) {
      .card-slide__title {
        font-size: 20px;
        line-height: 32px; }
        .card-slide__title:not(:last-child) {
          margin-bottom: 16px; } }
  .card-slide__summary {
    font-size: 20px;
    line-height: 30px; }
    .card-slide__summary:not(:last-child) {
      margin-bottom: 20px; }
    @media screen and (max-width: 1000px) {
      .card-slide__summary {
        font-size: 18px;
        line-height: 26px; }
        .card-slide__summary:not(:last-child) {
          margin-bottom: 18px; } }
    @media screen and (max-width: 800px) {
      .card-slide__summary {
        font-size: 16px;
        line-height: 24px; }
        .card-slide__summary:not(:last-child) {
          margin-bottom: 16px; } }
  .card-slide__image {
    width: 100%;
    padding-bottom: 60%;
    position: relative;
    display: block;
    background: #F2F5F7; }
    @media screen and (max-width: 1000px) {
      .card-slide__image {
        width: 100%;
        opacity: 0.6; } }

.hero-carousel {
  position: relative; }
  .hero-carousel .owl-nav {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 999; }
    .hero-carousel .owl-nav .owl-next,
    .hero-carousel .owl-nav .owl-prev {
      position: relative;
      background: #fae000;
      fill: #004b8d;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 100%;
      z-index: 3;
      overflow: hidden;
      border: 2px solid #fae000;
      margin-right: 10px; }
      .hero-carousel .owl-nav .owl-next:after,
      .hero-carousel .owl-nav .owl-prev:after {
        content: '';
        width: 1%;
        padding-bottom: 1%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: .2s;
        background: #004b8d;
        z-index: -1;
        border-radius: 120%; }
      .hero-carousel .owl-nav .owl-next:hover,
      .hero-carousel .owl-nav .owl-prev:hover {
        text-decoration: none !important;
        color: #ffffff; }
        .hero-carousel .owl-nav .owl-next:hover svg,
        .hero-carousel .owl-nav .owl-prev:hover svg {
          fill: #ffffff; }
      .hero-carousel .owl-nav .owl-next:hover:after,
      .hero-carousel .owl-nav .owl-prev:hover:after {
        width: 120%;
        padding-bottom: 120%;
        opacity: 1; }
    @media screen and (max-width: 1000px) {
      .hero-carousel .owl-nav {
        bottom: 20px;
        left: 20px; } }
  .hero-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    z-index: 999; }
    .hero-carousel .owl-dots button {
      display: block;
      width: 25px;
      height: 25px;
      background: #ffffff;
      margin-left: 8px;
      cursor: pointer; }
      .hero-carousel .owl-dots button.active {
        background: #fae000; }
      .hero-carousel .owl-dots button:hover {
        background: #fae000; }
    @media screen and (max-width: 1000px) {
      .hero-carousel .owl-dots {
        bottom: 20px;
        right: 20px; } }

html[lang="ar"] .hero-carousel .owl-nav .owl-next, html[lang="ar"] .hero-carousel .owl-nav .owl-prev {
  transform: rotate(180deg); }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px; }
  @media screen and (max-width: 1440px) {
    .grid {
      grid-gap: 20px; } }
  @media screen and (max-width: 1000px) {
    .grid {
      grid-template-columns: 1fr 1fr;
      grid-gap: 20px; } }
  @media screen and (max-width: 500px) {
    .grid {
      grid-template-columns: 1fr; } }
  .grid--landscape {
    grid-template-columns: 1fr 1fr; }
    @media screen and (max-width: 1000px) {
      .grid--landscape {
        grid-template-columns: 1fr; } }
  .grid--4-cols {
    grid-template-columns: 1fr 1fr 1fr 1fr; }
    @media screen and (max-width: 1000px) {
      .grid--4-cols {
        grid-template-columns: 1fr 1fr; } }
    @media screen and (max-width: 500px) {
      .grid--4-cols {
        grid-template-columns: 1fr; } }

@media screen and (max-width: 1000px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr; } }

.card-generic {
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  text-decoration: none;
  color: #505050;
  background: #F2F5F7;
  grid-template-rows: auto 1fr;
  position: relative; }
  .card-generic__link {
    display: grid;
    align-items: flex-start;
    align-content: flex-start;
    text-decoration: none;
    color: #666666;
    background: #F2F5F7; }
    .card-generic__link:hover .card-generic__title {
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-thickness: 2px;
      text-decoration-color: #004b8d; }
  .card-generic__main {
    padding: 20px; }
    @media screen and (max-width: 1000px) {
      .card-generic__main {
        padding: 15px; } }
    @media screen and (max-width: 800px) {
      .card-generic__main {
        padding: 10px; } }
  .card-generic__title {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    display: block;
    color: #004b8d;
    position: relative;
    z-index: 1; }
    @media screen and (max-width: 1000px) {
      .card-generic__title {
        font-size: 16px;
        line-height: 22px; } }
    @media screen and (max-width: 600px) {
      .card-generic__title {
        font-size: 14px;
        line-height: 20px; } }
    .card-generic__title:not(:last-child) {
      margin-bottom: 9px; }
      @media screen and (max-width: 1000px) {
        .card-generic__title:not(:last-child) {
          margin-bottom: 8px; } }
      @media screen and (max-width: 600px) {
        .card-generic__title:not(:last-child) {
          margin-bottom: 7px; } }
  .card-generic__summary {
    font-size: 14px;
    line-height: 22px;
    display: block; }
    @media screen and (max-width: 1000px) {
      .card-generic__summary {
        font-size: 14px;
        line-height: 20px; } }
    @media screen and (max-width: 600px) {
      .card-generic__summary {
        font-size: 12px;
        line-height: 18px; } }
    .card-generic__summary:not(:last-child) {
      margin-bottom: 8px; }
      @media screen and (max-width: 1000px) {
        .card-generic__summary:not(:last-child) {
          margin-bottom: 7px; } }
      @media screen and (max-width: 600px) {
        .card-generic__summary:not(:last-child) {
          margin-bottom: 6px; } }
  .card-generic__image {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden; }
    .card-generic__image--square {
      padding-bottom: 100%; }
      .card-generic__image--square .js-placeholder {
        background-size: calc(100% - 40px); }
    .card-generic__image-img {
      position: absolute;
      width: 100%;
      height: auto; }
      .card-generic__image-img--square {
        width: calc(100% - 40px);
        padding: 20px; }
    .card-generic__image-svg {
      position: absolute;
      width: 100%;
      height: 100%;
      background: #ffffff; }
  .card-generic__button {
    flex-basis: end; }
  .card-generic__footer {
    margin-top: auto;
    align-self: baseline;
    padding: 0 20px 20px 20px; }
    @media screen and (max-width: 1000px) {
      .card-generic__footer {
        padding: 0 15px 15px 15px; } }
    @media screen and (max-width: 800px) {
      .card-generic__footer {
        padding: 0 10px 10px 10px; } }
    .card-generic__footer-link {
      font-size: 14px;
      line-height: 22px;
      display: flex;
      align-items: center;
      font-size: 13px;
      color: #505050;
      transition: color 0.2s;
      text-decoration: none; }
      @media screen and (max-width: 1000px) {
        .card-generic__footer-link {
          font-size: 14px;
          line-height: 20px; } }
      @media screen and (max-width: 600px) {
        .card-generic__footer-link {
          font-size: 12px;
          line-height: 18px; } }
      .card-generic__footer-link:not(:last-child) {
        margin-bottom: 8px; }
        @media screen and (max-width: 1000px) {
          .card-generic__footer-link:not(:last-child) {
            margin-bottom: 7px; } }
        @media screen and (max-width: 600px) {
          .card-generic__footer-link:not(:last-child) {
            margin-bottom: 6px; } }
      .card-generic__footer-link:not(:last-child) {
        margin-bottom: 10px; }
      .card-generic__footer-link:hover {
        color: #004b8d;
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px;
        text-decoration-color: #004b8d; }
        .card-generic__footer-link:hover svg {
          fill: #004b8d !important; }
    .card-generic__footer-svg {
      transition: fill 0.2s;
      fill: #505050 !important;
      margin-right: 6px;
      height: 24px; }
  @media (prefers-color-scheme: dark) {
    .card-generic {
      color: #fafafa;
      background: #404040; }
      .card-generic__link {
        color: #fafafa;
        background: #404040; }
        .card-generic__link:hover .card-generic__title {
          text-decoration-color: #fafafa; }
      .card-generic__title {
        color: #fafafa !important; }
      .card-generic__summary {
        color: #fafafa; }
      .card-generic__footer-link {
        color: #ffffff; }
      .card-generic__footer-svg {
        fill: #ffffff !important; } }

a.card-landscape__link:hover .card-landscape__title {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: #004b8d; }

.card-landscape {
  position: relative; }
  .card-landscape--wide {
    display: flex; }
  .card-landscape__link {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 20px;
    text-decoration: none;
    color: #505050;
    background: #F2F5F7;
    text-decoration: none;
    color: #666666;
    background: #F2F5F7;
    padding: 20px; }
    .card-landscape__link--wide {
      display: block;
      grid-template-columns: none;
      width: 100%; }
    @media screen and (max-width: 1000px) {
      .card-landscape__link {
        grid-gap: 15px;
        padding: 15px; } }
    @media screen and (max-width: 800px) {
      .card-landscape__link {
        grid-gap: 10px;
        padding: 10px; } }
  .card-landscape__main-col {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
  .card-landscape__title {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    display: block;
    color: #004b8d;
    position: relative;
    z-index: 1;
    width: 100%; }
    @media screen and (max-width: 1000px) {
      .card-landscape__title {
        font-size: 16px;
        line-height: 22px; } }
    @media screen and (max-width: 600px) {
      .card-landscape__title {
        font-size: 14px;
        line-height: 20px; } }
    .card-landscape__title:not(:last-child) {
      margin-bottom: 9px; }
      @media screen and (max-width: 1000px) {
        .card-landscape__title:not(:last-child) {
          margin-bottom: 8px; } }
      @media screen and (max-width: 600px) {
        .card-landscape__title:not(:last-child) {
          margin-bottom: 7px; } }
  .card-landscape__summary {
    font-size: 14px;
    line-height: 22px;
    display: block; }
    @media screen and (max-width: 1000px) {
      .card-landscape__summary {
        font-size: 14px;
        line-height: 20px; } }
    @media screen and (max-width: 600px) {
      .card-landscape__summary {
        font-size: 12px;
        line-height: 18px; } }
    .card-landscape__summary:not(:last-child) {
      margin-bottom: 8px; }
      @media screen and (max-width: 1000px) {
        .card-landscape__summary:not(:last-child) {
          margin-bottom: 7px; } }
      @media screen and (max-width: 600px) {
        .card-landscape__summary:not(:last-child) {
          margin-bottom: 6px; } }
    .card-landscape__summary:not(:last-child) {
      margin-bottom: 15px; }
  .card-landscape__image-col {
    width: 200px;
    height: 200px;
    display: block; }
    @media screen and (max-width: 1000px) {
      .card-landscape__image-col {
        width: 150px;
        height: 150px; } }
    @media screen and (max-width: 800px) {
      .card-landscape__image-col {
        width: 100px;
        height: 100px; } }
  .card-landscape__image {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #ffffff; }
    .card-landscape__image .js-placeholder {
      background-size: 100%; }
    .card-landscape__image-img {
      position: absolute;
      width: 100%;
      height: 100%; }
    .card-landscape__image-svg {
      position: absolute;
      width: 100%;
      height: 100%;
      background: #ffffff; }
  .card-landscape__button {
    flex-basis: end; }
  .card-landscape__icon {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #505050;
    transition: color 0.2s;
    text-decoration: none; }
    @media screen and (max-width: 1000px) {
      .card-landscape__icon {
        font-size: 14px;
        line-height: 20px; } }
    @media screen and (max-width: 600px) {
      .card-landscape__icon {
        font-size: 12px;
        line-height: 18px; } }
    .card-landscape__icon:not(:last-child) {
      margin-bottom: 8px; }
      @media screen and (max-width: 1000px) {
        .card-landscape__icon:not(:last-child) {
          margin-bottom: 7px; } }
      @media screen and (max-width: 600px) {
        .card-landscape__icon:not(:last-child) {
          margin-bottom: 6px; } }
    .card-landscape__icon:not(:last-child) {
      margin-bottom: 10px; }
    .card-landscape__icon:hover {
      color: #004b8d;
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-thickness: 2px;
      text-decoration-color: #004b8d; }
      .card-landscape__icon:hover svg {
        fill: #004b8d !important; }
    .card-landscape__icon-svg {
      transition: fill 0.2s;
      fill: #505050 !important;
      margin-right: 6px;
      height: 24px; }
  @media (prefers-color-scheme: dark) {
    .card-landscape {
      color: #fafafa;
      background: #404040; }
      .card-landscape__link {
        color: #fafafa;
        background: #404040; }
        .card-landscape__link:hover .card-generic__title {
          text-decoration-color: #fafafa; }
      .card-landscape__title {
        color: #fafafa !important; }
      .card-landscape__summary {
        color: #fafafa; }
      .card-landscape__footer-link {
        color: #ffffff; }
      .card-landscape__footer-svg {
        fill: #ffffff !important; }
      .card-landscape__icon {
        color: #ffffff; }
        .card-landscape__icon:hover {
          color: #ffffff;
          text-decoration-color: #ffffff; }
          .card-landscape__icon:hover svg {
            fill: #ffffff; }
        .card-landscape__icon-svg {
          fill: #ffffff !important; } }

/* Specifics for padding */
@media screen and (min-width: 1001px) {
  .page-rows .row--columns:first-child .columns__column:first-child,
  .anchors-nav + .row--columns .columns__column:first-child,
  .company-breadcrumb + .row--columns .columns__column:first-child,
  .company-breadcrumb + .row--intro .columns__column:first-child {
    padding-top: 60px;
    margin-bottom: 60px; } }
@media screen and (max-width: 1000px) {
  .page-rows .row--columns:first-child .columns__column:first-child,
  .anchors-nav + .row--columns .columns__column:first-child,
  .company-breadcrumb + .row--columns .columns__column:first-child,
  .company-breadcrumb + .row--intro .columns__column:first-child {
    padding-top: 20px;
    margin-bottom: 20px; } }

@media screen and (min-width: 1001px) {
  .page-intro + .row--content,
  .company-breadcrumb + .row--content {
    margin-top: 60px;
    margin-bottom: 60px; } }
@media screen and (max-width: 1000px) {
  .page-intro + .row--content,
  .company-breadcrumb + .row--content {
    margin-top: 20px;
    margin-bottom: 20px; } }

@media screen and (max-width: 1000px) {
  .page-intro + .row--columns {
    margin-top: 20px; } }

/* Page Intro */
.page-intro {
  padding: 20px 0;
  background: #F2F5F7;
  margin: 0 auto;
  /*
  + .site-components:not(.level-2) .component:first-child {
  	position: relative;
  	padding-top: 0px;
  	&:before {
  		content: '';
  		position: absolute;
  		top: 0;
  		left: 0px;
  		right: 0px;
  		bottom: 50%;
  		background: $color-light;
  		left: 50%;
  		width: 1600px;
  		transform: translateX(-50%);
  		@include dark-mode {
  			background: $dark-primary;
  		}
  	}
  }*/ }
  @media screen and (max-width: 800px) {
    .page-intro {
      padding: 20px 0; } }
  .page-intro .page-heading strong {
    color: #004b8d;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: bold; }
    @media screen and (max-width: 1000px) {
      .page-intro .page-heading strong {
        font-size: 34px;
        line-height: 40px; } }
    @media screen and (max-width: 800px) {
      .page-intro .page-heading strong {
        font-size: 24px;
        line-height: 30px; } }
  .page-intro--no-background {
    background: none; }
  @media (prefers-color-scheme: dark) {
    .page-intro {
      background: #353535; }
      .page-intro .page-heading strong {
        color: #fafafa; } }

.page-breadcrumb {
  overflow: auto; }
  .page-breadcrumb .breadcrumb-scroll {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 12px; }
    @media screen and (max-width: 800px) {
      .page-breadcrumb .breadcrumb-scroll {
        font-size: 12px;
        line-height: 12px; } }
    .page-breadcrumb .breadcrumb-scroll a {
      white-space: nowrap;
      text-decoration: none;
      color: #505050; }
    .page-breadcrumb .breadcrumb-scroll span {
      white-space: nowrap;
      text-decoration: none;
      color: #505050; }
    .page-breadcrumb .breadcrumb-scroll a:hover {
      text-decoration: underline;
      color: #004A87; }
    .page-breadcrumb .breadcrumb-scroll svg {
      fill: #505050 !important;
      margin: 0 5px;
      width: 20px;
      height: 20px;
      flex: 0 0 20px; }
  .page-breadcrumb + .page-heading {
    margin-top: 5px; }
  @media (prefers-color-scheme: dark) {
    .page-breadcrumb .breadcrumb-scroll a,
    .page-breadcrumb .breadcrumb-scroll span {
      color: #fafafa; }
    .page-breadcrumb .breadcrumb-scroll a:hover {
      color: #fafafa; }
    .page-breadcrumb .breadcrumb-scroll svg {
      fill: #fafafa !important; } }

html[lang="ar"] .page-breadcrumb .breadcrumb-scroll svg {
  transform: rotate(180deg); }

/* row anchors*/
.anchors-nav {
  margin: 0 auto;
  background: #004b8d;
  position: sticky;
  top: 0px;
  z-index: 8;
  overflow: auto; }
  .anchors-nav__list {
    display: flex; }
    .anchors-nav__list-item {
      margin-right: 20px; }
    .anchors-nav__list-link {
      font-size: 14px;
      line-height: 20px;
      color: #666666;
      text-decoration: none;
      display: block;
      text-decoration-color: #666666;
      color: #ffffff;
      text-decoration-color: #fae000;
      white-space: nowrap;
      height: 45px;
      display: flex;
      align-items: center; }
      .anchors-nav__list-link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px; }
      .anchors-nav__list-link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px;
        text-decoration-color: #fae000; }
    .anchors-nav__list .mia-icon {
      margin-right: 10px;
      fill: #ffffff !important;
      width: 18px;
      height: 18px;
      padding: 3px;
      border-radius: 100%; }
    .anchors-nav__list .mia-logo__svg {
      width: 160px;
      height: 30px; }
  @media screen and (max-width: 1000px) {
    .anchors-nav {
      padding: 5px 0; }
      .anchors-nav__list-item {
        margin-right: 20px; } }
  @media (prefers-color-scheme: dark) {
    .anchors-nav {
      background: #404040; } }
  .anchors-nav--mia + .row {
    margin-bottom: 0px; }
  .anchors-nav--light {
    background: #f2f5f7;
    top: 45px;
    border-bottom: 1px solid #ffffff;
    position: static; }
    .anchors-nav--light .anchors-nav__list-link {
      color: #004b8d; }
      @media (prefers-color-scheme: dark) {
        .anchors-nav--light .anchors-nav__list-link {
          color: #ffffff; } }
    @media (prefers-color-scheme: dark) {
      .anchors-nav--light {
        background: #353535;
        border-bottom: 1px solid #555555; } }

.gallery {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr; }
  @media screen and (max-width: 800px) {
    .gallery {
      grid-gap: 10px;
      grid-template-columns: repeat(4, 1fr); } }
  .gallery__item {
    position: relative;
    grid-column: span 2; }
  .gallery__image-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover; }
  .gallery--count-2 .gallery__item {
    grid-column: span 3; }
  .gallery--count-4 .gallery__item {
    grid-column: span 3; }
  .gallery--count-5 .gallery__item:nth-child(4),
  .gallery--count-5 .gallery__item:nth-child(5),
  .gallery--count-5 .gallery__item:nth-child(9),
  .gallery--count-5 .gallery__item:nth-child(10), .gallery--count-7 .gallery__item:nth-child(4),
  .gallery--count-7 .gallery__item:nth-child(5),
  .gallery--count-7 .gallery__item:nth-child(9),
  .gallery--count-7 .gallery__item:nth-child(10), .gallery--count-8 .gallery__item:nth-child(4),
  .gallery--count-8 .gallery__item:nth-child(5),
  .gallery--count-8 .gallery__item:nth-child(9),
  .gallery--count-8 .gallery__item:nth-child(10), .gallery--count-10 .gallery__item:nth-child(4),
  .gallery--count-10 .gallery__item:nth-child(5),
  .gallery--count-10 .gallery__item:nth-child(9),
  .gallery--count-10 .gallery__item:nth-child(10) {
    grid-column: span 3; }
  .gallery--count-11 .gallery__item:nth-child(4),
  .gallery--count-11 .gallery__item:nth-child(5) {
    grid-column: span 3; }

.row {
  /*
  &--cp-header {
  	background: $blue;
  	.content {
  		h1 {
  			color: #ffffff;
  		}
  	}
  }
  &--cp-intro {
  	background: $grey-blue;
  	margin-bottom: 60px;
  	padding: 0;
  }*/ }

.columns--cp-columns {
  padding: 0; }
.columns__column--cp-hq {
  padding: 60px 0; }
  @media screen and (max-width: 1000px) {
    .columns__column--cp-hq {
      padding: 40px 0 0 0; } }
  @media screen and (max-width: 800px) {
    .columns__column--cp-hq {
      padding: 20px 0 0 0; } }
.columns__column--cp-map {
  align-self: stretch;
  margin: 0px; }

.pager-filter {
  display: flex;
  align-items: center;
  margin-bottom: 0; }
  @media screen and (max-width: 1000px) {
    .pager-filter {
      margin-bottom: 0; } }
  @media screen and (max-width: 800px) {
    .pager-filter {
      margin-bottom: 0; } }

.pager-filter__label {
  font-size: 15px;
  margin-right: 10px; }
  @media (prefers-color-scheme: dark) {
    .pager-filter__label {
      color: #ffffff; } }

.pager-filter__select {
  padding: 10px;
  background: #f2f5f7;
  border: 1px solid #cccccc;
  width: calc(100% - 22px);
  display: block;
  font-size: 15px;
  line-height: 15px;
  position: relative;
  background: #f2f5f7;
  z-index: 1;
  min-height: 14px;
  max-width: 250px; }
  .pager-filter__select select {
    position: absolute;
    height: 100%;
    width: 100%;
    background: none;
    z-index: 2;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    top: 0;
    left: 0;
    padding-left: 10px;
    font-size: 15px;
    font-family: open sans, Arial, Helvetica, sans-serif; }
  .pager-filter__select:after {
    content: url(data:image/svg+xml;utf8;base64,IDxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3R5bGU9ImZpbGw6IHJnYmEoMCwgMCwgMCwgMC42KTt0cmFuc2Zvcm06IDttc0ZpbHRlcjo7Ij48cGF0aCBkPSJNMTYuMjkzIDkuMjkzIDEyIDEzLjU4NiA3LjcwNyA5LjI5M2wtMS40MTQgMS40MTRMMTIgMTYuNDE0bDUuNzA3LTUuNzA3eiI+PC9wYXRoPjwvc3ZnPg==);
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 10px;
    width: 24px;
    height: 24px; }
  @media (prefers-color-scheme: dark) {
    .pager-filter__select select {
      color: #ffffff; }
      .pager-filter__select select:focus {
        background: #353535; }
    .pager-filter__select:after {
      content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style="fill: rgba(255,255,255,1);transform: ;msFilter:;"><path d="M16.293 9.293 12 13.586 7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z"></path></svg> '); } }
  @media (prefers-color-scheme: dark) {
    .pager-filter__select {
      background: transparent; } }

.filter {
  position: relative;
  background: red; }
  .filter__list {
    position: absolute;
    margin-top: 15px;
    background: #ffffff;
    z-index: 9; }
    .filter__list-item--selected .filter__list-link {
      background: #004b8d;
      color: #ffffff; }
      .filter__list-item--selected .filter__list-link:hover {
        text-decoration-color: #ffffff; }
    .filter__list-link {
      display: flex;
      align-items: center;
      padding: 6px;
      color: #666666;
      text-decoration: none;
      font-size: 15px;
      height: 100%; }
      .filter__list-link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 2px;
        text-decoration-color: #666666; }
    .filter__list-flag {
      display: block;
      border-radius: 3px;
      margin-right: 10px; }
    .filter__list-label {
      font-size: 15px;
      line-height: 20px; }
  @media screen and (max-width: 1000px) {
    .filter {
      display: block; }
      .filter__column {
        width: 100%; }
      .filter__content {
        margin-left: 0px;
        max-width: none;
        padding-left: 20px;
        padding-right: 20px; } }
  @media (prefers-color-scheme: dark) {
    .filter {
      background: #404040; }
      .filter__logo-svg path[fill="#004B8D"] {
        fill: #ffffff !important; }
      .filter__content p {
        color: #fafafa; } }
  @media screen and (prefers-color-scheme: dark) and (min-width: 801px) {
    .filter__locations-item:nth-child(n+4) {
      border-top: 1px dashed #fafafa; } }
  @media screen and (prefers-color-scheme: dark) and (max-width: 800px) {
    .filter__locations-item:nth-child(n+3) {
      border-top: 1px dashed #fafafa; } }
  @media (prefers-color-scheme: dark) {
      .filter__locations-link {
        color: #fafafa; }
        .filter__locations-link:hover {
          text-decoration-color: #fafafa; } }

.global-map {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; }
  .global-map__container iframe {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 70px);
    border: none; }
  @media screen and (max-width: 1000px) {
    .global-map {
      padding-bottom: 60%; } }

.pager {
  display: flex;
  align-items: center;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 15px 0; }
  @media screen and (max-width: 800px) {
    .pager {
      display: block; } }
  .pager__count-item {
    margin-right: 15px;
    color: #666666;
    font-size: 15px; }
  @media screen and (max-width: 800px) {
    .pager__count {
      width: 100%;
      text-align: center;
      margin-bottom: 10px; } }
  .pager__nav {
    margin-left: auto; }
    @media screen and (max-width: 800px) {
      .pager__nav {
        margin: 0 auto; } }
  .pager__list {
    display: flex;
    align-items: center; }
    @media screen and (max-width: 800px) {
      .pager__list {
        justify-content: center; } }
    .pager__list-item {
      color: #666666;
      font-size: 15px; }
    .pager__list-link {
      color: #004b8d;
      font-size: 15px;
      padding: 5px 12px;
      text-decoration: none;
      border-radius: 3px; }
      .pager__list-link:hover {
        background: #f2f5f7; }
      .pager__list-link.active {
        background: #f2f5f7; }
  @media (prefers-color-scheme: dark) {
    .pager__count-item {
      color: #ffffff; }
    .pager__list-item {
      color: #ffffff; }
    .pager__list-link {
      color: #ffffff; }
      .pager__list-link:hover {
        background: #353535; }
      .pager__list-link.active {
        background: #353535; } }

/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline {
  /* background: #fff url('../images/world-map.png') no-repeat fixed center / auto 95%; */
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.timeline *, .timeline *::before, .timeline *::after {
  box-sizing: border-box; }

.timeline img {
  display: block;
  margin: 20px 0 0;
  height: auto;
  max-width: 100%; }

.timeline ul {
  padding: 50px 0; }

/* line */
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 3px;
  margin: 0 auto;
  padding-bottom: 50px;
  background: #F9E000; }

/* end line at the final circle marker */
.timeline ul li:last-child {
  background: none; }

.timeline time {
  display: block;
  font-size: 175%;
  font-weight: bold;
  margin-bottom: 8px;
  color: #004378; }

/* marker */
.timeline ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #F9E000; }

.timeline ul .med::after {
  width: 30px;
  height: 30px; }

.timeline ul .large::after {
  width: 40px;
  height: 40px; }

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 0 15px 15px 15px;
  font-size: 16px; }

.timeline ul .med div, .timeline ul .med p {
  font-size: 20px;
  line-height: 28px; }

.timeline ul .med time {
  margin-bottom: 12px; }

.timeline ul .large div, .timeline ul .large p {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px; }

.timeline ul .large time {
  margin-bottom: 15px; }

.timeline ul li:nth-child(odd) div {
  left: 45px; }

.timeline ul li:nth-child(even) div {
  left: -439px; }

.timeline ul .small div {
  left: 0; }

/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline ul li::after {
  transition: background .5s ease-in-out; }

.timeline ul .med.in-view::after {
  background: #fff;
  border: solid 5px #004378; }

.timeline ul .large.in-view::after {
  background: #004378;
  border: solid 5px #004378; }

/* default/small */
.timeline ul li.in-view::after {
  background: #fff;
  border: solid 3px #004378; }

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out; }

.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0); }

.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0); }

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1; }

/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px; }

  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/ } }
@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px; }

  .timeline ul li div {
    width: calc(100vw - 91px); }

  .timeline ul li:nth-child(even) div {
    left: 45px; }

  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #F45B69 transparent transparent; } }
@keyframes fadein {
  0% {
    opacity: 0;
    transform: scale(1, 1); }
  70% {
    opacity: 0;
    transform: scale(1, 1); }
  80% {
    background: #fae000 url(../images/chat-cta.svg) center/40px 40px no-repeat;
    opacity: 1;
    transform: scale(1.2, 1.2); }
  90% {
    opacity: 1;
    transform: scale(0.9, 0.9); }
  100% {
    transform: scale(1, 1); } }
.bubble-cta-container {
  display: flex;
  flex-direction: column;
  height: auto;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99999; }
  @media screen and (min-width: 500px) {
    .bubble-cta-container {
      right: 30px;
      bottom: 30px; } }

.bubble-cta__btn {
  animation: 3s ease 0s normal none 1 fadein;
  align-self: flex-end;
  background: #004b8d url(../images/chat-cta.svg) center/40px 40px no-repeat;
  border: solid 1px #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 50px;
  width: 50px;
  padding: 10px;
  transition: 0.35s ease;
  margin-left: auto; }
  .bubble-cta__btn:hover, .bubble-cta__btn:active {
    background: #fae000 url(../images/chat-cta.svg) center/40px 40px no-repeat; }
  @media screen and (min-width: 700px) {
    .bubble-cta__btn {
      background-size: 50px 50px;
      height: 60px;
      width: 60px;
      padding: 20px; } }

.bubble-cta__list {
  background: transparent;
  border: solid 1px transparent;
  border-radius: 5px;
  height: 0;
  margin-bottom: 10px;
  overflow: hidden;
  transform: translate(999px);
  transition: all 0.3s ease;
  width: 60px; }
  .bubble-cta__list.show {
    background: #fff;
    border: solid 1px #004b8d;
    height: 500px;
    transform: translate(0);
    width: 270px; }
    @media screen and (min-width: 360px) {
      .bubble-cta__list.show {
        width: 300px; } }
    @media screen and (min-width: 500px) {
      .bubble-cta__list.show {
        width: 400px; } }
  @media (prefers-color-scheme: dark) {
    .bubble-cta__list.show {
      background: #353535;
      border: solid 1px #ffffff; }
      .bubble-cta__list.show p {
        color: #ffffff; } }

.bubble-cta__list-header {
  background: #004b8d;
  padding: 15px; }
  .bubble-cta__list-header p {
    font-size: 18px;
    font-weight: bold;
    color: #fff; }
  @media screen and (min-width: 360px) {
    .bubble-cta__list-header {
      padding: 20px; }
      .bubble-cta__list-header h4 {
        font-size: 22px; } }
  @media (prefers-color-scheme: dark) {
    .bubble-cta__list-header {
      background: #202020; } }

.bubble-cta__list-content {
  padding: 20px; }
  .bubble-cta__list-content p {
    font-size: 16px;
    margin-bottom: 16px; }

.bubble-cta__link {
  align-items: center;
  background: #fff;
  border: solid 1px #004b8d;
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
  max-width: 100%;
  padding: 0 8px;
  transition: 0.3s ease;
  width: 100%; }
  .bubble-cta__link:hover, .bubble-cta__link:active {
    background: #fae000 !important;
    text-decoration: none;
    color: #004b8d !important; }
  .bubble-cta__link:last-child {
    margin-bottom: 0; }
  .bubble-cta__link:after {
    display: none; }
  .bubble-cta__link svg {
    display: inline-block;
    height: 50px;
    width: 50px;
    margin-right: 5px; }
    .bubble-cta__link svg .icon-fill {
      fill: #004b8d; }
  @media screen and (min-width: 360px) {
    .bubble-cta__link {
      font-size: 16px; } }
  @media screen and (min-width: 500px) {
    .bubble-cta__link {
      font-size: 18px; } }
  @media (prefers-color-scheme: dark) {
    .bubble-cta__link {
      background: #353535;
      color: #ffffff;
      border: 1px solid #ffffff; }
      .bubble-cta__link svg .icon-fill {
        fill: #ffffff; } }

@media screen and (max-height: 700px) {
  .bubble-cta__list p {
    display: none; }
  .bubble-cta__list.show {
    height: 300px; }

  .bubble-cta__list-header {
    padding: 15px; }
    .bubble-cta__list-header h4 {
      font-size: 18px; }

  .bubble-cta__link {
    font-size: 15px; } }
.form-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 999999; }
  .form-loader__icon {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -60px;
    margin-top: -60px;
    border: 10px solid #cccccc;
    border-radius: 50%;
    border-top: 10px solid #004b8d;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite; }

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.row__stats {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 30px;
  margin-top: 0;
  padding: 0 30px; }

.stats-panel {
  background: #004B8D;
  color: #FAE000;
  padding: 30px;
  opacity: 0;
  text-align: center; }

.stats-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin-bottom: 10px; }

.stats-panel__icon-svg {
  display: block;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s; }

.stats-panel__count {
  text-align: center;
  font-size: 70px;
  line-height: 70px;
  opacity: 0;
  transition: opacity 0.5s;
  position: relative;
  text-align: center; }

.stats-panel__count:after {
  content: '+';
  display: block;
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%); }

.stats-panel__title {
  margin-top: 10px;
  display: block;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.5s; }

@media screen and (max-width: 1000px) {
  .row__stats {
    grid-gap: 20px;
    margin-bottom: 30px;
    padding: 0 20px; }

  .stats-panel {
    padding: 20px 5px; }

  .stats-panel__icon {
    height: 90px;
    margin-bottom: 10px; }

  .stats-panel__count {
    font-size: 40px;
    line-height: 40px; }

  .stats-panel__count:after {
    content: '+';
    display: block;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%); }

  .stats-panel__title {
    margin-top: 0px;
    font-size: 14px;
    line-height: 14px; } }
@media screen and (max-width: 800px) {
  .row__stats {
    grid-template-columns: 1fr 1fr; } }
.row-mia {
  background: #f2f5f7;
  padding: 1px 0;
  position: relative;
  margin-bottom: 60px; }
  @media screen and (max-width: 1000px) {
    .row-mia {
      margin-bottom: 40px; } }
  @media screen and (max-width: 800px) {
    .row-mia {
      margin-bottom: 20px; } }
  @media (prefers-color-scheme: dark) {
    .row-mia {
      background: #353535; } }

.mia-logo {
  margin-bottom: 10px;
  display: block;
  margin-top: 60px; }
  .mia-logo__svg {
    width: 300px;
    margin: 0 auto;
    display: block; }
  @media screen and (max-width: 1000px) {
    .mia-logo {
      margin-top: 40px; } }
  @media screen and (max-width: 800px) {
    .mia-logo {
      margin-top: 20px; } }

.mia-card-logo {
  width: 60px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2; }

.mia__grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr; }
  @media screen and (max-width: 1200px) {
    .mia__grid {
      grid-template-columns: repeat(4, 1fr); } }
  @media screen and (max-width: 1000px) {
    .mia__grid {
      grid-template-columns: repeat(3, 1fr); } }
  @media screen and (max-width: 800px) {
    .mia__grid {
      grid-gap: 10px;
      grid-template-columns: repeat(2, 1fr); } }
.mia__item {
  position: relative; }
.mia__image {
  border: 1px solid #efefef;
  display: block;
  position: relative;
  margin-bottom: 10px; }
  .mia__image-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover; }
.mia__caption {
  font-size: 14px;
  line-height: 16px;
  color: #222222; }
  @media (prefers-color-scheme: dark) {
    .mia__caption {
      color: #ffffff; } }
.mia__type {
  font-size: 12px;
  line-height: 12px;
  color: #ffffff;
  background: #004b8d;
  border-radius: 5px;
  text-decoration: none;
  padding: 4px 6px;
  left: 15px;
  bottom: 15px;
  position: absolute;
  display: flex;
  align-items: center; }
  .mia__type--mia {
    border-radius: 5px;
    width: 60px;
    left: 15px;
    bottom: 15px;
    position: absolute;
    display: flex;
    align-items: center; }
.mia__type svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
  margin-right: 5px; }

/*
	.mia-row {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		grid-gap: 20px;
	}
	.mia__item {
		grid-column: span 1;
	}
	.mia__image {
		border: 1px solid #efefef;
		display: block;
		position: relative;
		margin-bottom: 10px;
	}
	.mia__caption {
		font-size: 14px;
		line-height: 16px;
		color: #222222;
	}
	
	&__type {
		font-size: 12px;
		line-height: 12px;
		color: #ffffff;
		background: #222222;
		border-radius: 5px;
		text-decoration: none;
		padding: 4px 6px;
		left: 15px;
		bottom: 15px;
		position: absolute;
		display: flex;
		align-items: center;
&--mia {
		border-radius: 5px;
		width: 60px;
		left: 15px;
		bottom: 15px;
		position: absolute;
		display: flex;
		align-items: center;
	}
	}
	&__type svg {
		fill: #ffffff;
		width: 18px;
		height: 18px;
		margin-right: 5px;
	}

*/
/* popup */
.owl-popup {
  display: none;
  position: fixed;
  top: 190px;
  right: 40px;
  z-index: 9;
  width: 340px;
  height: 290px;
  box-shadow: rgba(0, 0, 0, 0.5) 0 5px 25px; }
  .owl-popup__closebtn {
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -10px;
    height: 40px;
    width: 40px;
    background: #ffffff;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 25px;
    z-index: 99; }
    .owl-popup__closebtn svg {
      fill: #004B8D;
      width: 40px;
      height: 40px; }
  .owl-popup__slide {
    width: 340px;
    height: 290px; }
  @media screen and (max-width: 1000px) {
    .owl-popup {
      position: fixed;
      top: 100px;
      left: 50%;
      transform: translateX(-50%); } }

.owl-popup-carousel {
  overflow: hidden;
  width: 340px;
  height: 290px; }

.owl-popup-carousel,
.owl-popup-carousel .owl-stage-outer,
.owl-popup-carousel .owl-stage,
.owl-popup-carousel .owl-item {
  height: 100%; }

.owl-popup-carousel .owl-stage {
  display: flex; }

.owl-popup-carousel .owl-item {
  position: relative;
  width: 340px;
  height: 290px; }

.owl-popup .owl-nav .owl-next,
.owl-popup .owl-nav .owl-prev {
  z-index: 999;
  position: absolute;
  background: #fae000;
  fill: #004b8d;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  z-index: 3;
  overflow: hidden;
  border: 2px solid #fae000;
  left: -21px;
  bottom: 50px; }
  .owl-popup .owl-nav .owl-next:after,
  .owl-popup .owl-nav .owl-prev:after {
    content: '';
    width: 1%;
    padding-bottom: 1%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .2s;
    background: #004b8d;
    z-index: -1;
    border-radius: 120%; }
  .owl-popup .owl-nav .owl-next:hover,
  .owl-popup .owl-nav .owl-prev:hover {
    text-decoration: none !important;
    color: #ffffff; }
    .owl-popup .owl-nav .owl-next:hover svg,
    .owl-popup .owl-nav .owl-prev:hover svg {
      fill: #ffffff; }
  .owl-popup .owl-nav .owl-next:hover:after,
  .owl-popup .owl-nav .owl-prev:hover:after {
    width: 120%;
    padding-bottom: 120%;
    opacity: 1; }
.owl-popup .owl-nav .owl-next {
  left: auto;
  right: -21px; }
.owl-popup .owl-dots {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 40px;
  right: 40px;
  z-index: 999;
  justify-content: center; }
  .owl-popup .owl-dots button {
    display: block;
    width: 30px;
    height: 30px;
    background: #ffffff;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 20px; }
    .owl-popup .owl-dots button.active {
      background: #fae000; }
    .owl-popup .owl-dots button:hover {
      background: #fae000; }

.enquiry-form {
  max-width: 700px;
  margin: 0 auto; }

.careers-form {
  margin-bottom: 2em;
  padding: 30px;
  background: #F2F5F7;
  border-radius: 6px; }
  .careers-form .field input[type=text],
  .careers-form .field textarea,
  .careers-form .field .field-select {
    background: #ffffff; }
  @media (prefers-color-scheme: dark) {
    .careers-form .field input,
    .careers-form .field textarea,
    .careers-form .field .field-select {
      background: #353535;
      color: #ffffff; } }
  @media (prefers-color-scheme: dark) {
    .careers-form {
      background: #000000; } }

.field-group {
  margin-bottom: 20px; }
  .field-group--columns {
    display: flex; }
    .field-group--columns .field {
      width: calc(50% - 10px); }
      .field-group--columns .field:nth-child(2) {
        margin-left: auto; }
  .field-group--tel {
    display: flex; }
    .field-group--tel .field:nth-child(1) {
      width: calc(35% - 20px); }
    .field-group--tel .field:nth-child(2) {
      margin-left: auto;
      width: 65%; }

.field label {
  font-size: 16px;
  line-height: 16px;
  color: #666666;
  font-weight: bold;
  display: block;
  margin-bottom: 5px; }
.field input,
.field textarea,
.field .field-select {
  padding: 10px;
  background: #f2f5f7;
  border: 1px solid #cccccc;
  width: calc(100% - 22px);
  display: block;
  border-radius: 3px;
  font-size: 15px;
  line-height: 15px;
  font-family: open sans, Arial, Helvetica, sans-serif; }
  .field input.input-validation-error,
  .field textarea.input-validation-error,
  .field .field-select.input-validation-error {
    border: 2px solid #dc3545;
    border-bottom-left-radius: 0px; }
@media (prefers-color-scheme: dark) {
  .field label {
    color: #ffffff; }
  .field input,
  .field textarea,
  .field .field-select {
    background: #353535;
    color: #ffffff; } }

.field-select {
  position: relative;
  background: #f2f5f7;
  z-index: 1;
  min-height: 14px; }
  .field-select select {
    position: absolute;
    height: 100%;
    width: 100%;
    background: none;
    z-index: 2;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    top: 0;
    left: 0;
    padding-left: 10px;
    font-size: 15px;
    font-family: open sans, Arial, Helvetica, sans-serif; }
  .field-select:after {
    content: url(data:image/svg+xml;utf8;base64,IDxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3R5bGU9ImZpbGw6IHJnYmEoMCwgMCwgMCwgMC42KTt0cmFuc2Zvcm06IDttc0ZpbHRlcjo7Ij48cGF0aCBkPSJNMTYuMjkzIDkuMjkzIDEyIDEzLjU4NiA3LjcwNyA5LjI5M2wtMS40MTQgMS40MTRMMTIgMTYuNDE0bDUuNzA3LTUuNzA3eiI+PC9wYXRoPjwvc3ZnPg==);
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 10px;
    width: 24px;
    height: 24px; }
  @media (prefers-color-scheme: dark) {
    .field-select select {
      color: #ffffff; }
      .field-select select:focus {
        background: #353535; }
    .field-select:after {
      content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style="fill: rgba(255,255,255,1);transform: ;msFilter:;"><path d="M16.293 9.293 12 13.586 7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z"></path></svg> '); } }

.field--checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative; }
  .field--checkbox label {
    margin-bottom: 0px;
    order: 2; }
  .field--checkbox input[type=checkbox] {
    order: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer; }
    .field--checkbox input[type=checkbox]:checked + .checkbox-status:after {
      content: url(data:image/svg+xml;utf8;base64,IDxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3R5bGU9ImZpbGw6IHJnYmEoMjU1LCAyNTUsIDI1NSwgMSk7dHJhbnNmb3JtOiA7bXNGaWx0ZXI6OyI+PHBhdGggZD0ibTEwIDE1LjU4Ni0zLjI5My0zLjI5My0xLjQxNCAxLjQxNEwxMCAxOC40MTRsOS43MDctOS43MDctMS40MTQtMS40MTR6Ij48L3BhdGg+PC9zdmc+);
      background: #004b8d;
      border: none;
      width: 24px;
      height: 24px; }
    .field--checkbox input[type=checkbox]:checked + .checkbox-status + .checkbox-message {
      display: block; }
  .field--checkbox .checkbox-status {
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 10px; }
    .field--checkbox .checkbox-status:after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 20px;
      height: 20px;
      background: #efefef;
      border: 2px solid #cccccc;
      border-radius: 4px; }
  .field--checkbox + p {
    margin-top: 15px;
    padding: 10px;
    background: #666666;
    display: block;
    position: relative;
    border-radius: 5px;
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    border: 1px solid #cccccc; }
    .field--checkbox + p a {
      color: #666666; }
    .field--checkbox + p:after {
      content: '';
      width: 12px;
      height: 12px;
      position: absolute;
      top: -7px;
      left: 30px;
      transform: rotate(45deg);
      background: #f2f5f7;
      border-top: 1px solid #cccccc;
      border-left: 1px solid #cccccc; }

.checkbox-message {
  order: 3;
  margin-top: 15px;
  display: block;
  padding: 10px;
  background: #efefef;
  border: 1px solid #cccccc;
  width: calc(100% - 20px);
  display: block;
  border-radius: 3px;
  font-size: 14px;
  line-height: 20px;
  z-index: 99;
  position: relative;
  display: none;
  color: #666666; }
  .checkbox-message a {
    color: #666666; }
  .checkbox-message:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30px;
    width: 10px;
    height: 10px;
    display: block;
    background: #efefef;
    border-top: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    transform: rotate(-45deg); }

.field-validation-error {
  background: #dc3545;
  background: #dc3545;
  color: #fff;
  font-size: 14px;
  padding: 0;
  margin: 0;
  display: inline-block;
  padding: 10px;
  border-radius: 0 0 4px 4px; }

.form-button {
  font-family: open sans, Arial, Helvetica, sans-serif;
  margin-top: 15px;
  font-size: 15px;
  line-height: 15px;
  margin-left: auto;
  padding: 15px 15px;
  text-transform: uppercase;
  background: #fae000;
  border-radius: 5px;
  color: #004b8d;
  font-weight: 900;
  display: inline-block;
  cursor: pointer; }

/* File uploads */
.attachment-field {
  background: #f2f5f7;
  border: 1px solid #cccccc;
  padding: 20px;
  border-radius: 3px; }
  .attachment-field:first-of-type {
    position: relative; }
    .attachment-field:first-of-type .upload-btn-wrapper {
      display: block; }
    .attachment-field:first-of-type .js-remove {
      display: none; }
    .attachment-field:first-of-type input[type=file] {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer; }
    .attachment-field:first-of-type .file-upload {
      font-family: open sans, Arial, Helvetica, sans-serif;
      width: 100%;
      text-align: center; }
      .attachment-field:first-of-type .file-upload small {
        font-size: 15px;
        display: block;
        font-weight: bold;
        color: #666666; }
      .attachment-field:first-of-type .file-upload svg {
        width: 60px;
        height: 60px;
        display: block;
        margin: 15px auto;
        fill: #004b8d; }
      .attachment-field:first-of-type .file-upload span {
        font-size: 15px;
        display: block;
        color: #666666; }
  .attachment-field .upload-btn-wrapper {
    display: none; }
  .attachment-field + .attachment-field {
    display: flex;
    align-items: center;
    margin-top: 10px; }
    .attachment-field + .attachment-field .js-remove {
      background: #dc3545;
      font-size: 15px;
      border-radius: 6px;
      order: 2;
      margin-left: auto;
      display: inline-block;
      color: #ffffff;
      padding: 6px 10px;
      cursor: pointer; }

.attachment-skip a {
  margin: 15px 0;
  display: inline-block;
  font-size: 15px;
  border-radius: 6px;
  padding: 6px 10px;
  background: #f2f5f7;
  text-decoration: none;
  font-weight: bold;
  color: #666666; }
  .attachment-skip a:hover {
    text-decoration: underline; }

.upload-errors {
  color: #dc3545;
  margin-top: 10px;
  font-size: 15px;
  font-weight: bold; }

/* File uploads careers */
.attachment-field--careers {
  background: #f2f5f7;
  border: 1px solid #cccccc;
  background: #ffffff;
  padding: 20px;
  border-radius: 3px;
  position: relative; }
  .attachment-field--careers:first-of-type .upload-btn-wrapper {
    display: block; }
  .attachment-field--careers:first-of-type .js-remove {
    display: none; }
  .attachment-field--careers:first-of-type input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer; }
  .attachment-field--careers:first-of-type .file-upload {
    width: 100%;
    text-align: center; }
    .attachment-field--careers:first-of-type .file-upload small {
      font-size: 15px;
      display: block;
      font-weight: bold;
      color: #666666; }
    .attachment-field--careers:first-of-type .file-upload svg {
      width: 60px;
      height: 60px;
      display: block;
      margin: 15px auto;
      fill: #004b8d; }
    .attachment-field--careers:first-of-type .file-upload span {
      font-size: 15px;
      display: block;
      color: #666666; }
  .attachment-field--careers + .attachment-field--careers {
    display: flex;
    align-items: center;
    margin-top: 10px; }
    .attachment-field--careers + .attachment-field--careers .js-remove {
      background: #dc3545;
      font-size: 15px;
      border-radius: 6px;
      order: 2;
      margin-left: auto;
      display: inline-block;
      color: #ffffff;
      padding: 6px 10px;
      cursor: pointer; }
    .attachment-field--careers + .attachment-field--careers .upload-btn-wrapper {
      display: none; }

#serviceform-container {
  background: #ffffff;
  padding: 0 0 20px 0;
  border-left: 2px solid #f2f5f7;
  margin-bottom: 40px; }
  #serviceform-container .content {
    margin-bottom: 30px; }
  #serviceform-container .field input[type=text],
  #serviceform-container .field textarea,
  #serviceform-container .field .field-select {
    background: #ffffff; }
  @media (prefers-color-scheme: dark) {
    #serviceform-container .field input,
    #serviceform-container .field textarea,
    #serviceform-container .field .field-select {
      background: #ffffff;
      color: #ffffff; } }
  @media (prefers-color-scheme: dark) {
    #serviceform-container {
      padding-top: 25px;
      background: #000000; } }
  @media screen and (max-width: 1000px) {
    #serviceform-container {
      border: none; } }

html[lang="ar"] .field-group--columns .field:nth-child(2) {
  margin-left: 0px;
  margin-right: auto; }
html[lang="ar"] .field-group--tel .field:nth-child(2) {
  margin-left: 0px;
  margin-right: auto; }
html[lang="ar"] .field--checkbox .checkbox-status {
  margin-right: 0;
  margin-left: 10px; }
html[lang="ar"] .field-select:after {
  right: auto;
  left: 10px; }

/*
@import 'partials/rows/page-intro';
@import 'partials/rows/page-anchors';
@import 'partials/rows/content';
@import 'partials/rows/cta';
@import 'partials/rows/gallery';
@import 'partials/rows/lists';
@import 'partials/rows/rows';
@import 'partials/rows/promos';
@import 'partials/rows/embed';
@import 'partials/rows/careers';

@import 'partials/rows/carousel-hero';
@import 'partials/rows/carousel-header';

@import 'partials/forms/forms';
@import 'partials/forms/bubble-cta';
*/
