/* LESS VARIABLES */
/*
################
Standard colours of the world!
################
*/
/*
################
Clients colour palette!
################
*/
/*
################
Site Construction
################
*/
/* LESS NAV */
.navigation_module #menu-header-menu {
  width: 100%;
}
.navigation_module #menu-header-menu .nav-item.nav-item-search {
  margin-left: auto;
  margin-top: 6px;
}
.navigation_module #menu-header-menu {
  margin-top: 30px;
  margin-bottom: 30px;
}
.navigation_module .navbar-toggler {
  font-size: 2.85rem;
  border: none;
}
.navigation_module li a {
  position: relative;
  text-decoration: none;
  font-size: 1.8rem;
  display: inline-block;
  color: #015172 !important;
}
/* Link underline */
.navigation_module li a:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 5px;
  left: 0;
  background-color: #0081C6;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.navigation_module li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
/* Top level */
.navigation_module .navbar-nav > li.dropdown a.dropdown-toggle:after {
  content: url(../assets/down_arrow.svg);
  display: inline-block;
  border: 0;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  background-color: white;
  border-bottom: 3px #0081C6 solid;
}
.navigation_module .navbar-nav > li.dropdown.show a.dropdown-toggle:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
/* Main dropdown box */
.navigation_module .navbar-nav ul.dropdown-menu {
  border: none;
  margin: 0;
  padding: 0;
}
/* Dropdown Level 1 */
.navigation_module .navbar-nav .dropdown-item {
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
  width: auto;
  white-space: normal;
}
.navigation_module .navbar-nav .dropdown-item:focus,
.navigation_module .navbar-nav .dropdown-item:hover {
  background-color: transparent;
}
.navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.menu-item > a {
  font-size: 1.3rem;
  margin-left: 15px;
  margin-bottom: 12px;
}
.navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.menu-item > a:before {
  bottom: -3px;
}
.navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.dropdown-2 a.dropdown-toggle-2:after {
  content: url(../assets/down_arrow.svg);
  display: inline-block;
  position: static;
  left: 0.5em;
  border: 0;
  vertical-align: middle;
  margin-left: 0.2em;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.dropdown-2.show a.dropdown-toggle-2:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
/* Dropdown Level 2 */
.navigation_module .navbar-nav li.dropdown-2 ul.dropdown-menu-2 {
  list-style: none;
  padding-left: 30px;
  display: none;
}
.navigation_module .navbar-nav li.dropdown-2 ul.dropdown-menu-2.show {
  display: block;
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}
.navigation_module .navbar-nav li.dropdown-2 ul.dropdown-menu-2 > li.menu-item a {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.navigation_module .navbar-nav li.dropdown-2 ul.dropdown-menu-2 > li.menu-item a:before {
  background-color: #DCAE3B;
  bottom: -5px;
}
.navigation_module .navbar-nav li.dropdown-2 ul.dropdown-menu-2 > li.menu-item a:after {
  content: "";
  background-image: url(../assets/greater_than_secondary.svg);
  width: 1em;
  height: 1em;
  position: relative;
  left: 0em;
  top: 0.25rem;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.navigation_module .navbar-nav ul.dropdown-menu.show {
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width: 992px) {
  /* Top level (medium nav) */
  .navigation_module .navbar-nav > li a {
    margin-left: 10px;
    font-size: 1.4rem;
  }
  .navigation_module .navbar-nav .dropdown {
    position: static;
  }
  /* Main dropdown box (medium nav) */
  .navigation_module .navbar-nav ul.dropdown-menu.show {
    width: 100%;
    position: absolute;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 20px calc((100% - 960px) / 2) 40px;
    border: none;
    border-top: solid 3px #127bbA;
    border-bottom: solid 1px #E1EAF7;
    border-radius: 0;
    -webkit-animation: fadeIn 0.25s;
            animation: fadeIn 0.25s;
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /* Dropdown Level 1 (medium nav) */
  .navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.menu-item {
    width: 33.333%;
    padding-left: 15px;
    position: relative;
  }
  .navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.menu-item > a {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 0 10px 22px;
  }
  .navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.menu-item a:before {
    /*background-color: #127BBA;*/
  }
  .navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.menu-item:before {
    content: '';
    width: 15px;
    height: 25px;
    position: absolute;
    background-image: url(../assets/nav-icon-mag.svg);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    left: 15px;
    top: 31px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: inline-block;
  }
  /* Dropdown Level 2 (medium nav) */
  .navigation_module .navbar-nav li.dropdown-2 ul.dropdown-menu-2 {
    padding-left: 20px;
  }
  .navigation_module .navbar-nav li.dropdown-2 ul.dropdown-menu-2 > li.menu-item {
    display: inline-block;
    width: 100%;
  }
  .navigation_module .navbar-nav li.dropdown-2 ul.dropdown-menu-2 > li.menu-item > a {
    font-size: 1.3rem;
    line-height: normal;
    margin: 5px 0;
  }
}
@media screen and (min-width: 1200px) {
  .navigation_module .navbar-nav > li a {
    margin-left: 17px;
  }
  .navigation_module .navbar-nav ul.dropdown-menu.show {
    padding: 20px calc((100% - 1110px) / 2) 40px;
  }
  .navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.menu-item {
    width: 25%;
    padding-left: 0;
    padding-right: 15px;
  }
  .navigation_module .navbar-nav li.dropdown ul.dropdown-menu > li.menu-item:before {
    left: 0;
  }
}
@media screen and (max-width: 991px) {
  .navigation_module #menu-header-menu .nav-item.nav-item-search {
    margin-left: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navigation_module #menu-header-menu .nav-item-contact {
    display: none;
  }
}
/* LESS STRUCTURE */
.footer_module {
  background-color: #015172;
  position: relative;
  min-height: 450px;
  font-family: network_rail_sans;
}
.footer_module footer {
  padding-top: 7%;
}
.footer_module .container {
  padding-bottom: 20px;
}
.footer_module .pull-left-padding {
  padding-left: 0px;
}
.footer_module .footer-diagonal {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 450px 207px;
  border-color: transparent transparent #3C80C0 transparent;
  position: absolute;
  right: 1px;
  top: 0px;
}
.footer_module h5 {
  font-size: 1.7rem;
  color: white;
  padding-bottom: 5%;
}
.footer_module li {
  font-size: 1.2rem;
  color: white;
}
.footer_module li a {
  font-size: 1.2rem;
  color: white;
}
.footer_module .address {
  font-size: 1.4rem;
  color: white;
  padding-top: 20px;
}
.footer_module .brand-logo-footer {
  padding-top: 20px;
}
.footer_module .copyright {
  color: white;
  font-size: 1.3rem;
  padding-top: 10px;
}
@media (max-width: 760px) {
  .footer_module {
    background-color: #015172;
    position: relative;
    height: 850px;
  }
  .footer_module .footer-diagonal {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 850px 207px;
    border-color: transparent transparent #3C80C0 transparent;
    position: absolute;
    right: 1px;
    top: 0px;
  }
}
@media (max-width: 700px) {
  .footer_module {
    background-color: #015172;
    position: relative;
    height: 850px;
  }
  .footer_module .footer-diagonal {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 120px 0 730px 167px;
    border-color: transparent transparent #3C80C0 transparent;
    position: absolute;
    top: 0px;
  }
  .footer_module h5 {
    font-size: 1.7rem;
    color: white;
    padding-bottom: 0%;
    padding-top: 5%;
  }
}
@media (max-width: 576px) {
  .container-padding {
    padding-left: 8%;
    padding-right: 8%;
  }
}
ul li {
  font-family: network_rail_sans;
  font-size: 1.5rem;
}
.container-fluid-no-pad {
  padding-right: 0px;
  padding-left: 0px;
}
/*.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -0px;
    margin-left: -0px;
}*/
html {
  font-size: 10px;
  line-height: 130%;
  overflow-x: hidden;
}
.p-2 {
  padding-right: 20px !important;
}
p {
  line-height: 140%;
  font-family: network_rail_sans;
}
.text-small {
  font-size: 1.2rem;
}
.bold {
  font-weight: bold;
}
.bg-light {
  background-color: #ffff !important;
}
.relative {
  position: relative;
}
.img-fluid {
  width: 100%;
  height: auto;
}
.bg-image {
  position: absolute;
  top: 35%;
}
@media (max-width: 867px) {
  .text-xs-center {
    text-align: center;
  }
  .text-xs-left {
    text-align: left!important;
  }
}
/* Case studies, News, Events page */
.single-case-studies .content-background,
.single-news .content-background,
.single-events .content-background {
  background-image: url(../assets/diagonal-bgrnd-mobile.gif);
  background-repeat: no-repeat;
  background-size: calc(33.333vw);
  background-position: right top;
}
@media only screen and (min-width: 576px) {
  .single-case-studies .content-background,
  .single-news .content-background,
  .single-events .content-background {
    background-image: url(../assets/diagonal-bgrnd.gif);
    background-size: calc(100vw);
    background-position: center top;
  }
}
/* General single col pages */
.single_column_text a {
  text-decoration: underline;
}
.single_column_text a:focus {
  color: #015172;
}
.single_column_text a:hover {
  text-decoration: none;
}
/* Page backgrounds */
body.body-bgrnd-1 .content-background {
  background-image: url(../assets/diagonal-bgrnd-mobile.gif);
  background-repeat: no-repeat;
  background-size: calc(33.333vw);
  background-position: right top;
}
@media only screen and (min-width: 576px) {
  body.body-bgrnd-1 .content-background {
    background-image: url(../assets/diagonal-bgrnd.gif);
    background-size: calc(100vw);
    background-position: center top;
  }
}
/*
body.body-bgrnd-2 .content-background {
  background-image: url(../assets/diagonal-bgrnd-mobile-2.gif);
  background-repeat: no-repeat;
  background-size: calc(66.666vw);
  background-position: left top;
}
@media only screen and (min-width: 576px) {
  body.body-bgrnd-2 .content-background {
    background-image: url(../assets/diagonal-bgrnd-2.gif);
    background-size: calc(50vw);
    background-position: left top;
  }
}
*/
body.body-bgrnd-3 .content-background {
  background-image: url(../assets/bottom-bgrnd.gif);
  background-repeat: no-repeat;
  background-size: calc(100vw);
  background-position: center bottom;
}
body.body-bgrnd-4 .content-background {
  background-image: url(../assets/bottom-bgrnd-2.jpg);
  background-repeat: no-repeat;
  background-size: calc(100vw);
  background-position: center bottom;
}
/* LESS HTML TAGS */
[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
.btn-brand-primary {
  display: inline-block;
  background-color: #E4B720;
  color: #015172;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 1.375rem 2.75rem;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 0rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.btn-brand-primary:hover {
  display: inline-block;
  background-color: #F0F4FB;
  color: #015172;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 1.375rem 2.75rem;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 0rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.btn-brand-secondary {
  display: inline-block;
  background-color: #015172;
  color: white;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 1.375rem 2.75rem;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 0rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.btn-brand-secondary:hover {
  display: inline-block;
  background-color: #F0F4FB;
  color: #015172;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 1.375rem 2.75rem;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 0rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
li.nav-item-contact > .btn-nav-contact {
  color: white !important;
}
li.nav-item-contact > .btn-nav-contact:hover {
  color: #015172 !important;
}
a.btn.btn-brand-secondary.btn-nav-contact::before {
  display: none;
}
hr.divider {
  width: 100%;
  text-align: left;
  margin-left: 0;
  border-top: 1px solid #E4B720;
  margin-top: 50px;
  padding-top: 5%;
}
#footer_module hr.divider {
  width: 100%;
  text-align: left;
  margin-left: 0;
  border-top: 1px solid #E4B720;
  margin-top: 20px;
}
.spacer {
  padding-top: 5%;
  padding-bottom: 1%;
}
a {
  color: #015172;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #015172;
  text-decoration: underline;
}
.bold {
  font-weight: bold;
}
p {
  color: #015172;
}
h2 {
  padding-bottom: 2%;
}
.body h2 {
  font-size: 2.5rem;
  color: #015172;
}
.body h1 {
  font-size: 10rem;
}
.body p {
  font-size: 1.5rem;
}
.body h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: network_rail_sans;
}
h2,
h4 {
  font-weight: 700;
}
.single-news h3 {
  font-weight: 700;
}
h4 {
  font-size: 1.6rem;
}
.blue {
  color: #015172;
}
.mustard {
  color: #E4B720;
}
.white {
  color: white;
}
.black {
  color: black;
}
@font-face {
  font-family: network_rail_sans;
  src: url(../fonts/network_rail_sansWEB.woff);
}
/* LESS ANIMATIONS */
.grow {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.grow:hover,
.grow:focus {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.grow-skew {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.grow-skew:hover,
.grow-skew:focus {
  -webkit-transform: rotate(1deg) scale(1.08);
  /* Chrome, Opera 15+, Safari 3.1+ */
  /* IE 9 */
  transform: rotate(1deg) scale(1.08);
  /* Firefox 16+, IE 10+, Opera */
}
/* LESS BLOCKS/MODULES */
.two-col-module {
  padding-top: 5%;
  position: relative;
}
.two-col-module .left-bg-image {
  min-height: 400px;
  margin-bottom: 6%;
}
.two-col-module .diagonal-bg-block {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 0px;
  border-right-width: 50vw;
  border-top: 390px solid #e1eaf7;
  position: absolute;
  top: 0;
}
.two-col-module a {
  text-decoration: underline;
}
.two-col-module a:focus {
  color: #015172;
}
.two-col-module a:hover {
  text-decoration: none;
}
.diagonal-call-out-module .diagonal-card-bg {
  position: relative;
  min-height: 200px;
  color: white;
  overflow: hidden;
  background-color: #005172;
  z-index: 1;
  margin-bottom: 20px;
  padding: 5%;
}
.diagonal-call-out-module {
  margin-bottom: 4%;
}
.diagonal-call-out-module .diagonal-card-bg.brand-card-1:before {
  content: '';
  position: absolute;
  left: -80%;
  width: 170%;
  height: 200%;
  /* fallback */
  background-color: #5E90AB;
  top: 0;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  z-index: -1;
}
.diagonal-call-out-module .diagonal-card-bg.brand-card-2:before {
  content: '';
  position: absolute;
  left: -80%;
  width: 170%;
  height: 200%;
  /* fallback */
  background-color: #77B1DE;
  top: 0;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  z-index: -1;
}
.diagonal-call-out-module .diagonal-card-bg h3 {
  font-size: 3rem;
  font-weight: 700;
}
.diagonal-call-out-module .diagonal-card-bg p {
  font-size: 1.6rem;
  font-weight: normal;
  color: white;
}
.diagonal-call-out-module .diagonal-card-bg a {
  color: white;
  text-decoration: underline;
}
.diagonal-call-out-module .diagonal-card-bg a:hover {
  color: white;
  text-decoration: none;
}
.bluebar_module {
  background-color: #015172;
  padding-top: 3%;
  padding-bottom: 3%;
  margin-bottom: 5%;
}
.bluebar_module h2 {
  color: #E4B720;
  font-size: 2.5rem;
  margin-bottom: 0;
  padding-bottom: 0;
}
.bluebar_module h2 + p {
  margin-top: 2rem;
}
.bluebar_module p {
  color: white;
  font-size: 1.9rem;
}
.bluebar_module p:last-child {
  margin-bottom: 0;
}
.bluebar_module a {
  color: #E4B720;
}
.bluebar_module .no-content {
  padding-top: 4.5%;
  padding-bottom: 4.5%;
}
@media (max-width: 576px) {
  .bluebar_module h2 {
    font-size: 2rem;
  }
  .bluebar_module {
    padding-top: 6%;
    padding-bottom: 6%;
  }
  .bluebar_module .no-content {
    padding-top: 12.5%;
    padding-bottom: 12.5%;
  }
  .bluebar_module h2 {
    text-align: center;
  }
}
.get-in-touch-module {
  background-size: cover !important;
  padding-bottom: 10%;
  background-position: right !important;
}
.get-in-touch-module .diagonal-bg-block {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 0px;
  border-right-width: 98vw;
  border-top: 326px solid white;
  position: absolute;
}
.nf-form-content.get-in-touch-module-form {
  background-color: red !important;
}
/*.get-in-touch-module-button {
    background-color: red !important;
}*/
/* NOT WORKING - SO TARGETING NF CLASSES

.get-in-touch-module-wrapper
.get-in-touch-module-form
.get-in-touch-module-half-col

*/
.nf-form-fields-required {
  display: none;
}
.nf-form-content input[type=button].get-in-touch-module-button,
.nf-form-content input[type=button].get-in-touch-module-button:hover,
.nf-form-content input[type=button].get-in-touch-module-button:focus,
.nf-form-content input[type=button].get-in-touch-module-button:active,
.nf-form-content input[type=submit].get-in-touch-module-button,
.nf-form-content input[type=submit].get-in-touch-module-button:hover,
.nf-form-content input[type=submit].get-in-touch-module-button:focus,
.nf-form-content input[type=submit].get-in-touch-module-button:active {
  background-image: url(../assets/greater_than_tertiary.svg);
  background-repeat: no-repeat;
  background-position: 82% 54%;
  padding-right: 11% !important;
  padding-left: 8% !important;
}
.nf-error.field-wrap .nf-field-element:after {
  right: 21px!important;
  height: 50px!important;
  width: 50px!important;
  top: 0px!important;
}
#nf-form-1-cont {
  background-color: #015172 !important;
  color: white!important;
  padding: 11% 7% 8% 11%;
  font-family: network_rail_sans;
}
.nf-form-content.get-in-touch-module-form {
  background-color: #015172 !important;
  padding: 0%;
}
.nf-field-element p {
  color: #E1EAF7 !important;
  font-size: 1.8rem;
}
.nf-field-element {
  padding-right: 20px;
}
.nf-response-msg p {
  color: #fff !important;
  font-size: 1.8rem;
}
.nf-response-msg p:nth-child(2) {
  color: #E4B720 !important;
  font-size: 1.8rem;
}
::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #015172 !important;
  font-size: 1.6rem !important;
  opacity: 1;
  /* Firefox */
}
::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #015172 !important;
  font-size: 1.6rem !important;
  opacity: 1;
  /* Firefox */
}
:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #015172 !important;
  font-size: 1.6rem !important;
  opacity: 1;
  /* Firefox */
}
::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #015172 !important;
  font-size: 1.6rem !important;
  opacity: 1;
  /* Firefox */
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #015172 !important;
  font-size: 1.6rem !important;
  opacity: 1;
  /* Firefox */
}
.nf-form-content .list-select-wrap .nf-field-element > div,
.nf-form-content input:not([type=button]),
.nf-form-content textarea {
  background-color: #E1EAF7 !important;
  color: #015172 !important;
}
.nf-form-content .listselect-wrap .nf-field-element div,
.nf-form-content input.ninja-forms-field,
.nf-form-content select.ninja-forms-field:not([multiple]) {
  height: 40px;
}
.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
  background-color: #E4B720 !important;
  color: #015172 !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 0% 0% 0% 2%!important;
  font-weight: 700!important;
}
.nf-form-content button:hover,
.nf-form-content input[type=button]:hover,
.nf-form-content input[type=submit]:hover {
  background-color: #E1EAF7 !important;
  color: #015172 !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.nf-error .nf-error-msg {
  color: #E4B720 !important;
  position: absolute;
}
.nf-error-msg,
.ninja-forms-req-symbol {
  color: #E4B720 !important;
}
.nf-form-title h3 {
  font-size: 2.8rem !important;
  font-weight: 700!important;
}
.get-in-touch-module-button {
  background-color: #015172 !important;
}
.nf-form-content input:after {
  content: url(../assets/greater_than_tertiary.svg) !important;
  position: relative!important;
  top: 2px!important;
  left: 3px!important;
}
nf-field:nth-child(2),
nf-field:nth-child(3),
nf-field:nth-child(4),
nf-field:nth-child(5) {
  display: inline-block;
  width: 50%;
}
@media (max-width: 768px) {
  nf-field:nth-child(2),
  nf-field:nth-child(3),
  nf-field:nth-child(4),
  nf-field:nth-child(5) {
    display: inline-block;
    width: 100%;
  }
  .nf-form-content input[type=button].get-in-touch-module-button,
  .nf-form-content input[type=button].get-in-touch-module-button:hover,
  .nf-form-content input[type=button].get-in-touch-module-button:focus,
  .nf-form-content input[type=button].get-in-touch-module-button:active {
    background-repeat: no-repeat;
    background-image: url(../assets/greater_than_tertiary.svg);
    background-position: 82% 53%;
    padding-right: 12% !important;
  }
}
.box_accordion_module .diagonal-bg-block {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 0px;
  border-right-width: 98vw;
  border-top: 326px solid white;
  position: absolute;
}
.box_accordion_module {
  padding-top: 0%;
}
.box_accordion_module p {
  padding-bottom: 1%;
}
.box_accordion_module ul {
  padding-bottom: 1%;
}
.box_accordion_module dl,
.box_accordion_module ol,
.box_accordion_module ul {
  margin-top: 0;
  font-size: 1.4rem;
}
.box_accordion_module .card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  border: none;
}
.box_accordion_module .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: none;
  border-radius: 0rem;
  padding-top: 2%;
  margin-bottom: 20px;
}
.box_accordion_module .card-header,
.box_accordion_module .card {
  background-color: transparent;
}
.box_accordion_module h3 {
  font-size: 2.1rem;
  padding-bottom: 0%;
  color: #015172;
  font-weight: bold;
  padding-top: 1%;
  padding-left: 2%;
}
.box_accordion_module .card-body {
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  padding: 1.25rem;
  padding-bottom: 0%;
  padding-left: 3%;
}
.box_accordion_module .card-body .accordion-item-text a {
  text-decoration: underline;
}
.box_accordion_module .card-body .accordion-item-text a:focus {
  color: #015172;
}
.box_accordion_module .card-body .accordion-item-text a:hover {
  text-decoration: none;
}
.box_accordion_module .accordion-arrow {
  height: 50px;
  width: 50px;
  background-image: url(../assets/read-more.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 3%;
  margin-bottom: 5%;
  position: relative;
  margin-left: 30px;
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.box_accordion_module .accordion-arrow.collapsed {
  height: 50px;
  width: 50px;
  background-image: url(../assets/read-more.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 3%;
  margin-bottom: 5%;
  position: relative;
  margin-left: 30px;
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(-180deg);
}
/* Blue boxed variant */
.box_accordion_module.box-accordion-blue .card:nth-child(even) {
  background-color: #015172;
}
.box_accordion_module.box-accordion-blue .card:nth-child(even) a {
  color: white;
  text-decoration: underline;
}
.box_accordion_module.box-accordion-blue .card:nth-child(even) a:hover {
  color: white;
  text-decoration: none;
}
.box_accordion_module.box-accordion-blue .card:nth-child(even) .card-header {
  background-color: #015172;
}
.box_accordion_module.box-accordion-blue .card:nth-child(even) .card-header h3 {
  color: white;
}
.box_accordion_module.box-accordion-blue .card:nth-child(even) p {
  color: white;
}
.box_accordion_module.box-accordion-blue .card:nth-child(even) .accordion-arrow {
  height: 50px;
  width: 50px;
  background-image: url(../assets/read-more-wo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 3%;
  margin-bottom: 5%;
  position: relative;
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(-180deg);
}
.box_accordion_module.box-accordion-blue .card:nth-child(even) .accordion-arrow.collapsed {
  height: 50px;
  width: 50px;
  background-image: url(../assets/read-more-wo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 3%;
  margin-bottom: 5%;
  position: relative;
  /*left: 3%;*/
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
@media (max-width: 800px) {
  .box_accordion_module .accordion-arrow {
    height: 50px;
    width: 50px;
    background-image: url(../assets/read-more.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 3%;
    margin-bottom: 5%;
    position: relative;
    left: 0%;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    margin-left: 30px;
  }
  .box_accordion_module .accordion-arrow.collapsed {
    height: 50px;
    background-image: url(../assets/read-more.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 3%;
    margin-bottom: 5%;
    position: relative;
    left: 0%;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(-180deg);
  }
  .box_accordion_module .bg-color-primary .accordion-arrow {
    height: 50px;
    width: 50px;
    background-image: url(../assets/read-more-wo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 3%;
    margin-bottom: 5%;
    position: relative;
    left: 0%!important;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(-180deg);
  }
  .box_accordion_module .bg-color-primary .accordion-arrow.collapsed {
    height: 50px;
    width: 50px;
    background-image: url(../assets/read-more-wo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 3%;
    margin-bottom: 5%;
    position: relative;
    left: 0%!important;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
}
.boxed_content_module {
  position: relative;
  color: white;
  background-color: #F0F4FB;
  font-family: network_rail_sans;
}
.boxed_content_module .column-1 {
  padding-top: 9%;
  padding-right: 6%;
  padding-bottom: 9%;
}
.boxed_content_module .hero-box-content-text li a {
  font-size: 1.5rem !important;
  font-weight: normal;
  text-decoration: underline;
}
.boxed_content_module .hero-box-content-text li a:hover {
  font-size: 1.5rem !important;
  font-weight: normal;
  text-decoration: none;
}
.boxed_content_module .column-2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}
.boxed_content_module .clipped-bg-image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 17% 100%);
}
.boxed_content_module .box_content_wrapper {
  background-color: #015172;
  width: 150%;
  padding: 7%;
  z-index: 10;
  position: sticky;
}
.boxed_content_module h2 {
  color: #E4B720;
  font-size: 2.5rem;
}
.boxed_content_module p {
  color: white;
}
.boxed_content_module ul {
  color: white;
  padding: 0px;
  padding-left: 16px;
  font-size: 1.5rem;
  line-height: 21px;
  padding-top: 2%;
}
.boxed_content_module li {
  padding-bottom: 1%;
}
.boxed_content_module .hero-box-content-text a {
  position: relative;
  color: white;
  text-decoration: none;
  /*font-size: 1.3rem !important;*/
}
.boxed_content_module .hero-box-content-text a:hover {
  color: #E4B720;
}
.boxed_content_module .hero-box-content-text a:focus {
  color: #E4B720;
}
.boxed_content_module .hero-box-content-text a {
  color: white;
  text-decoration: underline;
}
.boxed_content_module .hero-box-content-text a:hover {
  color: white;
  text-decoration: none;
}
/* Animate the line from the right */
/*.boxed_content_module .hero-box-content-text a::before {
    content: "";
    position: absolute;
    display: block;
    width: 86%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: @brand-tertiary;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease;
}

.boxed_content_module .hero-box-content-text a:hover::before {
    transform: scaleX(1);
}*/
@media (max-width: 576px) {
  .boxed_content_module .clipped-bg-image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
  }
  .boxed_content_module .box_content_wrapper {
    width: calc(100vw - 30%);
  }
}
@media (max-width: 992px) {
  .boxed_content_module.has-navigation .column-1 {
    padding-top: 12%;
  }
}
@media (max-width: 768px) {
  .boxed_content_module.has-navigation .column-1 {
    padding-top: 15%;
  }
}
@media (max-width: 576px) {
  .boxed_content_module.has-navigation .column-1 {
    padding-top: 18%;
  }
}
.breadcrumb_module .breadcrumb-item,
.breadcrumb_module .breadcrumb-item.active,
.boxed_content_breadcrumb .breadcrumb-item.active,
.boxed_content_module .boxed_content_breadcrumb .breadcrumb-item,
.single_column_background_image_breadcrumb .breadcrumb-item.active {
  color: #015172;
}
nav .breadcrumb a:after {
  content: none;
}
nav .breadcrumb li,
nav .breadcrumb li a {
  font-size: 1.4rem !important;
  text-decoration: none;
}
nav .breadcrumb li a {
  font-weight: 400;
  position: relative;
}
.breadcrumb_module .breadcrumb,
.boxed_content_breadcrumb .breadcrumb,
.single_column_background_image_breadcrumb .breadcrumb {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 2% 0;
  margin: 0px;
  list-style: none;
  background-color: transparent;
  border-radius: 0.25rem;
  font-size: 1.4rem;
  font-family: network_rail_sans;
}
.breadcrumb_module .breadcrumb-item + .breadcrumb-item::before,
.boxed_content_breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.single_column_background_image_breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #0081C6;
  font-weight: bold;
  content: ">";
}
.breadcrumb_module .breadcrumb li.active,
.boxed_content_breadcrumb li.active,
.single_column_background_image_breadcrumb li.active {
  font-weight: bold;
  font-weight: 1.4rem !important;
}
.breadcrumb_module .breadcrumb li a,
.boxed_content_breadcrumb .breadcrumb li a,
.single_column_background_image_breadcrumb .breadcrumb li a {
  color: #015172 !important;
  padding-bottom: 6px;
}
.boxed_content_breadcrumb .breadcrumb,
.single_column_background_image_breadcrumb .breadcrumb {
  position: absolute;
  top: 5%;
}
/* Animate the line from the right */
nav .breadcrumb li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0081C6;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
nav .breadcrumb li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media (max-width: 500px) {
  .wp-block-ncb-breadcrumbs {
    padding-top: 3%;
    padding-bottom: 3%;
  }
}
.calloutbox_module_secondary {
  background-color: #E4B720;
  padding-top: 3%;
  padding-bottom: 3%;
  color: #015172;
}
.calloutbox_module_primary {
  background-color: #015172;
  padding-top: 3%;
  padding-bottom: 3%;
  color: white;
  padding-left: 6%;
  padding-right: 6%;
}
.calloutbox_module_primary h2 {
  font-weight: bold;
  color: white;
}
.calloutbox_module_primary .jobs-link-text a:after {
  content: none;
  position: relative;
  top: 2px;
  left: 3px;
}
.calloutbox_module_primary a:after {
  content: url(../assets/greater_than_tertiary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.calloutbox_module_primary p {
  color: white;
}
.calloutbox_module_secondary .input-group {
  border-radius: 0px;
  margin-top: 20px;
}
.calloutbox_module_secondary .form-control {
  border-radius: 0rem;
  font-size: 1.5rem;
}
.calloutbox_module_secondary .input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control {
  padding: 2%;
}
.calloutbox_module_secondary h2 {
  font-weight: bold;
  color: #015172;
}
.calloutbox_module_primary a {
  color: #E4B720;
  text-decoration: underline;
}
.calloutbox_module_primary a:hover {
  text-decoration: none;
}
.calloutbox_module_primary a.btn {
  color: #015172;
  text-decoration: none;
}
.calloutbox_module_primary a:hover.btn {
  color: #015172;
  text-decoration: none;
}
.calloutbox_module_secondary a {
  color: #015172;
  text-decoration: underline;
}
.calloutbox-secondary-large-text p {
  font-size: 2.5rem;
  font-weight: 700;
}
.calloutbox_module_secondary a.btn {
  color: white;
  text-decoration: none;
}
.calloutbox_module_secondary a:hover,
.btn {
  color: #015172;
  text-decoration: none;
}
.calloutbox_module_secondary a:hover {
  text-decoration: none;
}
@media (max-width: 700px) {
  .calloutbox_module_secondary {
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .calloutbox_module_primary {
    background-color: #015172;
    padding-top: 3%;
    padding-bottom: 3%;
    color: white;
    text-align: center;
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .calloutbox_module_primary h2 {
    color: white;
    text-align: center;
  }
}
.cards_module {
  background-color: white;
  padding-top: 3%;
  padding-bottom: 5%;
}
.cards_module a:hover {
  text-decoration: none;
}
.cards_module .card:hover {
  background-color: #cedff7;
  color: #015172;
}
.cards_module h3 {
  padding-bottom: 0px;
}
.cards_module a:hover,
a:focus {
  color: #015172;
  text-decoration: underline;
}
.cards_module .card {
  background-color: #F0F4FB;
  color: #015172;
}
.cards_module .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: none;
  border-radius: 0rem;
  margin-bottom: 30px;
  padding: 8%;
}
.cards_module .card:hover {
  background-color: #F0F4FB;
}
.cards_module .card.grow-skew:hover {
  background-color: #cedff7;
}
.cards_module_img_inline {
  padding-top: 0;
  background-color: transparent;
  padding-bottom: 5%;
}
.cards_module_img_inline h3 {
  padding-bottom: 0px;
}
.cards_module_img_inline .card {
  background-color: #F0F4FB;
  color: #015172;
}
.cards_module_img_inline .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: none;
  border-radius: 0rem;
  margin-bottom: 30px;
  padding: 8%;
  min-height: 147px;
}
.cards_module_img_inline .card .card-img-top img {
  width: 85px;
}
.cards_module-multicolor .diagonal-bg-block {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 0px;
  border-right-width: 98vw;
  border-top: 326px solid white;
  position: absolute;
  top: 0px;
}
.cards_module-multicolor.with-diagonal-bg-color {
  background-color: #F0F4FB;
}
.cards_module-multicolor {
  background-color: transparent;
  padding-top: 5%;
  padding-bottom: 5%;
}
.cards_module-multicolor a:hover {
  text-decoration: none;
}
.cards_module-multicolor .card:hover {
  color: #015172;
}
.cards_module-multicolor h3 {
  padding-bottom: 0;
  margin: 0;
}
.cards_module-multicolor a:hover,
a:focus {
  color: #015172;
  text-decoration: none;
}
.cards_module-multicolor .card .card-body {
  max-height: 120px;
  overflow: hidden;
}
/* BRAND PRIMARY BG COLOR */
.cards_module-multicolor.brand-primary .card .card-body {
  background-color: #015172;
  color: white;
}
.cards_module-multicolor.brand-primary .card .card-body a {
  color: white !important;
}
/* BRAND SECONDARY BG COLOR */
.cards_module-multicolor.brand-secondary .card .card-body {
  background-color: #E4B720;
  color: #015172;
}
.cards_module-multicolor.brand-secondary .card .card-body a {
  color: #015172 !important;
}
/* BRAND TERTIARY BG COLOR */
.cards_module-multicolor.brand-tertiary .card .card-body {
  background-color: #0081C6;
  color: white;
}
.cards_module-multicolor.brand-tertiary .card .card-body a {
  color: white !important;
}
/* BRAND LIGHT BLUE BG COLOR */
.cards_module-multicolor.light-blue .card .card-body {
  background-color: #F0F4FB;
  color: #015172;
}
.cards_module-multicolor.light-blue .card .card-body a {
  color: #015172 !important;
}
/* BRAND MEDIUM BLUE BG COLOR */
.cards_module-multicolor.medium-blue .card .card-body {
  background-color: #B8D2ED;
  color: #015172;
}
.cards_module-multicolor.medium-blue .card .card-body a {
  color: #015172 !important;
}
/* BRAND GREY BLUE BG COLOR */
.cards_module-multicolor.grey-blue .card .card-body {
  background-color: #5E90AB;
  color: white;
}
.cards_module-multicolor.grey-blue .card .card-body a {
  color: white !important;
}
.cards_module-multicolor .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: none;
  border-radius: 0rem;
  margin-bottom: 30px;
  min-height: 120px;
}
.cards_module-multicolor_img_inline {
  background-color: white;
  padding-top: 5%;
  padding-bottom: 5%;
}
.cards_module-multicolor_img_inline h3 {
  padding-bottom: 0px;
}
.cards_module-multicolor_img_inline .card {
  background-color: #F0F4FB;
  color: #015172;
}
.cards_module-multicolor_img_inline .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: none;
  border-radius: 0rem;
  margin-bottom: 30px;
  padding: 8%;
  min-height: 147px;
}
.carousel_1 .card-img {
  height: 46px !important;
  width: 69px !important;
  position: absolute;
  right: 20px;
  top: 22px;
}
.carousel_1 .card-img img {
  max-height: 46px !important;
}
.carousel-control-next,
.carousel-control-prev {
  opacity: 1!important;
  border: none;
}
.carousel-control-prev-icon {
  background-image: url(../assets/carousel_prev.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
}
.carousel-control-next-icon {
  background-image: url(../assets/carousel_next.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
}
.carousel_1_module {
  background-color: #015172;
  padding-top: 4%;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .carousel_1_module {
    padding-top: 5%;
    padding-bottom: 75px;
  }
}
.carousel_1_module .text p {
  color: white;
}
.carousel_1_module .services-carousel-text a {
  color: white;
  text-decoration: underline;
}
.carousel_1_module .services-carousel-text a:hover {
  color: white;
  text-decoration: none;
}
.carousel_1_module h2 {
  font-size: 25px;
  color: #E4B720;
  font-weight: bold;
}
.carousel_1 .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #F0F4FB;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
}
.pull-up {
  position: static !important;
  top: 0 !important;
  margin-top: -60px;
}
.carousel_1 .card-body {
  min-height: 200px;
  padding: 1.75rem;
}
.carousel_1 .card-img {
  height: 50px;
  width: 50px;
  position: absolute;
  right: 20px;
  top: 22px;
}
.carousel_1 .link {
  position: absolute;
  left: 20px;
  bottom: 16px;
}
.carousel_1 h5 {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: left;
  color: #015172;
  width: 60%;
}
.carousel_1 .link a {
  position: relative;
  color: #015172 !important;
  text-decoration: none;
  font-size: 1.3rem;
}
.carousel_1 .link a:after {
  content: url(../assets/greater_than_tertiary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.carousel_1 .link a:hover {
  color: #015172 !important;
  font-weight: 700;
  font-size: 1.2rem;
}
/* Animate the line from the right */
.carousel_1 .link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #015172;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.carousel_1 .link a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.carousel_1 .link span.greater-than {
  font-size: 18px;
  position: relative;
  top: 2px;
}
.carousel_1 .greater-than:after {
  content: url(../assets/greater_than_tertiary.svg);
}
@media (max-width: 980px) {
  .carousel_1 h5 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    color: #015172;
    width: 65%;
  }
}
@media (max-width: 768px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}
.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* display 3 */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next {
    -webkit-transform: translateX(33.333%);
            transform: translateX(33.333%);
  }
  .carousel-inner .carousel-item-left.active,
  .carousel-inner .carousel-item-prev {
    -webkit-transform: translateX(-33.333%);
            transform: translateX(-33.333%);
  }
}
.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#main-slider-1 .owl-dots {
  display: none;
}
#main-slider-1 .owl-nav {
  pointer-events: none;
  position: absolute;
  width: 98%;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  font-size: 5rem;
}
#main-slider-1 .owl-nav button {
  pointer-events: all;
  width: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url();
}
#main-slider-1 .owl-nav button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#main-slider-1.owl-carousel .owl-nav button.owl-next {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_next.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  right: -4%;
}
#main-slider-1.owl-carousel .owl-nav button.owl-prev {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_prev.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  left: 0%;
}
#main-slider-1 .owl-nav button span {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#main-slider-1.owl-carousel .card-width {
  width: 350px;
  margin: auto;
}
@media (max-width: 768px) {
  #main-slider-1.owl-carousel .owl-nav button.owl-next {
    left: 0px;
  }
  #main-slider-1.owl-carousel .owl-nav button.owl-prev {
    left: 4%;
  }
}
@media only screen and (min-width: 200px) and (max-width: 767px) {
  #main-slider-1 .card-width {
    width: 300px!important;
    margin: auto;
  }
}
@media only screen and (min-width: 767px) and (max-width: 900px) {
  #main-slider-1 .card-width {
    width: 320px!important;
    margin: auto;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  #main-slider-1 .card-width {
    width: 280px!important;
    margin: auto;
  }
}
#main-slider-news .owl-dots {
  display: inline-block;
}
#main-slider-news .owl-nav {
  pointer-events: none;
  position: absolute;
  width: 97%;
  top: 110%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 5rem;
}
#main-slider-news .owl-nav button {
  pointer-events: all;
  width: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url();
}
#main-slider-news .owl-nav button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#main-slider-news.owl-carousel .owl-nav button.owl-next {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_next.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  left: 30px;
}
#main-slider-news.owl-carousel .owl-nav button.owl-prev {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_prev.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  left: 10px;
}
#main-slider-news .owl-nav button span {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#main-slider-news .card-width {
  width: 250px;
  margin: auto;
}
#main-slider-news .owl-nav button.owl-next {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_next.svg);
  width: 50px;
  height: 50px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  right: 43%!important;
  top: 423%!important;
}
#main-slider-news .card {
  background-color: #fff;
}
@media (max-width: 576px) {
  #main-slider-news .owl-nav {
    width: 89%;
  }
}
@media only screen and (min-width: 200px) and (max-width: 767px) {
  #main-slider-news .card-width {
    width: 280px!important;
    margin: auto;
  }
}
@media only screen and (min-width: 767px) and (max-width: 900px) {
  #main-slider-news .card-width {
    width: 200px!important;
    margin: auto;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  #main-slider-news .card-width {
    width: 200px!important;
    margin: auto;
  }
}
.carousel_2_module {
  /*padding-left: 4%;
  padding-right: 4%;*/
  padding-top: 3%;
}
.carousel_2_module #main-slider-news {
  margin-bottom: 125px;
}
.carousel_2_controls .row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.carousel-control-next,
.carousel-control-prev {
  opacity: 1!important;
  border: none;
}
.carousel-control-prev-icon {
  background-image: url(../assets/carousel_prev.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
}
.carousel-control-next-icon {
  background-image: url(../assets/carousel_next.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
}
.carousel_2_module p {
  color: white;
  text-align: left;
  margin: 0px;
  font-size: 1.45rem;
}
.carousel_2_module p.date-stamp {
  color: #E4B720;
  text-align: left;
  margin: 0px;
  font-size: 1.25rem;
}
.carousel_2_module h3 {
  color: white;
}
.carousel_2_module .card-img-border-bottom {
  border-bottom: 5px white solid;
}
.carousel_2_module .card-img-border-bottom img {
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel_2_module .card-bottom-panel {
  background-color: #E4B720;
  text-align: center;
  padding: 10px;
}
.carousel_2_controls {
  width: 90px;
  margin-top: 30px;
}
@media (max-width: 576px) {
  .carousel_2_controls {
    width: 130px;
    margin-top: 30px;
  }
}
.carousel_2_module .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #F0F4FB;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
}
.pull-up {
  position: relative;
  top: -60px;
}
.carousel_2_module .card-body {
  min-height: 125px;
  padding: 1.75rem;
  background-color: #015172;
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  .carousel_2_module .card-body {
    min-height: 141px;
  }
}
.carousel_2_module .card-img {
  height: 50px;
  width: 50px;
  osition: absolute;
  right: 20px;
  top: 22px;
}
.carousel_2_module .greater-than:after {
  content: url(../assets/greater_than_tertiary.svg);
}
.carousel_2_module .link a:after {
  content: url(../assets/greater_than_tertiary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.carousel_2_module .link a {
  position: relative;
  color: #015172 !important;
  text-decoration: none;
  font-size: 1.3rem;
}
.carousel_2_module .link a:hover {
  color: #015172 !important;
  font-weight: 700;
  font-size: 1.3rem;
}
/* Animate the line from the right */
.carousel_2_module .link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #015172;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.carousel_2_module .link a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.carousel_2_module .link span.greater-than {
  font-size: 18px;
  position: relative;
  top: 2px;
}
@media (max-width: 768px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}
.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* display 3 */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next {
    -webkit-transform: translateX(33.333%);
            transform: translateX(33.333%);
  }
  .carousel-inner .carousel-item-left.active,
  .carousel-inner .carousel-item-prev {
    -webkit-transform: translateX(-33.333%);
            transform: translateX(-33.333%);
  }
}
.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.certification_module {
  background-color: #E4B720;
  padding-top: 3%;
  padding-bottom: 3%;
}
.certification_module h2 {
  font-size: 2.1rem;
  font-weight: bold;
  color: black;
  padding-bottom: 7%;
}
.certification_module p {
  padding-bottom: 0px;
  padding-top: 10px;
}
@media (max-width: 800px) {
  .certification_module .img-fluid-mobile {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .certification_module .img-fluid-mobile {
    width: 40%;
  }
}
.hero_banner_module {
  position: relative;
  color: white;
  background-color: #015172;
}
.hero_banner_module .column-1 {
  padding-top: 5%;
  padding-right: 6%;
  padding-bottom: 5%;
}
.hero_banner_module .column-2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}
.hero_banner_module .clipped-bg-image {
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}
.hero_banner_module h1 {
  font-size: 3.6rem;
  color: white;
  font-weight: bold;
  margin-bottom: 5%;
}
.hero_banner_module p {
  font-size: 1.7rem;
  color: white;
}
.hero_banner_module .text {
  padding: 5% 5% 0% 0%;
  width: 45%;
}
.hero_banner_module a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 1.3rem !important;
}
.hero_banner_module a:hover {
  color: white;
  font-weight: 700;
}
.hero_banner_module a:focus {
  color: white;
  font-weight: 700;
}
.hero_banner_module a::before {
  content: "";
  position: absolute;
  display: block;
  width: 86%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #E4B720;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hero_banner_module a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.hero_banner_module a:after {
  content: url(../assets/greater_than_secondary.svg);
  position: relative;
  top: 3px;
}
@media (max-width: 576px) {
  .hero_banner_module h1 {
    font-size: 2.8rem;
  }
  .hero_banner_module .column-1 {
    padding-top: 9%;
    padding-right: 6%;
    padding-bottom: 9%;
  }
  .hero_banner_module .clipped-bg-image {
    clip-path: polygon(100% 0%, 100% 0, 100% 100%, 0% 100%);
  }
}
.hero_secondary_module {
  position: relative;
  background-color: #015172;
  color: white;
}
.hero_secondary_module .column-1 {
  padding-top: 9%;
  padding-right: 6%;
  padding-bottom: 9%;
}
.hero_secondary_module .column-1 {
  padding-top: 9%;
  padding-right: 6%;
  padding-bottom: 9%;
}
.hero_secondary_module .column-2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}
.hero_secondary_module .small-title {
  color: #E4B720;
}
.hero_secondary_module .clipped-bg-image {
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}
.hero_secondary_module h1 {
  font-size: 3.8rem;
  color: white;
  font-weight: bold;
  margin-bottom: 0;
}
.hero_secondary_module .text p {
  font-size: 1.4rem;
}
.hero_secondary_module .text {
  padding: 5% 5% 0% 0%;
  width: 45%;
}
.hero_secondary_module a {
  color: white;
}
@media (max-width: 576px) {
  .hero_secondary_module h1 {
    font-size: 2.8rem;
  }
  .hero_secondary_module .clipped-bg-image {
    clip-path: polygon(100% 0%, 100% 0, 100% 100%, 0% 100%);
  }
  .hero_secondary_module .column-1 {
    padding-top: 18%;
    padding-right: 6%;
    padding-bottom: 18%;
  }
}
.hero_secondary_module .link-wrapper {
  padding-top: 10%;
}
.hero_secondary_module ul li a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
}
.hero_secondary_module ul li a:after {
  content: url(../assets/greater_than_secondary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.hero_secondary_module ul li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #E4B720;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hero_secondary_module ul li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.image_offset_module_right .content-box {
  z-index: 1;
}
.image_offset_module_right,
.image_offset_module_left {
  padding-bottom: 1%;
  padding-top: 5%;
  margin-bottom: 2.5%;
}
.image_offset_module_left a {
  color: white;
  text-decoration: underline;
}
.image_offset_module_left a:hover,
a:focus {
  color: white;
  text-decoration: none;
}
.image_offset_module_right a {
  color: white;
  text-decoration: underline;
}
.image_offset_module_right a:hover,
a:focus {
  color: white;
  text-decoration: none;
}
.image_offset_module_left p {
  color: white;
}
.image_offset_module_right p {
  color: white;
}
.image_offset_module_right .content-box {
  background-color: #015172;
  color: white;
  padding: 3%;
  height: 100%;
}
.image_offset_module_left .content-box {
  background-color: #015172;
  color: white;
  padding: 3%;
  height: 100%;
}
.image_offset_module_right .img-right {
  position: relative;
  top: -90px;
  left: -50px;
  z-index: auto;
  background-size: cover;
  min-height: 350px;
  background-size: cover !important;
  background-position: center !important;
  height: 100%;
}
.image_offset_module_left .img-left {
  position: relative;
  z-index: auto;
  background-size: cover;
  min-height: 350px;
  left: 50px;
  top: -50px;
  background-size: cover !important;
  background-position: center !important;
  height: 100%;
}
@media (max-width: 850px) {
  .image_offset_module_right,
  .image_offset_module_left {
    padding-bottom: 8%;
    padding-top: 14%;
  }
  .image_offset_module_left .img-left {
    top: 0px;
  }
}
@media (max-width: 600px) {
  .image_offset_module_left .img-left {
    top: 100px;
  }
  .image_offset_module_right,
  .image_offset_module_left {
    padding-bottom: 2%;
    padding-top: 2%;
  }
  .image_offset_module_left .img-left {
    left: 0px;
  }
  .image_offset_module_right .img-right {
    left: 0px;
  }
}
.search-icon {
  background-color: white;
  background-image: url(../assets/search-static-1.png);
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  border: none;
  background-size: contain;
}
#search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  display: none;
}
#search-overlay .col {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#search-overlay form.form-search {
  width: 100%;
}
#search-overlay form.form-search .input-group {
  border-bottom: solid 2px #015172 !important;
}
#search-overlay form.form-search .input-group input.form-control {
  border-width: 0;
  font-size: 4rem!important;
  background-color: transparent;
  color: #015172 !important;
}
#search-overlay .input-group ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #015172 !important;
  font-size: 4rem!important;
}
#search-overlay .input-group ::-moz-placeholder {
  /* Firefox 19+ */
  color: #015172 !important;
  font-size: 4rem!important;
}
#search-overlay .input-group :-ms-input-placeholder {
  /* IE 10+ */
  color: #015172 !important;
  font-size: 4rem!important;
}
#search-overlay .input-group :-moz-placeholder {
  /* Firefox 18- */
  color: #015172 !important;
  font-size: 4rem!important;
}
#search-overlay #search-btn-close {
  position: absolute;
  top: 32px;
  right: 15px;
  background-image: url(../assets/close-cross.png);
  background-size: contain;
  height: 25px;
  width: 25px;
  background-repeat: no-repeat !important;
}
#search-overlay #search-btn-close,
#search-overlay #search-btn-close button {
  cursor: pointer;
}
.btn-search {
  background-image: url(../assets/search-arrow.png);
  height: 50px;
  width: 50px;
  background-repeat: no-repeat !important;
  border: none;
  background-size: contain;
  background-position-x: 50%;
  position: relative!important;
  top: 8px;
}
.btn-search-sml {
  background-image: url(../assets/search-arrow.png);
  height: 30px;
  width: 30px;
  background-repeat: no-repeat !important;
  border: none;
  background-size: contain;
  background-position-x: 50%;
  position: relative!important;
  top: -5px;
}
#search-form-1 {
  font-size: 2rem;
  border-bottom: 1px solid #015172;
  border-right: 0px;
  border-left: 0px;
  border-top: 0px;
  padding-bottom: 3px;
}
#search-form-1:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}
.shield-module {
  background: -webkit-gradient(linear, left bottom, left top, from(#e1eaf7), to(#e1eaf7));
  background: linear-gradient(0deg, #e1eaf7, #e1eaf7);
  background-size: 100%;
  padding-bottom: 5%;
  margin-bottom: 5%;
}
.shield-module .row {
  padding-top: 11%;
}
.shield-module .diagonal-bg-block {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 0px;
  border-right-width: 98vw;
  border-top: 100px  solid white;
  position: absolute;
}
@media (max-width: 600px) {
  .center-mobile {
    -ms-flex-pack: center!important;
    -webkit-box-pack: center!important;
            justify-content: center!important;
  }
}
.single_column_text {
  margin-bottom: 5%;
}
.single_column_background_image {
  position: relative;
  background-color: white;
  color: #015172;
}
.single_column_background_image.has-navigation .column-1 {
  padding-top: 9%;
  padding-bottom: 8%;
}
.single_column_background_image .column-1 {
  padding-top: 5%;
  padding-right: 6%;
  padding-bottom: 5%;
}
.single_column_background_image .column-2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}
.single_column_background_image .clipped-bg-image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 17% 100%);
}
.single_column_background_image h2 {
  font-size: 2.5rem;
  color: #015172;
  font-weight: bold;
  padding-bottom: 5%;
}
.single_column_background_image,
.single-col-bgrnd-intro,
.single-col-bgrnd-intro p {
  color: #015172 !important;
  font-size: 1.8rem;
  line-height: 1.2em;
  font-weight: normal;
  padding-bottom: 1%;
}
.single-col-bgrnd-text p:nth-child(2) {
  font-weight: normal;
}
.single_column_background_image .text p {
  font-size: 1.4rem;
}
.single_column_background_image .text {
  padding: 5% 5% 0% 0%;
}
.single_column_background_image .single-col-bgrnd-text a {
  position: relative;
  color: black;
  text-decoration: none;
  font-size: 1.3rem;
}
.single_column_background_image .single-col-bgrnd-text a:hover {
  color: black !important;
  font-weight: 700;
}
.single_column_background_image .single-col-bgrnd-text a::before {
  content: "";
  position: absolute;
  display: block;
  width: 86%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #E4B720;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.single_column_background_image .single-col-bgrnd-text a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.single_column_background_image .single-col-bgrnd-text a:after {
  content: url(../assets/greater_than_secondary.svg);
  position: relative;
  top: 3px;
}
@media (max-width: 576px) {
  .single_column_background_image .column-1 {
    padding-top: 8%;
    padding-right: 6%;
    padding-bottom: 8%;
  }
  .single_column_background_image .clipped-bg-image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@media (max-width: 992px) {
  .single_column_background_image.has-navigation .column-1 {
    padding-top: 13%;
  }
}
@media (max-width: 768px) {
  .single_column_background_image.has-navigation .column-1 {
    padding-top: 18%;
  }
}
@media (max-width: 576px) {
  .single_column_background_image.has-navigation .column-1 {
    padding-top: 22%;
  }
}
#single_column_background_image_2 {
  background-color: white !important;
  color: #015172;
}
/* Create two equal columns that floats next to each other */
#single_column_background_image_2 .column {
  float: left;
  width: 50%;
  padding: 10px;
  padding: 4% 10% 4% 10%;
}
/* Clear floats after the columns */
#single_column_background_image_2 .row:after {
  content: "";
  display: table;
  clear: both;
  background-color: white;
}
#single_column_background_image_2 .clipped-bg-image {
  padding: 10%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 17% 100%);
}
#hero_banner_module_new_2 {
  background-color: #015172;
}
#single_column_background_image_22 {
  color: #015172;
}
#single_column_background_image_2 a {
  color: #015172;
}
#single_column_background_image_2 h2 {
  font-size: 2.5rem;
  color: #015172;
  font-weight: bold;
  padding-bottom: 10px;
}
.single_column_background_image,
.single-col-bgrnd-intro,
.single_column_background_image,
.single-col-bgrnd-intro p {
  color: black;
  font-size: 1.8rem;
  line-height: 1.2em;
  font-weight: normal;
}
.single-col-bgrnd-intro p {
  font-weight: 700;
}
#single_column_background_image_2 .text p {
  font-size: 1.4rem;
}
#single_column_background_image_2 .text {
  padding: 5% 5% 0% 0%;
}
.table_module thead {
  background-color: #015172;
  color: white;
  font-size: 1.7rem;
  padding-bottom: 20%;
  font-family: network_rail_sans;
}
.table_module table td,
table th {
  padding: 2.5rem;
  vertical-align: top;
  border: 1px solid #015172;
  text-align: left;
  font-family: network_rail_sans;
}
.table_module table thead th {
  vertical-align: top;
  border: 1px solid white;
}
.table_module .table-left-title {
  font-size: 1.3rem;
}
.table_module ul {
  font-size: 1.3rem;
}
.table_module p {
  font-size: 1.3rem;
}
.table_module #fade-container {
  max-width: 100%;
  margin: auto;
  position: relative;
}
div#fade-content {
  max-height: auto;
  overflow: hidden;
}
div#fade-content.full {
  max-height: none;
}
.table_module .fade-anchor {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 0px, #ffff 200px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 548px;
  padding-top: 220px;
  position: absolute;
  top: 308px;
  right: 0;
  left: 0;
  text-align: center;
  -webkit-transition: background 150ms ease-in;
  transition: background 150ms ease-in;
}
.table_module .fade-readmore img {
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.table_module .fade-readmore img:hover {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(-180deg);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.readmore {
  position: relative;
  max-height: 660px;
  overflow: hidden;
}
.readmore.expand {
  max-height: 5000px !important;
  -webkit-transition: max-height 0.35s ease-in-out;
  transition: max-height 0.35s ease-in-out;
}
.readmore-link {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 108px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding-top: 0px;
  background: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, rgba(255, 255, 255, 0.97552524)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97552524) 49%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  cursor: pointer;
}
button:focus {
  outline: none;
}
.readmore-link.expand {
  position: relative;
  background-image: none;
  padding-top: 10px;
  height: 51px;
}
.readmore-link:after {
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background: transparent url('../assets/read-more.svg') no-repeat;
  margin: 0 auto;
}
.readmore-link.expand:after {
  display: none;
}
@media (max-width: 800px) {
  .table_module .table-left-title {
    font-size: 1rem;
  }
  .table_module ul {
    font-size: 1rem;
  }
  .table_module thead {
    font-size: 1.3rem;
  }
  .table_module table td,
  table th {
    padding: 0.8rem;
    vertical-align: top;
    border: 1px solid #015172;
    text-align: left;
  }
}
.tilegrid_module {
  padding-top: 3%;
  padding-bottom: 5%;
}
.tilegrid_module .card-img {
  height: 46px !important;
  width: 69px !important;
  position: absolute;
  right: 20px;
  top: 17px;
}
.tilegrid_module .card-img img {
  max-height: 69px !important;
}
.tilegrid_module p {
  display: inline-block;
  width: 100%;
  float: left;
  clear: both;
  padding-bottom: 10%;
  font-size: 1.3rem;
  padding-top: 10%;
}
.tilegrid_module a:after {
  content: url(../assets/greater_than_tertiary.svg);
  position: relative;
  top: 3px;
}
.tilegrid_module .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #F0F4FB;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
  margin-bottom: 30px;
  /*min-height: 341px;*/
  min-height: 185px;
}
.tilegrid_module .card-body {
  padding: 1.75rem;
}
.tilegrid_module .title-wrapper {
  display: inline-block;
  width: 80%;
}
.tilegrid_module .text-wrapper {
  display: inline-block;
}
.tilegrid_module .card-img {
  height: 50px;
  width: 50px;
  position: absolute;
  right: 20px;
  top: 17px;
}
.tilegrid_module .link {
  position: absolute;
  left: 20px;
  bottom: 16px;
}
.tilegrid_module h5 {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: left;
  color: #015172;
  width: 90%;
}
.tilegrid_module .link a {
  position: relative;
  color: #015172 !important;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
}
.tilegrid_module .link a:hover {
  color: #015172 !important;
}
/* Animate the line from the right */
.tilegrid_module .link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #015172;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.tilegrid_module .link a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.tilegrid_module .link span.greater-than {
  font-size: 18px;
  position: relative;
  top: 2px;
}
@media (max-width: 980px) {
  .tilegrid_module .card {
    min-height: 315px;
  }
}
@media (max-width: 500px) {
  .tilegrid_module .card {
    min-height: 250px;
  }
  .tilegrid_module h5 {
    font-size: 2.3rem;
    font-weight: bold;
    text-align: left;
    color: #015172;
    width: 90%;
    margin-top: 25%;
  }
  .tilegrid_module .card-img {
    height: 50px;
    width: 50px;
    position: absolute;
    left: 20px;
    top: 22px;
  }
  .tilegrid_module p {
    display: inline-block;
    padding-top: 0%;
  }
}
.tilegrid_module_2 {
  padding-bottom: 5%;
  background-size: cover !important;
  background-position: center !important;
}
.tilegrid_module_2 .card-img img {
  max-height: 40px;
}
.tilegrid_module_2 .text-wrapper p {
  font-size: 1.3rem;
  padding-top: 8%;
  color: white;
}
.tilegrid_module_2 a {
  text-decooration: underline;
}
.tilegrid_module_2 a:hover {
  text-decoration: none;
}
.tilegrid_module_2 a:focus {
  text-decoration: none;
}
.tilegrid_module_2 .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #015172;
  color: white;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
  margin-bottom: 30px;
  min-height: 230px;
}
.tilegrid_module_2 .card-body {
  padding: 1.75rem;
}
.tilegrid_module_2 .title-wrapper {
  display: inline-block;
  width: 80%;
}
.tilegrid_module_2 .text-wrapper {
  display: inline-block;
}
.tilegrid_module_2 .card-img {
  height: 50px;
  width: 50px;
  position: absolute;
  right: 20px;
  top: 17px;
}
.tilegrid_module_2 .link {
  position: absolute;
  left: 20px;
  bottom: 16px;
}
.tilegrid_module_2 h5 {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: left;
  color: white;
  width: 90%;
}
.tilegrid_module_2 .link a {
  position: relative;
  color: #015172 !important;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
}
.tilegrid_module_2 .link a:hover {
  color: #015172 !important;
}
/* Animate the line from the right */
.tilegrid_module_2 .link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #015172;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.tilegrid_module_2 .link a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.tilegrid_module_2 .link span.greater-than {
  font-size: 18px;
  position: relative;
  top: 2px;
}
.tilegrid_module_2 .diagonal-bg-block {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 0px;
  border-right-width: 98vw;
  border-top: 326px solid white;
  position: absolute;
}
.tilegrid_module_2_bottom_container {
  background-color: #F0F4FB;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}
.tilegrid_module_2_bottom_container a {
  text-decoration: underline;
}
.tilegrid_module_2_bottom_container a:hover {
  text-decoration: none;
}
.tilegrid_module_2_bottom_container .container-p {
  padding: 0px!important;
  color: #015172;
  width: 100%;
}
.tilegrid_module_2_bottom_container h4 {
  color: #015172;
}
@media (max-width: 980px) {
  .tilegrid_module_2 .card {
    min-height: 200px;
  }
}
@media (max-width: 500px) {
  .tilegrid_module_2 .card {
    min-height: 200px;
  }
  .tilegrid_module_2 .card-img {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 22px;
  }
  .tilegrid_module_2 p {
    display: inline-block;
    padding-top: 5%;
    width: 80%;
  }
}
.timeline-list-item-module {
  padding-bottom: 5%;
}
.wp-block-ncb-fancy-list ol {
  /*background-image: url(../assets/brand-primary-ul-line.svg);*/
  background-repeat: repeat-y;
  background-position-x: 24px;
  padding-left: 80px;
}
.wp-block-ncb-fancy-list ol li {
  counter-increment: item-counter;
  margin-bottom: 25px;
  position: relative;
  background-color: #015172;
  padding: 3%;
  color: white;
  font-weight: normal;
  font-size: 1.5rem;
}
.wp-block-ncb-fancy-list ol li a {
  color: white;
  text-decoration: underline;
}
.wp-block-ncb-fancy-list ol > li a:hover {
  color: white;
  text-decoration: none;
}
.wp-block-ncb-fancy-list ol ol li a,
.wp-block-ncb-fancy-list ol ol li a:hover {
  color: #015172;
}
.wp-block-ncb-fancy-list ol li:before {
  margin-right: 20px;
  content: counter(item-counter);
  background: #0081C6;
  color: white;
  text-align: center;
  padding: 10px 20px;
  position: absolute;
  left: -80px;
  top: 0;
  font-weight: 700;
  font-size: 2rem;
}
.wp-block-ncb-fancy-list ol ol {
  background-image: none;
  background-color: #fff;
  background-position: 13px 20px;
  counter-reset: item-counter;
  position: relative;
  width: 106.4%;
  height: 100%;
  display: inline-block;
  padding-top: 25px;
  padding-left: 40px;
  margin: 3% 0 -3.3% -3.2%;
}
.wp-block-ncb-fancy-list ol ol li {
  counter-increment: item-counter;
  margin-bottom: 25px;
  display: block;
  position: relative;
  background-color: #F0F4FB;
  width: 90%;
  padding: 3%;
  color: #015172;
  font-weight: normal;
}
.wp-block-ncb-fancy-list ol ol li:last-child {
  margin-bottom: 4px;
}
.wp-block-ncb-fancy-list ol ol li:before {
  margin-right: 20px;
  content: counter(item-counter, lower-roman);
  background: #E4B720;
  color: #015172;
  width: 2.2em;
  text-align: center;
  padding: 6px 0px;
  position: absolute;
  left: -40px;
  top: 0;
  font-weight: 700;
  font-size: 1.3rem;
}
@media (max-width: 576px) {
  .wp-block-ncb-fancy-list ol {
    background-position-x: 13px;
    padding-left: 40px;
  }
  .wp-block-ncb-fancy-list ol li:before {
    width: 2.2em;
    padding: 6px 11px;
    left: -40px;
    font-size: 1.3rem;
  }
  .wp-block-ncb-fancy-list ol li {
    font-size: 1.4rem;
  }
  .wp-block-ncb-fancy-list ol ol li {
    width: 100%;
  }
}
.timeline_module .wrapper {
  background-color: #015172;
  padding: 3%;
  clip-path: polygon(0 0, 97% 0, 100% 50%, 97% 100%, 0 100%);
  margin-bottom: 5%;
  margin-left: 10%;
  margin-right: 10%;
}
.timeline_module p {
  font-size: 2rem;
  color: white;
}
.timeline_module .timeline-mobile {
  clip-path: polygon(0% 0%, 100% 0, 100% 90%, 50% 100%, 0 90%);
}
.timeline_module .rotate-mobile {
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(-270deg);
}
.timeline_module .timeline-mobile p {
  font-size: 2.2rem;
  padding: 6%;
}
@media (max-width: 1000px) {
  .timeline_module .tablet-p {
    margin-left: 50px;
  }
}
@media (max-width: 868px) {
  .timeline_module .timeline-mobile {
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 20px;
  }
}
.video-module {
  padding-bottom: 50%;
}
@media (min-width: 576px) {
  .video-module {
    padding-bottom: 300px;
  }
}
@media (min-width: 768px) {
  .video-module {
    padding-bottom: 280px;
  }
}
@media (min-width: 992px) {
  .video-module {
    padding-bottom: 380px;
  }
}
@media (min-width: 1200px) {
  .video-module {
    padding-bottom: 480px;
  }
}
.video-module .video-text p {
  color: white;
}
.video-module .video-text a {
  color: white;
  text-decoration: underline;
}
.video-module .video-text a:hover {
  color: white;
  text-decoration: none;
}
.video-module .left-offset-item {
  background-color: #015172;
  color: white;
  padding: 2% 5% 3% 3%;
  /*margin-left:15px;*/
}
.video-module .right-offset-item {
  position: absolute;
  top: 88%;
  left: 23%;
}
.video-module .embed-responsive {
  background-color: #015172;
  border: solid 2px #0081C6;
}
@media (max-width: 578px) {
  .video-module .right-offset-item {
    position: absolute;
    top: 88%;
    left: 0%;
  }
}
@media (max-width: 500px) {
  .video-module .right-offset-item {
    position: absolute;
    top: 88%;
    left: 0%;
  }
}
.standard_diagonal_module {
  background: -webkit-gradient(linear, left bottom, left top, from(#e1eaf7), to(#e1eaf7));
  background: linear-gradient(0deg, #e1eaf7, #e1eaf7);
  background-size: 100%;
  padding-bottom: 5%;
  color: #015172;
  margin-bottom: 5%;
}
.standard_diagonal_module p {
  padding-bottom: 0%;
}
.standard_diagonal_module .row {
  padding-top: 15%;
}
.standard_diagonal_module .standard_diagonal_module_wrapper {
  background-color: white;
  padding: 3%;
}
.standard_diagonal_module a {
  text-decoration: underline;
}
.standard_diagonal_module a:hover {
  text-decoration: none;
}
.standard_diagonal_module a:focus {
  text-decoration: none;
}
.standard_diagonal_module .diagonal-bg-block {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-width: 0px;
  border-right-width: 98vw;
  border-top: 100px  solid white;
  position: absolute;
}
.standard_diagonal_module .cta-text a:focus,
.standard_diagonal_module .cta-large-text a:focus {
  color: #015172;
}
@media (max-width: 600px) {
  .center-mobile {
    -ms-flex-pack: center!important;
    -webkit-box-pack: center!important;
            justify-content: center!important;
  }
}
.key_principles_module {
  padding-bottom: 5%;
}
.single_column_text {
  margin-bottom: 3%;
}
.single_column_text ul {
  color: #015172;
}
.single_column_text a {
  text-decoration: underline;
}
.single_column_text a:focus {
  color: #015172;
}
.single_column_text a:hover {
  text-decoration: none;
}
.single_column_text ul {
  color: #015172;
  margin-top: 2%;
  padding-left: 19px;
}
.single_column_text li {
  padding-left: 0px;
  padding-bottom: 10px;
}
.cta-module {
  padding-bottom: 5%;
}
.cta-large-text p {
  font-size: 2rem;
}
.cta-module .cta-text a:focus,
.cta-module .cta-large-text a:focus {
  color: #015172;
}
.case_studies_module {
  /*padding-left: 4%;
  padding-right: 4%;*/
  padding-bottom: 3%;
}
.case_studies_module li {
  padding-bottom: 8px;
}
.case_studies_module .link-wrapper {
  margin-top: 8%;
}
.case_studies_module ul {
  position: absolute;
  display: block;
  bottom: 40px;
  width: 85%;
}
.case_studies_module ul li a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding-bottom: 5px;
}
.case_studies_module ul li a:after {
  content: url(../assets/greater_than_secondary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.case_studies_module ul li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #E4B720;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.case_studies_module ul li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.case_studies_module .main-title {
  color: white;
  text-align: left;
  margin: 0px;
  font-size: 2.15rem;
  line-height: 28px;
  font-weight: 700;
}
.case_studies_module p {
  color: white;
  text-align: left;
  margin: 0px;
  font-size: 2.15rem;
  line-height: 28px;
  font-weight: 700;
}
.case_studies_module p.small-title {
  color: #E4B720;
  text-align: left;
  margin: 0px;
  font-size: 1.25rem;
  font-weight: normal;
}
.case_studies_module .card-img-border-bottom {
  border-bottom: 5px white solid;
}
.case_studies_module .card-bottom-panel {
  background-color: #E4B720;
  text-align: center;
  padding: 10px;
}
.case_studies_module .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #F0F4FB;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
  margin-bottom: 20px;
}
.case_studies_module .card-body {
  min-height: 215px;
  padding: 1.75rem;
  background-color: #015172;
}
.case_studies_module .card-img {
  height: 50px;
  width: 50px;
  osition: absolute;
  right: 20px;
  top: 22px;
}
.case_studies_module .greater-than:after {
  content: url(../assets/greater_than_tertiary.svg);
}
.case_studies_module .link a:after {
  content: url(../assets/greater_than_tertiary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.case_studies_module .link a {
  position: relative;
  color: #015172 !important;
  text-decoration: none;
  font-size: 1.3rem;
}
.case_studies_module .link a:hover {
  color: #015172 !important;
  font-weight: 700;
  font-size: 1.3rem;
}
/* Animate the line from the right */
.case_studies_module .link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #015172;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.case_studies_module .link a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.table_module table thead th {
  vertical-align: top;
  border: 1px solid white;
}
.table_module .table-left-title {
  font-size: 1.3rem;
}
.table_module ul {
  font-size: 1.3rem;
}
.table_module p {
  font-size: 1.3rem;
}
.case_studies_module #fade-container {
  max-width: 100%;
  margin: auto;
  position: relative;
}
div#fade-content {
  max-height: 660px;
  overflow: hidden;
}
div#fade-content.full {
  max-height: none;
}
.case_studies_module .fade-anchor {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 0px, #ffff 200px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 356px;
  padding-top: 220px;
  position: absolute;
  top: 308px;
  right: 0;
  left: 0;
  text-align: center;
  -webkit-transition: background 150ms ease-in;
  transition: background 150ms ease-in;
}
.case_studies_module .fade-readmore img {
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.case_studies_module .fade-readmore img:hover {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(-180deg);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.news_cards_module {
  padding-bottom: 3%;
}
.news_cards_module .card-news-hero {
  background-color: #015172;
  padding: 16px 15px 33px 15px;
  height: 100%;
}
.news_cards_module .card-news-hero .card-news-hero-bg {
  margin-left: 15px;
  margin-right: 15px;
}
.news_cards_module .card-news-hero .card-news-hero-bg {
  min-height: 310px;
  top: 0;
  right: 0;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}
.news_cards_module .card-news-hero p:nth-child(3) {
  font-weight: normal;
  padding-top: 8%;
  font-size: 1.45rem;
}
.news_cards_module p {
  color: white;
  text-align: left;
  margin: 0px;
  font-size: 1.65rem;
  font-weight: 700;
}
.news_cards_module h3 {
  color: white;
  font-weight: 700;
}
.news_cards_module p.date-stamp {
  color: #E4B720;
  text-align: left;
  margin: 0px;
  font-size: 1.25rem;
  font-weight: normal;
}
.news_cards_module .card-img-border-bottom {
  border-bottom: 5px white solid;
}
.news_cards_module .card-img-border-bottom img {
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_cards_module .card-bottom-panel {
  background-color: #E4B720;
  text-align: center;
  padding: 10px;
}
.news_cards_module ul li a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding-bottom: 5px;
}
.news_cards_module ul li a:after {
  content: url(../assets/greater_than_secondary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.news_cards_module ul li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #E4B720;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.news_cards_module ul li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.news_cards_module .row > div {
  margin-bottom: 20px;
}
.calender-date {
  background-color: #015172;
  height: 60px;
  width: 60px;
  position: absolute;
  right: 0px;
  text-align: center;
  font-size: 1.58rem !important;
  line-height: 17px !important;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.news_cards_module .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #F0F4FB;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
  /*margin-top: 20px;*/
  height: 100%;
}
.news_cards_module .card-body {
  min-height: 125px;
  padding: 1.75rem;
  background-color: #015172;
}
.news_cards_module .card-img {
  height: 50px;
  width: 50px;
  osition: absolute;
  right: 20px;
  top: 22px;
}
.news_cards_module .link-wrapper {
  margin-top: 55%;
}
.news_cards_module .greater-than:after {
  content: url(../assets/greater_than_tertiary.svg);
}
.news_cards_module .link a:after {
  content: url(../assets/greater_than_tertiary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.news_cards_module .link a {
  position: relative;
  color: #015172 !important;
  text-decoration: none;
  font-size: 1.3rem;
}
.news_cards_module .link a:hover {
  color: #015172 !important;
  font-weight: 700;
  font-size: 1.3rem;
}
/* Animate the line from the right */
.news_cards_module .link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #015172;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.news_cards_module .link a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.news_cards_module .link span.greater-than {
  font-size: 18px;
  position: relative;
  top: 2px;
}
.news_cards_module #fade-container {
  max-width: 100%;
  margin: auto;
  position: relative;
}
div#fade-content {
  max-height: 1000px;
  overflow: hidden;
}
div#fade-content.full {
  max-height: none;
}
.news_cards_module .fade-anchor {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 0px, #ffff 200px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 356px;
  padding-top: 220px;
  position: absolute;
  top: 653px;
  right: 0;
  left: 0;
  text-align: center;
  -webkit-transition: background 150ms ease-in;
  transition: background 150ms ease-in;
}
.news_cards_module .fade-readmore img {
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.news_cards_module .fade-readmore img:hover {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(-180deg);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
@media (min-width: 992px) {
  .news_cards_module .card-news-hero {
    padding: 16px 22px 7px 29px;
  }
  .news_cards_module .card-news-hero .card-news-hero-bg {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1600px) {
  .news_cards_module .card-body {
    min-height: 153px;
    padding: 1.75rem;
    background-color: #015172;
  }
}
@media (max-width: 1180px) {
  .news_cards_module .link-wrapper {
    margin-top: 59%;
  }
  .news_cards_module .card-news-hero p:nth-child(3) {
    font-weight: normal;
    padding-top: 2%;
    font-size: 1.45rem;
  }
  .news_cards_module p.date-stamp {
    padding-top: 5%;
  }
  .news_cards_module .card-news-hero .card-news-hero-bg {
    min-height: 319px;
  }
}
@media (max-width: 1180px) {
  .news_cards_module .link-wrapper {
    margin-top: 10%;
  }
}
.events_cards_module {
  /*padding-left: 4%;
  padding-right: 4%;*/
  /*padding-top:3%;*/
  padding-bottom: 3%;
}
.events_cards_module .card-news-hero {
  background-color: #015172;
  min-height: 290px;
  padding: 30px 25px 28px 34px;
}
.events_cards_module .card-news-hero .card-news-hero-bg {
  min-height: 248px;
  top: 0;
  right: 0;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}
.calender-date {
  background-color: #015172;
  height: 60px;
  width: 60px;
  position: absolute;
  right: 0px;
  text-align: center;
  font-size: 2rem;
  line-height: 22px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secondary-date-color {
  color: #E4B720;
  font-family: network_rail_sans;
  text-transform: uppercase;
}
.default-date-color {
  color: white;
  font-family: network_rail_sans;
  text-transform: uppercase;
}
.events_cards_module p {
  color: #015172;
  text-align: left;
  margin: 0px;
  font-size: 1.25rem;
  font-weight: normal;
}
.events_cards_module h3.event-title {
  color: #015172;
  text-align: left;
  margin: 0px;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 2%;
}
.events_cards_module .card-img-border-bottom {
  border-bottom: 5px white solid;
}
.events_cards_module .card-bottom-panel {
  background-color: #E4B720;
  text-align: center;
  padding: 10px;
}
.events_cards_module ul li a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding-bottom: 5px;
}
.events_cards_module ul li a:after {
  content: url(../assets/greater_than_secondary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.events_cards_module ul li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #E4B720;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.events_cards_module ul li a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.events_cards_module .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #F0F4FB;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
  margin-bottom: 20px;
}
.events_cards_module .card-body {
  min-height: 125px;
  padding: 1.75rem;
  /*background-color:@brand-primary*/
}
.events_cards_module .card-img {
  height: 50px;
  width: 50px;
  osition: absolute;
  right: 20px;
  top: 22px;
}
.events_cards_module .link-wrapper {
  margin-top: 22%;
}
.events_cards_module .greater-than:after {
  content: url(../assets/greater_than_tertiary.svg);
}
.events_cards_module .link a:after {
  content: url(../assets/greater_than_tertiary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.events_cards_module .link a {
  position: relative;
  color: #015172 !important;
  text-decoration: none;
  font-size: 1.3rem;
}
.events_cards_module .link a:hover {
  color: #015172 !important;
  font-weight: 700;
  font-size: 1.3rem;
}
.events_cards_module .link {
  position: absolute;
  bottom: 15px;
}
/* Animate the line from the right */
.events_cards_module .link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #015172;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.events_cards_module .link a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.events_cards_module .link span.greater-than {
  font-size: 18px;
  position: relative;
  top: 2px;
}
.events_cards_module #fade-container {
  max-width: 100%;
  margin: auto;
  position: relative;
}
div#fade-content {
  max-height: 1000px;
  overflow: hidden;
}
div#fade-content.full {
  max-height: none;
}
.events_cards_module .fade-anchor {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 0px, #ffff 200px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 356px;
  padding-top: 220px;
  position: absolute;
  top: 653px;
  right: 0;
  left: 0;
  text-align: center;
  -webkit-transition: background 150ms ease-in;
  transition: background 150ms ease-in;
}
.events_cards_module .fade-readmore img {
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.events_cards_module .fade-readmore img:hover {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(-180deg);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
@media (max-width: 1600px) {
  .events_cards_module .card-body {
    min-height: 153px;
    padding: 1.75rem;
    background-color: #F0F4FB;
  }
}
@media (max-width: 1180px) {
  .events_cards_module .card-news-hero {
    padding: 12px 22px 16px 29px;
  }
  .events_cards_module .card-news-hero p:nth-child(3) {
    font-weight: normal;
    padding-top: 2%;
    font-size: 1.45rem;
  }
  .events_cards_module p.date-stamp {
    padding-top: 5%;
  }
  .events_cards_module .card-news-hero .card-news-hero-bg {
    min-height: 270px;
  }
}
.full_width_text_module .justify-content-center {
  -webkit-box-pack: left!important;
      -ms-flex-pack: left!important;
          justify-content: left!important;
}
.full_width_text_module {
  padding-bottom: 4%;
  color: #015172;
}
.full_width_text_module h3 {
  font-size: 2.1rem;
}
.full_width_text_module ul {
  color: #015172;
  margin-top: 2%;
  padding-left: 19px;
}
.full_width_text_module li {
  /*padding-left: 15px; */
  padding-left: 0px;
  padding-bottom: 10px;
}
.full_width_text_module a {
  text-decoration: underline;
}
.full_width_text_module a:hover {
  text-decoration: none;
}
.full_width_text_module a:focus {
  color: #015172;
}
@media (max-width: 600px) {
  .full_width_text_module {
    padding-top: 5%;
  }
}
.bluebar_module.cv-upload {
  padding-top: 6%;
  padding-bottom: 6%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "network_rail_sans", sans-serif;
}
@media (max-width: 576px) {
  .bluebar_module.cv-upload {
    margin-top: 22%;
  }
}
.cv-upload-intro-row {
  margin-bottom: 5%;
}
@media (min-width: 1200px) {
  .cv-upload-intro-row > div {
    padding: 0 70px;
  }
}
.bluebar_module.cv-upload .cv-upload-title {
  margin-bottom: 8px;
}
.bluebar_module.cv-upload .cv-upload-text p,
.bluebar_module.cv-upload .nf-field-element p {
  font-size: 1.5rem;
}
.nf-form-content.cv-upload-form {
  background-color: #015172 !important;
  padding: 0%;
  max-width: 1000px;
}
.cv-upload .nf-fu-progress {
  display: none;
}
.cv-upload .nf-fu-button-cancel {
  display: none !important;
}
.cv-upload nf-field {
  display: block;
}
.cv-upload nf-field .nf-field-element {
  padding-left: 0;
  padding-right: 0;
}
.cv-upload .nf-error.field-wrap .nf-field-element:after {
  right: 0 !important;
}
@media (min-width: 768px) {
  .cv-upload nf-field:nth-child(1),
  .cv-upload nf-field:nth-child(2),
  .cv-upload nf-field:nth-child(3),
  .cv-upload nf-field:nth-child(4) {
    display: inline-block;
    width: 49.75%;
  }
  .cv-upload nf-field:nth-child(5) {
    display: inline-block;
    width: 99.5%;
  }
  .cv-upload nf-field:nth-child(1) .nf-field-element,
  .cv-upload nf-field:nth-child(3) .nf-field-element {
    padding-left: 0;
    padding-right: 10px;
  }
  .cv-upload nf-field:nth-child(2) .nf-field-element,
  .cv-upload nf-field:nth-child(4) .nf-field-element {
    padding-left: 10px;
    padding-right: 0;
  }
  .cv-upload .nf-after-form-content {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .cv-upload nf-field:nth-child(2) .nf-error .nf-error-msg,
  .cv-upload nf-field:nth-child(4) .nf-error .nf-error-msg {
    margin-left: 10px;
  }
}
.cv-upload-button {
  background-color: #015172 !important;
}
.nf-form-content input[type=button].cv-upload-button,
.nf-form-content input[type=button].cv-upload-button:hover,
.nf-form-content input[type=button].cv-upload-button:focus,
.nf-form-content input[type=button].cv-upload-button:active,
.cv-upload-wrapper .nf-form-content input[type=submit].cv-upload-button,
.cv-upload-wrapper .nf-form-content input[type=submit].cv-upload-button:hover,
.cv-upload-wrapper .nf-form-content input[type=submit].cv-upload-button:focus,
.cv-upload-wrapper .nf-form-content input[type=submit].cv-upload-button:active {
  background-repeat: no-repeat;
  background-image: url(../assets/greater_than_tertiary.svg);
  background-position: 82% 53%;
  padding-left: 30px !important;
  padding-right: 45px !important;
  cursor: pointer;
}
.nf-form-content button.nf-fu-fileinput-button,
.nf-form-content button.nf-fu-fileinput-button:hover,
.nf-form-content button.nf-fu-fileinput-button:focus,
.nf-form-content button.nf-fu-fileinput-button:active {
  height: 50px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  cursor: pointer;
}
nf-field .file_upload-wrap .nf-field-element {
  position: relative;
}
nf-field .file_upload-wrap .nf-field-element .files_uploaded {
  position: absolute;
  left: 166px;
  top: 4px;
}
nf-field .file_upload-wrap .nf-field-element .files_uploaded a.delete {
  display: block;
}
.cv-upload nf-field:last-child .nf-field-container,
.cv-upload nf-field:last-child .nf-field-element p:last-child {
  margin-bottom: 0;
}
.carousel_3 .card-img img {
  max-height: 50px;
}
.carousel-control-next,
.carousel-control-prev {
  opacity: 1!important;
  border: none;
}
.carousel-control-prev-icon {
  background-image: url(../assets/carousel_prev.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
}
.carousel-control-next-icon {
  background-image: url(../assets/carousel_next.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
}
.carousel_3_module {
  background-color: #015172;
  padding-top: 4%;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .carousel_3_module {
    padding-top: 5%;
    padding-bottom: 75px;
  }
}
.carousel_3_module .text p {
  color: white;
}
.carousel_3_module h2 {
  font-size: 25px;
  color: #E4B720;
  font-weight: bold;
}
.carousel_3 h3 {
  margin: 0 0 25px 15px;
}
.carousel_3 h4 {
  padding-right: 15%;
}
.carousel_3 .card {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #F0F4FB;
  background-clip: border-box;
  border: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0rem;
  text-align: left;
  color: #015172;
}
.pull-up {
  position: static !important;
  top: 0 !important;
  margin-top: -60px;
}
.carousel_3 .card-body {
  min-height: 170px;
  padding: 1.75rem;
}
.carousel_3 .card-img {
  height: 50px;
  width: 50px;
  position: absolute;
  right: 20px;
  top: 22px;
}
.carousel_3 .link {
  position: absolute;
  left: 20px;
  bottom: 16px;
}
.carousel_3 h5 {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: left;
  color: #015172;
  width: 60%;
}
.carousel_3 img {
  width: 80%!important;
  padding: 15%;
  margin-left: 20px;
}
.carousel_3 .no-padding {
  padding-left: 0px;
}
.carousel_3 .link a {
  position: relative;
  color: #015172 !important;
  text-decoration: none;
  font-size: 1.3rem;
}
.carousel_3 .link a:after {
  content: url(../assets/greater_than_tertiary.svg);
  position: relative;
  top: 2px;
  left: 3px;
}
.carousel_3 .link a:hover {
  color: #015172 !important;
  font-weight: 700;
  font-size: 1.2rem;
}
/* Animate the line from the right */
.carousel_3 .link a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #015172;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.carousel_3 .link a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.carousel_3 .link span.greater-than {
  font-size: 18px;
  position: relative;
  top: 2px;
}
.carousel_3 .greater-than:after {
  content: url(../assets/greater_than_tertiary.svg);
}
@media (max-width: 980px) {
  .carousel_3 h5 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    color: #015172;
    width: 65%;
  }
}
@media (max-width: 768px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}
.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* display 3 */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next {
    -webkit-transform: translateX(33.333%);
            transform: translateX(33.333%);
  }
  .carousel-inner .carousel-item-left.active,
  .carousel-inner .carousel-item-prev {
    -webkit-transform: translateX(-33.333%);
            transform: translateX(-33.333%);
  }
}
.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#main-slider-3 {
  margin-bottom: 5%;
}
#main-slider-3 .owl-dots {
  display: none;
}
#main-slider-3 .owl-nav {
  pointer-events: none;
  position: absolute;
  width: 98%;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  font-size: 5rem;
}
#main-slider-3 .owl-nav button {
  pointer-events: all;
  width: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url();
}
#main-slider-3 .owl-nav button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#main-slider-3.owl-carousel .owl-nav button.owl-next {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_next.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  right: -4%;
}
#main-slider-3.owl-carousel .owl-nav button.owl-prev {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_prev.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  left: 0%;
}
#main-slider-3 .owl-nav button span {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#main-slider-3.owl-carousel .card-width {
  width: 350px;
  margin: auto;
}
@media (max-width: 768px) {
  #main-slider-3.owl-carousel .owl-nav button.owl-next {
    left: 0px;
  }
  #main-slider-3.owl-carousel .owl-nav button.owl-prev {
    left: 4%;
  }
  .carousel_3 .no-padding {
    padding-left: 30px;
    padding-right: 30px;
  }
  .carousel_3 h4 {
    padding-right: 0%;
  }
}
@media only screen and (min-width: 200px) and (max-width: 767px) {
  #main-slider-3 .card-width {
    width: 300px!important;
    margin: auto;
  }
}
@media only screen and (min-width: 767px) and (max-width: 900px) {
  #main-slider-3 .card-width {
    width: 320px!important;
    margin: auto;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  #main-slider-3 .card-width {
    width: 280px!important;
    margin: auto;
  }
}
#main-slider-news .owl-dots {
  display: inline-block;
}
#main-slider-news .owl-nav {
  pointer-events: none;
  position: absolute;
  width: 97%;
  top: 110%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 5rem;
}
#main-slider-news .owl-nav button {
  pointer-events: all;
  width: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url();
}
#main-slider-news .owl-nav button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#main-slider-news.owl-carousel .owl-nav button.owl-next {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_next.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  left: 30px;
}
#main-slider-news.owl-carousel .owl-nav button.owl-prev {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_prev.svg);
  width: 40px;
  height: 40px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  left: 10px;
}
#main-slider-news .owl-nav button span {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#main-slider-news .card-width {
  width: 250px;
  margin: auto;
}
#main-slider-news .owl-nav button.owl-next {
  background: 0 0;
  color: inherit;
  padding: 0!important;
  font: inherit;
  background-image: url(../assets/carousel_next.svg);
  width: 50px;
  height: 50px;
  border: none;
  opacity: 1;
  background-repeat: none;
  background-size: cover;
  position: relative;
  right: 43%!important;
  top: 423%!important;
}
#main-slider-news .card {
  background-color: #fff;
}
@media (max-width: 576px) {
  #main-slider-news .owl-nav {
    width: 89%;
  }
  .carousel_3 .card {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #F0F4FB;
    background-clip: border-box;
    border: 0px solid rgba(0, 0, 0, 0.125);
    border-radius: 0rem;
    text-align: center;
    color: #015172;
  }
}
@media only screen and (min-width: 200px) and (max-width: 767px) {
  #main-slider-news .card-width {
    width: 280px!important;
    margin: auto;
  }
}
@media only screen and (min-width: 767px) and (max-width: 900px) {
  #main-slider-news .card-width {
    width: 200px!important;
    margin: auto;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  #main-slider-news .card-width {
    width: 200px!important;
    margin: auto;
  }
}
/* LESS VENDOR */
/*@import "less-vendor/sociablekit.less";*/
/*
--------------------------------------------
Ninja Forms
--------------------------------------------
*/
/* Form 'light' styles */
.form-light-wrapper .nf-form-title h3,
.form-light.nf-form-content .nf-field-label label,
.form-light.nf-form-content .list-radio-wrap .nf-field-element li label,
.form-light.nf-form-content input[type=button],
.form-light.nf-form-content input[type=submit] {
  font-family: 'network_rail_sans', sans-serif;
}
.form-light.nf-form-content textarea.ninja-forms-field,
.form-light.nf-form-content input:not([type=button]),
.form-light.nf-form-content input:not([type=submit]) {
  border: solid 1px #015172;
  background-color: #fff !important;
}
.form-light.nf-form-content nf-fields-wrap nf-field {
  display: inline-block;
  width: 100%;
}
.form-light.nf-form-content nf-field:has(.form-light-half-col) {
  width: 100%;
}
@media (min-width: 576px) {
  .form-light.nf-form-content nf-field:has(.form-light-half-col) {
    width: 50%;
  }
}
.form-light.nf-form-content input[type=button],
.form-light.nf-form-content input[type=submit] {
  padding-left: 30px !important;
  padding-right: 45px !important;
}
.form-light.nf-form-content input[type=button],
.form-light.nf-form-content input[type=button]:hover,
.form-light.nf-form-content input[type=button]:focus,
.form-light.nf-form-content input[type=button]:active,
.form-light.nf-form-content input[type=submit],
.form-light.nf-form-content input[type=submit]:hover,
.form-light.nf-form-content input[type=submit]:focus,
.form-light.nf-form-content input[type=submit]:active {
  background-image: url(../assets/greater_than_tertiary.svg);
  background-repeat: no-repeat;
  background-position: 82% 53%;
}
.form-light.nf-form-content input[type=submit],
.form-light.nf-form-content input[type=submit]:visited {
  background-color: #E4B720 !important;
  color: #015172 !important;
  border: none;
}
.form-light.nf-form-content input[type=submit]:hover,
.form-light.nf-form-content input[type=submit]:active,
.form-light.nf-form-content input[type=submit]:focus {
  background-color: #E1EAF7 !important;
}
.form-light .nf-form-title,
.form-light .nf-field-label label,
.form-light .nf-field-element p {
  color: #015172;
}
.form-light-wrapper .nf-form-title,
.form-light .nf-field-label label,
.form-light .nf-field-element label,
.form-light .nf-field-element p,
.form-light-wrapper .nf-response-msg p {
  color: #015172 !important;
}
.form-light .nf-error .nf-error-msg,
.form-light-wrapper .nf-error-field-errors {
  color: #cc0000 !important;
  font-size: 1.6rem;
}
.form-light .nf-field-container {
  margin-bottom: 5rem;
}
.form-light .nf-field-container.nf-field-no-margin {
  margin-bottom: 0;
}
.post-password-form {
  max-width: 1400px;
  margin: 100px auto;
  text-align: center;
}
/* Feedback form  */
#nf-form-6-cont .nf-form-content .nf-field-label {
  font-size: 18px;
  line-height: 20px;
  font-family: 'network_rail_sans', sans-serif;
}
