﻿/*u-nav - updated navigation*/
.u-nav {
  background-color: #4d4d4d;
  text-align: right;
}

.u-nav--fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background-color: white;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: white;
}

.u-nav__hamburger:focus .hamburger-inner,
.u-nav__hamburger:focus .hamburger-inner:after,
.u-nav__hamburger:focus .hamburger-inner:before {
  background-color: black;
}

.u-nav__list {
  display: none;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  text-align: center;
}

.u-nav__item {
  display: block;
  position: relative;
}

.u-nav__link {
  background-color: #4d4d4d;
  color: white;
  display: block;
  font-family: BebasNeueBold;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 3px;
  padding: 0.5rem 20px;
  text-transform: uppercase;
  transition: background-color 200ms ease;
}

.u-nav__link:hover,
.u-nav__link.js-active {
  background-color: #383838;
}

.u-nav__subnav {
  background-color: #383838;
  list-style: none;
  margin: 0;
  min-width: 300px;
  opacity: 0;
  padding: 0;
  position: absolute;
  transition: opacity 200ms ease;
  visibility: hidden;
}

.u-nav__subnav-item {
  margin: 2px 0;
}

.u-nav__subnav-item:last-child,
.u-nav__subnav-item:first-child {
  margin: 0;
}

.u-nav__subnav-link {
  color: white;
  display: block;
  font-family: BebasNeueBold;
  font-size: 17px;
  letter-spacing: 3px;
  padding: 6px 23px;
  transition: background-color 200ms ease;
}

.u-nav__subnav-link:hover {
  background-color: #191919;
}

@media (min-width: 768px) {
  .u-nav__hamburger {
    display: none;
  }

  .u-nav__list {
    display: flex;
  }
}

@media (min-width: 992px) {
  /*
  .u-nav__link--subnav:hover ~ .u-nav__subnav,
  .u-nav__link--subnav:focus-within ~ .u-nav__subnav,
  .u-nav__subnav:hover {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  */
  .has-subnav:hover > .u-nav__subnav,
  .has-subnav:focus-within > .u-nav__subnav {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
}

/*u-footer-list - new footer navigation*/
.partners-logo-footer {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.u-footer-list {
  margin: 0;
  padding: 0;
}

.u-footer-list__item {
  display: block;
  list-style: none;
  position: relative;
  margin-left: 20px;
  text-align: center;
}

.u-footer-list__item:last-child:after {
  display: none;
}

.u-footer-list__link {
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.u-footer-list__link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .u-footer-list__item {
    display: inline-block;
    text-align: left;
  }

  .u-footer-list__item:after {
    background-color: #333333;
    content: '';
    display: block;
    height: 20px;
    position: absolute;
    right: -10px;
    top: 0;
    width: 1px;
  }
}

@media (min-width: 992px) {
  .partners-logo-footer {
    flex-direction: row;
  }

  .u-footer-list {
    margin: 0 0 0 auto;
  }
}

@media (min-width: 1200px) {
  .u-footer-list__item {
    margin-left: 50px;
  }

  .u-footer-list__item:after {
    right: -25px;
  }
}

/*u-banner - new homepage banner*/
.u-banner {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: background-image 1s ease;
  background: none!important;  
}

/* 
.u-banner__shards {
  background-image: url('/images/homepage-top-shards.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  min-height: calc(100vh + 150px);
  position: absolute;
  right: 0;
  top: 0;
}
*/

.u-banner__logo-link {
  background-color: white;
  display: inline-block;
  padding: 45px 85px 10px 85px;
  position: absolute;
  margin-top: -5rem;
  z-index: 1;
}

.u-banner__map-graphic {
  /* background-image: url('/images/homepage-map-toppings.png'),
    url('/images/homepage-map-image.png'); */
  background-image: url('/images/homepage-map-image.png');
  background-position: 70% bottom!important;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 20rem;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .u-banner__map-graphic {
    min-height: 30rem;
  }
}
@media (min-width: 1024px) {
  .u-banner__map-graphic {
    min-height: 34rem;
  }
}
@media (min-width: 1500px) {
  .u-banner__map-graphic {
    min-height: 42rem;
  }
}

/*
.u-banner__map-shards {
  background-image: url('/images/shards-and-lines.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
*/

.u-banner__header {
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .u-banner__header {
    top: 50%;
  }
}

.u-banner__header-text {
  color: white;
  font-family: 'BebasNeueBook';
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 27px;
  margin: 0 0 -2px 0;
  opacity: 0;
  padding: 0;
  text-align: left;
  transition: opacity 900ms ease;
}

.u-banner__header-text span {
  background-color: #476c84;
  display: inline-block;
  padding: 0 30px;
  transition: transform 1s ease;
}

.u-banner__video-button {
  background-color: black;
  border: none;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: 'BebasNeueBook';
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 2px;
  opacity: 0;
  padding: 3px 45px 3px 15px;
  position: relative;
  transform: translateX(15px);
  transition: background-color 200ms ease, opacity 900ms ease;
}

.u-banner__video-button:hover {
  background-color: #4c4c4c;
}

.u-banner__video-button:hover.u-banner__video-button:after {
  transform: translate(3px, -50%);
}

.u-banner__video-button:after {
  content: '';
  background-image: url('/images/triangle-white-right.png');
  display: block;
  height: 15px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  transition: transform 200ms ease;
  width: 13px;
}

@media (min-width: 768px) {
  .u-banner__header {
    left: 40px;
  }

  .u-banner__header-text {
    font-size: 47px;
    line-height: 54px;
  }

  .u-banner__video-button {
    font-size: 22px;
    transform: translateX(80px);
  }
}

@media (min-width: 992px) {
  .u-banner__header {
    left: 130px;
  }
}

/*u-intro-paragraph - new homepage intro paragraph*/
.u-intro-paragraph {
  position: relative;
}

.u-intro-paragraph__text {
  color: #333333;
  font-size: 20px;
  line-height: 32px;
  padding: 95px 0;
  text-align: center;
}

/*u-our-mission - new homepage our mission block*/
.u-our-mission {
  background-image: url('/images/our-mission-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 370px;
  position: relative;
}

.u-our-mission__image {
  display: none;
  width: 100%;
}

.u-our-mission__content {
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.u-our-mission__wrapper {
  display: flex;
  flex-direction: column;
}

.u-our-mission__link {
  display: block;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.u-our-mission__link:hover .u-our-mission__link-header {
  background-color: #3e5e73;
}

.u-our-mission__link:hover .u-our-mission__link-text {
  background-color: #dde7ed;
}

.u-our-mission__link-header {
  background-color: #476c84;
  color: white;
  display: block;
  font-family: 'BebasNeueBold';
  font-size: 41px;
  margin: 0;
  padding: 6px 12px 3px 12px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  transition: background-color 200ms ease;
  z-index: 2;
}

.u-our-mission__green-square {
  background-color: #b9fc04;
  display: block;
  height: 30px;
  left: -15px;
  position: absolute;
  top: -15px;
  width: 30px;
  z-index: 1;
}

.u-our-mission__link-text {
  background-color: white;
  color: #0d5359;
  display: inline-block;
  font-family: 'BebasNeueBold';
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 7px;
  margin: 0;
  padding: 3px 15px;
  text-transform: uppercase;
  transition: background-color 200ms ease;
}

.u-our-mission__link-text--small {
  display: block;
  font-family: 'BebasNeueBook';
  font-size: 18px;
  margin-bottom: -5px;
}

@media (min-width: 768px) {
  .u-our-mission {
    background-image: none;
  }

  .u-our-mission__wrapper {
    flex-direction: row;
  }

  .u-our-mission__image {
    display: block;
  }

  .u-our-mission__link {
    width: 50%;
  }

  .u-our-mission__link:first-child {
    margin-right: 70px;
    text-align: right;
  }

  .u-our-mission__link:first-child .u-our-mission__link-header {
    margin-left: 20px;
    text-align: right;
  }

  .u-our-mission__link:first-child .u-our-mission__green-square {
    left: 5px;
  }

  .u-our-mission__link-text {
    min-width: 300px;
  }
}

/*u-features - new homepage feature boxes*/
.u-features {
  margin: 80px 0;
}

.u-features__wrapper {
  display: flex;
  flex-direction: column;
}

.u-features__box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  flex-grow: 1;
  margin: 0 0 20px 0;
  min-height: 350px;
  position: relative;
  transition: background-position 400ms ease;
}

.u-features__box:hover {
  background-position: 50% 75%;
}
.u-features__box:focus {
  background: none;
}

.u-features__box:hover .u-features__box-text {
  transform: translateY(-8px);
}

.u-features__box:hover .u-features__tri-agencies {
  transform: translateY(-6px);
}

.u-features__tri-agencies {
  position: absolute;
  right: 10px;
  top: 20px;
  transition: transform 400ms ease;
  width: 108px;
}

.u-features__box-text {
  margin-top: 130px;
  transition: transform 400ms ease;
}

.u-features__box-header {
  display: inline-block;
  margin: 0 16px;
  text-transform: uppercase;
}

.u-features__box-header-bg {
  background-color: #476c84;
  box-shadow: 16px 0 0 #476c84, -16px 0 0 #476c84;
  color: white;
  font-family: 'BebasNeueBold';
  font-size: 29px;
  letter-spacing: 7px;
  line-height: 1.4;
  margin: 0;
  padding: 12px 0 3px 0;
}

.u-features__box-subheader {
  display: inline-block;
  line-height: 1.5;
  margin: 5px 16px;
  text-transform: uppercase;
}

.u-features__box-subheader-bg {
  background-color: white;
  box-shadow: 16px 0 0 white, -16px 0 0 white;
  color: #0d5359;
  font-family: 'BebasNeueRegular';
  font-size: 18px;
  letter-spacing: 6px;
  margin: 0;
  padding: 8px 0;
}

.u-features__box-tag {
  background-color: #476c84;
  color: white;
  display: block;
  font-family: 'BebasNeueBook';
  font-size: 18px;
  letter-spacing: 6px;
  margin: 0;
  max-width: 250px;
  padding: 8px 16px;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .u-features__wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .u-features__box {
    margin: 0 7.5px;
    max-width: 33%;
  }

  .u-features__box:first-child {
    margin-left: 0;
  }

  .u-features__box:last-child {
    margin-right: 0;
  }
}

/*u-page-header - new page header*/
.u-page-header {
  background-repeat: no-repeat;
  background-position: 100% 0%;
}

.u-page-header__logo-link {
  background-color: white;
  display: inline-block;
  padding: 45px 85px 10px 85px;
  position: absolute;
  z-index: 1;
}

.u-page-header__wrapper {
  display: flex;
  flex-direction: column;
}

.u-page-header__content {
  padding-top: 350px;
}

.u-page-header__header {
  margin: 0;
  position: relative;
}

.u-page-header__header-square {
  height: 30px;
  left: -15px;
  position: absolute;
  top: -15px;
  width: 30px;
}

.u-page-header__header-square--orange {
  background-color: #d67e25;
}

.u-page-header__header-square--blue {
  background-color: #68a8de;
}

.u-page-header__header-square--yellow {
  background-color: #edc04f;
}

.u-page-header__header-square--green {
  background-color: #b9fc04;
}

.u-page-header__header-bg {
  box-sizing: border-box;
  color: white;
  display: inline-block;
  font-size: 41px;
  letter-spacing: 12px;
  line-height: 1;
  padding: 4px 35px 0 35px;
  text-transform: uppercase;
}

.u-page-header__header-bg--green {
  background-color: #69a341;
}

.u-page-header__header-bg--red {
  background-color: #ca7e64;
}

.u-page-header__header-bg--blue {
  background-color: #5987a5;
}

.u-page-header__header-bg--light-blue {
  background-color: #297abc;
}

.u-page-header__subheader {
  color: #0d5359;
  font-family: 'BebasNeueBold';
  font-size: 26px;
  margin: 10px 20% 0 0;
  padding: 0;
  position: relative;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 0.8;
  display: block;
}

.u-page-header__subheader:after {
  background-color: #5987a5;
  bottom: -15px;
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  width: 1500px;
}

.u-page-header__text {
  padding: 40px 0 0 0;
}

@media (min-width: 992px) {
  .u-page-header {
    background-size: 65%;
  }

  .u-page-header--contain {
    background-size: contain;
  }

  .u-page-header__wrapper {
    flex-direction: row;
  }

  .u-page-header__left,
  .u-page-header__right {
    width: 50%;
  }

  .u-page-header__text {
    padding: 40px 40px 0 0;
  }

  .u-page-header__text-right {
    padding: 20vw 0 0 40px;
  }

  .u-page-header__video-right {
    margin-top: 135px;
  }
}

/*u-content - new page content block*/
.u-content {
  overflow-x: hidden;
  padding: 70px 0;
}

.u-content__img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

.u-content__header {
  position: relative;
}

.u-content__header--right:after {
  left: 50%;
  right: auto;
}

.u-content__header--central {
  margin: 0 auto;
  max-width: 545px;
}

.u-content__header--central .u-content__header-text,
.u-content__header--central .u-content__header-bg {
  width: 100%;
}

.u-content__header--big .u-content__header-bg {
  font-size: 41px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.u-content__header--big:after {
  display: none !important;
}

.u-content__header:after {
  background-color: #5987a5;
  content: '';
  display: block;
  height: 3px;
  min-width: 1500px;
  position: absolute;
  right: 50%;
  width: 100%;
}

.u-content__header--central:after {
  left: 50%;
  min-width: 0;
  right: auto;
  transform: translateX(-50%);
  width: 100%;
}

.u-content__header--blue-line-left:after {
  left: 0 !important;
}

.u-content__header-text {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.u-content__header-bg {
  background-color: #5987a5;
  box-sizing: border-box;
  color: white;
  display: inline-block;
  font-size: 32px;
  padding: 10px 40px 1px 35px;
  text-align: left;
}

.u-content__header-bg--large {
  font-size: 41px;
}

.u-content__header-square {
  background-color: #d67e25;
  height: 30px;
  left: -15px;
  position: absolute;
  top: -15px;
  width: 30px;
}

.u-content__subheader-text {
  color: #0d5359;
  display: inline-block;
  font-family: 'BebasNeueBold';
  font-size: 22px;
  letter-spacing: 5px;
  line-height: 0.8;
  margin: 5px 0 15px 15px;
}

.u-content__subheader-text--bg-image {
  color: white !important;
  display: block;
  margin-right: 100px;
  text-align: right;
}
.u-content__subheader-text--bg-image span {
  background-color: #5987a5;
  font-size: 32px;
  padding: 0 10px;
}

.u-content__content {
  display: flex;
  flex-direction: column;
}

.u-content__left {
  padding: 44px 0 0 0;
}

.u-content__right {
  padding: 0 0 44px 0;
}

.u-content__left h2,
.u-content__right h2,
.u-content__col-third h2 {
  color: #5987a5;
  display: block;
  font-size: 32px;
  letter-spacing: 7px;
  line-height: 0.8;  
  margin: 5px 0 15px;
  padding: 0;
  text-align: left;
}

.u-content__left h3,
.u-content__right h3,
.u-content__col-third h3 {
  color: #5987a5;
  font-size: 32px;
  letter-spacing: 7px;
}

.u-content__left .h3-small,
.u-content__right .h3-small,
.u-content__col-third .h3-small {
  color: #333333;
  font-family: 'SourceSansPro-Regular', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 19px;
  margin: 25px 0;
}

.u-content__flex {
  display: flex;
  flex-direction: column;
}

.u-content__flex .u-button-block__button {
  margin-top: auto;
}

@media (min-width: 768px) {
  .u-content__header--central:after {
    min-width: 0;
    width: 695px;
  }

  .u-content__header-bg {
    min-width: 375px;
  }

  .u-content__content {
    flex-direction: row;
  }

  .u-content__left,
  .u-content__right {
    width: 50%;
  }

  .u-content__two-thirds {
    width: 66%;
  }

  .u-content__one-third {
    width: 34%;
  }

  .u-content__col-third {
    margin: 0 10px;
    width: 33.33333%;
  }

  .u-content__col-third:first-child {
    margin-left: 0;
  }

  .u-content__col-third:last-child {
    margin-right: 0;
  }

  .u-content__left {
    padding: 44px 40px 0 0;
  }

  .u-content__right {
    padding: 44px 0 0 40px;
  }
}

/*u-history - new history block*/
.u-history {
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.u-history__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.u-history__button-arrow {
  width: 13px;
}

.u-history__header {
  position: relative;
  width: 100%;
}

.u-history__header:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  right: 50%;
  width: 100%;
}

.u-history__header-text {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.u-history__header-bg {
  background-color: white;
  box-sizing: border-box;
  color: #5987a5;
  display: inline-block;
  font-size: 32px;
  padding: 10px 40px 1px 35px;
  text-align: left;
}

.u-history__header-square {
  background-color: #d67e25;
  height: 30px;
  left: -15px;
  position: absolute;
  top: -15px;
  width: 30px;
}

.u-history__subheader-text {
  background-color: #5987a5;
  color: #fff;
  display: block;
  font-size: 22px;
  letter-spacing: 5px;
  line-height: 24px;
  margin: 0 0 10px 35px;
  max-width: 430px;
  padding: 10px;
}

.u-history__button {
  background-color: #434343;
  color: white;
  display: inline-block;
  font-family: 'BebasNeueBold';
  font-size: 21px;
  letter-spacing: 7px;
  margin-top: 15px;
  padding: 15px 20px 5px 20px;
  text-transform: uppercase;
  transition: background-color 200ms ease;
}

.u-history__button:hover {
  background-color: #3c3c3c;
}

@media (min-width: 768px) {
  .u-history__header:after {
    right: calc(100% - 282px);
  }
}

/*u-button-block - new button block*/
.u-button-block {
  padding: 30px 0;
}

.u-button-block__content {
  text-align: center;
}

.u-button-block__content--central {
  margin: 0 auto;
  max-width: 695px;
}

.u-button-block__button {
  background-color: #3e5e73;
  box-sizing: border-box;
  color: white;
  display: inline-block;
  font-family: 'BebasNeueBold';
  font-size: 22px;
  letter-spacing: 7px;
  padding: 13px 20px 7px 20px;
  transition: background-color 200ms ease;
  text-align: center;
}

.u-button-block__button--full-width {
  margin-bottom: 20px;
  width: 100%;
}

.u-button-block__button:hover {
  background-color: #375467;
}

.u-button-block__text {
  margin: 50px 0;
}

@media (min-width: 992px) {
  .u-button-block__button {
    min-width: 430px;
  }
}

/*u-careers - new careers*/
.u-careers {
  padding: 40px 0;
}

.u-careers__row {
  display: flex;
  flex-wrap: wrap;
}

.u-careers__item {
  box-sizing: border-box;
  margin-bottom: 15px;
  padding: 0 15px;
  width: 100%;
}

.u-careers__item:hover .u-careers__image {
  background-position: 50% 85%;
}

.u-careers__item:hover .u-careers__text:after {
  transform: translateX(5px);
}

.u-careers__item:hover .u-careers__header--blue {
  background-color: #476c84;
}

.u-careers__item:hover .u-careers__header--red {
  background-color: #a16450;
}

.u-careers__item:hover .u-careers__header--green {
  background-color: #548234;
}

.u-careers__item:hover .u-careers__header--light-blue {
  background-color: #246da9;
}

.u-careers__item:hover .u-careers__header--orange {
  background-color: #ab641d;
}

.u-careers__item:hover .u-careers__header--yellow {
  background-color: #62407b;
}

.u-careers__item:nth-child(odd) .u-careers__image {
  margin-left: 30px;
}

.u-careers__item:nth-child(even) .u-careers__image {
  margin-right: 30px;
}

.u-careers__image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 100px;
  transition: background-position 300ms ease;
}

.u-careers__header {
  color: white;
  font-size: 22px;
  letter-spacing: 7px;
  line-height: 0.9;
  margin: 0;
  padding: 24px 18px 0 18px;
  position: relative;
  transition: background-color 300ms ease;
}

.u-careers__item:nth-child(odd) .u-careers__header {
  padding-left: 50px;
}

.u-careers__header--blue {
  background-color: #5987a5;
}

.u-careers__header--red {
  background-color: #ca7e64;
}

.u-careers__header--green {
  background-color: #69a341;
}

.u-careers__header--light-blue {
  background-color: #297abc;
}

.u-careers__header--orange {
  background-color: #d67e25;
}

.u-careers__header--yellow {
  background-color: #6e4889;
}

.u-careers__item:nth-child(even) .u-careers__square {
  left: auto;
  right: 20px;
}

.u-careers__item:nth-child(3) .u-careers__square {
  left: auto;
  right: -10px;
}

.u-careers__item:nth-child(4) .u-careers__square {
  left: -10px;
  right: auto;
}

.u-careers__square {
  height: 30px;
  left: 20px;
  position: absolute;
  top: -13px;
  width: 30px;
}

.u-careers__square--yellow {
  background-color: #edc04f;
}

.u-careers__square--green {
  background-color: #69a341;
}

.u-careers__square--red {
  background-color: #ca7e64;
}

.u-careers__square--orange {
  background-color: #d67e25;
}

.u-careers__square--blue {
  background-color: #68a8de;
}

.u-careers__square--light-blue {
  background-color: #68a8de;
}

.u-careers__text {
  color: #4b4b4b;
  font-family: 'SourceSansPro-Semibold';
  font-size: 19px;
  padding: 15px 45px 15px 17px;
  position: relative;
}

.u-careers__item:nth-child(odd) .u-careers__text {
  padding-left: 50px;
}

.u-careers__text:after {
  background-image: url('/images/triangle-grey-right.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: '';
  height: 15px;
  position: absolute;
  right: 18px;
  top: 20px;
  transition: transform 300ms ease;
  width: 15px;
}

.u-careers__item:nth-child(even) .u-careers__text:after {
  right: 48px;
}

@media (min-width: 768px) {
  .u-careers__row {
    margin: 0 -20px;
  }

  .u-careers__item {
    padding: 0 35px;
    width: 50%;
  }
}

/*u-myth-buster - new myth buster block*/
.u-myth-buster {
  margin: 30px 0;
}

.u-myth-buster__myth-wrapper {
  background-image: url('/images/mythbusting-background.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 35px;
}

.u-myth-buster__myth {
  display: none;
  opacity: 0;
}

.u-myth-buster__myth.js-active-myth {
  display: block;
  opacity: 1;
}

.u-myth-buster__header {
  background-color: rgba(0,0,0,0.5);
  color: #ffffff;
  font-size: 30px;
  font-family: 'BebasNeueBold';
  letter-spacing: 5px;
  padding: 10px;
  text-align: center;
}

.u-myth-buster__text {
  background-color: rgba(0,0,0,0.5);
  color: #ffffff;
  font-size: 18px;
  line-height: 23px;
  margin: 50px 0;
  padding: 10px;
  text-align: center;
}

.u-myth-buster__nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.u-myth-buster__nav-link {
  background-color: #3e5e73;
  border-left: 1px solid #373737;
  color: white;
  flex-grow: 1;
  flex-shrink: 0;
  font-family: 'BebasNeueBold';
  font-size: 18px;
  letter-spacing: 5px;
  padding: 15px 55px 15px 20px;
  position: relative;
  text-align: center;
  transition: background-color 300ms ease;
}

.u-myth-buster__nav-link:first-child {
  border-left: none;
}

.u-myth-buster__nav-link:hover {
  background-color: #3a596d;
}

.u-myth-buster__nav-link.js-active {
  background-color: #375467;
}

.u-myth-buster__arrow {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}

@media (min-width: 768px) {
  .u-myth-buster__header {
    font-size: 60px;
  }

  .u-myth-buster__nav {
    flex-direction: row;
  }

  .u-myth-buster__myth-text {
    display: none;
  }
}

@media (min-width: 992px) {
  .u-myth-buster__myth-text {
    display: inline;
  }
}

@media (min-width: 1200px) {
  .u-myth-buster__nav-link {
    font-size: 21px;
  }
}

/*u-myth-buster - new myth buster block*/
.u-diversity-header {
  background-color: #5987a5;
  display: inline-block;
  font-size: 22px;
  margin-bottom: 40px;
  margin-top: 0;
  padding: 14px 25px 9px 25px;
}

/*u-explained - new intelligence explained block*/
.u-explained {
  margin: 60px 0;
  overflow-x: hidden;
}

.u-explained__image {
  background-image: url('/images/intel-explained-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 425px;
  padding: 200px 15px 25px 15px;
  position: relative;
}

.u-explained__logos {
  height: auto;
  left: 35px;
  position: absolute;
  top: 25px;
  width: 96px;
}

.u-explained__text {
  background-color: rgba(0,0,0,0.5);
  color: white;
  font-family: 'BebasNeueRegular';
  font-size: 19px;
  letter-spacing: 6px;
  line-height: 23px;
  margin: 60px 15px 30px 0;
  padding: 10px;
}

.u-explained__button {
  background-color: white;
  color: #383838;
  display: inline-block;
  font-family: 'BebasNeueBold';
  font-size: 22px;
  letter-spacing: 7px;
  padding: 5px 43px 0 10px;
  position: relative;
  transition: background-color 200ms ease;
}

.u-explained__button:hover {
  background-color: #ccc;
}

.u-explained__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}

@media (min-width: 768px) {
  .u-explained__image {
    padding: 25px 35px;
  }

  .u-explained__text {
    margin: 60px 50px 30px 0;
  }
}

/*u-video - new video switcher block*/
.u-video {
  margin: 60px 0 0 0;
}

.u-video__nav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin: 0 -10px 40px -10px;
}

.u-video__nav-item {
  margin-bottom: 20px;
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
}

.u-video__nav-item.js-nav-active .u-video__nav-image {
  outline: 7px solid #5987a5;
  outline-offset: -7px;
}

.u-video__nav-item-header {
  color: #333;
  font-size: 15px;
  font-weight: bold;
  margin: 5px 0 5px 0;
}

.u-video__nav-item-subheader {
  color: #333;
  font-family: 'SourceSansPro-Regular', sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin: 5px 0 5px 0;
  letter-spacing: 0;
  line-height: 15px;
}

.u-video__video-container {
  display: none;
}

.u-video__video-container.js-video-active {
  display: block;
}

@media (min-width: 768px) {
  .u-video__nav {
    flex-direction: row;
  }

  .u-video__nav-item {
    margin: 0 10px;
    max-width: 20%;
    min-width: 20%;
  }
}

/*u-slider - new slider block*/
.u-slider {
  padding: 0;
}

.u-slider__wrapper {
  margin: 80px 0 30px 0;
  position: relative;
}

.u-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: transform 400ms ease;
  width: 45px;
  z-index: 1;
}

.u-slider__arrow--left {
  left: 10px;
}

.u-slider__arrow--left:hover {
  transform: translate(-7px, -50%);
}

.u-slider__arrow--right {
  right: 10px;
}

.u-slider__arrow--right:hover {
  transform: translate(7px, -50%);
}

.u-slider__arrow.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (min-width: 768px) {
  .u-slider__arrow--left {
    left: 50px;
  }

  .u-slider__arrow--right {
    right: 50px;
  }
}

.app-process-container {
  background-image: url('/images/application-process-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border:2px solid #cec9c4;
  color: #000;
  min-height: 540px;
  position: relative;
  text-align: center;
}
.app-process-logo {
  display: block;
  left:0;
  margin: 0 auto;
  max-width: 148px;
  position: absolute;
  right:0;  
  top: 1rem;
}
.app-process-title {
  display: inline-block;
  font-size: 2.25rem;
  font-weight: bold;
  padding: 5rem 1rem 1rem 1rem;
  text-align: center;
  text-transform: uppercase;
}
.app-process-title .app-process-title-main {
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
  display: block;
  padding: 0 1rem;
}
.app-process-title .app-process-title-secondary {
  display: block;
  font-weight: 400;
}
.app-process-content {
  display: block;
  font-size: 2.25rem;
  line-height: 2.25rem;
  margin: 3.5rem auto 3rem auto;
  max-width: 640px;
  padding: 0 2rem;
  text-transform: uppercase;
}
.app-process-content p {
  margin: 0 0 1.5rem 0;
}
.app-process-content p span {
  display: block;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.app-process-icons {
  bottom: 1rem;
  display: block;
  left:0;
  margin: 0 auto;
  max-width: 360px;
  position: absolute;
  right:0; 
}

/*u-buttons - new buttons block*/
.u-buttons__wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 800px;
}

.u-button-block__button--big {
  margin: 0 0 15px 0;
  min-width: 0;
  padding: 13px 53px 7px 20px;
  position: relative;
  text-align: left;
  width: 100%;
}

.u-button-block__button--left {
  padding: 13px 20px 7px 53px;
  text-align: left;
}

.u-button-block__button--big .u-history__button-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.u-button-block__button--big .u-history__button-arrow--left {
  left: 20px;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
}

.u-button-block__button--no-margin {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (min-width: 768px) {
  .u-buttons__wrapper {
    flex-direction: row;
  }

  .u-button-block__button--big {
    margin: 0 10px;
  }
}

/*u-news - news overrides*/
.u-news__header {
  background-color: #5b87a4 !important;
}
.u-news__header h1 {
  color: #ffffff;
  font-size: 40px;
  letter-spacing: 8px;
  line-height: 0.8;
  display: block;
  margin: 0 0 -2px 0;
  padding: 10px 60px 0px 10px;
}

.u-news__square {
  background-color: #ecbf59;
}

.u-news__item {
  width: 100%;
}

.u-news__header-text {
  color: #5b87a4;
}

.u-news__link-wrapper {
  background-color: transparent;
  padding: 0;
}

.u-news__link {
  background-color: #5b87a4;
  border: none;
  color: white;
  font-family: 'BebasNeueRegular';
  font-size: 24px;
  letter-spacing: 6px;
  padding: 3px 15px;
  transition: background-color 200ms ease;
}

.u-news__link:hover {
  background-color: #3e5e73;
}

.news-text-container:after {
  background-color: #cdcdcd;
  height: 1px;
}

.u-news__back-button {
  background-color: #5b87a4;
  border: none;
  color: white;
  font-family: 'BebasNeueRegular';
  font-size: 24px;
  letter-spacing: 6px;
  padding: 3px 15px;
  transition: background-color 200ms ease;
}

.u-news__back-button:hover {
  background-color: #3e5e73;
}

/*u-sitemap - sitemap styles*/
.u-sitemap {
  margin: 0;
  padding: 0;
}

.u-sitemap__item {
  font-size: 18px;
  list-style: none;
  margin-bottom: 10px;
}

.u-sitemap__link {
  color: #333;
}

.u-sitemap__link:hover {
  text-decoration: underline;
}

.u-sitemap__sub-list {
  margin-top: 10px;
}

.h2-small {
  color: #333333;
  font-family: 'SourceSansPro-Regular', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 19px;
  margin: 25px 0;
  padding:0;
  text-align: left;
}


/* skip to main content */
#skip-to-content {
  background-color: #000;
  color: #fff;
	padding: 1em 2em;
	position: absolute;
	top: -100%;
	left: 0		;
	width: calc(100% - 4em);
	z-index: 1000; 
}
#skip-to-content:focus {
  position: absolute;
  top: 0;
  left:0;
  background: #fd0;
} 

/* main */
main:focus {
  outline: 1px solid transparent!important;
}

/* focus colour */
a:focus, button:focus{
	outline: 3px solid transparent;
  color: #000!important;
  background-color: #fd0!important;
  box-shadow: 0 0 #fd0, 0 4px #000!important;
	text-decoration: none;	
}

/* iframe embed */
.responsive-embed {
  margin-bottom: 2rem;
  overflow: hidden;
  padding-bottom: 57%;
  position: relative;
}
.responsive-embed iframe {
  height:100%;
  left:0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* video button */
.video-button {
  background-color: #476c84;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  font-family: 'SourceSansPro-Regular', sans-serif;
  margin: 0 0.5rem 1rem 0;
  padding: 0.5rem 1rem;
}
.video-button:hover {
  background-color: #3e5e73;
}

/* video span */
.video-span{
  display: block;
  padding: 0 0 1rem 0;
}

.video-span-main {
  background-color: #fff;
  padding: 1rem;
}

.profile-video {
  display: block;
}

/* covid banner span */
.covid-banner {
  background-color:#d4351c;
  padding:30px;
}
.covid-banner-content {
  font-size:16px;
  margin:0 auto;
  max-width:1080px;
  text-align:center;
}
.covid-banner-content a {
  color: #fff;
}



/* apply video button */
.video-button-container {
  position: relative;
}
.apply-video-button {
  bottom: 60px;
  opacity: 1;
  position: absolute;
  right: 40px;  
  transform: none;
}