@charset "UTF-8";
/* Colour variables */
/*
$darkgreen: #E8E45D;

$black: #1F2020;
$light-grey: #f3f3f3;
$blue: #401ED2;
$white: #FFF;

//used for news & media badges
$lightgreen: #559e4f;

$darkgreen: #20345a;
$lightgreen: #48a8c7;

$dark-grey: #444;
$light-grey: #909090;
*/
/* Foreground Colour Styles */
.color-black {
  color: #232525;
}

.color-white {
  color: #FFF;
}

.color-dark-green {
  color: #416B4E;
}

.color-blue {
  color: #457B89;
}

.color-light-green {
  color: #5A915A;
}

.color-light-grey {
  color: #F3F3F3;
}

/* Background Colour Styles */
.bg-black {
  background-color: #232525;
}

.bg-white {
  background-color: #FFF;
}

.bg-blue {
  background-color: #457B89;
}

.bg-dark-green {
  background-color: #416B4E;
}

.bg-light-green {
  background-color: #5A915A;
}

.bg-light-grey {
  background-color: #F3F3F3;
}

.bg-none {
  background-color: transparent;
}

/* Background Gradients */
/*.bg-gradient-blue {
	background-image: linear-gradient(to bottom right, $darkgreen, $lightgreen);
}
*/
.bg-gradient-green {
  background-image: linear-gradient(to bottom right, #416B4E, #5A915A);
}

/* Text Styles */
body {
  font-family: "roboto", sans-serif;
  font-weight: 300;
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.7px;
}

h1 {
  font-family: "roboto", sans-serif;
  font-weight: 400;
  font-size: 95px;
  line-height: 90px;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 65px;
    line-height: 60px;
  }
}

h2 {
  font-family: "roboto", sans-serif;
  font-weight: 700;
  font-size: 50pt;
}

h3 {
  font-family: "roboto", sans-serif;
  font-weight: 700;
  font-size: 25pt;
}
@media (min-width: 1024px) {
  h3 {
    font-size: 54px;
    letter-spacing: -1.5px;
    line-height: 50px;
  }
}

h4 {
  font-family: "roboto", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: -0.4px;
}

h5 {
  font-family: "roboto", sans-serif;
  font-size: 36px;
  font-weight: 400;
}

h6 {
  font-family: "roboto", sans-serif;
  font-size: 18pt;
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
  margin: 0;
  transition: all 0.2s;
}

li::marker {
  color: #416B4E;
}

a {
  color: #457B89;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.text-bold {
  font-weight: 700;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

blockquote {
  font-family: "roboto", sans-serif;
  font-size: 38px;
  line-height: 41px;
  font-weight: 400;
  font-style: italic;
  color: #457B89;
  position: relative;
  margin: 0;
  quotes: "“" "”" "‘" "’";
  max-width: 75%;
}
@media (max-width: 767px) {
  blockquote {
    font-size: 25px;
    line-height: 28px;
    max-width: calc(100% - 50px);
    margin-left: 50px;
  }
}

blockquote p::before {
  content: open-quote;
}

blockquote p::after {
  content: close-quote;
}

.stripe::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 20px;
  background-color: #5A915A;
  height: 100%;
}
@media (max-width: 1279px) {
  .stripe::before {
    left: -40px;
    width: 15px;
  }
}

.stripe-bg-inherit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 20px;
  background-color: inherit;
  height: 100%;
}
@media (max-width: 1279px) {
  .stripe-bg-inherit::before {
    left: -40px;
    width: 15px;
  }
}

blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 20px;
  background-color: #457B89;
  height: 100%;
}
@media (max-width: 1279px) {
  blockquote::before {
    left: -40px;
    width: 15px;
  }
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

/* Generic Flex Styles */
.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-flow: wrap;
}

.flex-nowrap {
  flex-flow: nowrap;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-space-around {
  justify-content: space-around;
}

.flex-justify-space-between {
  justify-content: space-between;
}

.flex-justify-space-evenly {
  justify-content: space-evenly;
}

.flex-align-items-center {
  align-items: center;
}

.flex-align-items-stretch {
  align-items: stretch;
}

.flex-align-items-start {
  align-items: flex-start;
}

.flex-align-items-end {
  align-items: flex-end;
}

.flex-item-half-full, .flex-item-6, .flex-item-half-full-850 {
  flex: 1 1 100%;
}

.flex-item-full, .flex-item-12 {
  flex: 1 1 100%;
}

.flex-item-half {
  flex: 1 1 50%;
}

.flex-item-quarter-half, .flex-item-3 {
  flex: 1 1 50%;
}

.flex-item-quarter-full {
  flex: 1 1 100%;
}

.flex-item-thirty-full {
  flex: 1 1 100%;
}

.flex-item-third-full {
  flex: 1 1 100%;
}

.flex-item-fifth-full {
  flex: 1 1 100%;
}

.flex-item-forty-full {
  flex: 1 1 100%;
}

.flex-item-sixty-full {
  flex: 1 1 100%;
}

.flex-item-third-half, .flex-item-4 {
  flex: 1 1 50%;
}

.flex-item-sixth-third-half {
  flex: 1 1 50%;
}

.flex-item-thirty-sixty-full {
  flex: 1 1 100%;
}

.flex-item-fifth-forty-full {
  flex: 1 1 100%;
}

.flex-item-twothird, .flex-item-8 {
  flex: 1 1 66.666%;
}

.flex-item-twothird-full {
  flex: 1 1 100%;
}

.flex-item-third {
  flex: 1 1 33.333%;
}

.flex-item-half-hidden-600 {
  display: none;
}

.flex-item-half-hidden-700 {
  display: none;
}

.flex-item-half-hidden-800 {
  display: none;
}

.flex-item-half-hidden-850 {
  display: none;
}

.flex-item-half-hidden-900 {
  display: none;
}

@media (min-width: 1025px) {
  .flex-desktop-1 {
    flex: 0 0 100%;
  }
  .flex-desktop-2 {
    flex: 0 0 50%;
  }
  .flex-desktop-3 {
    flex: 0 0 33%;
  }
  .flex-desktop-4 {
    flex: 0 0 25%;
  }
  .flex-desktop-5 {
    flex: 0 0 20%;
  }
  .flex-desktop-6 {
    flex: 0 0 16%;
  }
  .flex-desktop-7 {
    flex: 0 0 14%;
  }
  .flex-desktop-8 {
    flex: 0 0 12.5%;
  }
  .flex-desktop-9 {
    flex: 0 0 11%;
  }
  .flex-desktop-10 {
    flex: 0 0 10%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flex-tablet-1 {
    flex: 0 0 100%;
  }
  .flex-tablet-2 {
    flex: 0 0 50%;
  }
  .flex-tablet-3 {
    flex: 0 0 33%;
  }
  .flex-tablet-4 {
    flex: 0 0 25%;
  }
  .flex-tablet-5 {
    flex: 0 0 20%;
  }
  .flex-tablet-6 {
    flex: 0 0 16%;
  }
  .flex-tablet-7 {
    flex: 0 0 14%;
  }
  .flex-tablet-8 {
    flex: 0 0 12.5%;
  }
  .flex-tablet-9 {
    flex: 0 0 11%;
  }
  .flex-tablet-10 {
    flex: 0 0 10%;
  }
}
@media (max-width: 768px) {
  .flex-mobile-1 {
    flex: 0 0 100%;
  }
  .flex-mobile-2 {
    flex: 0 0 50%;
  }
  .flex-mobile-3 {
    flex: 0 0 33%;
  }
  .flex-mobile-4 {
    flex: 0 0 25%;
  }
  .flex-mobile-5 {
    flex: 0 0 20%;
  }
  .flex-mobile-6 {
    flex: 0 0 16%;
  }
  .flex-mobile-7 {
    flex: 0 0 14%;
  }
  .flex-mobile-8 {
    flex: 0 0 12.5%;
  }
  .flex-mobile-9 {
    flex: 0 0 11%;
  }
  .flex-mobile-10 {
    flex: 0 0 10%;
  }
}
@media (min-width: 900px) {
  .flex-item-half-full, .flex-item-6 {
    flex: 1 1 50%;
  }
  .flex-item-quarter-half, .flex-item-3 {
    flex: 1 1 25%;
  }
  .flex-item-quarter-full {
    flex: 1 1 25%;
  }
  .flex-item-thirty-full {
    flex: 1 1 30%;
  }
  .flex-item-third-full {
    flex: 1 1 33.333%;
  }
  .flex-item-third-half, .flex-item-4 {
    flex: 1 1 33.333%;
  }
  .flex-item-forty-full {
    flex: 1 1 40%;
  }
  .flex-item-sixty-full {
    flex: 1 1 60%;
  }
  .flex-item-sixth-third-half {
    flex: 1 1 33.3333%;
  }
  .flex-item-twothird-full {
    flex: 1 1 66.666%;
  }
  .flex-item-fifth-full {
    flex: 1 1 20%;
  }
  .flex-item-half-hidden-600 {
    flex: 1 1 50%;
    display: inline-block;
  }
  .flex-item-thirty-sixty-full {
    flex: 1 1 60%;
  }
  .flex-item-fifth-forty-full {
    flex: 1 1 40%;
  }
}
@media (min-width: 700px) {
  .flex-item-half-hidden-700 {
    flex: 1 1 50%;
    display: inline-block;
  }
}
@media (min-width: 800px) {
  .flex-item-half-hidden-800 {
    flex: 1 1 50%;
    display: inline-block;
  }
}
@media (min-width: 850px) {
  .flex-item-half-hidden-850 {
    flex: 1 1 50%;
    display: inline-block;
  }
  .flex-item-half-full-850 {
    flex: 1 1 50%;
  }
}
@media (min-width: 900px) {
  .flex-item-sixth-third-half {
    flex: 1 1 16.6666%;
  }
  .flex-item-half-hidden-900 {
    flex: 1 1 50%;
    display: inline-block;
  }
}
@media (min-width: 1125px) {
  .flex-item-thirty-sixty-full {
    flex: 1 1 30%;
  }
  .flex-item-fifth-forty-full {
    flex: 1 1 20%;
  }
}
.flex-no-grow {
  flex-grow: 0;
}

.flex-auto-grow {
  flex-grow: 1;
}

.flex-no-shrink {
  flex-grow: 0;
}

.flex-auto-shrink {
  flex-grow: 1;
}

@media (min-width: 900px) {
  .flex-wrap-md {
    flex-flow: wrap;
  }
  .flex-nowrap-md {
    flex-flow: nowrap;
  }
  .flex-auto-grow-md {
    flex-grow: 1;
  }
  .flex-no-grow-md {
    flex-grow: 0;
  }
  .flex-auto-shrink-md {
    flex-shrink: 1;
  }
  .flex-no-shrink-md {
    flex-shrink: 0;
  }
}
/* Nav Styles */
.body-no-scroll {
  overflow-y: hidden;
}

.anchor-link {
  scroll-margin-top: 120px;
}

/* nav layouts */
.nav {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #FFF;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  z-index: 1000;
  height: 120px;
  justify-content: flex-end;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  transition: height 0.5s;
}
@media (min-width: 1280px) {
  .nav {
    height: 120px;
  }
}

.nav-classic {
  justify-content: flex-start;
}

.nav-center {
  justify-content: center;
}

.nav-stack {
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
}

.nav-stack-center {
  justify-content: center;
  flex-wrap: wrap;
}

/* transparency styles */
.nav-transparent {
  background-color: rgba(255, 255, 255, 0);
}

.nav-semi-transparent {
  background-color: rgba(255, 255, 255, 0.5);
}

/* inset style */
.nav-inset {
  width: calc(100% - 40px);
  margin: 20px;
}

.nav-dropped {
  width: 100%;
  margin: 20px 0;
}

/* fixed and floating styles */
body.nav-fixed {
  margin-top: 100px;
}
@media (min-width: 1280px) {
  body.nav-fixed {
    margin-top: 120px;
  }
}

@supports (position: sticky) {
  body.nav-fixed {
    margin-top: 0;
  }
}
.nav.nav-fixed {
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  top: 32px;
  left: 0;
  z-index: 9999;
}
@media (max-width: 1279px) {
  .nav.nav-fixed {
    top: 0;
  }
}

.secondary-nav.nav-fixed {
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
}

.nav-float {
  position: absolute;
  top: 0;
  left: 0;
}

.logo-small, .logo-xs {
  display: none;
}

.nav-stack .logo {
  padding-top: 20px;
  padding-left: 20px;
}

.nav-stack-center .logo {
  padding-top: 20px;
  width: 100%;
}

.nav-center .logo {
  margin: 0 60px;
}

.menu {
  display: none;
  position: fixed;
  top: 120px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #FFF;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  padding: 20px 0 0 0;
}
@media (min-width: 1280px) {
  .menu {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 30px;
    align-items: center;
    top: 0;
    width: 100%;
    height: calc(100% - 1px);
  }
}

.menu-display {
  display: flex;
  overflow: auto;
  max-width: 100vw;
}

.secondary-nav-mobile {
  box-sizing: border-box;
  max-width: 100vw;
}
@media (min-width: 1024px) {
  .secondary-nav-mobile {
    display: none;
  }
}

.nav-contact-mobile {
  margin-top: auto;
  box-sizing: border-box;
  max-width: 100vw;
}
.nav-contact-mobile a {
  min-height: 120px;
}
@media (min-width: 1024px) {
  .nav-contact-mobile {
    display: none;
  }
}

.nav-login {
  height: 100%;
  margin: 0 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .nav-login {
    min-height: 40px;
    height: auto;
    margin: 0 auto;
  }
}
.nav-login .menu-item:hover {
  color: #5A915A;
  text-decoration: none;
}

.nav-contact {
  height: 100%;
  margin: 0;
}
@media (max-width: 1499px) {
  .nav-contact {
    display: none;
  }
}
.nav-contact .menu-item-block {
  width: 220px;
  box-sizing: border-box;
}

.nav-social-links {
  align-items: center;
  display: flex;
}
@media (max-width: 1023px) {
  .nav-social-links {
    margin: auto auto 0 auto;
    order: 10;
  }
}

/* menu item styles */
.nav .logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #FFF;
  position: relative;
  width: 235px;
  flex-shrink: 0;
}
@media (max-width: 1279px) {
  .nav .logo {
    margin-left: auto;
    margin-right: 0;
  }
}
.nav .logo a {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav .logo img {
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 195px;
  /* min-width:400px; */
  cursor: pointer;
  transition: all 0.5s;
}
@media (max-width: 1279px) {
  .nav .logo img {
    padding: 0 20px;
    object-fit: contain;
  }
}
.nav .menu-caps {
  text-transform: uppercase;
}
.nav .menu-item {
  color: #232525;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  margin: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1279px) {
  .nav .menu-item {
    min-height: 50px;
  }
}
.nav .menu-item-cta {
  background-color: #416B4E;
  color: #232525;
}
.nav .menu-item-block {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5A915A;
  color: #FFF;
  text-decoration: none;
  padding: 0 40px;
  transition: all 0.3s;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .nav .menu-item-block {
    padding: 0 40px;
  }
}
.nav .menu-item-block:hover {
  background-color: #78B178;
  color: #FFF;
}
.nav .menu-item-button {
  padding: 10px 15px;
  margin: 20px 10px;
  border-radius: 4px;
}
.nav .menu-item-social {
  color: #FFF;
  margin: 0 15px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.nav .menu-item-social:hover {
  color: #5A915A;
  text-decoration: none;
}
.nav .nav-button--menu {
  color: #416B4E;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.nav .nav-button--menu .menu-open {
  display: block;
  width: auto;
  height: 120px;
}
.nav .nav-button--menu .menu-close {
  display: none;
  width: auto;
  height: 120px;
}
.nav .nav-button--menu-open .menu-open {
  display: none;
}
.nav .nav-button--menu-open .menu-close {
  display: block;
}
@media (min-width: 1280px) {
  .nav .nav-button--menu {
    display: none;
  }
}
.nav .mobile-menu-dropdown {
  display: none;
}
@media (max-width: 1279px) {
  .nav .mobile-menu-dropdown {
    display: block;
    color: white;
    max-height: 30px;
    width: auto;
    margin-left: auto;
  }
}

.nav-stack .menu-item-block, .nav-stack-center .menu-item-block {
  padding: 20px 25px;
}

.nav-stack .menu-item-button, .nav-stack-center .menu-item-button {
  padding: 10px 15px;
  margin: 10px 10px;
  border-radius: 4px;
}

.mobile-menu-break {
  display: none;
}

/* Submenu styles */
.menu-item-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: calc(120px - 2px);
  box-sizing: border-box;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
  margin: 0 10px;
}
@media (max-width: 1279px) {
  .menu-item-container {
    border: none;
  }
}
@media (max-width: 1279px) {
  .menu-item-container {
    height: auto;
    width: calc(100% - 80px);
    margin-left: 60px;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .menu-item-container:hover {
    border-bottom: 4px solid #5A915A;
  }
}
@media (min-width: 1280px) {
  .menu-item-container:hover .menu-item {
    color: #5A915A;
    text-decoration: none;
  }
}
@media (min-width: 1280px) {
  .menu-item-container:hover {
    transition: 0s;
  }
  .menu-item-container:hover .submenu {
    opacity: 1;
    pointer-events: all;
    transition: 0s;
  }
}

.info-icon {
  min-width: 60px !important;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  position: relative;
}
.menu-inner form {
  display: flex;
  padding: 0 0 20px 60px;
  width: calc(100% - 80px);
}
@media (min-width: 1280px) {
  .menu-inner form {
    display: none;
  }
}
.menu-inner form input {
  width: 100%;
}
.menu-inner form .btn-small {
  padding-left: 0;
}
@media (min-width: 1280px) {
  .menu-inner {
    flex-direction: row;
  }
}

.mobile-submenu {
  display: none;
}
.mobile-submenu.submenu-display {
  display: flex;
  flex-direction: column;
}
.mobile-submenu .return-item {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mobile-submenu .menu-reduce {
  height: 30px;
  width: auto;
  padding: 0 20px 0 0;
}
.mobile-submenu .sub-item {
  color: #232525;
  font-size: 16px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 39px;
}

.submenu {
  position: fixed;
  display: flex;
  opacity: 0;
  pointer-events: none;
  min-width: 240px;
  text-align: left;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #232525;
  left: 0;
  top: 151px;
  right: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0px;
  padding: 60px 150px 60px 385px;
  transition: all 0.2s;
  color: #FFF;
  z-index: 35;
  text-transform: none;
}
@media (max-width: 1499px) {
  .submenu {
    padding: 60px 120px 60px 355px;
  }
}
@media (max-width: 1379px) {
  .submenu {
    padding: 60px 100px 60px 335px;
  }
}
@media (max-width: 1299px) {
  .submenu {
    padding: 60px 80px 60px 295px;
  }
}
.submenu:hover {
  opacity: 1;
}
.submenu .submenu-image {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 235px;
  height: calc(100% + 1px);
  bottom: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.submenu .column {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.submenu .column .menu-top-heading {
  margin-bottom: 50px;
  /*font-weight: 400;*/
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
.submenu .column .submenu-columns {
  width: 100%;
  display: flex;
}
.submenu .column .submenu-columns > * {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  padding-right: 50px;
}
@media (max-width: 1379px) {
  .submenu .column .submenu-columns > * {
    width: 45%;
    padding-right: 30px;
  }
}
.submenu ul {
  margin: 0 0 auto 0;
  padding: 0;
  height: 100%;
}
.submenu .highlight-link {
  align-self: stretch;
  position: relative;
  padding: 70px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 360px;
  width: 360px;
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.submenu .highlight-link h4 {
  color: white;
  font-weight: 400;
}
.submenu .highlight-link-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.submenu .highlight-link .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.submenu .highlight-link:hover {
  text-decoration: none;
}
.submenu .highlight-link:hover .image-container {
  transform: scale(1.05, 1.05);
}
.submenu .highlight-link:hover h4 {
  color: #416B4E;
}

.submenu-display {
  display: block;
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  margin: 5px 0;
}

.submenu-item {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: block;
  position: relative;
}
@media (min-width: 1280px) {
  .submenu-item:hover .submenu-child {
    display: block;
  }
}

.submenu-child {
  position: absolute;
  display: none;
  min-width: 180px;
  text-align: left;
  background-color: #232525;
  left: 100%;
  top: -1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0px;
  padding: 0px;
  transition: all 0.3s;
}

.submenu-link {
  white-space: nowrap;
  /*font-size: 20pt;*/
  /*font-weight: 400;*/
  letter-spacing: -0.6px;
  padding: 6px 0;
  color: #FFF;
  text-decoration: none;
  display: inline-block;
  align-items: center;
  transition: all 0.3s;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .submenu-link {
    padding: 10px 20px;
  }
}
.submenu-link:hover {
  color: #416B4E;
  text-decoration: none;
  transition: all 0.3s;
}

.submenu-link i {
  color: #fff;
  margin-left: auto;
}

/* menu shadow style */
.shadow {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

/* Spacer element for stacking layouts */
.nav .stack-spacer {
  display: none;
}

.nav-stack .stack-spacer, .nav-stack-center .stack-spacer {
  display: inline-block;
  width: 100%;
}

/* Sticky menu height reduction */
@media (min-width: 1280px) {
  .nav-reduce {
    height: 100px;
  }
  .nav-reduce .logo img {
    height: 100px;
    padding: 10px 0 10px 10px;
  }
  .nav-reduce .submenu {
    top: 100px;
  }
  .nav-reduce .menu-item-container {
    height: 100px;
  }
}

/* Search bar */
.search-bar {
  display: none;
  background-color: #FFF;
  z-index: 999;
}
.search-bar .search-form {
  width: 100%;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F3F3F3;
  border-top: none;
  position: relative;
}
.search-bar .search-form-inner {
  width: 100%;
  box-sizing: border-box;
  padding: 0 80px;
}
.search-bar .search-title {
  margin-bottom: 20px;
  display: block;
}
.search-bar form {
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}
.search-bar input[type=text] {
  border: none !important;
  border-bottom: 1px solid #F3F3F3 !important;
}
.search-bar div.editor-field {
  width: 100%;
  max-width: 100% !important;
  padding-right: 10px;
  border-bottom: 1px solid lightgrey;
}
.search-bar .nav-button--close-search {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
}
.search-bar .nav-button--close-search img {
  width: 25px;
  height: auto;
}
.search-bar .nav-button--close-search i {
  color: #416B4E;
}
.search-bar .nav-button--close-search:hover i {
  color: #232525;
}
.search-bar .btn-small {
  padding-left: 0;
}
.search-bar-show {
  display: flex;
  position: absolute;
  bottom: -160px;
  left: 275px;
  right: 240px;
  height: 160px;
  align-items: center;
  justify-content: center;
}

.search-highlight i {
  color: #5A915A;
}

.secondary-nav {
  background-color: #F3F3F3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 32px;
  width: 100%;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
}
@media (max-width: 1279px) {
  .secondary-nav {
    display: none;
  }
}
.secondary-nav .menu-item-container-secondary {
  border-left: solid 2px #FFF;
}
.secondary-nav .menu-item-secondary {
  min-width: 172px;
  padding: 20px;
  box-sizing: border-box;
  color: #5A915A;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 0.2s;
  display: block;
}
.secondary-nav .menu-item-secondary:hover {
  background-color: #416B4E;
  color: #FFF;
  text-decoration: none;
}
.secondary-nav .menu-item-search .menu-item-secondary {
  min-width: 65px;
  border: 0;
  cursor: pointer;
}
.secondary-nav .menu-item-contact {
  display: none;
  background-color: #416B4E;
}
.secondary-nav .menu-item-contact a {
  color: #232525;
}
.secondary-nav .menu-item-contact a:hover {
  background-color: #5A915A;
}
@media (max-width: 1499px) {
  .secondary-nav .menu-item-contact {
    display: block;
  }
}

.mobile-stripe {
  position: absolute;
  left: 20px;
  top: 0px;
  bottom: 0px;
  width: 8px;
  background-color: #416B4E;
}
@media (min-width: 1280px) {
  .mobile-stripe {
    display: none;
  }
}

.mobile-submenu .return-item, .mobile-submenu .sub-item {
  color: #416B4E;
}

.hide-pointer {
  cursor: default !important;
}

.hide-main-menu {
  display: none !important;
  height: 0 !important;
}

.btn-small {
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.1s ease-in-out;
  font-size: 18px;
  position: relative;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
  margin: 0;
  cursor: pointer;
  font-weight: 700;
  background-color: transparent;
  flex-grow: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.btn-small.cta-text-left {
  padding-left: 10px;
}
.btn-small.cta-text-left::after {
  content: " ";
  background-image: url("/images/Arrow link.svg");
  background-color: #FFF;
  background-size: cover;
  background-position: center;
  width: 50px;
  height: 50px;
  margin-left: 20px;
  transition: all 0.2s;
  min-width: 50px;
}
.btn-small.cta-text-left.btn-dark-green::after {
  background-image: url("/images/PPL/links/Arrow link_dark_green.svg");
  background-color: #FFF;
}
.btn-small.cta-text-left.btn-light-green::after {
  background-image: url("/images/PPL/links/Arrow link_green.svg");
  background-color: #FFF;
}
.btn-small.cta-text-left.btn-hover-light-green-white:not(.cta-type-download, .cta-type-email, .cta-type-document-list, .cta-type-search):hover::after {
  background-image: url("/images/PPL/links/Arrow link_green.svg");
}
.btn-small.cta-text-left.btn-hover-light-green-white:not(.cta-type-download, .cta-type-email, .cta-type-document-list, .cta-type-search).hover::after {
  background-image: url("/images/PPL/links/Arrow link_green.svg");
}
.btn-small.cta-text-left.btn-white::after {
  background-image: url("/images/PPL/links/Arrow link_white.png");
  background-color: transparent;
}
.btn-small.cta-text-left {
  /*Email icons*/
}
.btn-small.cta-text-left.cta-type-email::after {
  background-image: url("/images/PPL/email/email.svg");
}
.btn-small.cta-text-left.cta-type-email.btn-white::after {
  background-image: url("/images/PPL/email/email_white.png");
}
.btn-small.cta-text-left.cta-type-email.btn-light-green::after {
  background-image: url("/images/PPL/email/email_light_green.svg");
}
.btn-small.cta-text-left.cta-type-email.btn-dark-green::after {
  background-image: url("/images/PPL/email/email_dark_green.svg");
}
.btn-small.cta-text-left.cta-type-email.btn-hover-light-green-white:hover::after {
  background-image: url("/images/PPL/email/email.svg");
}
.btn-small.cta-text-left.cta-type-email.btn-hover-light-green-white.hover::after {
  background-image: url("/images/PPL/email/email.svg");
}
.btn-small.cta-text-left {
  /*down load icon*/
}
.btn-small.cta-text-left.cta-type-download::after {
  background-image: url("/images/PPL/download/download.svg");
}
.btn-small.cta-text-left.cta-type-download.btn-white::after {
  background-image: url("/images/PPL/download/download_white.png");
}
.btn-small.cta-text-left.cta-type-download.btn-light-green::after {
  background-image: url("/images/PPL/download/download_light_green.svg");
}
.btn-small.cta-text-left.cta-type-download.btn-dark-green::after {
  background-image: url("/images/PPL/download/download_dark_green.svg");
}
.btn-small.cta-text-left.cta-type-download.btn-hover-light-green-white:hover::after {
  background-image: url("/images/PPL/download/download.svg");
}
.btn-small.cta-text-left.cta-type-download.btn-hover-light-green-white.hover::before {
  background-image: url("/images/PPL/download/download.svg");
}
.btn-small.cta-text-left {
  /*document list*/
}
.btn-small.cta-text-left.cta-type-document-list::after {
  background-image: url("/images/PPL/DocumentList/document-list.svg");
}
.btn-small.cta-text-left.cta-type-document-list.btn-white::after {
  background-image: url("/images/PPL/DocumentList/document-list_white.png");
}
.btn-small.cta-text-left.cta-type-document-list.btn-light-green::after {
  background-image: url("/images/PPL/DocumentList/document-list_light_green.svg");
}
.btn-small.cta-text-left.cta-type-document-list.btn-dark-green::after {
  background-image: url("/images/PPL/DocumentList/document-list_dark_green.svg");
}
.btn-small.cta-text-left.cta-type-document-list.btn-hover-light-green-white:hover::after {
  background-image: url("/images/PPL/DocumentList/document-list.svg");
}
.btn-small.cta-text-left.cta-type-document-list.btn-hover-light-green-white.hover::after {
  background-image: url("/images/PPL/DocumentList/document-list.svg");
}
.btn-small.cta-text-left {
  /*Search*/
}
.btn-small.cta-text-left.cta-type-search::after {
  background-image: url("/images/PPL/search/search.svg");
}
.btn-small.cta-text-left.cta-type-search.btn-white::after {
  background-image: url("/images/PPL/search/search_white.png");
}
.btn-small.cta-text-left.cta-type-search.btn-light-green::after {
  background-image: url("/images/PPL/search/search_light_green.svg");
}
.btn-small.cta-text-left.cta-type-search.btn-dark-green::after {
  background-image: url("/images/PPL/search/search_dark_green.svg");
}
.btn-small.cta-text-left.cta-type-search.btn-hover-light-green-white:hover::after {
  background-image: url("/images/PPL/search/search.svg");
}
.btn-small.cta-text-left.cta-type-search.btn-hover-light-green-white.hover::after {
  background-image: url("/images/PPL/search/search.svg");
}
.btn-small.cta-text-left {
  /*Play*/
}
.btn-small.cta-text-left.cta-video-play::after {
  background-image: url("/images/PPL/play/play.svg");
}
.btn-small.cta-text-left.cta-video-play.btn-white::after {
  background-image: url("/images/PPL/play/play_white.png");
}
.btn-small.cta-text-left.cta-video-play.btn-light-green::after {
  background-image: url("/images/PPL/play/play_light_green.svg");
}
.btn-small.cta-text-left.cta-video-play.btn-dark-green::after {
  background-image: url("/images/PPL/play/play_dark_green.svg");
}
.btn-small.cta-text-left.cta-video-play.btn-hover-light-green-white:hover::after {
  background-image: url("/images/PPL/play/play.svg");
}
.btn-small.cta-text-left.cta-video-play.btn-hover-light-green-white.hover::after {
  background-image: url("/images/PPL/play/play.svg");
}
.btn-small.cta-text-left {
  /*Social Links*/
}
.btn-small.cta-text-left.cta-type-facebook::after {
  background-image: url("/images/PPL/social/Facebook_light_green.svg");
}
.btn-small.cta-text-left.cta-type-twitter::after {
  background-image: url("/images/PPL/social/twitter_light_green.svg");
}
.btn-small.cta-text-left.cta-type-linkedin::after {
  background-image: url("/images/PPL/social/linkedin_light_green.svg");
}
.btn-small.cta-text-left.cta-type-youtube::after {
  background-image: url("/images/youtube.svg");
}
.btn-small.cta-text-left:hover {
  text-decoration: none;
  color: #232525;
}
.btn-small.cta-text-left:hover::after {
  background-color: #416B4E;
}
.btn-small.cta-text-right {
  padding-right: 10px;
}
.btn-small.cta-text-right::before {
  content: " ";
  background-image: url("/images/Arrow link.svg");
  background-color: #FFF;
  background-size: cover;
  background-position: center;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  transition: all 0.2s;
  min-width: 50px;
}
.btn-small.cta-text-right.btn-dark-green::before {
  background-image: url("/images/PPL/links/Arrow link_dark_green.svg");
  background-color: #FFF;
}
.btn-small.cta-text-right.btn-light-green::before {
  background-image: url("/images/PPL/links/Arrow link_green.svg");
  background-color: #FFF;
}
.btn-small.cta-text-right.btn-hover-light-green-white:hover::before {
  background-image: url("/images/PPL/links/Arrow link_green.svg");
}
.btn-small.cta-text-right.btn-hover-light-green-white.hover::before {
  background-image: url("/images/PPL/links/Arrow link_green.svg");
}
.btn-small.cta-text-right.btn-white::before {
  background-image: url("/images/PPL/links/Arrow link_white.png");
  background-color: transparent;
}
.btn-small.cta-text-right {
  /*Email icons*/
}
.btn-small.cta-text-right.cta-type-email::before {
  background-image: url("/images/PPL/email/email.svg");
}
.btn-small.cta-text-right.cta-type-email.btn-white::before {
  background-image: url("/images/PPL/email/email_white.png");
}
.btn-small.cta-text-right.cta-type-email.btn-light-green::before {
  background-image: url("/images/PPL/email/email_light_green.svg");
}
.btn-small.cta-text-right.cta-type-email.btn-dark-green::before {
  background-image: url("/images/PPL/email/email_dark_green.svg");
}
.btn-small.cta-text-right.cta-type-email.btn-hover-light-green-white:hover::before {
  background-image: url("/images/PPL/email/email.svg");
}
.btn-small.cta-text-right.cta-type-email.btn-hover-light-green-white.hover::before {
  background-image: url("/images/PPL/email/email.svg");
}
.btn-small.cta-text-right {
  /*down load icon*/
}
.btn-small.cta-text-right.cta-type-download::before {
  background-image: url("/images/PPL/download/download.svg");
}
.btn-small.cta-text-right.cta-type-download.btn-white::before {
  background-image: url("/images/PPL/download/download_white.png");
}
.btn-small.cta-text-right.cta-type-download.btn-light-green::before {
  background-image: url("/images/PPL/download/download_light_green.svg");
}
.btn-small.cta-text-right.cta-type-download.btn-dark-green::before {
  background-image: url("/images/PPL/download/download_dark_green.svg");
}
.btn-small.cta-text-right.cta-type-download.btn-hover-light-green-white:hover::before {
  background-image: url("/images/PPL/download/download.svg");
}
.btn-small.cta-text-right.cta-type-download.btn-hover-light-green-white.hover::before {
  background-image: url("/images/PPL/download/download.svg");
}
.btn-small.cta-text-right {
  /*document list*/
}
.btn-small.cta-text-right.cta-type-document-list::before {
  background-image: url("/images/PPL/DocumentList/document-list.svg");
}
.btn-small.cta-text-right.cta-type-document-list.btn-white::before {
  background-image: url("/images/PPL/DocumentList/document-list_white.png");
}
.btn-small.cta-text-right.cta-type-document-list.btn-light-green::before {
  background-image: url("/images/PPL/DocumentList/document-list_light_green.svg");
}
.btn-small.cta-text-right.cta-type-document-list.btn-dark-green::before {
  background-image: url("/images/PPL/DocumentList/document-list_dark_green.svg");
}
.btn-small.cta-text-right.cta-type-document-list.btn-hover-light-green-white:hover::before {
  background-image: url("/images/PPL/DocumentList/document-list.svg");
}
.btn-small.cta-text-right.cta-type-document-list.btn-hover-light-green-white.hover::before {
  background-image: url("/images/PPL/DocumentList/document-list.svg");
}
.btn-small.cta-text-right {
  /*Search*/
}
.btn-small.cta-text-right.cta-type-search::before {
  background-image: url("/images/PPL/search/search.svg");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-text-right.cta-type-search.btn-white::before {
  background-image: url("/images/PPL/search/search_white.png");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-text-right.cta-type-search.btn-light-green::before {
  background-image: url("/images/PPL/search/search_light_green.svg");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-text-right.cta-type-search.btn-dark-green::before {
  background-image: url("/images/PPL/search/search_dark_green.svg");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-text-right.cta-type-search.btn-hover-light-green-white:hover::before {
  background-image: url("/images/PPL/search/search.svg");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-text-right.cta-type-search.btn-hover-light-green-white.hover::before {
  background-image: url("/images/PPL/search/search.svg");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-text-right {
  /*Play*/
}
.btn-small.cta-text-right.cta-video-play::before {
  background-image: url("/images/PPL/play/play.svg");
}
.btn-small.cta-text-right.cta-video-play.btn-white::before {
  background-image: url("/images/PPL/play/play_white.png");
}
.btn-small.cta-text-right.cta-video-play.btn-light-green::before {
  background-image: url("/images/PPL/play/play_light_green.svg");
}
.btn-small.cta-text-right.cta-video-play.btn-dark-green::before {
  background-image: url("/images/PPL/play/play_dark_green.svg");
}
.btn-small.cta-text-right.cta-video-play.btn-hover-light-green-white:hover::before {
  background-image: url("/images/PPL/play/play.svg");
}
.btn-small.cta-text-right.cta-video-play.btn-hover-light-green-white.hover::before {
  background-image: url("/images/PPL/play/play.svg");
}
.btn-small.cta-text-right {
  /*Social Links*/
}
.btn-small.cta-text-right.cta-type-facebook::before {
  background-image: url("/images/PPL/social/Facebook_light_green.svg");
}
.btn-small.cta-text-right.cta-type-twitter::before {
  background-image: url("/images/PPL/social/twitter_light_green.svg");
}
.btn-small.cta-text-right.cta-type-linkedin::before {
  background-image: url("/images/PPL/social/linkedin_light_green.svg");
}
.btn-small.cta-text-right.cta-type-youtube::before {
  background-image: url("/images/youtube.svg");
}
.btn-small.cta-text-right:hover {
  text-decoration: none;
  color: #232525;
}
.btn-small.cta-text-right:hover::before {
  background-color: #416B4E;
}
.btn-small.cta-text-only {
  padding: 0 10px;
}
.btn-small.cta-text-only:hover {
  text-decoration: none;
}
.btn-small.cta-icon-only {
  width: 50px;
}
.btn-small.cta-icon-only::before {
  content: " ";
  background-image: url("/images/Arrow link.svg");
  background-size: cover;
  background-position: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  margin-right: 0;
  transition: all 0.2s;
  min-width: 50px;
}
.btn-small.cta-icon-only.btn-dark-green::before {
  background-image: url("/images/PPL/links/Arrow link_dark_green.svg");
  background-color: #FFF;
}
.btn-small.cta-icon-only.btn-light-green::before {
  background-image: url("/images/PPL/links/Arrow link_green.svg");
  background-color: #FFF;
}
.btn-small.cta-icon-only.btn-hover-light-green-white:not(.cta-type-download, .cta-type-email, .cta-type-document-list, .cta-type-search):hover::before {
  background-image: url("/images/PPL/links/Arrow link_green.svg");
}
.btn-small.cta-icon-only.btn-hover-light-green-white:not(.cta-type-download, .cta-type-email, .cta-type-document-list, .cta-type-search).hover::before {
  background-image: url("/images/PPL/links/Arrow link_green.svg");
}
.btn-small.cta-icon-only.btn-white::before {
  background-image: url("/images/PPL/links/Arrow link_white.png");
  background-color: transparent;
}
.btn-small.cta-icon-only {
  /*Email*/
}
.btn-small.cta-icon-only.cta-type-email::before {
  background-image: url("/images/PPL/email/email.svg");
}
.btn-small.cta-icon-only.cta-type-email.btn-white::before {
  background-image: url("/images/PPL/email/email_white.png");
}
.btn-small.cta-icon-only.cta-type-email.btn-dark-green::before {
  background-image: url("/images/PPL/email/email_dark_green.svg");
}
.btn-small.cta-icon-only.cta-type-email.btn-light-green::before {
  background-image: url("/images/PPL/email/email_light_green.svg");
}
.btn-small.cta-icon-only {
  /*Search*/
}
.btn-small.cta-icon-only.cta-type-search::before {
  background-image: url("/images/PPL/search/search.svg");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-icon-only.cta-type-search.btn-white::before {
  background-image: url("/images/PPL/search/search_white.png");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-icon-only.cta-type-search.btn-dark-green::before {
  background-image: url("/images/PPL/search/search_dark_green.svg");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-icon-only.cta-type-search.btn-light-green::before {
  background-image: url("/images/PPL/search/search_light_green.svg");
  background-size: 30px;
  background-repeat: no-repeat;
}
.btn-small.cta-icon-only {
  /*Document List*/
}
.btn-small.cta-icon-only.cta-type-document-list::before {
  background-image: url("/images/ppl/DocumentList/document-list.svg");
}
.btn-small.cta-icon-only.cta-type-document-list.btn-white::before {
  background-image: url("/images/ppl/DocumentList/document-list_white.png");
}
.btn-small.cta-icon-only.cta-type-document-list.btn-dark-green::before {
  background-image: url("/images/ppl/DocumentList/document-list_dark_green.svg");
}
.btn-small.cta-icon-only.cta-type-document-list.btn-light-green::before {
  background-image: url("/images/ppl/DocumentList/document-list_light_green.svg");
}
.btn-small.cta-icon-only {
  /*Social*/
}
.btn-small.cta-icon-only.cta-type-facebook::before {
  background-image: url("/images/PPL/social/Facebook_light_green.svg");
}
.btn-small.cta-icon-only.cta-type-twitter::before {
  background-image: url("/images/PPL/social/twitter_light_green.svg");
}
.btn-small.cta-icon-only.cta-type-linkedin::before {
  background-image: url("/images/PPL/social/linkedin_light_green.svg");
}
.btn-small.cta-icon-only.cta-type-youtube::before {
  background-image: url("/images/PPL/Play/Play.svg");
}
.btn-small.cta-icon-only:hover {
  text-decoration: none;
  color: #232525;
}
.btn-small.cta-icon-only:hover::before {
  background-color: #FFF;
}
.btn-small.cta-type-telephone {
  font-size: 18px;
  letter-spacing: -0.4px;
  font-weight: 700;
}
.btn-small.cta-text-small {
  font-size: 18px;
  line-height: 18px;
  font-weight: normal;
  letter-spacing: -0.6px;
  text-transform: none;
}

.btn-large {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 26px;
  align-items: center;
  transition: all 0.2s ease-in-out;
  position: relative;
  text-decoration: none;
}
.btn-large:hover {
  text-decoration: none;
}
.btn-large.btn-dark-green {
  background-color: #416B4E;
  color: #FFF;
}
.btn-large.btn-dark-green:hover {
  background-color: rgb(45.726744186, 75.273255814, 54.8720930233);
}
.btn-large.btn-light-green {
  background-color: #5A915A;
  color: #FFF;
}
.btn-large.btn-light-green:hover {
  background-color: rgb(70.4680851064, 113.5319148936, 70.4680851064);
}
.btn-large.btn-white {
  background-color: #FFF;
  color: #416B4E;
}
.btn-large.btn-white:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.btn-large.btn-black {
  background-color: #232525;
  color: white;
}
.btn-large.btn-black:hover {
  background-color: rgb(10.2083333333, 10.7916666667, 10.7916666667);
}
.btn-large.btn-blue {
  background-color: #457B89;
  color: white;
}
.btn-large.btn-blue:hover {
  background-color: rgb(51.9174757282, 92.5485436893, 103.0825242718);
}
.btn-large.btn-light-grey {
  background-color: #F3F3F3;
  color: white;
}
.btn-large.btn-light-grey:hover {
  background-color: rgb(217.5, 217.5, 217.5);
}

/*.btn-white {
	background-color: transparent;
}*/
/* Specific component button styles */
.stacked-widget .btn-small, .image-widget .btn-small, .split-component .btn-small, .slim-split-component .btn-small {
  min-width: 100%;
}
@media (min-width: 1024px) {
  .stacked-widget .btn-small, .image-widget .btn-small, .split-component .btn-small, .slim-split-component .btn-small {
    min-width: 200px;
  }
}

/* CTA hover styles */
.btn-small.btn-hover-dark-green:hover::after, .btn-small.btn-hover-dark-green:hover::before, .btn-small.btn-hover-dark-green.hover::after, .btn-small.btn-hover-dark-green.hover::before {
  background-color: #416B4E !important;
}
.btn-small.btn-hover-light-green:hover::after, .btn-small.btn-hover-light-green:hover::before, .btn-small.btn-hover-light-green.hover::after, .btn-small.btn-hover-light-green.hover::before {
  background-color: #5A915A !important;
}
.btn-small.btn-hover-light-green-white:hover::after, .btn-small.btn-hover-light-green-white:hover::before, .btn-small.btn-hover-light-green-white.hover::after, .btn-small.btn-hover-light-green-white.hover::before {
  background-color: #FFF !important;
}
.btn-small.btn-hover-white-blue:hover::after, .btn-small.btn-hover-white-blue:hover::before, .btn-small.btn-hover-white-blue.hover::after, .btn-small.btn-hover-white-blue.hover::before {
  background-color: #457B89 !important;
}
.btn-small.btn-hover-black:hover::after, .btn-small.btn-hover-black:hover::before, .btn-small.btn-hover-black.hover::after, .btn-small.btn-hover-black.hover::before {
  background-color: #232525 !important;
}
.btn-small.btn-hover-light-grey:hover::after, .btn-small.btn-hover-light-grey:hover::before, .btn-small.btn-hover-light-grey.hover::after, .btn-small.btn-hover-light-grey.hover::before {
  background-color: #F3F3F3 !important;
}
.btn-small.btn-hover-blue:hover::after, .btn-small.btn-hover-blue:hover::before, .btn-small.btn-hover-blue.hover::after, .btn-small.btn-hover-blue.hover::before {
  background-color: #457B89 !important;
}

.btn-small.color-hover {
  /*&-yellow:hover, &-yellow.hover {
  	color: $black !important;
  	background-color: $darkgreen !important;
  }*/
}
.btn-small.color-hover-dark-green:hover, .btn-small.color-hover-dark-green.hover {
  color: #FFF !important;
  background-color: #416B4E !important;
}
.btn-small.color-hover-light-green:hover, .btn-small.color-hover-light-green.hover {
  color: #FFF !important;
  background-color: #5A915A !important;
}
.btn-small.color-hover-dark-green-white:hover, .btn-small.color-hover-dark-green-white.hover {
  color: #416B4E !important;
  background-color: #FFF !important;
}
.btn-small.color-hover-white:hover, .btn-small.color-hover-white.hover {
  color: #416B4E !important;
  background-color: #FFF !important;
}
.btn-small.color-hover-black:hover, .btn-small.color-hover-black.hover {
  color: #FFF !important;
  background-color: #232525 !important;
}
.btn-small.color-hover-light-grey:hover, .btn-small.color-hover-light-grey.hover {
  color: #F3F3F3 !important;
}
.btn-small.color-hover-blue:hover, .btn-small.color-hover-blue.hover {
  color: #457B89 !important;
  background-color: #FFF !important;
}

.carousel-control-next {
  width: 80px;
  height: 80px;
  background-color: #FFF;
  opacity: 0.5;
  transition: all 0.2s;
}
.carousel-control-next-active {
  opacity: 1;
  cursor: pointer;
}
.carousel-control-next-active:hover {
  background-color: #232525;
}

.carousel-control-previous {
  width: 80px;
  height: 80px;
  background-color: #FFF;
  opacity: 0.5;
  transition: all 0.2s;
}
.carousel-control-previous-active {
  opacity: 1;
  cursor: pointer;
}
.carousel-control-previous-active:hover {
  background-color: #232525;
}

.document-panel {
  position: fixed;
  width: 50vw;
  max-width: 50vw;
  left: 100vw;
  top: 0;
  height: 100vh;
  max-height: 100vh;
  background-color: #F3F3F3;
  box-sizing: border-box;
  padding: 80px 80px 80px 160px;
  z-index: 99995;
  overflow: auto;
  pointer-events: all;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1279px) {
  .document-panel {
    width: 100vw;
    max-width: 100vw;
    padding: 40px;
  }
}
.document-panel h3 {
  margin-bottom: 40px;
  margin-right: 80px;
}
@media (max-width: 1279px) {
  .document-panel h3 {
    margin-left: 40px;
  }
}
.document-panel h5 {
  margin: 40px 0 20px 0;
}
.document-panel a {
  margin-top: 10px;
  height: auto;
}
@media (max-width: 1279px) {
  .document-panel a {
    margin-top: 20px;
  }
}
.document-panel .document-panel-close {
  cursor: pointer;
  margin-top: 80px;
  align-self: flex-start;
}

.remove-pointer-events {
  pointer-events: none;
}

/* Header Styles */
/* Background Styles */
.bg-center {
  background-position: center;
}

.bg-left {
  background-position: center left;
}

.bg-right {
  background-position: center right;
}

.bg-top {
  background-position: top center;
}

.bg-bottom {
  background-position: bottom center;
}

.bg-topleft {
  background-position: top left;
}

.bg-topright {
  background-position: top right;
}

.bg-bottomleft {
  background-position: bottom left;
}

.bg-bottomright {
  background-position: bottom right;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-original {
  background-size: 100%;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-norepeat {
  background-repeat: no-repeat;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-repeatx {
  background-repeat: repeat-x;
}

.bg-repeaty {
  background-repeat: repeat-y;
}

/* Component Styles */
.component-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.component-container-left {
  align-items: flex-start;
}

.component-container-center {
  align-items: center;
}

.component-container-centre {
  align-items: center;
}

.component-container-right {
  align-items: flex-end;
}

.component {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  box-sizing: border-box;
}

.component-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.component-text {
  display: flex;
  flex-direction: column;
}

.component-grid-tiles {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.component-tile {
  box-sizing: border-box;
  display: flex;
}

.component-inner-tile {
  align-self: stretch;
}

/* Styles for previews */
.preview {
  font-family: "nimbus-sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.7px;
  position: relative;
  zoom: 0.5;
}
.preview a {
  text-decoration: none;
  pointer-events: none !important;
}
.preview button {
  pointer-events: none !important;
}
.preview-button {
  width: 100%;
  background-color: white;
  border: 1px solid white;
}
.preview .contact-popup {
  position: absolute !important;
}
.preview {
  /* Specific preview styles for components where required */
}
.preview .image-grid-component .igc-image {
  min-height: 400px;
}

.block-preview-edit {
  zoom: 0.5;
}

.block-preview-edit .document-panel {
  display: none;
}

/* Base styles for component containers */
.full-size-shadow {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.umb-block-list {
  display: flex;
  flex-direction: column;
}

/*.layer {
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% 1000px;
	width: 100%;
	min-height: 1000px;
	height: auto;
	position:absolute;
}*/
/* Basic styles for every component container */
.widgets-container, .sub-page-listing-container, .terminals-container, .grid-container, .locations-map-container, .gallery-container, .insights-container, .page-header-container, .slim-page-header-container, .filters-container, .form-container, contact-us-container, .tabs-container, .timeline-container, .text-container, .login-container, .video-container, .embedded-container, .slim-split-container, .split-container {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  margin: 0;
}

/* Extend component container with specific styles */
.split-container {
  margin: 0;
}

.slim-split-container {
  margin: 30px 0;
}
@media (min-width: 600px) {
  .tabs-container {
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .tabs-container {
    padding: 80px;
  }
}

.form-container, contact-us-container {
  padding: 40px;
}
@media (min-width: 1024px) {
  .form-container, contact-us-container {
    padding: 80px 160px;
  }
}

.grid-container, .locations-map-container, .gallery-container, .insights-container {
  justify-content: center;
}

.widgets-container, .sub-page-listing-container, .terminals-container {
  margin: 30px 0;
  padding: 0;
}

/* Embedded component */
.embedded-component {
  width: 100%;
  padding-left: 160px;
  padding-right: 160px;
}
@media (max-width: 1279px) {
  .embedded-component {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 599px) {
  .embedded-component {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.embedded-component h3 {
  color: #232525;
  text-align: left;
  margin: 0 auto 40px auto;
}
.embedded-component .embedded-code {
  text-align: center;
}

/* Custom embed classes */
/* Microsoft BI dashboard */
.mbi-dashboard {
  width: 100%;
  max-width: 1100px;
  height: 1210px;
}
@media (max-width: 1279px) {
  .mbi-dashboard {
    max-width: unset;
    width: 100%;
    height: calc((100vw - 80px) * 1.1);
  }
}
@media (max-width: 599px) {
  .mbi-dashboard {
    max-width: unset;
    width: 100%;
    height: calc((100vw - 20px) * 1.3);
  }
}

/* End embedded component */
/* Custom styles for vision CGI component */
#vision-placeholder {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1280px;
  height: 720px;
  background-image: url(/images/video-still.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Form Component */
.form-component {
  width: 100%;
}
.form-component h3 {
  color: #232525;
  text-align: left;
  margin: 0 auto 40px auto;
}
.form-component .umbraco-forms-form {
  max-width: 800px;
}
.form-component {
  /*

      .umbraco-forms-field {
          margin-bottom: 30px;
      }

      label {
          color: inherit;
      }

      input[type=text], textarea, select {
          width: 100%;
          max-width: 100% !important;
          background-color: $white;
          padding: 15px;
          color: $black;
          border: 2px solid black;
          box-sizing: border-box;

          &:focus {
              outline: none;
              border: 2px solid $teal;
          }
      }

      select {
          min-width: 100%;
          height: 50px;
          color: black;
          background-color: $white;
          border: 2px solid black;
          padding: 0 10px;
          appearance: none;
          background-image: url(/images/cta-download.png);
          background-repeat: no-repeat;
          background-position: right;
          font-family: 'nimbus-sans';
          font-size: 16px;
      }
  }*/
}

/* End form component */
/* Gallery component */
.gallery-component {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  position: relative;
}
.gallery-component h3 {
  margin: 80px 160px;
}
@media (max-width: 1279px) {
  .gallery-component h3 {
    margin: 40px 70px;
  }
}
.gallery-component .gallery-link {
  position: absolute;
  right: 80px;
  bottom: 60px;
  margin: 0;
}
.gallery-component .gallery-inner {
  width: 100vw;
  height: 900px;
  position: relative;
}
@media (max-width: 1279px) {
  .gallery-component .gallery-inner {
    display: flex;
    flex-direction: column;
  }
}
.gallery-component .gallery-floating-frame {
  position: absolute;
  top: 0;
  left: 0;
  height: 900px;
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1279px) {
  .gallery-component .gallery-floating-frame {
    position: relative;
    order: 2;
    height: 300px;
  }
}
@media (max-width: 599px) {
  .gallery-component .gallery-floating-frame {
    height: 450px;
  }
}
.gallery-component .caption-container {
  margin-left: 80px;
  max-height: 800px;
  width: 500px;
  box-sizing: border-box;
  padding: 80px;
  text-align: left;
  z-index: 30;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1279px) {
  .gallery-component .caption-container {
    left: 0;
    width: 100%;
    margin-left: 0;
    padding: 40px 40px 40px 70px;
  }
}
.gallery-component .caption-container h3 {
  text-align: left;
  margin: 0 0 30px 0;
  font-size: 40px;
  line-height: 43px;
}
@media (max-width: 1279px) {
  .gallery-component .caption-container h3 {
    margin: 0 0 10px 0;
    font-size: 34px;
    line-height: 35px;
  }
}
.gallery-component .carousel-controls {
  position: absolute;
  bottom: -80px;
  left: 160px;
  width: 160px;
  height: 80px;
  display: flex;
}
.gallery-component .carousel-controls .carousel-control-next {
  background-color: #FFF;
}
@media (max-width: 1279px) {
  .gallery-component .carousel-controls {
    bottom: unset;
    top: -80px;
    right: 0;
    left: unset;
  }
}
.gallery-component .caption-box {
  opacity: 0;
  box-sizing: border-box;
  pointer-events: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: white;
  height: 100%;
  transition: all 0.5s;
}
.gallery-component .caption-box-active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.gallery-component .owl-carousel .owl-stage {
  display: flex;
}
.gallery-component .images-list {
  width: calc(100% - 320px);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0 0 0 320px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  height: 900px;
}
@media (max-width: 1279px) {
  .gallery-component .images-list {
    margin: 0;
    width: 100%;
    height: 600px;
  }
}
@media (max-width: 599px) {
  .gallery-component .images-list {
    height: 450px;
  }
}
.gallery-component .images-list.owl-carousel {
  display: block;
}
.gallery-component .images-list {
  /* Dynamic styles for showing images if Layout = Single Row Only */
}
.gallery-component .images-list-2:nth-of-type(1n+3) {
  display: none;
}
.gallery-component .images-list-3 div:nth-of-type(1n+4).single-row {
  display: none;
}
.gallery-component .images-list-4 .single-row:nth-of-type(1n+5) {
  display: none;
}
.gallery-component .images-list {
  /* Dynamic styles for images per row, based on max row size setting for desktops */
}
.gallery-component .images-list-2 > div {
  width: 100%;
}
@media (min-width: 768px) {
  .gallery-component .images-list-2 > div {
    width: 50%;
  }
}
.gallery-component .images-list-3 > div {
  width: 100%;
}
@media (min-width: 768px) {
  .gallery-component .images-list-3 > div {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .gallery-component .images-list-3 > div {
    width: 33.3333333333%;
  }
}
.gallery-component .images-list-4 > div {
  width: 100%;
}
@media (min-width: 768px) {
  .gallery-component .images-list-4 > div {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .gallery-component .images-list-4 > div {
    width: 33.3333333333%;
  }
}
@media (min-width: 1680px) {
  .gallery-component .images-list-4 > div {
    width: 25%;
  }
}
.gallery-component .images-list-inner {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.gallery-component .gallery-image {
  box-sizing: border-box;
  /*margin: 20px 0;
  margin-right: 20px;*/
}
.gallery-component .gallery-image .gi-image {
  min-height: 900px;
  min-width: 900px;
  color: #FFF;
  height: 100%;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1279px) {
  .gallery-component .gallery-image .gi-image {
    min-width: unset;
    min-height: unset;
    width: 100vw;
  }
}
.gallery-component .gallery-image .gi-image .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.gallery-component .gallery-image .gi-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.gallery-component .gallery-image .gi-image .gi-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  height: 100%;
}
.gallery-component .gallery-image .gi-image h4, .gallery-component .gallery-image .gi-image h5 {
  font-weight: normal;
}
.gallery-component .gallery-image .gi-image:hover .image-container {
  transform: scale(1.05, 1.05);
}
.gallery-component .gallery-height-small .gi-image {
  min-height: 200px;
}
.gallery-component .gallery-height-medium .gi-image {
  min-height: 400px;
}
.gallery-component .gallery-height-large .gi-image {
  min-height: 900px;
}
@media (max-width: 1279px) {
  .gallery-component .gallery-height-large .gi-image {
    min-height: 600px;
  }
}
@media (max-width: 599px) {
  .gallery-component .gallery-height-large .gi-image {
    min-height: 450px;
  }
}

.owl-carousel .sw-content {
  height: calc(100% - 20px) !important;
}

/* End gallery component */
.grid-component {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}
.grid-component h3 {
  margin: 0 0 30px 0;
}

.grid-template {
  display: grid;
  display: -ms-grid;
  align-self: stretch;
}
.grid-template-1 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.grid-template-2 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-template-2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.grid-template-3 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-template-3 {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.grid-template-4 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-template-4 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid-template-4 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.grid-template-5 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-template-5 {
    -ms-grid-columns: [row1] 1fr 1fr 1fr [row2] 1fr 1fr;
    grid-template-columns: [row1] 1fr 1fr 1fr [row2] 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid-template-5 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.grid-template-6 {
  -ms-grid-columns: [row1] 1fr 1fr [row2] 1fr 1fr [row3] 1fr 1fr;
  grid-template-columns: [row1] 1fr 1fr [row2] 1fr 1fr [row3] 1fr 1fr;
}
@media (min-width: 768px) {
  .grid-template-6 {
    -ms-grid-columns: [row1] 1fr 1fr 1fr [row2] 1fr 1fr 1fr;
    grid-template-columns: [row1] 1fr 1fr 1fr [row2] 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid-template-6 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.grid-template-7 {
  -ms-grid-columns: [row1] 1fr 1fr [row2] 1fr 1fr [row3] 1fr 1fr [row4] 1fr;
  grid-template-columns: [row1] 1fr 1fr [row2] 1fr 1fr [row3] 1fr 1fr [row4] 1fr;
}
@media (min-width: 768px) {
  .grid-template-7 {
    -ms-grid-columns: [row1] 1fr 1fr 1fr 1fr [row2] 1fr 1fr 1fr;
    grid-template-columns: [row1] 1fr 1fr 1fr 1fr [row2] 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid-template-7 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.grid-template-8 {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .grid-template-8 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid-template-8 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.grid-template-desktop {
  display: none;
}
@media (min-width: 1280px) {
  .grid-template-desktop {
    display: -ms-grid;
    display: grid;
  }
}
.grid-template-tablet {
  display: none;
}
@media (min-width: 768px) {
  .grid-template-tablet {
    display: -ms-grid;
    display: grid;
  }
}
@media (min-width: 1280px) {
  .grid-template-tablet {
    display: none;
  }
}
.grid-template-mobile {
  display: -ms-grid;
  display: grid;
}
@media (min-width: 768px) {
  .grid-template-mobile {
    display: none;
  }
}

.grid-gutters-h-none {
  margin-left: 0;
  margin-right: 0;
  grid-column-gap: 0;
}
.grid-gutters-h-small {
  margin-left: 10px;
  margin-right: 10px;
  grid-column-gap: 10px;
}
.grid-gutters-h-medium {
  margin-left: 20px;
  margin-right: 20px;
  grid-column-gap: 20px;
}
.grid-gutters-h-large {
  margin-left: 30px;
  margin-right: 30px;
  grid-column-gap: 30px;
}
.grid-gutters-v-none {
  margin-top: 0;
  margin-bottom: 0;
  grid-row-gap: 0;
}
.grid-gutters-v-small {
  margin-top: 10px;
  margin-bottom: 10px;
  grid-row-gap: 10px;
}
.grid-gutters-v-medium {
  margin-top: 20px;
  margin-bottom: 20px;
  grid-row-gap: 20px;
}
.grid-gutters-v-large {
  margin-top: 30px;
  margin-bottom: 30px;
  grid-row-gap: 30px;
}

.grid-sizing {
  width: 100%;
  background-color: #F3F3F3;
  min-height: 300px;
}
.grid-sizing-none {
  width: 100%;
  min-height: 0;
}
.grid-sizing-small {
  width: 100%;
  min-height: 250px;
}
@media (max-width: 1279px) {
  .grid-sizing-small {
    min-height: 100px;
  }
}
.grid-sizing-medium {
  width: 100%;
  min-height: 450px;
}
@media (max-width: 1279px) {
  .grid-sizing-medium {
    min-height: 300px;
  }
}
.grid-sizing-large {
  width: 100%;
  min-height: 600px;
}
@media (max-width: 1279px) {
  .grid-sizing-large {
    min-height: 300px;
  }
}

.grid-ratio-1-to-1 {
  aspect-ratio: 1/1;
}
.grid-ratio-2-to-1 {
  aspect-ratio: 2/1;
}
.grid-ratio-1-to-2 {
  aspect-ratio: 1/2;
}
.grid-ratio-16-to-9 {
  aspect-ratio: 16/9;
}

@supports not (aspect-ratio: 1/1) {
  .grid-ratio-1-to-1::before {
    float: left;
    padding-top: 100%;
    content: "";
  }
  .grid-ratio-1-to-1::after {
    display: block;
    content: "";
    clear: both;
  }
}
@supports not (aspect-ratio: 2/1) {
  .grid-ratio-2-to-1::before {
    float: left;
    padding-top: 50%;
    content: "";
  }
  .grid-ratio-2-to-1::after {
    display: block;
    content: "";
    clear: both;
  }
}
@supports not (aspect-ratio: 1/2) {
  .grid-ratio-1-to-2::before {
    float: left;
    padding-top: 200%;
    content: "";
  }
  .grid-ratio-1-to-2::after {
    display: block;
    content: "";
    clear: both;
  }
}
@supports not (aspect-ratio: 16/9) {
  .grid-ratio-16-to-9::before {
    float: left;
    padding-top: 56.25%;
    content: "";
  }
  .grid-ratio-16-to-9::after {
    display: block;
    content: "";
    clear: both;
  }
}
.grid-content {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Components within the grid */
/* basic grid component content to inherit from */
.port-location-grid-component .plgc-content, .news-item-grid-component .nigc-content, .cta-grid-component .cgc-content, .icon-cta-grid-component .icgc-content, .embedded-grid-component .egc-content, .image-grid-component .igc-content {
  width: 100%;
  height: 100%;
  padding: 60px 40px 60px 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1279px) {
  .port-location-grid-component .plgc-content, .news-item-grid-component .nigc-content, .cta-grid-component .cgc-content, .icon-cta-grid-component .icgc-content, .embedded-grid-component .egc-content, .image-grid-component .igc-content {
    padding: 60px 30px;
  }
}

.image-grid-component {
  width: 100%;
  height: 100%;
}
.image-grid-component .igc-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.image-grid-component .igc-content {
  padding: 80px 160px;
}
@media (max-width: 1279px) {
  .image-grid-component .igc-content {
    padding: 80px 70px;
  }
}
.image-grid-component .igc-content > * {
  max-width: 100%;
}
.image-grid-component h4, .image-grid-component h5 {
  text-decoration: none;
}
@media (max-width: 1279px) {
  .image-grid-component h4, .image-grid-component h5 {
    font-size: 20pt;
    line-height: 24pt;
  }
}
.image-grid-component p {
  margin: 2px 0;
  font-size: 14pt;
  line-height: 17pt;
  text-decoration: none;
}
.image-grid-component .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.image-grid-component a {
  position: relative;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
}
.image-grid-component a:hover .image-container {
  transform: scale(1.05, 1.05);
}

.embedded-grid-component {
  width: 100%;
  height: 100%;
}
.embedded-grid-component p {
  margin: 2px 0;
  font-size: 14pt;
  line-height: 17pt;
}

.text-grid-component {
  width: 100%;
  height: 100%;
  position: relative;
}
.text-grid-component .tgc-content {
  width: 100%;
  height: 100%;
  padding: 70px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1279px) {
  .text-grid-component .tgc-content {
    padding: 60px 30px;
  }
}
.text-grid-component .tgc-content > * {
  max-width: 100%;
}
.text-grid-component .tgc-content-inset {
  width: 100%;
  height: 100%;
  padding: 70px 80px 70px 160px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .text-grid-component .tgc-content-inset {
    padding: 70px 30px;
  }
}
.text-grid-component .tgc-content-inset > *:not(.additional-content) {
  max-width: 100%;
}
.text-grid-component .tgc-content-inset table tr td, .text-grid-component .tgc-content-inset table tr th {
  font-weight: 300;
}
.text-grid-component .tgc-content-inset table tr td ul li p, .text-grid-component .tgc-content-inset table tr th ul li p {
  margin-top: 0;
}
.text-grid-component h3 {
  z-index: 1;
}
@media (max-width: 1279px) {
  .text-grid-component h3 {
    margin-left: 40px;
  }
}
.text-grid-component h5 {
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 15px;
  z-index: 1;
}
@media (max-width: 1279px) {
  .text-grid-component h5 {
    font-size: 35px;
    line-height: 38px;
  }
}
.text-grid-component div {
  z-index: 1;
}
.text-grid-component p {
  margin: 8px 0;
  font-size: 18px;
  letter-spacing: -0.7px;
  z-index: 1;
}
.text-grid-component a {
  z-index: 1;
}
.text-grid-component .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.icon-cta-grid-component {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}
.icon-cta-grid-component .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
@media (max-width: 1279px) {
  .icon-cta-grid-component .icgc-content {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.icon-cta-grid-component .icon {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
  margin-left: -8px;
  z-index: 2;
}
@media (max-width: 1279px) {
  .icon-cta-grid-component .icon {
    width: 50px;
    padding-right: 20px;
  }
}
.icon-cta-grid-component h5 {
  font-size: 40px;
  font-weight: 400;
}
@media (max-width: 1279px) {
  .icon-cta-grid-component h5 {
    font-size: 25px;
    line-height: 28px;
    width: calc(100% - 70px);
  }
}
@media (max-width: 1279px) {
  .icon-cta-grid-component .btn-small {
    width: 100%;
  }
}
.icon-cta-grid-component:hover {
  text-decoration: none;
}
.icon-cta-grid-component:hover .image-container {
  transform: scale(1.05, 1.05);
}
.icon-cta-grid-component:hover h5.color-hover-yellow {
  color: #416B4E;
}
.icon-cta-grid-component:hover h5.color-hover-white {
  color: #FFF;
}
.icon-cta-grid-component:hover h5.color-hover-black {
  color: #232525;
}
.icon-cta-grid-component:hover h5.color-hover-blue {
  color: #457B89;
}
.icon-cta-grid-component:hover h5.color-hover-light-grey {
  color: #F3F3F3;
}

.cta-grid-component {
  width: 100%;
  height: 100%;
}
.cta-grid-component .cgc-content {
  padding: 0;
}
.cta-grid-component .cgc-content > * {
  z-index: 1;
}
.cta-grid-component .cgc-content .btn-large, .cta-grid-component .cgc-content .btn-small {
  padding: 70px 80px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.cta-grid-component .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.news-item-grid-component {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.news-item-grid-component h5 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 38px;
}
@media (max-width: 1279px) {
  .news-item-grid-component h5 {
    font-size: 26px;
    line-height: 30px;
  }
}
.news-item-grid-component .article-date {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  z-index: 1;
}
.news-item-grid-component .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.news-item-grid-component:hover {
  text-decoration: none;
}
.news-item-grid-component:hover .image-container {
  transform: scale(1.05, 1.05);
}
.news-item-grid-component:hover h5.color-hover-yellow {
  color: #416B4E;
}
.news-item-grid-component:hover h5.color-hover-white {
  color: #FFF;
}
.news-item-grid-component:hover h5.color-hover-black {
  color: #232525;
}
.news-item-grid-component:hover h5.color-hover-blue {
  color: #457B89;
}
.news-item-grid-component:hover h5.color-hover-light-grey {
  color: #F3F3F3;
}

.port-location-grid-component {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.port-location-grid-component .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.port-location-grid-component .icon {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
  margin-left: -8px;
  z-index: 2;
}
.port-location-grid-component h6 {
  font-size: 26px;
  line-height: 29px;
  font-weight: 500;
  white-space: pre-line;
}
.port-location-grid-component:hover {
  text-decoration: none;
}
.port-location-grid-component:hover h5.color-hover-yellow {
  color: #416B4E;
}
.port-location-grid-component:hover h5.color-hover-white {
  color: #FFF;
}
.port-location-grid-component:hover h5.color-hover-black {
  color: #232525;
}
.port-location-grid-component:hover h5.color-hover-blue {
  color: #457B89;
}
.port-location-grid-component:hover h5.color-hover-light-grey {
  color: #F3F3F3;
}

/* Sub components */
.additional-content {
  display: flex;
  width: calc(100% + 120px);
  justify-content: flex-start;
  align-content: flex-start;
  margin: auto 0 auto -80px;
}
@media (max-width: 1023px) {
  .additional-content {
    margin: 0;
    flex-direction: column;
    width: 100% !important;
  }
}
.additional-content .sub-component {
  padding-left: 40px;
}
.additional-content .sub-component.spinner {
  padding-left: 60px;
}
.additional-content .sub-component:first-of-type {
  padding-left: 60px;
}
.additional-content .sub-component:last-of-type {
  padding-right: 0px;
}
.additional-content .sub-component.spinner:last-of-type {
  padding-right: 60px;
}
.additional-content-1 > * {
  width: 100% !important;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .additional-content-1 > * {
    width: 100% !important;
  }
}
.additional-content-2 > * {
  width: 50% !important;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .additional-content-2 > * {
    width: 100% !important;
  }
}
.additional-content-3 > * {
  width: 33.3333333333% !important;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .additional-content-3 > * {
    width: 100% !important;
  }
}

/* Text Component */
.links-component {
  width: auto;
  display: inline-block;
  padding: 40px 0;
}
.links-component .links-text {
  padding: 0 160px;
}
@media (max-width: 599px) {
  .links-component .links-text {
    padding: 0;
  }
}
.links-component .links-text .links-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 80px;
  position: relative;
}
.links-component .links-text .links-content h3 {
  margin: 0;
}
.links-component .links-text .links-content div {
  max-width: 100%;
}
.links-component .links-text .links-content p {
  text-align: left;
}
.links-component .links-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* Dynamic styles for widgets per row, based on max row size setting for desktops */
}
.links-component .links-list-2 > .link-box {
  width: 100%;
}
@media (min-width: 768px) {
  .links-component .links-list-2 > .link-box {
    width: 50%;
  }
}
.links-component .links-list-3 > .link-box {
  width: 100%;
}
@media (min-width: 768px) {
  .links-component .links-list-3 > .link-box {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .links-component .links-list-3 > .link-box {
    width: 33.3333333333%;
  }
}
.links-component .links-list-4 > .link-box {
  width: 100%;
}
@media (min-width: 768px) {
  .links-component .links-list-4 > .link-box {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .links-component .links-list-4 > .link-box {
    width: 33.3333333333%;
  }
}
@media (min-width: 1680px) {
  .links-component .links-list-4 > .link-box {
    width: 25%;
  }
}
.links-component .links-outer-border {
  border: solid 1px #F3F3F3;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - 1px);
  pointer-events: none;
  box-sizing: border-box;
}
.links-component .link-box {
  padding: 30px 40px;
  border-width: 0 1px 1px 0;
  border-color: #F3F3F3;
  border-style: solid;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  box-sizing: border-box;
  flex-wrap: wrap;
  text-decoration: none;
}
.links-component .link-box span {
  font-size: 14pt;
  line-height: 15pt;
  color: #416B4E;
  transition: all 0.3s;
}
.links-component .link-box i {
  color: #5A915A;
  transition: all 0.3s;
}
.links-component .link-box .link-info {
  width: 100%;
  padding: 20px 0 0 0;
  font-size: 11pt;
  color: #416B4E;
}
.links-component .link-box:hover {
  background-color: #5A915A;
}
.links-component .link-box:hover span, .links-component .link-box:hover i, .links-component .link-box:hover .link-info {
  color: white;
}

.na-article .links-component .links-text {
  padding: 0 160px 0 0;
}
@media (max-width: 599px) {
  .na-article .links-component .links-text {
    padding: 0;
  }
}

/* End text component */
/* Embedded component */
.locations-map-component {
  max-width: 1800px;
  width: 100%;
  margin: 0;
  padding: 30px 0;
}
.locations-map-component h3 {
  text-align: center;
  margin: 0 auto 40px auto;
}
.locations-map-component .map-locations {
  height: 480px;
  width: 100%;
}

/* End embedded component */
/* Member Login Component */
.login-component {
  max-width: 800px;
  margin: 0 auto;
}
.login-component .login-text .login-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-component .login-text .login-content p {
  text-align: left;
}
.login-component .login-text form {
  width: 100%;
}
.login-component .login-text fieldset {
  border: none;
  background-color: #416B4E;
  color: #FFF;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}
.login-component .login-text button {
  border: none;
}
.login-component .login-text input {
  width: 100%;
  border: 1px solid #416B4E;
  font-size: 16pt;
  padding: 10px;
  box-sizing: border-box;
  margin: 10px 0 20px 0;
}

/* End Member Login component */
/* News Filters component */
.filters-component {
  width: 100%;
  margin: 0;
  color: white;
  padding: 0;
}
@media (min-width: 1024px) {
  .filters-component {
    padding: 80px 160px 0 160px;
  }
}
.filters-component form {
  width: 100%;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .filters-component form {
    display: flex;
    height: 100%;
    padding: 0;
    flex-direction: row;
  }
}
.filters-component .filter-lists {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  width: auto;
  margin-right: 70px;
}
@media (min-width: 1024px) {
  .filters-component .filter-lists {
    flex-direction: row;
    align-items: center;
  }
}
.filters-component .filter-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px 0;
}
.filters-component select {
  min-width: calc(100% + 70px);
  height: 50px;
  color: black;
  /* outline-color: black; */
  background-color: transparent;
  border: 2px solid black;
  padding: 0 10px;
  appearance: none;
  background-image: url(/images/PPL/dropdown-button.png);
  background-repeat: no-repeat;
  background-position: right;
  font-family: "nimbus-sans";
  font-size: 16px;
}
@media (min-width: 1024px) {
  .filters-component select {
    min-width: calc(100% + 70px);
  }
}
.filters-component option {
  background-color: #FFF;
  color: #232525;
  font-family: "nimbus-sans";
  font-size: 16px;
}
.filters-component input[type=button] {
  margin-right: 30px;
}
.filters-component .filter-field {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .filters-component .filter-field {
    padding-right: 30px;
    width: auto;
  }
}
.filters-component .filter-field:not(:first-of-type) {
  margin-left: 70px;
}
.filters-component label {
  padding-right: 10px;
  font-size: 14pt;
  font-weight: 700;
}
.filters-component .filters-mobile-buttons {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 10px 15px;
}
.filters-component .filters-mobile-buttons .filter-open {
  display: flex;
  align-items: center;
}
.filters-component .filters-mobile-buttons .filter-open i {
  margin-left: 4px;
}
.filters-component .filters-mobile-buttons .filter-close {
  align-items: center;
  display: none;
}
@media (min-width: 1024px) {
  .filters-component .filters-mobile-buttons {
    display: none;
  }
}

/* End new  filters component */
/* Page header component */
.page-header-component {
  width: 100%;
  margin: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  position: relative;
  overflow: hidden;
}
.page-header-component .header-extra-large {
  width: 100%;
}
.page-header-component .header-large {
  width: 100%;
  min-height: calc(100vh - 120px);
}
.page-header-component .header-medium {
  width: 100%;
  min-height: 700px;
}
.page-header-component .header-medium .ph-content {
  height: 100%;
}
.page-header-component .header-small {
  width: 100%;
  min-height: 500px;
}
.page-header-component .header-small .ph-content {
  height: 100%;
}
.page-header-component .hero-title {
  background-color: #FFF;
  color: #232525;
  width: 100%;
  padding: 160px 160px 80px 150px;
}
@media (max-width: 1023px) {
  .page-header-component .hero-title {
    padding: 40px 80px 80px 40px;
    box-sizing: border-box;
  }
}
.page-header-component .hero-title h1 {
  max-width: 800px;
}
@media (max-width: 1023px) {
  .page-header-component .hero-title h1 {
    font-size: 65px;
    line-height: 60px;
    max-width: 600px;
  }
}
.page-header-component .ph-content {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-header-component .ph-content .hero-title-inner {
  margin: 80px 160px;
  color: white;
}
.page-header-component .ph-breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #FFF;
  margin: 25px 0;
  box-sizing: border-box;
  width: 100%;
  padding-left: 345px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
}
@media (max-width: 1279px) {
  .page-header-component .ph-breadcrumb {
    padding-left: 40px;
  }
}
.page-header-component .ph-breadcrumb .breadcrumb-link {
  color: #416B4E;
  text-transform: uppercase;
  margin-right: 10px;
}
.page-header-component .ph-breadcrumb .divider {
  margin-right: 10px;
}
.page-header-component .ph-breadcrumb .breadcrumb-current {
  color: #232525;
  text-transform: uppercase;
  font-style: italic;
}
.page-header-component .play-icon {
  position: absolute;
}
.page-header-component .contact-details {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  display: flex;
}
@media (max-width: 1279px) {
  .page-header-component .contact-details {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-header-component .contact-details {
    flex-wrap: wrap;
    position: relative;
    margin-top: 40px;
    margin-left: 0;
    margin-right: -40px;
    margin-bottom: -120px;
    width: 100vw;
  }
}
.page-header-component .contact-details .key-contact {
  width: 50%;
  flex-grow: 0;
  padding: 30px;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  .page-header-component .contact-details .key-contact {
    padding: 20px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-header-component .contact-details .key-contact {
    width: 100%;
  }
}
.page-header-component .contact-details .key-contact span {
  display: inline-block;
  font-size: 12pt;
  font-weight: normal;
  margin-top: 4px;
}
.page-header-component .contact-details .contact-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  flex-grow: 1;
  padding: 20px;
  box-sizing: border-box;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page-header-component .contact-details .contact-phone {
    width: 50%;
  }
}
.page-header-component .contact-details .contact-email {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  flex-grow: 1;
  padding: 20px;
  box-sizing: border-box;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page-header-component .contact-details .contact-email {
    width: 50%;
  }
}

.image-slide, .video-slide {
  /*position: absolute;
      top: 0;
      left: 0;
      bottom: 0;*/
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 160px 160px 120px 160px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1279px) {
  .image-slide, .video-slide {
    flex-direction: column;
  }
}
.image-slide h1, .video-slide h1 {
  margin-right: auto;
}
@media (max-width: 1023px) {
  .image-slide, .video-slide {
    padding: 120px 40px 120px 40px;
  }
}
.image-slide .text-panel, .video-slide .text-panel {
  position: relative;
  max-width: 630px;
  padding: 60px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  /*&.bg-black {
      border: 8px solid $darkgreen;
  }*/
}
.image-slide .text-panel .text-panel-header, .video-slide .text-panel .text-panel-header {
  font-family: "nimbus-sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 25pt;
}
@media (min-width: 1024px) {
  .image-slide .text-panel .text-panel-header, .video-slide .text-panel .text-panel-header {
    font-size: 54px;
    letter-spacing: -1.5px;
    line-height: 50px;
  }
}
.image-slide .text-panel .text-panel-header, .video-slide .text-panel .text-panel-header {
  max-width: 100%;
}
@media (max-width: 1023px) {
  .image-slide .text-panel, .video-slide .text-panel {
    padding: 40px 30px;
  }
}
.image-slide .text-panel p:first-of-type, .video-slide .text-panel p:first-of-type {
  font-weight: 700;
  margin-top: 30px;
}
.image-slide .text-panel p:last-of-type, .video-slide .text-panel p:last-of-type {
  margin-bottom: 40px;
}
.image-slide .text-panel-content, .video-slide .text-panel-content {
  max-width: 100%;
}
.image-slide .text-panel-content > *, .video-slide .text-panel-content > * {
  max-width: 100%;
}
.image-slide .text-panel .ribbon, .video-slide .text-panel .ribbon {
  background-image: url("/images/Ribbon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 280px;
  height: 180px;
  right: -41px;
  bottom: -34px;
  position: absolute;
}
@media (max-width: 1023px) {
  .image-slide .text-panel .ribbon, .video-slide .text-panel .ribbon {
    width: 200px;
    height: 180px;
    right: -32px;
    bottom: -54px;
  }
}

.ph-cta-hide {
  display: none !important;
}

.button-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-position: center;
  background-size: cover;
}

.page-header-inner {
  position: relative;
  display: flex;
  flex-direction: column;
}

.page-header-document-list {
  position: absolute;
  top: 0;
  left: 275px;
  right: 240px;
  background-color: rgba(255, 255, 255, 0.97);
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 40px 80px;
}
@media (max-width: 1279px) {
  .page-header-document-list {
    padding: 40px;
    left: 0;
    right: 0;
    width: 100vw;
    position: relative;
  }
}
.page-header-document-list .close-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
@media (max-width: 1279px) {
  .page-header-document-list .close-icon {
    display: none;
  }
}
.page-header-document-list .close-icon img {
  width: 25px;
  height: auto;
}
.page-header-document-list .close-icon i {
  color: #416B4E;
}
.page-header-document-list .info-icon {
  position: absolute;
  top: -130px;
  right: 30px;
  cursor: pointer;
}
@media (max-width: 1279px) {
  .page-header-document-list .info-icon {
    display: none;
  }
}
.page-header-document-list .info-icon i {
  color: #416B4E;
}
.page-header-document-list .document-list-header {
  width: 100%;
  box-sizing: border-box;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}
.page-header-document-list .document-list-disclaimer {
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  padding-top: 4px;
  display: block;
}
.page-header-document-list .document-alerts {
  width: 33.3333333333%;
  margin-top: 10px;
}
@media (max-width: 1279px) {
  .page-header-document-list .document-alerts {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .page-header-document-list .document-alerts {
    width: 100%;
  }
}

/** Speech bubble with border */
.contact-speech-bubble {
  background: #416B4E;
  border: 2px solid #416B4E;
  color: #232525;
  border-radius: 4px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 auto 20px;
  padding: 15px 10px;
  position: fixed;
  max-width: 150px;
  bottom: 40px;
  right: 40px;
  z-index: 9;
}
.contact-speech-bubble .contacts {
  display: none;
}
.contact-speech-bubble.open {
  max-width: 500px;
  color: #232525;
  background-color: #FFF;
}
.contact-speech-bubble.open .key-contact-popup-title {
  display: none;
}
.contact-speech-bubble.open .contact-speech-bubble__arrow::after {
  border-top: 23px solid white;
}
.contact-speech-bubble.open .contacts {
  display: flex;
  flex-direction: column;
  min-width: 250px;
}
.contact-speech-bubble.open .contacts .contact {
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px;
}
.contact-speech-bubble.open .contacts .contact:not(:last-of-type) {
  padding-bottom: 40px;
  border-bottom: 2px solid #416B4E;
}
.contact-speech-bubble.open .contacts .contact h6 {
  text-transform: none;
  margin: 20px 0 5px 0;
  letter-spacing: 0.1px;
}
.contact-speech-bubble.open .contacts .contact .job-title {
  text-transform: none;
  letter-spacing: 0.1px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}
.contact-speech-bubble.open .contacts .contact img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 40px;
}
.contact-speech-bubble.open .contacts .contact .cta-type-telephone, .contact-speech-bubble.open .contacts .contact .cta-type-email {
  height: auto;
  margin: 20px 0 0 0;
}
.contact-speech-bubble.open .contacts .contact .email {
  letter-spacing: 0.1px;
}
.contact-speech-bubble p {
  margin-bottom: 10px;
  text-align: center;
}
.contact-speech-bubble p :last-of-type {
  margin-bottom: 0;
}

.contact-speech-bubble__arrow {
  border-top: 20px solid rgba(0, 0, 0, 0.2);
  bottom: -24px;
  position: absolute;
  right: -5px;
}
.contact-speech-bubble__arrow::before {
  border-left: 26px solid transparent;
  border-top: 25px solid #416B4E;
  bottom: -1px;
  content: "";
  position: absolute;
  right: 3px;
}
.contact-speech-bubble__arrow::after {
  border-left: 22px solid transparent;
  /* border-top: 21px solid $darkgreen */
  bottom: 3px;
  content: "";
  position: absolute;
  right: 5px;
}

.video-play-button {
  background-color: #ee3524;
  color: #FFF;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: absolute;
  top: -60px;
  left: calc(55% - 60px);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.video-play-button:hover {
  text-decoration: none;
  background-color: #232525;
}
.video-play-button::before {
  content: "";
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #232525;
  width: 128px;
  position: absolute;
  top: -6px;
  left: -6px;
  height: 128px;
}

.video-frame {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.video-frame-inner, .video-frame iframe {
  position: relative;
  min-width: 350px;
  max-width: 1000px;
  width: 100vw !important;
  height: 56.25vw !important;
  object-fit: contain;
  overflow: hidden;
  box-sizing: border-box;
}
@media (min-width: 1000px) {
  .video-frame-inner, .video-frame iframe {
    width: 1000px !important;
    height: 562.5px !important;
  }
}

/* End page header component */
/* Slim page header component */
.slim-page-header-component {
  width: 100%;
  margin: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  height: 500px;
  position: relative;
}
.slim-page-header-component .sph-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 50px 70px 120px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .slim-page-header-component .sph-content {
    padding: 30px;
    width: 100%;
  }
}
.slim-page-header-component .sph-content h1 {
  color: white;
  text-transform: capitalize;
  margin: 0;
  max-width: 100%;
}
.slim-page-header-component .sph-content p {
  color: white;
  max-width: 100%;
}

/* End slim page header component */
/* Slim split component start */
.slim-split-component {
  width: 100%;
  min-height: 350px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.slim-split-component .ssc-content {
  box-sizing: border-box;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 30px 50px;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .slim-split-component .ssc-content {
    padding: 60px 100px;
  }
}
.slim-split-component .ssc-image {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.slim-split-component .ssc-image-right {
  justify-content: flex-end;
  order: -1;
}
@media (min-width: 768px) {
  .slim-split-component .ssc-image-right {
    order: 1;
  }
}
.slim-split-component .ssc-text {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.slim-split-component .ssc-text h3 {
  margin-bottom: 30px;
}

.slim-split-container-inset {
  margin: 0 40px;
}
@media (min-width: 1024px) {
  .slim-split-container-inset {
    margin: 0 80px;
  }
}

@supports (display: grid) {
  .slim-split-container .slim-split-component {
    display: grid;
    grid-template-columns: 100%;
  }
  @media (min-width: 768px) {
    .slim-split-container .slim-split-component {
      grid-template-columns: 50% 50%;
    }
  }
  .slim-split-container .slim-split-component .ssc-image {
    width: 100%;
    min-height: 250px;
  }
  .slim-split-container .slim-split-component .ssc-text {
    width: 100%;
  }
}
/* End slim split component */
/* Split component start */
.split-component {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.split-component .sc-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  align-items: flex-start;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}
.split-component .sc-content h3, .split-component .sc-content p, .split-component .sc-content div:not(.additional-content) {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .split-component .sc-content {
    padding: 80px 160px;
  }
}
.split-component .sfc-content {
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px;
  height: 100%;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .split-component .sfc-content {
    padding: 80px 160px;
  }
}
@media (max-width: 1279px) {
  .split-component h3 {
    margin-left: 40px;
  }
}
.split-component .sc-form {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.split-component .sc-form .sc-form-content {
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .split-component .sc-form .sc-form-content {
    padding: 80px;
  }
}
.split-component .sc-image {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.split-component .sc-image-right {
  justify-content: flex-end;
  order: -1;
}
@media (min-width: 768px) {
  .split-component .sc-image-right {
    order: 1;
  }
}
.split-component .sc-image-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 80px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  height: 100%;
}
@media (max-width: 1279px) {
  .split-component .sc-image-grid {
    padding: 20px;
  }
}
.split-component .sc-image-grid > .sc-image-tile {
  width: 28%;
  flex-grow: 0;
  flex-shrink: 0;
}
.split-component .sc-image-grid img {
  width: 100%;
  height: 100%;
  max-height: 190px;
  object-fit: contain;
  padding: 30px;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  .split-component .sc-image-grid img {
    padding: 10px;
  }
}
.split-component .sc-image-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.split-component .sc-image-list .image {
  width: 100%;
  height: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.split-component .sc-text {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  /*p:first-of-type {
      font-weight: 700;
  }*/
}
.split-component .sc-corner-label {
  padding: 18px 60px;
  background-color: #5A915A;
  color: #FFF;
}
.split-component .additional-content {
  display: flex;
  width: calc(100% + 160px);
  justify-content: flex-start;
  align-content: flex-start;
  margin-left: -80px;
}
@media (max-width: 1023px) {
  .split-component .additional-content {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
}
.split-component .additional-content::before {
  content: "";
  height: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .split-component .additional-content {
    flex-direction: column;
  }
}
.split-component .additional-content .sub-component {
  padding-left: 40px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .split-component .additional-content .sub-component:first-of-type {
    padding-left: 80px;
  }
}
.split-component .additional-content .sub-component:last-of-type {
  padding-right: 0px;
}
.split-component .additional-content-1 > * {
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
.split-component .additional-content-2 > * {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .split-component .additional-content-2 > * {
    width: 100%;
  }
}
.split-component .additional-content-3 > * {
  width: 33.3333333333%;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .split-component .additional-content-3 > * {
    width: 100%;
  }
}

.split-container-inset {
  margin: 0 40px;
}
@media (min-width: 1024px) {
  .split-container-inset {
    margin: 0 80px;
  }
}

@supports (display: grid) {
  .split-container .split-component {
    display: grid;
    grid-template-columns: 100%;
  }
  @media (min-width: 1024px) {
    .split-container .split-component {
      grid-template-columns: 50% 50%;
    }
  }
  .split-container .split-component .sc-image {
    min-height: 400px;
    width: 100%;
  }
  .split-container .split-component .sc-form {
    width: 100%;
  }
  .split-container .split-component .sc-text {
    width: 100%;
  }
}
/* Split component end */
/* See widgets component */
/* Tabs component */
.tabs-component {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 80px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .tabs-component {
    padding: 0;
  }
}
.tabs-component .tab-buttons {
  display: flex;
  background-color: none;
}
@media (max-width: 1023px) {
  .tabs-component .tab-buttons {
    flex-wrap: wrap;
    background-color: #457B89;
  }
}
.tabs-component .tab-buttons .tab-button {
  padding: 10px;
  color: #FFF;
  background-color: #457B89;
  cursor: pointer;
  font-size: 14pt;
  line-height: 16pt;
  width: 33%;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .tabs-component .tab-buttons .tab-button {
    padding: 30px;
    font-size: 18pt;
    line-height: 22pt;
    width: auto;
  }
}
.tabs-component .tab-buttons .tab-button:not(:last-child) {
  border-right: 1px solid rgb(86.7427184466, 153.0631067961, 170.2572815534);
}
@media (max-width: 1023px) {
  .tabs-component .tab-buttons .tab-button {
    border-right: 1px solid rgb(86.7427184466, 153.0631067961, 170.2572815534);
    border-bottom: 1px solid rgb(86.7427184466, 153.0631067961, 170.2572815534);
  }
}
.tabs-component .tab-buttons .tab-active {
  background-color: #232525;
  cursor: default;
  border-right: none !important;
}
.tabs-component .tab-content {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow: hidden;
}
.tabs-component .tab-content .tab-inner-content {
  background-color: #232525;
  color: #FFF;
  height: 100%;
  display: none;
  width: 100%;
  padding: 60px;
}
@media (max-width: 1023px) {
  .tabs-component .tab-content .tab-inner-content {
    padding: 30px;
  }
}
.tabs-component .tab-content .tab-inner-content.tab-active {
  display: block;
}
.tabs-component .tab-content .s-tab-inner-content {
  background-color: #232525;
  color: #FFF;
  justify-content: space-between;
  height: 100%;
  display: none;
  width: 100%;
  padding: 60px;
}
@media (max-width: 1023px) {
  .tabs-component .tab-content .s-tab-inner-content {
    flex-direction: column;
    padding: 30px;
  }
}
.tabs-component .tab-content .s-tab-inner-content.tab-active {
  display: flex;
}
@media (min-width: 600px) {
  .tabs-component .tab-content .s-tab-inner-content > * {
    width: calc(50% - 40px);
  }
}
.tabs-component .tab-content .s-tab-inner-content .s-tab-image {
  background-position: center;
  background-size: cover;
  min-height: 360px;
}

/* End tabs component */
/* Text Component */
.text-component {
  padding: 40px 0 40px 160px;
  width: 65%;
  box-sizing: border-box;
  display: flex;
}
@media (max-width: 1279px) {
  .text-component {
    padding: 0;
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .text-component {
    width: 100%;
  }
}
.text-component-image {
  width: 100%;
  padding: 40px 160px;
}
@media (max-width: 1279px) {
  .text-component-image {
    padding: 0;
  }
}
.text-component .tc-image-stack {
  width: 50%;
  box-sizing: border-box;
  padding: 0 40px;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1279px) {
  .text-component .tc-image-stack {
    width: 100%;
    padding: 0;
  }
}
.text-component .tc-image-stack-2 {
  width: calc(50% + 240px);
  margin-right: -80px;
  margin-left: 0;
}
@media (max-width: 1279px) {
  .text-component .tc-image-stack-2 {
    width: 100%;
  }
}
.text-component .tc-image-stack-2.image-left {
  margin-left: -80px;
  margin-right: 0;
}
@media (max-width: 1279px) {
  .text-component .tc-image-stack-2.image-left {
    margin-left: 0;
  }
}
.text-component .tc-image-stack-4 {
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(50% + 160px);
  margin-right: -80px;
}
@media (max-width: 1279px) {
  .text-component .tc-image-stack-4 {
    width: 100%;
    margin-right: 0;
    padding-left: 10px;
    box-sizing: border-box;
  }
}
.text-component .tc-image-stack.image-left {
  padding: 0 160px 0 0;
}
.text-component .tc-image-stack img {
  width: 100%;
  height: auto;
}
.text-component .tc-image-stack .image-stack-1 {
  width: 100%;
}
.text-component .tc-image-stack .image-stack-2 {
  width: 70%;
  height: auto;
}
.text-component .tc-image-stack .image-stack-2:nth-child(1) {
  align-self: flex-start;
}
.text-component .tc-image-stack .image-stack-2:nth-child(2) {
  align-self: flex-end;
  margin-top: -80px;
}
.text-component .tc-image-stack .image-stack-4 {
  width: calc(50% - 10px);
  margin: 0 10px 10px 0;
}
.text-component .tc-image-stack .image-stack-4 img {
  height: 100%;
  object-fit: cover;
}
.text-component .tx-text .tx-content {
  display: flex;
  flex-direction: column;
  color: #232525;
}
@media (max-width: 1279px) {
  .text-component .tx-text .tx-content {
    padding: 80px;
  }
}
.text-component .tx-text .tx-content div {
  max-width: 100%;
}
.text-component .tx-text .tx-content p {
  text-align: left;
}
.text-component ul li, .text-component ol li {
  position: relative;
}
.text-component p.number-heading {
  margin: 0;
  display: inline;
  position: absolute;
  top: 0px;
  left: 0;
}

/* End text component */
/* Widgets & Sub page listing components */
.widgets-component, .sub-page-listing-component {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 160px 0 240px 0;
}
@media (max-width: 1279px) {
  .widgets-component, .sub-page-listing-component {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.widgets-component .introduction, .sub-page-listing-component .introduction {
  padding: 0 80px 0 160px;
  width: 38%;
  height: 475px;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1279px) {
  .widgets-component .introduction, .sub-page-listing-component .introduction {
    padding: 80px 70px;
    width: 100%;
    max-width: 450px;
    height: auto;
  }
}
.widgets-component h3, .sub-page-listing-component h3 {
  margin: 0 0 30px 0;
}
.widgets-component .owl-carousel .owl-stage, .sub-page-listing-component .owl-carousel .owl-stage {
  display: flex;
}
.widgets-component .carousel-controls, .sub-page-listing-component .carousel-controls {
  position: absolute;
  bottom: -80px;
  right: -80px;
  height: 80px;
  width: 160px;
  display: flex;
}
@media (max-width: 1279px) {
  .widgets-component .carousel-controls, .sub-page-listing-component .carousel-controls {
    bottom: -555px;
    right: unset;
    z-index: 99;
    left: 0;
  }
}
.widgets-component .carousel-controls .counter, .sub-page-listing-component .carousel-controls .counter {
  height: 80px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.widgets-component .widget-list-container, .sub-page-listing-component .widget-list-container {
  position: relative;
  width: 100%;
  height: 475px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .widgets-component .widget-list-container, .sub-page-listing-component .widget-list-container {
    padding-bottom: 160px;
  }
}
.widgets-component .widgets-list, .sub-page-listing-component .widgets-list {
  width: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0 auto;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
}
.widgets-component .widgets-list.owl-carousel, .sub-page-listing-component .widgets-list.owl-carousel {
  display: block;
}
.widgets-component .widgets-list.owl-carousel .stacked-widget, .sub-page-listing-component .widgets-list.owl-carousel .stacked-widget {
  height: 100%;
}
.widgets-component .widgets-list, .sub-page-listing-component .widgets-list {
  /* Dynamic styles for showing widgets if Layout = Single Row Only */
}
.widgets-component .widgets-list-2 div:nth-of-type(1n+3).single-row, .sub-page-listing-component .widgets-list-2 div:nth-of-type(1n+3).single-row {
  display: none;
}
.widgets-component .widgets-list-3 div:nth-of-type(1n+4).single-row, .sub-page-listing-component .widgets-list-3 div:nth-of-type(1n+4).single-row {
  display: none;
}
.widgets-component .widgets-list-4 div:nth-of-type(1n+5).single-row, .sub-page-listing-component .widgets-list-4 div:nth-of-type(1n+5).single-row {
  display: none;
}
.widgets-component .widgets-list, .sub-page-listing-component .widgets-list {
  /* Dynamic styles for widgets per row, based on max row size setting for desktops */
}
.widgets-component .widgets-list-2 > div, .sub-page-listing-component .widgets-list-2 > div {
  width: 100%;
}
@media (min-width: 1024px) {
  .widgets-component .widgets-list-2 > div, .sub-page-listing-component .widgets-list-2 > div {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .widgets-component .widgets-list-2 > div.sw-image-right, .sub-page-listing-component .widgets-list-2 > div.sw-image-right {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .widgets-component .widgets-list-2 > div.sw-image-right, .sub-page-listing-component .widgets-list-2 > div.sw-image-right {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .widgets-component .widgets-list-2 > div.sw-image-left, .sub-page-listing-component .widgets-list-2 > div.sw-image-left {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .widgets-component .widgets-list-2 > div.sw-image-left, .sub-page-listing-component .widgets-list-2 > div.sw-image-left {
    width: 50%;
  }
}
.widgets-component .widgets-list-3 > div, .sub-page-listing-component .widgets-list-3 > div {
  width: 100%;
}
@media (min-width: 1024px) {
  .widgets-component .widgets-list-3 > div, .sub-page-listing-component .widgets-list-3 > div {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .widgets-component .widgets-list-3 > div.sw-image-right, .sub-page-listing-component .widgets-list-3 > div.sw-image-right {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .widgets-component .widgets-list-3 > div.sw-image-right, .sub-page-listing-component .widgets-list-3 > div.sw-image-right {
    width: 50%;
  }
}
@media (min-width: 1680px) {
  .widgets-component .widgets-list-3 > div.sw-image-right, .sub-page-listing-component .widgets-list-3 > div.sw-image-right {
    width: 33%;
  }
}
@media (min-width: 1024px) {
  .widgets-component .widgets-list-3 > div.sw-image-left, .sub-page-listing-component .widgets-list-3 > div.sw-image-left {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .widgets-component .widgets-list-3 > div.sw-image-left, .sub-page-listing-component .widgets-list-3 > div.sw-image-left {
    width: 50%;
  }
}
@media (min-width: 1680px) {
  .widgets-component .widgets-list-3 > div.sw-image-left, .sub-page-listing-component .widgets-list-3 > div.sw-image-left {
    width: 33%;
  }
}
@media (min-width: 1280px) {
  .widgets-component .widgets-list-3 > div, .sub-page-listing-component .widgets-list-3 > div {
    width: 33%;
  }
}
.widgets-component .widgets-list-4 > div, .sub-page-listing-component .widgets-list-4 > div {
  width: 100%;
}
@media (min-width: 1024px) {
  .widgets-component .widgets-list-4 > div, .sub-page-listing-component .widgets-list-4 > div {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .widgets-component .widgets-list-4 > div.sw-image-right, .sub-page-listing-component .widgets-list-4 > div.sw-image-right {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .widgets-component .widgets-list-4 > div.sw-image-right, .sub-page-listing-component .widgets-list-4 > div.sw-image-right {
    width: 50%;
  }
}
@media (min-width: 1680px) {
  .widgets-component .widgets-list-4 > div.sw-image-right, .sub-page-listing-component .widgets-list-4 > div.sw-image-right {
    width: 25%;
  }
}
@media (min-width: 1024px) {
  .widgets-component .widgets-list-4 > div.sw-image-left, .sub-page-listing-component .widgets-list-4 > div.sw-image-left {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .widgets-component .widgets-list-4 > div.sw-image-left, .sub-page-listing-component .widgets-list-4 > div.sw-image-left {
    width: 50%;
  }
}
@media (min-width: 1680px) {
  .widgets-component .widgets-list-4 > div.sw-image-left, .sub-page-listing-component .widgets-list-4 > div.sw-image-left {
    width: 25%;
  }
}
@media (min-width: 1280px) {
  .widgets-component .widgets-list-4 > div, .sub-page-listing-component .widgets-list-4 > div {
    width: 33%;
  }
}
@media (min-width: 1680px) {
  .widgets-component .widgets-list-4 > div, .sub-page-listing-component .widgets-list-4 > div {
    width: 25%;
  }
}
.widgets-component .widgets-list .no-children, .sub-page-listing-component .widgets-list .no-children {
  width: 100%;
}
.widgets-component .widgets-list .no-children p, .sub-page-listing-component .widgets-list .no-children p {
  width: 100%;
  text-align: center;
}
.widgets-component .stacked-widget, .sub-page-listing-component .stacked-widget {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.widgets-component .stacked-widget .sw-text, .sub-page-listing-component .stacked-widget .sw-text {
  box-sizing: border-box;
  color: #FFF;
  height: 100%;
  padding: 40px;
}
@media (min-width: 1024px) {
  .widgets-component .stacked-widget .sw-text, .sub-page-listing-component .stacked-widget .sw-text {
    padding: 40px;
    width: 475px;
    max-height: 260px;
  }
}
.widgets-component .stacked-widget .sw-image, .sub-page-listing-component .stacked-widget .sw-image {
  box-sizing: border-box;
  min-height: 230px;
  background-size: cover;
  background-position: center;
  width: 475px;
}
.widgets-component .stacked-widget .sw-content, .sub-page-listing-component .stacked-widget .sw-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.widgets-component .stacked-widget .sw-content h4, .sub-page-listing-component .stacked-widget .sw-content h4 {
  margin-bottom: 10px;
}
.widgets-component .stacked-widget .sw-content div, .sub-page-listing-component .stacked-widget .sw-content div {
  margin: 15px 0;
  overflow: hidden;
  max-height: 44px;
}
.widgets-component .stacked-widget .sw-content div p, .sub-page-listing-component .stacked-widget .sw-content div p {
  margin: 0;
}
.widgets-component .stacked-widget .sw-content .btn-small, .sub-page-listing-component .stacked-widget .sw-content .btn-small {
  margin-top: auto;
}
.widgets-component .stacked-widget .text-left, .sub-page-listing-component .stacked-widget .text-left {
  align-items: flex-start;
  text-align: left;
}
.widgets-component .stacked-widget .text-center, .sub-page-listing-component .stacked-widget .text-center {
  align-items: center;
  text-align: center;
}
.widgets-component .stacked-widget .text-right, .sub-page-listing-component .stacked-widget .text-right {
  align-items: flex-end;
  text-align: right;
}
.widgets-component .stacked-widget .text-top, .sub-page-listing-component .stacked-widget .text-top {
  justify-content: flex-start;
}
.widgets-component .stacked-widget .text-middle, .sub-page-listing-component .stacked-widget .text-middle {
  justify-content: center;
}
.widgets-component .stacked-widget .text-bottom, .sub-page-listing-component .stacked-widget .text-bottom {
  justify-content: flex-end;
}
.widgets-component .sw-image-below .sw-text, .sub-page-listing-component .sw-image-below .sw-text {
  order: -1;
}
.widgets-component .sw-image-left .sw-text, .widgets-component .sw-image-right .sw-text, .sub-page-listing-component .sw-image-left .sw-text, .sub-page-listing-component .sw-image-right .sw-text {
  padding: 80px;
}
.widgets-component .sw-image-left .sw-content div, .widgets-component .sw-image-right .sw-content div, .sub-page-listing-component .sw-image-left .sw-content div, .sub-page-listing-component .sw-image-right .sw-content div {
  max-height: unset;
}
@media (min-width: 768px) {
  .widgets-component .sw-image-left, .widgets-component .sw-image-right, .sub-page-listing-component .sw-image-left, .sub-page-listing-component .sw-image-right {
    flex-direction: row;
  }
  .widgets-component .sw-image-left .sw-text, .widgets-component .sw-image-right .sw-text, .sub-page-listing-component .sw-image-left .sw-text, .sub-page-listing-component .sw-image-right .sw-text {
    width: 480px;
    height: 475px;
    max-height: 475px;
  }
  .widgets-component .sw-image-left .sw-image, .widgets-component .sw-image-right .sw-image, .sub-page-listing-component .sw-image-left .sw-image, .sub-page-listing-component .sw-image-right .sw-image {
    width: 400px;
    height: 475px;
    max-height: 475px;
  }
}
@media (min-width: 1280px) {
  .widgets-component .sw-image-left .sw-text, .widgets-component .sw-image-right .sw-text, .sub-page-listing-component .sw-image-left .sw-text, .sub-page-listing-component .sw-image-right .sw-text {
    width: 480px;
    height: 475px;
    max-height: 475px;
  }
  .widgets-component .sw-image-left .sw-image, .widgets-component .sw-image-right .sw-image, .sub-page-listing-component .sw-image-left .sw-image, .sub-page-listing-component .sw-image-right .sw-image {
    width: 400px;
    height: 475px;
    max-height: 475px;
  }
}
@media (min-width: 768px) {
  .widgets-component .sw-image-right .sw-text, .sub-page-listing-component .sw-image-right .sw-text {
    order: -1;
  }
}
.widgets-component .widget-circle .sw-image, .sub-page-listing-component .widget-circle .sw-image {
  width: 340px;
  min-height: 340px;
  border-radius: 50%;
  margin: 10px auto;
}
.widgets-component .image-widget, .sub-page-listing-component .image-widget {
  box-sizing: border-box;
}
.widgets-component .image-widget .iw-image, .sub-page-listing-component .image-widget .iw-image {
  min-height: 360px;
  color: #FFF;
  height: 475px;
  width: 475px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .widgets-component .image-widget .iw-image, .sub-page-listing-component .image-widget .iw-image {
    width: 100vw;
  }
}
.widgets-component .image-widget .iw-image .image-container, .sub-page-listing-component .image-widget .iw-image .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.widgets-component .image-widget .iw-image .iw-content, .sub-page-listing-component .image-widget .iw-image .iw-content {
  padding: 80px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .widgets-component .image-widget .iw-image .iw-content, .sub-page-listing-component .image-widget .iw-image .iw-content {
    padding: 60px;
  }
}
.widgets-component .image-widget .iw-image h5, .sub-page-listing-component .image-widget .iw-image h5 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 38px;
}
@media (max-width: 1279px) {
  .widgets-component .image-widget .iw-image h5, .sub-page-listing-component .image-widget .iw-image h5 {
    font-size: 28px;
    line-height: 30px;
  }
}
.widgets-component .image-widget .iw-image .article-date, .sub-page-listing-component .image-widget .iw-image .article-date {
  font-size: 10pt;
  font-weight: 700;
  margin-bottom: 10px;
  z-index: 1;
}
.widgets-component .image-widget .iw-image a, .sub-page-listing-component .image-widget .iw-image a {
  position: relative;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
}
.widgets-component .image-widget .iw-image a:hover .image-container, .sub-page-listing-component .image-widget .iw-image a:hover .image-container {
  transform: scale(1.05, 1.05);
}
.widgets-component .image-widget .iw-image a:hover h5.color-hover-yellow, .sub-page-listing-component .image-widget .iw-image a:hover h5.color-hover-yellow {
  color: #416B4E;
}
.widgets-component .image-widget .iw-image a:hover h5.color-hover-white, .sub-page-listing-component .image-widget .iw-image a:hover h5.color-hover-white {
  color: #FFF;
}
.widgets-component .image-widget .iw-image a:hover h5.color-hover-black, .sub-page-listing-component .image-widget .iw-image a:hover h5.color-hover-black {
  color: #232525;
}
.widgets-component .image-widget .iw-image a:hover h5.color-hover-blue, .sub-page-listing-component .image-widget .iw-image a:hover h5.color-hover-blue {
  color: #457B89;
}
.widgets-component .image-widget .iw-image a:hover h5.color-hover-light-grey, .sub-page-listing-component .image-widget .iw-image a:hover h5.color-hover-light-grey {
  color: #F3F3F3;
}
.widgets-component .icon-cta-widget, .sub-page-listing-component .icon-cta-widget {
  min-height: 360px;
  color: #FFF;
  height: 475px;
  width: 475px;
  min-width: 475px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .widgets-component .icon-cta-widget, .sub-page-listing-component .icon-cta-widget {
    width: 100vw;
  }
}
.widgets-component .icon-cta-widget .image-container, .sub-page-listing-component .icon-cta-widget .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  pointer-events: none;
}
.widgets-component .icon-cta-widget .icw-content, .sub-page-listing-component .icon-cta-widget .icw-content {
  height: 100%;
  padding: 60px 40px 60px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
}
.widgets-component .icon-cta-widget .icw-content .icon-container, .sub-page-listing-component .icon-cta-widget .icw-content .icon-container {
  height: 90px;
  max-height: 100px;
  display: flex;
  z-index: 2;
}
.widgets-component .icon-cta-widget .icw-content .icon-container img, .sub-page-listing-component .icon-cta-widget .icw-content .icon-container img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.widgets-component .icon-cta-widget .icw-content h5, .sub-page-listing-component .icon-cta-widget .icw-content h5 {
  margin-bottom: auto;
  font-size: 32px;
  line-height: 35px;
}
@media (max-width: 1279px) {
  .widgets-component .icon-cta-widget .icw-content h5, .sub-page-listing-component .icon-cta-widget .icw-content h5 {
    font-size: 28px;
    line-height: 30px;
  }
}
.widgets-component .icon-cta-widget:hover, .widgets-component .icon-cta-widget.hover, .sub-page-listing-component .icon-cta-widget:hover, .sub-page-listing-component .icon-cta-widget.hover {
  text-decoration: none;
}

.owl-carousel .sw-content {
  height: calc(100% - 20px) !important;
}

.widgets-bg-white {
  background-color: #FFF;
}
.widgets-bg-white h3 {
  color: #416B4E;
}
.widgets-bg-white .sw-text {
  background-color: #416B4E !important;
  color: #FFF !important;
}
.widgets-bg-dark-blue h3 {
  color: #FFF;
}
.widgets-bg-dark-blue {
  background-color: #416B4E;
}
.widgets-bg-dark-blue .sw-text {
  background-color: #FFF !important;
  color: #416B4E !important;
}
.widgets-bg-light-blue h3 {
  color: #FFF;
}
.widgets-bg-light-blue {
  background-color: #5A915A;
}
.widgets-bg-light-blue .sw-text {
  background-color: #FFF !important;
  color: #416B4E !important;
}
.widgets-bg-black h3 {
  color: #FFF;
}
.widgets-bg-black {
  background-color: #000;
}
.widgets-bg-black .sw-text {
  background-color: #FFF !important;
  color: #416B4E !important;
}

/* End widgets component */
.sitemap {
  max-width: 1400px;
  margin: 40px auto;
  width: 100%;
}
.sitemap .top-level {
  border-left: solid 1px #232525;
  padding-left: 20px;
  margin-left: 20px;
}
.sitemap ul {
  list-style: none;
  padding-left: 30px;
}
.sitemap ul li:before {
  content: "-";
  color: #232525;
}
.sitemap ul a {
  font-size: 14pt;
  line-height: 18pt;
  color: #232525;
  text-decoration: none;
}
.sitemap ul a:hover {
  color: #416B4E;
}

.quotes-carousel {
  padding-right: 80px !important;
  padding-left: 80px !important;
  box-sizing: border-box;
}
@media (max-width: 599px) {
  .quotes-carousel {
    max-width: 90%;
    margin-left: 5%;
  }
}
.quotes-carousel::before {
  content: "“";
  font-size: 80px;
  line-height: 80px;
  position: absolute;
  top: -20px;
  left: 40px;
}
@media (max-width: 1279px) {
  .quotes-carousel::before {
    left: 50px;
  }
}
.quotes-carousel .quote-text {
  font-size: 30px;
  line-height: 33px;
  font-weight: 300;
  position: relative;
}
@media (max-width: 1279px) {
  .quotes-carousel .quote-text {
    font-size: 20px;
    line-height: 25px;
  }
}
.quotes-carousel .attribution {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 1279px) {
  .quotes-carousel .attribution {
    font-size: 18px;
  }
}

.spinner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
  width: auto;
}
.spinner .spinner-active span {
  font-size: 24pt;
  margin: 0;
  padding: 0;
  font-weight: 700;
}
.spinner .spinner-active span.display-number, .spinner .spinner-active span.suffix {
  margin-left: 0px;
}
.spinner .spinner-description {
  font-size: 12pt;
}

.spinner-content-wrapper {
  border-left: solid 2px #FFF;
  padding-left: 10px;
}

.icons-column {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .icons-column {
    padding-left: 0 !important;
  }
}
.icons-column .icon-and-description {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
}
.icons-column h5 {
  font-size: 32px;
  line-height: 35px;
}
.icons-column h6 {
  font-weight: 400;
}
.icons-column .icon {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.contact-grid {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.contact-grid .contact-grid-tile {
  width: 33%;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 10px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .contact-grid .contact-grid-tile {
    width: 100%;
  }
}
.contact-grid .contact-grid-tile .title {
  font-weight: 400;
}
.contact-grid .contact-grid-tile .telephone {
  font-weight: 400;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 80px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  height: 100%;
  padding-left: 0 !important;
}
.logo-grid .logo-grid-tile {
  width: 28%;
  flex-grow: 0;
  flex-shrink: 0;
}
.logo-grid img {
  width: 100%;
  height: 100%;
  max-height: 170px;
  object-fit: contain;
  padding: 30px;
  box-sizing: border-box;
}

.port-locations-component {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 80px 0 80px 160px;
  margin: 0;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .port-locations-component {
    padding: 0;
    flex-direction: column;
  }
}
.port-locations-component h3 {
  margin: 30px 0 30px 80px;
}
@media (max-width: 1023px) {
  .port-locations-component h3 {
    margin: 30px 0 0 60px;
  }
}
.port-locations-component .port-location-details {
  margin-left: -80px;
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .port-locations-component .port-location-details {
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
  }
}
.port-locations-component .port-map {
  width: calc(50% + 80px);
  flex-grow: 0;
  flex-shrink: 0;
  max-height: 900px;
  display: flex;
}
@media (max-width: 1023px) {
  .port-locations-component .port-map {
    display: none;
  }
}
.port-locations-component .port-map svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.port-locations-component .port-map .location-pin {
  cursor: pointer;
  fill: #457B89;
  transition: all 0.3s;
}
.port-locations-component .port-map .location-pin:hover, .port-locations-component .port-map .location-pin.hover, .port-locations-component .port-map .location-pin.selected {
  fill: #5A915A;
}
.port-locations-component .details-panel {
  margin-top: 30px;
  border: 1px solid #416B4E;
  width: 100%;
  display: flex;
}
@media (max-width: 1023px) {
  .port-locations-component .details-panel {
    flex-direction: column;
  }
}
.port-locations-component .details-panel .key-contact {
  box-sizing: border-box;
  width: 25%;
  border-right: 1px solid #416B4E;
  position: relative;
}
@media (max-width: 1023px) {
  .port-locations-component .details-panel .key-contact {
    width: 100%;
    order: 1;
    border-right: none;
  }
}
.port-locations-component .details-panel .key-contact .key-contact-inner {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: #416B4E;
}
.port-locations-component .details-panel .key-contact .key-contact-inner.active {
  display: block;
}
@media (max-width: 1279px) {
  .port-locations-component .details-panel .key-contact .key-contact-inner.active {
    display: flex;
  }
}
.port-locations-component .details-panel .key-contact img {
  width: 100%;
  height: auto;
}
@media (max-width: 1279px) {
  .port-locations-component .details-panel .key-contact img {
    width: 50%;
    order: 2;
    object-fit: cover;
    max-height: 300px;
  }
}
.port-locations-component .details-panel .key-contact h6 {
  margin-bottom: 20px;
}
.port-locations-component .details-panel .key-contact span {
  display: block;
}
.port-locations-component .details-panel .key-contact .contact-info {
  padding: 30px;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  .port-locations-component .details-panel .key-contact .contact-info {
    width: 50%;
  }
}
.port-locations-component .details-panel .port-details {
  padding: 40px 80px;
  box-sizing: border-box;
  width: 75%;
  position: relative;
}
@media (max-width: 1023px) {
  .port-locations-component .details-panel .port-details {
    order: 0;
    padding: 40px 20px;
  }
}
.port-locations-component .details-panel .port-details .port-details-inner {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  position: relative;
}
.port-locations-component .details-panel .port-details .port-details-inner.active {
  display: block;
}
.port-locations-component .details-panel .port-details a {
  position: absolute;
  bottom: 0;
  right: -20px;
}
@media (max-width: 1023px) {
  .port-locations-component .details-panel .port-details a {
    right: -80px;
  }
}
.port-locations-component .details-panel .services-list {
  display: flex;
}
.port-locations-component .details-panel .services-list .service-column {
  width: 40%;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}
@media (max-width: 1023px) {
  .port-locations-component .details-panel .services-list .service-column {
    width: 33%;
  }
}
.port-locations-component .details-panel .services-list .service-column span {
  display: block;
  margin: 8px 0;
  border-bottom: 1px solid #F3F3F3;
  padding-bottom: 8px;
}
.port-locations-component .thumbnails {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1279px) {
  .port-locations-component .thumbnails {
    margin-bottom: 30px;
  }
}
.port-locations-component .thumbnails .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.port-locations-component .thumbnails .port-thumbnail {
  width: 25%;
  height: 130px;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  cursor: pointer;
  background-color: #416B4E;
  box-sizing: border-box;
  padding: 10px;
}
.port-locations-component .thumbnails .port-thumbnail h6 {
  font-weight: 500;
}
@media (max-width: 1023px) {
  .port-locations-component .thumbnails .port-thumbnail {
    width: 50%;
  }
}
.port-locations-component .thumbnails .port-thumbnail:hover {
  color: #232525 !important;
}
.port-locations-component .thumbnails .port-thumbnail:hover .image-container, .port-locations-component .thumbnails .port-thumbnail.hover .image-container, .port-locations-component .thumbnails .port-thumbnail.selected .image-container {
  opacity: 0;
}

/* Article Text Block Component */
.article-text-block-component {
  margin: 0 0 20px 0;
  width: 75%;
  padding: 0 240px;
  box-sizing: border-box;
  font-size: 24px;
  line-height: 27px;
  color: #232525;
  font-weight: 400;
}
@media (max-width: 1279px) {
  .article-text-block-component {
    padding: 0 30px;
    width: 100%;
  }
}
.article-text-block-component .atb-text .atb-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.article-text-block-component .atb-text .atb-content div {
  max-width: 100%;
}
.article-text-block-component .atb-text .atb-content p {
  text-align: left;
}

.article-heading {
  font-size: 38px;
  line-height: 40px;
  font-weight: 500;
  color: #416B4E;
}

/* End Article Text Block component */
/* Text Component */
.image-break-component {
  margin: 0 auto 0 0;
  width: 100%;
  padding: 0 240px;
  width: 75%;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  .image-break-component {
    width: 100%;
    padding: 0 30px;
  }
}
.image-break-component .ib-image-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 20px 0;
}
.image-break-component .ib-image-list .ib-image {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.image-break-component .ib-image-list .ib-image div {
  max-width: 100%;
}
.image-break-component .ib-image-list .ib-image p {
  text-align: left;
}
.image-break-component .ib-image-list .ib-image img {
  width: 100%;
  padding: 0;
  margin: 0;
  max-height: 500px;
  object-fit: cover;
}
.image-break-component .ib-image-list .ib-image .caption {
  background-color: #232525;
  color: #FFF;
  padding: 10px;
  margin: 0;
  font-size: 14px;
}
.image-break-component .ib-image-list .ib-image:not(:first-of-type) {
  padding-left: 10px;
}

/* End text component */
/* Video Component */
.video-component {
  padding: 80px 160px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
}
@media (max-width: 1279px) {
  .video-component {
    flex-direction: column;
    padding: 0;
  }
}
.video-component .vc-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 400px;
  padding-right: 80px;
}
@media (max-width: 1279px) {
  .video-component .vc-content {
    width: auto;
    padding: 40px 70px;
    box-sizing: border-box;
  }
}
.video-component .vc-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1279px) {
  .video-component .vc-overlay {
    width: 100%;
    left: 0;
  }
}
.video-component .vc-video-play-button {
  background-color: #416B4E;
  color: #232525;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.video-component .vc-video-play-button:hover {
  text-decoration: none;
  background-color: #232525;
  color: #FFF;
}
.video-component .vc-video-play-button::before {
  content: "";
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #232525;
  width: 128px;
  position: absolute;
  top: -6px;
  left: -6px;
  height: 128px;
}
.video-component .vc-video-frame {
  width: calc(100% - 400px);
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  display: flex;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .video-component .vc-video-frame {
    width: 100%;
    padding: 0;
  }
}
.video-component .vc-video-frame-inner, .video-component .vc-video-frame iframe {
  position: relative;
  min-width: 350px;
  max-width: 1000px;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
  object-fit: cover;
  overflow: hidden;
}

/* End video component */
/* Timeline component */
.timeline-component {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 200px);
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .timeline-component {
    max-width: unset;
  }
}
.timeline-component .timeline-grid {
  display: -ms-grid;
  display: grid;
  margin: 40px auto;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 160px;
  position: relative;
}
@media (max-width: 1023px) {
  .timeline-component .timeline-grid {
    grid-template-columns: 1fr;
  }
}
.timeline-component .timeline-grid::before {
  content: "";
  width: 20px;
  top: 0;
  bottom: 0;
  left: calc(50% - 10px);
  position: absolute;
  background-color: #416B4E;
}
.timeline-component .timeline-grid .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  z-index: 0;
}
.timeline-component .timeline-grid .timeline-panel {
  padding: 40px 80px;
  min-height: 350px;
  max-width: 650px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .timeline-component .timeline-grid .timeline-panel {
    padding: 40px;
  }
}
.timeline-component .timeline-grid .timeline-panel-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.timeline-component .timeline-grid .timeline-panel p {
  z-index: 2;
  font-size: 25px;
  line-height: 28px;
  font-weight: 500;
}
.timeline-component .timeline-grid .timeline-panel:nth-of-type(odd) {
  margin-bottom: 160px;
  margin-top: 0;
}
@media (max-width: 1023px) {
  .timeline-component .timeline-grid .timeline-panel:nth-of-type(odd) {
    margin: 20px;
  }
}
.timeline-component .timeline-grid .timeline-panel:nth-of-type(even) {
  margin-top: 160px;
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .timeline-component .timeline-grid .timeline-panel:nth-of-type(even) {
    margin: 20px;
  }
}

/* Widgets & Sub page listing components */
.terminals-component {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 160px 0 160px 0;
}
.terminals-component .introduction {
  padding: 0 80px;
  width: 80px;
  height: 550px;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1279px) {
  .terminals-component .introduction {
    width: 0;
    padding: 0;
  }
}
.terminals-component h3 {
  margin: 0 0 30px 0;
}
.terminals-component .carousel-controls {
  position: absolute;
  bottom: 0px;
  right: -80px;
  height: 80px;
  width: 160px;
  display: flex;
  z-index: 10;
}
@media (max-width: 1279px) {
  .terminals-component .carousel-controls {
    right: unset;
    left: 0px;
  }
}
.terminals-component .terminals-list-container {
  position: relative;
  width: 100%;
  height: 550px;
  margin: 0;
  overflow: hidden;
}
.terminals-component .terminals-list {
  width: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0 auto;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  max-height: 550px;
}
.terminals-component .terminals-list .no-children {
  width: 100%;
}
.terminals-component .terminals-list .no-children p {
  width: 100%;
  text-align: center;
}
.terminals-component .terminal {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  box-sizing: border-box;
  height: 100%;
  height: 550px;
  position: relative;
}
.terminals-component .terminal .terminal-details {
  padding: 80px;
  width: 480px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  .terminals-component .terminal .terminal-details {
    width: 100vw;
  }
}
.terminals-component .terminal .terminal-details h3 {
  margin: 0;
}
.terminals-component .terminal .terminal-image {
  width: 400px;
}
.terminals-component .terminal .terminal-image img {
  width: 400px;
  height: 550px;
  object-fit: cover;
}
@media (max-width: 1279px) {
  .terminals-component .terminal .terminal-image {
    display: none;
  }
}
.terminals-component .terminal .address {
  white-space: pre;
  font-size: 22px;
  line-height: 25px;
}
.terminals-component .terminal .terminal-counter {
  position: absolute;
  bottom: 30px;
  left: 100px;
}
@media (max-width: 1279px) {
  .terminals-component .terminal .terminal-counter {
    left: 180px;
  }
}

/* End widgets component */
.live-data-component {
  padding: 80px;
  box-sizing: border-box;
  background-color: #F3F3F3;
  width: calc(50% + 160px);
  margin-top: -160px;
  margin-right: -160px;
  margin-bottom: -120px;
  flex-shrink: 0;
  height: calc(100% + 280px);
}
@media (max-width: 1279px) {
  .live-data-component {
    padding: 40px 30px;
    width: 100vw;
    margin-top: 80px;
    margin-left: 0;
    margin-right: -40px;
    height: auto;
  }
  .live-data-component h3 {
    margin-left: 40px;
  }
}
@media (max-width: 1279px) {
  .live-data-component .live-data-inner {
    overflow: auto;
  }
}
.live-data-component .live-data-table {
  table-layout: fixed;
}
@media (max-width: 767px) {
  .live-data-component .live-data-table {
    table-layout: auto;
  }
}
.live-data-component .live-data-table tr {
  background-color: transparent;
}
.live-data-component .live-data-table th {
  color: #232525;
  font-size: 20px;
  padding: 30px 0 8px 6px;
}
@media (max-width: 767px) {
  .live-data-component .live-data-table th {
    font-size: 14px;
  }
}
.live-data-component .live-data-table .table-title {
  font-size: 24px;
}
@media (max-width: 767px) {
  .live-data-component .live-data-table .table-title {
    font-size: 18px;
  }
}
.live-data-component .live-data-table td {
  font-size: 14px;
  line-height: 16px;
}
.live-data-component .live-data-table th, .live-data-component .live-data-table td {
  max-width: 200px;
}

.contact-us-component {
  padding: 80px 160px;
  max-width: 800px;
}
.contact-us-component .responsiveRow {
  margin-bottom: 30px;
}
.contact-us-component .hideMe {
  display: none;
}
.contact-us-component label {
  color: inherit;
  font-weight: bold;
}
.contact-us-component .alignBottom {
  margin-bottom: 8px;
}
.contact-us-component .requiredStar {
  margin-left: 3px;
}
.contact-us-component input[type=text], .contact-us-component input[type=email], .contact-us-component textarea, .contact-us-component select {
  width: 100%;
  max-width: 100% !important;
  background-color: #FFF;
  padding: 15px;
  border: 2px solid black;
  max-height: 200px;
  box-sizing: border-box;
}
.contact-us-component input[type=text]:focus, .contact-us-component input[type=email]:focus, .contact-us-component textarea:focus, .contact-us-component select:focus {
  outline: none;
  border: 2px solid #457B89;
}
.contact-us-component select {
  min-width: 100%;
  height: 50px;
  color: black;
  /* outline-color: black; */
  background-color: #FFF;
  border: 2px solid black;
  padding: 0 10px;
  appearance: none;
  background-image: url(/images/cta-download.png);
  background-repeat: no-repeat;
  background-position: right;
  font-family: "nimbus-sans";
  font-size: 16px;
}

.umbraco-forms-page .umbraco-forms-navigation > .col-md-12 {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.1s ease-in-out;
  min-width: 152px;
  padding: 0 10px 0 6px;
  position: relative;
}
.umbraco-forms-page .umbraco-forms-navigation > .col-md-12:before {
  content: "";
  background-color: #FFF;
  background-size: cover;
  background-position: center;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  transition: all 0.2s;
  min-width: 50px;
  display: inline-block;
  background-image: url("/images/PPL/links/Arrow link_dark_green.svg");
  background-repeat: no-repeat;
}
.umbraco-forms-page .umbraco-forms-navigation > .col-md-12:hover {
  color: #FFF !important;
  background-color: #5A915A !important;
}
.umbraco-forms-page .umbraco-forms-navigation > .col-md-12:hover:before {
  background-image: url("/images/PPL/links/Arrow%20link_green.svg");
  background-color: #FFF;
}
.umbraco-forms-page .umbraco-forms-navigation > .col-md-12:hover input.btn.primary {
  color: #FFF !important;
}
.umbraco-forms-page .umbraco-forms-navigation > .col-md-12 input.btn.primary {
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.1s ease-in-out;
  font-size: 18px;
  position: relative;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
  margin: 0;
  cursor: pointer;
  font-weight: 700;
  flex-grow: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #416B4E;
  background-repeat: no-repeat;
  background-color: transparent;
  text-align: left;
  position: absolute;
  left: 0;
  top: 0;
  min-width: 170px;
  padding-left: 75px;
}
.umbraco-forms-page .umbraco-forms-navigation > .col-md-12 input.btn.primary:hover {
  color: #FFF !important;
}

/* Featured Content Component styles */
.featured-content-component h3 {
  margin: 40px auto 40px 80px;
  text-align: left;
}
.featured-content-component .fc-title {
  width: 100%;
  flex-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.featured-content-component .simple-layout {
  min-height: 500px;
}
.featured-content-component .grid-template {
  -ms-grid-column-span: 1;
  -ms-grid-row-span: 1;
  grid-row: span 1;
  grid-column: span 1;
}
.featured-content-component .grid-template .v-span-2 {
  -ms-grid-column-span: 1;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  grid-column: span 1;
}
.featured-content-component .grid-template .article-listing {
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  padding: 100px 80px 80px 80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .featured-content-component .grid-template .article-listing {
    width: 100%;
    padding: 80px 40px 40px 40px;
  }
}
.featured-content-component .grid-template .article-listing .image-container {
  transition: 0.2s;
}
.featured-content-component .grid-template .article-listing:hover {
  text-decoration: none;
}
.featured-content-component .grid-template .article-listing:hover .image-container {
  transform: scale(1.05, 1.05);
}
.featured-content-component .grid-template .article-summary {
  z-index: 2;
  height: 100%;
}
.featured-content-component .grid-template .article-summary-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.featured-content-component .grid-template .article-summary h5 {
  font-size: 36px;
  line-height: 38px;
  font-weight: 400;
  margin-bottom: 60px;
}
.featured-content-component .grid-template .article-summary h4 {
  margin: 0 80px;
  font-weight: 500;
}
.featured-content-component .grid-template .category-badge {
  position: absolute;
  top: 0;
  left: 80px;
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #FFF;
  z-index: 2;
  box-sizing: border-box;
  padding: 6px 10px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .featured-content-component .grid-template .category-badge {
    left: 40px;
  }
}
.featured-content-component .grid-template .category-badge-news {
  background-color: #416B4E;
  color: #232525;
}
.featured-content-component .grid-template .category-badge-blog {
  background-color: #457B89;
}
.featured-content-component .grid-template .category-badge-case-study {
  background-color: #416B4E;
  color: #232525;
}
.featured-content-component .grid-template .category-badge-media {
  background-color: #5A915A;
}
.featured-content-component .grid-template .category-badge-other {
  background-color: #416B4E;
  color: #232525;
}
.featured-content-component .grid-template .article-date {
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.featured-content-component .grid-template .image-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* End news summary styles */
/* Gallery component */
.insights-component {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  position: relative;
}
.insights-component h3 {
  z-index: 9;
  margin: 80px 160px 40px 160px;
}
@media (max-width: 1279px) {
  .insights-component h3 {
    margin: 40px 70px;
  }
}
.insights-component .insights-link {
  position: absolute;
  right: 80px;
  bottom: 60px;
  margin: 0;
}
.insights-component .insights-inner {
  width: 100%;
  min-height: 450px;
  position: relative;
}
@media (max-width: 1279px) {
  .insights-component .insights-inner {
    display: flex;
    flex-direction: column;
  }
}
.insights-component .insights-inner .image-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 75vw;
  background-size: cover;
}
.insights-component .insights-inner .secondary-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25vw;
}
@media (max-width: 1279px) {
  .insights-component .insights-inner .secondary-background {
    top: unset;
    left: 0;
    width: 100%;
    height: 250px;
  }
}
.insights-component .insights-floating-frame {
  min-height: 450px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1279px) {
  .insights-component .insights-floating-frame {
    position: relative;
    height: auto;
    flex-direction: column;
  }
}
.insights-component .caption-container {
  width: 50%;
  height: 450px;
  box-sizing: border-box;
  padding: 0 80px 0 160px;
  text-align: left;
  z-index: 30;
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: flex-start;
  align-content: stretch;
}
@media (max-width: 1279px) {
  .insights-component .caption-container {
    left: 0;
    width: 100%;
    margin-left: 0;
    padding: 20px 60px;
    height: auto;
  }
}
.insights-component .caption-container h3 {
  text-align: left;
  margin: 0 0 30px 0;
  font-size: 40px;
  line-height: 43px;
}
@media (max-width: 1279px) {
  .insights-component .caption-container h3 {
    margin: 0 0 10px 0;
    font-size: 34px;
    line-height: 35px;
  }
}
.insights-component .caption-container .article-date {
  font-weight: 700;
  visibility: hidden;
}
@media (max-width: 1279px) {
  .insights-component .caption-container .article-date {
    display: none;
  }
}
.insights-component .caption-box {
  opacity: 0;
  box-sizing: border-box;
  pointer-events: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  color: white;
  height: 100%;
  transition: all 0.5s;
}
.insights-component .caption-box-active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 1279px) {
  .insights-component .caption-box p {
    display: none;
  }
}
.insights-component .owl-carousel .owl-stage {
  display: flex;
}
.insights-component .images-list {
  min-height: 450px;
  width: 50%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1279px) {
  .insights-component .images-list {
    margin: 0;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 599px) {
  .insights-component .images-list {
    height: 450px;
  }
}
.insights-component .images-list.owl-carousel {
  display: block;
}
.insights-component .images-list {
  /* Dynamic styles for showing images if Layout = Single Row Only */
}
.insights-component .images-list-2:nth-of-type(1n+3) {
  display: none;
}
.insights-component .images-list-3 div:nth-of-type(1n+4).single-row {
  display: none;
}
.insights-component .images-list-4 .single-row:nth-of-type(1n+5) {
  display: none;
}
.insights-component .images-list {
  /* Dynamic styles for images per row, based on max row size setting for desktops */
}
.insights-component .images-list-2 > div {
  width: 100%;
}
@media (min-width: 768px) {
  .insights-component .images-list-2 > div {
    width: 50%;
  }
}
.insights-component .images-list-3 > div {
  width: 100%;
}
@media (min-width: 768px) {
  .insights-component .images-list-3 > div {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .insights-component .images-list-3 > div {
    width: 33.3333333333%;
  }
}
.insights-component .images-list-4 > div {
  width: 100%;
}
@media (min-width: 768px) {
  .insights-component .images-list-4 > div {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .insights-component .images-list-4 > div {
    width: 33.3333333333%;
  }
}
@media (min-width: 1680px) {
  .insights-component .images-list-4 > div {
    width: 25%;
  }
}
.insights-component .images-list-inner {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.insights-component .insights-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 40px 10vw 80px 10vw;
}
@media (max-width: 1279px) {
  .insights-component .insights-controls {
    margin: 40px;
    justify-content: center;
  }
}
.insights-component .insights-controls .carousel-controls {
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  z-index: 9;
}
.insights-component .insights-image {
  box-sizing: border-box;
  margin: 0 80px 0 0;
}
@media (max-width: 1279px) {
  .insights-component .insights-image {
    margin: 0 20px;
  }
}
.insights-component .insights-image .ic-image {
  min-height: 450px;
  min-width: 40vw;
  color: #FFF;
  height: 100%;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1279px) {
  .insights-component .insights-image .ic-image {
    min-width: unset;
    min-height: unset;
    width: 90vw;
  }
}
.insights-component .insights-image .ic-image .image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.insights-component .insights-image .ic-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.insights-component .insights-image .ic-image .ic-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  height: 100%;
}
.insights-component .insights-image .ic-image h4, .insights-component .insights-image .ic-image h5 {
  font-weight: normal;
}
.insights-component .insights-image .ic-image:hover .image-container {
  transform: scale(1.05, 1.05);
}
.insights-component .category-badge {
  position: absolute;
  top: 0;
  left: 0px;
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #FFF;
  z-index: 2;
  box-sizing: border-box;
  padding: 6px 10px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .insights-component .category-badge {
    left: 40px;
  }
}
.insights-component .category-badge-news {
  background-color: #416B4E;
  color: #232525;
}
.insights-component .category-badge-blog {
  background-color: #457B89;
}
.insights-component .category-badge-case-study {
  background-color: #416B4E;
  color: #232525;
}
.insights-component .category-badge-media {
  background-color: #5A915A;
}
.insights-component .category-badge-other {
  background-color: #416B4E;
  color: #232525;
}

.owl-carousel .sw-content {
  height: calc(100% - 20px) !important;
}

/* End gallery component */
/* Layout Styles */
body {
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.container-full {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.container-height-full {
  min-height: 100vh;
}

.container-height-large {
  min-height: 500px;
}

.container-height-medium {
  min-height: 400px;
}

.container-height-small {
  min-height: 250px;
}

/* Padding and margin styles */
.padding-top-xxl {
  padding-top: 100px;
}

.padding-top-xl {
  padding-top: 80px;
}

.padding-top-lg {
  padding-top: 60px;
}

.padding-top-md {
  padding-top: 40px;
}

.padding-top-smd {
  padding-top: 30px;
}

.padding-top-sm {
  padding-top: 20px;
}

.padding-top-xs {
  padding-top: 10px;
}

.padding-top-xxs {
  padding-top: 5px;
}

.padding-top-none {
  padding-top: 0;
}

.padding-bottom-xxl {
  padding-bottom: 100px;
}

.padding-bottom-xl {
  padding-bottom: 80px;
}

.padding-bottom-lg {
  padding-bottom: 60px;
}

.padding-bottom-md {
  padding-bottom: 40px;
}

.padding-bottom-smd {
  padding-bottom: 30px;
}

.padding-bottom-sm {
  padding-bottom: 20px;
}

.padding-bottom-xs {
  padding-bottom: 10px;
}

.padding-bottom-xxs {
  padding-bottom: 5px;
}

.padding-bottom-none {
  padding-bottom: 0;
}

.padding-left-xxl {
  padding-left: 100px;
}

.padding-left-xl {
  padding-left: 80px;
}

.padding-left-lg {
  padding-left: 60px;
}

.padding-left-md {
  padding-left: 40px;
}

.padding-left-smd {
  padding-left: 30px;
}

.padding-left-sm {
  padding-left: 20px;
}

.padding-left-xs {
  padding-left: 10px;
}

.padding-left-xxs {
  padding-left: 5px;
}

.padding-left-none {
  padding-left: 0;
}

.padding-right-xxl {
  padding-right: 100px;
}

.padding-right-xl {
  padding-right: 80px;
}

.padding-right-lg {
  padding-right: 60px;
}

.padding-right-md {
  padding-right: 40px;
}

.padding-right-smd {
  padding-right: 30px;
}

.padding-right-sm {
  padding-right: 20px;
}

.padding-right-xs {
  padding-right: 10px;
}

.padding-right-xxs {
  padding-right: 5px;
}

.padding-right-none {
  padding-right: 0;
}

.padding-all-xxl {
  padding: 100px;
}

.padding-all-xl {
  padding: 80px;
}

.padding-all-lg {
  padding: 60px;
}

.padding-all-md {
  padding: 40px;
}

.padding-all-smd {
  padding: 30px;
}

.padding-all-sm {
  padding: 20px;
}

.padding-all-xs {
  padding: 10px;
}

.padding-all-xxs {
  padding: 5px;
}

.padding-all-none {
  padding: 0;
}

.margin-top-xxl {
  margin-top: 100px;
}

.margin-top-xl {
  margin-top: 80px;
}

.margin-top-lg {
  margin-top: 60px;
}

.margin-top-md {
  margin-top: 40px;
}

.margin-top-smd {
  margin-top: 30px;
}

.margin-top-sm {
  margin-top: 20px;
}

.margin-top-xs {
  margin-top: 10px;
}

.margin-top-xxs {
  margin-top: 5px;
}

.margin-top-none {
  margin-top: 0;
}

.margin-bottom-xxl {
  margin-bottom: 100px;
}

.margin-bottom-xl {
  margin-bottom: 80px;
}

.margin-bottom-lg {
  margin-bottom: 60px;
}

.margin-bottom-md {
  margin-bottom: 40px;
}

.margin-bottom-smd {
  margin-bottom: 30px;
}

.margin-bottom-sm {
  margin-bottom: 20px;
}

.margin-bottom-xs {
  margin-bottom: 10px;
}

.margin-bottom-xxs {
  margin-bottom: 5px;
}

.margin-bottom-none {
  margin-bottom: 0;
}

.margin-left-xxl {
  margin-left: 100px;
}

.margin-left-xl {
  margin-left: 80px;
}

.margin-left-lg {
  margin-left: 60px;
}

.margin-left-md {
  margin-left: 40px;
}

.margin-left-smd {
  margin-left: 30px;
}

.margin-left-sm {
  margin-left: 20px;
}

.margin-left-xs {
  margin-left: 10px;
}

.margin-left-xxs {
  margin-left: 5px;
}

.margin-left-none {
  margin-left: 0;
}

.margin-right-xxl {
  margin-right: 100px;
}

.margin-right-xl {
  margin-right: 80px;
}

.margin-right-lg {
  margin-right: 60px;
}

.margin-right-md {
  margin-right: 40px;
}

.margin-right-smd {
  margin-right: 30px;
}

.margin-right-sm {
  margin-right: 20px;
}

.margin-right-xs {
  margin-right: 10px;
}

.margin-right-xxs {
  margin-right: 5px;
}

.margin-right-none {
  margin-right: 0;
}

.margin-all-xxl {
  margin: 100px;
}

.margin-all-xl {
  margin: 80px;
}

.margin-all-lg {
  margin: 60px;
}

.margin-all-md {
  margin: 40px;
}

.margin-all-smd {
  margin: 30px;
}

.margin-all-sm {
  margin: 20px;
}

.margin-all-xs {
  margin: 10px;
}

.margin-all-xxs {
  margin: 5px;
}

.margin-all-none {
  margin: 0;
}

/* hide margins/padding for different screen sizes */
@media only screen and (max-width: 900px) {
  .hide-margin-left-sm {
    margin-left: 0;
  }
  .hide-margin-right-sm {
    margin-right: 0;
  }
  .hide-margin-top-sm {
    margin-top: 0;
  }
  .hide-margin-bottom-sm {
    margin-bottom: 0;
  }
  .hide-margin-all-sm {
    margin: 0;
  }
  .hide-padding-left-sm {
    padding-left: 0;
  }
  .hide-padding-right-sm {
    padding-right: 0;
  }
  .hide-padding-top-sm {
    padding-top: 0;
  }
  .hide-padding-bottom-sm {
    padding-bottom: 0;
  }
  .hide-padding-all-sm {
    padding: 0;
  }
}
@media only screen and (min-width: 900px) {
  .hide-margin-left-lg {
    margin-left: 0;
  }
  .hide-margin-right-lg {
    margin-right: 0;
  }
  .hide-margin-top-lg {
    margin-top: 0;
  }
  .hide-margin-bottom-lg {
    margin-bottom: 0;
  }
  .hide-margin-all-lg {
    margin: 0;
  }
  .hide-padding-left-lg {
    padding-left: 0;
  }
  .hide-padding-right-lg {
    padding-right: 0;
  }
  .hide-padding-top-lg {
    padding-top: 0;
  }
  .hide-padding-bottom-lg {
    padding-bottom: 0;
  }
  .hide-padding-all-lg {
    padding: 0;
  }
}
/* Alignment styles */
.text-left {
  align-items: flex-start;
  text-align: left;
}
.text-center {
  align-items: center;
  text-align: center;
}
.text-right {
  align-items: flex-end;
  text-align: right;
}
.text-top {
  justify-content: flex-start;
}
.text-middle {
  justify-content: center;
}
.text-bottom {
  justify-content: flex-end;
}
.text-fill {
  justify-content: flex-start;
}
.text-fill > *:last-child {
  margin-top: auto;
}

/* Overflow styles */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

/* gutter settings */
.h-gutter-none {
  padding-left: 0;
}
.h-gutter-small {
  padding-left: 10px;
}
@media (max-width: 599px) {
  .h-gutter-small {
    padding-left: 0;
  }
}
.h-gutter-medium {
  padding-left: 20px;
}
@media (max-width: 599px) {
  .h-gutter-medium {
    padding-left: 0;
  }
}
.h-gutter-large {
  padding-left: 30px;
}
@media (max-width: 599px) {
  .h-gutter-large {
    padding-left: 0;
  }
}
.h-gutter-none > * {
  padding-right: 0;
}
.h-gutter-small > * {
  padding-right: 10px;
}
@media (max-width: 599px) {
  .h-gutter-small > * {
    padding-right: 0;
  }
}
.h-gutter-medium > * {
  padding-right: 20px;
}
@media (max-width: 599px) {
  .h-gutter-medium > * {
    padding-right: 0;
  }
}
.h-gutter-large > * {
  padding-right: 30px;
}
@media (max-width: 599px) {
  .h-gutter-large > * {
    padding-right: 0;
  }
}

.v-gutter-none > * {
  padding-top: 0;
}
.v-gutter-small > * {
  padding-top: 10px;
}
.v-gutter-medium > * {
  padding-top: 20px;
}
.v-gutter-large > * {
  padding-top: 30px;
}

.layout-width-full-screen {
  margin-left: 0;
  margin-right: 0;
}
.layout-width-inset {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .layout-width-inset {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (min-width: 1024px) {
  .layout-width-inset {
    margin-left: 80px;
    margin-right: 80px;
  }
}
.layout-width-narrow {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .layout-width-narrow {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (min-width: 1024px) {
  .layout-width-narrow {
    margin-left: 160px;
    margin-right: 160px;
  }
}

.bg-image-top {
  background-position: top !important;
}
.bg-image-center {
  background-position: center !important;
}
.bg-image-bottom {
  background-position: bottom !important;
}

.component-height-none {
  min-height: 0;
}
.component-height-small {
  min-height: 300px;
}
.component-height-medium {
  min-height: 600px;
}
.component-height-large {
  min-height: 900px;
}

.disable-body {
  width: 100vw;
  position: fixed;
  background-color: #232525;
  opacity: 0.3;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 99994;
  display: none;
}

.image-fit-cover {
  background-size: cover !important;
}
.image-fit-contain {
  background-size: contain !important;
}

/* News Article styles */
.news-article-component {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .news-article-component {
    flex-direction: column;
  }
}

.na-header {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background-size: cover;
  box-sizing: border-box;
  padding: 80px 240px;
}
.na-header .news-article-heading {
  font-size: 65px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 1279px) {
  .na-header {
    padding: 80px;
    min-height: 400px;
  }
  .na-header .news-article-heading {
    font-size: 40px;
    line-height: 45px;
  }
}

.na-article {
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #232525;
}
.na-article div:first-of-type.article-text-block-container {
  padding-top: 80px;
}
.na-article h3 {
  margin: 20px 0 10px 0;
}
.na-article .image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
}
.na-article .na-info {
  display: flex;
  flex-direction: row;
  color: #F3F3F3;
  font-size: 12pt;
  padding-left: 5px;
}
.na-article .na-info .info-field {
  padding: 0 20px 0 0;
}
.na-article .na-info .info-field i {
  padding-right: 4px;
}
.na-article .return-link {
  color: #457B89;
  text-decoration: none;
}
.na-article .return-link:hover {
  color: #457B89;
}
.na-article hr {
  border: none;
  border-top: 1px solid #212121;
  width: calc(100% - 480px);
  margin: 10px 240px;
}
@media (max-width: 1279px) {
  .na-article hr {
    margin: 10px 30px;
  }
}
.na-article .sharing-links {
  display: flex;
  justify-content: flex-start;
  padding: 20px 240px;
}
@media (max-width: 1279px) {
  .na-article .sharing-links {
    padding: 20px 30px;
  }
}
.na-article .sharing-links .sharing-link {
  margin: 0 20px 0 0;
  padding: 0;
  cursor: pointer;
}
.na-article .sharing-links .sharing-link img {
  width: 50px;
  height: 50px;
}
.na-article .sharing-links .sharing-link:hover img {
  background-color: #416B4E;
}

.na-sidebar {
  float: right;
  width: 30%;
  padding: 0 30px;
  min-height: 800px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .na-sidebar {
    width: 100%;
  }
}

.na-recent-news {
  display: flex;
  flex-direction: column;
}
.na-recent-news h5 {
  color: #232525;
  margin-bottom: 30px;
}
.na-recent-news .article-thumbnail {
  display: flex;
  flex-direction: row;
  margin: 10px 0;
  height: 100px;
}
.na-recent-news .article-thumbnail .img-thumb {
  width: 30%;
}
.na-recent-news .article-thumbnail img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.na-recent-news .article-thumbnail .article-details {
  padding-left: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 70%;
  justify-content: center;
}
.na-recent-news .article-thumbnail .category {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.na-recent-news .article-thumbnail .heading {
  color: #232525;
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
}
.na-recent-news .article-thumbnail .info {
  display: flex;
  flex-direction: row;
  font-size: 12px;
}
.na-recent-news .article-thumbnail .info .info-field {
  color: #F3F3F3;
  padding-right: 10px;
}
.na-recent-news .article-thumbnail .info .info-field i {
  padding-right: 4px;
}
.na-recent-news .article-thumbnail:hover {
  cursor: pointer;
}
.na-recent-news .article-thumbnail:hover .heading {
  color: #457B89;
}
.na-recent-news .article-thumbnail:hover .image-container {
  transform: scale(1.05, 1.05);
}

.widget-link {
  cursor: pointer;
}
.widget-link:hover h4 {
  color: #457B89;
}

/* End News article styles */
/* News Summary styles */
.article-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 80px 160px;
}
@media (max-width: 767px) {
  .article-list {
    margin: 80px 0;
  }
}
.article-list .article-listing {
  width: 33.3333333333%;
  box-sizing: border-box;
  height: 500px;
  max-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  padding: 100px 80px 80px 80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .article-list .article-listing {
    width: 100%;
    padding: 80px 40px 40px 40px;
  }
}
.article-list .article-listing .image-container {
  transition: 0.2s;
}
.article-list .article-listing:hover {
  text-decoration: none;
}
.article-list .article-listing:hover .image-container {
  transform: scale(1.05, 1.05);
}
.article-list .article-summary {
  z-index: 2;
  height: 100%;
}
.article-list .article-summary-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-list .article-summary h5 {
  font-size: 36px;
  line-height: 38px;
  font-weight: 400;
}
.article-list .category-badge {
  position: absolute;
  top: 0;
  left: 80px;
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #FFF;
  z-index: 2;
  box-sizing: border-box;
  padding: 6px 10px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .article-list .category-badge {
    left: 40px;
  }
}
.article-list .category-badge-news {
  background-color: #416B4E;
  color: #232525;
}
.article-list .category-badge-blog {
  background-color: #457B89;
}
.article-list .category-badge-case-study {
  background-color: #416B4E;
  color: #232525;
}
.article-list .category-badge-media {
  background-color: #5A915A;
}
.article-list .category-badge-insights {
  background-color: #416B4E;
  color: #232525;
}
.article-list .article-date {
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.article-list .image-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* End news summary styles */
/* Table Styles */
table {
  width: 100%;
  border: none;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border-collapse: collapse;
}

th {
  font-size: 1.1em;
  color: black;
  text-align: left;
  border: none;
  margin: 0;
  padding: 30px 0 8px 0;
}

th span {
  font-size: 1.1em;
  color: black;
  font-weight: 500;
  padding: 10px 10px;
  display: inline-block;
}

td {
  font-size: 1em;
  color: black;
  font-weight: 400;
  text-align: left;
  padding: 6px 10px;
  margin: 0;
  border: none;
}

.pricing {
  margin: 20px auto;
  width: 75%;
}

.pricing tr {
  border-top: 1px solid #333;
}

.pricing tr:first-of-type {
  border: none;
}

.search-page {
  padding: 80px 160px 0 160px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.search-page h3 {
  margin-bottom: 30px;
}
.search-page .paging {
  margin-top: 20px;
  padding-left: 0px;
}
@media (max-width: 1023px) {
  .search-page {
    padding: 25px;
  }
}

.search-form {
  margin-bottom: 40px;
}
.search-form form {
  display: flex;
  align-items: center;
}
.search-form div.editor-field {
  width: 100%;
  max-width: 500px;
  padding-right: 10px;
}
.search-form label {
  display: none;
}
.search-form input[type=text] {
  border: none;
  border-bottom: 1px solid #F3F3F3;
  height: 50px;
  padding: 10px;
  font-size: 14pt;
  box-sizing: border-box;
  outline: none;
  width: 100%;
}
.search-form .btn-small {
  padding-left: 0;
}

.search-results {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.search-results h6 {
  color: #416B4E;
  margin: 30px 0;
}
.search-results .search-result {
  width: auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px 0;
}
.search-results .search-result:hover h6 {
  text-decoration: underline;
}
.search-results .search-result:hover a {
  text-decoration: underline;
}
.search-results .search-result h6 {
  color: #416B4E;
  margin: 0;
}
.search-results .search-result .search-result-description {
  color: #232525;
  display: block;
  margin: 8px 0px;
}
.paging {
  display: flex;
  justify-content: flex-start;
  margin-top: -80px;
  padding-left: 80px;
}
@media (max-width: 767px) {
  .paging {
    padding-left: 0;
  }
}
.paging .page-back a:hover i {
  color: #416B4E;
}
.paging .page-forward a:hover i {
  color: #416B4E;
}
.paging .page-numbers {
  display: flex;
  justify-content: flex-start;
  margin: 15px;
}
.paging .page-numbers > * {
  margin-right: 5px;
}
.paging .page-numbers .page-link {
  border: none;
  color: #FFF;
  background-color: #232525;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 24px;
}
.paging .page-numbers .page-link-current {
  border: none;
  color: #FFF;
  background-color: #416B4E;
}
.paging .page-numbers .page-link-first-last {
  border: none;
  color: #FFF;
  background-color: #232525;
}
.paging .page-numbers a.page-link:hover {
  text-decoration: none;
  background-color: #416B4E;
}

footer {
  background-color: #232525;
  color: #FFF;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
@media (max-width: 1279px) {
  footer {
    flex-direction: column;
  }
}
footer .help-block {
  color: #FFF;
}
footer .copyright-block {
  width: 100%;
  display: flex;
}
@media (max-width: 1023px) {
  footer .copyright-block {
    flex-direction: column;
  }
}
footer .copyright-block .copyright-links {
  box-sizing: border-box;
  font-size: 9pt;
  color: #FFF;
  background-color: #232525;
  margin-bottom: 0px;
  letter-spacing: 0.01px;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 30px 50px 0 50px;
  flex-wrap: wrap;
}
@media (max-width: 1279px) {
  footer .copyright-block .copyright-links {
    flex-wrap: wrap;
    padding: 0 40px 0 40px;
  }
}
footer .copyright-block .copyright-links a {
  color: #5A915A;
  padding-right: 15px;
  white-space: nowrap;
  margin: 0 0 10px 0;
}
@media (min-width: 1024px) {
  footer .copyright-block .copyright-links a:not(:first-of-type) {
    padding-left: 15px;
    border-left: 1px solid #FFF;
  }
}
footer .footer-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 60px;
  border-left: solid 1px #FFF;
}
@media (max-width: 1279px) {
  footer .footer-cta-block {
    border-left: none;
    padding: 25px 40px;
  }
}
footer .footer-cta-blocks {
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 1279px) {
  footer .footer-cta-blocks {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  footer .footer-cta-blocks {
    flex-direction: column;
  }
}
footer .footer-cta-block .title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}
footer .footer-cta-block .cta-block {
  display: flex;
  margin: 10px 0;
}
footer .footer-cta-block .cta-block .btn-small:not(:first-of-type) {
  margin-left: 30px;
}
footer .footer-container {
  width: 100%;
}
footer .footer-container .umb-block-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-size: 12pt;
  line-height: 19pt;
  flex-wrap: wrap;
}
footer .footer-container .heading {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 15pt;
}
footer .footer-container a {
  color: white;
  text-decoration: none;
}
footer .footer-container a:hover {
  color: #416B4E;
}
footer .footer-contact-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 20px;
  box-sizing: border-box;
}
footer .footer-contact-block .contact-address {
  white-space: pre;
  text-align: center;
}
@media (min-width: 768px) {
  footer .footer-contact-block .contact-address {
    text-align: left;
  }
}
footer .footer-contact-block .contact-phone {
  margin: 10px 0;
}
footer .footer-contact-block i {
  margin-right: 8px;
}
footer .footer-text-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 20px;
  box-sizing: border-box;
}
footer .footer-text-block p {
  margin: 0;
}
footer .footer-text-block input[type=text] {
  background-color: #5A915A;
  color: #416B4E;
  padding: 15px;
  font-size: 12pt;
  border: 1px solid transparent;
}
footer .footer-text-block input[type=text]:focus {
  outline: none;
  border: 1px solid #FFF;
}
footer .footer-text-block label {
  font-weight: normal;
}
footer .footer-text-block .umbraco-forms-fieldset {
  padding-top: 0;
  margin-bottom: 0;
}
footer .footer-text-block .umbraco-forms-form .btn {
  height: 40px;
  font-size: 12pt;
}
footer .footer-text-block .umbraco-forms-form .btn:hover {
  font-size: 18px;
  font-weight: 700;
}
footer .footer-links-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 20px;
  box-sizing: border-box;
}
footer .footer-links-block .heading {
  min-height: 22px;
}
footer .footer-image-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 20px;
  box-sizing: border-box;
}
footer .footer-image-block .image {
  width: 90%;
  height: 100px;
  padding: 10px;
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  footer .footer-image-block .image {
    background-position: left center;
  }
}
footer .footer-blocks-1 .umb-block-list > * {
  width: 100%;
}
footer .footer-blocks-2 .umb-block-list > * {
  width: 50%;
}
footer .footer-blocks-3 .umb-block-list > * {
  width: 33%;
}
footer .footer-blocks-4 .umb-block-list > * {
  width: 25%;
}
footer .footer-blocks-5 .umb-block-list > * {
  width: 100%;
  margin: 20px 0;
  align-items: center;
}
footer .footer-blocks-5 .umb-block-list > * .contact-address {
  text-align: center;
}
@media (min-width: 768px) {
  footer .footer-blocks-5 .umb-block-list > * {
    width: 33%;
    margin: 20px 0;
    align-items: center;
  }
  footer .footer-blocks-5 .umb-block-list > * .contact-address {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  footer .footer-blocks-5 .umb-block-list > * {
    width: 20%;
    margin: 0;
    align-items: flex-start;
  }
  footer .footer-blocks-5 .umb-block-list > * .contact-address {
    text-align: left;
  }
}
footer .footer-blocks-6 .umb-block-list > * {
  width: 100%;
  margin: 20px 0;
  align-items: center;
}
@media (min-width: 768px) {
  footer .footer-blocks-6 .umb-block-list > * {
    width: 33%;
    margin: 20px 0;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  footer .footer-blocks-6 .umb-block-list > * {
    width: 16%;
    margin: 0;
    align-items: flex-start;
  }
}

.copyright {
  box-sizing: border-box;
  font-size: 9pt;
  color: #FFF;
  padding: 30px 0 30px 60px;
  background-color: #232525;
  margin-bottom: 0px;
  letter-spacing: 0.01px;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .copyright {
    width: 100%;
    padding: 30px 0 30px 40px;
  }
}

.footer-branded {
  position: absolute;
  top: -80px;
  left: 20px;
  width: 240px !important;
  background-color: #416B4E;
  background-position: center !important;
  height: 120px !important;
}

.footer-branded::after {
  position: absolute;
  bottom: -275px;
  width: 100%;
  height: 10px;
  background-color: #416B4E;
  content: "";
  left: 0;
}

.footer-branded-text {
  font-size: 14pt;
  line-height: 18pt;
  margin-top: auto;
}

.form-component .umbraco-forms-form, .split-component .umbraco-forms-form {
  margin: 0;
}
.form-component .umbraco-forms-form .umbraco-forms-field, .split-component .umbraco-forms-form .umbraco-forms-field {
  margin-bottom: 30px;
}
.form-component .umbraco-forms-form .help-block, .split-component .umbraco-forms-form .help-block {
  color: inherit;
}
.form-component .umbraco-forms-form fieldset:first-of-type, .split-component .umbraco-forms-form fieldset:first-of-type {
  padding-top: 0;
}
.form-component .umbraco-forms-form label, .split-component .umbraco-forms-form label {
  color: inherit;
}
.form-component .umbraco-forms-form input[type=text], .form-component .umbraco-forms-form input[type=email], .form-component .umbraco-forms-form textarea, .form-component .umbraco-forms-form select, .split-component .umbraco-forms-form input[type=text], .split-component .umbraco-forms-form input[type=email], .split-component .umbraco-forms-form textarea, .split-component .umbraco-forms-form select {
  width: 100%;
  max-width: 100% !important;
  background-color: #FFF;
  padding: 15px;
  border: 2px solid black;
  max-height: 200px;
  box-sizing: border-box;
}
.form-component .umbraco-forms-form input[type=text]:focus, .form-component .umbraco-forms-form input[type=email]:focus, .form-component .umbraco-forms-form textarea:focus, .form-component .umbraco-forms-form select:focus, .split-component .umbraco-forms-form input[type=text]:focus, .split-component .umbraco-forms-form input[type=email]:focus, .split-component .umbraco-forms-form textarea:focus, .split-component .umbraco-forms-form select:focus {
  outline: none;
  border: 2px solid #457B89;
}
.form-component .umbraco-forms-form select, .split-component .umbraco-forms-form select {
  min-width: 100%;
  height: 50px;
  color: black;
  /* outline-color: black; */
  background-color: #FFF;
  border: 2px solid black;
  padding: 0 10px;
  appearance: none;
  background-image: url(/images/cta-download.png);
  background-repeat: no-repeat;
  background-position: right;
  font-family: "nimbus-sans";
  font-size: 16px;
}
.form-component .umbraco-forms-form .umbraco-forms-navigation, .split-component .umbraco-forms-form .umbraco-forms-navigation {
  padding-bottom: 0;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #416B4E;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -1s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}