/* MIXINS & FUNCTIONS */
/*===================
BUTTONS
====================*/
/*===================
RADIUS
====================*/
/*===================
FONT FAMILIES
====================*/
/*===================
FONT SIZES
====================*/
/*===================
FONT WEIGHTS
====================*/
/*===================
BORDER SIZES
====================*/
/*===================
GUTTERS & PADDINGS SIZES
====================*/
/*=======
GRID
======*/
/*===================
COLUMN SIZES
====================*/
/*===================
Widths
====================*/
/*
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 5px 30px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #193e72;
}

.hamburger-box {
  width: 27px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 27px;
  height: 4px;
  background-color: #193e72;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*Basic Reset of styles*/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

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

html {
  line-height: 1.5;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 18px;
}
@media all and (min-width: 48em) {
  html {
    font-size: 18px;
  }
}

body {
  color: #000000;
  font-size: 0.8888888889rem;
}
@media all and (min-width: 48em) {
  body {
    font-size: 1rem;
  }
}

p {
  margin-bottom: 1.6666666667rem;
}

h1, h2, h3, .u-h1, .u-h2, .u-h3 {
  font-family: "Lato", sans-serif;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 1.6666666667rem;
  color: #193e72;
}

h2, h3, h4, h5, .u-h2, .u-h3, .u-h4, .u-h5 {
  margin: 0;
  line-height: 1.2;
  color: #193e72;
  font-weight: 700;
}

h1, .u-h1 {
  font-size: 1.3888888889rem;
}
@media all and (min-width: 48em) {
  h1, .u-h1 {
    font-size: 2.2222222222rem;
  }
}
h2, .u-h2 {
  font-size: 1.1111111111rem;
  margin-bottom: 0.8333333333rem;
}
@media all and (min-width: 60.625em) {
  h2, .u-h2 {
    font-size: 1.2222222222rem;
    margin-bottom: 1.3888888889rem;
  }
}

.l-section__inner h2:first-child {
  margin-top: 0;
  text-align: center;
}

h3, .u-h3 {
  margin-bottom: 1.6666666667rem;
}
@media all and (min-width: 48em) {
  h3, .u-h3 {
    margin-bottom: 2.7777777778rem;
  }
}

h4, .u-h4 {
  line-height: 1.5;
}

h5, .u-h5 {
  line-height: 1.5;
}

/*LINKS*/
a {
  text-decoration: none;
  color: #ea5d4e;
}
a:hover {
  text-decoration: underline;
  background-size: 0% 2px;
}

.l-site__main ul, .l-site__main ol {
  margin-bottom: 1.6666666667rem;
}
.l-site__main ul li, .l-site__main ol li {
  margin: 0 0 10px 30px;
  padding-left: 5px;
}
@media all and (min-width: 48em) {
  .l-site__main ul li, .l-site__main ol li {
    margin-left: 40px;
  }
}
.l-site__main ul {
  list-style-type: disc;
}
.l-site__main ol {
  list-style-type: decimal;
}

/*====Heading Main====*/
.heading__main {
  background-color: #f29330;
  color: #ffffff;
  display: flex;
  justify-content: center;
  padding: 15px 1.6666666667rem;
  margin-bottom: 0;
}
@media all and (min-width: 71.875em) {
  .heading__main {
    padding: 15px 0;
  }
}
.heading__main span {
  width: 100%;
  max-width: 1150px;
}

/*====Heading Sub====*/
.heading__sub {
  font-size: 1.2222222222rem;
  font-weight: 400;
  margin-bottom: 20px;
}
@media all and (min-width: 48em) {
  .heading__sub {
    margin-bottom: 35px;
    font-size: 2.2222222222rem;
  }
}

.intro__text {
  font-size: 20px;
  color: #193e72;
  margin-bottom: 1.6666666667rem;
}
@media all and (min-width: 48em) {
  .intro__text {
    font-size: 28px;
  }
}

/*====HEADING THEMES COLOURS =====*/
.heading__theme {
  font-size: 1.2222222222rem;
  padding: 10px 1.1111111111rem;
  font-weight: 400;
  margin-bottom: 15px;
}
@media all and (min-width: 48em) {
  .heading__theme {
    font-size: 1.3888888889rem;
  }
}
.heading__theme--1 {
  background-color: #193e72;
  color: #ffffff;
}
.heading__theme--1 .accordion__trigger {
  background-color: #193e72;
  color: #ffffff;
}
.heading__theme--1 .card-profile__name {
  color: #193e72;
}
.heading__theme--2 {
  background-color: #f29330;
  color: #ffffff;
}
.heading__theme--2 .accordion__trigger {
  background-color: #f29330;
  color: #ffffff;
}
.heading__theme--3 {
  background-color: #2ea9b0;
  color: #ffffff;
}
.heading__theme--3 .accordion__trigger {
  background-color: #2ea9b0;
}
.heading__theme--4 {
  background-color: #ea5d4e;
  color: #ffffff;
}
.heading__theme--4 .accordion__trigger {
  background-color: #ea5d4e;
}
.heading__theme--5 {
  background-color: #6667ad;
  color: #ffffff;
}
.heading__theme--5 .accordion__trigger {
  background-color: #6667ad;
}
.heading__theme--6 {
  background-color: #fed47a;
  color: #193e72;
}
.heading__theme--6 .card-profile__name {
  color: #fed47a;
}

/*===========================
FONT WEIGHTS
===========================*/
.u-weight__700 {
  font-weight: 700 !important;
}

.u-weight__400 {
  font-weight: 400 !important;
}

/*====================
COLOURS
====================*/
.u-bg-color__1 {
  background-color: #193e72 !important;
}
.u-bg-color__1--75 {
  background-color: #2a67be !important;
}
.u-bg-color__1--50 {
  background-color: #6798de !important;
}
.u-bg-color__1--25 {
  background-color: #b3ccee !important;
}

.u-txt-color__1 {
  color: #193e72 !important;
}
.u-txt-color__1--75 {
  color: #2a67be !important;
}
.u-txt-color__1--50 {
  color: #6798de !important;
}
.u-txt-color__1--25 {
  color: #b3ccee !important;
}

.u-brd-color__1 {
  border-color: #193e72 !important;
}
.u-brd-color__1--75 {
  border-color: #2a67be !important;
}
.u-brd-color__1--50 {
  border-color: #6798de !important;
}
.u-brd-color__1--25 {
  border-color: #b3ccee !important;
}

.u-bg-color__2 {
  background-color: #f29330 !important;
}
.u-bg-color__2--75 {
  background-color: #f5ae64 !important;
}
.u-bg-color__2--50 {
  background-color: #f9c998 !important;
}
.u-bg-color__2--25 {
  background-color: #fce4cb !important;
}

.u-txt-color__2 {
  color: #f29330 !important;
}
.u-txt-color__2--75 {
  color: #f5ae64 !important;
}
.u-txt-color__2--50 {
  color: #f9c998 !important;
}
.u-txt-color__2--25 {
  color: #fce4cb !important;
}

.u-brd-color__2 {
  border-color: #f29330 !important;
}
.u-brd-color__2--75 {
  border-color: #f5ae64 !important;
}
.u-brd-color__2--50 {
  border-color: #f9c998 !important;
}
.u-brd-color__2--25 {
  border-color: #fce4cb !important;
}

.u-bg-color__3 {
  background-color: #2ea9b0 !important;
}
.u-bg-color__3--75 {
  background-color: #54cbd2 !important;
}
.u-bg-color__3--50 {
  background-color: #8ddde1 !important;
}
.u-bg-color__3--25 {
  background-color: #c6eef0 !important;
}

.u-txt-color__3 {
  color: #2ea9b0 !important;
}
.u-txt-color__3--75 {
  color: #54cbd2 !important;
}
.u-txt-color__3--50 {
  color: #8ddde1 !important;
}
.u-txt-color__3--25 {
  color: #c6eef0 !important;
}

.u-brd-color__3 {
  border-color: #2ea9b0 !important;
}
.u-brd-color__3--75 {
  border-color: #54cbd2 !important;
}
.u-brd-color__3--50 {
  border-color: #8ddde1 !important;
}
.u-brd-color__3--25 {
  border-color: #c6eef0 !important;
}

.u-bg-color__4 {
  background-color: #ea5d4e !important;
}
.u-bg-color__4--75 {
  background-color: #ef867a !important;
}
.u-bg-color__4--50 {
  background-color: #f5aea7 !important;
}
.u-bg-color__4--25 {
  background-color: #fad7d3 !important;
}

.u-txt-color__4 {
  color: #ea5d4e !important;
}
.u-txt-color__4--75 {
  color: #ef867a !important;
}
.u-txt-color__4--50 {
  color: #f5aea7 !important;
}
.u-txt-color__4--25 {
  color: #fad7d3 !important;
}

.u-brd-color__4 {
  border-color: #ea5d4e !important;
}
.u-brd-color__4--75 {
  border-color: #ef867a !important;
}
.u-brd-color__4--50 {
  border-color: #f5aea7 !important;
}
.u-brd-color__4--25 {
  border-color: #fad7d3 !important;
}

.u-bg-color__5 {
  background-color: #eff1f3 !important;
}
.u-bg-color__5--75 {
  background-color: #f3f5f6 !important;
}
.u-bg-color__5--50 {
  background-color: #f7f8f9 !important;
}
.u-bg-color__5--25 {
  background-color: #fbfcfc !important;
}

.u-txt-color__5 {
  color: #eff1f3 !important;
}
.u-txt-color__5--75 {
  color: #f3f5f6 !important;
}
.u-txt-color__5--50 {
  color: #f7f8f9 !important;
}
.u-txt-color__5--25 {
  color: #fbfcfc !important;
}

.u-brd-color__5 {
  border-color: #eff1f3 !important;
}
.u-brd-color__5--75 {
  border-color: #f3f5f6 !important;
}
.u-brd-color__5--50 {
  border-color: #f7f8f9 !important;
}
.u-brd-color__5--25 {
  border-color: #fbfcfc !important;
}

.u-bg-color__6 {
  background-color: #6667ad !important;
}
.u-bg-color__6--75 {
  background-color: #8c8dc2 !important;
}
.u-bg-color__6--50 {
  background-color: #b3b3d6 !important;
}
.u-bg-color__6--25 {
  background-color: #d9d9eb !important;
}

.u-txt-color__6 {
  color: #6667ad !important;
}
.u-txt-color__6--75 {
  color: #8c8dc2 !important;
}
.u-txt-color__6--50 {
  color: #b3b3d6 !important;
}
.u-txt-color__6--25 {
  color: #d9d9eb !important;
}

.u-brd-color__6 {
  border-color: #6667ad !important;
}
.u-brd-color__6--75 {
  border-color: #8c8dc2 !important;
}
.u-brd-color__6--50 {
  border-color: #b3b3d6 !important;
}
.u-brd-color__6--25 {
  border-color: #d9d9eb !important;
}

.u-bg-color__7 {
  background-color: #fed47a !important;
}
.u-bg-color__7--75 {
  background-color: #fedf9b !important;
}
.u-bg-color__7--50 {
  background-color: #ffeabd !important;
}
.u-bg-color__7--25 {
  background-color: #fff4de !important;
}

.u-txt-color__7 {
  color: #fed47a !important;
}
.u-txt-color__7--75 {
  color: #fedf9b !important;
}
.u-txt-color__7--50 {
  color: #ffeabd !important;
}
.u-txt-color__7--25 {
  color: #fff4de !important;
}

.u-brd-color__7 {
  border-color: #fed47a !important;
}
.u-brd-color__7--75 {
  border-color: #fedf9b !important;
}
.u-brd-color__7--50 {
  border-color: #ffeabd !important;
}
.u-brd-color__7--25 {
  border-color: #fff4de !important;
}

.u-bg-color__8 {
  background-color: #acbcc3 !important;
}
.u-bg-color__8--75 {
  background-color: #c1cdd2 !important;
}
.u-bg-color__8--50 {
  background-color: #d6dee1 !important;
}
.u-bg-color__8--25 {
  background-color: #eaeef0 !important;
}

.u-txt-color__8 {
  color: #acbcc3 !important;
}
.u-txt-color__8--75 {
  color: #c1cdd2 !important;
}
.u-txt-color__8--50 {
  color: #d6dee1 !important;
}
.u-txt-color__8--25 {
  color: #eaeef0 !important;
}

.u-brd-color__8 {
  border-color: #acbcc3 !important;
}
.u-brd-color__8--75 {
  border-color: #c1cdd2 !important;
}
.u-brd-color__8--50 {
  border-color: #d6dee1 !important;
}
.u-brd-color__8--25 {
  border-color: #eaeef0 !important;
}

.u-bg-color__white {
  background-color: white !important;
}
.u-bg-color__white--75 {
  background-color: white !important;
}
.u-bg-color__white--50 {
  background-color: white !important;
}
.u-bg-color__white--25 {
  background-color: white !important;
}

.u-txt-color__white {
  color: white !important;
}
.u-txt-color__white--75 {
  color: white !important;
}
.u-txt-color__white--50 {
  color: white !important;
}
.u-txt-color__white--25 {
  color: white !important;
}

.u-brd-color__white {
  border-color: white !important;
}
.u-brd-color__white--75 {
  border-color: white !important;
}
.u-brd-color__white--50 {
  border-color: white !important;
}
.u-brd-color__white--25 {
  border-color: white !important;
}

/*====================
GENERAL FORMATTING
====================*/
.u-center {
  text-align: center;
}

.u-rounded-corners {
  border-radius: 40px;
}
.u-rounded-corners--top {
  border-radius: 40px 40px 0 0;
}
.u-rounded-corners--top-left {
  border-top-left-radius: 40px;
}
.u-rounded-corners--top-right {
  border-top-right-radius: 40px;
}
.u-rounded-corners--left {
  border-radius: 40px 0 40px 0;
}
.u-rounded-corners--right {
  border-radius: 0 40px 0 40px;
}
.u-rounded-corners--btm {
  border-radius: 0 0 40px 40px;
}
.u-rounded-corners--btm-left {
  border-bottom-left-radius: 40px;
}
.u-rounded-corners--btm-right {
  border-bottom-right-radius: 40px;
}

.u-flex {
  display: flex;
}
.u-flex-justify--end {
  justify-content: flex-end;
}
.u-flex-justify--start {
  justify-content: flex-start;
}
.u-flex-justify--center {
  justify-content: center;
}
.u-flex-align--end {
  align-items: flex-end;
}
.u-flex-align--start {
  align-items: flex-end;
}
.u-flex-align--center {
  align-items: center;
}

.u-border {
  border: 1px solid #193e72;
}

/*===========================
HIDE ASSETS BUT RENDER IN DOM
===========================*/
.u-visually-hidden, .form--nolabel .form__label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*===========================
HIDE ELEMENTS
===========================*/
.u-hide {
  display: none;
}
@media all and (min-width: 71.875em) and (max-width: 47.9375em) {
  .u-hide--sm {
    display: none;
  }
}
@media all and (min-width: 71.875em) and (max-width: 60.5625em) {
  .u-hide--med {
    display: none;
  }
}

/*===========
SCROLL/OVERFLOW CLASSES
============*/
.u-model--open {
  overflow: hidden;
}

.u-overflow--hidden {
  overflow: hidden;
}
.u-overflow--scroll {
  overflow: scroll;
}
.u-overflow--scroll-y {
  overflow-y: scroll;
}
.u-overflow--scroll-x {
  overflow-x: scroll;
}

/*===========
FONT CLASSES
============*/
.u-txt--small {
  font-size: 0.7777777778rem;
}
.u-txt--large {
  font-size: 1.1111111111rem;
}

/*===========
PADDING CLASSES
============*/
.u-no-margin {
  margin: 0 !important;
}
.u-no-margin--btm {
  margin-bottom: 0 !important;
}
.u-no-margin--top {
  margin-top: 0 !important;
}
.u-no-margin--left {
  margin-left: 0 !important;
}
.u-no-margin--right {
  margin-right: 0 !important;
}
.u-no-margin--y {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.u-no-margin--x {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.u-no-padding {
  padding: 0 !important;
}
.u-no-padding--btm {
  padding-bottom: 0 !important;
}
.u-no-padding--top {
  padding-top: 0 !important;
}
.u-no-padding--left {
  padding-left: 0 !important;
}
.u-no-padding--right {
  padding-right: 0 !important;
}
.u-no-padding--y {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.u-no-padding--x {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/*===========
video
============*/
.u-video__wrap {
  margin-bottom: 2.7777777778rem;
}
.u-video__wrap iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.u-loading__container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.u-loading__item {
  width: 100px;
  color: #193e72;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.u-anim-fade--in {
  opacity: 0;
  animation-name: fadeInAnimation;
  animation-duration: 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.u-scale {
  overflow: hidden;
}
.u-scale--img {
  overflow: hidden;
}
.u-scale--img img {
  transition: transform 0.9s ease;
}
.u-scale--img:hover img {
  transition: transform 0.9s ease;
}
.u-scale--img:hover img {
  transform: scale(1.15);
}

/*======CSS VARS=======*/
*:focus {
  outline-color: #f29330;
  outline-offset: 5px;
}

.intro {
  width: 100%;
  max-width: 970px;
  margin: auto;
}

img {
  width: 100%;
  height: auto;
}

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

th {
  text-align: left;
  padding: 8px;
  background-color: #193e72;
  color: #ffffff;
  border: 1px solid #acbcc3;
}

td {
  border: 1px solid #acbcc3; /* 1px border for all table cells */
  padding: 8px; /* Optional: Padding for better readability */
}

tr:nth-child(even) {
  background-color: #eff1f3;
}

.l-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 1.6666666667rem 0 1.6666666667rem 0;
  width: 100%;
}
.l-section-full__content .l-grid:first-child {
  margin-top: 0;
}
.l-grid ~ .l-grid {
  margin-top: 0;
}
@media all and (min-width: 48em) {
  .l-grid {
    gap: 2.7777777778rem;
    row-gap: 1.1111111111rem;
    row-gap: 1.6666666667rem;
  }
}
.l-grid--no-margin {
  margin: 0;
}
.l-section__inner .l-grid:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 48em) {
  .l-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media all and (min-width: 48em) {
  .l-grid--3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media all and (min-width: 48em) {
  .l-grid--4 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media all and (min-width: 48em) {
  .l-grid--50\/50 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media all and (min-width: 48em) {
  .l-grid--75\/25 {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 300px);
  }
}
@media all and (min-width: 48em) {
  .l-grid--25\/75 {
    grid-template-columns: minmax(300px, 300px) minmax(0, 1fr);
  }
}

.l-gird-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.l-gird-section__content {
  grid-column: 1/-1;
}
@media all and (min-width: 48em) {
  .l-gird-section__content {
    grid-column: 2/12;
  }
}
.l-gird-section__content *:first-child:not(div) {
  margin-top: 0;
}
.l-gird-section__content *:last-child {
  margin-bottom: 0;
}

/*profile and project page*/
.l-right-col {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media all and (min-width: 48em) {
  .l-right-col {
    gap: 2.7777777778rem;
  }
}
.l-right-col__main {
  grid-column: span 12;
}
@media all and (min-width: 48em) {
  .l-right-col__main {
    grid-column: span 8;
  }
}
.l-right-col__aside {
  grid-column: span 12;
  position: relative;
  margin-top: 1.6666666667rem;
}
@media all and (min-width: 48em) {
  .l-right-col__aside {
    margin-top: 0;
    grid-column: span 4;
  }
  .l-right-col__aside:before {
    content: "";
    border-left: 1px solid #acbcc3;
    height: 100%;
    position: absolute;
    left: -25px;
  }
}
.l-right-col__slider {
  grid-column: span 12;
}
@media all and (min-width: 48em) {
  .l-right-col__slider {
    order: 3;
  }
}

/*Styles for the React Output App*/
#app {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-site__wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.l-container {
  padding: 1.6666666667rem 1.6666666667rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100vw;
}
@media all and (min-width: 60.625em) {
  .l-container {
    padding: 2.7777777778rem 2.7777777778rem;
  }
}
.l-container__inner {
  width: 100%;
  max-width: 1150px;
}

.l-section {
  --bg-img: url("../img/section-bg.png");
  margin-bottom: 2.7777777778rem;
}
.l-section__bg-img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: var(--bg-img);
}
.l-section__inner {
  width: 100%;
  max-width: 1150px;
}

.l-section-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100vw;
}
.l-section-full .l-section-full__item {
  width: 100%;
}
.l-section-full__content {
  padding: 1.6666666667rem 1.6666666667rem 1.6666666667rem 1.6666666667rem;
  max-width: 1150px;
  width: 100%;
}
.l-section-full__content + .l-section-full__content {
  padding-top: 0;
}
@media all and (min-width: 71.875em) {
  .l-section-full__content {
    padding: 1.6666666667rem 0;
  }
}

.home-icons {
  display: grid;
  gap: 1.1111111111rem;
  grid-template-columns: minmax(0, 1fr);
  margin: 0 !important;
}
@media all and (min-width: 48em) {
  .home-icons {
    gap: 1.6666666667rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media all and (min-width: 60.625em) {
  .home-icons {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media all and (min-width: 71.875em) {
  .home-icons {
    gap: 2.7777777778rem;
  }
}
.home-icons__item {
  aspect-ratio: 35/26;
  width: 100%;
  height: auto;
  max-width: 100%;
  list-style: none;
  color: #ffffff;
  margin-left: 0 !important;
  background-repeat: no-repeat;
  background-position: right 10px bottom 10px;
  background-origin: padding-box;
  background-size: auto calc(100% - 60px);
  font-size: 1.9444444444rem;
  font-weight: 700;
  border-radius: 40px;
  transition: transform 0.3s ease;
  line-height: 1.2;
  margin: 0 !important;
}
.home-icons__item:hover {
  transform: scale(1.05);
}
.home-icons__item-link {
  display: block;
  color: inherit;
  padding: 1.1111111111rem !important;
  width: 100%;
  height: 100%;
  text-decoration: none;
  line-height: 1;
}
.home-icons__item-link:hover {
  text-decoration: none;
}
.home-icons__item--bg-clipboard {
  background-image: url("/assets/img/home-icons/clipboard.svg");
}
.home-icons__item--bg-people {
  background-image: url("/assets/img/home-icons/people.svg");
}
.home-icons__item--bg-puzzle {
  background-image: url("/assets/img/home-icons/puzzle.svg");
}
.home-icons__item--bg-megaphone {
  background-image: url("/assets/img/home-icons/megaphone.svg");
}
.home-icons__item--bg-greet {
  background-image: url("/assets/img/home-icons/greet.svg");
}
.home-icons__item--bg-envelope {
  background-image: url("/assets/img/home-icons/envelope.svg");
}

.a-icon__svg {
  height: 20px;
  width: 20px;
  fill: currentColor;
}
.a-icon__svg--x2 {
  height: 40px;
  width: 40px;
}
.a-icon__svg--x3 {
  height: 60px;
  width: 60px;
}
.a-icon__svg--x4 {
  height: 80px;
  width: 80px;
}
.a-icon__svg--x5 {
  height: 100px;
  width: 100px;
}

.logo {
  width: 100%;
  max-width: 225px;
  display: block;
  position: absolute;
  margin-top: 8px;
}
.logo img {
  width: 100%;
  display: block;
}
@media all and (min-width: 48em) {
  .logo {
    margin-top: 0;
    position: static;
    max-width: 350px;
  }
}
@media all and (min-width: 71.875em) {
  .logo {
    max-width: 400px;
  }
}

.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 2;
}
.header--drop-shadow {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.header__top, .header__btm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100vw;
  padding: 0.8333333333rem 1.6666666667rem;
}
@media all and (min-width: 60.625em) {
  .header__top, .header__btm {
    padding: 1.3888888889rem 1.6666666667rem;
  }
}
.header__top--drop-shadow {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
@media all and (min-width: 60.625em) {
  .l-home .header__top--drop-shadow {
    box-shadow: none;
  }
}
.header__btm {
  padding: 0.8333333333rem 1.6666666667rem;
}
@media all and (min-width: 60.625em) {
  .l-home .header__btm {
    display: none !important;
  }
}
.header__cols {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 60.625em) {
  .header__col-left {
    width: 80%;
  }
}
.header__col-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-right: 47px;
}
@media all and (min-width: 60.625em) {
  .header__col-right {
    padding-right: 0;
    align-items: center;
  }
}
@media all and (min-width: 71.875em) {
  .header__col-right {
    width: 100%;
    max-width: 19.4444444444rem;
  }
}
.header__inner {
  width: 100%;
  max-width: 1150px;
}

/*======================
These are Site specific styles for hamburger nav.  For the actual vendor styles for the hamburger menu and animation, see ./scss/vendors/hamburger
======================*/
.hamburger * {
  pointer-events: none;
}
.hamburger__wrapper {
  position: absolute;
  display: flex;
  right: 0;
  align-items: center;
  top: 16px;
}
@media all and (min-width: 60.625em) {
  .hamburger__wrapper {
    top: calc(2.7777777778rem - 10px);
    display: none;
  }
}
.hamburger__text {
  padding: 30px 0 30px 0;
}

.navigation-sub__container {
  display: none;
  justify-content: center;
  background-color: #fed47a;
  width: 100%;
  padding: 0 1.6666666667rem;
}
@media all and (min-width: 60.625em) {
  .navigation-sub__container {
    display: flex;
  }
}
@media all and (min-width: 71.875em) {
  .navigation-sub__container {
    padding: 0;
  }
}
.navigation-sub__inner {
  display: flex;
  font-weight: 700;
}
.navigation-sub__item {
  margin-right: 2.7777777778rem;
  color: #193e72;
}
.navigation-sub__item--active {
  color: #ea5d4e;
}
.navigation-sub__link {
  display: block;
  padding: 0.3888888889rem 0;
  color: inherit;
}

@media all and (min-width: 60.625em) {
  .navigation {
    display: block;
  }
}
@media all and (min-width: 60.625em) {
  .navigation .navigation__inner {
    display: flex;
  }
}
.navigation__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1111111111rem;
}
@media all and (min-width: 60.625em) {
  .navigation__wrapper {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.navigation__item {
  font-weight: 700;
  color: #193e72;
  text-align: center;
}
@media all and (max-width: 60.5625em) {
  .navigation__item--mobile-hide > .navigation__link {
    display: none;
  }
}
@media all and (min-width: 60.625em) {
  .navigation__item {
    text-align: left;
  }
  .navigation__item .navigation {
    display: none;
  }
}
.navigation__item:hover .navigation__link {
  color: #f29330;
}
.navigation__item--active .navigation__link {
  color: #f29330;
}
.navigation__item a {
  display: block;
  transition: color 0.5s;
  color: inherit;
  text-decoration: none;
  padding: 5px 0;
}
@media all and (min-width: 60.625em) {
  .navigation__item a {
    padding: 0 2.7777777778rem;
  }
}
.navigation__item a:first-of-type {
  padding-left: 0;
}
.navigation__container {
  display: none;
}
.navigation__container[aria-hidden=true] {
  display: flex;
}
@media all and (min-width: 60.625em) {
  .navigation__container {
    display: flex !important;
  }
}
.navigation__container .header__cols {
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 60.625em) {
  .navigation__container .header__cols {
    flex-direction: row;
  }
}
@media all and (max-width: 60.5625em) {
  .navigation__container .header__col-right {
    padding-right: 0;
  }
}
@media all and (max-width: 60.5625em) {
  .navigation__container .btn--icon {
    margin-left: 0;
  }
}

.footer {
  font-size: 0.7222222222rem;
  background-color: #193e72;
  color: #ffffff;
}
@media all and (min-width: 48em) {
  .footer {
    font-size: 0.8888888889rem;
  }
}
.footer.l-container {
  padding-top: 2.2222222222rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media all and (min-width: 60.625em) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__top-right p {
  margin-bottom: 0;
}
@media all and (min-width: 48em) {
  .footer__top-right {
    display: block;
  }
}
.footer__btm {
  text-align: right;
  color: #ffffff;
}
.footer__btm a {
  color: inherit;
}
.footer__icons {
  display: flex;
  gap: 30px;
  margin-bottom: auto;
  flex-wrap: wrap;
}
@media all and (min-width: 60.625em) {
  .footer__icons {
    flex-wrap: nowrap;
  }
}
.footer__icons-icon {
  width: 100%;
  display: flex;
  align-items: center;
}
.footer__icons-icon:nth-child(n+2) {
  width: auto;
}
@media all and (min-width: 48em) {
  .footer__icons-icon {
    width: auto;
  }
}
@media all and (min-width: 60.625em) {
  .footer__icons-icon {
    width: 100%;
  }
  .footer__icons-icon:nth-child(n+2) {
    width: 100%;
  }
}

.hero__wrap {
  background-color: #193e72;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__inner {
  width: 100%;
  max-width: 1150px;
  height: 285px;
}
@media all and (min-width: 48em) {
  .hero__inner {
    height: auto;
  }
}
.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media all and (min-width: 48em) {
  .hero__img {
    object-fit: none;
    height: auto;
  }
}

.filter {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1.3888888889rem;
  margin-top: -5px;
}
.filter .l-grid {
  gap: 1.1111111111rem;
}
@media all and (min-width: 60.625em) {
  .filter .l-grid {
    gap: 2.7777777778rem;
  }
}
@media all and (min-width: 48em) {
  .filter__results.l-grid--3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media all and (min-width: 60.625em) {
  .filter__results.l-grid--3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media all and (min-width: 71.875em) {
  .filter {
    padding: 1.3888888889rem;
  }
}
.filter p {
  margin: 0 0 5px 0;
}
.filter__inner {
  width: 100%;
  max-width: 1150px;
}
.filter__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6666666667rem;
}
.filter__results.l-grid {
  gap: 1.1111111111rem;
}
@media all and (min-width: 60.625em) {
  .filter__results.l-grid {
    gap: 2.7777777778rem;
  }
}

.filter-dropdown {
  width: 100%;
  height: 100%;
  background-color: white;
  padding-right: 10px;
  color: #193e72;
  width: 100%;
  padding: 7px 15px;
  position: relative;
}
.filter-dropdown--selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  line-height: 1.2;
}
.filter-dropdown--selected svg {
  rotate: 90deg;
}
.filter-dropdown--selected[aria-expanded=true] svg {
  rotate: -90deg;
}
.filter-dropdown__list {
  position: absolute;
  background-color: white;
  list-style: none !important;
  margin: 0px 0 0 0 !important;
  padding: 0 !important;
  top: 51px;
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  max-height: 500px;
  overflow-y: auto;
  z-index: 2;
}
.filter-dropdown__list li {
  margin: 0 !important;
  padding: 8px 15px !important;
}
.filter-dropdown__list li[aria-selected=true] {
  background-color: #eff1f3;
}
.filter-dropdown__list li:hover {
  background-color: #193e72;
  color: white;
}

/*===================
VARIABLES
====================*/
.placeholder, .form__textarea::placeholder, .form__input::placeholder {
  color: #193e72;
  opacity: 1;
}

.form {
  /*===================
  INPUT
  ====================*/
  /*===================
  TEXT AREA
  ====================*/
  /*===================
  SELECT DROPDOWNS
  ====================*/
  /*===================
  CHECKBOXES
  ====================*/
  /*===================
  RADIO
  ====================*/
}
.form__row {
  margin-bottom: 2.7777777778rem;
  display: flex;
  flex-direction: column;
}
.form--inline .form__row:not(.form__row--block) {
  flex-direction: row;
}
.form__label {
  padding: 1.6666666667rem 1.6666666667rem 1.6666666667rem 0;
}
.form--inline .form__label {
  padding: 1.6666666667rem;
}
.form__input {
  padding: 1.6666666667rem;
  border: 1px solid #193e72;
  width: 100%;
  background-color: #ffffff;
}
.form__input--no-brd {
  border: none;
}
.form__textarea {
  width: 100%;
  padding: 1.6666666667rem;
}
.form__select {
  width: 100%;
  background-color: white;
  padding-right: 10px;
}
.form__select-input {
  color: #193e72;
  width: 100%;
  border: none;
  background: none;
  padding: 7px;
}
.form__checkbox {
  display: block;
  margin-right: 5px;
}
.form__checkbox-label {
  display: flex;
}
.form__checkbox-styled {
  display: block;
  position: relative;
  padding-left: calc(25px + 1.6666666667rem);
  margin-bottom: 1.6666666667rem;
  cursor: pointer;
  user-select: none;
}
.form__checkbox-styled-tick {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #f29330;
}
.form__checkbox-styled-tick::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #f29330;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.form__checkbox-styled input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__checkbox-styled input ~ .form__checkbox-styled-tick {
  background-color: #193e72;
}
.form__checkbox-styled input:checked ~ .form__checkbox-styled-tick {
  background-color: #193e72;
}
.form__checkbox-styled input:checked ~ .form__checkbox-styled-tick::after {
  display: block;
}
.form__radio-styled {
  display: block;
  position: relative;
  padding-left: calc(24px + 1.6666666667rem);
  margin-bottom: 1.6666666667rem;
  cursor: pointer;
  user-select: none;
}
.form__radio-styled-dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #193e72;
}
.form__radio-styled-dot::after {
  content: "";
  display: none;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #f29330;
}
.form__radio-styled input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__radio-styled input:checked ~ .form__radio-styled-dot {
  border-color: #193e72;
  background-color: transparent;
}
.form__radio-styled input:checked ~ .form__radio-styled-dot::after {
  display: block;
}

.btn {
  background-color: #193e72;
  padding: 0.5555555556rem 1.1111111111rem;
  color: #ffffff;
  transition: background-color 0.5s, color 0.5s;
  border-radius: 40px;
  font-weight: 700;
}
.btn--icon {
  padding-right: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--icon .a-icon__svg {
  margin-left: 1.6666666667rem;
}
.btn:hover {
  background-color: #193e72;
  color: #ffffff;
}
.btn--alt {
  background-color: #ffffff;
  color: #193e72;
  border: solid 1px #f29330;
}
.btn--alt:hover {
  background-color: #ffffff;
  color: #193e72;
}
.btn--alt .a-icon__svg svg {
  fill: #193e72;
}
.btn--wide {
  min-width: 280px;
  justify-content: space-between;
}
.btn--inline-content {
  margin-right: 0.5555555556rem;
  margin-bottom: 0.5555555556rem;
}
.btn--inline-content + p, .btn--inline-content + ul {
  margin-top: 1.6666666667rem;
}
.btn--sharepoint svg {
  fill: #f29330;
}
.btn__block {
  display: block;
  width: 100%;
}

.btn-block {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 1.6666666667rem 0;
  gap: 1.6666666667rem;
}
.btn-block .btn {
  width: 100%;
  margin: 0;
}
@media all and (min-width: 48em) {
  .btn-block {
    grid-template-columns: 1fr 1fr;
  }
}
.sharepoint-btn-block__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin: 2.7777777778rem 0;
}
.l-section-full__content + .sharepoint-btn-block__wrap {
  margin-top: 0;
}
.sharepoint-btn-block__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.sharepoint-btn-block__btn-container {
  grid-column: 2/span 11;
}

.search__wrap {
  width: 100%;
  max-width: 0px;
  justify-content: flex-end;
  transition: max-width 0.5s ease;
  border-radius: 40px;
  display: flex;
  overflow: hidden;
  margin-right: 10px;
  position: relative;
  background-color: white;
}
@media all and (min-width: 60.625em) {
  .search__wrap {
    overflow: visible;
    margin-right: 0;
    max-width: 20.5555555556rem;
  }
}
.search__wrap.search--open {
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2509803922);
  max-width: 20.5555555556rem;
  overflow: visible;
}
@media all and (min-width: 60.625em) {
  .search__wrap.search--open {
    box-shadow: none;
  }
}
.search__wrap input {
  appearance: none;
  -webkit-appearance: none !important;
  padding: 7px 1.1111111111rem 7px 1.1111111111rem;
  border-radius: 40px;
  border: 1px solid #ffffff;
  border-color: #193e72;
  max-width: 100%;
  border-radius: 40px 0 0 40px;
  border-right: none;
}
@media all and (min-width: 60.625em) {
  .search__wrap input {
    padding: 10px 1.1111111111rem 10px 1.1111111111rem;
  }
}
.search__btn {
  border-radius: 40px;
  padding: 0 1.1111111111rem;
  border-radius: 0 40px 40px 0;
  border: 1px solid #193e72;
  border-left: none;
}
.search__toggle {
  height: 100%;
  display: flex;
}
.search__toggle svg {
  width: 25px;
  height: 25px;
}
@media all and (min-width: 60.625em) {
  .search__toggle {
    display: none !important;
  }
}
.search--open + .search__toggle .search__toggle-open {
  display: none;
}
.search__toggle-close {
  display: none;
}
.search--open + .search__toggle .search__toggle-close {
  display: block;
}

.search-result {
  margin-bottom: 2.7777777778rem;
}
.search-result__heading {
  margin-bottom: 0.5555555556rem;
}

.card {
  margin-bottom: 1.6666666667rem;
}
.card__type {
  color: #ea5d4e;
  font-weight: 700;
  font-size: 0.8888888889rem;
}
@media all and (min-width: 60.625em) {
  .card__type {
    font-size: 1rem;
  }
}
.card__heading {
  font-size: 1.2222222222rem;
  line-height: 1.2;
  margin: 0;
}
@media all and (min-width: 48em) {
  .card__heading {
    font-size: 1.1111111111rem;
  }
}
@media all and (min-width: 71.875em) {
  .card__heading {
    font-size: 1.2222222222rem;
  }
}
.card__desc {
  font-size: 22;
  color: #193e72;
}
.card__btm {
  margin-top: 0.5555555556rem;
}
.card__img img {
  width: 100%;
}

.card-output {
  --card-padding: 1.6666666667rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.3;
}
.card-output__heading {
  margin: 0;
  font-weight: 400;
  font-size: 1.1111111111rem;
  line-height: 1.3;
}
@media all and (min-width: 48em) {
  .card-output__heading {
    font-size: 1.2222222222rem;
  }
}
.card-output__inner {
  padding: 1.3888888889rem;
}
.card-output__date {
  font-size: 0.7777777778rem;
  font-weight: 700;
  margin-bottom: 0.2777777778rem;
}
.card-output__desc {
  color: #000000;
  font-size: 0.8888888889rem;
  padding: 1.3888888889rem 0 0 0;
}
.card-output__desc p {
  margin: 0;
}
@media all and (min-width: 48em) {
  .card-output__desc {
    font-size: 1rem;
  }
}
.card-output .card-output__btm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1.3888888889rem 1.3888888889rem 1.3888888889rem;
  width: 100%;
  margin-top: auto;
}
.card-output .card-output__btm .card-output__date {
  margin-bottom: 1.3888888889rem;
}
@media all and (min-width: 60.625em) {
  .card-output .card-output__btm {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .card-output .card-output__btm .card-output__date {
    margin-bottom: 0;
  }
}

.card-profile {
  background-color: #ffffff;
  margin-bottom: 1.3888888889rem;
}
@media all and (min-width: 48em) {
  .card-profile {
    padding-right: 25px;
    padding-left: 25px;
  }
  .l-right-col__aside .card-profile {
    padding: 0;
  }
}
.card-profile .card__img {
  width: 100%;
  margin-bottom: 0.7222222222rem;
  display: block;
}
.card-profile .card__img img {
  display: block;
}
.card-profile__name {
  font-size: 1.2222222222rem;
}
@media all and (min-width: 48em) {
  .card-profile__name {
    font-size: 1.1111111111rem;
  }
}
@media all and (min-width: 60.625em) {
  .card-profile__name {
    font-size: 1.2222222222rem;
  }
}
.card-profile .card__btm {
  margin-top: 0.7222222222rem;
}
.card-profile .card__heading {
  font-size: 0.8888888889rem;
  font-weight: 700;
  line-height: 1.2;
}
@media all and (min-width: 60.625em) {
  .card-profile .card__heading {
    font-size: 1rem;
  }
}
.card-profile .card__heading span {
  display: block;
}
.card-profile .card__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0;
}
.card-profile__location {
  color: #ea5d4e;
}
.card-profile__position {
  font-size: 1.2222222222rem;
  font-weight: 400;
}
@media all and (min-width: 48em) {
  .card-profile__position {
    font-size: 1.1111111111rem;
  }
}
@media all and (min-width: 71.875em) {
  .card-profile__position {
    font-size: 1.2222222222rem;
  }
}

.f-carousel {
  --f-carousel-slide-width: 100%;
  --f-carousel-slides-per-page:1;
}
@media all and (min-width: 48em) {
  .f-carousel {
    /*
    -f-carousel-slide-width: calc(100% / 2);


            --f-carousel-spacing: 50px;
            --f-carousel-slide-width: calc((100% - 100px) / 2);


            */
    --f-carousel-slide-width: calc((100% - 2.7777777778rem) / 2);
    --f-carousel-slides-per-page:2;
    --f-carousel-spacing: 2.7777777778rem;
  }
}
.slider__slide {
  display: flex;
}
.slider__slide .card {
  width: 100%;
}

/*====CAROUSEL STYLES===*/
.f-carousel {
  --f-button-svg-stroke-width: 0;
  --f-button-svg-fill: #ffffff;
  --f-button-svg-width:22px;
  --f-button-svg-height:22px;
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-hover-bg: #193e72;
  --f-carousel-dots-width:25px;
  --f-carousel-dots-height:20px;
  --f-carousel-dot-width:15px;
  --f-carousel-dot-height:15px;
  --f-carousel-dot-opacity: 1;
}
.f-carousel.has-dots {
  margin-bottom: 0 !important;
}

.f-carousel__nav {
  justify-content: center;
  gap: 30px;
  margin-top: 2.7777777778rem;
  display: flex;
  gap: 2.7777777778rem;
  justify-content: space-between;
}
@media all and (min-width: 48em) {
  .f-carousel__nav {
    width: 80%;
    margin: 2.7777777778rem auto 0 auto;
    padding: 0 1.3888888889rem;
  }
}
.f-carousel__dots {
  transform: translateY(-30px);
}
.f-carousel__dots .f-carousel__dot {
  background-color: #ffffff;
}
.f-carousel__dots .is-current .f-carousel__dot {
  background-color: #193e72;
}
.f-carousel__dots li {
  margin: 0 !important;
  padding: 0 !important;
}

.f-button {
  position: static !important;
  transform: none !important;
  border: none;
  stroke: none;
  fill: #ffffff;
  background-color: #193e72;
  border-radius: 40px;
  border: 1px solid #ffffff;
}
.f-button:hover {
  opacity: 0.8;
}
.f-button.is-prev {
  order: 1;
  transform: rotate(180deg) !important;
}
.f-button.is-next {
  order: 2;
}

.tags {
  font-weight: 700;
  color: #f29330;
  margin-bottom: 0.2777777778rem;
}
.tags__icon {
  margin-right: 8px;
  color: #193e72;
}
.tags-list {
  font-size: 0.7777777778rem;
  display: flex;
  margin: 0 !important;
}
.tags-list li {
  display: flex;
  margin: 0 !important;
  padding: 0;
  list-style: none;
  padding-right: 5px;
  padding-left: 0 !important;
}
.tags-list li + li {
  border-left: 1px solid #acbcc3;
  padding-left: 5px !important;
}

.image-grid {
  display: flex;
  align-items: center;
  gap: 1.1111111111rem;
  margin: 2.7777777778rem 0;
  flex-direction: column;
}
@media all and (min-width: 48em) {
  .image-grid {
    flex-direction: row;
    gap: 2.7777777778rem;
  }
}
.image-grid img {
  max-width: 200px;
  display: block;
}
@media all and (min-width: 48em) {
  .image-grid img {
    max-width: none;
  }
}
.image-grid--fixed-height {
  display: flex;
}
.image-grid--fixed-height .image-grid__item {
  display: flex;
  align-items: center;
}
@media all and (min-width: 48em) {
  .image-grid--fixed-height .image-grid__item img {
    max-height: 115px; /* Set the desired height for all images */
    object-fit: contain; /* Ensure images fit within the height while maintaining their aspect ratio */
    width: 100%;
  }
}

.accordion {
  margin: 0 !important;
}
.l-section-full__content + .accordion {
  margin-top: 2.7777777778rem !important;
}
.accordion__heading {
  margin: 0;
  font-size: 1.2222222222rem;
  color: #193e72;
  font-weight: 700;
}
@media all and (min-width: 48em) {
  .accordion__heading {
    font-size: 1.2222222222rem;
  }
}
.accordion__heading-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  grid-gap: 30px;
  max-width: 1150px;
  margin: 0 auto;
}
@media all and (min-width: 48em) {
  .accordion__heading-inner {
    grid-template-columns: repeat(12, 1fr);
  }
}
.accordion__heading-col {
  display: flex;
}
.accordion__heading button {
  color: inherit;
  font-size: inherit;
}
.accordion > li, .accordion > .accordion__item {
  margin: 0 0 1.1111111111rem 0 !important;
  list-style: none;
  padding-left: 0;
  padding: 0 !important;
}
.accordion dd {
  padding: 0;
}
.accordion__trigger {
  background: none;
  display: grid;
  grid-template-columns: 1fr;
  color: hsl(0, 0%, 13%);
  font-weight: 700;
  font-size: 1.2222222222rem;
  margin: 0;
  position: relative;
  text-align: left;
  width: 100%;
  outline: none;
  border: 0;
  border-top: 2px solid #f29330;
  padding: 1.1111111111rem 0 0 0;
}
.accordion__trigger-text {
  grid-column: span 5;
}
.accordion__trigger-text-inner {
  margin-bottom: 1.1111111111rem;
}
@media all and (min-width: 48em) {
  .accordion__trigger-text {
    grid-column: span 10;
  }
}
.accordion__trigger-icon {
  display: none;
}
@media all and (min-width: 48em) {
  .accordion__trigger-icon {
    display: block;
  }
}
.accordion__trigger-chevron {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f29330;
  transform: rotate(90deg);
  border: 1px solid #193e72;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  grid-column: -1;
}
.accordion__trigger-chevron svg {
  transition: transform 0.2s ease-in-out;
}
.accordion__trigger-chevron .a-icon__svg {
  width: 22px;
  height: 22px;
}
@media all and (min-width: 48em) {
  .accordion__trigger-chevron .a-icon__svg {
    width: 22px;
    height: 22px;
  }
}
.accordion__trigger[aria-expanded=true] .accordion__trigger-chevron svg {
  transform: rotate(-180deg);
}
.accordion__trigger:focus {
  outline: 4px solid transparent;
}
.accordion__content {
  transition: all 0.5s cubic-bezier(0.41, 0.97, 0.36, 0.78);
  overflow: hidden;
  border-bottom: 5px solid white;
  max-width: calc(100% - 50px);
}
.accordion__content-inner {
  padding: 0 0 1.1111111111rem 0;
  max-width: 1150px;
  margin: 0 auto;
}
@media all and (max-width: 47.9375em) {
  .accordion__content-inner {
    grid-template-columns: 1fr;
  }
}
.accordion__content-inner > :last-child {
  margin-bottom: 0;
}
.accordion--alt > li, .accordion--alt > .accordion__item {
  margin-bottom: 2.7777777778rem;
}
.accordion--alt .accordion__trigger {
  border: none;
}
.accordion--alt .accordion__content-inner {
  padding-left: 0;
  padding-right: 0;
  margin: 0 2.7777777778rem;
  border-top: 1px solid #193e72;
}

.property .accordion__content-inner {
  border-top: 0;
}
.property .accordion__content-inner {
  padding-top: 5px;
}

.arrow {
  stroke: none;
  background-color: #ea5d4e;
  border-radius: 40px;
  border: 1px solid #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow__link {
  color: #ffffff;
}
.arrow svg {
  width: 15px;
  height: 15px;
}
.arrow__back {
  transform: rotate(180deg) !important;
}
.pagination .arrow {
  width: 50px;
  height: 50px;
}

.l-article {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.l-article__main {
  grid-column: span 12;
}
@media all and (min-width: 48em) {
  .l-article__main {
    grid-column: span 9;
  }
}
.l-article__aside {
  grid-column: span 12;
  position: relative;
}
.l-article__aside:before {
  content: "";
  border-left: 1px solid #acbcc3;
  height: 100%;
  position: absolute;
  left: -15px;
}
@media all and (min-width: 48em) {
  .l-article__aside {
    grid-column: span 3;
  }
}

.article__heading {
  color: #193e72;
  font-size: 1.9444444444rem;
  font-weight: 400;
  padding-bottom: 1.6666666667rem;
  border-bottom: 1px solid #acbcc3;
  line-height: 1.2;
}
@media all and (min-width: 48em) {
  .article__heading {
    min-height: 7.5rem;
  }
}
.article__nav-item {
  display: block;
  margin-bottom: 2.7777777778rem;
  color: #000000;
  color: #193e72;
  text-decoration: underline;
}
.article__nav-item:hover {
  text-decoration: none;
}
.article__footer {
  color: #193e72;
}
.article__details {
  color: #000000;
  font-weight: 700;
  margin-bottom: 2.2222222222rem;
}
.article__content h2, .article__content .u-h2 {
  font-size: 1.2222222222rem;
}
.article__content h2, .article__content h3, .article__content h4, .article__content h5 {
  margin: 0;
  color: #2ea9b0;
}

.block--grey {
  background-color: #eff1f3;
}
.block--grey .block__body {
  overflow: hidden;
  padding: 0 1.1111111111rem 0 1.1111111111rem;
}

.contact__heading {
  color: #f29330;
}
.contact__sub-heading {
  font-size: 1.1111111111rem;
  margin: 0;
}
.contact p {
  margin-bottom: 10px;
}
.contact__col {
  flex-direction: column;
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.1111111111rem;
}
.contact__add-btm {
  padding-top: 1.1111111111rem;
}
.contact__add-btm a {
  display: inline-block;
}

/* The Modal (background) */
.modal {
  display: flex;
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 0;
  width: 100vw; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(25, 62, 114, 0.8); /* Black w/ opacity */
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}
@media screen and (min-height: 571px) {
  .modal {
    align-items: center;
  }
}
.modal--open {
  opacity: 1;
  visibility: visible;
}
.modal__inner {
  padding: 2.7777777778rem;
}
.modal__wrap {
  position: relative;
  background-color: #fefefe;
  max-width: 1150px;
  overflow: auto;
  max-height: 100%;
}
.modal--close {
  position: absolute;
  right: 30px;
  top: 30px;
  color: #f29330;
}
.modal--close:hover, .modal--close:focus {
  color: #193e72;
  text-decoration: none;
  cursor: pointer;
}
.modal__social {
  display: flex;
  gap: 1.1111111111rem;
}
.modal__social-item img {
  width: 100%;
  max-height: 3.3333333333rem;
}

.ourpeople__intro {
  color: #193e72;
}
@media all and (min-width: 48em) {
  .ourpeople__intro {
    font-size: 1.2222222222rem;
  }
}
.ourpeople__list {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}
@media all and (min-width: 48em) {
  .ourpeople__list {
    width: calc(100% + 50px);
    margin-left: -25px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ourpeople__list::before, .ourpeople__list::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #acbcc3;
  }
  .ourpeople__list::before {
    left: 33.3333333333%; /* Center of the first gap */
  }
  .ourpeople__list::after {
    left: 66.6666666667%;
  }
}

.profile__header {
  margin-bottom: 1.9444444444rem;
}
@media all and (min-width: 48em) {
  .profile__header {
    margin-bottom: 2.2222222222rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6666666667rem;
  }
}
@media all and (min-width: 71.875em) {
  .profile__header {
    gap: 2.7777777778rem;
  }
}
.profile__header-left {
  margin-bottom: 10px;
}
@media all and (min-width: 48em) {
  .profile__header-left {
    margin-bottom: 0;
  }
}
.profile__header-left img {
  width: 100%;
  display: block;
}
.profile__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.profile__loc {
  font-weight: 700;
  color: #ea5d4e;
}
@media all and (min-width: 48em) {
  .profile__loc {
    font-size: 1.2222222222rem;
  }
}
.profile__pos {
  font-size: 1.2222222222rem;
  line-height: 1.2;
  color: #193e72;
}
@media all and (min-width: 48em) {
  .profile__pos {
    font-size: 1.3888888889rem;
  }
}
@media all and (min-width: 60.625em) {
  .profile__pos {
    font-size: 1.8333333333rem;
  }
}
.profile__email {
  margin-top: 1.1111111111rem;
}
@media all and (min-width: 48em) {
  .profile__email {
    margin-top: 10px;
  }
}
@media all and (min-width: 60.625em) {
  .profile__email {
    margin-top: auto;
  }
}

.profile-project__pagination {
  display: flex;
  gap: 10px;
  color: #193e72;
}
.profile-project__pagination-item--active {
  color: #f29330;
}

.pagination {
  display: flex;
  margin: 1.6666666667rem 0 0 0;
  justify-content: center;
  gap: 2.7777777778rem;
}
@media all and (min-width: 48em) {
  .pagination {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}
.pagination .arrow__fwd {
  grid-column: 3;
}
.pagination .arrow__back {
  grid-column: 1;
}
@media all and (min-width: 48em) {
  .pagination .arrow__back {
    margin-left: auto;
  }
}
.pagination__pages {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 2;
}
.pagination__page {
  color: #193e72;
  padding: 3px;
  font-weight: 700;
}
.pagination__page--active {
  color: #f29330;
}
.pagination__page--active:visited {
  color: #f29330;
}
.pagination__prev {
  transform: rotate(180deg) !important;
}

.project__status {
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  height: 1.3888888889rem;
  width: 7.2222222222rem;
  background-color: #ea5d4e;
  color: #ffffff;
  font-size: 0.8888888889rem;
  position: absolute;
}
.project__status--complete {
  background-color: #193e72;
}

.project-theme {
  display: grid;
  grid-template-columns: 1fr;
}
@media all and (min-width: 48em) {
  .project-theme {
    gap: 1.1111111111rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media all and (min-width: 60.625em) {
  .project-theme {
    gap: 2.7777777778rem;
  }
}
.project-theme__item {
  position: relative;
  padding-top: 50%;
  border-radius: 40px;
  margin-bottom: 2.7777777778rem;
}
@media all and (min-width: 48em) {
  .project-theme__item {
    margin-bottom: 0;
  }
}
.project-theme__item-heading {
  top: 0;
  position: absolute;
  font-size: 1.9444444444rem;
  color: #ffffff;
  padding: 1.3888888889rem 1.1111111111rem;
}
@media all and (min-width: 48em) and (max-width: 60.5625em) {
  .project-theme__item-heading {
    font-size: 1.6666666667rem;
    padding: 0.8333333333rem 1.1111111111rem;
  }
}
.project-theme__item-img img {
  width: 100%;
  display: block;
  border-radius: 0 0 40px 40px;
}

.project-list__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1.1111111111rem;
  margin-bottom: 1.6666666667rem;
  background: #ffffff;
  justify-content: space-between;
}
@media all and (min-width: 48em) {
  .project-list__item {
    flex-direction: row;
  }
}
.project-list__item:hover {
  text-decoration: none;
}
.project-list__item-desc {
  color: #000000;
}
@media all and (min-width: 48em) {
  .project-list__item-desc {
    margin-bottom: 1.1111111111rem;
  }
}
.project-list__item-left {
  padding: 1.6666666667rem;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 48em) {
  .project-list__item-left {
    width: 60%;
  }
}
.project-list__item-left-btm {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 1.3888888889rem;
}
@media all and (min-width: 48em) {
  .project-list__item-left-btm {
    margin-top: auto;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
  }
}
.project-list__item-left-btm .tags {
  order: 2;
  color: #ea5d4e;
}
@media all and (min-width: 48em) {
  .project-list__item-left-btm .tags {
    order: 1;
  }
}
@media all and (min-width: 48em) and (max-width: 60.5625em) {
  .project-list__item-left-btm .tags-list {
    flex-direction: column;
  }
  .project-list__item-left-btm .tags-list li + li {
    padding-left: 0 !important;
    border-left: 0;
  }
}
.project-list__item-left-btm .btn {
  order: 1;
  margin-bottom: 1.3888888889rem;
}
@media all and (min-width: 48em) {
  .project-list__item-left-btm .btn {
    margin-bottom: 0;
    order: 2;
  }
}
@media all and (min-width: 48em) {
  .project-list__item-right {
    width: 40%;
    max-width: 450px;
  }
}
.project-list__item-heading {
  font-size: 22px;
}
.project-list__item-img {
  height: 100%;
}
.project-list__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-profile__col-heading {
  font-size: 1.3888888889rem;
  margin: 20px 0 15px 0;
}
.project-profile__col-heading:first-child {
  margin-top: 0;
}
.project-profile__img {
  margin-bottom: 1.1111111111rem;
}
.project-profile__img img {
  width: 100%;
  display: block;
}
.project-profile__slider {
  background: url("/assets/img/swirl.png") #f29330 no-repeat center;
  background-size: auto 100%;
  display: flex;
  justify-content: center;
  padding: 1.6666666667rem 0;
  width: calc(100vw - var(--scrollbar-width));
  margin: 0 0 1.6666666667rem calc((100% - 100vw) / 2);
}
@media all and (min-width: 71.875em) {
  .project-profile__slider {
    width: calc(100vw - var(--scrollbar-width)); /* Use the CSS variable for the scrollbar width */
    margin: 0 0 0 calc((100% - 100vw) / 2);
    margin-left: calc((100vw - 1150px - var(--scrollbar-width)) / -2); /* Adjust margin-left accounting for scrollbar */
  }
}
.project-profile__slider-heading {
  color: #ffffff;
}
.project-profile__slider-inner {
  width: 100%;
  max-width: 1150px;
  padding: 0 1.6666666667rem;
}
@media all and (min-width: 71.875em) {
  .project-profile__slider-inner {
    padding: 0;
  }
}
.project-profile__heading {
  font-size: 1.2222222222rem;
  line-height: 1.2;
}
@media all and (min-width: 48em) {
  .project-profile__heading {
    min-height: 170px;
    font-size: 1.9444444444rem;
  }
}
.project-profile-tags {
  border-top: 2px solid #f29330;
  margin-bottom: 1.1111111111rem !important;
}
@media all and (min-width: 48em) {
  .project-profile-tags {
    margin-bottom: 2.7777777778rem !important;
  }
}

.social__links {
  display: flex;
}
.social__links-item {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.social__links-item a {
  display: flex;
}

/**
 * Use this file to add in temporary styles.  For example overriding legacy styles.
 * These styles will be added with the intention to remove them  once time to refactor
 *
 */
/*# sourceMappingURL=styles.css.map */
