@charset "UTF-8";
/* ==========================================================================
   #Site Global Sizes
   ========================================================================== */
.module-inner-wrap {
  max-width: 1300px;
  margin: auto;
  position: relative;
}

/* === Flexbox Center === */
/* --Hover Mixin.--*/
/* -- Cross browser opacity.--*/
/* -- Animation.--*/
/* -- Hide Elements.--*/
.m-hide {
  display: none;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 46.25em) {
  .m-hide {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}

.m-t-hide {
  display: none;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 61.25em) {
  .m-t-hide {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}

.t-hide {
  display: block;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 46.25em) {
  .t-hide {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

.d-hide {
  display: block;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 61.25em) {
  .d-hide {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

.hide {
  display: none;
}

/* -- Fill Elements.--*/
.fill-width {
  width: 100%;
}
.fill-height {
  height: 100%;
}
/* -- Background Image --*/
.back-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* -- Centre Content --*/
.centre-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* -- Centre Text --*/
.has-text-centered {
  text-align: center;
}

.hr-strip {
  border: none;
  width: 30px;
  height: 1px;
  display: block;
}

.pos-rel {
  position: relative;
}

/* -- Absolute Center --*/
/* -- Equal Colmun --*/
/* -- Grid Mixin --*/
.g-wrap {
  display: grid;
  grid-template-rows: auto;
  grid-gap: 15px;
}

@media (min-width: 46.25em) {
  .no-cssgrid .g-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.no-cssgrid .g-wrap > .g-box {
  display: inline-block;
  vertical-align: text-top;
  width: 100%;
}

/* ==========================================================================
   #Site Global Colours
   ========================================================================== */
/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  font-size: 1em; /* [1] */
  line-height: 1.5; /* [1] */
  /*overflow-y: scroll; /* [2] *!/*/
  min-height: 100%; /* [3] */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Clearing
--------------------------------------------------------------*/
.clear::after {
  display: block;
  content: "";
  clear: both;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat; /* 1 */
  box-sizing: inherit; /* 2 */
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  box-sizing: border-box;
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
blockquote,
figure,
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*ul,li,dt,dl,dd {
	margin: 0;
	padding: 0;
	list-style: none;
}*/
ul[class],
ol[class] {
  margin: 0;
}

header, section, footer, article {
  width: 100%;
  display: block;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input,
button,
textarea,
select {
  font: inherit;
}

/*--------------------------------------------------------------
# Animation Control
--------------------------------------------------------------*/
a,
a[href^=mailto] {
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

/*@include keyframes(bounce) {
	 0%, 20%, 50%, 80%, 100% {

	   @include vendor(transform, translateY(0) );
	 }
	 	40% {
	 	 @include vendor(transform, translateY(-5px) );
	 }
	 	60% {
	 	 @include vendor(transform, translateY(-2px) );
	 }
}

.down-arrow svg{
	   @include animation('bounce 4s infinite');
}



@include keyframes(slideDown) {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@include keyframes(slideUp) {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}*/
/*
.site-header {
	 @include menu-animation;
	    animation-duration: 0.5s;
	    animation-fill-mode: both;
	    will-change: transform, opacity;

		&.floating-head-fixed_scrolled,
	  	&.header-up {
	    animation-name: slideDown;
	  }

	  &.header-down {
	    animation-name: slideUp;
	  }
}*/
@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-ms-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-o-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-moz-keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-ms-keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-o-keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.site-header__top {
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-duration: 0.5s;
  animation-fill-mode: both;
  will-change: transform, opacity;
}
.site-header__top.floating-head-fixed_scrolled, .site-header__top.header-up {
  animation-name: slideDown;
}
.site-header__top.header-down {
  animation-name: slideUp;
}

/* Lazy Loading
   ===========================================================*/
/* fade image in after load */
.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

@-webkit-keyframes fadein {
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  to {
    opacity: 1;
  }
}
.swiper-slide-active .hero-slider__desc,
.element-fadein {
  opacity: 0;
  -webkit-animation: fadein 450ms .5s ease forwards;
  -moz-animation: fadein 450ms .5s ease forwards;
  -ms-animation: fadein 450ms .5s ease forwards;
  -o-animation: fadein 450ms .5s ease forwards;
  animation: fadein 450ms .5s ease forwards;
}

/* ==========================================================================
   #Site Grid Sizes
   ========================================================================== */
/*Level Elements*/
.flex-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.equal-spread {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.main--grid {
  /*width: 100%;
  max-width: 100%;*/
  /*grid-template-columns: repeat(3, 1fr);*/
  grid-gap: 30px;
}
@media (min-width: 46.25em) {
  .main--grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 81.25em) {
  .main--grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

.main--grid.g-wrap.no-gap {
  grid-gap: 0;
}

@media (min-width: 46.25em) {
  .g-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.g-3 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 46.25em) {
  .g-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 61.25em) {
  .g-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 46.25em) {
  .no-cssgrid .personal-detail .g-wrap.g-3 > .personal-detail__profile {
    width: 33.3333333333%;
  }
}

@media (min-width: 46.25em) {
  .no-cssgrid .personal-detail .g-wrap.g-3 > .personal-detail__content {
    width: 66.6666666667%;
  }
}

@media (min-width: 46.25em) {
  .personal-detail__content {
    grid-column: 2/4;
  }
}

.g-4 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 46.25em) {
  .g-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 61.25em) {
  .g-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-logos__grid.g-4 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.g-6 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 46.25em) {
  .g-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 61.25em) {
  .g-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 46.25em) {
  .no-cssgrid .g-wrap.g-6 > .g-box {
    width: 16.66666667%;
  }
}

@media (min-width: 46.25em) {
  .no-cssgrid .g-wrap.g-3 > .g-box {
    width: 31%;
  }
}

@media (min-width: 46.25em) {
  .no-cssgrid .g-wrap.g-4 > .g-box {
    width: 25%;
  }
}

@media (min-width: 46.25em) {
  .no-cssgrid .g-wrap.g-2 > .g-box {
    width: 48%;
  }
}

.g-box {
  /*background-color: red;*/
}

/**
 * This shall stop the z-index chaos
 */
/*@import "base/slick"; */
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.sr-only:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #185571;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*--------------------------------------------------------------
# Button Control inc Links
--------------------------------------------------------------*/
button[type=submit],
.submit-wrap input[type=button],
.main-btn {
  display: inline-block;
  vertical-align: middle;
  font: inherit;
  text-align: center;
  margin: 0;
  cursor: pointer;
  padding: 15px 20px;
  /*border-radius: $small-border-radius;*/
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  text-decoration: none;
  border: none;
  background-color: transparent;
}
button[type=submit]:hover, button[type=submit]:focus,
.submit-wrap input[type=button]:hover,
.submit-wrap input[type=button]:focus,
.main-btn:hover,
.main-btn:focus {
  text-decoration: none;
}
button[type=submit]:focus,
.submit-wrap input[type=button]:focus,
.main-btn:focus {
  outline: 2px solid inherit;
}

.hero-btn {
  background-color: #047e8b;
  border: 1px solid #047e8b;
  color: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.hero-btn:hover, .hero-btn:focus {
  background-color: white;
  color: #047e8b;
}
.hero-btn:focus {
  outline: 2px solid inherit;
}

.text-btn {
  text-align: left;
  padding: 0;
  letter-spacing: 0.03em;
}

.text-btn::before {
  content: "";
  display: inline-block;
  height: 2px;
  margin-right: 8px;
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  vertical-align: 5px;
  width: 10px;
}

.text-btn:hover::before {
  width: 15px;
}

.site-header__mobile-button.lines-nav {
  display: block;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  padding: 0;
  /*  width: 96px;*/
  height: 25px;
  border-radius: none;
  border: none;
  cursor: pointer;
  /*@include vendor(transition,  background 0.3s);*/
  position: relative;
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  /*background-color: $off-white;*/
  border-radius: 0;
  text-align: center;
  z-index: 1030;
  background-color: transparent;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -moz-order: 3;
  -ms-flex-order: 3;
  order: 3;
}
@media (min-width: 61.25em) {
  .site-header__mobile-button.lines-nav {
    display: none;
  }
}

.site-header__mobile-button.lines-nav:hover span:not(.sr-only),
.site-header__mobile-button.lines-nav:focus span:not(.sr-only) {
  background-color: #047e8b;
}
.site-header__mobile-button.lines-nav:hover span:not(.sr-only) .site-header__mobile-button.lines-nav-title,
.site-header__mobile-button.lines-nav:focus span:not(.sr-only) .site-header__mobile-button.lines-nav-title {
  /*color: white;*/
}

.site-header__mobile-button.lines-nav span.button-lines {
  display: block;
  position: relative;
  height: 2px;
  width: 34px;
  /*background-color: $hero-green;*/
  background-color: #002147;
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.site-header__mobile-button.lines-nav span.button-lines:hover, .site-header__mobile-button.lines-nav span.button-lines:focus {
  background-color: white;
}
.site-header__mobile-button.lines-nav span.button-lines:focus {
  outline: 2px solid inherit;
}

.site-header__mobile-button.lines-nav:focus span.button-lines,
.site-header__mobile-button.lines-nav:focus span.button-lines::before,
.site-header__mobile-button.lines-nav:focus span.button-lines::after,
.site-header__mobile-button.lines-nav:hover span.button-lines,
.site-header__mobile-button.lines-nav:hover span.button-lines::before,
.site-header__mobile-button.lines-nav:hover span.button-lines::after {
  background-color: #047e8b;
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  /*@include vendor(transition,  background 0.3s);*/
}

.site-header__mobile-button.lines-nav span.button-lines::before,
.site-header__mobile-button.lines-nav span.button-lines::after {
  position: absolute;
  display: block;
  left: 0;
  width: 34px;
  height: 2px;
  /*background-color: $hero-green;*/
  background-color: #002147;
  content: "";
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.site-header__mobile-button.lines-nav span.button-lines::before {
  top: -11px;
}

.site-header__mobile-button.lines-nav span.button-lines::after {
  bottom: -11px;
}

/*.site-header__mobile-button.lines-nav {
  background-color: transparent;
}*/
.site-header__mobile-button.lines-nav span.button-lines {
  /*@include vendor(transition,  background 0s 0.3s);*/
}

.site-header__mobile-button.lines-nav span.button-lines::before,
.site-header__mobile-button.lines-nav span.button-lines::after {
  /*@include vendor(transition-duration,  0.3s, 0.3s);
  @include vendor(transition-delay,   0.3s, 0s);*/
}

.site-header__mobile-button.lines-nav span.button-lines::before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}

.site-header__mobile-button.lines-nav span.button-lines::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}

.site-header__mobile-button.lines-nav.is-active span.button-lines {
  background: none;
}

.site-header__mobile-button.lines-nav.is-active span.button-lines::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.site-header__mobile-button.lines-nav.is-active span.button-lines::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.site-header__mobile-button.lines-nav.is-active span.button-lines::before,
.site-header__mobile-button.lines-nav.is-active span.button-lines::after {
  background-color: #002147;
  /*@include vendor(transition-delay, 0s, 0.3s);*/
}

/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 * 4. Rezise height for responsive images.
 */
img {
  max-width: 100%; /* [1] */
  font-style: italic; /* [2] */
  vertical-align: middle; /* [3] */
  height: auto; /* [3] */
}

.media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

svg {
  fill: currentColor;
  width: 100%;
}

.filled-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SVG Sizing
   ========================================================================== */
.inline-text-icon {
  display: inline-block;
}

/* Hide SVG Region
   ========================================================================== */
.svg-region {
  display: none;
}

.svg-icon {
  width: 1em;
  height: 1em;
  position: relative;
  top: 0;
}

/*--------------------------------------------------------------
# Navgitaion
--------------------------------------------------------------*/
.site-header__navigation {
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  padding: 30px 0;
}
@media (min-width: 61.25em) {
  .site-header__navigation {
    padding: 30px 0 0;
  }
}

.site-header__nav-btns > li,
.site-header__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media (min-width: 46.25em) {
  .site-header__nav-btns > li,
  .site-header__navigation {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}

.site-header__nav-btns > li {
  display: block;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 46.25em) {
  .site-header__nav-btns > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.site-header__nav-btns {
  display: none;
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  position: absolute;
  padding: 0 30px;
  z-index: 1040;
}
@media (min-width: 61.25em) {
  .site-header__nav-btns {
    /*height: 100%;*/
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    top: auto;
    padding: 0;
  }
}

.site-header__nav-btns.is-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #047e8b;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.site-header__nav-btns a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: black;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
.site-header__nav-btns a:hover, .site-header__nav-btns a:focus {
  text-decoration: underline;
}
.site-header__nav-btns a:focus {
  outline: 2px solid inherit;
}

.site-header__nav-btns > li > a {
  padding: 15px 30px;
  color: white;
}
@media (min-width: 61.25em) {
  .site-header__nav-btns > li > a {
    padding: 0;
    color: black;
  }
}

.site-header__nav-btns > li > ul > li a {
  padding: 5px 0;
}
@media (min-width: 61.25em) {
  .site-header__nav-btns > li > ul > li a {
    padding: 0;
  }
}

.site-header__nav-btns .current-menu-item a {
  color: #047e8b;
}

.site-header__nav-btns > li {
  position: relative;
}
@media (min-width: 61.25em) {
  .site-header__nav-btns > li {
    padding-right: 25px;
    padding-bottom: 30px;
  }
}

.site-header__nav-btns > .menu-item-has-children > a::after {
  display: none;
  border-color: #050505 transparent transparent transparent;
  border-style: solid;
  border-width: 5px;
  content: "";
  margin-left: 8px;
  margin-top: 3px;
  vertical-align: middle;
}
@media (min-width: 61.25em) {
  .site-header__nav-btns > .menu-item-has-children > a::after {
    display: inline-block;
  }
}

.site-header__nav-btns .mobile-arrow {
  padding: 0;
  width: 50px;
  height: 45px;
  position: absolute;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  right: 0;
}

.site-header__nav-btns .mobile-arrow:after {
  content: "";
  display: block;
  border: 5px solid transparent;
  border-top-color: white;
  position: absolute;
  z-index: 1001;
  right: 20px;
  top: 50%;
  margin-top: -2px;
}

.site-header__nav-btns .mobile-arrow.is-active:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  top: 16px;
}

@media (min-width: 61.25em) {
  .site-header__nav-btns .sub-menu:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    border: 10px solid transparent;
    border-bottom-color: #e3e3e3;
    left: 20px;
    margin-left: -10px;
    top: -20px;
  }
}

.site-header__nav-btns > li .sub-menu {
  background-color: #e3e3e3;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
  -moz-box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
  -ms-box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
  -o-box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
  box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
  display: none;
  padding: 20px 30px 22px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 282px;
}

.site-header__nav-btns > li .sub-menu.is-active {
  display: block;
  position: static;
  width: 100%;
}

.site-header__nav-btns > li .sub-menu li {
  line-height: 25px;
  list-style: none;
}

.site-header__nav-btns > li .sub-menu a {
  font-weight: 400;
}

@media (min-width: 61.25em) {
  .site-header__nav-btns > li:hover .sub-menu, .site-header__nav-btns > li:focus .sub-menu {
    display: block;
  }
  .site-header__nav-btns > li:focus {
    outline: 2px solid inherit;
  }
}
/**
 * Navigation Slide  Panel
 */
/*.navigation-panel_holder {
	position: absolute;
	top: -$site-gap-mobile;
	left: -$site-gap-mobile;
	z-index: 200;
	overflow: hidden;

	@include mq(tablet){
		position: relative;
		top: 0;
		left: 0;
		overflow: auto;

	}
}*/
/* ==========================================================================
   #DEFAULT FORM LAYOUTS
   ========================================================================== */
.cdt-application-form {
  border-top: 1px solid #383838;
  padding-top: 30px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

/**
 * A basic form reset
 *
 */
label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #002147;
  cursor: pointer;
  margin-bottom: 15px;
  display: block;
  font-weight: 400;
}

label.frm_primary_label,
.frm_primary_label {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #002147;
  cursor: pointer;
  margin-bottom: 20px;
}

.label-radio,
.label-radio {
  font-size: 1.125rem;
}

input {
  display: block;
}

input[type=radio],
input[type=radio] {
  display: inline-block;
}

input[type=number],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea,
select {
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  display: block;
  height: 50px;
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  border: 1px solid;
  box-sizing: border-box;
  border-color: #002147;
  background-color: white;
  padding: 10px;
  color: #002147;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  font-weight: 700;
}
@media (min-width: 46.25em) {
  input[type=number],
  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=email],
  input[type=month],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=text],
  input[type=time],
  input[type=url],
  input[type=week],
  textarea,
  select {
    padding: 13px;
  }
}
input[type=number]:hover, input[type=number]:focus,
input[type=date]:hover,
input[type=date]:focus,
input[type=datetime]:hover,
input[type=datetime]:focus,
input[type=datetime-local]:hover,
input[type=datetime-local]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=month]:hover,
input[type=month]:focus,
input[type=password]:hover,
input[type=password]:focus,
input[type=search]:hover,
input[type=search]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=text]:hover,
input[type=text]:focus,
input[type=time]:hover,
input[type=time]:focus,
input[type=url]:hover,
input[type=url]:focus,
input[type=week]:hover,
input[type=week]:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  -webkit-box-shadow: 0 0 0 2px #047e8b;
  -moz-box-shadow: 0 0 0 2px #047e8b;
  -ms-box-shadow: 0 0 0 2px #047e8b;
  -o-box-shadow: 0 0 0 2px #047e8b;
  box-shadow: 0 0 0 2px #047e8b;
}
input[type=number]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus,
select:focus {
  outline: 2px solid inherit;
}

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea,
select {
  width: 100%;
}

textarea {
  min-height: 200px;
}

/**
 * Comment/Review Submit Button
 */
input[type=submit],
input[type=reset],
input[type=button] {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase;
  background-color: red;
  color: white;
  line-height: 1;
  /*			padding-top: $site-header-padding - 5px;
  			padding-bottom: $site-header-padding - 5px;*/
}
input[type=submit]:hover, input[type=submit]:focus,
input[type=reset]:hover,
input[type=reset]:focus,
input[type=button]:hover,
input[type=button]:focus {
  background-color: red;
  text-decoration: none;
}
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  outline: 2px solid inherit;
}
@media (min-width: 46.25em) {
  input[type=submit],
  input[type=reset],
  input[type=button] {
    /*width: 46.5%;*/
  }
}

.frm_form_field {
  margin-bottom: 20px;
  margin-top: 30px;
}

button[type=submit] {
  font-size: 18px;
  font-size: 1.125rem;
  border: 1px solid #002147;
  background-color: white;
  padding: 20px;
  color: #002147;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
button[type=submit]:hover, button[type=submit]:focus {
  background-color: #002147;
  color: white;
}
button[type=submit]:focus {
  outline: 2px solid inherit;
}

button[type=submit] svg {
  margin-left: 15px;
}

.frm_submit,
.frm_form_field {
  clear: both;
}

.frm_submit {
  margin-top: 30px;
  float: left;
}

.frm_error,
.frm_required {
  color: red;
}

.frm_error {
  font-style: italic;
  font-size: 12px;
  font-size: 0.75rem;
}

.frm_description:not(.frm_section_spacing) {
  color: rgba(111, 113, 115, 0.96);
  font-size: 13px;
  font-size: 0.8125rem;
  padding-top: 15px;
  line-height: 20px;
}

.frm_description.frm_section_spacing {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  color: #484848;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: 400;
}

.horizontal_radio .frm_radio {
  width: 100%;
}
@media (min-width: 46.25em) {
  .horizontal_radio .frm_radio {
    width: auto;
  }
}

.frm_section_heading h3 {
  border-top: 5px solid #EAEAEA;
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.cdt-application-form .frm_dropzone.dz-clickable.frm_single_upload {
  max-width: 100%;
}

.js .cdt-application-form .frm_form_fields .frm_radio {
  padding-left: 40px;
  position: relative;
  margin-bottom: 15px;
  line-height: 28px;
  margin-right: 20px;
}

.js .frm_form_fields .frm_radio label {
  margin-bottom: 0;
}

/*.frm_forms .frm_form_field .frm_radio,
	.frm_forms .frm_form_field .frm_radio + .frm_radio {
		margin-bottom: 20px;
	}*/
.js .frm_form_fields label {
  cursor: pointer;
  padding: 0;
  display: block;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.js .frm_form_fields input[type=radio] {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin: 0;
  filter: alpha(opacity=0);
  opacity: 0;
}

.js .frm_form_fields input:checked + span.custom-radio::after {
  zoom: 1;
  filter: alpha(opacity=100);
  opacity: 1;
}

.js .frm_radio [type=radio] + span.custom-radio {
  color: #047E8B;
}

.js .frm_radio [type=radio] + span.custom-radio::before {
  content: "";
  border: 2px solid;
  background: transparent;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  border-color: #333;
}

.js .frm_radio [type=radio] + span.custom-radio::before {
  content: "";
  border: 2px solid;
  background: transparent;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  border-color: #333;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.js .frm_radio [type=radio]:focus + span.custom-radio::before {
  outline: 3px solid transparent;
  outline-offset: 3px;
  -webkit-box-shadow: 0 0 0 4px #047E8B;
  box-shadow: 0 0 0 4px #047E8B;
}

.js .frm_radio [type=radio] + span.custom-radio::after {
  content: "";
  border: 7px solid;
  width: 0;
  height: 0;
  position: absolute;
  top: 8px;
  left: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  zoom: 1;
  filter: alpha(opacity=0);
  opacity: 0;
}

.js .frm_radio [type=radio] + span.custom-radio {
  color: #047E8B;
}

.js .frm_radio [type=radio] + span.custom-radio::before {
  content: "";
  border: 2px solid;
  background: transparent;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  border-color: #333;
}

.js .frm_radio [type=radio] + span.custom-radio::before {
  content: "";
  border: 2px solid;
  background: transparent;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  border-color: #333;
}

.js .frm_radio [type=radio]:focus + span.custom-radio::before {
  outline: 3px solid transparent;
  outline-offset: 3px;
  -webkit-box-shadow: 0 0 0 4px red;
  box-shadow: 0 0 0 4px red;
}

.js .frm_radio [type=radio] + span.custom-radio::after {
  /* content: "";
   position: absolute;
  top: 9px;
  left: 8px;
  width: 15px;
  height: 9px;
   -webkit-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   transform: rotate(-45deg);
   border: solid;
       border-top-color: currentcolor;
       border-top-width: medium;
       border-right-width: medium;
       border-bottom-width: medium;
       border-left-width: medium;
   border-width: 0 0 5px 5px;
   border-top-color: transparent;
   opacity: 0;
   background: transparent;*/
}

/*.frm_forms  {
	width: percentage(2/3);
	padding-top: $gutter-width*2;
}*/
/*@import "components/buttons";
@import "components/navigation";
@import "components/mobile-panel";
@import "components/forms";
@import "components/swiper";*/
/*@import "site/header-slider";*/
.site-header {
  padding: 30px 0 0 0;
  z-index: 1;
}

@media (min-width: 61.25em) {
  .site-header__inner.g-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}

.site-header__branding {
  /*width: 66%;*/
  /*height: 100px;*/
  /*padding: $gutter-width $gutter-width;*/
  padding-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 46.25em) {
  .site-header__branding {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    /*@include flexbox;

    */
    padding: 30px 0;
  }
}
@media (min-width: 61.25em) {
  .site-header__branding {
    /*@include align-items(center);*/
  }
}
@media (min-width: 81.25em) {
  .site-header__branding {
    /*padding: $gutter-width 0;*/
  }
}

.site-header__branding-logos {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 30px;
}
@media (min-width: 46.25em) {
  .site-header__branding-logos {
    padding-top: 0;
    margin-left: auto;
    width: 33.3333333%;
    display: block;
  }
}
@media (min-width: 61.25em) {
  .site-header__branding-logos {
    display: inline-block;
  }
}

.uni-logo,
.site-logo {
  display: inline-block;
}
@media (min-width: 46.25em) {
  .uni-logo,
  .site-logo {
    width: auto;
  }
}
@media (min-width: 61.25em) {
  .uni-logo,
  .site-logo {
    /*width: 25%;*/
  }
}

.site-title,
.uni-logo {
  /*	margin-top: $box-padding;

  	@include mq(tablet) {

  		margin-top: 0;
  	}
  	*/
}

.feedback-btn {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  color: #ffa606;
  font-weight: 700;
  text-align: right;
  padding: 20px;
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: none;
  border: 1px solid;
}
.feedback-btn:hover, .feedback-btn:focus {
  color: white;
  background-color: #ffa606;
}
.feedback-btn:focus {
  outline: 2px solid inherit;
}

.feedback-btn__first-line {
  font-size: 16px;
  font-size: 1rem;
  display: block;
  text-transform: uppercase;
}

.site-title {
  /*max-width: 400px;*/
  font-family: Georgia, Times, "Times New Roman", serif;
  display: inline-block;
  margin-bottom: 0;
  width: auto;
  line-height: 35px;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 400;
  color: #002147;
}
@media (min-width: 46.25em) {
  .site-title {
    line-height: 33px;
    float: left;
    max-width: 330px;
    padding-right: 0;
  }
}
@media (min-width: 61.25em) {
  .site-title {
    /*margin-left: $gutter-width;*/
  }
}

.site-title a {
  text-decoration: none;
  color: #002147;
}
.site-title a:hover, .site-title a:focus {
  color: #047e8b;
}
.site-title a:focus {
  outline: 2px solid inherit;
}

.site-header__accessibility-icon {
  font-size: 20px;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  color: #002147;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 46.25em) {
  .site-header__accessibility-icon {
    /*margin-left: auto;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    padding-top: 0;
    padding-right: 30px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .site-header__accessibility-icon:hover, .site-header__accessibility-icon:focus {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    color: #047e8b;
  }
  .site-header__accessibility-icon:focus {
    outline: 2px solid inherit;
  }
}
@media (min-width: 61.25em) {
  .site-header__accessibility-icon {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    position: relative;
    top: -15px;
  }
}
@media (min-width: 81.25em) {
  .site-header__accessibility-icon {
    padding-right: 0;
  }
}

.site-header__enquiry-icon.is-open {
  color: #047e8b;
}

.site-header__enquiry-icon {
  padding-bottom: 0;
  margin-left: 0;
}

/*--------------------------------------------------------------
# Page Elements
--------------------------------------------------------------*/
/*html.is-active body:before,
body:before{
    content: "";
    position: fixed;
    background: white;
    left: 0;
    right: 0;
    height: $site-gap-mobile;
	z-index: 2;
	@include menu-animation;

	@include mq(tablet) {
		height: $site-gap-desktop;
	}

}
html.is-active body:before,
body:before {
    top: 0;
}*/
/*Debugging*/
/** {
    outline: 1px solid red;
	opacity: 1 !important; 
	visibility: visible !important;
}*/
/** { background-color: rgba(255,0,0,.2); }
* * { background-color: rgba(0,255,0,.2); }
* * * { background-color: rgba(0,0,255,.2); }
* * * * { background-color: rgba(255,0,255,.2); }
* * * * * { background-color: rgba(0,255,255,.2); }
* * * * * * { background-color: rgba(255,255,0,.2); }
* * * * * * * { background-color: rgba(255,0,0,.2); }
* * * * * * * * { background-color: rgba(0,255,0,.2); }
* * * * * * * * * { background-color: rgba(0,0,255,.2); }*/
html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  height: 100%;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

h1, h2, h3, h4 {
  font-weight: 400;
}

h1, h2, h3, h4, p {
  padding: 0;
  margin: 0;
}

h1 {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: 400;
  font-size: 34px;
  font-size: 2.125rem;
  margin-bottom: 30px;
}
@media (min-width: 61.25em) {
  h1 {
    font-size: 55px;
    font-size: 3.4375rem;
    margin-bottom: 60px;
  }
}

h3 {
  font-weight: 700;
}

.page-content li,
.page-content h2, .page-content h3, .page-content h4 {
  color: #050505;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: 400;
}

/*.page-content h2,.page-content h3,.page-content h4 {
	margin-top: -$gutter-width;
}


.page-content h2 + h3,
.page-content h3 + h4, {
	margin-top: $gutter-width;
}*/
.page-content h2 {
  font-size: 38px;
  font-size: 2.375rem;
}

.page-content h3 {
  font-size: 30px;
  font-size: 1.875rem;
}

.page-content h4 {
  font-size: 25px;
  font-size: 1.5625rem;
}

.page-content li {
  line-height: 30px;
  font-size: 18px;
  font-size: 1.125rem;
}

.page-content li:not(:last-child) {
  margin-bottom: 15px;
}

.site-m-i {
  max-width: 1300px;
}

.site-m-i {
  margin: 0 auto;
  position: relative;
  padding: 0 30px;
}

.site-m-i.narrow {
  max-width: 750px;
  width: 100%;
}

.empty-visual {
  height: 100%;
  display: block;
}

.body-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.f-box {
  padding: 25px;
}

.g-box.flex-c {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-c-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

a {
  color: inherit;
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

a:not([class])[target=_blank] {
  color: #047e8b;
}

a:not(.partners-link)[target=_blank]::after,
a:not(.site-header__accessibility-icon)[target=_blank]::after {
  content: url(../images/external-link-alt.svg);
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 3px;
  vertical-align: super;
}

.page-content li a,
.page-content p a {
  text-decoration: underline;
  color: #047e8b;
}
.page-content li a:hover, .page-content li a:focus,
.page-content p a:hover,
.page-content p a:focus {
  text-decoration: none;
}
.page-content li a:focus,
.page-content p a:focus {
  outline: 2px solid inherit;
}

.page-content > * + * {
  margin-top: 30px;
}

.body-copy li,
.body-copy p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  color: #484848;
}

p:not(:last-child) {
  margin-bottom: 25px;
}
@media (min-width: 46.25em) {
  p:not(:last-child) {
    margin-bottom: 30px;
  }
}

.page-content__title,
.page-content {
  word-wrap: break-word;
  position: relative;
}
@media (min-width: 46.25em) {
  .page-content__title,
  .page-content {
    padding-left: 15px;
  }
}

.page-content {
  padding-bottom: 90px;
}

.page-content li,
.page-content p {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: 400;
}

@media (min-width: 46.25em) {
  .page-content::before {
    content: "";
    display: none;
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #EAEAEA;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}

.page-content__title {
  /*margin-top: $gutter-width/2;
  margin-left: -$gutter-width/2;
  margin-bottom: 0;
  border-top: 5px solid $border-grey-dark;
  border-left: 5px solid $border-grey-dark;
  background-color: $uni-teal;

  z-index: 1;
  position: relative;*/
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  display: inline-block;
}
@media (min-width: 46.25em) {
  .page-content__title {
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 50%;
  }
}

.page-content__title:after {
  background-color: rgba(234, 234, 234, 0.5);
  margin-top: -25px;
  display: block;
  height: 28px;
  content: "";
  width: 100%;
}

.site-header__title {
  font-weight: 400;
  margin-bottom: 0;
}

/*.page-content__title:after {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 100%;
	background-color: $uni-teal;
	z-index: 0;
	top: 0;
	bottom: 0;
}

*/
.page-content p:first-child {
  /*	margin-top: $gutter-width;


  	@include mq(tablet){
  		background-color: white;

  	display: block;
  	margin-left: -150px;
  	z-index: 1;

  	padding: 10px;

  	}	*/
}

.page-content p {
  color: #484848;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
}

.page-content blockquote {
  border-top: 1px solid #EAEAEA;
  padding-top: 15px;
  margin-bottom: 30px;
  font-weight: 700;
  font-style: italic;
}
@media (min-width: 46.25em) {
  .page-content blockquote {
    float: right;
    width: 50%;
  }
}

.page-content blockquote p {
  font-size: 25px;
  font-size: 1.5625rem;
}

/*.page-content div.wp-caption {
	position: relative;
	float: left;
	width: 18.75rem;
	margin-top: 0.375rem;
	margin-bottom: 0.75rem;
	margin-right: 1.25rem;
	line-height: 0;

	@include mq(tablet){
		margin-left: -10rem;
	}
}*/
.page-content .wp-caption-text {
  color: rgba(111, 113, 115, 0.96);
  font-size: 13px;
  font-size: 0.8125rem;
  padding-top: 15px;
  line-height: 20px;
  background-color: white;
  padding-bottom: 15px;
}

.page-content > img,
.page-content > div.wp-caption:not(img) {
  position: relative;
  width: auto;
  height: auto;
  /*margin-top: 0.375rem;
  margin-bottom: 0.75rem;*/
  line-height: 0;
}
@media (min-width: 46.25em) {
  .page-content > img,
  .page-content > div.wp-caption:not(img) {
    margin-left: -10rem;
    margin-right: -10rem;
  }
}

.page-content > img + p {
  margin-top: 30px;
}

.featured-blogs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(234, 234, 234, 0.5);
  border-bottom: 1px solid rgba(234, 234, 234, 0.5);
}

.featured-blogs__article {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 61.25em) {
  .featured-blogs__article {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.featured-blogs__article-image {
  width: 200px;
  height: 200px;
}
@media (min-width: 61.25em) {
  .featured-blogs__article-image {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

.featured-blogs__article-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.featured-blogs__article-content {
  width: 100%;
  padding-top: 30px;
}
@media (min-width: 61.25em) {
  .featured-blogs__article-content {
    padding-top: 0;
    padding-left: 30px;
  }
}

.featured-blogs__article-content p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 21px;
  padding-right: 30px;
  color: #656565;
}

.featured-blogs__article-title {
  font-weight: 700;
  line-height: 25px;
  color: #434343;
  margin-bottom: 15px;
  font-size: 19px;
  font-size: 1.1875rem;
}

.featured-blogs__article-date {
  font-weight: 700;
  color: #047e8b;
  font-size: 11px;
  font-size: 0.6875rem;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.featured-blogs__title {
  position: relative;
}

.featured-blogs__title h3 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: Georgia, Times, "Times New Roman", serif;
  line-height: 32px;
  color: #696969;
  margin-bottom: 60px;
}

.page-nav__container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-nav {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.page-nav > li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.page-nav > li > a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
}
.page-nav > li > a:hover, .page-nav > li > a:focus {
  text-decoration: underline;
}
.page-nav > li > a:focus {
  outline: 2px solid inherit;
}

.vending-table {
  width: 100%;
  border-collapse: collapse;
}

/* Zebra striping */
.vending-table tr:nth-of-type(odd) {
  background-color: rgba(111, 113, 115, 0.09);
}

.vending-table th {
  background: rgba(4, 126, 139, 0.9);
  color: white;
}

.vending-table td, .vending-table th {
  padding: 15px;
  border: 1px solid #ccc;
  text-align: left;
}

@media (max-width: 46.24em) {
  /* Force table to not be like tables anymore */
  table, thead, tbody, th, td, tr {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  .vending-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .vending-table tr {
    border: 1px solid #ccc;
  }
  .vending-table td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  .vending-table td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  /*
  Label the data
  */
  .vending-table td:nth-of-type(1):before {
    content: "";
  }
  .vending-table td:nth-of-type(2):before {
    content: "Cold";
  }
  .vending-table td:nth-of-type(3):before {
    content: "Snack";
  }
  .vending-table td:nth-of-type(4):before {
    content: "Hot Drinks";
  }
}
.grey-gradient {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,ffffff+100 */
  background-color: rgba(116, 118, 120, 0.09); /* Old browsers */
  background-image: -moz-linear-gradient(top, rgba(116, 118, 120, 0.09) 0%, #ffffff 50%); /* FF3.6-15 */
  background-image: -webkit-linear-gradient(top, rgba(116, 118, 120, 0.09) 0%, #ffffff 50%); /* Chrome10-25,Safari5.1-6 */
  background-image: linear-gradient(to bottom, rgba(116, 118, 120, 0.09) 0%, #ffffff 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.example-dialog-trigger {
  display: inline-block;
  padding: 0;
  overflow: hidden;
  border: none;
  background: none;
  color: var(--theme); /* You probably need to change this! */
  text-decoration: underline;
}

.example-dialog-trigger:hover,
.example-dialog-trigger:focus {
  text-decoration: none;
}

.example-dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease-out;
}

.example-dialog.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.example-dialog-container {
  width: 100%;
  max-width: 30em;
  margin: auto;
  transform: translateY(-1em) scale(0.95);
  background-color: white;
  transition: transform 0.25s ease-out;
}

.example-dialog.is-active .example-dialog-container {
  transform: translateY(0) scale(1);
}

.example-dialog-header,
.example-dialog-content,
.example-dialog-footer {
  padding: 0.5em 1em;
}

.example-dialog-header {
  background-color: green;
  color: red;
  font-weight: bold;
}

.example-dialog-header h5 {
  margin: 0;
  font: inherit;
}

.example-dialog-footer {
  background-color: whitesmoke;
  text-align: right;
}

.example-dialog-footer button {
  display: inline-block;
  padding: 0.25em 0.5em;
  border: none;
  background-color: green;
  color: white;
}

.example-dialog-footer button:hover,
.example-dialog-footer button:focus {
  background-color: white;
  color: var(--theme);
}

/*.example-collapsible-button {
	display: flex;
	width: 100%;
	margin-top: .5em;
	padding: .5em;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-content: center;
	box-sizing: border-box;
	border: none;
	background-color: white;
	text-align: left;
}
.example-collapsible-button.is-open {
	background-color: red; /* You probably need to change this! *!/
	color: white;
}
.example-collapsible-button::after {
	font-size: 1.5em;
	line-height: 1;
	content: "+";
}
.example-collapsible-button.is-open::after {
	content: "–";
}*/
.contact-collapsible-panel {
  max-height: 0;
  margin-bottom: 0.5em;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.contact-collapsible-panel.is-open {
  max-height: 100%;
  transition: max-height 1s ease-in-out;
}

.contact-collapsible-panel-content {
  padding: 0;
}

/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
.site-footer {
  background-color: #f7f7f7;
  padding: 30px 0;
  color: #484848;
}

.site-footer .copy {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 30px;
  color: #484848;
}
.site-footer__inner {
  padding-top: 25px;
  border-top: 0.0625rem solid #EAEAEA;
}

.site-footer__cred {
  position: relative;
}

.footer-widget__col:not(:last-child)::after,
.site-footer__cred::after {
  content: "";
  display: none;
  position: absolute;
  height: 100px;
  width: 0.0625rem;
  background-color: #EAEAEA;
  right: -15px;
  top: -25px;
}
@media (min-width: 46.25em) {
  .footer-widget__col:not(:last-child)::after,
  .site-footer__cred::after {
    display: block;
  }
}

.widgets-row {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-widget__col {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.footer-widget__col:not(:last-child)::after {
  height: 100%;
  top: 0;
  bottom: 0;
}

@media (min-width: 46.25em) {
  .site-footer__detail {
    grid-column: 2/-1;
  }
}

.site-footer__detail__logos {
  padding: 0;
}
@media (min-width: 46.25em) {
  .site-footer__detail__logos {
    margin-top: -40px;
  }
}

.site-footer__detail__logos li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media (min-width: 46.25em) {
  .site-footer__detail__logos li {
    width: 25%;
  }
}

@media (min-width: 46.25em) {
  .site-footer__detail__logos li:last-child {
    width: 10%;
  }
}

.site-footer__detail__logos li:not(:last-child) {
  padding-right: 30px;
}

.site-footer__detail__logos li img {
  width: 100%;
}

.site-footer__nav {
  border-top: 0.0625rem solid #EAEAEA;
  padding-top: 30px;
  margin-top: 30px;
}

.site-footer__nav .sub-menu {
  display: none;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.hero-intro {
  background-size: cover;
  height: 800px;
  position: relative;
}

.personal-home__image,
.hero-intro img {
  top: auto;
  bottom: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  /*	border-top: 10px solid $uni-teal;
  	border-right: 10px solid $uni-teal;*/
  height: 40%;
  z-index: -1;
}
@media (min-width: 46.25em) {
  .personal-home__image,
  .hero-intro img {
    width: 43.71%;
    left: 0;
    top: 0;
    height: auto;
  }
}

.personal-home__image {
  border-top: 0;
  border-right: 0;
  border-left: 10px solid #047e8b;
}
@media (min-width: 46.25em) {
  .personal-home__image {
    width: 43.71%;
    left: auto;
    top: 0;
    right: 0;
    height: 50%;
  }
}

.personal-intro__content,
.hero-intro__content {
  font-family: Georgia, Times, "Times New Roman", serif;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: -1;
}
@media (min-width: 46.25em) {
  .personal-intro__content,
  .hero-intro__content {
    width: 48.84%;
    margin-left: auto;
  }
}
@media (min-width: 61.25em) {
  .personal-intro__content,
  .hero-intro__content {
    padding-top: 60px;
  }
}

.personal-intro__content {
  margin-right: auto;
  margin-left: 0;
}

.page-content p:first-child,
.personal-intro__content h2,
.personal-detail__row h2,
.hero-intro__content p:first-of-type {
  font-weight: 700;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #047e8b;
  line-height: 30px;
}
@media (min-width: 46.25em) {
  .page-content p:first-child,
  .personal-intro__content h2,
  .personal-detail__row h2,
  .hero-intro__content p:first-of-type {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 35px;
  }
}

.site-header__title,
.page-content p:first-child {
  color: #050505;
  font-weight: 400;
}

.hero-intro__content p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
  color: rgba(5, 5, 5, 0.8);
}
@media (min-width: 46.25em) {
  .hero-intro__content p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 35px;
  }
}

.s-spacing {
  padding: 30px 0;
}
@media (min-width: 46.25em) {
  .s-spacing {
    padding: 60px 0;
  }
}

.s-spacing-large {
  padding: 60px 0;
}
@media (min-width: 46.25em) {
  .s-spacing-large {
    padding: 90px 0;
  }
}

.home-notices {
  background-color: #EAEAEA;
  border-top: 5px solid #047e8b;
  border-bottom: 5px solid #047e8b;
}

.home-notices__content.flex-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.home-notices__content .back-block {
  font-weight: 700;
  font-size: 25px;
  font-size: 1.5625rem;
  margin-bottom: 30px;
  line-height: 45px;
}

.home-notices__content p,
.home-notices__content h3 {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #484848;
}
@media (min-width: 46.25em) {
  .home-notices__content p,
  .home-notices__content h3 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 30px;
  }
}

.home-notices__content p .initial-line-highlight {
  color: #050505;
  font-weight: 700;
}

.home-funding {
  background-color: #fafafa;
}

.home-funding h2 {
  grid-column: 1/-1;
  width: 100%;
}

.personal-detail__meta li,
.home-funding .main--grid > .g-box.body-copy:first-of-type p:not(:last-child) {
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 33px;
}

/*.home-notices__content .back-block span,
.home-notices__content .back-block:after{
  background-color: $uni-teal;
}
.back-block {
  position: relative;
  line-height: 1;
  color: #fff;
  display: inline;
  white-space: pre-wrap;
  border: 0 solid $uni-teal ;
  border-width: 0.25em 0; /* 0.25em is roughly equal to one space character. *!/
}

.back-block:after {
  content: "";
  position: absolute;
  top: -0.25em;
  right: 100%;
  bottom: -0.25em;
  width: 0.25em;
}
.back-block > span {
  position: relative;
  z-index: 1;

}*/
.back-block span {
  display: inline;
  background: #047e8b;
  color: white;
  padding: 6px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
}

.back-block span {
  box-shadow: 10px 0 0 #047e8b, -10px 0 0 #047e8b;
}

@media (min-width: 46.25em) {
  .home-notices__content {
    padding-right: 90px;
  }
}

.back-block {
  text-decoration: none;
}

.home-notices img {
  -webkit-box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
  -moz-box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
  -ms-box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
  -o-box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
  box-shadow: 5px 5px 20px 0 rgba(116, 118, 120, 0.3);
}

.page-content hr,
.notice-divide {
  border: none;
  background-color: white;
  height: 5px;
  display: block;
  width: 100%;
  margin: 30px auto;
}

.page-content hr {
  background-color: #EAEAEA;
}

.page-content {
  padding-bottom: 90px;
}

.page-content li,
.page-content p {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: 400;
}

@media (min-width: 46.25em) {
  .page-content::before {
    content: "";
    display: none;
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #EAEAEA;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}

.page-content__title {
  /*margin-top: $gutter-width/2;
  margin-left: -$gutter-width/2;
  margin-bottom: 0;
  border-top: 5px solid $border-grey-dark;
  border-left: 5px solid $border-grey-dark;
  background-color: $uni-teal;

  z-index: 1;
  position: relative;*/
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  display: inline-block;
}
@media (min-width: 46.25em) {
  .page-content__title {
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 50%;
  }
}

.page-content__title:after {
  background-color: rgba(234, 234, 234, 0.5);
  margin-top: -25px;
  display: block;
  height: 28px;
  content: "";
  width: 100%;
}

.site-header__title {
  font-weight: 400;
  margin-bottom: 0;
}

/*.page-content__title:after {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 100%;
	background-color: $uni-teal;
	z-index: 0;
	top: 0;
	bottom: 0;
}

*/
.page-content p:first-child {
  /*	margin-top: $gutter-width;


  	@include mq(tablet){
  		background-color: white;

  	display: block;
  	margin-left: -150px;
  	z-index: 1;

  	padding: 10px;

  	}	*/
}

.page-content p {
  color: #484848;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
}

.page-content blockquote {
  border-top: 1px solid #EAEAEA;
  padding-top: 15px;
  margin-bottom: 30px;
  font-weight: 700;
  font-style: italic;
}
@media (min-width: 46.25em) {
  .page-content blockquote {
    float: right;
    width: 50%;
  }
}

.page-content blockquote p {
  font-size: 25px;
  font-size: 1.5625rem;
}

/*.page-content div.wp-caption {
	position: relative;
	float: left;
	width: 18.75rem;
	margin-top: 0.375rem;
	margin-bottom: 0.75rem;
	margin-right: 1.25rem;
	line-height: 0;

	@include mq(tablet){
		margin-left: -10rem;
	}
}*/
.page-content .wp-caption-text {
  color: rgba(111, 113, 115, 0.96);
  font-size: 13px;
  font-size: 0.8125rem;
  padding-top: 15px;
  line-height: 20px;
  background-color: white;
  padding-bottom: 15px;
}

.page-content > img,
.page-content > div.wp-caption:not(img) {
  position: relative;
  width: auto;
  height: auto;
  /*margin-top: 0.375rem;
  margin-bottom: 0.75rem;*/
  line-height: 0;
}
@media (min-width: 46.25em) {
  .page-content > img,
  .page-content > div.wp-caption:not(img) {
    margin-left: -10rem;
    margin-right: -10rem;
  }
}

.partner-logos__grid {
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 46.25em) {
  .partner-logos__grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.partner-logos.detail-partners .partner-logos__grid {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.site-header__navigation,
.personal-detail__row,
.upper-border,
.partner-logos {
  border-top: 1px solid #EAEAEA;
}

.partner-logos h2 {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 60px;
}
@media (min-width: 46.25em) {
  .partner-logos h2 {
    margin-bottom: 90px;
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.partner-logos__grid .g-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 46.25em) {
  .partner-logos__grid .g-box {
    width: 25%;
  }
}

.partner-logos__grid a {
  display: block;
  text-align: center;
  padding: 30px 0;
}

.partner-logos__grid img {
  max-height: 200px;
  max-width: 70%;
}

@media (min-width: 46.25em) {
  .partner-logos__grid__item + .partner-logos__grid__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    width: 0.0625rem;
    height: 100%;
    border-left: 0.0625rem solid #EAEAEA;
  }
}

.image-full-w.main--grid {
  grid-gap: 0;
}

/*--------------------------------------------------------------
# Personal
--------------------------------------------------------------*/
@media (min-width: 46.25em) {
  .g-box.personal-detail__profile {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    padding-right: 60px;
  }
}

.personal-detail__profile span,
.personal-detail__profile img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.personal-detail__profile span {
  border: 5px solid #047e8b;
  display: block;
  width: 180px;
  height: 180px;
}
@media (min-width: 46.25em) {
  .personal-detail__profile span {
    position: relative;
    top: -30px;
  }
}

.personal-grid-list .personal-detail__profile img {
  width: 100px;
  height: 90px;
}
.personal-detail .personal-detail__profile img {
  width: 180px;
  height: 170px;
}

.personal-detail__profile img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  display: block;
  height: auto;
  object-fit: cover;
}

.personal-detail__profile:hover img,
.personal-detail__profile:active img {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}

.under-block span {
  display: inline-block;
}

.under-block span:after {
  background-color: rgba(4, 126, 139, 0.5);
  margin-top: -25px;
  display: block;
  height: 28px;
  content: "";
  width: 100%;
}

.personal-detail__row svg,
.personal-detail__meta svg {
  color: #545454;
  margin-right: 15px;
}

@media (min-width: 46.25em) {
  .personal-detail__meta li:last-child svg {
    margin-right: 40px;
  }
}

.personal-detail__meta {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
}
@media (min-width: 61.25em) {
  .personal-detail__meta {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.personal-detail__meta li {
  font-size: 15px;
  font-size: 0.9375rem;
  word-wrap: break-word;
}
@media (min-width: 46.25em) {
  .personal-detail__meta li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    width: 50%;
  }
}

.personal-home {
  position: relative;
  padding-bottom: 30px;
}
@media (min-width: 46.25em) {
  .personal-home {
    padding-bottom: 60px;
  }
}

.personal-detail__row {
  padding-top: 30px;
  margin-top: 30px;
}

.personal-detail__row h2 {
  font-family: Georgia, Times, "Times New Roman", serif;
  margin-bottom: 12.5px;
}

.personal-detail__row ul {
  padding-left: 0;
}
@media (min-width: 46.25em) {
  .personal-detail__row ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -ms-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    -ms-column-gap: 60px;
    -o-column-gap: 60px;
    column-gap: 60px;
  }
}

.personal-detail__row ul li {
  list-style: disc;
}

.personal-detail__row ul li:not(:last-child) {
  margin-bottom: 0;
}

@media (min-width: 46.25em) {
  .personal-detail__row__student {
    margin-left: -60px;
  }
}

@media (min-width: 46.25em) {
  .personal-detail__row.students .body-copy {
    margin-top: -30px;
  }
}

.personal-grid-list {
  margin-top: 0;
  margin-bottom: 60px;
  padding-left: 0;
}

.personal-grid-list .f-box {
  border-bottom: 1px solid rgba(111, 113, 115, 0.3);
  padding: 25px;
}
@media (min-width: 46.25em) {
  .personal-grid-list .f-box {
    border-left: 1px solid rgba(111, 113, 115, 0.3);
    padding: 50px;
  }
}

@media (min-width: 61.25em) {
  .personal-grid-list .f-box:nth-child(2n+1):nth-last-child(-n+2),
  .personal-grid-list .f-box:nth-child(2n+1):nth-last-child(-n+2) ~ li {
    border-bottom: none;
  }
}

@media (min-width: 46.25em) {
  .personal-grid-list .f-box:nth-last-child(-n+1) {
    border-bottom: none;
  }
}

@media (min-width: 61.25em) {
  .personal-grid-list .f-box:last-child {
    /*border-right: 1px solid rgba($uni-grey, 0.5);*/
  }
}

.personal-grid-list .f-box:nth-of-type(1n+1) {
  border-left: none;
}
@media (min-width: 61.25em) {
  .personal-grid-list .f-box:nth-of-type(1n+1) {
    border-left: 1px solid rgba(111, 113, 115, 0.3);
  }
}

@media (min-width: 61.25em) {
  .personal-grid-list .f-box:nth-of-type(2n+1) {
    border-left: none;
  }
}

.personal-grid-list .personal-detail__profile span {
  top: 0;
  width: 100px;
  height: 100px;
}

.personal-grid-list .f-box.flex-c > a {
  text-decoration: none;
}
.personal-grid-list .f-box.flex-c > a:hover, .personal-grid-list .f-box.flex-c > a:focus {
  text-decoration: underline;
  color: #047e8b;
}
.personal-grid-list .f-box.flex-c > a:focus {
  outline: 2px solid inherit;
}

.personal-grid-list .f-box.flex-c > .delivery-block,
.personal-grid-list .f-box.flex-c > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  /*	@include justify-content(center);*/
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.personal-detail__profile {
  margin-right: 25px;
}

.personal-grid-list__title {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.personal-grid-list__title::after {
  content: "";
  margin-top: 0.6em;
  width: 50px;
  height: 3px;
  background: rgba(111, 113, 115, 0.3);
  display: block;
}

.personal-grid-list__position {
  font-size: 15px;
  font-size: 0.9375rem;
  display: block;
}

.personal-grid-list__position + .personal-grid-list__position {
  margin-top: 15px;
}

.personal-grid-list__position svg {
  color: rgba(111, 113, 115, 0.8);
}

.personal-grid-list__position .title {
  font-weight: 700;
}

/*@import "site/home";
@import "site/products";
@import "site/about";
@import "site/journal";
@import "site/page-nav";*/
/*@import "site/services";
@import "site/team";
@import "site/about";
@import "site/testimonials";*!/*/
