@charset "UTF-8";
/* Reset
------------------------------------------------------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* iOS links reset 
------------------------------------------------------------------------------------------------------------------------------------------------------*/
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

/* Remove default input styling from WebKit 
------------------------------------------------------------------------------------------------------------------------------------------------------*/
textarea,
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* Variables
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Colours
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Breakpoints
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* MIXINS
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Typography
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Font families




font-family: museo-sans, sans-serif;
font-weight: 500;
font-style: normal;

Museo Sans 500 Italic

font-family: museo-sans, sans-serif;
font-weight: 500;
font-style: italic;

Museo Sans 700

font-family: museo-sans, sans-serif;
font-weight: 700;
font-style: normal;

Museo Sans 700 Italic

font-family: museo-sans, sans-serif;
font-weight: 700;
font-style: italic;

Museo Sans 900

font-family: museo-sans, sans-serif;
font-weight: 900;
font-style: normal;

Museo Sans 900 Italic

font-family: museo-sans, sans-serif;
font-weight: 900;
font-style: italic;



------------------------------------------------------------------------------------------------------------------------------------------------------*/
*, body, html {
  font-family: museo-sans, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 16;
  color: #2F2C29;
}

/* Font sizing

	This approach uses a Lucas Sequence (Golden Ratio) to provide us with a scalable framework for setting type that is both graceful and rhythmic.

	The Lucas Numbers sequence (similar to Fibonacci Sequence) consist of the following numbers:

	2, 1, 3, 4, 7, 11, 18, 29, 47, 76, 123, 199, 322, 521, 843… ad infinitum

	1. Any given number in the sequence is the sum of the two preceding numbers as described in this formula: n = n-1 + n-2
	2. The first two numbers in the sequence — known as seed numbers — are selected arbitrarily.

	Our ratio is:

	1 (em which is 16px) + SecondSeedNumber = x;
	SecondSeedNumber + x = y; and so on


	To determine the SecondSeedNumber each unique typeface needs to have the number adjusted determined on the X height of the font:

	Open the typeface in a program like Illustrator etc

	Type a letter with an ascender and a letter without an ascender / descenders for example 'd x'

	Measure the total height of the 'd' (ascender height) and the total height of the 'x' (x height)

	x-height / ascender height * 100 = SecondSeedNumber;

	Once we have our sequence we can convert the numbers (which are in ems to PX) to use with our @include font mixin

	www. pxtoem . com

	We’re now able to use these values as our type sizes sequentially to create a well proportioned type scheme.

	You can skip numbers in the scale to create more dramatic contrast in the typography.


	Helvetica Neue Sequence

	X height:

	d: 450px
	x: 320px

	x / d = SecondSeedNumber

	( 320 / 450 = 0.711 ) = SecondSeedNumber

	1 = @include font-size(16);
	1 + 0.711 = 1.711 = @include font-size(27);
	0.711 + 1.711 = 2.422 = @include font-size(38);
	1.711 + 2.422 = 4.133 = @include font-size(66);
	2.422 + 4.133 = 6.555 = @include font-size(104);


------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Headers
------------------------------------------------------------------------------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 2.5rem 0 1rem 0;
  color: #DE712A;
}
@media (max-width: 767px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
  }
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: #2F2C29;
}

h1 {
  font-weight: 900;
  font-size: 26px;
  font-size: 1.625rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h2 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

h3 {
  font-size: 16px;
  font-size: 1rem;
}

h4 {
  font-size: 16px;
  font-size: 1rem;
}

h5 {
  font-size: 16px;
  font-size: 1rem;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
}

p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/* Links
------------------------------------------------------------------------------------------------------------------------------------------------------*/
ol, ul {
  list-style: inherit;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
  padding-left: 30px;
  line-height: 1.5;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  ol, ul {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
ol li, ul li {
  margin-bottom: 10px;
}

ol {
  list-style: decimal;
}

/* Links
------------------------------------------------------------------------------------------------------------------------------------------------------*/
a {
  color: #DE712A;
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-weight: 400;
}
@media (max-width: 1024px) {
  a {
    text-decoration: underline;
  }
}
a:before {
  background-color: #DE712A;
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
  width: 100%;
}
@media (max-width: 1024px) {
  a:before {
    display: none;
  }
}
a:hover:before {
  width: 0;
}
a span {
  color: inherit;
}

a.link-no-border-style:before {
  display: none;
}

[data-fancybox] {
  /* Attribute exists */
}
[data-fancybox]:before {
  display: none;
}
[data-fancybox] img {
  margin: 30px 0 !important;
}

/* Overriding The Default Text Selection Color With CSS
------------------------------------------------------------------------------------------------------------------------------------------------------*/
::-moz-selection {
  background: #2F2C29;
  color: #fff;
}
::selection {
  background: #2F2C29;
  color: #fff;
}

/* Italics and Bold / Strong
------------------------------------------------------------------------------------------------------------------------------------------------------*/
em {
  font-style: italic;
}

strong, b {
  font-weight: 900;
}

/* Custom Misc Typography Classes
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.limited-width-intro-paragraph {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-text {
  color: #36A7D3;
}
.highlight-text strong {
  color: #36A7D3;
}

.fineprint p {
  font-size: 12px;
  font-size: 0.75rem;
  color: #999999;
}

p.intro-paragraph {
  font-size: 20px;
  font-size: 1.25rem;
  color: #36A7D3;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  p.intro-paragraph {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.centered-title {
  text-align: center;
}
.centered-title:after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: #DE712A;
  margin: 10px auto;
}

.section-title {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  color: #2F2C29;
  margin-top: 0;
  margin-bottom: 60px;
}
.section-title:after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #DE712A;
  margin: 10px auto;
}

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

.limit-width-centered-text {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

sub, sup {
  /* Specified in % so that the sup/sup is the
     right size relative to the surrounding text */
  font-size: 75%;
  /* Zero out the line-height so that it doesn't
     interfere with the positioning that follows */
  line-height: 0;
  /* Where the magic happens: makes all browsers position
     the sup/sup properly, relative to the surrounding text */
  position: relative;
  /* Note that if you're using Eric Meyer's reset.css, this
     is already set and you can remove this rule */
  vertical-align: baseline;
  color: inherit;
}

sup {
  /* Move the superscripted text up */
  top: -0.5em;
}

sub {
  /* Move the subscripted text down, but only
     half as far down as the superscript moved up */
  bottom: -0.25em;
}

.button {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1;
  padding: 15px 30px;
  text-transform: uppercase;
  color: #2F2C29;
  background-color: #DE712A;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.5s;
  border: 2px solid #DE712A;
  cursor: pointer;
}
.button:before {
  display: none;
}
.button:hover {
  background-color: #36A7D3;
  color: #fff;
  border-color: #36A7D3;
}
@media (max-width: 767px) {
  .button {
    padding: 10px 20px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

.ghost-button {
  background-color: transparent;
  color: #DE712A;
}
.ghost-button:hover {
  background-color: transparent;
  color: #36A7D3;
  border-color: #36A7D3;
}

.light-ghost-button {
  color: #ECEBEA;
  border-color: #ECEBEA;
}
.light-ghost-button:hover {
  background-color: #36A7D3;
  color: #fff;
  border-color: #36A7D3;
}

.button-group {
  display: flex;
}
.button-group .button {
  flex-grow: 1;
}
.button-group .button:first-of-type {
  border-radius: 3px 0 0 3px;
}
.button-group .button:last-of-type {
  border-radius: 0 3px 3px 0;
}

.button-arrow-active {
  position: relative;
}
.button-arrow-active:after {
  content: "";
  display: block;
  width: 22px;
  height: 11px;
  background-image: url(dark-green-arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: 0 auto;
}

.block-button {
  display: block;
}

/*
 * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
 *
 * [1] IE9
 * [2] IE10+
 */
/* 1 */
.ie9 img[src$=".svg"] {
  width: 100%;
}

/* 2 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src$=".svg"] {
    width: 100%;
  }
}
.hamburger:focus {
  border: none;
  outline: none;
}

.is-active .hamburger-inner, .is-active .hamburger-inner::before, .is-active .hamburger-inner::after {
  background-color: #fff;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 1px;
  background-color: #fff;
  border-radius: none;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 52px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 52px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 52px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 52px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 52px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 52px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-5.2px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-5.2px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(5.2px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(5.2px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-5.2px, -6.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-5.2px, 6.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(5.2px, -6.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(5.2px, 6.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 0.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 7px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 14px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 0.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 7px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 14px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 7px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -52px;
  top: -52px;
  transform: translate3d(52px, 52px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -52px;
  top: -52px;
  transform: translate3d(-52px, 52px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 7px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -52px;
  top: 52px;
  transform: translate3d(52px, -52px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -52px;
  top: 52px;
  transform: translate3d(-52px, -52px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 0.5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 14px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-3.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 0.5px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 14px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(3.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 0.5px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 7px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 7px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -14px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px 44px 0 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0 0 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px 6px 0 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 44px 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-slide--html .fancybox-content {
  margin: 0 0 6px 0;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: calc(100% - 44px);
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  vertical-align: top;
  width: 100%;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background: transparent;
  height: 100px;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  background: rgba(30, 30, 30, 0.6);
  height: 100%;
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
}

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0;
}

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}

.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0 0 0;
  }

  .fancybox-slide--image .fancybox-content {
    margin-bottom: 6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 768px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
.fancybox-container .fancybox-button {
  color: #fff;
}
.fancybox-container .fancybox-button svg path {
  color: #DE712A;
}

.small-close-button {
  display: inline-block;
  width: 10px;
  height: 10px;
}
.small-close-button:before, .small-close-button:after {
  content: "";
  display: block;
  width: 140%;
  height: 1px;
  background: #fff;
}
.small-close-button:before {
  transform: rotate(45deg);
  transform-origin: 0 0;
  margin-top: -0.25px;
  margin-left: 0.5px;
}
.small-close-button:after {
  transform: rotate(-45deg);
  transform-origin: 100% 0;
  margin-left: -41%;
  margin-top: -1px;
}
.small-close-button:hover {
  cursor: pointer;
}
.small-close-button:hover:before, .small-close-button:hover:after {
  background: #fff;
}

.modal-close, .modal-marker-close {
  position: absolute;
  display: block;
  top: 15px;
  right: -26px;
  background-color: #DE712A;
  width: 26px;
  height: 26px;
  padding: 5px;
}
@media (max-width: 767px) {
  .modal-close, .modal-marker-close {
    top: 5px;
    right: 5px;
    background-color: #fff;
    width: 22px;
    height: 22px;
  }
  .modal-close:before, .modal-close:after, .modal-marker-close:before, .modal-marker-close:after {
    background: #2F2C29;
  }
  .modal-close:hover:before, .modal-close:hover:after, .modal-marker-close:hover:before, .modal-marker-close:hover:after {
    background: #DE712A;
  }
}
.modal-close:hover, .modal-marker-close:hover {
  background-color: #2F2C29;
}
@media (max-width: 767px) {
  .modal-close:hover, .modal-marker-close:hover {
    background-color: #fff;
  }
}

.small-tt-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.small-tt-close {
  display: inline-block;
  width: 10px;
  height: 10px;
}
.small-tt-close:before, .small-tt-close:after {
  content: "";
  display: block;
  width: 140%;
  height: 1px;
  background: #DE712A;
}
.small-tt-close:before {
  transform: rotate(45deg);
  transform-origin: 0 0;
  margin-top: -0.25px;
  margin-left: 0.5px;
}
.small-tt-close:after {
  transform: rotate(-45deg);
  transform-origin: 100% 0;
  margin-left: -41%;
  margin-top: -1px;
}
.small-tt-close:hover {
  cursor: pointer;
}
.small-tt-close:hover:before, .small-tt-close:hover:after {
  background: #2F2C29;
}

/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
  if greater that the natural height of the tooltip, will be enforced
  in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute;
}

.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
  and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto;
}

.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

/* grow */
.tooltipster-grow {
  transform: scale(0, 0);
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
  transform: scale(1, 1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* swing */
.tooltipster-swing {
  opacity: 0;
  transform: rotateZ(4deg);
  transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  transform: rotateZ(0deg);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

/* fall */
.tooltipster-fall {
  transition-property: top;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}

/* slide */
.tooltipster-slide {
  transition-property: left;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@-webkit-keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  -webkit-animation: tooltipster-fading 400ms;
          animation: tooltipster-fading 400ms;
}

/* rotate */
@-webkit-keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.tooltipster-update-rotate {
  -webkit-animation: tooltipster-rotating 600ms;
          animation: tooltipster-rotating 600ms;
}

/* scale */
@-webkit-keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tooltipster-update-scale {
  -webkit-animation: tooltipster-scaling 600ms;
          animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid black;
  border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
  been positioned yet */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0;
  top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0;
  top: -3px;
}

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: black;
}

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

/* Tooltipster Themes
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.tooltipster-sidetip.tooltipster-shadow .tooltipster-box {
  border: none;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.1);
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-box {
  margin-top: 6px;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-box {
  margin-right: 6px;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-box {
  margin-left: 6px;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-box {
  margin-bottom: 6px;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-content {
  color: #8d8d8d;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow {
  height: 6px;
  margin-left: -6px;
  width: 12px;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow, .tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow {
  height: 12px;
  margin-left: 0;
  margin-top: -6px;
  width: 6px;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background {
  display: none;
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border {
  border: 6px solid transparent;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #fff;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #fff;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #fff;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #fff;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -6px;
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-uncropped {
  left: -6px;
}

/* Customise Tooltipster Themes
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.tooltipster-sidetip.tooltipster-shadow .tooltipster-content {
  color: #333;
  font-size: 13px;
  font-size: 0.8125rem;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .tooltip_style_html span {
  display: block;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .tooltip_style_html h3 {
  margin-top: 0;
  color: #2F2C29;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 10px;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .tooltip_style_html a {
  color: #DE712A;
  text-decoration: underline;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .tooltip_style_html a:hover {
  color: #000;
  text-decoration: none;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .tooltip_style_html a:before {
  display: none;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-content .tooltip_style_html p {
  font-size: 13px;
  font-size: 0.8125rem;
}

/* Preloaders
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------
	Preloader
-----------------------------------------------------------------------------------*/
.preloader-wrapper {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1030;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s;
}
.preloader-wrapper .preloader-inner {
  transition: all 1s;
  text-align: center;
}
.preloader-wrapper .preloader-inner .preloader-image {
  width: 60px;
  height: 60px;
  background-image: url(../images/tail-spin.svg);
  display: block;
  background-position: center center;
  background-size: contain;
}
.preloader-wrapper .preloader-inner span.loading-info {
  display: none;
}

.home .preloader-wrapper .preloader-inner .preloader-image {
  width: 100px;
  height: 100px;
  background-image: url(../images/10-deserts-logo-portrait-white.svg);
}
.home .preloader-wrapper .preloader-inner span.loading-info {
  display: block;
  margin-top: 30px;
}

body.loaded .preloader-wrapper {
  opacity: 0;
}
body.loaded .preloader-wrapper .preloader-inner {
  transform: scale(0, 0);
}

body.preloader-removed .preloader-wrapper {
  visibility: hidden;
}

#Path_1081 {
  border: 10px solid red;
}

@-webkit-keyframes pulse {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  to {
    transform: scale(1);
  }
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  to {
    transform: scale(1);
  }
}
.fe-pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/* Main CSS
------------------------------------------------------------------------------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  background-color: #F2F2F2;
  padding-top: 230px;
}
@media (max-width: 767px) {
  body {
    padding-top: 190px;
  }
}

@media (max-width: 767px) {
  body.body-with-trans-page-container {
    padding-top: 140px;
  }
}

@media (max-width: 767px) {
  body.home {
    padding-top: 230px;
  }
}

body.inner-page-full-width-hero-template {
  padding-top: 180px;
}
@media (max-width: 1024px) {
  body.inner-page-full-width-hero-template {
    padding-top: 140px;
  }
}
@media (max-width: 767px) {
  body.inner-page-full-width-hero-template {
    padding-top: 120px;
  }
}

html.noscroll {
  overflow-y: hidden;
}

/* General grid and layout classes
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.general-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 1280px) {
  .wide-container {
    max-width: 1600px;
  }
}

.full-width-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 1280px) {
  .full-width-container {
    padding: 0 60px;
  }
}

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

.flex-container-columns {
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}

.test-class-for-git {
  display: grid;
}

/* Top Bar
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.top-bar {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  z-index: 610;
  padding: 30px 0 30px 0;
  background: #000;
}
@media (max-width: 1024px) {
  .top-bar {
    padding: 30px 0 30px 0;
  }
}
.top-bar .top-bar-inner {
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  max-width: 1200px;
  margin: 0 auto;
  height: 120px;
  width: 94%;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .top-bar .top-bar-inner {
    height: 60px;
  }
}
.top-bar .top-bar-inner a {
  text-decoration: none;
}
.top-bar .top-bar-inner a:before {
  display: none;
}
.top-bar .top-bar-inner .top-bar-logos-container {
  display: flex;
  align-items: center;
}
.top-bar .top-bar-inner .top-bar-logos-container .top-bar-logo {
  display: block;
  width: 100px;
  transition: all 0.2s;
  z-index: 1799;
  transition: none;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-logos-container .top-bar-logo {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .top-bar .top-bar-inner .top-bar-logos-container .top-bar-logo {
    width: 60px;
  }
}
.top-bar .top-bar-inner .top-bar-logos-container .top-bar-logo:hover {
  transform: none;
}
@media (max-width: 767px) {
  .top-bar .top-bar-inner .top-bar-logos-container .top-bar-logo:hover {
    transform: none;
  }
}
.top-bar .top-bar-inner .top-bar-logos-container .top-bar-logo.top-bar-ida-logo {
  margin-left: 30px;
  width: 120px;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-logos-container .top-bar-logo.top-bar-ida-logo {
    margin-left: 20px;
    width: 80px;
  }
}
.top-bar .top-bar-inner .top-bar-logos-container .top-bar-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.top-bar .top-bar-inner .top-bar-right {
  margin-left: auto;
  height: 120px;
  text-align: right;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .top-bar .top-bar-inner .top-bar-right {
    height: 60px;
  }
}
.top-bar .top-bar-inner .top-bar-right .top-bar-right-top {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.top-bar .top-bar-inner .top-bar-right .top-bar-right-top .top-bar-user {
  display: block;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  margin-right: 30px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .top-bar-right-top .top-bar-user {
    display: none;
  }
}
.top-bar .top-bar-inner .top-bar-right .top-bar-right-top .top-bar-user span {
  color: #fff;
}
.top-bar .top-bar-inner .top-bar-right .top-bar-right-top .top-bar-user a {
  text-decoration: underline;
}
.top-bar .top-bar-inner .top-bar-right .top-bar-right-top ul.social-media-links-header {
  margin: 0 10px 0 0;
  text-align: right;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .top-bar-right-top ul.social-media-links-header {
    position: relative;
    top: auto;
    right: auto;
    margin: 0;
  }
}
.top-bar .top-bar-inner .top-bar-right .main-menu {
  color: #fff;
  transition: all 0.2s;
  display: block;
  flex: 0 0 100%;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .main-menu {
    transform: translate(0, -200vh);
    position: fixed;
    top: 130px;
    left: 0;
    width: 100%;
    background-color: #DE712A;
    height: calc(100vh);
    padding: 20px 0 200px 0;
    overflow-y: scroll;
  }
}
@media (max-width: 767px) {
  .top-bar .top-bar-inner .top-bar-right .main-menu {
    top: 110px;
  }
}
.top-bar .top-bar-inner .top-bar-right .main-menu .main-menu-title {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 30px;
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  padding-bottom: 10px;
}
.top-bar .top-bar-inner .top-bar-right .main-menu ul {
  text-align: right;
  color: #fff;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .main-menu ul {
    text-align: left;
    width: 94%;
    margin: 0 auto;
  }
}
.top-bar .top-bar-inner .top-bar-right .main-menu ul li {
  margin: 0 20px;
  border-bottom: 2px solid transparent;
  display: inline-block;
  position: relative;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .main-menu ul li {
    margin: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.top-bar .top-bar-inner .top-bar-right .main-menu ul li a {
  display: block;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  padding: 10px 0;
  letter-spacing: 1px;
}
.top-bar .top-bar-inner .top-bar-right .main-menu ul li a:before {
  background-color: #fff;
  bottom: -1px;
  width: 0;
  display: block;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .main-menu ul li a:before {
    display: none;
  }
}
.top-bar .top-bar-inner .top-bar-right .main-menu ul li a:hover:before {
  width: 100%;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .main-menu ul li a {
    line-height: 20px;
    height: auto;
  }
}
.top-bar .top-bar-inner .top-bar-right .main-menu ul li.current-menu-item {
  border-bottom: 1px solid #DE712A;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .main-menu ul li.current-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.top-bar .top-bar-inner .top-bar-right .main-menu .main-menu-user {
  display: none;
}
.top-bar .top-bar-inner .top-bar-right .main-menu .main-menu-user .main-menu-user-welcome {
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .main-menu .main-menu-user {
    display: block;
    text-align: left;
    text-transform: uppercase;
    width: 94%;
    margin: 10px auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 10px 0;
  }
  .top-bar .top-bar-inner .top-bar-right .main-menu .main-menu-user span {
    color: #fff;
  }
  .top-bar .top-bar-inner .top-bar-right .main-menu .main-menu-user a {
    color: #fff;
    font-weight: 900;
  }
}
.top-bar .top-bar-inner .top-bar-right .main-menu .social-media-links-mobile-nav {
  display: none;
}
.top-bar .top-bar-inner .top-bar-right .main-menu .social-media-links-mobile-nav li {
  display: inline-block;
  border-bottom: none;
  margin: 0 15px 0 0;
}
.top-bar .top-bar-inner .top-bar-right .main-menu .social-media-links-mobile-nav-visible {
  display: block;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .main-menu-visible-responsive {
    transform: translate(0, 0);
    display: block;
  }
  .top-bar .top-bar-inner .top-bar-right .main-menu-visible-responsive .main-menu-title {
    display: block;
  }
}
.top-bar .top-bar-inner .hamburger {
  z-index: 1800;
  display: none;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .hamburger {
    display: block;
  }
}

.home .top-bar {
  background: transparent;
}
.home .top-bar .top-bar-inner {
  max-width: 1800px;
}
.home .top-bar .top-bar-inner .top-bar-right .top-bar-right-top .top-bar-user a {
  color: #fff;
}

.home .topbar-menuvisible {
  background: #000;
}

.body-with-trans-page-container .top-bar {
  padding-bottom: 30px;
}
.body-with-trans-page-container .top-bar-fixed {
  padding-bottom: 0;
}

/* Sticky Top Bar
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.top-bar-fixed {
  position: fixed;
  padding: 0;
  z-index: 1000;
  transform: translateY(-80px);
}
.top-bar-fixed .top-bar-inner {
  height: 80px;
}
.top-bar-fixed .top-bar-inner .top-bar-logos-container .top-bar-logo {
  width: 60px;
}
.top-bar-fixed .top-bar-inner .top-bar-logos-container .top-bar-logo.top-bar-ida-logo {
  margin-left: 20px;
  width: 80px;
}
.top-bar-fixed .top-bar-inner .top-bar-right .top-bar-right-top .top-bar-user {
  margin-top: 10px;
  margin-right: 20px;
}
.top-bar-fixed .top-bar-inner .top-bar-right .top-bar-right-top .top-bar-user .top-bar-user-welcome {
  opacity: 0.5;
}
.top-bar-fixed .top-bar-inner .top-bar-right .top-bar-right-top ul.social-media-links-header {
  display: none;
}
.top-bar-fixed .top-bar-inner .top-bar-right .main-menu {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .top-bar-fixed .top-bar-inner .top-bar-right .main-menu {
    top: 80px;
  }
}
@media (max-width: 767px) {
  .top-bar-fixed .top-bar-inner .top-bar-right .main-menu {
    top: 80px;
  }
}

.home .top-bar-fixed {
  background: #000;
}

.top-bar-stuck {
  transform: translateY(0);
  transition: transform 1s;
}

.top-bar.stuck {
  position: fixed;
  padding: 0;
  z-index: 1000;
}
.top-bar.stuck .top-bar-inner {
  height: 80px;
}
.top-bar.stuck .top-bar-inner .top-bar-logos-container .top-bar-logo {
  width: 60px;
}
.top-bar.stuck .top-bar-inner .top-bar-right ul.social-media-links-header {
  display: none;
}
@media (max-width: 1024px) {
  .top-bar.stuck .top-bar-inner .top-bar-right .main-menu {
    top: 80px;
  }
}
@media (max-width: 767px) {
  .top-bar.stuck .top-bar-inner .top-bar-right .main-menu {
    top: 80px;
  }
}

/* Mega Menus
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.top-bar .top-bar-inner .top-bar-right .has-mega-menu {
  /* dropdown hover trigger */
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu ul.sub-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu:hover a:before {
  opacity: 0;
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu:hover ul.sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu:hover ul.sub-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu:hover ul.sub-menu.expand-sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu:hover ul.sub-menu.expand-sub-menu {
    display: block;
  }
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu ul.expand-sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > a {
    background-image: url("../images/plus-icon-white.svg");
    background-position: 98% center;
    background-size: 10px;
    background-repeat: no-repeat;
  }
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > a.expanded-menu-item {
    background-image: url("../images/minus-icon-white.svg");
  }
}

.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-top: 10px;
  transform: translateY(100%);
  width: 460px;
  text-align: left;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu {
    position: relative;
    transform: none;
    bottom: auto;
    left: auto;
    width: 100%;
    padding-top: 0;
  }
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu > a {
  display: none;
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  position: absolute;
  top: 3px;
  left: 15px;
  transform: rotate(45deg);
  z-index: 10;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu:before {
    display: none;
  }
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu {
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  margin: 0;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    border-bottom: none;
  }
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu {
  text-align: left;
  display: flex;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu {
    display: block;
  }
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li {
  display: block;
  flex: 1;
  margin: 0;
  padding: 20px;
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li.current-menu-item {
  border-bottom: none;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li {
    border-bottom: none;
  }
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li a {
  padding: 0;
  text-transform: none;
  color: #DE712A;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li a {
    color: #fff;
  }
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li a:hover {
  color: #2F2C29;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li a:hover {
    color: #fff;
  }
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li a .mega-menu-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li a .menu-item-description {
  display: block;
  font-weight: 400;
  text-transform: none;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  margin-top: 10px;
  color: #2F2C29;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li a .menu-item-description {
    color: #fff;
  }
}
.top-bar .top-bar-inner .top-bar-right .has-mega-menu > .sub-menu .mega-menu .sub-menu li a:before {
  display: none;
}

.top-bar .top-bar-inner .top-bar-right .has-mega-menu.align-mega-menu-right > .sub-menu {
  left: auto;
  right: 0;
}

.breadcrumb-menu {
  font-size: 12px;
  font-size: 0.75rem;
  color: #999999;
}
.breadcrumb-menu a {
  text-decoration: none;
}
.breadcrumb-menu a:before {
  display: none;
}

/* Hero Section
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.hero-section {
  height: calc(100vh + 60px);
  background-color: #000;
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-top: -240px;
  /* Height of top bar & it's top padding */
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .hero-section {
    margin-top: -230px;
  }
}
.hero-section:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 200px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  left: 0;
  right: 0;
  top: 0;
  box-sizing: border-box;
}
.hero-section .hero-cta {
  text-align: center;
  max-width: 380px;
  padding-bottom: 160px;
  position: relative;
  /*
  &:after{
  	content: '';
  	display: block;
  	width: 1px;
  	height: 160px;
  	background-color: $orange;
  	position: absolute;
  	bottom: -30px;
  	left: 0;
  	right: 0;
  	margin: 0 auto;
  	animation: scale-up-ver-top 2s cubic-bezier(0.445, 0.050, 0.550, 0.950) infinite both;
  }
  */
}
.hero-section .hero-cta:before {
  display: none;
}
@media (max-width: 1024px) {
  .hero-section .hero-cta {
    text-decoration: none;
    padding-bottom: 200px;
  }
}
.hero-section .hero-cta .scroll-hint {
  display: block;
  width: 1px;
  height: 160px;
  background-color: #DE712A;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hero-section .hero-cta .scroll-hint {
    bottom: 30px;
  }
}
.hero-section .hero-cta h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2;
  color: white;
  margin: 0;
}
@media (max-width: 1024px) {
  .hero-section .hero-cta h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

/* Hero animated line
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.scale-up-ver-top {
  -webkit-animation: scale-up-ver-top 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite both;
          animation: scale-up-ver-top 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite both;
}

/**
 * ----------------------------------------
 * animation scale-up-ver-top
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-ver-top {
  0% {
    transform: scaleY(0.1);
    transform-origin: 100% 0%;
  }
  50% {
    transform: scaleY(1);
    transform-origin: 100% 0%;
  }
  100% {
    transform: scaleY(0.1);
    transform-origin: 100% 0%;
  }
}
@keyframes scale-up-ver-top {
  0% {
    transform: scaleY(0.1);
    transform-origin: 100% 0%;
  }
  50% {
    transform: scaleY(1);
    transform-origin: 100% 0%;
  }
  100% {
    transform: scaleY(0.1);
    transform-origin: 100% 0%;
  }
}
/* Home intro content
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.home-intro-content {
  background-color: #DE712A;
  padding-bottom: 60px;
  background-image: url(../images/dot-pattern-left.png);
  background-size: 80px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.home-intro-content .home-intro-content-inner {
  display: flex;
  width: 80%;
  margin-left: auto;
  margin-top: -40px;
  position: relative;
}
@media (max-width: 1024px) {
  .home-intro-content .home-intro-content-inner {
    width: 94%;
    margin: -40px auto 0 auto;
    flex-wrap: wrap;
  }
}
.home-intro-content .home-intro-content-inner .home-intro-content-inner-col-one {
  width: 50%;
  background-color: #2F2C29;
  padding: 80px 60px;
  border-bottom: 60px solid #DE712A;
}
@media (max-width: 767px) {
  .home-intro-content .home-intro-content-inner .home-intro-content-inner-col-one {
    width: 100%;
    border-bottom: none;
    padding: 40px 30px;
  }
}
.home-intro-content .home-intro-content-inner .home-intro-content-inner-col-one p {
  color: #ECEBEA;
}
.home-intro-content .home-intro-content-inner .home-intro-content-inner-col-one h2 {
  margin-top: 0;
  font-size: 26px;
  font-size: 1.625rem;
}
@media (max-width: 767px) {
  .home-intro-content .home-intro-content-inner .home-intro-content-inner-col-one h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.home-intro-content .home-intro-content-inner .home-intro-content-inner-col-one .button {
  margin-top: 30px;
}
.home-intro-content .home-intro-content-inner .home-intro-content-inner-col-two {
  width: 50%;
  max-width: 500px;
  background-color: transparent;
}
@media (max-width: 767px) {
  .home-intro-content .home-intro-content-inner .home-intro-content-inner-col-two {
    width: 100%;
    height: 500px;
    max-width: 100%;
  }
}
.home-intro-content .home-intro-content-inner .home-intro-content-inner-col-two .home-slide {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .home-intro-content .home-intro-content-inner .home-intro-content-inner-col-two .home-slide {
    height: 500px;
  }
}
.home-intro-content .home-intro-content-inner .home-intro-content-inner-col-two .slick-list, .home-intro-content .home-intro-content-inner .home-intro-content-inner-col-two .slick-track {
  height: 100%;
}

/* Home video featyre
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.home-video-feature {
  padding: 120px 0;
  background-image: url(../images/dot-pattern-our-projects.png);
  background-size: 30%;
  background-position: right top;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .home-video-feature {
    padding: 15px 0 60px 0;
  }
}
.home-video-feature .home-video-feature-inner {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-gap: 60px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
@media (max-width: 1024px) {
  .home-video-feature .home-video-feature-inner {
    display: block;
  }
}
@media (max-width: 1024px) {
  .home-video-feature .home-video-feature-inner .home-video-feature-video-container {
    margin-bottom: 30px;
  }
}
.home-video-feature .home-video-feature-inner .home-video-feature-video-container .home-video-feature-video {
  display: block;
  text-decoration: none;
  position: relative;
  background-color: #000;
}
.home-video-feature .home-video-feature-inner .home-video-feature-video-container .home-video-feature-video:before {
  display: none;
}
.home-video-feature .home-video-feature-inner .home-video-feature-video-container .home-video-feature-video:after {
  display: block;
  content: "";
  width: 90px;
  height: 90px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-image: url(../images/play-btn.svg);
  background-position: center center;
  background-size: contain;
  background-color: transparent;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .home-video-feature .home-video-feature-inner .home-video-feature-video-container .home-video-feature-video:after {
    width: 60px;
    height: 60px;
  }
}
.home-video-feature .home-video-feature-inner .home-video-feature-video-container .home-video-feature-video:focus {
  outline: none;
}
.home-video-feature .home-video-feature-inner .home-video-feature-video-container .home-video-feature-video:hover:after {
  transform: scale(1.1);
}
.home-video-feature .home-video-feature-inner .home-video-feature-video-container .home-video-feature-video:hover img {
  opacity: 0.8;
}
.home-video-feature .home-video-feature-inner .home-video-feature-video-container .home-video-feature-video img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.5s;
}
.home-video-feature .home-video-feature-inner .home-video-feature-quote-container {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .home-video-feature .home-video-feature-inner .home-video-feature-quote-container {
    padding: 0 20px;
  }
}
.home-video-feature .home-video-feature-inner .home-video-feature-quote-container .home-video-feature-quote {
  color: #2F2C29;
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.125rem;
  font-style: italic;
  position: relative;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 1024px) {
  .home-video-feature .home-video-feature-inner .home-video-feature-quote-container .home-video-feature-quote {
    font-size: 16px;
    font-size: 1rem;
  }
}
.home-video-feature .home-video-feature-inner .home-video-feature-quote-container .home-video-feature-quote .home-video-feature-quote-attr {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal;
  margin-top: 15px;
  font-weight: 500;
  color: #DE712A;
}
.home-video-feature .home-video-feature-inner .home-video-feature-quote-container .home-video-feature-quote .home-video-feature-quote-attr strong {
  color: #DE712A;
}
@media (max-width: 1024px) {
  .home-video-feature .home-video-feature-inner .home-video-feature-quote-container .home-video-feature-quote .home-video-feature-quote-attr {
    font-size: 12px;
    font-size: 0.75rem;
    bottom: -50px;
  }
}
@media (max-width: 767px) {
  .home-video-feature .home-video-feature-inner .home-video-feature-quote-container .home-video-feature-quote .home-video-feature-quote-attr {
    position: relative;
    bottom: auto;
    margin-top: 15px;
  }
}

/* Our Projects Grid
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.our-projects-overview {
  padding: 60px 0;
  background-image: url(../images/dot-pattern-our-projects.png);
  background-size: 30%;
  background-position: right top;
  background-repeat: no-repeat;
}
.our-projects-overview .our-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1px;
  margin: 0 auto;
  max-width: 1400px;
}
.our-projects-overview .our-projects-grid.resources-grid-logged-in {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1080px;
}
@media (max-width: 1024px) {
  .our-projects-overview .our-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .our-projects-overview .our-projects-grid {
    grid-template-columns: repeat(1, 1fr);
    display: block;
  }
}
.our-projects-overview .our-projects-grid a.our-projects-grid-item {
  display: block;
  position: relative;
  text-align: right;
  overflow: hidden;
  transition: all 0.5s;
}
.our-projects-overview .our-projects-grid a.our-projects-grid-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.5s;
  filter: brightness(0.9);
}
.our-projects-overview .our-projects-grid a.our-projects-grid-item:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}
.our-projects-overview .our-projects-grid a.our-projects-grid-item span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px;
}
.our-projects-overview .our-projects-grid .projects-quote {
  background-color: transparent;
  grid-column: 1/4;
  padding: 30px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .our-projects-overview .our-projects-grid .projects-quote {
    grid-column: 2/3;
  }
}
@media (max-width: 767px) {
  .our-projects-overview .our-projects-grid .projects-quote {
    padding: 30px 30px 0 30px;
  }
}
.our-projects-overview .our-projects-grid .projects-quote .projects-quote-quote {
  color: #DE712A;
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.125rem;
  font-style: italic;
  position: relative;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 1024px) {
  .our-projects-overview .our-projects-grid .projects-quote .projects-quote-quote {
    font-size: 16px;
    font-size: 1rem;
  }
}
.our-projects-overview .our-projects-grid .projects-quote .projects-quote-quote .projects-quote-attr {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal;
  position: absolute;
  right: 0;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .our-projects-overview .our-projects-grid .projects-quote .projects-quote-quote .projects-quote-attr {
    font-size: 12px;
    font-size: 0.75rem;
    bottom: -50px;
  }
}
@media (max-width: 767px) {
  .our-projects-overview .our-projects-grid .projects-quote .projects-quote-quote .projects-quote-attr {
    position: relative;
    bottom: auto;
    margin-top: 15px;
  }
}

.home .our-projects-overview {
  background-color: #fff;
}
.our-projects-overview-all-projects-page {
  background-image: none;
}

/* Project Partners
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.project-partners {
  padding: 60px 0;
  background-color: #fff;
}
.project-partners .project-partners-grid {
  width: 94%;
  max-width: 1400px;
  margin: 10px auto 45px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1024px) {
  .project-partners .project-partners-grid {
    margin-bottom: 60px;
  }
}
.project-partners .project-partners-grid.project-partner-manager-grid .project-partners-grid-item {
  width: calc( 100% / 3 );
}
@media (max-width: 1024px) {
  .project-partners .project-partners-grid.project-partner-manager-grid .project-partners-grid-item {
    width: calc( 100% / 2 );
  }
}
@media (max-width: 767px) {
  .project-partners .project-partners-grid.project-partner-manager-grid .project-partners-grid-item {
    width: 100%;
  }
}
.project-partners .project-partners-grid .project-partners-grid-item {
  display: block;
  width: calc( 100% / 6 );
  padding: 0 30px 30px 30px;
  text-decoration: none;
  transition: all 0.5s;
}
.project-partners .project-partners-grid .project-partners-grid-item:hover {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .project-partners .project-partners-grid .project-partners-grid-item:hover {
    transform: none;
  }
}
@media (min-width: 1600px) {
  .project-partners .project-partners-grid .project-partners-grid-item {
    padding: 0 50px 50px 50px;
  }
}
@media (max-width: 1024px) {
  .project-partners .project-partners-grid .project-partners-grid-item {
    width: calc( 100% / 3 );
  }
}
@media (max-width: 767px) {
  .project-partners .project-partners-grid .project-partners-grid-item {
    width: 50%;
  }
}
.project-partners .project-partners-grid .project-partners-grid-item:before {
  display: none;
}
.project-partners .project-partners-grid .project-partners-grid-item img {
  display: block;
  width: 100%;
  height: auto;
}
.project-partners .minor-partner-grids {
  width: 94%;
  max-width: 1400px;
  margin: 30px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.project-partners .minor-partner-grids .section-title {
  margin-bottom: 30px;
}
.project-partners .minor-partner-grids .partner-grid-minor {
  width: 50%;
}
@media (max-width: 1024px) {
  .project-partners .minor-partner-grids .partner-grid-minor {
    width: 100%;
  }
}
.project-partners .minor-partner-grids .project-partners-grid .project-partners-grid-item {
  width: calc( 100% / 3 );
}
@media (max-width: 767px) {
  .project-partners .minor-partner-grids .project-partners-grid .project-partners-grid-item {
    width: 50%;
  }
}
.space-container-vertically {
  padding: 60px 0;
}
@media (max-width: 1024px) {
  .space-container-vertically {
    padding: 30px 0 60px 0;
  }
}
@media (max-width: 767px) {
  .space-container-vertically {
    padding: 30px 0 60px 0;
  }
}

/* Inner Page Container
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.inner-page-container {
  width: 94%;
  max-width: 1200px;
  background-color: #fff;
  margin: 30px auto 0 auto;
  padding: 30px 100px 60px 100px;
  position: relative;
  text-align: center;
}
@media (max-width: 1024px) {
  .inner-page-container {
    z-index: 500;
    margin-top: -60px;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .inner-page-container {
    padding: 30px 15px;
  }
}
.inner-page-container:after {
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #DE712A;
  margin: 90px auto 0 auto;
}
.inner-page-container .page-category {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  font-size: 11px;
  font-size: 0.6875rem;
}
.inner-page-container h1.page-title {
  margin: 30px auto 0 auto;
  max-width: 600px;
}
.inner-page-container h1.page-title:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #DE712A;
  margin: 10px auto;
}
.inner-page-container .hero-image {
  margin: 45px auto 0 auto;
}
@media (max-width: 1024px) {
  .inner-page-container .hero-image {
    margin: 30px auto;
  }
}
.inner-page-container .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.transparent-inner-page-container {
  background-color: transparent;
  margin-top: 0;
  padding-bottom: 90px;
  padding: 30px 30px 90px 30px;
  max-width: 1400px;
}
@media (max-width: 767px) {
  .transparent-inner-page-container {
    padding: 0 0 60px 0;
  }
  .transparent-inner-page-container:after {
    margin-top: 60px;
  }
}

/* Inner Page Content
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.inner-page-content {
  width: 100%;
  max-width: 800px;
  margin: 45px auto 0 auto;
  text-align: left;
}
.inner-page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 60px 0;
}
@media (max-width: 767px) {
  .inner-page-content img {
    margin: 30px 0;
  }
}
.inner-page-content .centered-image {
  margin: 60px auto;
}
@media (max-width: 767px) {
  .inner-page-content .centered-image {
    margin: 30px 0;
  }
}
.inner-page-content img.aligncenter {
  margin: 60px auto;
}
@media (max-width: 767px) {
  .inner-page-content img.aligncenter {
    margin: 30px 0;
  }
}

/* Split with Sidebar Content Layout
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.split-with-sidebar-content-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px auto;
}
@media (max-width: 767px) {
  .split-with-sidebar-content-layout {
    flex-direction: column-reverse;
  }
}
.split-with-sidebar-content-layout .split-with-sidebar-content {
  flex-grow: 1;
  width: 70%;
  padding-right: 60px;
}
@media (max-width: 767px) {
  .split-with-sidebar-content-layout .split-with-sidebar-content {
    width: 100%;
    padding-right: 0;
    margin-top: 30px;
  }
}
.split-with-sidebar-content-layout .sidebar {
  width: 30%;
  max-width: 200px;
}
@media (max-width: 767px) {
  .split-with-sidebar-content-layout .sidebar {
    width: 100%;
    max-width: 100%;
  }
}
.split-with-sidebar-content-layout .sidebar h4 {
  margin-top: 0;
  color: #2F2C29;
  border-bottom: 1px solid #ECEBEA;
  padding-bottom: 5px;
}
.split-with-sidebar-content-layout .sidebar ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.split-with-sidebar-content-layout .sidebar ul li {
  font-size: 13px;
  font-size: 0.8125rem;
  border-bottom: 1px dotted #ECEBEA;
  padding: 5px 0;
}
.split-with-sidebar-content-layout .sidebar ul li a {
  display: block;
}
.split-with-sidebar-content-layout .sidebar ul li a:before {
  display: none;
}
.split-with-sidebar-content-layout .sidebar ul li a:hover {
  color: #2F2C29;
}
@media (max-width: 767px) {
  .split-with-sidebar-content-layout .sidebar ul li a {
    text-decoration: none;
  }
}

@media (max-width: 767px) {
  .sidebar-menu {
    padding: 0;
    border: 1px solid #ECEBEA;
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .sidebar-menu .sidebar-menu-toggle {
    background-image: url(../images/plus-icon.svg);
    background-size: 10px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 0;
    border-bottom-color: #fff !important;
  }
}
@media (max-width: 767px) {
  .sidebar-menu .sidebar-menu-toggle-open {
    background-image: url(../images/minus-icon.svg);
  }
}
@media (max-width: 767px) {
  .sidebar-menu .sidebar-menu-ul {
    display: none;
    padding: 10px !important;
  }
}
@media (max-width: 767px) {
  .sidebar-menu .sidebar-menu-ul-visible {
    display: block;
  }
}

/* Inner Page Full Width Hero Template
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.inner-page-full-width-hero-template .inner-page-container {
  margin-top: -30px;
}
@media (max-width: 767px) {
  .inner-page-full-width-hero-template .inner-page-container {
    margin-top: 0;
  }
}

.inner-page-full-width-hero {
  margin: 0 auto;
  max-width: 1400px;
}
.inner-page-full-width-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Steering Committee
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.steering-commitee {
  text-align: center;
}
.steering-commitee h2 {
  color: #36A7D3;
}
.steering-commitee h2:after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #36A7D3;
  margin: 10px auto;
}
.steering-commitee .steering-commitee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.steering-commitee .steering-commitee-grid .steering-commitee-grid-item {
  width: 25%;
  padding: 30px;
}
@media (max-width: 1024px) {
  .steering-commitee .steering-commitee-grid .steering-commitee-grid-item {
    width: calc(100% / 3);
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .steering-commitee .steering-commitee-grid .steering-commitee-grid-item {
    width: 50%;
  }
}
.steering-commitee .steering-commitee-grid .steering-commitee-grid-item:before {
  display: none;
}
.steering-commitee .steering-commitee-grid .steering-commitee-grid-item img {
  width: 100%;
  display: block;
  margin: 0;
  filter: grayscale(1);
  transition: all 0.5s;
}
@media (max-width: 1024px) {
  .steering-commitee .steering-commitee-grid .steering-commitee-grid-item img {
    transition: none;
  }
}
.steering-commitee .steering-commitee-grid .steering-commitee-grid-item h4 {
  margin: 10px 0 10px 0;
}
@media (max-width: 767px) {
  .steering-commitee .steering-commitee-grid .steering-commitee-grid-item h4 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.steering-commitee .steering-commitee-grid .steering-commitee-grid-item p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .steering-commitee .steering-commitee-grid .steering-commitee-grid-item p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.steering-commitee .steering-commitee-grid .steering-commitee-grid-item:hover img {
  filter: grayscale(0);
}

/* Inner Page Partners
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.project-partners-full {
  text-align: left;
}
.project-partners-full .section-title {
  text-align: left;
  margin: 60px 30px 0 30px;
}
.project-partners-full .section-title:after {
  margin: 10px 0;
}
@media (max-width: 1024px) {
  .project-partners-full .section-title {
    margin: 60px 15px 0 15px;
  }
}
.project-partners-full .project-partners-grid {
  display: flex;
  flex-wrap: wrap;
}
.project-partners-full .project-partners-grid .project-partners-grid-item {
  display: block;
  width: calc( 100% / 4 );
  padding: 0;
  text-decoration: none;
  transition: all 0.5s;
  padding: 30px;
}
@media (max-width: 1024px) {
  .project-partners-full .project-partners-grid .project-partners-grid-item {
    width: calc( 100% / 3 );
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .project-partners-full .project-partners-grid .project-partners-grid-item {
    width: 50%;
  }
}
.project-partners-full .project-partners-grid .project-partners-grid-item:hover {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .project-partners-full .project-partners-grid .project-partners-grid-item:hover {
    transform: none;
  }
}
.project-partners-full .project-partners-grid .project-partners-grid-item:before {
  display: none;
}
.project-partners-full .project-partners-grid .project-partners-grid-item img {
  display: block;
  width: 100%;
  height: auto;
  border: 20px solid #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
@media (max-width: 1024px) {
  .project-partners-full .project-partners-grid .project-partners-grid-item img {
    border-width: 10px;
  }
}

/* ACF Blocks
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.icon-left-copy-right {
  display: flex;
  margin: 45px auto;
  width: 100%;
}
@media (max-width: 767px) {
  .icon-left-copy-right {
    display: block;
  }
}
.icon-left-copy-right .icon-left-copy-right-icon {
  flex: 0 0 120px;
  max-width: 120px;
  align-self: start;
  display: block;
  margin: 0;
}
@media (max-width: 767px) {
  .icon-left-copy-right .icon-left-copy-right-icon {
    margin: 0 auto 30px auto;
    max-width: 100px;
  }
}
.icon-left-copy-right .icon-left-copy-right-copy {
  flex: 1;
  padding: 0 0 0 30px;
}
.icon-left-copy-right .icon-left-copy-right-copy > :first-child {
  margin-top: 0;
}

/* Gutenburg Block Customisation (bug fixes etc)
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.inner-page-content .blocks-gallery-grid .blocks-gallery-image figure, .inner-page-content .blocks-gallery-grid .blocks-gallery-item figure, .inner-page-content .wp-block-gallery .blocks-gallery-image figure, .inner-page-content .wp-block-gallery .blocks-gallery-item figure {
  overflow: hidden;
}

/* Contact Section
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.contact-split {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contact-split {
    flex-direction: column-reverse;
  }
}
.contact-split h2 {
  color: #36A7D3;
  padding-bottom: 5px;
  border-bottom: 1px solid #ECEBEA;
}
.contact-split .enquiry-form-container {
  width: 70%;
  padding-right: 60px;
}
@media (max-width: 767px) {
  .contact-split .enquiry-form-container {
    width: 100%;
    padding-right: 0;
  }
}
.contact-split .enquiry-form-container .fineprint {
  margin-top: 60px;
}
.contact-split .contact-sidebar {
  width: 30%;
}
@media (max-width: 767px) {
  .contact-split .contact-sidebar {
    width: 100%;
  }
}

/* Ninja Form
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.nf-form-cont {
  margin: 30px 0;
}
.nf-form-cont .nf-before-form-content {
  padding: 5px;
}
.nf-form-cont .nf-before-form-content .nf-form-fields-required {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  color: #999999;
}

.inner-page-container .nf-form-content label {
  font-size: 14px;
  font-size: 0.875rem;
}

.tender-employment-listing .nf-form-cont {
  padding: 15px;
  background-color: #FFF;
  border-radius: 10px;
  border: 1px solid #ECEBEA;
}
.tender-employment-listing .nf-response-msg p {
  padding: 15px;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 0;
  color: #36A7D3;
}

.nf-form-title h3 {
  margin-top: 15px;
  border-bottom: 1px solid #ECEBEA;
  padding-bottom: 10px;
}

.nf-form-content .nf-fu-fileinput-button {
  border-radius: 3px;
  background-color: #36A7D3;
  margin: 15px 0 !important;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-appearance: none;
}
.nf-form-content .nf-fu-fileinput-button:hover {
  background-color: #DE712A;
}
.nf-form-content .nf-fu-fileinput-button span {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
.nf-form-content .nf-fu-progress-bar {
  background-color: #36A7D3;
}
.nf-form-content .submit-wrap button, .nf-form-content .submit-wrap input[type=button], .nf-form-content .submit-wrap input[type=submit] {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1;
  padding: 15px 30px;
  text-transform: uppercase;
  color: #fff;
  background-color: #DE712A;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.5s;
  border: 2px solid #DE712A;
  -webkit-appearance: none;
}
.nf-form-content .submit-wrap button:hover, .nf-form-content .submit-wrap input[type=button]:hover, .nf-form-content .submit-wrap input[type=submit]:hover {
  background-color: #36A7D3;
  color: #fff;
  border-color: #36A7D3;
}
@media (max-width: 767px) {
  .nf-form-content .submit-wrap button, .nf-form-content .submit-wrap input[type=button], .nf-form-content .submit-wrap input[type=submit] {
    padding: 10px 20px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.nf-form-content .list-select-wrap .nf-field-element > div:focus, .nf-form-content input:not([type=button]):focus, .nf-form-content textarea:focus {
  border-color: #36A7D3 !important;
}

.enquiry-form-container .nf-form-content .list-select-wrap .nf-field-element > div:focus, .enquiry-form-container .nf-form-content input:not([type=button]):focus, .enquiry-form-container .nf-form-content textarea:focus {
  border-color: #36A7D3;
}
@media (max-width: 767px) {
  .enquiry-form-container .nf-field-container {
    margin-bottom: 10px;
  }
}
.enquiry-form-container .nf-field-label label .ninja-forms-req-symbol {
  font-size: 15px;
  font-size: 0.9375rem;
  position: absolute;
  right: 5px;
  top: -15px;
}
@media (max-width: 767px) {
  .enquiry-form-container .nf-field-label label .ninja-forms-req-symbol {
    top: -5px;
  }
}

/* Social Media Links
------------------------------------------------------------------------------------------------------------------------------------------------------*/
ul.social-media-links {
  text-align: center;
  padding-left: 0;
  margin: 0;
}
ul.social-media-links li {
  list-style-type: none;
  display: inline-block;
  margin: 0 10px;
}
ul.social-media-links li a {
  display: block;
  width: 20px;
  height: 20px;
}
ul.social-media-links li a:before {
  display: none;
}
ul.social-media-links li a:hover {
  transition: all 0.5s;
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  ul.social-media-links li a:hover {
    transition: none;
    transform: none;
  }
}
ul.social-media-links li a img {
  margin: 0;
  width: 100%;
  height: auto;
}
ul.social-media-links li:first-of-type {
  margin-left: 0;
}

/* Footer
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.footer {
  padding: 90px 0 0 0;
  color: #fff;
  background-color: #DE712A;
  margin-top: -30px;
}
.footer .footer-inner {
  width: 94%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 0 30px 0;
}
.footer .footer-inner .footer-top {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .footer .footer-inner .footer-top {
    display: block;
  }
}
.footer .footer-inner .footer-top .footer-logo {
  display: block;
  text-align: center;
  width: 170px;
  margin-bottom: 30px;
}
.footer .footer-inner .footer-top .footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer .footer-inner .footer-top .footer-logo:before {
  display: none;
}
@media (max-width: 767px) {
  .footer .footer-inner .footer-top .footer-logo {
    margin: 0 auto 30px auto;
  }
}
.footer .footer-inner .footer-top ul.social-media-links {
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .footer .footer-inner .footer-top ul.social-media-links {
    margin: 0 0 30px auto;
  }
}
.footer .footer-inner .footer-bottom {
  display: flex;
  margin-top: 0;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer .footer-inner .footer-bottom {
    display: block;
    margin-top: 0;
  }
}
.footer .footer-inner .footer-bottom .footer-menu {
  flex-grow: 1;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .footer .footer-inner .footer-bottom .footer-menu {
    margin-right: 0;
  }
}
.footer .footer-inner .footer-bottom .footer-menu ul {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0;
}
@media (max-width: 767px) {
  .footer .footer-inner .footer-bottom .footer-menu ul {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 60px auto;
    display: block;
  }
}
.footer .footer-inner .footer-bottom .footer-menu ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block;
  margin: 10px 0;
  width: 25%;
}
@media (max-width: 767px) {
  .footer .footer-inner .footer-bottom .footer-menu ul li {
    text-align: center;
    width: 100%;
  }
}
.footer .footer-inner .footer-bottom .footer-menu ul li a {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  text-decoration: none;
  transition: all 0.5s;
}
.footer .footer-inner .footer-bottom .footer-menu ul li a:before {
  background-color: #DE712A;
  content: "";
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
  width: 0;
}
@media (max-width: 1024px) {
  .footer .footer-inner .footer-bottom .footer-menu ul li a:before {
    display: none;
  }
}
.footer .footer-inner .footer-bottom .footer-menu ul li a:hover {
  color: #2F2C29;
}
.footer .footer-inner .footer-bottom .footer-menu ul li a:hover:before {
  width: 100%;
}
.footer .footer-inner .footer-bottom .footer-sign-up {
  text-align: right;
  margin-bottom: 10px;
}
.footer .footer-inner .footer-bottom .footer-sign-up h4 {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .footer .footer-inner .footer-bottom .footer-sign-up {
    text-align: center;
  }
}
.footer .footer-end {
  background-color: #889542;
  padding: 10px 0;
}
@media (max-width: 1024px) {
  .footer .footer-end {
    background-image: none;
  }
}
.footer .footer-end .footer-legal-menu {
  width: 94%;
  max-width: 1150px;
  margin: 0 auto;
  text-align: right;
}
.footer .footer-end .footer-legal-menu ul {
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .footer .footer-end .footer-legal-menu ul {
    text-align: center;
  }
}
.footer .footer-end .footer-legal-menu ul li {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  color: #DBDFC7;
  margin-right: 10px;
  padding: 5px 10px 5px 0;
  border-right: 1px solid rgba(138, 139, 138, 0.3);
}
@media (max-width: 1024px) {
  .footer .footer-end .footer-legal-menu ul li {
    padding: 5px;
  }
}
.footer .footer-end .footer-legal-menu ul li:last-of-type {
  border-right: none;
  padding-right: 0;
}
.footer .footer-end .footer-legal-menu ul li a {
  color: #DBDFC7;
}
.footer .footer-end .footer-legal-menu ul li a:before {
  display: none;
  font-size: 12px;
  font-size: 0.75rem;
}
.footer .footer-end .footer-legal-menu ul li a:hover {
  color: #fff;
}

#mc_embed_signup {
  clear: left;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: museo-sans, sans-serif;
  color: #fff;
  width: 100%;
}
#mc_embed_signup form {
  padding: 10px 0 !important;
}
#mc_embed_signup #mc_embed_signup_scroll {
  display: flex;
  align-items: center;
}
#mc_embed_signup input.email {
  border-radius: 3px 0 0 3px !important;
  background-color: #DE712A;
  border: 2px solid #fff;
  margin: 0 !important;
  font-size: 12px !important;
  width: auto !important;
  flex-grow: 1;
  color: #fff !important;
}
@media (max-width: 767px) {
  #mc_embed_signup input.email {
    flex-grow: 1;
  }
}
#mc_embed_signup input.email:focus {
  outline: none;
  border: 2px solid #fff !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
}
#mc_embed_signup ::-moz-placeholder {
  color: #fff !important;
}
#mc_embed_signup :-ms-input-placeholder {
  color: #fff !important;
}
#mc_embed_signup ::placeholder {
  color: #fff !important;
}
#mc_embed_signup input.button {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
  background: #fff !important;
  border-radius: 0 3px 3px 0 !important;
  color: #DE712A !important;
  font-size: 12px !important;
}
#mc_embed_signup input.button:hover {
  background-color: #2F2C29 !important;
}
#mc_embed_signup .clear {
  display: block !important;
  flex-grow: 1;
}

/* CUSTOM MODAL BOX */
/* The Modal (background) */
.modal:before {
  display: block;
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #2F2C29;
  /*background-image: url('../images/dummies/modal-pattern.png');*/
  background-size: cover;
  opacity: 0.85;
  z-index: -1;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1010;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  /* end .modal-content */
}
.modal .modal-content {
  background-color: #fff;
  margin: 10% auto;
  /* 10% from the top and centered */
  padding: 40px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  /* end .steering-committee-profile */
  /* end .partner-profile */
}
@media (max-width: 1024px) {
  .modal .modal-content {
    margin: 10% auto;
  }
}
@media (max-width: 767px) {
  .modal .modal-content {
    padding: 40px 15px;
    margin: 5% auto;
  }
}
.modal .modal-content .modal-profile {
  display: flex;
  flex-wrap: wrap;
}
.modal .modal-content .modal-profile .modal-profile-image {
  width: 20%;
}
@media (max-width: 767px) {
  .modal .modal-content .modal-profile .modal-profile-image {
    width: 30%;
  }
}
.modal .modal-content .modal-profile .modal-profile-image img {
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.modal .modal-content .modal-profile .modal-profile-bio {
  width: 80%;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .modal .modal-content .modal-profile .modal-profile-bio {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
}
.modal .modal-content .modal-profile .modal-profile-bio h4 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 20px;
  font-size: 1.25rem;
}
.modal .modal-content .modal-profile .modal-profile-bio p.modal-profile-position {
  font-weight: 700;
  border-bottom: 1px solid #ECEBEA;
  padding-bottom: 5px;
}
.modal .modal-content .modal-profile .modal-profile-bio p, .modal .modal-content .modal-profile .modal-profile-bio ol, .modal .modal-content .modal-profile .modal-profile-bio ul {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .modal .modal-content .partner-profile .modal-profile-image {
    width: 40%;
  }
}
.modal .modal-content .partner-profile .modal-profile-image img {
  border-radius: 0;
  max-width: 160px;
}
@media (max-width: 767px) {
  .modal .modal-content .partner-profile .modal-profile-bio {
    margin-top: 0px;
  }
}
.modal .modal-content.modal-marker-content {
  max-width: 640px;
}
.modal .modal-content.modal-marker-content .modal-image {
  margin: 0 0 30px 0;
}
.modal .modal-content.modal-marker-content .modal-image img {
  display: block;
  width: 100%;
  height: auto;
}
.modal .modal-content.modal-marker-content .modal-image img[src=""] {
  display: none;
}
.modal .modal-content.modal-marker-content .modal-image .photo-credit {
  margin: 5px 0;
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  text-align: right;
}
.modal .modal-content.modal-marker-content .modal-image .photo-credit i {
  transform: scale(1.4);
  margin-right: 5px;
}
.modal .modal-content.modal-marker-content .modal-marker-description h3 {
  margin-top: 10px;
}
.modal .modal-content .end-modal-close {
  display: block;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 30px;
  text-decoration: underline;
  cursor: pointer;
}

/* end .modal */
/* News
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.news-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.news-items .news-item {
  width: 40%;
  padding: 0;
  max-width: 494px;
  text-align: left;
  background-color: #ECEBEA;
  border: 30px solid #F2F2F2;
}
.news-items .news-item:before {
  display: none;
}
@media (max-width: 1024px) {
  .news-items .news-item {
    text-decoration: none;
    border: 10px solid #F2F2F2;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .news-items .news-item {
    width: 100%;
  }
}
.news-items .news-item:hover .news-item-inner figure img {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .news-items .news-item:hover .news-item-inner figure img {
    transform: none;
  }
}
.news-items .news-item .news-item-inner {
  transition: all 0.5s;
}
@media (max-width: 1024px) {
  .news-items .news-item .news-item-inner {
    transition: none;
  }
}
.news-items .news-item .news-item-inner figure {
  overflow: hidden;
}
.news-items .news-item .news-item-inner figure img {
  transition: all 0.5s;
  display: block;
  width: 100%;
  height: auto;
}
.news-items .news-item .news-item-inner .news-item-content {
  padding: 30px;
  background-color: #ECEBEA;
}
.news-items .news-item .news-item-inner .news-item-content h3 {
  color: #36A7D3;
  margin-top: 0;
}
.news-items .news-item .news-item-inner .news-item-content p {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}
.news-items .news-item .news-item-inner .news-item-content span.news-item-date {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #999999;
}

/* END .news-items */
.news-pagination {
  margin-top: 60px;
}
.news-pagination .button {
  margin: 0 30px;
}
@media (max-width: 767px) {
  .news-pagination .button {
    margin-bottom: 30px;
  }
}

/* Single News Article 
------------------------------------------------------------------------------------------------------------------------------------------------------*/
span.news-article-date {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #999999;
  margin: 15px auto;
}

.social-media-embed {
  margin: 60px auto;
}
.social-media-embed .instagram-media, .social-media-embed .instagram-media[style] {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Blog
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.blog-article {
  padding-bottom: 45px;
  border-bottom: 1px solid #ECEBEA;
  margin-bottom: 45px;
}
.blog-article .hero-image {
  margin: 30px auto;
}
.blog-title {
  margin: 0 0 10px 0;
}

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

/* Map
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.project-map {
  background-color: #2F2C29;
  width: 100%;
  padding: 90px 0;
  background-image: url(../images/map-bkgnd.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  text-align: center;
}
@media (max-width: 767px) {
  .project-map {
    padding: 60px 0;
  }
}
.project-map .map-intro {
  max-width: 460px;
  margin: 0 auto;
  color: #fff;
}
@media (max-width: 767px) {
  .project-map .map-intro {
    padding: 0 30px;
  }
}
.project-map .map-intro .section-title {
  color: #DE712A;
  font-size: 33px;
  font-size: 2.0625rem;
  font-weight: 900;
  margin: 0 0 60px 0;
}
@media (max-width: 767px) {
  .project-map .map-intro .section-title {
    margin: 0 0 30px 0;
  }
}
.project-map .map-intro .section-title:after {
  background-color: #fff;
}
.project-map .map-intro p {
  color: #fff;
}
.project-map .map {
  width: 600px;
  height: 562px;
  margin: 90px auto;
  background-image: url(../images/Australia-with-project-areas.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  /* 	Map Project Area Positions 

  	Take into account the height and width of the marker itself

  	Take half the markers width from the exact x co-ord (centers the marker on the specific point)
  	Take the full height of the marker from the y co-ord (puts the tip of the marker on the specific point)

  ---------------------- */
  /* END Map Project Area Positions ---------------------- */
}
@media (max-width: 767px) {
  .project-map .map {
    width: 300px;
    height: 281px;
    margin: 60px auto;
  }
}
.project-map .map .map-project-area {
  display: block;
  position: absolute;
  text-align: center;
  width: 20px;
  height: 24px;
  overflow: visible;
  margin: 0;
  padding: 0;
}
.project-map .map .map-project-area .map-marker {
  width: 20px;
  height: 24px;
  display: block;
  background-image: url(../images/Map-Marker.svg);
  background-repeat: no-repeat;
  background-size: 20px 24px;
  background-position: center center;
  margin: 0;
  padding: 0;
  transition: all 0.5s;
}
.project-map .map .map-project-area .map-marker:hover {
  transform: scale(1.25);
}
@media (max-width: 767px) {
  .project-map .map .map-project-area .map-marker:hover {
    transform: none;
  }
}
.project-map .map .map-project-area .map-project-title-container {
  position: relative;
  width: 1px;
  height: 1px;
  overflow: visible;
}
.project-map .map .map-project-area .map-project-title {
  position: absolute;
  top: 4px;
  left: -40px;
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #2F2C29;
  width: 100px;
}
@media (max-width: 767px) {
  .project-map .map .map-project-area .map-project-title {
    display: none;
  }
}
.project-map .map .mpa-1 {
  left: 221px;
  top: 260px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-1 {
    left: 104px;
    top: 125px;
  }
}
.project-map .map .mpa-2 {
  left: 297px;
  top: 224px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-2 {
    left: 143px;
    top: 100px;
  }
}
.project-map .map .mpa-3 {
  left: 194px;
  top: 195px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-3 {
    left: 91px;
    top: 92px;
  }
}
.project-map .map .mpa-4 {
  left: 129px;
  top: 183px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-4 {
    left: 59px;
    top: 85px;
  }
}
.project-map .map .mpa-5 {
  left: 161px;
  top: 134px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-5 {
    left: 75px;
    top: 60px;
  }
}
.project-map .map .mpa-6 {
  left: 262px;
  top: 115px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-6 {
    left: 125px;
    top: 55px;
  }
}
.project-map .map .mpa-7 {
  left: 342px;
  top: 195px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-7 {
    left: 166px;
    top: 85px;
  }
}
.project-map .map .mpa-8 {
  left: 389px;
  top: 228px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-8 {
    left: 189px;
    top: 101px;
  }
}
.project-map .map .mpa-9 {
  left: 341px;
  top: 267px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-9 {
    left: 165px;
    top: 121px;
  }
}
.project-map .map .mpa-10 {
  left: 393px;
  top: 280px;
}
@media (max-width: 767px) {
  .project-map .map .mpa-10 {
    left: 191px;
    top: 140px;
  }
}
.project-map .map .test-dot {
  position: absolute;
  width: 1px;
  height: 1px;
  background: red;
  left: 341px;
  top: 263px;
  display: block;
}
.project-map .map-legend {
  text-align: left;
  position: absolute;
  bottom: 80px;
  left: 60px;
}
@media (max-width: 767px) {
  .project-map .map-legend {
    bottom: 30px;
    left: 30px;
  }
}
.project-map .map-legend ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.project-map .map-legend ul li {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .project-map .map-legend ul li {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.project-map .map-legend ul li span.legend-col-block {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .project-map .map-legend ul li span.legend-col-block {
    width: 10px;
    height: 10px;
  }
}
.project-map .map-legend ul li span.legend-title {
  color: #fff;
  display: block;
  margin-left: 5px;
  opacity: 0.5;
}
.project-map .map-legend ul li span.proj-area-col-block {
  background-color: #EDC7AE;
}

.single-desert .project-map {
  margin-top: -60px;
  padding: 150px 0;
}
@media (max-width: 767px) {
  .single-desert .project-map {
    margin-top: -30px;
    padding: 90px 0;
  }
}
.single-desert .inner-page-container {
  padding-bottom: 100px;
}
.single-desert .inner-page-container:after {
  display: block;
  content: "";
  width: 130px;
  height: 143px;
  background-image: url(../images/explore-other-deserts.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  position: absolute;
  right: 60px;
  bottom: -60px;
}
@media (max-width: 767px) {
  .single-desert .inner-page-container:after {
    right: 10px;
    transform: scale(0.8);
  }
}

/* Desert Summaries (within tooltips) */
/* Hide Tooltip templates for HTML content */
.tooltip_templates {
  display: none;
}

.privacy-message {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1010;
  /* Sit on top */
  display: block;
  background: #fff;
  width: 60%;
  max-width: 200px;
  border-radius: 3px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  line-height: 1;
}
.privacy-message .privacy-message-inner {
  padding: 10px 30px 10px 10px;
  position: relative;
}
.privacy-message .privacy-message-inner span {
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .privacy-message {
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
}

/* Tenders and Employment
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.tenders-and-employment-listings {
  display: flex;
  text-align: left;
  margin-top: 45px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .tenders-and-employment-listings {
    margin-top: 15px;
  }
}
.tenders-and-employment-listings .positions {
  flex: 0 0 50%;
  padding: 0 45px;
}
@media (max-width: 1024px) {
  .tenders-and-employment-listings .positions {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .tenders-and-employment-listings .positions {
    padding: 0 15px;
    flex: 0 0 100%;
  }
}
.tenders-and-employment-listings .positions h2 {
  color: #36A7D3;
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .tenders-and-employment-listings .positions h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.tenders-and-employment-listings .positions h2:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #999999;
  opacity: 0.5;
  margin: 10px auto;
}
.tenders-and-employment-listings .positions .no-results {
  text-align: center;
  margin: 45px 0;
}
.tenders-and-employment-listings .positions .no-results p {
  font-style: italic;
  color: #999999;
}
.tenders-and-employment-listings .positions article {
  margin: 30px 0;
}
.tenders-and-employment-listings .positions article a {
  display: block;
  background: #fff;
  padding: 30px;
  text-decoration: none;
  transition: all 0.5s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
@media (max-width: 1024px) {
  .tenders-and-employment-listings .positions article a {
    padding: 15px;
  }
}
.tenders-and-employment-listings .positions article a:before {
  display: none;
}
.tenders-and-employment-listings .positions article a:hover {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .tenders-and-employment-listings .positions article a:hover {
    transform: none;
  }
}
.tenders-and-employment-listings .positions article a span.position-cat {
  color: #ccc;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 1px;
}
.tenders-and-employment-listings .positions article a h3 {
  margin: 10px 0 10px 0;
  font-size: 16px;
  font-size: 1rem;
}
.tenders-and-employment-listings .positions article a p {
  font-size: 14px;
  font-size: 0.875rem;
}
.tenders-and-employment-listings .positions article a span.view {
  color: #36A7D3;
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  text-decoration: underline;
}

/* Featurette
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page-template-page-featurette .top-bar, .page-template-page-featurette .footer {
  display: none;
}

.featurette-top-bar {
  background-color: #000;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 30px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.featurette-top-bar .ten-des-logo {
  display: block;
  width: 60px;
  margin: 0 auto;
}
.featurette-top-bar .ten-des-logo:before {
  display: none;
}
.featurette-top-bar .ten-des-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.featurette-top-bar a {
  text-decoration: none;
}
.featurette-top-bar .home-icon {
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto 0;
  display: flex;
  align-items: center;
}
.featurette-top-bar .home-icon i {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  transition: all 0.5s;
}
.featurette-top-bar .home-icon:hover i {
  color: #DE712A;
}
.featurette-top-bar .home-icon:before {
  display: none;
}

.fp-section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.fp-section .fp-section-inner {
  width: 94%;
  margin: 0 auto;
  max-width: 600px;
}
.fp-section .fp-section-inner .fp-article-category {
  display: block;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
  font-weight: bold;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.fp-section .fp-section-inner .fp-article-author {
  display: block;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
  margin: 30px auto;
  font-size: 14px;
  font-size: 0.875rem;
}
.fp-section .fp-section-inner h1 {
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
  font-size: 40px;
  font-size: 2.5rem;
  margin: 15px 0 30px 0;
}
.fp-section .fp-section-inner h1:after {
  content: "";
  display: block;
  width: 45px;
  background: #fff;
  height: 1px;
  margin: 30px auto;
}
.fp-section .fp-section-inner .fp-intro-paragraph {
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
  font-size: 20px;
  font-size: 1.25rem;
  margin: 30px 0;
}
.fp-section .fp-semi-trans-box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  text-align: left;
  margin: 0 auto;
  width: 94%;
  max-width: 460px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.fp-section .fp-semi-trans-box h3 {
  font-size: 22px;
  font-size: 1.375rem;
}
.fp-section .fp-semi-trans-box p:last-of-type {
  margin-bottom: 0;
}
.fp-section .fp-semi-trans-box > :first-child {
  margin-top: 0 !important;
}
.fp-section .fp-video-overlay-quote {
  z-index: 10;
  position: relative;
  width: 94%;
  max-width: 460px;
  margin: 0 auto;
}
.fp-section .fp-video-overlay-quote p {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.3;
}
.fp-section .fp-video-overlay-quote .fp-quote-author {
  display: block;
  color: #fff;
  text-align: right;
  margin-right: 45px;
}
.fp-section .fp-section-center-copy {
  text-align: center;
}
.fp-section .fp-section-video {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-color: black;
  background-position: center center;
  background-size: contain;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
}
.fp-section .video-controls {
  position: absolute;
  top: 100px;
  right: 30px;
  z-index: 5;
}
.fp-section .video-controls button {
  display: block;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 3px;
  border: none;
  outline: none;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  color: #2F2C29;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.fp-section .video-controls button.button-hidden {
  opacity: 0;
  cursor: auto !important;
}
.fp-section .video-controls button.video-mute-button i.la-volume-up {
  display: inline-block;
}
.fp-section .video-controls button.video-mute-button i.la-volume-mute {
  display: none;
}
.fp-section .video-controls button.video-muted i.la-volume-up {
  display: none;
}
.fp-section .video-controls button.video-muted i.la-volume-mute {
  display: inline-block;
}
.fp-section .video-controls button.play-button i.la-pause-circle {
  display: none;
}
.fp-section .video-controls button.play-button i.la-play-circle {
  display: inline-block;
}
.fp-section .video-controls button.video-playing i.la-pause-circle {
  display: inline-block;
}
.fp-section .video-controls button.video-playing i.la-play-circle {
  display: none;
}
.fp-section .video-controls button i {
  font-size: 26px;
  font-size: 1.625rem;
}
.fp-section .video-controls button:hover {
  cursor: pointer;
  background-color: #fff;
}
.fp-section .video-controls button:focus {
  outline: none;
  border: none;
  background-color: #fff;
}

.featurette-button {
  background-color: rgba(255, 255, 255, 0.85);
  color: #2F2C29;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  border: none;
}
.featurette-button:hover {
  background-color: #fff;
  color: #2F2C29;
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .featurette-button:hover {
    transform: none;
  }
}
.featurette-button:focus {
  outline: none;
  border: none;
  background-color: #fff;
}

.featurette-controls {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3000;
}
.featurette-controls button {
  display: block;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 3px;
  border: none;
  outline: none;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  color: #2F2C29;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.featurette-controls button.button-hidden {
  opacity: 0;
  cursor: auto !important;
}
.featurette-controls button i {
  font-size: 20px;
  font-size: 1.25rem;
}
.featurette-controls button:hover {
  cursor: pointer;
  background-color: #fff;
}
.featurette-controls button:focus {
  outline: none;
  border: none;
  background-color: #fff;
}

.fp-fade-up {
  opacity: 0;
  transition: all 3s;
  transition-delay: 1s;
  transform: translateY(100px);
}

.active .fp-fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* Project Dashboards
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page-template-page-project-dashboard {
  padding-top: 80px;
}
.page-template-page-project-dashboard .top-bar {
  display: none;
}

.dashboard-map-intro {
  display: flex;
  margin: 60px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .dashboard-map-intro {
    margin: 30px 0;
    flex-wrap: wrap;
  }
}
.dashboard-map-intro .dashboard-map-overview {
  flex: 0 0 60%;
}
@media (max-width: 767px) {
  .dashboard-map-intro .dashboard-map-overview {
    flex: 0 0 100%;
  }
}
.dashboard-map-intro .dashboard-map-overview .dashboard-overview-title {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #2F2C29;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.dashboard-map-intro .dashboard-map-overview h1 {
  margin: 10px 0 30px 0;
  font-size: 36px;
  font-size: 2.25rem;
}
.dashboard-map-intro .dashboard-map-overview h1:after {
  display: block;
  content: "";
  margin: 10px 0;
  width: 60px;
  height: 4px;
  background-color: #DE712A;
}
.dashboard-map-intro .dashboard-map-sidebar {
  flex: 0 0 35%;
}
@media (max-width: 767px) {
  .dashboard-map-intro .dashboard-map-sidebar {
    flex: 0 0 100%;
  }
}
.dashboard-map-intro .dashboard-map-sidebar .dashboard-project-icons-container {
  display: flex;
  justify-content: center;
}
.dashboard-map-intro .dashboard-map-sidebar .dashboard-project-icons-container img {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .dashboard-map-intro .dashboard-map-sidebar .dashboard-project-icons-container img {
    width: 60px;
    height: 60px;
  }
}

/* Dashboard features
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.flex-feature-points {
  display: flex;
  justify-content: center;
  padding: 45px 0 90px 0;
  /* Pie Chart */
}
@media (max-width: 767px) {
  .flex-feature-points {
    display: block;
  }
}
.flex-feature-points .feature-point-pie-chart {
  max-width: 360px;
  flex: 0 0 50%;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .flex-feature-points .feature-point-pie-chart {
    margin: 60px auto;
  }
}

.dashboard-feature-points {
  margin: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  /* Copy */
  /* Info figure */
  /* Pie Chart */
}
@media (max-width: 1024px) {
  .dashboard-feature-points {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .dashboard-feature-points {
    margin: 30px 0;
    display: block;
  }
}
.dashboard-feature-points.dashboard-feature-points-two-col {
  grid-template-columns: repeat(2, 1fr);
}
.dashboard-feature-points .dashboard-feature-point > :first-child {
  margin-top: 0;
}
.dashboard-feature-points .dashboard-feature-point > :last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .dashboard-feature-points .dashboard-feature-point {
    margin-bottom: 45px;
  }
}
.dashboard-feature-points .dfp-align-self {
  align-self: center;
}
.dashboard-feature-points .dfp-grid-col-1-span-2 {
  grid-column: 1/span 2;
}
.dashboard-feature-points .dfp-grid-col-2-span-2 {
  grid-column: 2/span 2;
}
@media (max-width: 1024px) {
  .dashboard-feature-points .dfp-grid-col-2-span-2 {
    grid-column: 2/span 1;
  }
}
.dashboard-feature-points .dfp-grid-col-1-span-3 {
  grid-column: 1/span 3;
}
@media (max-width: 1024px) {
  .dashboard-feature-points .dfp-grid-col-1-span-3 {
    grid-column: 1/span 2;
  }
}
.dashboard-feature-points .feature-point-copy table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
}
.dashboard-feature-points .feature-point-copy table tr {
  font-size: 14px;
  font-size: 0.875rem;
}
.dashboard-feature-points .feature-point-copy table tr:nth-of-type(even) {
  background: #F7F7F7;
}
.dashboard-feature-points .feature-point-copy table tr td, .dashboard-feature-points .feature-point-copy table tr th {
  text-align: left;
  padding: 10px;
  border: 1px solid #ccc;
}
.dashboard-feature-points .feature-point-copy table tr td:last-child, .dashboard-feature-points .feature-point-copy table tr th:last-child {
  width: 10px;
  white-space: nowrap;
}
.dashboard-feature-points .feature-point-copy table tr td a, .dashboard-feature-points .feature-point-copy table tr th a {
  text-decoration: underline;
}
.dashboard-feature-points .feature-point-copy table tr th {
  background-color: #DE712A;
  color: #fff;
  font-weight: bold;
  border-color: #DE712A;
}
.dashboard-feature-points .feature-point-copy table tr th .fy-year-display {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  margin-left: 10px;
}
.dashboard-feature-points .feature-point-copy table tr.row-hidden {
  display: none;
}
.dashboard-feature-points .feature-point-text-center {
  text-align: center;
}
.dashboard-feature-points .feature-point-dms-figure {
  text-align: center;
}
.dashboard-feature-points .feature-point-dms-figure .dms-figure {
  display: block;
  color: #DE712A;
  font-weight: 700;
  font-size: 72px;
  font-size: 4.5rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .dashboard-feature-points .feature-point-dms-figure .dms-figure {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.dashboard-feature-points .feature-point-dms-figure .dms-figure-caption {
  display: block;
}
.dashboard-feature-points .feature-point-dms-figure .dms-figure-caption .fy-year-display {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 10px;
}
.dashboard-feature-points .feature-point-pie-chart {
  max-width: 300px;
}
@media (max-width: 767px) {
  .dashboard-feature-points .feature-point-pie-chart {
    margin: 0 auto;
  }
}

/* Dashboard map
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.dashboard-map-container a:before {
  display: none;
}
.dashboard-map-container .dashboard-map-controls {
  width: 100%;
  height: 60px;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #DE712A;
  color: #fff;
}
@media (max-width: 767px) {
  .dashboard-map-container .dashboard-map-controls {
    display: block;
    height: auto;
    padding: 0;
  }
}
.dashboard-map-container .dashboard-map-controls h3 {
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .dashboard-map-container .dashboard-map-controls h3 {
    padding: 10px;
  }
}
.dashboard-map-container .dashboard-map-controls .map-filters {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .dashboard-map-container .dashboard-map-controls .map-filters {
    background-color: #999999;
    padding: 10px;
  }
}
.dashboard-map-container .dashboard-map-controls .map-filters h3 {
  margin: 0;
  color: #fff;
}
@media (max-width: 767px) {
  .dashboard-map-container .dashboard-map-controls .map-filters h3 {
    padding: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.dashboard-map-container .dashboard-map-controls .map-filters select {
  padding: 5px 10px;
  margin: 0 15px;
}
@media (max-width: 767px) {
  .dashboard-map-container .dashboard-map-controls .map-filters select {
    margin: 0 5px;
  }
}
.dashboard-map-container .project-map {
  height: 50vh;
  width: 100%;
}
@media (max-width: 767px) {
  .dashboard-map-container .project-map {
    height: 60vh;
  }
}
.dashboard-map-container .marker-type-a {
  background-image: url("assets/mapbox-icon.png");
  background-size: cover;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}
.dashboard-map-container .marker-type-b {
  background-image: url("assets/marker-two.svg");
  background-size: cover;
  width: 50px;
  height: 50px;
  border-radius: 0;
  cursor: pointer;
}
.dashboard-map-container .marker-type-dot {
  background-image: url("../images/map-point-marker.svg");
  background-size: cover;
  width: 16px;
  height: 16px;
  border-radius: 0;
  cursor: pointer;
}
.dashboard-map-container .map-marker-simple {
  background-image: url("../images/map-markers/map-marker-simple.svg");
  background-size: contain;
  width: 22px;
  height: 27px;
  border-radius: 0;
  cursor: pointer;
}
.dashboard-map-container .marker-type-fire {
  background-image: url("../images/map-markers/map-marker-fire.svg");
}
.dashboard-map-container .marker-type-icek {
  background-image: url("../images/map-markers/map-marker-icek.svg");
}
.dashboard-map-container .marker-type-camel {
  background-image: url("../images/map-markers/map-marker-camel.svg");
}
.dashboard-map-container .marker-hidden {
  display: none;
}
.dashboard-map-container .controls {
  margin: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-map-container .controls a {
  color: #000;
  padding: 20px;
  border: 1px solid #000;
  text-decoration: none;
  font-size: 20px;
  margin: 0 10px;
  font-size: 12px;
}

/* Map pop-ups
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.mapboxgl-popup-content {
  padding: 0 15px;
  text-align: left;
}
.mapboxgl-popup-content h3 {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 20px 0 10px 0;
}
.mapboxgl-popup-content p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .mapboxgl-popup-content p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.mapboxgl-popup-content .map-feature-thumb {
  display: block;
  margin: 5px auto;
  width: 100%;
  height: auto;
}
.mapboxgl-popup-content span.photo-credit {
  font-size: 10px;
  font-size: 0.625rem;
  display: block;
  margin-bottom: 10px;
}
.mapboxgl-popup-content span.photo-credit i {
  font-size: 12px;
  font-size: 0.75rem;
}
.mapboxgl-popup-content .marker-modal-trigger {
  margin: 0 0 10px 0;
  display: inline-block;
  color: #fff;
  background-color: #DE712A;
  text-decoration: none;
  padding: 5px 7px;
  border-radius: 3px;
  font-weight: bold;
}
.mapboxgl-popup-content .map-feature-thumb[src=""] {
  display: none;
}

/* Dashboard Gallery
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.dashboard-gallery-container .dashboard-gallery {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 60px 0;
}
@media (max-width: 767px) {
  .dashboard-gallery-container .dashboard-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
.dashboard-gallery-container .dashboard-gallery .dashboard-gallery-item {
  display: block;
}
.dashboard-gallery-container .dashboard-gallery .dashboard-gallery-item a {
  display: block;
  margin: 0;
  padding: 0;
}
.dashboard-gallery-container .dashboard-gallery .dashboard-gallery-item a img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 !important;
  padding: 0;
}

.fancybox-caption i {
  color: inherit;
}

/* Member Resource Dashboards
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Member Resources Menu
------------------------------------------------------------------------------------------------------------------------------------------------------*/
.member-resources-menu-container {
  padding: 0 0 60px 0;
  text-align: center;
}
.member-resources-menu-container .member-resource-menu-intro {
  width: 90%;
  margin: 30px auto;
  max-width: 460px;
  position: relative;
}
@media (max-width: 767px) {
  .member-resources-menu-container .member-resource-menu-intro {
    margin-top: 0;
  }
}
.member-resources-menu-container .member-resource-menu-intro h1 {
  margin-top: 0;
}
.member-resources-menu-container .member-resource-menu-intro h1:after {
  display: block;
  content: "";
  width: 30px;
  height: 3px;
  background-color: #DE712A;
  margin: 10px auto;
}
.member-resources-menu-container .member-resource-menu-intro p {
  font-size: 14px;
  font-size: 0.875rem;
}
.member-resources-menu-container .member-resource-menu-intro .member-resources-search-form {
  margin: 30px auto 0 auto;
}
.member-resources-menu-container .member-resource-menu-intro .member-resources-search-form .form {
  display: flex;
  max-width: 300px;
  margin: 0 auto;
}
.member-resources-menu-container .member-resource-menu-intro .member-resources-search-form .form input[type=text] {
  border: 1px solid #999999;
  padding: 10px;
  line-height: 1;
  border-radius: 3px 0 0 3px;
  font-size: 14px;
  font-size: 0.875rem;
  flex-grow: 1;
  border-right-color: #DE712A;
  -webkit-appearance: none;
  height: 40px;
}
.member-resources-menu-container .member-resource-menu-intro .member-resources-search-form .form input[type=text]:focus {
  border-color: #DE712A;
  outline: none;
}
.member-resources-menu-container .member-resource-menu-intro .member-resources-search-form .form input[type=submit] {
  border-radius: 0 3px 3px 0;
  outline: none;
  border: 1px solid #DE712A;
  color: #fff;
  background-color: #DE712A;
  background-image: url(../images/search-icon.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  line-height: 1;
  text-indent: 2000px;
  width: 40px;
  height: 40px;
  -webkit-appearance: none;
  margin: 0;
}
.member-resources-menu-container .member-resources-menu {
  width: 90%;
  margin: 0 auto;
  max-width: 1400px;
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 90px;
  padding: 0;
  margin: 90px auto 90px auto;
}
@media (max-width: 1024px) {
  .member-resources-menu-container .member-resources-menu .member-resources-menu-ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .member-resources-menu-container .member-resources-menu .member-resources-menu-ul {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 60px;
  }
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li {
  display: block;
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li a {
  display: block;
  position: relative;
  font-weight: 700;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  color: #DE712A;
  text-decoration: none;
  transition: all 0.5s;
  font-size: 20px;
  font-size: 1.25rem;
  padding-top: 160px;
}
@media (max-width: 767px) {
  .member-resources-menu-container .member-resources-menu .member-resources-menu-ul li a {
    padding-top: 110px;
  }
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li a:before {
  content: "";
  display: block;
  width: 140px;
  height: 140px;
  background-size: contain;
  background-position: center center;
  background-color: transparent;
  margin: 0 auto;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .member-resources-menu-container .member-resources-menu .member-resources-menu-ul li a:before {
    width: 90px;
    height: 90px;
  }
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li a:hover {
  opacity: 0.8;
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li.buffel-grass a:before {
  background-image: url(../images/member-resources/menu-icons/buffel.svg);
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li.carbon a:before {
  background-image: url(../images/member-resources/menu-icons/carbon.svg);
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li.fire-management a:before {
  background-image: url(../images/member-resources/menu-icons/fire-management.svg);
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li.learning a:before {
  background-image: url(../images/member-resources/menu-icons/learning.svg);
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li.tourism a:before {
  background-image: url(../images/member-resources/menu-icons/tourism.svg);
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li.governance a:before {
  background-image: url(../images/member-resources/menu-icons/governance-icon.svg);
}
.member-resources-menu-container .member-resources-menu .member-resources-menu-ul li.sustainability a:before {
  background-image: url(../images/member-resources/menu-icons/sustainability-icon.svg);
}
.member-resources-menu-container.member-resources-menu-container-visible {
  transform: translateY(0);
}

.member-resource-articles {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
}
@media (max-width: 767px) {
  .member-resource-articles {
    grid-template-columns: repeat(1, 1fr);
  }
}
.member-resource-articles .member-resource-article-cover {
  display: block;
  padding: 30px;
  text-decoration: none;
  background-color: #DE712A;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.5s;
}
.member-resource-articles .member-resource-article-cover i {
  color: #fff;
}
.member-resource-articles .member-resource-article-cover:hover {
  background-color: #000;
}
.member-resource-articles .member-resource-article-cover:before {
  display: none;
}

.no-member-resource-articles {
  text-align: center;
  margin: 45px auto;
}

.downloads-section table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
}
.downloads-section table tr {
  font-size: 14px;
  font-size: 0.875rem;
}
.downloads-section table tr:nth-of-type(even) {
  background: #F7F7F7;
}
.downloads-section table tr td, .downloads-section table tr th {
  text-align: left;
  padding: 10px;
  border: 1px solid #ccc;
}
.downloads-section table tr td:last-child, .downloads-section table tr th:last-child {
  width: 10px;
  white-space: nowrap;
}
.downloads-section table tr td a, .downloads-section table tr th a {
  text-decoration: underline;
  color: #DE712A;
}
.downloads-section table tr td a:hover, .downloads-section table tr th a:hover {
  color: #000;
}
.downloads-section table tr td a:before, .downloads-section table tr th a:before {
  display: none;
}
.downloads-section table tr td a i, .downloads-section table tr th a i {
  color: #DE712A;
}
.downloads-section table tr td .file-subtype, .downloads-section table tr th .file-subtype {
  text-transform: uppercase;
}
.downloads-section table tr th {
  background-color: #DE712A;
  color: #fff;
  font-weight: bold;
  border-color: #DE712A;
}
.downloads-section table tr th .fy-year-display {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  margin-left: 10px;
}
.downloads-section table tr.row-hidden {
  display: none;
}

.page-category.members-resources-breadcrumb-menu {
  opacity: 1;
  margin-bottom: 60px;
  color: #999999;
}
@media (max-width: 767px) {
  .page-category.members-resources-breadcrumb-menu {
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=styles.css.map */