/*!************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/nexer-digital/styles/index.scss ***!
  \************************************************************************************************************************************************************************/
@charset "UTF-8";
/*

ITCSS

Settings – used with preprocessors and contain font, colors definitions, etc.
Tools – globally used mixins and functions. It’s important not to output any CSS in the first 2 layers.
Generic – reset and/or normalize styles, box-sizing definition, etc. This is the first layer which generates actual CSS.
Elements – styling for bare HTML elements (like H1, A, etc.). These come with default styling from the browser so we can redefine them here.
Objects – class-based selectors which define undecorated design patterns, for example media object known from OOCSS
Components – specific UI components. This is where majority of our work takes place and our UI components are often composed of Objects and Components
Utilities – utilities and helper classes with ability to override anything which goes before in the triangle, eg. hide helper class

*/
/* http://sass-variable-generator.webknit.co.uk/ */
/* Colours */
/*$col-monzo: #e32112; */
/*$col-sunburst: #ffcd32; */
/* Element colours */
/* Section */
/* BUTTONS */
/* Darker buttons default */
/* Components */
/* NAV */
/* HEADER */
/* HERO/HEX */
/* SECTIONS */
/* GET IN TOUCH */
/* FOOTER */
/* Form */
/* OVERLAP */
/* ARTICLE */
/* BLOCKQUOTE */
/* CASE STUDY */
/* RELATED */
/* Font Sizes */
/* These are now redundant as going off the HTML font-size */
/* Font Stack */
/* Font Weights */
/* Navigation */
/* Gutter */
/* Flex gap is 50% less than grid */
/* Pulling items out of container */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* html, body {
	overflow-x: hidden;
} */
html {
  font-size: 1rem;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media only screen and (min-width: 73.125em) {
  html {
    font-size: 1.3125rem;
  }
}

body {
  color: #000;
  font-family: "fkgrotesk-regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.4;
  /* &.overlay {
   	@include breakpoint($breakpoint-nav) {
   		position: fixed;
   	}

   	&:before {
   		background-color: rgba(0,54,78,0.8);
   		content: "";
   		height: 100%;
   		position: fixed;
   		width: 100%;
   		z-index: 5;
   	}

   	&--mobile-nav-only {
   		@include breakpoint($breakpoint-nav) {
   			position: static;
   		}

   		&:before {
   			@include breakpoint($breakpoint-nav) {
   				display: none;
   			}
   		}
   	}
   } */
}

#main {
  overflow: hidden;
}

/* Font Families */
@font-face {
  font-family: "fkgrotesk-regular";
  src: url(../fonts/FKGrotesk-Regular.woff2) format("woff2"), url(../fonts/FKGrotesk-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "fkgrotesk-bold";
  src: url(../fonts/FKGrotesk-Bold.woff2) format("woff2"), url(../fonts/FKGrotesk-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "bwgradual-bold";
  src: url(../fonts/BwGradual-Bold.woff2) format("woff2"), url(../fonts/BwGradual-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "bwgradual-regular";
  src: url(../fonts/BwGradual-Regular.woff2) format("woff2"), url(../fonts/BwGradual-Regular.woff) format("woff");
  font-display: swap;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
}

img, object, embed {
  height: auto;
  max-width: 100%;
}

/* Hexagon reference for creating hexagon shapes */
.hex-def {
  position: absolute;
  width: 0;
  height: 0;
}

.hex-full {
  background: red;
  -webkit-clip-path: url(#clipping);
          clip-path: url(#clipping);
  width: 100vw;
}

.e-blockquote {
  position: relative;
  /* Has to be styled differently as things are pulled upwards */
}
.e-blockquote--inline {
  margin-bottom: 0;
  padding: 0;
}
.c-article-large-list .e-blockquote {
  padding-top: 0;
}
@media only screen and (min-width: 50em) {
  .c-article-large-list .e-blockquote {
    padding: 0 0 8rem;
  }
}
.e-blockquote__content {
  border-left: 4px solid #bfccd3;
  padding-left: 20px;
}
@media only screen and (min-width: 50em) {
  .e-blockquote__content {
    padding-left: 50px;
  }
}
.e-blockquote__content:before {
  background-image: url(../img/blockquote.svg);
  background-size: cover;
  content: "";
  display: block;
  height: 24px;
  left: 0;
  margin-left: -40px;
  position: absolute;
  width: 30px;
}
@media only screen and (min-width: 50em) {
  .e-blockquote__content:before {
    height: 48px;
    margin-left: -100px;
    width: 59px;
  }
}
.e-blockquote--inline .e-blockquote__content {
  border-left: 0;
  padding: 0;
}
.e-blockquote--inline .e-blockquote__content:before {
  display: none;
}
.e-blockquote__text {
  font-style: italic;
}
@media only screen and (min-width: 73.125em) {
  .e-blockquote__text {
    font-size: 1.333rem;
  }
}
.e-blockquote__info {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  margin-top: 0;
}
.e-blockquote__info picture {
  flex-shrink: 0;
}
.e-blockquote__avatar {
  align-self: center;
  border-radius: 50%;
  flex-basis: auto;
  margin-right: 1rem;
  width: 50px;
}
.e-blockquote__author {
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
}

button {
  cursor: pointer;
}
button:hover {
  cursor: pointer;
}

.btn {
  display: inline-block;
  background-color: #c8dce9;
  color: #1a0878;
  padding: 0.7rem 1rem;
  text-decoration: none;
  line-height: 1.2;
  font-weight: bold;
}

.e-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-attachment: transparent;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "fkgrotesk-bold";
  font-size: inherit;
  margin: 1rem 0;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition: box-shadow 0.15s ease-in-out;
  width: auto;
  /* Styles for buttons within different colour sections */
  /* All in one place */
}
.e-btn:visited, .e-btn:hover, .e-btn:active, .e-btn:focus {
  cursor: pointer;
}
.e-btn[type=submit] {
  clear: both;
  margin-top: 3rem;
}
.e-btn:before {
  background-color: #c8dce9;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.e-btn:hover, .e-btn:focus, .e-btn:active {
  color: #fff;
  text-decoration: none;
}
.e-btn:hover .e-btn__text, .e-btn:focus .e-btn__text {
  transform: translate(12px, -12px);
}
.e-btn__text {
  background-color: #db2800;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 1rem;
  position: relative;
  transform: translate(4px, -4px);
  transition: transform 0.15s ease-in-out;
  z-index: 1;
}
.e-btn--external .e-btn__text, .e-btn--arrow .e-btn__text {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.e-btn--external .e-btn__text:after, .e-btn--arrow .e-btn__text:after {
  content: "";
  display: block;
  margin-left: 1rem;
  position: relative;
}
.e-btn--external .e-btn__text:after {
  background-image: url(../img/link-external.svg);
  background-size: cover;
  height: 18px;
  top: -1px;
  width: 20px;
}
.e-btn--arrow .e-btn__text:after {
  background-image: url(../img/icon-arrow-right.svg);
  height: 17px;
  width: 24px;
}
.e-btn:active {
  opacity: 0.9;
}

.c-btn-full-width {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.c-btn-full-width {
  text-align: center;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit] {
  border-radius: 0;
}

.e-input,
.e-textarea,
.e-select,
input,
textarea {
  background: #fff;
  border: 2px solid #bfccd3;
  border-radius: 0;
  color: #000;
  display: block;
  font-family: "fkgrotesk-regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  line-height: 1;
  margin: 0 0 1rem;
  padding: 0.5rem;
  width: 100%;
}
@media only screen and (min-width: 73.125em) {
  .e-input,
  .e-textarea,
  .e-select,
  input,
  textarea {
    margin: 0 0 2rem;
  }
}
.e-input--error,
.e-textarea--error,
.e-select--error,
input--error,
textarea--error {
  border-bottom: 5px solid red;
}

.e-input--submit, input--submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #000;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  width: 150px;
  /* IE11 not liking width, auto */
}
.e-input--submit:hover, input--submit:hover {
  background: #5fd5d8;
}
@supports (grid-area: auto) {
  .e-input--submit, input--submit {
    width: auto;
  }
}
.e-input[type=checkbox], .e-input--checkbox, input[type=checkbox], input--checkbox {
  display: inline-block;
  margin: 0 0.5rem 0 0;
  width: auto;
  position: absolute;
  left: -9999px;
}
.e-input[type=checkbox] ~ label, .e-input--checkbox ~ label, input[type=checkbox] ~ label, input--checkbox ~ label {
  padding-left: 40px;
  position: relative;
}
.e-input[type=checkbox] ~ label:before, .e-input--checkbox ~ label:before, input[type=checkbox] ~ label:before, input--checkbox ~ label:before {
  border: 2px solid #7B98A3;
  content: "";
  display: inline-block;
  height: 32px;
  left: 0;
  position: absolute;
  width: 32px;
}
.e-input[type=checkbox] ~ label:after, .e-input--checkbox ~ label:after, input[type=checkbox] ~ label:after, input--checkbox ~ label:after {
  content: "";
  position: absolute;
  display: none;
}
.e-input[type=checkbox]:checked ~ label:after, .e-input--checkbox:checked ~ label:after, input[type=checkbox]:checked ~ label:after, input--checkbox:checked ~ label:after {
  display: block;
}
.e-input[type=checkbox]:focus ~ label:before, .e-input--checkbox:focus ~ label:before, input[type=checkbox]:focus ~ label:before, input--checkbox:focus ~ label:before {
  outline: auto;
  outline: -webkit-focus-ring-color auto 5px;
}
.e-input[type=checkbox] ~ label:after, .e-input--checkbox ~ label:after, input[type=checkbox] ~ label:after, input--checkbox ~ label:after {
  border: solid #000;
  border-width: 0 3px 3px 0;
  height: 14px;
  left: 12px;
  top: 7px;
  transform: rotate(45deg);
  width: 8px;
}
.e-input[type=radio], .e-input--radio, input[type=radio], input--radio {
  display: inline-block;
  margin: 0 0.5rem 0 0;
  width: auto;
  position: absolute;
  left: -9999px;
}
.e-input[type=radio] ~ label, .e-input--radio ~ label, input[type=radio] ~ label, input--radio ~ label {
  padding-left: 40px;
  position: relative;
}
.e-input[type=radio] ~ label:before, .e-input[type=radio] ~ label:after, .e-input--radio ~ label:before, .e-input--radio ~ label:after, input[type=radio] ~ label:before, input[type=radio] ~ label:after, input--radio ~ label:before, input--radio ~ label:after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
}
.e-input[type=radio] ~ label:before, .e-input--radio ~ label:before, input[type=radio] ~ label:before, input--radio ~ label:before {
  border: 2px solid #7B98A3;
  content: "";
  display: inline-block;
  height: 32px;
  left: 0;
  position: absolute;
  width: 32px;
}
.e-input[type=radio] ~ label:after, .e-input--radio ~ label:after, input[type=radio] ~ label:after, input--radio ~ label:after {
  background: #7B98A3;
  height: 22px;
  left: 5px;
  top: 5px;
  width: 22px;
}
.e-input[type=radio] ~ label:after, .e-input--radio ~ label:after, input[type=radio] ~ label:after, input--radio ~ label:after {
  content: "";
  position: absolute;
  display: none;
}
.e-input[type=radio]:checked ~ label:after, .e-input--radio:checked ~ label:after, input[type=radio]:checked ~ label:after, input--radio:checked ~ label:after {
  display: block;
}
.e-input[type=radio]:focus ~ label:before, .e-input--radio:focus ~ label:before, input[type=radio]:focus ~ label:before, input--radio:focus ~ label:before {
  outline: auto;
  outline: -webkit-focus-ring-color auto 5px;
}

.e-label, label {
  display: inline-block;
  margin-bottom: 0.2rem;
}

textarea {
  min-height: 200px;
}

textarea + .field-validation-error, input + .field-validation-error {
  position: relative;
  top: -1rem;
}
@media only screen and (min-width: 73.125em) {
  textarea + .field-validation-error, input + .field-validation-error {
    top: -1.5rem;
  }
}

.field-validation-error {
  display: block;
  color: red;
}

.form-group {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 73.125em) {
  .form-group {
    margin-bottom: 2rem;
  }
}
.form-group--radio .umbraco-forms-field-wrapper {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.e-h1,
.e-h2,
.e-h3,
.e-h4,
.e-h5,
.e-h6 {
  color: #1a0878;
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0 0 1rem;
  line-height: 1.2;
}

.e-subheader {
  font-family: "bwgradual-bold";
}

h1,
.e-h1 {
  font-size: 2rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 50em) {
  h1,
  .e-h1 {
    font-size: 2.5rem;
  }
}

h2,
.e-h2 {
  font-size: 1.625rem;
  line-height: 1.2;
}
@media only screen and (min-width: 73.125em) {
  h2,
  .e-h2 {
    font-size: 2rem;
  }
}

h3,
.e-h3 {
  font-size: 1.375rem;
}
@media only screen and (min-width: 73.125em) {
  h3,
  .e-h3 {
    font-size: 1.6rem;
  }
}

h4,
.e-h4 {
  font-family: "fkgrotesk-regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1.125rem;
}
@media only screen and (min-width: 73.125em) {
  h4,
  .e-h4 {
    font-size: 1.4rem;
  }
}

h5,
.e-h5 {
  font-size: 1rem;
}
@media only screen and (min-width: 73.125em) {
  h5,
  .e-h5 {
    font-size: 0.9rem;
  }
}

h6,
.e-h6 {
  font-size: 0.875rem;
}
@media only screen and (min-width: 73.125em) {
  h6,
  .e-h6 {
    font-size: 0.7rem;
  }
}

a, .e-a {
  cursor: pointer;
  color: #5a1f9f;
  text-decoration: underline;
  /* List of elements that don't need default hover style */
}
a:hover, .e-a:hover {
  cursor: pointer;
}
a:not(.e-no-bg-hover):not(.e-btn):not(.c-nav__a):not(.c-clients__a):not(.c-footer__icons-a):focus, a:not(.e-no-bg-hover):not(.e-btn):not(.c-nav__a):not(.c-clients__a):not(.c-footer__icons-a):hover, .e-a:not(.e-no-bg-hover):not(.e-btn):not(.c-nav__a):not(.c-clients__a):not(.c-footer__icons-a):focus, .e-a:not(.e-no-bg-hover):not(.e-btn):not(.c-nav__a):not(.c-clients__a):not(.c-footer__icons-a):hover {
  background-color: #5a1f9f;
  color: #fff;
}
p a:focus, p a:hover, li a:focus, li a:hover, h1 a:focus, h1 a:hover, h2 a:focus, h2 a:hover, h3 a:focus, h3 a:hover, h4 a:focus, h4 a:hover, a.c-cs-nav__back:focus, a.c-cs-nav__back:hover, p .e-a:focus, p .e-a:hover, li .e-a:focus, li .e-a:hover, h1 .e-a:focus, h1 .e-a:hover, h2 .e-a:focus, h2 .e-a:hover, h3 .e-a:focus, h3 .e-a:hover, h4 .e-a:focus, h4 .e-a:hover, .e-a.c-cs-nav__back:focus, .e-a.c-cs-nav__back:hover {
  background-color: #5a1f9f;
  color: #fff;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.e-h1 a, .e-h2 a, .e-h3 a, .e-h4 a, .e-h5 a, .e-h6 a {
  color: #1a0878;
}

ul li {
  list-style: none;
}

ol li {
  list-style: none;
}

.sitemap ul {
  padding: 1rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  overflow: auto;
}
table.wide {
  transform: translateX(-4em);
  width: 130%;
  display: block;
  overflow-x: auto;
}
@media only screen and (min-width: 50em) {
  table.wide {
    transform: translateX(-10em);
    width: 165%;
    display: table;
  }
}

td, th {
  width: auto !important;
}

td, th {
  padding: 0;
}

table td, table th {
  padding: 10px;
  border: 1px solid #1a0878;
}

table th {
  color: #fff;
  background-color: #000;
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

small {
  font-size: 0.85rem;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

/* Base grid is 50/50 cols as that's the most common layout */
/* o-grid > .o-grid__col */
.grid div {
  background: red;
  height: 20px;
  flex: 1 1 0;
  height: 50px;
  margin: 1.5rem;
}

.test {
  background: red;
  height: 20px;
  height: 50px;
}

.o-grid {
  /* Standard grid is a row that doesn't wrap */
  /* It will give equal widths to its children */
  /* <grid><div><div><div></grid> */
  /* a Grid elements that need to wrap - eg a list of articles */
  /* They're 1 col grids by default */
  /* <grid> */
  /* <div><div> */
  /* <div><div> */
  /* <div><div> */
  /* </grid> */
  /* a Grid elements that need to wrap - eg a list of staff */
  /* 4 cols cross by default */
  /* <grid> */
  /* <div><div><div><div> */
  /* <div><div><div><div> */
  /* <div><div><div><div> */
  /* </grid> */
  /* Align things horizontally */
  /* IE11 fallback with flex */
}
@media only screen and (min-width: 650px) {
  .o-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  @supports (grid-area: auto) {
    .o-grid {
      display: grid;
      grid-gap: 3rem;
      grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }
  }
}
@media only screen and (min-width: 650px) {
  .o-grid--wrap {
    flex-wrap: wrap;
  }
  @supports (grid-area: auto) {
    .o-grid--wrap {
      grid-template-columns: 1fr 1fr;
    }
  }
}
@media only screen and (min-width: 320px) {
  .o-grid--list {
    flex-wrap: wrap;
  }
  @supports (grid-area: auto) {
    .o-grid--list {
      display: grid;
      grid-gap: 1.5rem;
      grid-template-columns: repeat(2, 1fr);
    }
  }
}
@media only screen and (min-width: 650px) {
  @supports (grid-area: auto) {
    .o-grid--list {
      grid-gap: 3rem;
      grid-template-columns: repeat(4, 1fr);
    }
  }
}
.o-grid--staff {
  flex-wrap: wrap;
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 400px) {
  @supports (grid-area: auto) {
    .o-grid--staff {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}
@media only screen and (min-width: 650px) {
  @supports (grid-area: auto) {
    .o-grid--staff {
      grid-gap: 3rem;
      grid-template-columns: repeat(4, 1fr);
    }
  }
}
@media only screen and (min-width: 650px) {
  .o-grid--switch {
    flex-direction: row-reverse;
  }
  @supports (grid-area: auto) {
    .o-grid--switch {
      grid-template-columns: 1fr 1fr;
    }
  }
}
@media only screen and (min-width: 650px) {
  @supports (grid-area: auto) {
    .o-grid--align {
      align-items: center;
    }
  }
}
.o-grid__col {
  /* Switch cols, currently only works with 2 */
  /* Don't pull the heading if in a grid col */
}
.o-grid--list.c-staff .o-grid__col {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 320px) {
  .o-grid--list.c-staff .o-grid__col {
    margin-bottom: 0;
  }
}
.o-grid__col .field-validation-error {
  color: black;
}
.o-grid__col:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 650px) {
  .o-grid__col {
    flex: 1 1 0;
    margin: 0 1.5rem;
  }
  .o-grid__col:first-child {
    margin-left: 0;
  }
  .o-grid__col:last-child {
    margin-right: 0;
  }
  @supports (grid-area: auto) {
    .o-grid__col {
      margin: 0;
    }
  }
}
@media only screen and (min-width: 650px) {
  .o-grid--wrap .o-grid__col {
    flex: auto;
    margin: 0 6% 3rem 0;
    width: 47%;
  }
  .o-grid--wrap .o-grid__col:nth-child(2n) {
    margin-right: 0;
  }
  @supports (grid-area: auto) {
    .o-grid--wrap .o-grid__col {
      margin: 0;
      width: 100%;
    }
  }
}
@media only screen and (min-width: 400px) {
  .o-grid--list .o-grid__col {
    margin: 0;
  }
}
@media only screen and (min-width: 650px) {
  .o-grid--list .o-grid__col {
    flex: 0 auto;
    flex-wrap: wrap;
    margin: 0 4% 3rem 0;
    width: 21%;
  }
  .o-grid--list .o-grid__col:nth-child(4n) {
    margin-right: 0;
  }
  @supports (grid-area: auto) {
    .o-grid--list .o-grid__col {
      margin: 0;
      width: 100%;
    }
  }
}
@media only screen and (min-width: 650px) {
  .o-grid--switch .o-grid__col:nth-child(1) {
    margin: 0 0 3rem 1.5rem;
  }
  @supports (grid-area: auto) {
    .o-grid--switch .o-grid__col:nth-child(1) {
      grid-column: 2;
      margin: 0 0 3rem 0;
    }
  }
}
@media only screen and (min-width: 650px) {
  .o-grid--switch .o-grid__col:nth-child(2) {
    margin: 0 1.5rem 3rem 0;
  }
  @supports (grid-area: auto) {
    .o-grid--switch .o-grid__col:nth-child(2) {
      grid-column: 1;
      grid-row: 1;
      margin: 0 0 3rem 0;
    }
  }
}
@media only screen and (min-width: 73.125em) {
  .o-grid__col--img-pull {
    max-width: 100%;
    position: relative;
    transform: translateX(-5rem);
  }
}
@media only screen and (min-width: 73.125em) {
  .o-grid--switch .o-grid__col--img-pull {
    position: relative;
    transform: translateX(5rem);
  }
}
@media only screen and (min-width: 73.125em) {
  .o-grid__col--img-pull-right, .o-grid__col--img-pull-left {
    max-width: 100%;
    position: relative;
  }
}
@media only screen and (min-width: 73.125em) {
  .o-grid__col--img-pull-right {
    transform: translateX(5rem);
  }
}
@media only screen and (min-width: 73.125em) {
  .o-grid__col--img-pull-left {
    transform: translateX(-5rem);
  }
}
.o-grid__col--card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}
.o-grid__col .c-content__content h2 {
  transform: translateX(0);
}

.o-container {
  margin: 0 auto;
  width: 90%;
}
@media only screen and (min-width: 73.125em) {
  .o-container {
    max-width: 49.905rem;
    margin: 0 auto;
    width: 100%;
  }
}
.o-container--narrow {
  width: 80%;
}
.o-container--narrow .contactform {
  margin-left: -20px;
}
@media only screen and (min-width: 500px) {
  .o-container--narrow {
    width: 70%;
  }
  .o-container--narrow .contactform {
    margin-left: 0;
  }
}
@media only screen and (min-width: 73.125em) {
  .o-container--narrow {
    max-width: 36.381rem;
  }
}

.o-row {
  overflow: hidden;
}

.o-overlap {
  position: relative;
}
@media only screen and (min-width: 50em) {
  .o-overlap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 60px;
  }
}
@media only screen and (min-width: 50em) {
  .o-overlap--reverse {
    flex-direction: row-reverse;
  }
}
.o-overlap__image, .o-overlap__content {
  position: relative;
  width: 100%;
}
.o-overlap__image {
  background-size: cover;
  background-position: center;
  min-height: 300px;
  z-index: 1;
}
@media only screen and (min-width: 50em) {
  .o-overlap__image {
    height: 100%;
    position: absolute;
    right: 0;
    transform: translate(0, -50px);
    width: 60%;
  }
  .o-overlap--reverse .o-overlap__image {
    left: 0;
    right: auto;
  }
}
@media only screen and (min-width: 73.125em) {
  .o-overlap__image {
    transform: translate(0, -50px);
    width: 70%;
  }
}
@media only screen and (min-width: 1250px) {
  .o-overlap__image {
    transform: translate(90px, -50px);
    width: 728px;
  }
  .o-overlap--reverse .o-overlap__image {
    transform: translate(-90px, -50px);
  }
}
.o-overlap__image--foreground {
  padding: 2rem;
}
@media only screen and (min-width: 50em) {
  .o-overlap__image--foreground {
    padding-left: 23%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 1170px) {
  .o-overlap__image--foreground {
    padding-left: 33%;
  }
}
@media only screen and (min-width: 1250px) {
  .o-overlap__image--foreground {
    padding-left: 16%;
  }
}
.o-overlap__content {
  z-index: 2;
}
@media only screen and (min-width: 50em) {
  .o-overlap__content {
    width: 60%;
  }
}
@media only screen and (min-width: 1250px) {
  .o-overlap__content {
    transform: translateX(-40px);
    width: 581px;
  }
  .o-overlap--reverse .o-overlap__content {
    transform: translateX(40px);
  }
}

.o-overlap-more-btn {
  text-align: right;
}
@media only screen and (min-width: 1250px) {
  .o-overlap-more-btn {
    transform: translateX(90px);
  }
}

.c-accordion {
  margin-bottom: 1rem;
}
.c-accordion__item {
  border-top: 1px solid #fff;
}
.c-accordion__head {
  align-items: center;
  background: #000;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0.6rem 1.5rem 0.6rem 1rem;
  position: relative;
  text-align: left;
  width: 100%;
}
.c-accordion__head span {
  height: 18px;
  position: relative;
  width: 18px;
}
.c-accordion__head span:after, .c-accordion__head span:before {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 5px;
  left: 0;
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease-in-out;
  top: 7px;
  width: 18px;
}
.c-accordion__head span:after {
  transform: rotate(-90deg);
}
.c-accordion__head--active span:after {
  transform: rotate(0);
}
.c-accordion__head:hover {
  cursor: pointer;
}
.c-accordion__head:focus {
  z-index: 2;
}
.c-accordion__content {
  border: 1px solid #000;
  display: none;
  padding: 1rem;
}
.c-accordion__content--active {
  display: block;
}
.c-accordion button {
  border: 0;
}

.c-animation-fade {
  opacity: 0;
  transition: visibility 0s 0.15s, opacity 0.15s linear;
  visibility: hidden;
}
.c-animation-fade--active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.15s linear;
}

.c-ani--fade-in {
  /* Only run the animation if supported */
}
.c-ani--fade-in.c-ani--active {
  opacity: 0;
  transition: opacity 1s ease-in;
}
.c-ani--fade-in.c-ani--animate {
  opacity: 1;
}
.c-ani--fade-contents {
  /* Only run the animation if supported */
}
.c-ani--fade-contents.c-ani--active > * {
  opacity: 0;
}
.c-ani--fade-contents.c-ani--animate > * {
  animation: fadeIn 1s ease-in 0s 1 normal forwards;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(1) {
  animation-delay: 0s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(2) {
  animation-delay: 0.5s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(3) {
  animation-delay: 1s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(4) {
  animation-delay: 1.5s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(5) {
  animation-delay: 2s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(6) {
  animation-delay: 2.5s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(7) {
  animation-delay: 3s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(8) {
  animation-delay: 3.5s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(9) {
  animation-delay: 4s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(10) {
  animation-delay: 4.5s;
}
.c-ani--fade-contents.c-ani--animate > *:nth-child(11) {
  animation-delay: 5s;
}
.c-ani--spin-contents {
  /* Only run the animation if supported */
}
.c-ani--spin-contents.c-ani--active > *:before {
  top: 0;
}
.c-ani--spin-contents.c-ani--animate > *:before {
  animation: spin 1s ease-in 0s 1 normal forwards;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(1):before {
  animation-delay: 0s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(2):before {
  animation-delay: 0.5s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(3):before {
  animation-delay: 1s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(4):before {
  animation-delay: 1.5s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(5):before {
  animation-delay: 2s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(6):before {
  animation-delay: 2.5s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(7):before {
  animation-delay: 3s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(8):before {
  animation-delay: 3.5s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(9):before {
  animation-delay: 4s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(10):before {
  animation-delay: 4.5s;
}
.c-ani--spin-contents.c-ani--animate > *:nth-child(11):before {
  animation-delay: 5s;
}

.stopScroll {
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(-40px);
  }
}
@keyframes spin {
  from {
    top: 0;
  }
  to {
    top: -1100%;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
/* Single class to clear the negative translate */
@media only screen and (min-width: 50em) {
  .c-article-title {
    margin-bottom: 5rem;
  }
}

.c-article {
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  position: relative;
  /* &__image,
  &__content {
      .c-article--large & {
          border: 8px solid $col-white;
          border-radius: 8px;
      }
  } */
}
@media only screen and (min-width: 50em) {
  .c-article {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 50em) {
  .c-article-large-list .c-article {
    margin-bottom: 5rem;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-article-large-list .c-article {
    margin-bottom: 4.571rem;
  }
}
.c-article-large-list .c-article:last-of-type {
  margin-bottom: 1rem;
}
.c-article-large-list--no-bottom-m .c-article:last-child {
  margin-bottom: 0;
}
.c-article--grid:after {
  background-color: #bfccd3;
  border-radius: 3px;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 60%;
}
.c-article__logo {
  margin-bottom: 1rem;
  max-width: 150px;
}
.c-article--single .c-article__image {
  margin-bottom: 1rem;
}
.c-article__content {
  display: block;
  padding: 1rem 0;
  position: relative;
  text-decoration: none;
  z-index: 2;
  /* Large articles that are inside a section grey need to have a white bg*/
}
@media only screen and (min-width: 50em) {
  .c-article__content {
    padding: 2rem 0;
  }
}
.c-article--no-padd .c-article__content, .c-article--single .c-article__content {
  padding: 0;
}
.c-article__content .c-article-details__ul {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.c-article__content--overlap {
  background-color: #fff;
  padding: 1rem;
}
@media only screen and (min-width: 50em) {
  .c-article__content--overlap {
    padding: 2rem;
  }
}
.c-section--grey .c-article--large .c-article__content {
  background-color: #fff;
}
.c-article--large .c-article__content {
  transition: transform 0.3s ease-in-out;
}
.c-article__content-cat {
  font-size: 0.8rem;
}
.c-article__title {
  font-size: 1.6195rem;
  line-height: 1.2;
  text-transform: none;
  /* .c-article--large & {
      font-family: $font-stack-header-light;
  } */
}
.c-article--grid .c-article__title {
  margin-top: 0.2rem;
}
.c-article__title a {
  text-decoration: none;
}
.c-article__hover {
  background: #000;
  /* border-radius: 8px; */
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.c-article__tags {
  margin-bottom: 1rem;
}
.c-article--grid .c-article__tags {
  margin-top: 0.5rem;
}
.c-article__tags-li {
  display: inline-block;
  font-size: 0.875rem;
  margin-right: 1rem;
}
@media only screen and (min-width: 73.125em) {
  .c-article__tags-li {
    font-size: 0.6rem;
  }
}
.c-article__tags-li a {
  text-decoration: none;
  text-transform: uppercase;
}
.c-article .c-article-details__person-info {
  padding-top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 50em) {
  .c-article .c-article-details__person-text {
    font-size: 0.85rem;
  }
}
.c-article .c-article-details .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -16px;
}

.c-article-details {
  font-size: 1rem;
  /* justify-content: space-between; */
}
@media only screen and (min-width: 50em) {
  .c-article-details {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }
}
.c-article-details p {
  margin-bottom: 0;
}
.c-article-details__name {
  margin-bottom: 0.5rem;
}
.c-article-details__smaller-text {
  font-size: 0.85rem;
}
.c-article-details__date {
  display: block;
  margin: 1rem 0;
  padding-top: 16px;
}
.c-article-details__li {
  display: inline-block;
}
.c-article-details__info {
  text-align: right;
}
.c-article-details__person-info {
  margin: 1rem 0;
}
@media only screen and (min-width: 50em) {
  .c-article-details__person-info {
    margin: 0 1rem 8px 0;
  }
}
.c-article-details__person-info a:hover, .c-article-details__person-info a:focus {
  background-color: #fecd32;
  color: #000;
}
.c-article-details__person-info .pictures picture {
  width: 50px;
  height: 50px;
}
@media only screen and (min-width: 50em) {
  .c-article-details__person-info .pictures picture {
    width: 80px;
    height: 80px;
  }
}
.c-article-details__avatar {
  align-self: center;
  border-radius: 50%;
  flex-basis: auto;
  margin-right: 1rem;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
}
@media only screen and (min-width: 50em) {
  .c-article-details__avatar {
    width: 80px;
    height: 80px;
  }
}

.c-hero .c-article-details__person-info .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.c-article-tags {
  font-size: 0.8rem;
}
.c-article-tags__li {
  display: inline-block;
  margin-right: 0.5rem;
}

.c-article-nav {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 73.125em) {
  .c-article-nav {
    margin-bottom: 3rem;
  }
}
.c-article-nav__li {
  display: inline-block;
  margin: 0 1rem 1rem 0;
}
@media only screen and (min-width: 50em) {
  .c-article-nav__li {
    margin: 0 1rem 0 0;
  }
}
.c-article-nav__a {
  color: #000;
  position: relative;
  text-decoration: none;
}
.c-article-nav__a--active {
  font-weight: bold;
}
.c-article-nav__a--active:after {
  background-color: #fecd32;
  content: "";
  display: block;
  height: 6px;
  width: 100%;
}
@media only screen and (min-width: 50em) {
  .c-article-nav__a--active:after {
    margin-top: 0.2rem;
  }
}

.c-banner__container {
  position: relative;
}
.c-banner__content {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 50em) {
  .c-banner__content {
    max-width: 500px;
    width: 40%;
  }
}
.c-banner__content-container {
  overflow: hidden;
}
@media only screen and (min-width: 50em) {
  .c-banner__content-container {
    padding: 4rem 0;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-banner__content-container {
    padding: 5.333rem 0;
  }
}
.c-banner__shape {
  margin: 0 auto;
}
.c-banner__shape--polygon {
  background-image: url(../img/large-hex.svg);
  background-size: cover;
  background-position: center;
  bottom: 0;
  position: absolute;
  height: 200%;
  width: 100%;
}
@media only screen and (min-width: 73.125em) {
  .c-banner__shape--polygon {
    bottom: 0;
    height: 1349px;
    left: -45%;
    width: 1200px;
  }
}
.c-banner__head {
  margin-bottom: 2rem;
}
.c-banner__head:after {
  background-color: #000;
  content: "";
  display: block;
  height: 5px;
  margin-top: 0.5rem;
  max-width: 120px;
}
.c-c-digital {
  background-color: #1a0878;
  background-size: 100% auto;
  background-position: bottom;
  /* Adding padding for hex that overlaps sections */
}
@media only screen and (min-width: 73.125em) {
  .c-c-digital {
    /*margin: 2.286rem 0 1.524rem; */
  }
}
@media only screen and (min-width: 73.125em) {
  .c-c-digital + .c-section {
    padding-top: 5rem;
  }
}
.c-c-digital__img {
  display: block;
  margin: 0 auto;
  max-width: 350px;
}
@media only screen and (min-width: 650px) {
  .c-c-digital__img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-c-digital__img {
    width: 50%;
  }
  @supports (grid-area: auto) {
    .c-c-digital__img {
      height: 600px;
      max-width: 100%;
      position: absolute;
      top: 50%;
      transform: translate(80%, -50%);
      z-index: 1;
      width: auto;
    }
  }
}
@media only screen and (min-width: 73.125em) {
  .c-c-digital .o-grid__col {
    max-width: 50%;
  }
}

.c-cs__requirements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c-cs__requirements-item {
  align-items: center;
  background-image: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
  list-style: none;
  width: 100%;
}
.c-cs__requirements-item:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 50em) {
  .c-cs__requirements-item {
    align-items: center;
    margin-top: 0;
    text-align: left;
    width: 30%;
  }
}
.c-cs__requirements-text {
  margin: 0 0 0 1rem;
  /* Having to add higher specificity as inheriting the default p styles within the content */
}
.c-content__content .c-cs__requirements-text {
  margin: 0 0 0 1rem;
}
.c-cs__requirements-icon {
  width: 50px;
}
.c-cs__key {
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
}
@media only screen and (min-width: 500px) {
  .c-cs__key {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }
}
.c-cs__key-stats {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  justify-content: space-evenly;
  width: 100%;
}
.c-cs__key-item {
  background-image: none;
  margin: 2rem 0 0;
  list-style: none;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 500px) {
  .c-cs__key-item {
    margin: 2rem 1% 0;
    width: 48%;
  }
}
@media only screen and (min-width: 50em) {
  .c-cs__key-item {
    margin: 2rem 3% 0;
    width: 26%;
  }
}
.c-cs__key-percent {
  color: #28c7c9;
  font-size: 3rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) {
  .c-cs__key-percent {
    font-size: 4.5rem;
  }
}
.c-cs__key-text {
  margin-bottom: 0;
}
.c-cs__key-icon {
  height: 70px;
  margin-right: 1rem;
}
@media only screen and (min-width: 1400px) {
  .c-cs__key-icon {
    height: 100px;
  }
}

.c-cs-nav {
  background-color: transparent;
  font-size: 1rem;
  padding: 1rem 0;
  position: absolute;
  width: 100%;
  z-index: 9;
}
@media only screen and (min-width: 73.125em) {
  .c-cs-nav {
    font-size: 0.762em;
  }
}
.c-cs-nav__back {
  background: url(../img/icon-arrow-back-white.svg) no-repeat left center;
  background-size: 18px 11px;
  color: #000;
  padding-left: 22px;
}
.c-cs-nav__back:focus, .c-cs-nav__back:hover {
  background-image: url(../img/icon-arrow-back.svg);
  color: #000;
}
.c-cs-nav__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.c-cs-nav__ul--desktop-only {
  display: none;
}
@media only screen and (min-width: 73.125em) {
  .c-cs-nav__ul--desktop-only {
    display: inline-block;
  }
}
.c-cs-nav__li {
  display: inline-block;
}
@media only screen and (min-width: 73.125em) {
  .c-cs-nav__li {
    margin-left: 0.381rem;
  }
}
.c-cs-nav__li a {
  color: #fff;
}
.c-cs-nav__li a:hover, .c-cs-nav__li a:focus {
  color: #fff;
  text-decoration: underline;
}
.c-cs-nav__text {
  display: inline-block;
  margin-bottom: 0;
}

/* .c-cs-head {
     overflow: hidden;
     position: relative;

     &__hex {
         background-image: url('../img/hex-full-straight-prussian.svg');
         background-size: 2000%;
         background-position: center bottom;
         background-repeat: no-repeat;
         padding: 2rem 1rem;
         position: relative;
         z-index: 3;

         @include breakpoint(medium) {
             background-position: center bottom;
             background-size: 150%;
             padding: 3rem;
         }

         @include breakpoint(large) {
             background-size: 150%;
         }

         &--sunburst,
         &--scooter {
             .c-cs-head__title, .c-cs-head__text, p {
                 color: $col-base !important;
             }

             .c-underline:after {
                 background-color: $col-white;
             }
         }

         &--prussian {
             background-image: url('../img/hex-full-straight-prussian.svg');
         }

         &--sunburst {
             background-image: url('../img/hex-full-straight-sunburst.svg');
         }

         &--monzo {
             background-image: url('../img/hex-full-straight-monzo.svg');
         }

         &--scooter {
             background-image: url('../img/hex-full-straight-scooter.svg');
         }
     }

     &__title {
         line-height: 1.2;
         margin-bottom: 2rem;

         @include breakpoint(large) {
             font-size: 2.952rem;
             margin-bottom: 2.286rem;
         }
     }

     &__img {
         background-size: cover;
         height: 200px;
         width: 100%;
         z-index: 1;

         @include  breakpoint(medium) {
             height: 500px;
             margin-top: -300px;
         }

         @include breakpoint(large) {
             height: 1000px;
             margin-top: -500px;
         }
     }

     &__details {
         margin-top: 2rem;
         text-align: center;

         @include breakpoint(medium) {
             align-items: center;
             display: flex;
             justify-content: space-between;
             text-align: left;
         }
     }

     &__logo {
         margin-bottom: 1rem;
         max-width: 45%;
     }

     &__info  {
         span {
             font-family: $font-stack-header;
             font-size: 1rem;
             text-transform: uppercase;
         }

         p {
             margin-bottom: 0;
         }
     }
 } */
.c-clients {
  background-color: #f2f2f2;
  margin-bottom: 2rem;
}
.c-clients__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-clients__item {
  margin: 0.5rem 0;
  width: 45%;
}
@media only screen and (min-width: 500px) {
  .c-clients__item {
    width: 30%;
  }
}
@media only screen and (min-width: 50em) {
  .c-clients__item {
    width: 23%;
  }
}

.c-contact-block {
  background-repeat: no-repeat;
  background-size: 126%;
  background-position: right bottom;
}
.c-contact-block .field-validation-error {
  color: black;
  display: block;
}
.c-contact-block a:hover, .c-contact-block a:focus {
  color: #fecd32;
  background: #000;
}
.c-contact-block__container {
  max-width: 54rem;
}
@media only screen and (min-width: 500px) {
  .c-contact-block__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  @supports (grid-area: auto) {
    .c-contact-block__container {
      display: grid;
      grid-gap: 3rem;
      grid-template-columns: 1fr 1fr;
    }
  }
}
.c-contact-block__container.o-container {
  max-width: 54rem;
}
.c-contact-block__title {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 50em) {
  .c-contact-block__title {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-contact-block__title {
    margin-right: 1.5rem;
  }
  @supports (grid-area: auto) {
    .c-contact-block__title {
      margin: 0;
    }
  }
}
.c-contact-block__info.form-text-red .field-validation-error {
  color: red;
  display: block;
}
.c-contact-block__info.form-text-red input[type=checkbox]:checked ~ label:after, .c-contact-block__info.form-text-red input--checkbox:checked ~ label:after {
  border: solid red;
  border-width: 0 3px 3px 0;
}
.c-contact-block__info.form-text-white .field-validation-error {
  color: white;
  display: block;
}
.c-contact-block__info.form-text-white input[type=checkbox]:checked ~ label:after, .c-contact-block__info.form-text-white input--checkbox:checked ~ label:after {
  border: solid white;
  border-width: 0 3px 3px 0;
}
@media only screen and (min-width: 73.125em) {
  .c-contact-block__info {
    margin-left: 1.5rem;
    width: 60%;
  }
  @supports (grid-area: auto) {
    .c-contact-block__info {
      margin: 0;
      width: auto;
    }
  }
}
.c-contact-block__header {
  margin-bottom: 0;
}
.c-contact-block__arrow {
  height: 35px;
  width: 50px;
}
.c-contact-block__person {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  width: 80%;
}
@media only screen and (min-width: 50em) {
  .c-contact-block__person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3rem 0;
    text-align: left;
  }
}
.c-contact-block__person-image {
  width: 144px;
  height: 144px;
  max-width: 10rem;
}
@media only screen and (min-width: 50em) {
  .c-contact-block__person-image {
    margin-right: 2rem;
  }
}
.c-contact-block__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-contact-block__contact-img {
  align-self: start;
  flex-shrink: 0;
  margin-right: 0.5rem;
  max-width: 150px;
  width: 40%;
}
@supports (grid-area: auto) {
  .c-contact-block__contact-img {
    flex-shrink: initial;
  }
}
.c-contact-block__contact-head {
  margin-bottom: 0.2rem;
}
@media only screen and (min-width: 73.125em) {
  .c-contact-block__contact-head {
    font-size: 1.7rem;
  }
}

@media only screen and (min-width: 50em) {
  .c-contact-form {
    margin-top: 3rem;
  }
}
.c-contact-form input[type=text],
.c-contact-form input[type=email],
.c-contact-form .umbraco-forms-field-wrapper textarea {
  width: 80%;
}

.c-contact__header {
  font-size: 2rem;
}
.c-contact .caption {
  font-size: 0.8rem;
  font-style: italic;
}

.o-container--narrow .contactform {
  margin-left: -20px;
}
@media only screen and (min-width: 500px) {
  .o-container--narrow .contactform {
    margin-left: 0;
  }
}

.cards__item + .cards__item {
  margin-top: 2rem;
}
@media only screen and (min-width: 650px) {
  .cards__item + .cards__item {
    margin-top: 0;
  }
}
.cards__icon {
  max-width: 100px;
  max-height: 65px;
}
@media only screen and (min-width: 650px) {
  .cards__cta {
    margin-top: auto;
  }
}

.c-content__head {
  margin: 0 0 2rem;
}
@media only screen and (min-width: 73.125em) {
  .c-content__head {
    margin: 0 0 3.048rem;
    transform: translateX(-100px);
  }
}
.c-content__content {
  word-wrap: break-word;
  /* General overwrite styles as a WYSIWYG editor
      // unable to all classes to all elements */
  /* img:not(.c-content__images-img),
      .c-content__images-item {
          margin-bottom: 1rem;
      } */
}
.c-content__content h2 {
  /* font-family: $font-stack-header-light; */
  margin: 0 0 2rem;
}
@media only screen and (min-width: 73.125em) {
  .c-content__content h2 {
    margin: 0 0 1rem;
    transform: translateX(-130px);
  }
}
.c-content__content .o-grid__col h2 {
  transform: translateX(0);
}
.c-content__content ul,
.c-content__content .c-video {
  margin-bottom: 1rem;
}
.c-content__content p:last-child,
.c-content__content p:only-child {
  margin-bottom: 0;
}
.c-content__content li {
  background-image: url(../img/play-button.svg);
  background-position: 0 8px;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  padding: 0 0 1rem 2rem;
}
.c-content__content li:last-child {
  padding-bottom: 0;
}
.c-content__content ol li {
  background: none;
  list-style-type: decimal;
  margin-left: 1rem;
  padding: 0 0 1rem 1rem;
}
.c-content__content h2:not(:first-child) {
  margin-top: 2rem;
}
.c-content__content:first-child .c-content {
  margin-top: 0;
}
@media only screen and (min-width: 50em) {
  .c-content__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 50em) {
  .c-content__images--2 .c-content__images-item {
    width: 49%;
  }
}
@media only screen and (min-width: 50em) {
  .c-content__images--3 .c-content__images-item {
    width: 32%;
  }
}
.c-content__images-img {
  border-radius: 8px;
  display: inline-block;
}
.c-content__images-text {
  font-size: 0.8rem;
}

.content-spacer {
  margin-top: 2rem;
}
@media only screen and (min-width: 73.125em) {
  .content-spacer {
    margin-top: 2.5rem;
  }
}
.o-container:first-child > .content-spacer:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 650px) {
  .o-grid > .content-spacer:not(:first-child) {
    margin-top: 0;
  }
}

#ccc #ccc-notify.ccc-notify__box {
  max-height: 300px !important;
}
#ccc #ccc-content #ccc-end #ccc-dismiss-button,
#ccc #ccc-content #ccc-end #ccc-dismiss-button span {
  border-color: #fff !important;
}
#ccc #ccc-content #ccc-end #ccc-dismiss-button,
#ccc #ccc-content #ccc-end #ccc-dismiss-button span {
  font-weight: 400;
}
#ccc .optional-vendor-heading {
  font-size: inherit;
  color: inherit;
}

.c-dialog {
  background: transparent;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
.c-dialog__box {
  /* border-radius: 8px; */
  box-shadow: rgba(0, 0, 0, 0.23) 6px 6px 24px 0px;
  left: 50%;
  max-width: 700px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 9999;
}
.c-dialog__content {
  background: #fff;
  position: relative;
  z-index: 10;
}
.c-dialog__focus-helper {
  background: transparent;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.c-footer {
  background-size: cover;
  font-size: 1rem;
  background-position: left top;
}
.c-footer p {
  word-break: break-word;
}
.c-footer h2, .c-footer p, .c-footer .e-label, .c-footer address, .c-footer legend {
  color: #fff;
}
.c-footer legend {
  margin-bottom: 0.5rem;
}
.c-footer a {
  color: #fff;
}
.c-footer .field-validation-error {
  color: #fff;
  position: relative;
  top: -1rem;
}
@media only screen and (min-width: 73.125em) {
  .c-footer {
    font-size: 0.762rem;
  }
}
.c-footer__grid {
  margin-bottom: 1rem;
}
.c-footer__signup label {
  margin-bottom: 1rem;
}
.c-footer__signup input[type=text] {
  width: 80%;
}
.c-footer__signup .e-input--submit {
  background: #db2800;
  color: #fff;
}
.c-footer__signup .e-input--submit:hover, .c-footer__signup .e-input--submit:focus {
  background: #ff885b;
  color: #000;
}
.c-footer__head {
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 3em;
}
@media only screen and (min-width: 650px) {
  .c-footer__head {
    margin-top: 0;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-footer__padd-left {
    padding-left: 3.81rem;
  }
}
.c-footer__nav-li {
  margin-bottom: 0.5rem;
}
.c-footer__icons {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 650px) {
  .c-footer__icons {
    margin: 1rem 0 0 0;
  }
}
.c-footer__icons-li {
  margin-right: 2.5rem;
  width: 30px;
}
@media only screen and (min-width: 50em) {
  .c-footer__icons-li {
    margin-right: 3rem;
  }
}
.c-footer__icons-a {
  /* Specific styles to change fill of SVG on icons */
  /* Having to use important rule as struggling to override with current set up */
}
.c-footer__icons-a svg path {
  transition: fill 0.15s ease-in-out;
}
.c-footer__icons-a:focus, .c-footer__icons-a:hover {
  background-color: transparent !important;
}
.c-footer__icons-a:focus svg path, .c-footer__icons-a:hover svg path {
  fill: #ff885b !important;
}
@media only screen and (min-width: 50em) {
  .c-footer__footer {
    text-align: center;
  }
}
.c-footer__footer p {
  margin-bottom: 0;
}
@media only screen and (min-width: 73.125em) {
  .c-footer__footer-flex {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-footer__logo {
  margin: 0 2rem 1rem 0;
  width: 150px;
}
@media only screen and (min-width: 73.125em) {
  .c-footer__logo {
    margin-bottom: 0;
  }
}
.c-footer__pr {
  margin: 2em 0;
}
@media only screen and (min-width: 650px) {
  .c-footer__pr {
    margin: 0;
  }
}
@media only screen and (min-width: 650px) {
  .c-footer__cd {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }
}
.c-footer__cd-logo-box {
  margin-bottom: 0.5rem;
  width: 113px;
}
@media only screen and (min-width: 400px) {
  .c-footer__cd-logo-box {
    width: 200px;
  }
}
@media only screen and (min-width: 650px) {
  .c-footer__cd-logo-box {
    width: 40%;
  }
}
.c-footer__cd-logo {
  margin-right: 2rem;
}
@media only screen and (min-width: 650px) {
  .c-footer__cd-text {
    width: 60%;
  }
}

.twitter-button-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.twitter-button-icon {
  width: 30px;
  margin-right: 16px;
}

.contactform [type=submit] {
  margin-top: 0;
  margin-bottom: 5rem;
}

.c-header {
  background: #000;
  padding: 1rem;
  z-index: 10;
  position: sticky;
  top: 0;
}
@media only screen and (min-width: 50em) {
  .c-header {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }
}
.c-header__flex {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.c-header__logo-a {
  opacity: 1;
}
.c-header__logo {
  height: 2rem;
  vertical-align: bottom;
  width: 6rem;
}
@media only screen and (min-width: 73.125em) {
  .c-header__logo {
    height: auto;
    width: 7.619rem;
  }
}

.c-hero {
  background: -webkit-gradient(linear, left top, right top, from(rgb(90, 31, 159)), to(rgb(26, 8, 120)));
  background: linear-gradient(90deg, rgb(90, 31, 159) 0%, rgb(26, 8, 120) 100%);
  padding: 2rem 0 6rem;
  position: relative;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: 3rem;
  padding: 4rem 0 1rem;
  position: relative;
  z-index: 2;
  /* Full size bg image, includes a different hex with text in */
}
@media only screen and (min-width: 600px) {
  .c-hero {
    background-position: right bottom;
    margin-bottom: calc(3rem + 7.2vh);
    padding: 5rem 0 0;
  }
}
.c-hero .o-container {
  position: relative;
  z-index: 1;
}
.c-hero--large-img {
  margin-bottom: 0;
}
.c-hero--large-img + .c-hero-large-img {
  background-size: cover;
  height: 500px;
  margin-top: -10vw;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 73.125em) {
  .c-hero--large-img + .c-hero-large-img {
    height: 700px;
  }
}
.c-hero--bg-image {
  padding: 0;
}
@media only screen and (min-width: 50em) {
  .c-hero--bg-image {
    min-height: 30rem;
    padding: 2rem 0 1rem;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-hero--bg-image {
    min-height: 32.381rem;
  }
}
.c-hero__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 0.7rem;
}
.c-hero__hex-img {
  bottom: 10%;
  display: none;
  position: absolute;
  right: -5%;
  top: -20%;
  width: auto;
  z-index: 1;
}
@media only screen and (min-width: 800px) {
  .c-hero__hex-img {
    display: block;
    left: 55%;
    right: auto;
    top: -15%;
    width: 300px;
  }
}
@media only screen and (min-width: 50em) {
  .c-hero__hex-img {
    top: -120px;
    width: 400px;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-hero__hex-img {
    top: -460px;
    width: 919px;
  }
}
.c-hero--bg-image .c-hero__bg-img {
  background-image: url(../img/get-in-touch.jpg);
  background-size: cover;
  height: 300px;
  margin-top: -60px;
}
@media only screen and (min-width: 800px) {
  .c-hero--bg-image .c-hero__bg-img {
    height: 100%;
    margin-top: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
  }
}
.c-hero__slant {
  bottom: -10vw;
  height: 10vw;
  position: absolute;
  transform: translateY(-1px);
  width: 100%;
}
@media (min-width: 2000px) {
  .c-hero__slant {
    bottom: -6vw;
    height: 6vw;
  }
}
.c-hero--bg-image .c-hero__container {
  margin: 0 auto;
}
@media only screen and (min-width: 50em) {
  .c-hero--bg-image .c-hero__container {
    margin-bottom: 8rem;
    width: 90%;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-hero--bg-image .c-hero__container {
    max-width: 49.905rem;
    margin: 0 auto 8rem;
    width: 100%;
  }
}
.c-hero--hex-flat .c-hero__hex {
  background-size: 2000%;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 2rem 1rem;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 50em) {
  .c-hero--hex-flat .c-hero__hex {
    background-position: center bottom;
    background-size: 150%;
    padding: 4rem 3rem;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-hero--hex-flat .c-hero__hex {
    background-size: 150%;
  }
}
.c-hero--hex-flat .c-hero__hex--sunburst .c-hero__title,
.c-hero--hex-flat .c-hero__hex--sunburst .c-hero__text,
.c-hero--hex-flat .c-hero__hex--sunburst p, .c-hero--hex-flat .c-hero__hex--scooter .c-hero__title,
.c-hero--hex-flat .c-hero__hex--scooter .c-hero__text,
.c-hero--hex-flat .c-hero__hex--scooter p {
  color: #000 !important;
}
.c-hero--hex-flat .c-hero__hex--sunburst .c-underline:after, .c-hero--hex-flat .c-hero__hex--scooter .c-underline:after {
  background-color: #fff;
}
.c-hero__content {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .c-hero__content {
    width: 50%;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-hero__content {
    max-width: 40rem;
  }
}
@media only screen and (min-width: 50em) {
  .c-hero__content--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
  }
  .c-hero__content--flex > div {
    width: 45%;
  }
}
@media only screen and (min-width: 800px) {
  .c-hero--no-img .c-hero__content {
    max-width: 85%;
    width: 85%;
  }
}
.c-hero--article .c-hero__content {
  max-width: 66%;
  width: 66%;
}
.c-hero__content a:hover,
.c-hero__content a:focus {
  color: #000;
}
@media only screen and (min-width: 800px) {
  .c-hero--bg-image .c-hero__titles, .c-hero--bg-image .c-hero__text {
    width: auto;
  }
}
.c-hero__title {
  color: white;
  line-height: 1.1;
}
.c-hero__title:after {
  height: 8px;
}
.c-hero__title.c-underline:after {
  background-color: white;
}
@media only screen and (min-width: 73.125em) {
  .c-hero--smaller-text .c-hero__title {
    font-size: 2.286em;
  }
}
.c-hero--hex-flat .c-hero__title {
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 73.125em) {
  .c-hero--hex-flat .c-hero__title {
    font-size: 2.952rem;
    margin-bottom: 2.286rem;
  }
}
.c-hero__text {
  color: white;
}
.c-hero__text h3 {
  color: white;
}
.c-hero__subtitle {
  font-size: 1rem;
}
@media only screen and (min-width: 73.125em) {
  .c-hero__subtitle {
    font-size: 1.3125rem;
  }
}
.c-hero__bottom-content {
  background: #000;
  bottom: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  max-width: 65.5rem;
  margin: 0 auto;
  padding: 1rem 0;
  width: 100%;
  z-index: 1;
}
.c-hero--bg-image .c-hero__bottom-content {
  /*margin-top: 5rem; */
}
@media only screen and (min-width: 800px) {
  .c-hero--bg-image .c-hero__bottom-content {
    margin-top: 8rem;
  }
}
@media only screen and (min-width: 800px) {
  .c-hero__bottom-content {
    border: 5px solid #fff;
    border-radius: 8px;
    left: 50%;
    padding: 2rem;
    position: absolute;
    transform: translate(-50%, 50%);
  }
}
.c-hero__bottom-content p {
  margin-bottom: 0;
}
.c-hero__bottom-content a {
  color: #fff;
}
@media only screen and (min-width: 500px) {
  .c-hero__bottom-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.c-hero--bg-image .c-hero__bottom-flex div {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}
.c-hero--bg-image .c-hero__bottom-flex div:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 500px) {
  .c-hero--bg-image .c-hero__bottom-flex div {
    margin-top: 0;
    text-align: left;
    width: 50%;
  }
  .c-hero--bg-image .c-hero__bottom-flex div:nth-child(1), .c-hero--bg-image .c-hero__bottom-flex div:nth-child(2) {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 800px) {
  .c-hero--bg-image .c-hero__bottom-flex div {
    margin-bottom: 0;
    width: 25%;
  }
  .c-hero--bg-image .c-hero__bottom-flex div:nth-child(1), .c-hero--bg-image .c-hero__bottom-flex div:nth-child(2) {
    margin-bottom: 0;
  }
}
.c-hero__logo {
  max-width: 10rem;
  margin: 0 0 1rem;
}
.c-hero--hex-flat .c-hero__logo {
  margin-bottom: 1rem;
  max-width: 45%;
}
.c-hero--hex-flat .c-hero__details {
  margin-top: 2rem;
  text-align: center;
}
@media only screen and (min-width: 50em) {
  .c-hero--hex-flat .c-hero__details {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
}
.c-hero--hex-flat .c-hero__info span {
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  text-transform: uppercase;
}
.c-hero--hex-flat .c-hero__info p {
  margin-bottom: 0;
}
.c-hero--hex-flat .c-hero__img {
  background-size: cover;
  height: 200px;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 50em) {
  .c-hero--hex-flat .c-hero__img {
    height: 500px;
    margin-top: -300px;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-hero--hex-flat .c-hero__img {
    height: 1000px;
    margin-top: -500px;
  }
}
.c-hero__snippet {
  margin-top: 2rem;
  width: 80%;
  margin: 2rem 0;
}
@media only screen and (min-width: 500px) {
  .c-hero__snippet {
    width: 100%;
  }
}
@media only screen and (min-width: 73.125em) {
  .c-hero__snippet {
    margin: 2rem 0 0;
    /* width: 120%; */
  }
}

.c-cs-head {
  overflow: hidden;
  position: relative;
}

/* Hexagon using CSS shapes, keep in case useful later */
/* &__hex {

 }

 &__hex {
     overflow: hidden;
     display: inline-block;
     margin: 4em 0;
     width: 20em; height: 17.32em;
     transform: rotate(-30deg) skewX(30deg);
     border-radius: .5em;
 }
 &__hex *, &__hex *:before {
     display: block;
     overflow: hidden;
     width: inherit; height: inherit;
     border-radius: inherit;
 }
 &__hex-inner {
     transform: skewX(-30deg) rotate(60deg) skewX(30deg);
     cursor: pointer;
 }
 &__hex-inner-2 {
     transform: skewX(-30deg) rotate(60deg) skewX(30deg);
     background: $col-sunburst;
     content: '';
 }
 &__hex-inner-2:before {
     margin-top: -1.5em;
     height: 20em;
     transform: skewX(-30deg) rotate(-90deg);
     / * background: url('http:images.fineartamerica.com/images-medium-large/sumatran-tiger-cub--panthera-tigris-sumatrae-life-on-white.jpg'); * /
     background-size: cover;
     line-height: 20em;
     content: '';
 } */
/* End: Hexagon using CSS shapes, keep in case useful later */
.c-nav {
  font-family: "bwgradual-regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  display: none;
  left: 0;
  margin-top: 1.5rem;
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .c-nav {
    border: none;
    display: block;
    font-size: 0.762em;
    letter-spacing: -0.01rem;
    margin-top: 0;
    opacity: 1;
    position: static;
    visibility: visible;
    width: auto;
  }
}
.c-nav.c-animation-fade--active {
  display: block;
}
.c-nav--active {
  background-color: #fff;
  display: block;
}
@media only screen and (min-width: 800px) {
  .c-nav--active {
    display: block;
    position: static;
    width: auto;
  }
}
@media only screen and (min-width: 800px) {
  .c-nav__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-nav__li {
  display: block;
}
@media only screen and (min-width: 800px) {
  .c-nav__li {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 800px) {
  .c-nav__li:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-nav__a {
  color: #fff;
  display: block;
  margin: 0 0.5rem;
  padding: 1.2rem 0.5rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
@media only screen and (min-width: 800px) {
  .c-nav__a {
    border: none;
    margin: 0 0.3rem;
    padding: 0 0.5rem;
  }
}
@media only screen and (min-width: 800px) {
  .c-nav__a:after {
    background: transparent;
    border-radius: 0.25rem;
    content: "";
    display: block;
    height: 5px;
    left: 0;
    margin-top: 0.25rem;
    position: absolute;
    transition: width 0.2s ease-in-out;
    width: 0;
  }
}
.c-nav__a:hover, .c-nav__a:focus {
  background-color: #28c7c9;
  /* Not on Nav items that are active (e.g on that page) */
}
@media only screen and (min-width: 50em) {
  .c-nav__a:hover, .c-nav__a:focus {
    background-color: transparent;
  }
}
.c-nav__a:hover:not(.c-nav__a--active), .c-nav__a:focus:not(.c-nav__a--active) {
  color: #fff;
}
@media only screen and (min-width: 800px) {
  .c-nav__a:hover:not(.c-nav__a--active):after, .c-nav__a:focus:not(.c-nav__a--active):after {
    background-color: #fff;
    width: 100%;
  }
}
.c-nav__a--active {
  color: #fff;
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
}
@media only screen and (min-width: 800px) {
  .c-nav__a--active:after {
    background-color: #ff885b;
    width: 100%;
  }
}
.c-nav__a--active:hover, .c-nav__a--active:focus {
  color: #fff;
}
@media only screen and (min-width: 50em) {
  .c-nav__a--get-in-touch {
    align-items: center;
    background-image: url(../img/icon-yellow-hex.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 105px;
    justify-content: center;
    width: 120px;
  }
  .c-nav__a--get-in-touch:after {
    display: none;
  }
  .c-nav__a--get-in-touch.c-nav__a--active, .c-nav__a--get-in-touch:hover, .c-nav__a--get-in-touch:focus {
    background-image: url(../img/icon-yellow-hex-active.svg);
  }
}

.c-nav-hamburger {
  background: transparent;
  border: none;
  color: #000;
  display: inline-block;
  height: 38px;
  margin: 0;
  padding: 0;
  position: relative;
  text-transform: uppercase;
  width: 50px;
}
@media only screen and (min-width: 800px) {
  .c-nav-hamburger {
    display: none;
  }
}
.c-nav-hamburger:before, .c-nav-hamburger:after {
  display: none;
}
.c-nav-hamburger__line {
  background-color: #ff885b;
  border-radius: 2px;
  content: "";
  display: block;
  height: 4px;
  position: relative;
}
.c-nav-hamburger--active {
  overflow: hidden;
}
.c-nav-hamburger__text {
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.c-nav-hamburger--active .c-nav-hamburger__text {
  transform: translateX(-60px);
  opacity: 0;
  visibility: hidden;
}
.c-nav-hamburger__line {
  background-color: #ff885b;
  border-radius: 0.125rem;
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  transform: rotate(0deg);
  transition: top ease-in-out 0.25s, transform ease-in-out 0.25s;
  width: 100%;
}
.c-nav-hamburger__line--1 {
  top: 2px;
}
.c-nav-hamburger--active .c-nav-hamburger__line--1 {
  top: 17px;
  transform: rotate(135deg);
}
.c-nav-hamburger__line--2 {
  top: 32px;
}
.c-nav-hamburger--active .c-nav-hamburger__line--2 {
  top: 17px;
  transform: rotate(-135deg);
}

/* .pagination{display:inline-block }.pagination>li{display:inline }.pagination>li>a,.pagination>li>span{background-color:#fff;border:1px solid #ddd;margin-left:-1px }.pagination>li>a:hover,.pagination>li>a:focus{background-color:#eee;border-color:#ddd }.pagination>.active>a,.pagination>.active>a:hover,.pagination>.active>a:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default }.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:false }.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px }.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px }.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px }.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px }.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px }.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px }
 .pagination+p{margin-top:20px }.job-details{margin-bottom:10px }.job-details p{margin-bottom:0 }.job-details .btn{margin-top:5px }@media (min-width:768px){.job-details .btn{float:right }}.salary{font-size:2.4rem;color:#415b6c }.social-sharing{clear:both;margin-bottom:10px }.job-details .social-sharing{float:right;}.social-page-icon{text-align:center;font-size:12rem;color:#00BBE7;line-height:1 }.topic-list{padding:0;list-style:none;margin:30px 0 0 }.topic-list>li{margin-bottom:30px }.topic-list li:nth-child(odd){clear:both }.topic-list h2{background-image:url("/media/1003/resources-category-icon.gif");background-position:left 5px;background-repeat:no-repeat;border-bottom:1px solid #e2e7e9;border-top:1px solid #e2e7e9;margin-bottom:15px;padding:20px 0 15px 60px;text-transform:uppercase }.topic-list ul{list-style:disc }.topic-list ul+p{margin-top:10px }.map{margin-bottom:30px }.map iframe{width:100%;height:300px }.google-map{display:block }@media (min-width:768px){.google-map{height:450px }}.scrolloff{pointer-events:none }.pagination{display:inline-block;padding-left:0;margin:30px 0 0;border-radius:4px }.pagination--margin-bottom{margin:0 0 30px }.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.428571429;text-decoration:none;color:#A44716;background-color:#fff;border:2px solid #A44716;margin-right:2px }.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0 }.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0 }.pagination>li>a:hover,.pagination>li>a:focus{color:#fff;background-color:#A44716 }

 .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
     background-color: #A44716;
     color: #fff;
 }

 .pagination > li > a:hover, .pagination > li > a:focus {
     background-color: #C1551A;
     border-color: #A44716;
 }

 .pagination-container {
     text-align: center;

     /* @include breakpoint(914px) {
          text-align: left;
      } * /
 }

 .pagination {
     li {
         margin-left: 0;
         display: none;

         /* @include breakpoint(914px) {
              display: inline;
          } * /

         &.pagination__item--prev,
         &.pagination__item--next,
         &.pagination__item--mobile-text {
             display: inline-block;

             @include breakpoint(914px) {
                 display: inline;
             }
         }

         &.pagination__item--first,
         &.pagination__item--last {
             @include breakpoint(500px) {
                 display: inline-block;
             }

             @include breakpoint(914px) {
                 display: inline;
             }
         }

         &.pagination__item--mobile-text {
             @include breakpoint(914px) {
                 display: none;
             }

             span {
                 border-color: transparent;
             }
         }

         &.pagination__item--disabled {
             opacity: 0.2;

             @include breakpoint(914px) {
                 display: none;
             }
         }
     }
 } */
/* Above styles were removed in 'Fixes for GitHub issues #131, #26 and #77' */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 30px 0 0;
}

.pagination-desktop li a:not(.pagination__item--current):hover,
.pagination-desktop li a:not(.pagination__item--current):focus {
  background: #5a1f9f;
  color: #fff;
}

.pagination {
  width: 100%;
  margin: 30px auto 0 auto;
}

.pagination ul {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination li {
  padding: 0 0.4rem;
}

.pagination-mobile li:nth-child(2) {
  font-weight: bold;
  color: #000;
}

.pagination a {
  text-decoration: none;
}

.pagination ul li:first-of-type,
.pagination ul li:last-of-type {
  min-width: 80px;
}

.pagination ul li:first-of-type {
  text-align: right;
}

.pagination-desktop a {
  margin-left: 0;
  padding: 5px 10px;
  background: #fff;
  color: blueStone;
}

.pagination-desktop li .pagination__item--current {
  background: #5a1f9f;
  color: #fff;
  cursor: default;
}

.pagination-desktop .pagination__item--prev,
.pagination-desktop .pagination__item--next {
  padding: 0;
  background: #fff;
  color: #5a1f9f;
  padding: 5px 10px;
}

.pagination-desktop {
  display: none;
}

@media only screen and (min-width: 600px) {
  .pagination-mobile {
    display: none;
  }
  .pagination-desktop {
    display: block;
  }
}
/* .c-ppl {

} */
.c-related {
  margin: 3rem 0 0;
}
.c-related__img {
  margin-bottom: 2rem;
  max-width: 50%;
}
@media only screen and (min-width: 50em) {
  .c-related__img {
    max-width: 60%;
  }
}
.c-related__title {
  color: #1a0878;
  max-width: 90%;
}

.c-section {
  background-position: right bottom;
  background-size: cover;
  margin: 0.5rem;
  padding: 2rem 0rem;
  position: relative;
  /* Generic rule to push give last link a higher margin */
  /* Hopefully causes no conflicts */
  /* Left in section partial as specific to section styles */
  /* To align the buttons to the baseline, get the paragraph to fill the space */
}
@media only screen and (min-width: 50em) {
  .c-section {
    margin: 0.762rem;
    padding: 1rem 0;
  }
}
@media only screen and (min-width: 50em) {
  .c-section--overlap {
    padding-top: 6rem;
  }
}
.c-section--grey {
  background-color: #f2f2f2;
}
.c-section--twitter {
  background-color: #1da1f2;
  padding-bottom: 4rem;
}
.c-section--twitter .e-btn:focus, .c-section--twitter .e-btn:hover {
  outline: 12px auto white;
}
.c-section--prussian {
  background-color: #000;
}
.c-section--monzo {
  background-color: #e30613;
}
.c-section--heliotrope {
  background-color: #aa4bf5;
}
.c-section--coral {
  background-color: #ff885b;
}
.c-section--black {
  background-color: #000;
}
.c-section--white {
  background-color: #fff;
}
.c-section--botticelli {
  background-color: #c8dce9;
}
.c-section--daisy-bush {
  background-color: #5a1f9f;
}
.c-section--mercury {
  background-color: #e3e3e3;
}
.c-section--deep-blue {
  background-color: #1a0878;
}
.c-section--scooter {
  background-color: #28c7c9;
}
.c-section--red-orange {
  background-color: #db2800;
}
.c-section--sunburst {
  background-color: #fecd32;
}
.c-section--no-padd-top {
  padding-top: 0;
}
@media only screen and (min-width: 50em) {
  .c-section--no-padd-top {
    padding-top: 0;
  }
}
.c-section--no-padd-bottom {
  padding-bottom: 0;
}
@media only screen and (min-width: 50em) {
  .c-section--no-padd-bottom {
    padding-bottom: 0;
  }
}
.c-section__intro {
  margin-bottom: 5rem;
}
@media only screen and (min-width: 50em) {
  .c-section__intro {
    max-width: 70%;
  }
}
.c-section__btn-align {
  text-align: center;
}
@media only screen and (min-width: 650px) {
  .c-section__btn-align {
    text-align: right;
  }
}
.c-section .o-grid__col p:last-of-type + p {
  align-self: flex-start;
}
.c-section .o-grid__col p:first-of-type {
  flex: 1 0 auto;
}

.c-skip__item {
  left: -999em;
  position: absolute;
  width: 990em;
  z-index: 999;
}
.c-skip__item:active, .c-skip__item:focus {
  background-color: #fff;
  border: 3px #6acac5 solid;
  color: #000;
  left: 0;
  top: 0;
  padding: 15px;
  text-decoration: none;
  width: auto;
  z-index: 999;
}

.c-staff {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.c-section .c-staff:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 73.125em) {
  .c-staff {
    font-size: 0.762rem;
  }
}
.c-staff__name, .c-staff__role, .c-staff__link, .c-staff__name {
  display: block;
  margin-bottom: 0.2rem;
}
.c-staff__fname, .c-staff__sname, .c-staff__name {
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  line-height: 1;
  display: table-caption;
}
.c-staff__role {
  font-family: "fkgrotesk-regular";
}
.c-staff__link {
  background-color: transparent;
  border: none;
  color: #5a1f9f;
  font-family: "fkgrotesk-regular";
  font-size: 1rem;
  margin: 0;
  padding: 0;
  text-transform: none;
  text-decoration: underline;
  text-align: left;
}
@media only screen and (min-width: 73.125em) {
  .c-staff__link {
    font-size: 0.762rem;
  }
}
.c-staff__link:before {
  display: none;
}
.c-staff__dialog-box {
  /* overflow: auto; */
}
.c-staff__dialog-box:before {
  background: #000;
  content: "";
  display: block;
  height: 100%;
  left: -10px;
  position: absolute;
  top: 10px;
  width: 100%;
}
.c-staff__dialog-content {
  border: 1px solid #d2cbcb;
  overflow: hidden;
  position: relative;
  padding: 1rem;
  z-index: 3;
}
@media only screen and (min-width: 50em) {
  .c-staff__dialog-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem;
  }
}
.c-staff__dialog-box-info {
  margin-top: 32px;
}
@media only screen and (min-width: 50em) {
  .c-staff__dialog-box-info {
    margin-right: 5%;
    margin-top: 0;
    padding-right: 0;
    width: 30%;
  }
}
@media only screen and (min-width: 50em) {
  .c-staff__dialog-box-content {
    padding-right: 100px;
    width: 65%;
  }
}
.c-staff__dialog-close {
  background: none;
  border: none;
  color: #5a1f9f;
  cursor: pointer;
  font-family: "bwgradual-regular", "bwgradual-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  text-transform: uppercase;
}
.c-staff__dialog-close:hover, .c-staff__dialog-close:focus {
  color: #5a1f9f;
  text-decoration: underline;
}
.c-staff__dialog-close:before {
  display: none !important;
}
.c-staff__dialog-icons {
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
}
.c-staff__dialog-icons-li {
  margin-right: 1rem;
  width: 25px;
}
.c-staff__dialog-icons-a {
  display: block;
}
.c-staff__dialog-icons-a:hover, .c-staff__dialog-icons-a:focus {
  background: transparent;
}
.c-staff__dialog-icons-a svg {
  display: block;
  width: 100%;
}

.c-underline {
  position: relative;
  margin-bottom: 2rem;
  /* &.c-article-title {
       margin-bottom: 5rem;
   } */
}
.c-underline:after {
  background-color: #1a0878;
  bottom: 0;
  display: block;
  content: "";
  height: 5px;
  left: 0;
  margin-top: 0.5rem;
  width: 6.25rem;
}
.u-white-text .c-underline:after {
  background-color: #fff;
}

.c-video {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.c-video:not(:first-child) {
  margin-top: 2rem;
}
.c-video iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.c-video .c-content__images-text {
  padding-top: 66.25%;
}

.u-hide {
  display: none;
}

.u-a11y {
  position: absolute !important;
}

.u-a11y {
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.u-rounded-img {
  border-radius: 8px;
}

@media only screen and (min-width: 1400px) {
  .u-extra-width {
    transform: translateX(-82px);
    max-width: 1048px;
    width: 1048px;
  }
  .o-container--narrow .u-extra-width {
    transform: translateX(-224px);
  }
}

.u-overflow-auto {
  overflow: auto;
}

/* https://tailwindcss.com/docs/flexbox-display */
/* Single use flex styles */
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.u-flex-row {
  flex-direction: row;
}

.u-flex-row-reverse {
  flex-direction: row-reverse;
}

.u-flex-col {
  flex-direction: column;
}

.u-flex-col-reverse {
  flex-direction: column-reverse;
}

.u-flex-wrap {
  flex-wrap: wrap;
}

.u-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.u-flex-no-wrap {
  flex-wrap: nowrap;
}

.u-items-start {
  align-items: flex-start;
}

.u-items-end {
  align-items: flex-end;
}

.u-items-center {
  align-items: center;
}

.u-items-baseline {
  align-items: baseline;
}

.u-items-stretch {
  align-items: stretch;
}

.u-self-auto {
  align-self: auto;
}

.u-self-start {
  align-self: flex-start;
}

.u-self-end {
  align-self: flex-end;
}

.u-self-center {
  align-self: center;
}

.u-self-stretch {
  align-self: stretch;
}

.u-justify-start {
  justify-content: flex-start;
}

.u-justify-end {
  justify-content: flex-end;
}

.u-justify-center {
  justify-content: center;
}

.u-justify-between {
  justify-content: space-between;
}

.u-justify-around {
  justify-content: space-around;
}

.u-content-center {
  align-content: center;
}

.u-content-start {
  align-content: flex-start;
}

.u-content-end {
  align-content: flex-end;
}

.u-content-between {
  align-content: space-between;
}

.u-content-around {
  align-content: space-around;
}

.u-flex-1 {
  flex: 1 1 0%;
}

.u-flex-auto {
  flex: 1 1 auto;
}

.u-flex-initial {
  flex: 0 1 auto;
}

.u-flex-none {
  flex: none;
}

.u-flex-grow {
  flex-grow: 1;
}

.u-flex-shrink {
  flex-shrink: 1;
}

.u-flex-no-grow {
  flex-grow: 0;
}

.u-flex-no-shrink {
  flex-shrink: 0;
}

.u-white-text {
  /* White text on everything but not buttons as will overwrite */
}
.u-white-text p, .u-white-text li, .u-white-text h1, .u-white-text h2, .u-white-text h3, .u-white-text h4, .u-white-text h5, .u-white-text h6, .u-white-text label, .u-white-text a:not(.e-btn) {
  color: #fff;
}

.u-center-align {
  text-align: center;
}

.u-left-align {
  text-align: left;
}

.u-right-align {
  text-align: right;
}

@media only screen and (min-width: 73.125em) {
  .u-pull-right {
    transform: translateX(5rem);
  }
}

/* .u-pull-section-up {
 	margin-top: -60px;

 	@include breakpoint(medium) {
 		margin-top: -150px;
 	}

 	@include breakpoint(large) {
 		margin-top: -200px;
 	}
} */
/* Some basic object classes where a full component wasn't required */
.u-mr-4 {
  margin-right: 1rem;
}

.u-mt-8 {
  margin-top: 2rem;
}

.u-mt-16 {
  margin-top: 4rem;
}

.u-pt-0 {
  padding-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-4 {
  margin-bottom: 1rem;
}

.u-mb-8 {
  margin-bottom: 2rem;
}

.u-mb-16 {
  margin-bottom: 4rem;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-fs-h1 {
  font-size: 2rem;
}

.u-fs-h2 {
  font-size: 1.625rem;
}

/* https://tailwindcss.com/docs/width */
/* Single use width styles for non components */
.u-w-1 {
  width: 0.25rem;
}

.u-w-2 {
  width: 0.5rem;
}

.u-w-3 {
  width: 0.75rem;
}

.u-w-4 {
  width: 1rem;
}

.u-w-5 {
  width: 1.25rem;
}

.u-w-6 {
  width: 1.5rem;
}

.u-w-8 {
  width: 2rem;
}

.u-w-10 {
  width: 2.5rem;
}

.u-w-12 {
  width: 3rem;
}

.u-w-16 {
  width: 4rem;
}

.u-w-24 {
  width: 6rem;
}

.u-w-32 {
  width: 8rem;
}

.u-w-48 {
  width: 12rem;
}

.u-w-64 {
  width: 16rem;
}

.u-w-auto {
  width: auto;
}

.u-w-px {
  width: 1px;
}

.u-w-1\/2 {
  width: 50%;
}

.u-w-1\/3 {
  width: 33.33333%;
}

.u-w-2\/3 {
  width: 66.66667%;
}

.u-w-1\/4 {
  width: 25%;
}

.u-w-2\/4 {
  width: 50%;
}

.u-w-3\/4 {
  width: 75%;
}

.u-w-1\/5 {
  width: 20%;
}

.u-w-2\/5 {
  width: 40%;
}

.u-w-3\/5 {
  width: 60%;
}

.u-w-4\/5 {
  width: 80%;
}

.u-w-1\/6 {
  width: 16.66667%;
}

.u-w-5\/6 {
  width: 83.33333%;
}

.u-w-full {
  width: 100%;
}

.u-w-screen {
  width: 100vw;
}

/* https://tailwindcss.com/docs/height */
/* Single use height styles for non components */
.u-h-1 {
  height: 0.25rem;
}

.u-h-2 {
  height: 0.5rem;
}

.u-h-3 {
  height: 0.75rem;
}

.u-h-4 {
  height: 1rem;
}

.u-h-5 {
  height: 1.25rem;
}

.u-h-6 {
  height: 1.5rem;
}

.u-h-8 {
  height: 2rem;
}

.u-h-10 {
  height: 2.5rem;
}

.u-h-12 {
  height: 3rem;
}

.u-mh-16 {
  max-height: 4rem;
}

.u-h-24 {
  height: 6rem;
}

.u-h-32 {
  height: 8rem;
}

.u-h-48 {
  height: 12rem;
}

.u-h-64 {
  height: 16rem;
}

.u-h-auto {
  height: auto;
}

.u-h-px {
  height: 1px;
}

.u-h-1\/2 {
  height: 50%;
}

.u-h-1\/3 {
  height: 33.33333%;
}

.u-h-2\/3 {
  height: 66.66667%;
}

.u-h-1\/4 {
  height: 25%;
}

.u-h-2\/4 {
  height: 50%;
}

.u-h-3\/4 {
  height: 75%;
}

.u-h-1\/5 {
  height: 20%;
}

.u-h-2\/5 {
  height: 40%;
}

.u-h-3\/5 {
  height: 60%;
}

.u-h-4\/5 {
  height: 80%;
}

.u-h-1\/6 {
  height: 16.66667%;
}

.u-h-5\/6 {
  height: 83.33333%;
}

.u-h-full {
  height: 100%;
}

.u-h-screen {
  height: 100vw;
}

.u-bg-pale-blue {
  background-color: #c8dce9;
}

/*# sourceMappingURL=style.css.map*/