/**
 * Skiplinks
 */
.skiplink {
  margin: 0 auto;
  max-width: 1280px;
  background-color: white;
  text-align: left;
}

.screenreader {
  display: block;
  margin: 0;
  padding: 14px;
  left: -9999em;
  position: absolute;
  text-align: center;
}
.screenreader.focusable:active, .screenreader.focusable:focus {
  position: static;
}

.animation-panel {
  display: none;
  width: 50%;
  height: 100%;
}
@media (min-width: 992px) {
  .animation-panel {
    position: absolute;
    display: block;
    right: 0;
  }
  .switch .animation-panel {
    left: 0;
    right: auto;
    top: 0;
  }
}
.animation-panel svg {
  display: inline-block;
}
.animation-panel svg {
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 5s;
  transform-origin: 50% 50%;
  animation-direction: normal;
}
.animation-panel .wave-tech {
  position: absolute;
  bottom: 100px;
  right: 150px;
  width: 370px;
}
.animation-panel .wind-turbine:after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: 0;
  width: 20px;
  height: 60%;
  background-color: white;
}

@keyframes wave-rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  35% {
    transform: rotate(15deg);
  }
  70% {
    transform: rotate(-15deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wave-rotate {
  animation-name: wave-rotate;
}

.turbine-rotate {
  animation-name: rotate;
  animation-timing-function: linear;
  animation-duration: 3;
}

body {
  position: relative;
  background-color: white;
  color: #575756;
  font-family: "Intro", "Arial", sans-serif;
  font-size: 20px;
  line-height: 28px;
}

html,
body {
  height: 100%;
}

a {
  color: #67b71a;
  outline: none;
}
a:hover {
  text-decoration: none;
  color: #243f8d;
}
a:focus {
  outline: none;
}

br {
  font-family: Arial, sans-serif; /* Declare safe font fallback family for <br> tags as IE displays empty boxes otherwise */
}

time {
  margin: 0;
}

figure {
  margin: 0;
}

hr {
  position: relative;
  margin: 3.125em 0;
}

small {
  line-height: 1;
}

strong {
  font-family: "Intro Bold", "Arial", sans-serif;
  font-weight: normal;
}

/**
 * Structure base
 */
header[role=banner],
main[role=main],
footer[role=contentinfo] {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.container {
  position: relative;
  max-width: 980px;
}

ul.row {
  padding: 0;
}

[class*=col-] {
  position: relative;
}

.img-responsive {
  display: block;
  height: auto;
  width: 100%;
}

/**
 * Visibility helpers
 */
.hidden-overflow-x {
  overflow-x: hidden;
}

/**
 * Margin helpers
 */
.mt0 {
  margin-top: 0 !important;
}

.mt1 {
  margin-top: 1em !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb1 {
  margin-bottom: 1em !important;
}

@media (min-width: 768px) {
  .reset-s {
    margin-left: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .reset-s-only {
    margin-left: 0 !important;
  }
}
@media (min-width: 992px) {
  .reset-m {
    margin-left: 0 !important;
  }
}
/**
 * Padding helpers
 */
.pt0 {
  padding-top: 0 !important;
}

.pt1 {
  padding-top: 1em !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb1 {
  padding-bottom: 1em !important;
}

.pad-right {
  padding-right: 2em;
}

/**
 * Text alignment helpers
 */
@media (max-width: 767px) {
  .text-left-xxs {
    text-align: left;
  }
}
/**
 * List helpers
 */
.inline-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.inline-list li {
  vertical-align: top;
}
@media (min-width: 768px) {
  .inline-list li {
    display: inline-block;
  }
}

.icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
.icon.facebook {
  background-color: #3e5f9c;
  background-image: url(libs/images/fallbacks/facebook-icon.png);
  background-image: url(libs/svg/facebook-icon.svg), none;
}
.icon.facebook:hover {
  background-color: rgb(47.495412844, 72.7752293578, 119.504587156);
}
.icon.twitter {
  background-color: #47a9e0;
  background-image: url(libs/images/fallbacks/twitter-icon.png);
  background-image: url(libs/svg/twitter-icon.svg), none;
}
.icon.twitter:hover {
  background-color: rgb(35.1813953488, 146.4, 208.8186046512);
}
.icon.linkedin {
  background-color: #246a9f;
  background-image: url(libs/images/fallbacks/linkedin-icon.png);
  background-image: url(libs/svg/linkedin-icon.svg), none;
}
.icon.linkedin:hover {
  background-color: rgb(26.5846153846, 78.2769230769, 117.4153846154);
}

.scroll-icon {
  display: none;
  margin: 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #67b71a;
  background-image: url(libs/images/fallbacks/scroll-icon.png);
  background-image: url(libs/svg/scroll-icon.svg), none;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  z-index: 19;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: floating;
  transition: bottom 0.5s;
}
header[role=banner] .scroll-icon {
  position: absolute;
  bottom: 100px;
  left: calc(50% - 35px);
}
@media (min-width: 768px) {
  .scroll-icon {
    display: block;
  }
}

/* Scroll icon floating Keyframes */
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(26%);
  }
  100% {
    transform: translateY(0%);
  }
}
/**
 * Font-Face imports
 */
@font-face {
  font-family: "Intro";
  src: url("libs/fonts/intro_regular-webfont.eot");
  src: url("libs/fonts/intro_regular-webfont.eot?#iefix") format("embedded-opentype"), url("libs/fonts/intro_regular-webfont.woff2") format("woff2"), url("libs/fonts/intro_regular-webfont.woff") format("woff"), url("libs/fonts/intro_regular-webfont.ttf") format("truetype"), url("libs/fonts/intro_regular-webfont.svg#intro_regularregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Intro Bold";
  src: url("libs/fonts/intro_bold-webfont.eot");
  src: url("libs/fonts/intro_bold-webfont.eot?#iefix") format("embedded-opentype"), url("libs/fonts/intro_bold-webfont.woff2") format("woff2"), url("libs/fonts/intro_bold-webfont.woff") format("woff"), url("libs/fonts/intro_bold-webfont.ttf") format("truetype"), url("libs/fonts/intro_bold-webfont.svg#intro_boldregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
h1, h2, h3, h4 {
  font-family: "Intro Bold", "Arial", sans-serif;
  font-weight: normal;
  line-height: 1.25;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.556em;
}

h3 {
  font-size: 1.22em;
}

h4 {
  font-size: 1.111em;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.222em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.333em;
  }
}
footer[role=contentinfo] {
  position: relative;
  background-color: white;
  border-top: 1px solid #243f8d;
  width: 100%;
  padding: 20px;
  font-size: 16px;
  color: #999;
  text-transform: uppercase;
  vertical-align: middle;
  text-align: center;
}
footer[role=contentinfo] a {
  color: #67b71a;
  text-decoration: none;
}
@media (min-width: 768px) {
  footer[role=contentinfo] a {
    line-height: 60px;
  }
}
footer[role=contentinfo] a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  footer[role=contentinfo] {
    padding: 0 20px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .map footer[role=contentinfo] {
    position: fixed;
    bottom: 0;
    left: 0;
  }
}

.footer-social {
  vertical-align: top;
}
.footer-social li:not(:first-of-type) {
  display: inline-block;
}
@media (min-width: 768px) {
  .footer-social {
    height: 60px;
  }
  .footer-social li {
    margin-top: 10px;
  }
  .footer-social li:first-of-type {
    margin: 16px 16px 0 0;
  }
}

@media (min-width: 768px) {
  .footer-right {
    float: right;
  }
  .footer-share, .footer-social {
    display: inline-block;
  }
  .footer-share {
    padding: 0 20px;
  }
}
header[role=banner] {
  position: relative;
  padding-top: 125px;
  min-height: 300px;
}
@media (min-width: 768px) {
  header[role=banner] {
    height: 100vh;
    top: 0;
    padding: 0;
  }
}
.map header[role=banner] {
  padding: 0;
  height: 60px !important;
  min-height: 60px !important;
  max-height: 60px !important;
}

.header-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 96px;
  background-image: url(libs/images/fallbacks/logo-container.png);
  background-image: url(libs/svg/logo-container.svg), none;
  background-position: 0 0;
  background-size: 240px 96px;
  z-index: 20;
}
@media (min-width: 768px) {
  .header-logo {
    width: 565px;
    height: 226px;
    background-size: 565px 226px;
  }
}
.header-logo a {
  display: inline-block;
  margin: 10px 0 0 21px;
  width: 109px;
  height: 47px;
  background-image: url(libs/images/fallbacks/hie-anniversary-logo.png);
  background-image: url(libs/svg/hie-anniversary-logo.svg), none;
  background-size: 109px 47px;
}
@media (min-width: 768px) {
  .header-logo a {
    margin: 24px 0 0 65px;
    width: 220px;
    height: 96px;
    background-size: 220px 96px;
  }
}

.header-bg {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 360px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .header-bg {
    height: 100%;
  }
}

.header-intro {
  position: relative;
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
  color: white;
}
@media (min-width: 992px) {
  .header-intro {
    padding-top: 60px;
  }
}
.header-intro .header-intro-content {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .header-intro .header-intro-content {
    padding: 60px;
  }
}
.header-intro .header-intro-content h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 7px #000000;
}
@media (min-width: 768px) {
  .header-intro .header-intro-content h1 {
    font-size: 70px;
    text-shadow: 0 0 12px #666;
  }
}
@media (min-width: 992px) {
  .header-intro .header-intro-content h1 {
    font-size: 105px;
    text-shadow: 0 0 20px #666;
  }
}
@media (min-width: 1200px) {
  .header-intro .header-intro-content h1 {
    font-size: 140px;
  }
}
.header-intro .header-intro-content .button {
  padding: 0.5em 1.5em;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
}

.intro .container {
  max-width: 800px;
}
.intro .header-logo {
  position: fixed;
}
.intro .header-bg {
  height: 100%;
}
.intro .header-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 63, 141, 0.65);
}
@media (min-width: 768px) {
  .intro .header-bg {
    background-attachment: fixed;
  }
}
.intro .header-intro-content h1 {
  font-family: "Intro", "Arial", sans-serif;
  line-height: 1;
}
@media (min-width: 768px) {
  .intro .header-intro-content h1 {
    font-size: 48px;
    text-shadow: 0 0 6px #2f2f2f;
    filter: dropshadow(color=#2f2f2f, offx=1, offy=1);
  }
}
.intro .header-intro-content span {
  display: block;
  font-family: "Intro Bold", "Arial", sans-serif;
}
@media (min-width: 768px) {
  .intro .header-intro-content span {
    font-size: 96px;
  }
}
.intro .menu-button {
  opacity: 0;
}
.open-menu .intro .menu-button {
  opacity: 1;
}
.intro footer[role=contentinfo] {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .intro footer[role=contentinfo] {
    position: fixed;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 768px) {
  .welcome {
    overflow: hidden;
  }
}
main[role=main] {
  z-index: 2;
}
.main:not(.intro) main[role=main] {
  background-color: white;
  position: relative;
}
.main {
  overflow: hidden;
}

.page-intro {
  padding: 20px 0;
}
.page-intro h2, .page-intro p {
  color: #243f8d;
  text-align: center;
  font-family: "Intro", "Arial", sans-serif;
}
@media (min-width: 768px) {
  .page-intro {
    padding: 60px 0;
  }
  .page-intro h2, .page-intro p {
    font-size: 32px;
    line-height: 1.25em;
  }
}

.map-wrapper {
  margin: 1em 1.5em;
  height: 400px;
}
@media (min-width: 768px) {
  .map-wrapper {
    margin: 1em 1em 0;
    height: calc(100vh - 160px);
  }
}
.map-wrapper .gm-style {
  line-height: 20px;
}

.info-window-header img {
  padding: 1em 1em 1em 0;
}
.info-window-header h3 {
  display: inline-block;
}

.timeline-nav {
  position: relative;
  width: 100%;
  height: 60px;
  padding: 6px 60px 6px 6px;
  background-color: #67b71a;
  z-index: 20;
}
.timeline-nav.fixed {
  position: fixed;
  top: 0;
}
@media (min-width: 768px) {
  .timeline-nav {
    position: absolute;
    top: -60px;
    padding: 0 60px 0 0;
  }
}
@media (max-width: 767px) {
  .timeline-nav .decade-trigger {
    position: relative;
    display: block;
    margin: 0 6px;
    padding: 4px 10px 4px 30px;
    width: calc(100% - 16px);
    height: 100%;
    background-color: #9ace64;
    background-image: url(libs/images/fallbacks/down-arrow.png);
    background-image: url(libs/svg/down-arrow.svg), none;
    background-position: 16px center;
    background-repeat: no-repeat;
    color: white;
    cursor: pointer;
  }
  .timeline-nav .decade-trigger:focus {
    outline: none;
  }
  .timeline-nav .decade-options {
    position: absolute;
    margin: 0;
    padding: 0;
    right: 0;
    top: 100%;
    left: 0;
    background: white;
    border-bottom: 4px solid #67b71a;
    border-top: none;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-out 0s;
    z-index: 10;
  }
  .timeline-nav .decade-options li + li {
    border-top: 1px solid #9ace64;
  }
  .timeline-nav .decade-options li a {
    margin: 0;
    padding: 10px 16px;
    background-color: white;
    color: #67b71a;
    line-height: 1em;
  }
  .timeline-nav.active .decade-options {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 768px) {
  .timeline-nav .decade-trigger {
    display: none;
  }
  .timeline-nav ul {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  .timeline-nav ul:before, .timeline-nav ul:after {
    content: " ";
    display: table;
  }
  .timeline-nav ul:after {
    clear: both;
  }
}
@media (min-width: 1200px) {
  .timeline-nav ul {
    max-width: 1200px;
  }
}
.timeline-nav li {
  position: relative;
}
@media (min-width: 768px) {
  .timeline-nav li {
    float: left;
    padding: 0 24px;
    background-image: url(libs/images/fallbacks/decades-indicator.png);
    background-image: url(libs/svg/decades-indicator.svg), none;
    background-position: right center;
    background-repeat: no-repeat;
    margin: 0 8px 0 18px;
    padding: 0 32px 0 0;
  }
  .timeline-nav li:last-of-type {
    background-image: none;
    margin-right: 0;
    padding-right: 0;
  }
  .timeline-nav li.active:after, .timeline-nav li.active:before {
    content: "";
    position: absolute;
    left: 8px;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 2;
  }
  .timeline-nav li.active:after {
    top: 0;
    border-width: 15px 15px 0 15px;
    border-color: #9ace64 transparent transparent transparent;
  }
  .timeline-nav li.active:before {
    bottom: 0;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent #9ace64 transparent;
  }
}
@media (min-width: 992px) {
  .timeline-nav li {
    padding: 0 78px 0 0;
    background-repeat: repeat-x;
  }
}
@media (min-width: 1200px) {
  .timeline-nav li {
    padding: 0 118px 0 0;
  }
}
.map .timeline-nav {
  position: fixed;
  top: 0;
}
.map .timeline-nav li.active, .map .timeline-nav li.active a {
  background-color: rgb(77.8660287081, 138.3444976077, 19.6555023923);
}
@media (min-width: 768px) {
  .map .timeline-nav li.active {
    margin: 0;
    padding: 0 40px 0 18px;
    background-position: right 10px center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 992px) {
  .map .timeline-nav li.active {
    padding-right: 86px;
    background-position: right 32px center;
  }
}
@media (min-width: 1200px) {
  .map .timeline-nav li.active {
    padding-right: 126px;
    background-position: right 50px center;
  }
}
.map .timeline-nav li.active:last-of-type {
  background-image: none;
}
.map .timeline-nav li.selected:after, .map .timeline-nav li.selected:before {
  left: 25px;
}
.map .timeline-nav li.active:not(.selected):before, .map .timeline-nav li.active:not(.selected):after {
  content: none;
}
.timeline-nav a {
  position: relative;
  display: block;
  background-color: #67b71a;
  font-family: "Intro Bold", "Arial", sans-serif;
  font-size: 16px;
  line-height: 60px;
  color: white;
  text-decoration: none;
}
.timeline-nav a:focus {
  outline: none;
}
@media (min-width: 768px) {
  .timeline-nav a:hover {
    color: #9ace64;
  }
}
.timeline-nav p {
  margin: 0;
  padding-left: 15px;
  font-size: 16px;
  line-height: 60px;
  color: white;
}
@media (min-width: 768px) {
  .timeline-nav {
    padding: 0;
  }
  .timeline-nav a {
    font-size: 21px;
  }
}

#timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  background-image: url(libs/images/timeline-bg.gif);
  background-position: 40px center;
  background-repeat: repeat-y;
  background-color: white;
  overflow: hidden;
  list-style: none;
}
#timeline > li {
  position: relative;
  margin: 0 0 10px 0;
  padding: 20px 20px 20px 100px;
}
@media (min-width: 768px) {
  #timeline {
    padding: 50px 0;
  }
}
@media (min-width: 992px) {
  #timeline {
    background-position: center top;
  }
}

#timeline > li:before,
#timeline > li:after { /* Circle */
  content: "";
  position: absolute;
}
#timeline > li:before {
  top: 32px;
  left: 54px;
  width: 30px;
  height: 4px;
  background: #67b71a;
}
#timeline > li:after {
  top: 20px;
  left: 25px;
  width: 30px;
  height: 30px;
  background: white;
  border: 4px solid #67b71a;
  border-radius: 50%;
}
@media (min-width: 992px) {
  #timeline {
    /* Decades Timeline */
    /* Move alternate branches if not on Decades Timeline */
    /* Set negative margin to bring elements closer */
  }
  #timeline > li {
    clear: both;
    float: left;
    text-align: right;
  }
  #timeline > li:not(.highlight) {
    width: 50%;
    padding: 40px 80px;
  }
  #timeline > li:before {
    top: calc(50% - 7px);
    left: calc(100% - 45px);
  }
  #timeline > li:after {
    top: calc(50% - 20px);
    left: calc(100% - 15px);
  }
  #timeline.decades > li:not(.historical-timepiece):not(.highlight) {
    float: right;
    text-align: left;
  }
  #timeline.decades > li:not(.historical-timepiece):not(.highlight):after {
    left: auto;
    right: calc(100% - 15px);
  }
  #timeline.decades > li:not(.historical-timepiece):not(.highlight):before {
    left: auto;
    right: calc(100% - 45px);
  }
  #timeline > li:not(.highlight):nth-of-type(even) {
    float: right;
    text-align: left;
  }
  #timeline > li:not(.highlight):nth-of-type(even):after {
    left: auto;
    right: calc(100% - 15px);
  }
  #timeline > li:not(.highlight):nth-of-type(even):before {
    left: auto;
    right: calc(100% - 45px);
  }
  #timeline > li:nth-of-type(odd), #timeline > li:nth-of-type(even) {
    margin: -10px 0 0 0;
  }
}

#timeline time {
  font-family: "Intro Bold", "Arial", sans-serif;
}
#timeline time + p {
  margin-top: 0;
}
li:not(.highlight) #timeline time {
  color: #243f8d;
}
#timeline h2 {
  text-transform: uppercase;
}
@media (min-width: 992px) {
  #timeline h2 {
    margin-top: 0;
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1200px) {
  #timeline h2 {
    font-size: 60px;
    line-height: 60px;
  }
}
#timeline p:last-of-type {
  margin-bottom: 0;
}
#timeline .modal-link {
  display: block;
  margin-top: 1em;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 6px solid rgb(179.9377990431, 236.5885167464, 125.4114832536);
  background-color: #67b71a;
  background-image: url(libs/images/fallbacks/modal-link.png);
  background-image: url(libs/svg/modal-link.svg), none;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
}
#timeline .highlight {
  position: relative;
  width: 100%;
  margin: 20px 0 !important;
  padding: 40px 20px 40px 40px;
  background-color: #243f8d;
  background-position: left bottom;
  background-repeat: no-repeat;
  text-align: left;
  color: white;
}
#timeline .highlight:before, #timeline .highlight:after {
  content: none;
}
#timeline .highlight .date-entry {
  position: relative;
  z-index: 2;
}
#timeline .highlight.highlight-quote {
  display: table;
}
@media (min-width: 992px) {
  #timeline .highlight.highlight-quote {
    text-align: center;
  }
}
#timeline .highlight.highlight-quote .date-entry {
  float: none;
  width: 100%;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
}
@media (min-width: 768px) {
  #timeline .highlight.highlight-quote .date-entry {
    padding: 80px 0;
    min-height: 750px;
  }
}
#timeline .highlight.highlight-quote blockquote {
  margin: 0 auto;
  padding: 0;
  width: auto;
  max-width: 970px;
}
#timeline .highlight.highlight-quote blockquote cite {
  display: block;
  margin-top: 1em;
  font-style: normal;
  text-transform: uppercase;
  font-family: "Intro", "Arial", sans-serif;
  font-size: 14px;
}
@media (min-width: 992px) {
  #timeline .highlight.highlight-quote blockquote cite {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  #timeline .highlight.highlight-quote blockquote {
    font-size: 2em;
    line-height: 1.11em;
  }
}
#timeline .highlight.highlight-bg {
  position: relative;
  padding: 20px 40px;
  background-size: cover;
}
#timeline .highlight.highlight-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 63, 141, 0.6);
}
#timeline .highlight.highlight-bg.dark:before {
  background-color: rgba(0, 0, 0, 0.6);
}
#timeline .highlight.highlight-bg a:not(.launch-link):hover {
  color: rgb(77.8660287081, 138.3444976077, 19.6555023923);
}
#timeline .highlight a:not(.launch-link):hover {
  color: rgb(77.8660287081, 138.3444976077, 19.6555023923);
}
#timeline .highlight .launch-link {
  position: relative;
  display: block;
  margin-top: 20px;
  padding-left: 34px;
  text-transform: uppercase;
  text-decoration: none;
}
#timeline .highlight .launch-link:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 4px;
  left: 0;
  background-color: #67b71a;
  background-image: url(libs/images/fallbacks/launch-link.png);
  background-image: url(libs/svg/launch-link.svg), none;
  background-repeat: no-repeat;
  background-position: center;
}
#timeline .highlight .launch-link:hover {
  color: rgb(111.6101694915, 139.0677966102, 218.3898305085);
}
#timeline .highlight .video-player {
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  #timeline .highlight {
    margin: 100px 0 !important;
    padding: 0;
    min-height: 750px;
    background-image: url(libs/images/peaks.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
  }
  #timeline .highlight.switch {
    background-position: right bottom;
  }
  #timeline .highlight.switch .date-entry {
    float: right;
  }
  #timeline .highlight.video {
    padding: 50px 0;
    text-align: center;
  }
  #timeline .highlight .media {
    margin-top: 40px;
  }
  #timeline .highlight.highlight-animate {
    padding-bottom: 100px;
    background-position: center bottom;
    background-size: contain;
  }
  #timeline .highlight .date-entry {
    float: left;
    width: 50%;
    padding: 100px 60px;
  }
  #timeline .highlight .highlight-inline-photo {
    float: left;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    min-height: 750px;
    height: 100%;
  }
  #timeline .highlight .push-m {
    float: right;
  }
  #timeline .highlight .pull-m {
    float: left;
  }
}

.timeline-footer {
  background-color: #243f8d;
}
.timeline-footer .population-counter {
  padding: 60px 0 120px;
  background-image: url(libs/images/dbl-peaks.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-family: "Intro Bold", "Arial", sans-serif;
}
@media (min-width: 768px) {
  .timeline-footer .population-counter {
    font-size: 1.5em;
  }
}
@media (min-width: 992px) {
  .timeline-footer .population-counter {
    padding-bottom: 300px;
  }
}
.timeline-footer .decade {
  margin: 0 0 60px;
  font-size: 2em;
}
@media (min-width: 992px) {
  .timeline-footer .decade {
    margin-top: 40px;
    font-size: 3em;
  }
}
.timeline-footer .population-figure {
  margin: 0 auto;
  max-width: 270px;
  text-align: left;
}
@media (min-width: 768px) {
  .timeline-footer .population-figure {
    max-width: 410px;
  }
}
@media (min-width: 992px) {
  .timeline-footer .population-figure {
    max-width: 920px;
  }
}
.timeline-footer .population-figure h2 {
  display: inline-block;
  margin: 0;
  font-size: 3.556em;
}
@media (min-width: 992px) {
  .timeline-footer .population-figure h2 {
    font-size: 8em;
  }
}
.timeline-footer .decade-nav {
  position: relative;
  padding: 2em 1em;
  background-color: white;
}
@media (min-width: 768px) {
  .timeline-footer .decade-nav {
    padding: 80px 0 0;
  }
}
.timeline-footer .decade-nav .inner {
  text-align: center;
  text-transform: uppercase;
  font-family: "Intro Bold", "Arial", sans-serif;
  color: #67b71a;
}
.timeline-footer .decade-nav p {
  margin-top: 0;
}
@media (min-width: 768px) {
  .timeline-footer .decade-nav p {
    font-size: 1.5em;
  }
}
.timeline-footer .decade-nav p:last-of-type {
  margin: 0;
  color: #243f8d;
  font-size: 1.5em;
  line-height: 1.133em;
}
@media (min-width: 768px) {
  .timeline-footer .decade-nav p:last-of-type {
    font-size: 3em;
  }
}
@media (max-width: 767px) {
  .timeline-footer .decade-trigger {
    position: relative;
    display: block;
    margin: 20px 0 0;
    padding: 8px 50px 8px 20px;
    width: 100%;
    border: 1px solid #243f8d;
    background-color: white;
    color: #67b71a;
    font-family: "Intro Bold", "Arial", sans-serif;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
  }
  .timeline-footer .decade-trigger:after {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 12px 12px;
    border-color: transparent transparent #243f8d transparent;
  }
  .timeline-footer .decade-trigger:focus {
    outline: none;
  }
  .timeline-footer .decade-options {
    position: absolute;
    margin: 0;
    padding: 0;
    bottom: 85px;
    left: 20px;
    width: calc(100% - 40px);
    background: white;
    border-bottom: 4px solid #67b71a;
    border-top: none;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-out 0s;
    z-index: 10;
  }
  .timeline-footer .decade-options li {
    border: 1px solid #67b71a;
    border-top: none;
  }
  .timeline-footer .decade-options li a {
    display: block;
    margin: 0;
    padding: 10px 16px;
    background-color: white;
    color: #575756;
    line-height: 1em;
    text-decoration: none;
  }
  .timeline-footer .decade-nav.active .decade-options {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 768px) {
  .timeline-footer .decade-trigger {
    display: none;
  }
  .timeline-footer .decade-options {
    position: relative;
    display: flex;
    margin: 0;
    padding: 60px 0 0;
    list-style: none;
  }
  .timeline-footer .decade-options li {
    display: block;
    float: left;
    width: 16.6667%;
  }
  .timeline-footer .decade-options li + li {
    border-left: 1px solid #8bc74f;
  }
  .timeline-footer .decade-options a {
    display: block;
    padding: 32px 0;
    background-color: #67b71a;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
  }
  .timeline-footer .decade-options a:hover, .timeline-footer .decade-options a.active-decade {
    background-color: #243f8d;
  }
}

.statistics {
  background-color: #243f8d;
  color: white;
}
.statistics .container {
  max-width: 1888px;
}
.statistics .equal-height > [class*=col-] {
  vertical-align: middle;
}
.statistics .equal-height > [class*=col-] + [class*=col-] {
  border-top: 2px solid #243f8d;
}
@media (min-width: 992px) {
  .statistics .equal-height > [class*=col-] + [class*=col-] {
    border-top: none;
    border-left: 2px solid #243f8d;
  }
}
.statistics .secondary {
  background-color: #405299;
}
.statistics .tertiary {
  background-color: #324591;
}
.statistics header {
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
}
.statistics header h2 {
  margin: 0;
  padding: 40px 0 0;
  background-position: center top;
  background-repeat: no-repeat;
}
.statistics header p {
  margin: 0;
}
@media (min-width: 768px) {
  .statistics header h2 {
    font-size: 66px;
    line-height: 70px;
  }
}
@media (min-width: 992px) {
  .statistics header {
    padding: 60px 0;
  }
}
.statistics .panel {
  background-size: contain;
  background-repeat: no-repeat;
}
.statistics .panel h2, .statistics .panel h3 {
  margin: 0;
}
.statistics .panel p {
  margin: 10px 0;
  text-transform: uppercase;
}
.statistics .panel .header-graphic {
  padding-top: 100px;
  background-repeat: no-repeat;
  background-position: center top;
}
.statistics .panel .panel-group {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .statistics .panel .panel-group p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 20px;
  }
}
.statistics .panel .panel-group p:last-of-type {
  margin-bottom: 0;
}
.statistics .panel .panel-group.pad {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .statistics .panel .panel-group.pad {
    padding: 0 40px;
  }
}
.statistics .panel .panel-group.pad-all {
  padding: 20px;
}
@media (min-width: 768px) {
  .statistics .panel .panel-group.pad-all {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .statistics .panel .panel-group.pad-all {
    padding: 80px 40px;
  }
}
.statistics .panel .lead {
  padding: 40px 20px;
}
@media (min-width: 992px) {
  .statistics .panel .lead p {
    font-size: 30px;
    line-height: 36px;
  }
}
.statistics .panel .top-stat {
  margin-bottom: 20px;
  font-size: 46px;
  line-height: 40px;
}
.statistics .panel .secondary-stat {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1em;
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 767px) {
  .statistics .panel .secondary-stat {
    padding-right: 60px;
    background-position: right top;
    background-size: 15%;
  }
}
.statistics .panel .panel-group-title {
  margin: 20px 0;
  padding: 20px;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .statistics .panel .panel-group-title {
    margin: 40px 0;
    padding: 20px 40px;
  }
}
@media (min-width: 1200px) {
  .statistics .panel .panel-group-title {
    margin: 40px 0 20px;
  }
}
.statistics .panel .stat {
  margin: 20px 0;
  padding-right: 60px;
  background-position: right 5px;
  background-size: 15%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .statistics .panel .stat {
    background-size: auto;
    padding-right: 100px;
  }
}
@media (min-width: 1200px) {
  .statistics .panel .stat {
    background-position: right 15px;
  }
}
.statistics .panel .people-bg {
  background-color: #324591;
}
@media (min-width: 768px) {
  .statistics .panel .panel-group {
    padding: 40px;
  }
  .statistics .panel .lead {
    padding: 50px 40px;
  }
  .statistics .panel .top-stat {
    font-size: 100px;
    line-height: 90px;
  }
  .statistics .panel .secondary-stat {
    margin-bottom: 20px;
    font-size: 60px;
  }
  .statistics .panel .panel-group-title {
    font-size: 28px;
  }
  .statistics .panel .stat {
    margin: 40px 0;
  }
  .statistics .panel .people-bg {
    background-position: left bottom;
    background-repeat: repeat-x;
    background-image: url(libs/images/people-icons-bg.gif);
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .statistics .panel .stat.inline-stat {
    margin: 30px 0;
    display: inline-block;
  }
  .statistics .panel .stat.inline-stat + .inline-stat {
    margin-left: 30px;
  }
}
@media (min-width: 992px) {
  .statistics .panel .header-graphic {
    margin-bottom: 80px;
    padding: 100px 30px 0;
  }
}
@media (min-width: 1200px) {
  .statistics .panel .lead {
    padding: 140px 40px;
  }
  .statistics .panel .top-stat {
    font-size: 150px;
    line-height: 140px;
  }
  .statistics .panel .secondary-stat {
    margin-bottom: 40px;
    font-size: 86px;
  }
}
@media (min-width: 1860px) {
  .statistics .panel .secondary-stat {
    font-size: 92px;
  }
}
.statistics.transport header h2 {
  background-image: url(libs/svg/statistics/transport/transport-icon.svg);
}
@media (min-width: 768px) {
  .statistics.transport .clouds {
    background-image: url(libs/svg/statistics/transport/clouds.svg);
    background-position: right center;
  }
}
@media (min-width: 992px) {
  .statistics.transport .clouds {
    padding: 60px 0;
  }
}
.statistics.transport .ferry {
  background-image: url(libs/svg/statistics/transport/ferry-graphic.svg);
}
@media (max-width: 767px) {
  .statistics.transport .ferry {
    background-size: 60%;
    padding-top: 40px;
  }
}
.statistics.transport .rail {
  background-image: url(libs/svg/statistics/transport/rail-graphic.svg);
}
@media (max-width: 767px) {
  .statistics.transport .rail {
    background-size: 60%;
    padding-top: 40px;
  }
}
.statistics.transport .no-gutter > [class*=col-] + [class*=col-] {
  border-top: 2px solid #243f8d;
}
@media (min-width: 992px) {
  .statistics.transport .no-gutter > [class*=col-] + [class*=col-] {
    border-top: none;
    border-left: 2px solid #243f8d;
  }
}
.statistics.transport .stat {
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .statistics.transport .stat {
    background-position: right top;
  }
}
.statistics.transport .stat.passengers {
  background-image: url(libs/svg/statistics/transport/passengers-icon.svg);
}
@media (min-width: 1200px) {
  .statistics.transport .stat.passengers {
    background-position: right 16px;
  }
}
.statistics.transport .stat.car {
  background-image: url(libs/svg/statistics/transport/car-icon.svg);
}
@media (min-width: 1200px) {
  .statistics.transport .stat.car {
    background-position: right 20px;
  }
}
.statistics.transport .stat.inline-stat {
  padding-right: 0;
}
@media (max-width: 767px) {
  .statistics.transport .stat.inline-stat {
    margin: 30px 0;
    padding: 0 20px;
    text-align: center;
  }
}
@media (min-width: 1860px) {
  .statistics.transport .stat.inline-stat {
    display: inline-block;
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .statistics.transport .secondary-stat {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .statistics.transport .secondary-stat {
    margin-bottom: 0;
  }
}
.statistics.transport .plane {
  display: none;
}
@media (min-width: 768px) {
  .statistics.transport .plane {
    display: block;
    position: absolute;
    top: calc(50% - 56px);
    right: 40px;
    width: 118px;
    height: 112px;
    background-image: url(libs/svg/statistics/transport/plane-icon.svg);
    background-repeat: no-repeat;
  }
}
@media (min-width: 992px) {
  .statistics.transport .plane {
    right: 120px;
  }
}
@keyframes planeSlide {
  from {
    opacity: 0;
    transform: translate3d(-250%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.statistics.transport .planeSlide {
  animation-name: planeSlide;
}
.statistics.education header h2 {
  background-image: url(libs/svg/statistics/education/education-header.svg);
}
.statistics.education .top-stat {
  margin-top: 10px;
}
.statistics.education .outreach {
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(libs/svg/statistics/education/outreach-learning.svg);
}
.statistics.education .outreach .secondary-stat {
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .statistics.education .outreach {
    padding: 20px 100px 20px 20px;
  }
}
@media (min-width: 768px) {
  .statistics.education .outreach {
    background-position: right 40px center;
  }
}
@media (min-width: 992px) {
  .statistics.education .outreach {
    padding-top: 220px;
    background-position: 90% 60px;
  }
}
@media (min-width: 768px) {
  .statistics.education .top-stat {
    margin-top: 20px;
    padding-right: 160px;
    background-repeat: no-repeat;
    background-position: right 0;
    background-image: url(libs/svg/statistics/education/college-graduation.svg);
  }
  .statistics.education .secondary-stat {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1600px) {
  .statistics.education .top-stat {
    background-position: right 20px;
  }
  .statistics.education .outreach {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .statistics.education .panel .lead {
    padding: 60px 40px;
  }
}
.statistics.education .panel-group {
  margin-right: 20px;
  background-repeat: no-repeat;
}
.statistics.education .panel-group:not(.outreach) {
  background-position: right 20px;
}
@media (max-width: 767px) {
  .statistics.education .panel-group {
    background-size: 20%;
  }
  .statistics.education .panel-group.awards {
    background-size: 12%;
  }
}
@media (min-width: 768px) {
  .statistics.education .panel-group {
    margin-right: 0;
  }
  .statistics.education .panel-group:not(.outreach) {
    background-position: center 40px;
  }
}
@media (min-width: 1200px) {
  .statistics.education .panel-group {
    margin-right: 0;
  }
  .statistics.education .panel-group:not(.outreach) {
    background-position: center 80px;
  }
}
.statistics.education .panel-group.students {
  background-image: url(libs/svg/statistics/education/students.svg);
}
.statistics.education .panel-group.degrees {
  background-image: url(libs/svg/statistics/education/degrees.svg);
}
.statistics.education .panel-group.awards {
  background-image: url(libs/svg/statistics/education/awards.svg);
}
.statistics.food-drink-fisheries header h2 {
  background-image: url(libs/svg/statistics/food-drink-fisheries/food-drink-fisheries-header.svg);
}
.statistics.food-drink-fisheries .panel-group.people {
  padding-top: 100px;
  background-repeat: no-repeat;
  background-position: center 20px;
}
@media (max-width: 767px) {
  .statistics.food-drink-fisheries .panel-group.people {
    background-size: 20%;
  }
}
@media (max-width: 767px) {
  .statistics.food-drink-fisheries .secondary-stat {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .statistics.food-drink-fisheries .panel-group.people {
    padding-top: 140px;
    background-position: center 40px;
  }
  .statistics.food-drink-fisheries .panel-group.fish {
    height: 100%;
  }
  .statistics.food-drink-fisheries .equal-height > [class*=col-] {
    vertical-align: top;
  }
}
@media (min-width: 992px) {
  .statistics.food-drink-fisheries .panel-group.fish {
    padding-bottom: 0;
    background-image: url(libs/images/fish-bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
  }
  .statistics.food-drink-fisheries .panel-group.breweries {
    text-align: center;
    padding-top: 360px;
    background-image: url(libs/svg/statistics/food-drink-fisheries/breweries.svg);
    background-repeat: no-repeat;
    background-position: center 60px;
  }
}
@media (min-width: 1860px) {
  .statistics.food-drink-fisheries .panel-group.fish {
    padding-bottom: 380px;
  }
  .statistics.food-drink-fisheries .panel-group.breweries {
    padding-top: 80px;
    padding-bottom: 360px;
    background-position: 80px bottom;
    text-align: left;
  }
}
.statistics.food-drink-fisheries .people {
  background-image: url(libs/svg/statistics/food-drink-fisheries/people.svg);
}
.statistics.life-sciences header h2 {
  background-image: url(libs/svg/statistics/life-sciences/life-sciences-header.svg);
}
@media (min-width: 768px) {
  .statistics.life-sciences .equal-height > [class*=col-] {
    vertical-align: top;
  }
  .statistics.life-sciences .panel-group.map {
    min-height: 500px;
    height: 100%;
    padding-top: 160px;
    padding-right: 290px;
    background-image: url(libs/images/scottish-map.png);
    background-repeat: no-repeat;
    background-position: 95% 60px;
    background-size: 26%;
  }
}
@media (min-width: 992px) {
  .statistics.life-sciences .panel-group.map {
    min-height: 300px;
    padding-top: 40px;
    padding-right: 160px;
  }
}
@media (min-width: 1200px) {
  .statistics.life-sciences .panel-group.map {
    min-height: 450px;
    padding-top: 80px;
    background-position: 95% 80px;
  }
}
@media (min-width: 1860px) {
  .statistics.life-sciences .panel-group.map {
    min-height: 520px;
  }
}
.statistics.creative-industries header h2 {
  background-image: url(libs/svg/statistics/creative-industries/creative-industries-header.svg);
}
@media (min-width: 768px) {
  .statistics.creative-industries header h2 {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 768px) {
  .statistics.creative-industries .tertiary {
    background-position: 80px center;
    background-repeat: no-repeat;
    background-image: url(libs/images/creative-industries-swoosh-portrait.png);
    background-size: contain;
  }
}
@media (min-width: 992px) {
  .statistics.creative-industries .tertiary {
    background-position: center center;
    background-image: url(libs/images/creative-industries-swoosh.png);
  }
}
.statistics.tourism header h2 {
  background-image: url(libs/svg/statistics/tourism/tourism-header.svg);
}
@media (min-width: 768px) {
  .statistics.tourism .lead {
    padding-right: 42% !important;
    min-height: 400px;
    background-image: url(libs/svg/statistics/tourism/peaks.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
  }
}
@media (min-width: 992px) {
  .statistics.tourism .lead {
    padding-right: 32% !important;
  }
}
@media (min-width: 1860px) {
  .statistics.tourism .lead {
    padding-right: 36% !important;
  }
  .statistics.tourism .lead p {
    font-size: 42px;
    line-height: 50px;
  }
}
.statistics.energy header h2 {
  padding-top: 55px;
  background-image: url(libs/svg/statistics/energy/energy-header.svg);
}
.statistics.energy .secondary-stat {
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .statistics.energy .secondary-stat {
    padding-right: 0;
  }
}
.statistics.energy .panel-group:not(.lead) {
  background-position: center 20px;
  background-repeat: no-repeat;
  background-size: 30%;
  padding: 95px 20px 20px;
}
.statistics.energy .panel-group:not(.lead).wind-farm {
  background-size: 20%;
  padding-top: 120px;
}
.statistics.energy .panel-group:not(.lead).meygen {
  background-size: 60%;
}
.statistics.energy .tidal-test {
  background-image: url(libs/svg/statistics/energy/tidal-test-centre.svg);
}
.statistics.energy .wind-farm {
  background-image: url(libs/svg/statistics/energy/offshore-wind-farm.svg);
}
.statistics.energy .meygen {
  background-image: url(libs/svg/statistics/energy/meygen-project.svg);
}
@media (min-width: 768px) {
  .statistics.energy .top-stat {
    margin-bottom: 40px;
  }
  .statistics.energy .panel-group:not(.lead) {
    background-position: center 40px;
    background-size: 30%;
    padding: 210px 20px 40px;
  }
  .statistics.energy .panel-group:not(.lead).wind-farm {
    padding-top: 280px;
  }
  .statistics.energy .panel-group:not(.lead).meygen {
    background-position: center 60px;
    background-size: 50%;
  }
  .statistics.energy .secondary-stat {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .statistics.energy .panel-group:not(.lead) {
    background-size: 60%;
    padding-top: 220px;
  }
  .statistics.energy .panel-group:not(.lead).wind-farm {
    background-size: 26%;
    padding-top: 220px;
  }
  .statistics.energy .panel-group:not(.lead).meygen {
    background-size: 70%;
    background-position: center 80px;
  }
}
@media (min-width: 1200px) {
  .statistics.energy .panel-group:not(.lead) {
    padding: 280px 40px 60px;
    background-size: 50%;
    background-position: center 80px;
  }
  .statistics.energy .panel-group:not(.lead).wind-farm {
    background-size: 20%;
    padding: 280px 40px 60px;
  }
  .statistics.energy .panel-group:not(.lead).meygen {
    background-position: center 100px;
  }
}
@media (min-width: 1860px) {
  .statistics.energy .panel-group:not(.lead) {
    padding: 320px 40px 60px;
  }
  .statistics.energy .panel-group:not(.lead).wind-farm {
    padding: 320px 40px 60px;
  }
}
.statistics.connectivity header h2 {
  background-image: url(libs/svg/statistics/connectivity/connectivity-header.svg);
}
.statistics.connectivity .lead {
  background-position: top right;
  background-repeat: no-repeat;
  background-image: url(libs/images/connectivity-header-swoosh.png);
}
@media (min-width: 768px) {
  .statistics.connectivity .top-stat {
    background-position: 355px 49px;
    background-repeat: no-repeat;
    background-image: url(libs/images/connectivity-header-houses.png);
  }
}
@media (min-width: 992px) {
  .statistics.connectivity .tertiary {
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url(libs/images/connectivity-body-swoosh.png);
  }
}
@media (min-width: 1200px) {
  .statistics.connectivity .top-stat {
    background-position: 530px 93px;
  }
}
.statistics.financial-business-services header h2 {
  padding-top: 60px;
  background-image: url(libs/svg/statistics/financial-business-services/financial-header.svg);
}
.statistics.financial-business-services .people-bg {
  background-image: url(libs/images/people-repeating-bg.png);
  background-position: left top;
  background-repeat: repeat;
}
@media (min-width: 768px) {
  .statistics.financial-business-services .lead {
    padding-bottom: 180px;
    background-image: url(libs/images/people-line-graphic.png);
    background-position: left bottom 60px;
    background-repeat: repeat-x;
  }
  .statistics.financial-business-services .top-stat {
    margin-bottom: 40px;
  }
}
.statistics.communities header h2 {
  background-image: url(libs/svg/statistics/communities/communities-header.svg);
}
.statistics.communities .lead {
  background-image: url(libs/svg/statistics/communities/community-energy.svg);
  background-position: right 30px bottom -30px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1200px) {
  .statistics.communities .lead {
    background-size: auto;
  }
}
.statistics.communities .peaks {
  padding-bottom: 40px;
  background-image: url(libs/images/community-peaks.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .statistics.communities .top-stat {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .statistics.communities .peaks {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .statistics.communities .stat {
    padding-right: 100px;
  }
}
.statistics.communities .stat.employment {
  background-image: url(libs/svg/statistics/communities/employed-people.svg);
}
.statistics.communities .stat.organisations {
  background-image: url(libs/svg/statistics/communities/lightbulb.svg);
}
.statistics.communities .stat.money {
  background-image: url(libs/svg/statistics/communities/money-roundal.svg);
}

button, input[type=button], input[type=reset], input[type=submit], a[role=button], .button {
  position: relative;
  display: inline-block;
  margin: 0.625em 0;
  padding: 0.778em 1em;
  border: 2px solid #67b71a;
  text-align: center;
  background-color: #67b71a;
  transition: background-color 0.2s ease-in-out;
  text-decoration: none;
  color: white;
}
button:hover, input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover, a[role=button]:hover, .button:hover {
  background-color: rgb(77.8660287081, 138.3444976077, 19.6555023923);
  color: white;
}
button.full-width, input[type=button].full-width, input[type=reset].full-width, input[type=submit].full-width, a[role=button].full-width, .button.full-width {
  display: block;
}

.carousel {
  margin-bottom: 0;
  position: relative;
}
.carousel > ol {
  top: auto;
  bottom: 0;
  padding-bottom: 5px;
  background-color: white;
}
.carousel > ol li {
  background-color: #67b71a;
  border: none;
  height: 5px;
  width: 40px;
}
.carousel > ol .active, .carousel > ol .active:hover {
  background-color: #67b71a;
}
.carousel > button {
  background-color: #243f8d;
}

.readonly, input, select, textarea {
  border-color: #67b71a;
  color: #575756;
  margin-bottom: 0;
  padding: 12px;
  height: auto;
}

.input-group button {
  margin: 0;
  min-height: auto;
  padding: 11px 20px;
}

.modal-overlay .container {
  max-width: 600px;
}
.modal-overlay .modal-content {
  padding: 1em 2em;
}
.modal-overlay .modal-close {
  margin: 0;
  width: 60px;
  height: 60px;
  background-color: #67b71a;
  background-image: url(libs/images/fallbacks/nav-icons.png);
  background-image: url(libs/svg/nav-icons.svg), none;
  background-position: -60px 0;
  text-indent: -9999px;
}

.menu-trigger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
}
.menu-trigger p {
  display: none;
  margin: 16px 0;
}
@media (min-width: 768px) {
  .menu-trigger {
    width: 150px;
    padding-left: 1em;
    background-color: #67b71a;
    color: white;
  }
  .menu-trigger p {
    display: block;
  }
}

.menu-button {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #67b71a;
  border: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  background-image: url(libs/images/fallbacks/nav-icons.png);
  background-image: url(libs/svg/nav-icons.svg), none;
  background-repeat: no-repeat;
  transition: background-color 0.4s ease-in-out;
  z-index: 40;
}
.open-menu .menu-button {
  background-position: -60px 0;
}
.menu-button.fixed {
  background-color: #9ace64;
}

.menu, .slide-nav, .slide-nav-wrap {
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.5s ease-in-out, height 0.5s;
}

.header-intro {
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.open-menu .menu,
.slide-nav.open-submenu {
  position: fixed;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.slide-nav.open-submenu {
  z-index: 31;
}

@media (max-width: 767px) {
  .slide-nav.open-submenu {
    overflow: scroll;
  }
}
.open-submenu .slide-nav-wrap {
  transform: translate3d(0, 0, 0);
}

.open-menu .main:after,
.open-submenu .main:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 20;
}

.main {
  position: relative;
}

nav {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding-top: 90px;
  background-color: #243f8d;
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  z-index: 30;
}
@media (min-width: 768px) {
  nav {
    padding: 0;
  }
}

nav ul {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
}
nav ul:before, nav ul:after {
  content: " ";
  display: table;
}
nav ul:after {
  clear: both;
}
@media (min-width: 768px) {
  nav ul {
    padding: 25px 80px 20px 20px;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  nav ul {
    padding: 25px 0 0;
  }
}

nav li {
  position: relative;
  margin-top: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  nav li {
    float: left;
    width: 49%;
    height: 250px;
    margin-top: 0;
  }
  nav li + li {
    margin-left: 2%;
  }
}

nav h2 {
  font-size: 24px;
  text-align: center;
  color: white;
}
@media (min-width: 768px) {
  nav h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  body:not(.welcome) nav h2 {
    display: none;
  }
}

nav a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 40px 20px 100px;
  background-color: #67b71a;
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: auto 50px;
  color: white;
  font-size: 12px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}
nav a:hover {
  background-color: rgb(77.8660287081, 138.3444976077, 19.6555023923);
  color: white;
}
@media (min-width: 768px) {
  nav a {
    height: 100%;
    padding: 200px 20px 10px 20px;
    background-position: center 20px;
    background-size: auto;
    font-size: 22px;
    text-align: center;
  }
}

nav li:nth-child(1) a {
  background-image: url(libs/images/fallbacks/timeline-link.png);
  background-image: url(libs/svg/timeline-link.svg), none;
}
nav li:nth-child(2) a {
  background-image: url(libs/images/fallbacks/category-link.png);
  background-image: url(libs/svg/category-link.svg), none;
}
nav li:nth-child(3) a {
  background-image: url(libs/images/fallbacks/map-link.png);
  background-image: url(libs/svg/map-link.svg), none;
}

@media (min-width: 768px) {
  .menu-slide {
    transform: translate3d(0, 100%, 0);
    background-color: transparent;
  }
  .open-menu .menu-slide {
    top: calc(50% - 185px);
  }
}

@media (min-width: 768px) {
  .menu-top {
    position: fixed;
    height: 300px;
    width: 100%;
    transform: translate3d(0, -300px, 0);
  }
}

.slide-nav {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, -100%, 0);
  background-color: #243f8d;
  opacity: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .slide-nav {
    transform: translate3d(0, -100%, 0);
    background-color: transparent;
  }
}

.slide-nav-wrap {
  position: relative;
  margin: 90px auto 0;
  width: 90%;
  font-family: "Intro", "Arial", sans-serif;
  text-align: center;
}
.slide-nav-wrap:before, .slide-nav-wrap:after {
  content: " ";
  display: table;
}
.slide-nav-wrap:after {
  clear: both;
}
@media (min-width: 768px) {
  .slide-nav-wrap {
    margin: 0 auto;
    top: calc(50% - 348px);
  }
}
@media (min-width: 992px) {
  .slide-nav-wrap {
    top: calc(50% - 202px);
  }
}
.slide-nav-wrap .lead-story {
  margin-bottom: 5px;
}
.slide-nav-wrap .lead-story:before, .slide-nav-wrap .lead-story:after {
  content: " ";
  display: table;
}
.slide-nav-wrap .lead-story:after {
  clear: both;
}
@media (min-width: 768px) {
  .slide-nav-wrap .lead-story {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .slide-nav-wrap .lead-story {
    margin: 0;
  }
}
.slide-nav-wrap .lead-story .category-block {
  float: none;
  margin: 0 auto;
  height: 150px;
}
@media (max-width: 767px) {
  .slide-nav-wrap .lead-story .category-block {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .slide-nav-wrap .lead-story .category-block {
    width: 50%;
    height: 200px;
  }
}
@media (min-width: 992px) {
  .slide-nav-wrap .lead-story .category-block {
    width: calc(100% - 26px);
    height: 310px;
  }
}
.slide-nav-wrap .lead-story a {
  margin: 5px 0;
  height: 100%;
}
@media (min-width: 992px) {
  .slide-nav-wrap .lead-story a {
    margin: 0;
  }
}
#timeline-subnav .slide-nav-wrap .lead-story {
  display: none;
}
@media (min-width: 992px) {
  .slide-nav-wrap .lead-story {
    float: left;
    width: 25%;
  }
}
@media (min-width: 992px) {
  .slide-nav-wrap .sub-stories {
    float: left;
    width: 75%;
  }
  .slide-nav-wrap .sub-stories .row {
    margin: 0;
  }
}
.slide-nav-wrap .category-block {
  float: left;
  width: 50%;
}
@media (min-width: 768px) {
  .slide-nav-wrap .category-block {
    width: 18.72%;
  }
  .slide-nav-wrap .category-block + .category-block {
    margin-left: 1.6%;
  }
}
@media (min-width: 992px) {
  .slide-nav-wrap .category-block {
    width: 18.72%;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.slide-nav-wrap .category {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 10px;
  display: block;
  font-size: 14px;
  line-height: 20px;
  z-index: 3;
}
@media (min-width: 1200px) {
  .slide-nav-wrap .category {
    font-size: 18px;
  }
}
.slide-nav-wrap h2 {
  font-size: 24px;
  color: white;
}
.slide-nav-wrap img {
  position: relative;
}
.slide-nav-wrap .story-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .slide-nav-wrap h2 {
    font-size: 36px;
    color: white;
  }
}
.slide-nav-wrap a {
  position: relative;
  display: block;
  height: 150px;
  margin: 5px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  visibility: visible !important;
}
.slide-nav-wrap a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.slide-nav-wrap a:hover:before {
  background-color: rgba(0, 0, 0, 0.8);
}
.lead-story .slide-nav-wrap a {
  height: 100%;
}
@media (min-width: 992px) {
  .slide-nav-wrap a {
    margin: 0;
  }
}

#stories-subnav h2.timeline {
  display: none;
}

#timeline-subnav h2.story {
  display: none;
}
#timeline-subnav .sub-stories {
  width: 100%;
}
#timeline-subnav .slide-nav-wrap .category {
  font-size: 20px;
}
@media (min-width: 600px) {
  #timeline-subnav .slide-nav-wrap .category-block {
    width: 32%;
  }
  #timeline-subnav .slide-nav-wrap .category-block + .category-block {
    margin-left: 2%;
  }
  #timeline-subnav .slide-nav-wrap .category-block:nth-child(4) {
    margin-left: 0;
  }
  #timeline-subnav .slide-nav-wrap .category-block:nth-child(6) {
    margin-left: 2% !important;
  }
  #timeline-subnav .slide-nav-wrap .category {
    font-size: 28px;
  }
}

.close-submenu {
  position: fixed;
  right: 0;
  top: 0;
  height: 60px;
  width: 60px;
  margin: 0;
  padding: 0;
  background-color: #67b71a;
  background-image: url(libs/images/fallbacks/nav-icons.png);
  background-image: url(libs/svg/nav-icons.svg), none;
  background-repeat: no-repeat;
  background-position: -60px 0;
  border: none;
  transform: translate3d(0, 0, 0) !important;
  transition: background-color 0.4s ease-in-out 0s;
  z-index: 30;
}

@media (min-width: 768px) {
  .slide-nav.open-submenu {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .welcome.open-menu .header-intro,
  .welcome.open-submenu .header-intro {
    opacity: 0;
  }
  .open-submenu .menu {
    opacity: 0;
  }
}
