@charset "UTF-8";
/* ==== Fade in Transition === */
/* ==== Buttons and text links === */
.c-color-turq {
  color: #16999C;
}

.c-color-blue {
  color: #202230;
}

/*------------------------------------*\
  #FONTFACE
\*------------------------------------*/
@font-face {
  font-family: "Noe Display Medium";
  src: url("../fonts/Noe Display Medium.eot");
  src: url("../fonts/Noe Display Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Noe Display Medium.woff") format("woff");
}
/*------------------------------------*\
  #RESET
\*------------------------------------*/
/**
 * As well as using Normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body,
h1, h2, h3, h4, h5, h6,
blockquote, pre,
dl, dd,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

p {
  margin-block-start: 0;
}

li {
  margin-top: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/*------------------------------------*\
  #FORMS
\*------------------------------------*/
.form-padding {
  max-width: 600px;
  margin: 0 auto;
}

button:hover,
html [type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  cursor: pointer;
}

fieldset {
  border: solid 0 black;
}

form .form-item {
  display: block;
}
form input {
  border: solid 1px grey;
  padding: 6px 7px;
  width: 100%;
  display: block;
  font-size: 1rem;
}
form input[type=submit] {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition: all 0.3s;
  border: solid 1px #16999C;
  color: #16999C;
  background-color: transparent;
  position: relative;
  margin-top: 20px;
}
form input[type=submit]:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s linear;
}
form input[type=submit]:hover:before, form input[type=submit]:focus:before, form input[type=submit]:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
form input[type=submit]:hover {
  color: #ffffff;
  border-color: #16999C;
  background-color: #16999C;
}
form input[type=radio] {
  width: auto;
  display: inline-block;
  margin-right: 4px;
}
form .radio-wrap label {
  margin-right: 4px;
}
form input[type=text],
form input[type=email],
form input[type=password] {
  height: 36px;
  vertical-align: middle;
  margin-bottom: 10px;
}
form input[type=checkbox] {
  width: auto;
  display: inline-block;
}
form textarea {
  clear: left;
  display: block;
  margin-top: 5px;
  width: 100%;
  border: solid 0 transparent;
  background-color: transparent;
  padding: 0;
  font-size: 1rem;
  transition: all 0.1s ease-in-out;
}
.c-checkbox {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
}
.c-checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #000000;
  border: solid 1px #d2d3d6;
}
.c-checkbox input:checked ~ .indicator {
  background: #d2d3d6;
}
.indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.c-checkbox input:checked ~ .indicator:after {
  display: block;
}
.c-checkbox .indicator:after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.thanks-padding {
  padding-top: 200px;
  padding-bottom: 150px;
}

.XXX {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 40%;
}
.XXX.red {
  background-color: red;
}
.XXX.green {
  background-color: green;
}

.test {
  display: block;
}

.cssgrid .l-cssgrid-wrapper {
  display: grid;
  grid-gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 48em) {
  .cssgrid .l-cssgrid-wrapper {
    grid-gap: 25px;
    grid-template-columns: repeat(12, 1fr);
  }
}
.cssgrid .l-cssgrid-wrapper.align-center {
  align-items: center;
}
@media (min-width: 48em) {
  .cssgrid .l-cssgrid-wrapper.no-gaps {
    grid-gap: 0;
  }
}

.l-flex-grid {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  float: left;
  width: 100%;
}

.grid__item {
  width: 100%;
  margin-bottom: 1em;
  list-style-type: none;
  position: relative;
}
@media (min-width: 48em) {
  .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
@media (min-width: 83.375em) {
  .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
.grid__item:last-child {
  margin-right: 0;
}
.grid--columns-2 .grid__item {
  width: 100%;
  margin-bottom: 1em;
  list-style-type: none;
  position: relative;
}
@media (min-width: 48em) {
  .grid--columns-2 .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
@media (min-width: 83.375em) {
  .grid--columns-2 .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
.grid--columns-2 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .grid--columns-2 .grid__item {
    width: calc(50% - 40px);
  }
  .grid--columns-2 .grid__item:nth-child(2n) {
    margin-right: 0;
  }
}
.grid--columns-2-1 .grid__item {
  width: 100%;
  margin-bottom: 1em;
  list-style-type: none;
  position: relative;
}
@media (min-width: 48em) {
  .grid--columns-2-1 .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
@media (min-width: 83.375em) {
  .grid--columns-2-1 .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
.grid--columns-2-1 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .grid--columns-2-1 .grid__item {
    width: calc(50% - 100px);
    margin: 0 100px 4% 0;
  }
  .grid--columns-2-1 .grid__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 83.375em) {
  .grid--columns-2-1 .grid__item {
    margin: 0 100px 4% 0;
  }
}
.grid--columns-3 .grid__item {
  width: 100%;
  margin-bottom: 1em;
  list-style-type: none;
  position: relative;
}
@media (min-width: 48em) {
  .grid--columns-3 .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
@media (min-width: 83.375em) {
  .grid--columns-3 .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
.grid--columns-3 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .grid--columns-3 .grid__item {
    width: calc(50% - 40px);
  }
  .grid--columns-3 .grid__item:nth-child(even) {
    margin-right: 0;
  }
  .grid--columns-3 .grid__item:nth-child(odd) {
    margin-right: 40px;
  }
}
@media (min-width: 64em) {
  .grid--columns-3 .grid__item {
    width: calc(33.33% - 40px);
  }
  .grid--columns-3 .grid__item:nth-child(2n) {
    margin-right: 40px;
  }
  .grid--columns-3 .grid__item:nth-child(3n) {
    margin-right: 0;
  }
}
.grid--columns-4 .grid__item {
  width: 100%;
  margin-bottom: 1em;
  list-style-type: none;
  position: relative;
}
@media (min-width: 48em) {
  .grid--columns-4 .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
@media (min-width: 83.375em) {
  .grid--columns-4 .grid__item {
    margin: 0 40px 4% 0;
    width: auto;
  }
}
.grid--columns-4 .grid__item:last-child {
  margin-right: 0;
}
@media (min-width: 37.5em) {
  .grid--columns-4 .grid__item {
    width: 49%;
  }
  .grid--columns-4 .grid__item:nth-child(1n) {
    margin-right: 2%;
  }
  .grid--columns-4 .grid__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 48em) {
  .grid--columns-4 .grid__item {
    width: 23.5%;
  }
  .grid--columns-4 .grid__item:nth-child(2n) {
    margin-right: 2%;
  }
  .grid--columns-4 .grid__item:nth-child(3n) {
    margin-right: 2%;
  }
  .grid--columns-4 .grid__item:nth-child(4n) {
    margin-right: 0;
  }
}

h1 {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 3.0625rem;
  line-height: 60px;
  margin-bottom: 20px;
  color: #ffffff;
}
@media (min-width: 48em) {
  h1 {
    font-size: 3.75rem;
    line-height: 65px;
    margin-bottom: 30px;
  }
}
@media (min-width: 64em) {
  h1 {
    font-size: 4.375rem;
    line-height: 85px;
    margin-bottom: 30px;
  }
}

h2 {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 2.25rem;
  line-height: 42px;
  margin-bottom: 20px;
  color: #16999C;
  text-align: center;
}
@media (min-width: 48em) {
  h2 {
    font-size: 2.5rem;
    line-height: 48px;
    text-align: left;
  }
}

h3 {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 1.375rem;
  line-height: 26px;
  margin-bottom: 20px;
  color: #16999C;
  position: relative;
}
@media (min-width: 48em) {
  h3 {
    font-size: 1.625rem;
    line-height: 31px;
  }
}
h3.entryId-37 {
  color: #bf4498;
}

h4 {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #16999C;
}
@media (min-width: 48em) {
  h4 {
    font-size: 1.5rem;
    line-height: 34px;
  }
}

h5 {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 1.125rem;
  margin-bottom: 20px;
  line-height: 22px;
}
@media (min-width: 48em) {
  h5 {
    font-size: 1.5625rem;
    margin-bottom: 30px;
    line-height: 30px;
  }
}

.white-text p {
  color: #ffffff;
}

.l-margins-auto {
  margin: 0 auto;
}

.mar-left-127 {
  margin-left: 0;
}
@media (min-width: 48em) {
  .mar-left-127 {
    margin-left: 127px;
  }
}

.h-mar-btm-20 {
  margin-bottom: 20px;
}

.mar-btm-100 {
  margin-bottom: 50px;
}
@media (min-width: 48em) {
  .mar-btm-100 {
    margin-bottom: 100px;
  }
}

.h-mob-pad-only {
  padding: 0 20px;
}
@media (min-width: 48em) {
  .h-mob-pad-only {
    padding: 0;
  }
}

.pad-top-15 {
  padding-top: 15px;
}

.pad-top-40 {
  padding-top: 40px;
}

.pad-top-50 {
  padding-top: 50px;
}

.pad-top-100 {
  padding-top: 50px;
}
@media (min-width: 48em) {
  .pad-top-100 {
    padding-top: 100px;
  }
}

.pad-top-150 {
  padding-top: 150px;
}

.pad-top-200 {
  padding-top: 100px;
}
@media (min-width: 48em) {
  .pad-top-200 {
    padding-top: 200px;
  }
}

.pad-top-btm-100 {
  padding: 50px 0;
}
@media (min-width: 48em) {
  .pad-top-btm-100 {
    padding: 100px 0;
  }
}

.pad-btm-40 {
  padding-bottom: 40px;
}

.pad-btm-50 {
  padding-bottom: 50px;
}

.pad-btm-60 {
  padding-bottom: 50px;
}
@media (min-width: 48em) {
  .pad-btm-60 {
    padding-bottom: 60px;
  }
}

.pad-btm-80 {
  padding-bottom: 50px;
}
@media (min-width: 48em) {
  .pad-btm-80 {
    padding-bottom: 80px;
  }
}

.pad-btm-100 {
  padding-bottom: 50px;
}
@media (min-width: 48em) {
  .pad-btm-100 {
    padding-bottom: 100px;
  }
}

.c-mobile-padding-top {
  height: 100px;
}
@media (min-width: 48em) {
  .c-mobile-padding-top {
    height: 0;
  }
}

.clear {
  clear: left;
}

.h-align-center {
  text-align: center;
}

.h-position-relative {
  position: relative;
}

.h-display-block {
  display: block;
}

.h-lineheight-0 {
  line-height: 0;
}

/*------------------------------------*\
  #IMAGES
\*------------------------------------*/
img {
  width: 100%;
  height: auto;
  line-height: 0;
}
img.l-image-desk {
  display: none;
}
@media (min-width: 48em) {
  img.l-image-desk {
    display: block;
  }
}
img.l-image-mobile {
  display: block;
}
@media (min-width: 48em) {
  img.l-image-mobile {
    display: none;
  }
}

/**
 * High-level, page-level styling.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. Prevent certain mobile browsers from automatically zooming fonts.
 * 5. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 */
html {
  font-size: 1em; /* [1] */
  line-height: 26px;
  overflow-y: scroll; /* [2] */
  min-height: 100%; /* [3] */
  -webkit-text-size-adjust: 100%; /* [4] */
  -ms-text-size-adjust: 100%; /* [4] */
  -moz-osx-font-smoothing: grayscale; /* [5] */
  -webkit-font-smoothing: antialiased; /* [5] */
  color: #202230;
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: normal;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  /* Instead use this non-standard one: */
  word-break: break-word;
}
@media (min-width: 48em) {
  html {
    font-size: 1em; /* [1] */
  }
}

body {
  background-color: #E5E5E5;
  overflow: auto;
}

.l-row-wrap {
  display: inline-block;
  width: 100%;
  position: relative;
  float: left;
}
.l-row-wrap.blue {
  background-color: #202230;
  color: white;
}
.l-row-wrap.blue.special {
  background-color: #E5E5E5;
  color: #202230;
}
@media (min-width: 48em) {
  .l-row-wrap.blue.special {
    background-color: #202230;
    color: white;
  }
}
.l-row-wrap.blue .c-tag,
.l-row-wrap.blue .c-small-text,
.l-row-wrap.blue .c-title {
  color: #ffffff;
}
.l-row-wrap.white {
  background-color: #ffffff;
}
.l-row-wrap.grey-dark {
  background-color: #d2d3d6;
}
.l-row-wrap.turq {
  background-color: #16999C;
  color: white;
}
.l-row-wrap.turq h3 {
  color: #202230;
}
.l-row-wrap.turq a, .l-row-wrap.turq p {
  color: #ffffff;
}

.l-row-restricted {
  padding: 0 20px;
  width: 100%;
}
@media (min-width: 48em) {
  .l-row-restricted {
    width: calc(100% - 80px);
    margin: 0 40px;
    padding: 0;
  }
}
@media (min-width: 83.375em) {
  .l-row-restricted {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.l-row-restricted.desk-only {
  padding: 0;
  width: 100%;
}
@media (min-width: 48em) {
  .l-row-restricted.desk-only {
    width: calc(100% - 80px);
    margin: 0 40px;
    padding: 0;
  }
}
@media (min-width: 83.375em) {
  .l-row-restricted.desk-only {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.l-row-restricted.desk-only h2 {
  padding: 0 20px;
}
@media (min-width: 48em) {
  .l-row-restricted.desk-only h2 {
    padding: 0;
  }
}

a {
  text-decoration: none;
  color: #16999C;
}
a:hover {
  text-decoration: underline;
  color: #16999C;
}

.display-flex {
  display: flex;
  display: -ms-flexbox;
  width: 100%;
  flex-flow: wrap;
}

.red {
  color: red;
}

ol.c-privacy-list > li {
  margin-bottom: 60px;
}

.c-standfirst {
  text-align: left;
  padding: 78px 0;
}
@media (min-width: 48em) {
  .c-standfirst {
    text-align: center;
    padding: 52px 0;
  }
}

.c-noe-22 {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 1.375rem;
}

.c-aos-list li img {
  margin-bottom: 10px;
}
@media (min-width: 48em) {
  .c-aos-list li {
    position: relative;
  }
  .c-aos-list li:nth-child(odd) {
    top: -80px;
    transition-delay: 0.5s;
  }
}
@media (min-width: 64em) {
  .c-aos-list li:nth-child(odd) {
    top: inherit;
    transition-delay: inherit;
  }
  .c-aos-list li:nth-child(3n+1) {
    top: -160px;
    transition-delay: 0.5s;
  }
  .c-aos-list li:nth-child(3n+2) {
    top: -80px;
    transition-delay: 0.5s;
  }
  .c-aos-list li:nth-child(3n) {
    top: 0px;
    transition-delay: 1s;
  }
}

.c-aos-list-2 li img {
  margin-bottom: 10px;
}
@media (min-width: 48em) {
  .c-aos-list-2 li {
    position: relative;
  }
  .c-aos-list-2 li:nth-child(odd) {
    top: -80px;
    transition-delay: 0.5s;
  }
}
@media (min-width: 64em) {
  .c-aos-list-2 li:nth-child(odd) {
    top: -160px;
    transition-delay: 0.5s;
  }
  .c-aos-list-2 li:nth-child(even) {
    top: -80px;
    transition-delay: 0.5s;
  }
}

.c-aos-list-4 li img {
  margin-bottom: 10px;
}
@media (min-width: 48em) {
  .c-aos-list-4 li {
    position: relative;
  }
  .c-aos-list-4 li:nth-child(odd) {
    top: -80px;
    transition-delay: 0.5s;
  }
}
@media (min-width: 64em) {
  .c-aos-list-4 li:nth-child(odd) {
    top: inherit;
    transition-delay: inherit;
  }
  .c-aos-list-4 li:nth-child(4n+1) {
    top: -120px;
    transition-delay: 0.5s;
  }
  .c-aos-list-4 li:nth-child(4n+2) {
    top: -80px;
    transition-delay: 0.5s;
  }
  .c-aos-list-4 li:nth-child(4n+3) {
    top: -40px;
    transition-delay: 0.5s;
  }
  .c-aos-list-4 li:nth-child(4n) {
    top: 0px;
    transition-delay: 1s;
  }
}

/*------------------------------------*\
  #VARIOUS BLOCK STYLES
\*------------------------------------*/
.c-intro {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
}
@media (min-width: 48em) {
  .c-intro {
    width: 80%;
  }
}
.c-intro.primary {
  font-size: 1.375rem;
  line-height: 26px;
  margin-bottom: 20px;
  color: #202230;
  position: relative;
}
@media (min-width: 48em) {
  .c-intro.primary {
    font-size: 1.875rem;
    line-height: 40px;
  }
}
.c-intro.secondary {
  font-size: 1.375rem;
  line-height: 30px;
  margin-bottom: 20px;
  color: #202230;
  position: relative;
}
@media (min-width: 48em) {
  .c-intro.secondary {
    font-size: 1.5rem;
    line-height: 34px;
  }
}

.c-5050-block {
  display: flex;
  display: -ms-flexbox;
  float: left;
  width: 100%;
  flex-wrap: wrap;
}
.c-5050-block .c-5050-left {
  width: 100%;
  list-style-type: none;
  position: relative;
}
@media (min-width: 64em) {
  .c-5050-block .c-5050-left {
    margin: 0;
    width: 50%;
    max-width: 50%;
  }
}
.c-5050-block .c-5050-right {
  width: 100%;
  list-style-type: none;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 64em) {
  .c-5050-block .c-5050-right {
    margin: 0;
    width: 50%;
    max-width: 50%;
  }
}
.c-5050-block .c-5050-right .inside {
  max-width: 100%;
  padding-left: 0;
  position: relative;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 64em) {
  .c-5050-block .c-5050-right .inside {
    max-width: 600px;
    padding-left: 120px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    text-align: left;
  }
}

.c-100-block {
  display: flex;
  display: -ms-flexbox;
  float: left;
  width: 100%;
  flex-wrap: wrap;
}
.c-100-block .c-5050-left {
  width: 100%;
  list-style-type: none;
  position: relative;
}
@media (min-width: 64em) {
  .c-100-block .c-5050-left {
    margin: 0;
    width: 50%;
    max-width: 50%;
  }
}

.c-5050-textimg .c-5050-img.odd {
  grid-column: 1/2;
  align-items: center;
  order: 1;
  margin-left: 0;
  line-height: 0;
}
@media (min-width: 48em) {
  .c-5050-textimg .c-5050-img.odd {
    grid-column: 1/7;
    margin-left: -55px;
  }
}
.c-5050-textimg .c-5050-text.odd {
  grid-column: 1/2;
  align-items: center;
  order: 1;
  padding: 20px 0 40px;
}
@media (min-width: 48em) {
  .c-5050-textimg .c-5050-text.odd {
    grid-column: 8/13;
  }
}
.c-5050-textimg .c-5050-img.even {
  grid-column: 1/2;
  align-items: center;
  order: 1;
  margin-right: 0;
  line-height: 0;
}
@media (min-width: 48em) {
  .c-5050-textimg .c-5050-img.even {
    order: 2;
    grid-column: 7/13;
    margin-right: -55px;
  }
}
.c-5050-textimg .c-5050-text.even {
  grid-column: 1/2;
  align-items: center;
  order: 2;
  padding: 20px 0 40px;
}
@media (min-width: 48em) {
  .c-5050-textimg .c-5050-text.even {
    grid-column: 1/6;
  }
}

.c-list {
  padding: 0;
  margin-top: 0;
}
@media (min-width: 48em) {
  .c-list {
    padding: 160px 0 0 0;
  }
}
.c-list li {
  list-style-type: none;
}

.c-title {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 1.625rem;
  color: #16999C;
  line-height: 34px;
  padding-bottom: 10px;
}

.c-small-text {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #202230;
}
.c-small-text.with-underline {
  border-bottom: solid 1px #16999C;
  display: inline-block;
}

.c-tag {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #202230;
  padding-bottom: 10px;
  text-align: center;
}
@media (min-width: 48em) {
  .c-tag {
    text-align: left;
  }
}

.c-scroll-top {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  color: white;
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.c-scroll-top .line {
  width: 2px;
  height: 30px;
  background-color: #ffffff;
  display: block;
  margin: 8px auto 0 auto;
}

.c-scroll-bottom {
  display: none;
}
@media (min-width: 48em) {
  .c-scroll-bottom {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 2px;
    height: 30px;
    background-color: #202230;
  }
}

.c-body {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/2;
  align-items: center;
  order: 1;
  margin-left: 0;
}
@media (min-width: 48em) {
  .c-body {
    -ms-grid-column: 3;
    -ms-grid-column-span: 8;
    grid-column: 3/11;
  }
}
.c-body img {
  padding: 20px 0;
}

.c-10-col {
  width: 100%;
  margin: 0;
  display: inline-block;
}
@media (min-width: 48em) {
  .c-10-col {
    width: calc(100% - 180px);
    margin: 0 90px;
  }
}
@media (min-width: 83.375em) {
  .c-10-col {
    width: calc(100% - 256px);
    margin: 0 128px;
  }
}

.c-8-col {
  width: 100%;
  margin: 0;
  display: inline-block;
}
@media (min-width: 48em) {
  .c-8-col {
    width: calc(100% - 180px);
    margin: 0 90px;
  }
}
@media (min-width: 83.375em) {
  .c-8-col {
    width: calc(100% - 512px);
    margin: 0 256px;
  }
}

.c-btn {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 16px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 20px;
  width: auto;
  margin: 16px 0 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
@media (min-width: 48em) {
  .c-btn {
    margin: 20px 0 0;
    padding: 15px 40px;
  }
}
.c-btn:hover {
  text-decoration: none;
}
.c-btn:before, .c-btn:after {
  transition: all 0.5s ease-out;
  z-index: -1;
}

.c-btn-primary {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition: all 0.3s;
  border: solid 1px #16999C;
  color: #16999C;
  background-color: transparent;
}
.c-btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s linear;
}
.c-btn-primary:hover:before, .c-btn-primary:focus:before, .c-btn-primary:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.c-btn-primary:before {
  background-color: #16999C;
}
.c-btn-primary:hover, .c-btn-primary:focus, .c-btn-primary:active {
  color: #ffffff;
  border-color: #16999C;
}

.c-btn-secondary {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #202230;
  border: solid 0 transparent;
  background-color: transparent;
  padding: 0 32px 0 0;
  color: #16999C;
}
.c-btn-secondary::after {
  content: "";
  background-image: url("../assets/icons/button-arrow.png");
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  width: 14px;
  height: 13px;
  right: 10px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.c-btn-secondary:hover:after {
  right: 0;
}

.c-btn-back {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #202230;
  border: solid 0 transparent;
  background-color: transparent;
  padding: 0 0 0 32px;
  color: #16999C;
}
.c-btn-back::before {
  content: "";
  background-image: url("../assets/icons/button-arrow-back.png");
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  width: 14px;
  height: 13px;
  left: 10px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.c-btn-back:hover:before {
  left: 0;
}

.c-btn-hello {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 2.25rem;
  line-height: 42px;
  border: solid 0 transparent;
  background-color: transparent;
  padding: 0 46px 0 0;
  color: #16999C;
  text-transform: none;
}
@media (min-width: 48em) {
  .c-btn-hello {
    font-size: 2.5rem;
    line-height: 48px;
  }
}
.c-btn-hello::before {
  content: "";
  background-image: url("../assets/icons/button-arrow-large.png");
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  width: 30px;
  height: 53px;
  right: 10px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.c-btn-hello:hover:before {
  right: 0;
}

.c-btn-solid {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition: all 0.3s;
  border: solid 1px #16999C;
  color: #ffffff;
  background-color: #16999C;
}
.c-btn-solid:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s linear;
}
.c-btn-solid:hover:before, .c-btn-solid:focus:before, .c-btn-solid:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.c-btn-solid:before {
  background-color: #202230;
}
.c-btn-solid:hover, .c-btn-solid:focus, .c-btn-solid:active {
  color: #ffffff;
  border-color: #202230;
}

.c-btn-mapbox {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition: all 0.3s;
  border: solid 1px #202230;
  color: #ffffff;
  background-color: #202230;
}
.c-btn-mapbox:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s linear;
}
.c-btn-mapbox:hover:before, .c-btn-mapbox:focus:before, .c-btn-mapbox:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.c-btn-mapbox:before {
  background-color: #202230;
}
.c-btn-mapbox:hover, .c-btn-mapbox:focus, .c-btn-mapbox:active {
  color: #ffffff;
  border-color: #ffffff;
}

.m-100 {
  display: block;
  width: 100%;
}
@media (min-width: 48em) {
  .m-100 {
    display: inline-block;
    width: auto;
  }
}

.c-charity-list {
  padding: 0;
  margin-top: 0;
}
@media (min-width: 48em) {
  .c-charity-list {
    padding: 0;
  }
}
.c-charity-list .c-btn {
  margin-bottom: 50px;
}

.c-nohero h1 {
  visibility: hidden;
}
.c-nohero h2 {
  text-align: left;
}
.c-nohero .c-nohero-left {
  grid-column: 1/2;
  align-items: center;
  order: 1;
}
@media (min-width: 48em) {
  .c-nohero .c-nohero-left {
    grid-column: 1/12;
  }
}
@media (min-width: 64em) {
  .c-nohero .c-nohero-left {
    grid-column: 1/7;
  }
}
.c-nohero .c-nohero-right {
  grid-column: 1/2;
  align-items: center;
  order: 1;
  display: none;
}
@media (min-width: 48em) {
  .c-nohero .c-nohero-right {
    grid-column: 1/13;
    display: block;
  }
}
@media (min-width: 64em) {
  .c-nohero .c-nohero-right {
    grid-column: 9/12;
    display: block;
  }
}

@media (min-width: 48em) {
  .c-address-block {
    display: inline-block;
    width: 49%;
  }
}
@media (min-width: 64em) {
  .c-address-block {
    display: block;
    width: 100%;
  }
}

.c-map {
  line-height: 0;
}

/*------------------------------------*\
  #VARIOUS BLOCK STYLES
\*------------------------------------*/
@media (min-width: 48em) {
  .c-list.c-list-documents {
    padding-top: 0;
  }
}
.c-list.c-list-documents ul {
  padding: 0;
  margin: 0;
}
.c-list.c-list-documents li {
  margin-bottom: 30px;
}

.c-doc-title {
  display: inline-block;
  width: 100%;
}
@media (min-width: 48em) {
  .c-doc-title {
    width: 79%;
  }
}

.c-download {
  width: 100%;
  display: inline-block;
  text-align: left;
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #202230;
}
@media (min-width: 48em) {
  .c-download {
    width: 20%;
    text-align: right;
  }
}
.c-download:hover {
  cursor: pointer;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  border-bottom: solid 2px #202230;
  background: transparent url("../assets/icons/arrow-turq.png") no-repeat right center;
}
.accordion.active {
  background: transparent url("../assets/icons/arrow-turq-up.png") no-repeat right center;
}

.active,
.accordion:hover {
  border-bottom: solid 2px #16999C;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.flex-wrapper {
  display: flex;
  display: -ms-flexbox;
  width: 100%;
  flex-wrap: wrap;
}

.c-toptop {
  position: absolute;
  top: -20px;
  transform: translate(-50%, 0);
  left: 50%;
  background-color: #202230;
  padding: 10px 15px;
  display: block;
}
@media (min-width: 48em) {
  .c-toptop {
    display: none;
  }
}

.c-footer-col {
  width: 100%;
  margin-bottom: 1em;
  list-style-type: none;
  position: relative;
  text-align: center;
}
@media (min-width: 48em) {
  .c-footer-col {
    margin: 0;
    width: 33%;
    text-align: left;
  }
}
.c-footer-col.c-links {
  display: none;
}
@media (min-width: 48em) {
  .c-footer-col.c-links {
    display: inline-block;
  }
}

.footer ul {
  padding: 0;
}
.footer ul li {
  list-style-type: none;
}
.footer a {
  color: #ffffff;
}
.footer a.c-btn-primary {
  color: #16999C;
  margin-right: 0;
}
@media (min-width: 48em) {
  .footer a.c-btn-primary {
    margin-right: 30px;
  }
}
.footer a.c-btn-primary:hover {
  color: #ffffff;
}
.footer .c-subfooter {
  font-size: 0.75rem;
}
.footer .c-cube-footerlogo {
  width: 58px;
}

.l-header {
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 350;
}
.l-header.c-header-dark .c-header-logo.c-logo-black {
  display: block;
}
.l-header.c-header-dark .burgermenu .bar1,
.l-header.c-header-dark .burgermenu .bar2,
.l-header.c-header-dark .burgermenu .bar3 {
  background-color: #202230;
}
.l-header.c-header-dark .burgermenu.change .bar1,
.l-header.c-header-dark .burgermenu.change .bar3 {
  background-color: white;
}
.l-header.c-header-dark .c-header {
  display: inline-block;
  position: relative;
  width: 100%;
}
.l-header.c-header-dark .c-header .c-branding {
  position: relative;
  top: 15px;
  left: 20px;
  display: inline-block;
}
@media (min-width: 48em) {
  .l-header.c-header-dark .c-header .c-branding {
    left: 35px;
  }
}
.l-header.c-header-dark .c-header .c-icon--burger {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 20px;
}
@media (min-width: 48em) {
  .l-header.c-header-dark .c-header .c-icon--burger {
    right: 30px;
  }
}
.l-header.c-header-light {
  transition: all 0.3s ease-in-out;
}
.l-header.c-header-light .c-header-logo.c-logo-white {
  display: block;
}
.l-header.c-header-light .c-header-logo.c-logo-black {
  display: none;
}
.l-header.c-header-light .c-header {
  display: inline-block;
  position: relative;
  width: 100vw;
}
@media (min-width: 48em) {
  .l-header.c-header-light .c-header {
    width: 100%;
  }
}
.l-header.c-header-light .c-header .c-branding {
  position: relative;
  top: 15px;
  left: 20px;
  display: inline-block;
}
@media (min-width: 48em) {
  .l-header.c-header-light .c-header .c-branding {
    left: 35px;
  }
}
.l-header.c-header-light .c-header .c-icon--burger {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 20px;
}
@media (min-width: 48em) {
  .l-header.c-header-light .c-header .c-icon--burger {
    right: 30px;
  }
}
.l-header.c-header-light.scrolling {
  background-color: #E5E5E5;
}
.l-header.c-header-light.scrolling .burgermenu .bar1,
.l-header.c-header-light.scrolling .burgermenu .bar2,
.l-header.c-header-light.scrolling .burgermenu .bar3 {
  background-color: #202230;
}
.l-header.c-header-light.scrolling .burgermenu.change .bar1,
.l-header.c-header-light.scrolling .burgermenu.change .bar3 {
  background-color: white;
}
.l-header.c-header-light.scrolling .c-header-logo.c-logo-white {
  display: none;
}
.l-header.c-header-light.scrolling .c-header-logo.c-logo-black {
  display: block;
}
.l-header.c-header-property {
  transition: all 0.3s ease-in-out;
}
.l-header.c-header-property .c-header-logo.c-logo-white {
  display: none;
}
@media (min-width: 48em) {
  .l-header.c-header-property .c-header-logo.c-logo-white {
    display: block;
  }
}
.l-header.c-header-property .c-header-logo.c-logo-black {
  display: block;
}
@media (min-width: 48em) {
  .l-header.c-header-property .c-header-logo.c-logo-black {
    display: none;
  }
}
.l-header.c-header-property .burgermenu .bar1,
.l-header.c-header-property .burgermenu .bar2,
.l-header.c-header-property .burgermenu .bar3 {
  background-color: white;
}
.l-header.c-header-property .burgermenu.change .bar1,
.l-header.c-header-property .burgermenu.change .bar3 {
  background-color: white;
}
.l-header.c-header-property .c-header {
  display: inline-block;
  position: relative;
  width: 100%;
}
.l-header.c-header-property .c-header .c-branding {
  position: relative;
  top: 15px;
  left: 20px;
  display: inline-block;
}
@media (min-width: 48em) {
  .l-header.c-header-property .c-header .c-branding {
    left: 35px;
  }
}
.l-header.c-header-property .c-header .nav-space {
  background-color: transparent;
  width: 80px;
  height: 70px;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 48em) {
  .l-header.c-header-property .c-header .nav-space {
    background-color: #202230;
  }
}
.l-header.c-header-property .c-header .nav-space .h-position-relative {
  width: 80px;
  height: 70px;
}
.l-header.c-header-property .c-header .nav-space img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header.c-header-property .c-header .nav-space .c-burger {
  position: absolute;
  right: 25px;
}
.l-header.c-header-property.scrolling {
  background-color: #E5E5E5;
}
.l-header.c-header-property.scrolling .burgermenu .bar1,
.l-header.c-header-property.scrolling .burgermenu .bar2,
.l-header.c-header-property.scrolling .burgermenu .bar3 {
  background-color: #202230;
}
.l-header.c-header-property.scrolling .burgermenu.change .bar1,
.l-header.c-header-property.scrolling .burgermenu.change .bar3 {
  background-color: white;
}
.l-header.c-header-property.scrolling .c-header-logo.c-logo-white {
  display: none;
}
.l-header.c-header-property.scrolling .c-header-logo.c-logo-black {
  display: block;
}
.l-header.c-header-property.scrolling .nav-space {
  background-color: transparent;
}
.l-header.c-header-property-let {
  transition: all 0.3s ease-in-out;
}
.l-header.c-header-property-let .c-header-logo.c-logo-black {
  display: block;
}
@media (min-width: 48em) {
  .l-header.c-header-property-let .c-header-logo.c-logo-black {
    display: block;
  }
}

.c-header-logo {
  width: 80px;
  height: 40px;
}

.c-img-white {
  display: block;
}

.c-img-black {
  display: none;
}

.burgermenu {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 200;
}
@media (min-width: 48em) {
  .burgermenu {
    top: 18px;
    right: 30px;
  }
}
.burgermenu:hover .bar2 {
  width: 26px;
  margin-left: 0;
}
.burgermenu .bar1,
.burgermenu .bar2,
.burgermenu .bar3 {
  width: 26px;
  height: 2px;
  background-color: white;
  margin: 7px 0px;
  transition: 0.4s;
}
.burgermenu .bar2 {
  width: 16px;
  transition: all 0.3s ease;
  margin-left: 10px;
}
.burgermenu.change .bar1 {
  background-color: white;
  -webkit-transform: rotate(-45deg) translate(-4px, 5px);
  transform: rotate(-45deg) translate(-4px, 5px);
}
.burgermenu.change .bar2 {
  opacity: 0;
}
.burgermenu.change .bar3 {
  background-color: white;
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

.overlay_nav {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: auto;
  transition: 0.5s;
}

.c-hero-h1 {
  position: absolute;
  top: 48%;
  transform: translate(0, -48%);
  width: 100%;
  z-index: 300;
  text-align: center;
  padding: 0 4%;
  margin: auto;
  animation: fadeIn 1s ease-in;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 48em) {
  .c-hero-h1 {
    padding: 0 8%;
  }
}
.c-hero-h1.teampage {
  top: 68%;
  transform: translate(0, -68%);
}
@media (min-width: 64em) {
  .c-hero-h1 {
    padding: 0 18%;
  }
  .c-hero-h1.teampage {
    top: 58%;
    transform: translate(0, -58%);
  }
}

.c-hero--large {
  width: 100%;
  max-height: 1080px;
  line-height: 0;
}
@media (min-width: 83.375em) {
  .c-hero--large {
    max-height: inherit;
    overflow: auto;
  }
}
.c-hero--large .img-fill {
  overflow: hidden;
  width: 100%;
  height: auto;
  line-height: 0;
}

.c-hero--small .img-fill {
  line-height: 0;
}
.c-hero--small .img-fill:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#202230+0,16999c+100&0.84+0,0.84+100 */
  background: -moz-linear-gradient(45deg, rgba(32, 34, 48, 0.84) 0%, rgba(22, 153, 156, 0.84) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, rgba(32, 34, 48, 0.84) 0%, rgba(22, 153, 156, 0.84) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(32, 34, 48, 0.84) 0%, rgba(22, 153, 156, 0.84) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d6202230", endColorstr="#d616999c",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.c-hero--large.cover .img-fill:before {
  background-color: rgba(32, 34, 48, 0.5);
  background-size: cover;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
}

.c-homehero {
  position: absolute;
  top: 48%;
  transform: translate(0, -48%);
  width: 100%;
  z-index: 300;
  text-align: center;
  padding: 0 4%;
  margin: auto;
  animation: fadeIn 1s ease-in;
  line-height: 66px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 48em) {
  .c-homehero {
    padding: 0 8%;
  }
}
.c-homehero h1 {
  margin-bottom: 0;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
.c-homehero .c-homehero-title.c-top {
  animation-name: homeheroLeft;
  animation-duration: 4s;
}
.c-homehero .c-homehero-title.c-btm {
  animation-name: homeheroRight;
  animation-duration: 4s;
}

@keyframes homeheroLeft {
  0% {
    transform: translateX(-70%);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes homeheroRight {
  0% {
    transform: translateX(70%);
    opacity: 0;
  }
  50% {
    transform: translateX(70%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
/*------------------------------------*\
  #HOMEPAGE
\*------------------------------------*/
.c-contact-block {
  width: 100%;
  display: block;
  position: relative;
  height: 60px;
  margin-bottom: 40px;
}
@media (min-width: 48em) {
  .c-contact-block {
    margin-bottom: 160px;
  }
}
.c-contact-block .c-contact-pos {
  position: absolute;
  right: 0;
  background-color: #d2d3d6;
  width: 100%;
}
@media (min-width: 48em) {
  .c-contact-block .c-contact-pos {
    width: auto;
  }
}
.c-contact-block .c-contact-pos ul.grey {
  display: inline-block;
  padding: 15px 40px;
  margin: 0;
}
.c-contact-block .c-contact-pos ul.grey li {
  display: inline-block;
}
.c-contact-block .c-contact-pos .black {
  display: inline-block;
  background-color: #000000;
  padding: 20px 10px;
  color: #ffffff;
}
@media (min-width: 48em) {
  .c-contact-block .c-contact-pos .black {
    padding: 20px 40px;
  }
}

.c-social-icons li {
  padding-right: 20px;
}
.c-social-icons li:last-child {
  padding-right: 0;
}

.c-phone-icon img {
  max-height: 21px;
}

.mapImage {
  max-width: 280px;
  margin-bottom: 10px;
}

.gm-style .gm-style-iw-c {
  border-radius: 0;
}

.c-homemap-key {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.c-homemap-key img {
  max-width: 28px;
  position: relative;
  top: 9px;
}
.c-homemap-key .c-key-item {
  padding-right: 15px;
  padding-left: 15px;
}

.mb-map {
  height: 650px;
}

.mapboxgl-popup {
  animation: popupslidein 0.8s ease-in-out backwards;
  transform: none !important;
  flex-direction: unset !important;
  height: 100%;
  max-width: 340px !important;
}
.mapboxgl-popup .c-cat-tag {
  top: 30px;
  right: 30px;
  background-color: #202230;
}

@keyframes popupslidein {
  from {
    left: -100%;
  }
  to {
    left: 0%;
  }
}
.mapboxgl-popup-content {
  border-radius: 0;
  padding: 0 !important;
}

.mapboxgl-popup-close-button {
  font-size: 1.5rem;
  color: white !important;
}

.mapboxgl-popup-tip {
  display: none;
}

.c-marker {
  width: 28px;
}

.c-mapbox-popup {
  padding: 30px;
  width: 100%;
  height: 100%;
}
.c-mapbox-popup.c-retailAv {
  background: #8d1467;
}
.c-mapbox-popup.c-retailLet {
  background: #F2CDE1;
}
.c-mapbox-popup.c-officeAv {
  background: #16999C;
}
.c-mapbox-popup.c-officeLet {
  background: #B2DBD6;
}
.c-mapbox-popup.c-retailAv .maptext, .c-mapbox-popup.c-officeAv .maptext {
  color: white;
}
.c-mapbox-popup.c-retailLet .maptext, .c-mapbox-popup.c-officeLet .maptext {
  color: #202230;
}

.c-nav--menu {
  transition: transform 0.4s ease-in-out;
  transform: translateY(-100%);
  width: 100%;
  position: fixed;
  top: -100px;
  right: 0;
  bottom: 0;
  z-index: 600;
  padding: 15px 20px 20px;
  background-color: #202230;
  text-align: left;
  color: #ffffff;
  opacity: 1;
}
@media (min-width: 48em) {
  .c-nav--menu {
    padding: 20px;
  }
}
.c-nav--menu.open {
  transform: translateY(0%);
  top: 0;
  overflow: auto;
}
.c-nav--menu .c-nav-content {
  display: block;
  width: 100%;
  position: relative;
  margin: auto 0;
  height: 100%;
  overflow-y: auto;
}
.c-nav--menu .l-menu-wrap {
  position: relative;
  width: 90%;
}
@media (min-width: 48em) {
  .c-nav--menu .l-menu-wrap {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    width: 90%;
  }
}
.c-nav--menu .l-menu-wrap .l-row-restricted {
  padding: 0;
}
@media (min-width: 48em) {
  .c-nav--menu .l-menu-wrap .l-row-restricted {
    padding: 0 40px;
  }
}
.c-nav--menu ul {
  margin: 0;
  padding: 0;
}
.c-nav--menu li {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 2.125rem;
  list-style-type: none;
  padding-bottom: 0;
  display: block;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 48em) {
  .c-nav--menu li {
    padding-bottom: 10px;
  }
}
.c-nav--menu li .c-nav-number {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  margin-right: 20px;
  color: #16999C;
  position: absolute;
}
@media (min-width: 48em) {
  .c-nav--menu li .c-nav-number {
    font-size: 1rem;
    margin-top: 10px;
  }
}
.c-nav--menu li .c-nav-name {
  display: inline-block;
  margin-left: 26px;
  font-size: 1.75rem;
  line-height: 36px;
}
@media (min-width: 48em) {
  .c-nav--menu li .c-nav-name {
    font-size: 2.5rem;
    line-height: 70px;
    margin-left: 100px;
  }
}
@media (min-width: 64em) {
  .c-nav--menu li .c-nav-name {
    font-size: 4.375rem;
  }
}
.c-nav--menu li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.2s ease-in-out;
  border-bottom: solid 2px transparent;
}
.c-nav--menu li a:hover {
  color: #ffffff;
  text-decoration: none;
  border-bottom: solid 2px #16999C;
}
.c-nav--menu .c-menu-logo-white {
  display: block;
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 48em) {
  .c-nav--menu .c-menu-logo-white {
    position: absolute;
    margin-bottom: 0;
  }
}
.c-nav--menu .c-icon--close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 24px;
}
@media (min-width: 48em) {
  .c-nav--menu .c-icon--close {
    top: 30px;
    right: 25px;
  }
}
.c-nav--menu .c-nav--logo {
  text-align: left;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  left: 25px;
}
@media (min-width: 37.5em) {
  .c-nav--menu .c-nav--logo {
    display: none;
  }
}
.c-nav--menu .c-baby-menu {
  margin: 0 0 10px 26px;
}
@media (min-width: 48em) {
  .c-nav--menu .c-baby-menu {
    margin: 0 0 0 100px;
  }
}
@media (min-width: 64em) {
  .c-nav--menu .c-baby-menu {
    margin: 10px 0 0 100px;
  }
}
.c-nav--menu .c-baby-menu li {
  display: inline-block;
  font-size: 1.375rem;
}
@media (min-width: 48em) {
  .c-nav--menu .c-baby-menu li {
    font-size: 1.625rem;
  }
}
@media (min-width: 64em) {
  .c-nav--menu .c-baby-menu li {
    font-size: 2.5rem;
  }
}

.c-img-fill {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, background-image 0.3s ease-in-out;
  background-image: url("../assets/menu/menu1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-img-fill.Menu2 {
  background-image: url("../assets/menu/menu7.jpg");
}
.c-img-fill.Menu3 {
  background-image: url("../assets/menu/menu3.jpg");
}
.c-img-fill.Menu4 {
  background-image: url("../assets/menu/menu4.jpg");
}
.c-img-fill.Menu5 {
  background-image: url("../assets/menu/menu5.jpg");
}

.no-cssgrid .l-cssgrid-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.no-cssgrid .c-5050-textimg .c-5050-img.odd,
.no-cssgrid .c-5050-textimg .c-5050-text.odd,
.no-cssgrid .c-5050-textimg .c-5050-img.even,
.no-cssgrid .c-5050-textimg .c-5050-text.even {
  width: 100%;
}
@media (min-width: 48em) {
  .no-cssgrid .c-5050-textimg .c-5050-img.odd,
  .no-cssgrid .c-5050-textimg .c-5050-text.odd,
  .no-cssgrid .c-5050-textimg .c-5050-img.even,
  .no-cssgrid .c-5050-textimg .c-5050-text.even {
    margin: 0 auto;
    width: 48%;
  }
}
.no-cssgrid .c-nohero-left {
  width: 100%;
}
@media (min-width: 64em) {
  .no-cssgrid .c-nohero-left {
    margin: 0 auto;
    width: 48%;
  }
}
.no-cssgrid .c-nohero-right {
  width: 100%;
}
@media (min-width: 64em) {
  .no-cssgrid .c-nohero-right {
    margin: 0 auto;
    width: 48%;
    padding-left: 10%;
  }
}

.no-flexboxlegacy .grid--columns-3 .grid__item {
  width: 30%;
  display: inline-block;
}

.c-body .c-news-intro {
  padding-top: 10px;
}

.c-news-list {
  padding-top: 0;
}
.c-news-list img {
  margin-bottom: 10px;
}
.c-news-list .c-small-text {
  margin-bottom: 10px;
}

.c-charity-logo {
  display: inline-block;
  width: auto;
}

.c-news-listing-list .c-tag {
  text-align: left;
}

.c-news-hero {
  font-size: 1.375rem;
  line-height: 26px;
}
@media (min-width: 48em) {
  .c-news-hero {
    font-size: 2.5rem;
    line-height: 48px;
  }
}
@media (min-width: 64em) {
  .c-news-hero {
    font-size: 4.375rem;
    line-height: 85px;
  }
}

.c-nohero-plain .c-hero-h1 {
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0, 0);
}
@media (min-width: 48em) {
  .c-nohero-plain .c-hero-h1 {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
.c-nohero-plain h2 {
  text-align: left;
}
.c-nohero-plain .c-nohero-left {
  grid-column: 1/2;
  align-items: center;
  order: 1;
}
@media (min-width: 48em) {
  .c-nohero-plain .c-nohero-left {
    grid-column: 1/12;
  }
}
@media (min-width: 64em) {
  .c-nohero-plain .c-nohero-left {
    grid-column: 1/8;
  }
}
.c-nohero-plain .c-nohero-right {
  grid-column: 1/2;
  align-items: center;
  order: 1;
}
@media (min-width: 48em) {
  .c-nohero-plain .c-nohero-right {
    grid-column: 1/13;
  }
}
@media (min-width: 64em) {
  .c-nohero-plain .c-nohero-right {
    grid-column: 9/13;
  }
}

@media (min-width: 48em) {
  .c-address-block {
    display: inline-block;
    width: 49%;
  }
}
@media (min-width: 64em) {
  .c-address-block {
    display: block;
    width: 100%;
  }
}

.c-commercial-land-blocks .l-cssgrid-wrapper {
  position: relative;
}
.c-commercial-land-blocks .c-5050-img {
  position: relative;
}
.c-commercial-land-blocks .c-5050-img .c-img-opac {
  width: 100%;
  height: 100%;
  background-color: rgba(32, 34, 48, 0.5);
  position: absolute;
}
@media (min-width: 48em) {
  .c-commercial-land-blocks .c-5050-img .c-img-opac {
    display: none;
  }
}
.c-commercial-land-blocks .c-5050-img h2 {
  display: block;
  position: absolute;
  color: white;
  z-index: 34;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
@media (min-width: 48em) {
  .c-commercial-land-blocks .c-5050-img h2 {
    display: none;
  }
}
.c-commercial-land-blocks .c-5050-textimg .c-5050-text {
  padding: 20px 20px 40px;
}
@media (min-width: 48em) {
  .c-commercial-land-blocks .c-5050-textimg .c-5050-text {
    padding: inherit;
  }
}
.c-commercial-land-blocks .c-5050-textimg .c-5050-text h4 {
  display: none;
}
@media (min-width: 48em) {
  .c-commercial-land-blocks .c-5050-textimg .c-5050-text h4 {
    display: block;
  }
}

/*------------------------------------*\
  #PROPERTY CATEGORY LISTING PAGE
\*------------------------------------*/
.c-filter-list {
  padding-left: 0;
}
.c-filter-list li {
  display: inline-block;
  padding-right: 10px;
}

.c-cat-tag {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #202230;
  background-color: #16999C;
  position: absolute;
  padding: 1px 4px 1px 6px;
  top: 0;
  right: 0;
  color: #ffffff;
}
.c-cat-tag.entryId-37 {
  background-color: #8d1467;
}

/*------------------------------------*\
  #PROPERTY ITEM PAGE
\*------------------------------------*/
.c-property-item_intro {
  width: 100%;
}
.c-property-item_intro h1 {
  font-size: 2.25rem;
  line-height: 42px;
  margin-bottom: 20px;
  color: #16999C;
}
@media (min-width: 48em) {
  .c-property-item_intro h1 {
    font-size: 2.5rem;
    line-height: 48px;
  }
}
.c-property-item_intro ul {
  padding-left: 20px;
  margin-bottom: 40px;
}
.c-property-item_intro ul li {
  list-style-type: none;
  margin-bottom: 10px;
}

.c-subtitle {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 2rem;
  line-height: 38px;
  text-align: center;
  padding: 20px 0;
}
@media (min-width: 48em) {
  .c-subtitle {
    font-size: 2.5rem;
    line-height: 48px;
  }
}

.c-subtitle-notavailable {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 1.625rem;
  line-height: 30px;
  text-align: center;
  padding: 20px 0;
}

.c-property-standfirst {
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 28px;
  text-align: center;
}

.c-spec {
  display: block;
}
@media (min-width: 48em) {
  .c-spec {
    display: flex;
  }
}
.c-spec .c-spec-half {
  width: 100%;
}
@media (min-width: 48em) {
  .c-spec .c-spec-half {
    width: 50%;
    padding-right: 20px;
  }
}

.c-property-border {
  border-top: solid 3px #16999C;
  padding-top: 60px;
}

.matterport-showcase {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.matterport-showcase iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-property-item_slider {
  width: 100%;
  position: relative;
  top: 0;
  right: 0;
}

.c-propertycontact-list {
  padding-top: 0;
}
.c-propertycontact-list li {
  position: relative;
  text-align: left;
}
.c-propertycontact-list img {
  width: 100%;
}
@media (min-width: 48em) {
  .c-propertycontact-list img {
    width: 180px;
  }
}
.c-propertycontact-list .c-team-info {
  display: block;
  vertical-align: top;
  padding-top: 10px;
  padding-left: 0;
}
@media (min-width: 37.5em) {
  .c-propertycontact-list .c-team-info {
    display: inline-block;
    padding-top: 50px;
    padding-left: 30px;
  }
}
@media (min-width: 48em) {
  .c-propertycontact-list .c-team-info {
    display: block;
    padding-top: 10px;
    padding-left: 0;
  }
}
@media (min-width: 64em) {
  .c-propertycontact-list .c-team-info {
    display: inline-block;
    padding-top: 50px;
    padding-left: 50px;
  }
}
.c-propertycontact-list .c-team-info .c-info-item {
  display: block;
}
.c-propertycontact-list .c-team-info .c-info-item .c-contact-detail {
  display: inline-block;
}
.c-propertycontact-list a {
  color: #202230;
}

.c-agent-block h2 {
  color: #ffffff;
}
.c-agent-block h3 {
  color: #202230;
}
.c-agent-block .c-agent-logo {
  max-width: 100%;
  margin: 40px 0 10px;
}
@media (min-width: 48em) {
  .c-agent-block .c-agent-logo {
    max-width: 33%;
    margin: 40px 0 20px;
  }
}
.c-agent-block .c-agent-logo img {
  width: auto;
  max-width: 200px;
}
.c-agent-block .c-agent-contact {
  display: inline-block;
  width: 100%;
  padding-top: 50px;
}
@media (min-width: 37.5em) {
  .c-agent-block .c-agent-contact {
    max-width: 49%;
  }
}
@media (min-width: 64em) {
  .c-agent-block .c-agent-contact {
    padding-top: 0;
    max-width: 32%;
    padding-bottom: 20px;
  }
}
.c-agent-block .c-agent-contact h3 {
  margin-bottom: 5px;
}

.c-letter-block {
  display: inline-block;
  width: 17px;
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*------------------------------------*\
  #AVAILABLE PROPERTY ITEM PAGE
\*------------------------------------*/
.c-property-ava .c-property-standfirst {
  min-height: auto;
}
@media (min-width: 83.375em) {
  .c-property-ava .c-property-standfirst {
    min-height: 200px;
  }
}

.maptext.title {
  font-size: 1.5rem;
  font-family: "Noe Display Medium", serif;
  font-weight: normal;
  margin-bottom: 10px;
}
.maptext.office {
  color: #16999C;
  font-weight: 600;
}
.maptext.retail {
  color: #9c167c;
  font-weight: 600;
}

.l-row-restricted.residential-mob {
  padding: 0;
}

.c-res-hero {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 90%;
  z-index: 300;
  text-align: center;
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 48em) {
  .c-res-hero {
    width: 80%;
  }
}
@media (min-width: 64em) {
  .c-res-hero {
    width: 80%;
  }
}
@media (min-width: 83.375em) {
  .c-res-hero {
    width: 60%;
  }
}

.c-reshero-h1 {
  font-size: 2.5rem;
  line-height: 48px;
  margin-bottom: 10px;
  display: inline-block;
}
@media (min-width: 48em) {
  .c-reshero-h1 {
    font-size: 2.5rem;
    line-height: 48px;
  }
}
@media (min-width: 64em) {
  .c-reshero-h1 {
    font-size: 3.4375rem;
    line-height: 65px;
  }
}

.c-hero-subtitle {
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.875rem;
  color: white;
}

.c-residential-main {
  width: 100%;
  display: inline-block;
  position: relative;
  vertical-align: top;
}
@media (min-width: 48em) {
  .c-residential-main {
    width: calc(66% - 10px);
    margin-right: 10px;
  }
}
@media (min-width: 83.375em) {
  .c-residential-main {
    width: calc(66% - 20px);
    margin-right: 20px;
  }
}
.c-residential-main .c-property-item_intro {
  width: 100%;
}
.c-residential-main .c-property-item_intro ul {
  column-count: 1;
}
@media (min-width: 48em) {
  .c-residential-main .c-property-item_intro ul {
    column-count: 2;
  }
}

.c-residential-sidebar {
  width: 100%;
  display: inline-block;
  position: relative;
  vertical-align: top;
  padding-top: 50px;
}
@media (min-width: 48em) {
  .c-residential-sidebar {
    width: calc(33% - 30px);
    margin-left: 30px;
    padding-top: 0;
  }
}
@media (min-width: 83.375em) {
  .c-residential-sidebar {
    width: calc(33% - 40px);
    margin-left: 40px;
  }
}

.c-slider-res-big.slick-slider .slick-prev {
  left: initial;
  right: 0;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
  top: 48%;
  -webkit-transform: translate(0, -40%);
  -ms-transform: translate(0, -40%);
  transform: translate(0, -40%);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (min-width: 48em) {
  .c-slider-res-big.slick-slider .slick-prev {
    width: 0;
    height: 0;
  }
}
.c-slider-res-big.slick-slider .slick-prev:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}
@media (min-width: 48em) {
  .c-slider-res-big.slick-slider .slick-prev:after {
    background-image: none;
    width: 0;
    height: 0;
  }
}
.c-slider-res-big.slick-slider .slick-next {
  right: 0;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
  top: 31%;
  -webkit-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  transform: translate(0, -30%);
}
@media (min-width: 48em) {
  .c-slider-res-big.slick-slider .slick-next {
    top: 0;
    height: 100%;
    width: 47px;
    background-color: rgba(32, 34, 48, 0.8);
    transform: translate(0, 0);
  }
}
.c-slider-res-big.slick-slider .slick-next:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}

.c-slider-res-nav.slick-slider {
  display: none;
}
@media (min-width: 48em) {
  .c-slider-res-nav.slick-slider {
    display: block;
    width: calc(100% - 80px);
    margin: 30px auto 60px;
  }
}
.c-slider-res-nav.slick-slider .c-slider-item {
  margin-right: 10px;
}
.c-slider-res-nav.slick-slider .slick-prev {
  left: -25px;
  background-image: url("../assets/icons/arrow-left-black.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 18px 31px;
  width: 18px;
  height: 31px;
}
@media (min-width: 48em) {
  .c-slider-res-nav.slick-slider .slick-prev {
    left: -40px;
  }
}
.c-slider-res-nav.slick-slider .slick-prev.slick-disabled {
  display: none !important;
}
.c-slider-res-nav.slick-slider .slick-next {
  right: -25px;
  background-image: url("../assets/icons/arrow-right-black.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 18px 31px;
  width: 18px;
  height: 31px;
}
@media (min-width: 48em) {
  .c-slider-res-nav.slick-slider .slick-next {
    right: -40px;
  }
}
.c-slider-res-nav.slick-slider .slick-next.slick-disabled {
  display: none !important;
}

.tabs {
  width: 100%;
  display: block;
}
.tabs section {
  display: none;
  padding: 20px 20px 0;
  border-top: 2px solid #d2d3d6;
}
@media (min-width: 48em) {
  .tabs section {
    padding: 20px 0 0;
  }
}
.tabs input.tab-input {
  display: none;
}
.tabs label {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #202230;
  font-size: 0.75rem;
  display: inline-block;
  margin: 0 0 -2px;
  padding: 15px 16px;
  text-align: center;
  color: black;
  border: 2px solid transparent;
}
.tabs label:hover {
  color: black;
  cursor: pointer;
  border: 2px solid #DEDEDE;
  border-bottom: 2px solid #d2d3d6;
}
.tabs input:checked + label {
  border: 2px solid #d2d3d6;
  border-bottom: 2px solid #E5E5E5;
}
.tabs #tab1:checked ~ #content1,
.tabs #tab2:checked ~ #content2,
.tabs #tab3:checked ~ #content3,
.tabs #tab4:checked ~ #content4,
.tabs #tab5:checked ~ #content5 {
  display: block;
}
.tabs .c-tab-section {
  border-bottom: solid 2px #d2d3d6;
  padding: 30px 0;
}
.tabs .c-tab-section:last-child {
  border-bottom: solid 0 transparent;
}

.c-res-team {
  background-color: white;
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 40px;
}
.c-res-team img {
  max-width: 150px;
  margin-bottom: 10px;
}

.c-res-team2 {
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 40px;
  border: solid 10px red;
  display: inline-block;
}
.c-res-team2 img {
  max-width: 150px;
  margin-bottom: 10px;
}

.c-res-map {
  background-color: beige;
  padding: 50px;
}

.c-residential-disclaimer {
  padding: 30px 20px 0;
  border-top: solid 2px #d2d3d6;
  margin-top: 50px;
}
@media (min-width: 48em) {
  .c-residential-disclaimer {
    padding: 30px 0 0;
  }
}

.c-letting-info-field {
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
}
.c-letting-info-field .label {
  width: 30%;
  display: inline-block;
  font-weight: bold;
}
.c-letting-info-field .detail {
  width: 68%;
  display: inline-block;
  vertical-align: top;
}

.epc-cert {
  position: relative;
  padding: 20px 0;
}
.epc-cert a {
  padding-left: 110px;
}
.epc-cert img {
  width: 89px;
  height: 83px;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.c-resi-container {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 426px;
  margin-bottom: 20px;
}
.c-resi-container .c-center-img {
  display: block;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-resi-container .c-center-img img {
  line-height: 0;
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.c-resi-quote {
  max-width: 90%;
  margin: 40px auto;
}
@media (min-width: 48em) {
  .c-resi-quote {
    max-width: 50%;
  }
}

.c-quote-66 {
  position: absolute;
  top: 0;
  left: -30px;
  background-image: url("../assets/icons/quote66.png");
  background-repeat: no-repeat;
  background-position: top left;
  width: 30px;
  height: 56px;
}

.c-quote-99 {
  position: absolute;
  bottom: 0;
  right: -30px;
  background-image: url("../assets/icons/quote99.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  width: 30px;
  height: 56px;
}

.c-slider-hero.slick-slider {
  height: auto;
}
@media (min-width: 48em) {
  .c-slider-hero.slick-slider {
    height: 100vh;
  }
}

.slick-slide img {
  width: 100%;
  height: auto;
  line-height: 0;
}
.slick-slide img.l-image-desk {
  display: none;
}
@media (min-width: 48em) {
  .slick-slide img.l-image-desk {
    display: block;
  }
}
.slick-slide img.l-image-mobile {
  display: block;
}
@media (min-width: 48em) {
  .slick-slide img.l-image-mobile {
    display: none;
  }
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 48px;
  height: 53px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 300;
}

.slick-prev {
  left: 20px;
  background-image: url("../assets/icons/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 12px 38px;
}
@media (min-width: 48em) {
  .slick-prev {
    left: 60px;
  }
}
.slick-prev.slick-disabled {
  display: none !important;
}

.slick-next {
  right: 20px;
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 48px 53px;
}
@media (min-width: 48em) {
  .slick-next {
    right: 60px;
  }
}
.slick-next.slick-disabled {
  display: none !important;
}

.slick-dots {
  position: absolute;
  bottom: 0;
  left: 50px;
  padding-left: 0;
  list-style-type: none;
}
.slick-dots li {
  display: inline-block;
  margin: 0 20px 0 0;
}
@media (min-width: 48em) {
  .slick-dots li {
    margin: 0 15px 0 0;
  }
}
.slick-dots li:last-child {
  margin: 0;
}
.slick-dots button {
  display: block;
  width: 30px;
  height: 2px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  background: transparent url("../assets/icons/slider-dot-default.png") no-repeat 0 0;
  text-indent: -9999px;
  border: solid 0 transparent;
}
.slick-dots li.slick-active button {
  background: transparent url("../assets/icons/slider-dot-active.png") no-repeat 0 0;
}

.c-slider-hero {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.c-slider-hero .slick-prev {
  display: none;
  z-index: 0;
}
.c-slider-hero .slick-next {
  right: inherit;
  left: 48%;
  top: inherit;
  bottom: 60px;
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 25px 28px;
  width: 25px;
}
@media (min-width: 48em) {
  .c-slider-hero .slick-next {
    background-size: 48px 53px;
    width: 48px;
  }
}
@media (min-width: 64em) {
  .c-slider-hero .slick-next {
    right: 60px;
    left: inherit;
    bottom: inherit;
    top: 50%;
    background-size: 48px 53px;
    width: 48px;
  }
}
.c-slider-hero .slick-next.slick-disabled {
  display: none !important;
}
.c-slider-hero .c-slider-item {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.c-slider-hero .c-slider-item img {
  width: auto;
  overflow: hidden;
  min-width: 100%;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
@media screen and (min-width: 1500px) {
  .c-slider-hero .c-slider-item img {
    min-height: 100vh;
    height: auto;
  }
}
.c-slider-hero .c-slider-item.slick-active img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-animation: zoomin 8s ease-out;
  animation: zoomin 8s ease-out;
  animation-direction: alternate;
}
@keyframes zoomin {
  0% {
    transform: scale(1) translate(0px);
  }
  80% {
    transform: scale(1.05) translate(0px);
  }
}
@-webkit-keyframes zoomin {
  from {
    -webkit-transform: scale(1) translate(0px);
  }
  to {
    -webkit-transform: scale(1.05) translate(0px);
  }
}

.c-slider-people .c-slider-item {
  position: relative;
  overflow: hidden;
  background-color: #202230;
}
@media (min-width: 48em) {
  .c-slider-people .c-slider-item {
    background-color: transparent;
    margin-right: 15px;
    width: initial;
  }
}
.c-slider-people .c-slider-item .img {
  position: relative;
  width: 100%;
}
.c-slider-people .c-slider-item img {
  max-width: 450px;
}
.c-slider-people .c-slider-item .c-team-info {
  display: block;
  background-color: #202230;
  position: relative;
  bottom: 0%;
  width: 100%;
  left: 0%;
  padding: 20px 20px;
  transition: all 0.5s ease-in-out;
  min-height: 184px;
}
@media (min-width: 48em) {
  .c-slider-people .c-slider-item .c-team-info {
    padding: 40px 50px;
    position: absolute;
    bottom: -100%;
    min-height: initial;
  }
}
.c-slider-people .c-slider-item:hover .c-team-info {
  background-color: #202230;
  color: #ffffff;
  bottom: 0%;
  transform: translate(0%, 0%);
}
.c-slider-people .c-slider-item h3 {
  margin-bottom: 5px;
}
.c-slider-people .c-slider-item .c-position {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #202230;
  padding-bottom: 10px;
  color: #ffffff;
  border-bottom: solid 1px #16999C;
  margin-bottom: 20px;
}
.c-slider-people .c-slider-item .c-info-item {
  font-size: 1rem;
  padding-bottom: 2px;
}
.c-slider-people .c-slider-item .c-info-item a {
  display: block;
  width: 100%;
}
.c-slider-people .c-slider-item button {
  margin-bottom: 0;
}
.c-slider-people .c-slider-item a {
  color: white;
}
@media (min-width: 48em) {
  .c-slider-people.property .c-slider-item .c-team-info {
    padding: 30px;
  }
}
.c-slider-people .slick-prev {
  left: 0;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
  top: 31%;
  -webkit-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  transform: translate(0, -30%);
}
@media (min-width: 48em) {
  .c-slider-people .slick-prev {
    top: 0;
    height: 100%;
    width: 35px;
    background-color: rgba(32, 34, 48, 0.8);
    transform: translate(0, 0);
  }
}
.c-slider-people .slick-prev:after {
  content: "";
  background-image: url("../assets/icons/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}
@media (min-width: 48em) {
  .c-slider-people .slick-prev:after {
    margin-left: 6px;
  }
}
.c-slider-people .slick-next {
  right: 0;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
  top: 31%;
  -webkit-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  transform: translate(0, -30%);
}
@media (min-width: 48em) {
  .c-slider-people .slick-next {
    top: 0;
    height: 100%;
    width: 47px;
    background-color: rgba(32, 34, 48, 0.8);
    transform: translate(0, 0);
  }
}
.c-slider-people .slick-next:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}

.c-slider-5050 .c-slider-item {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.c-slider-5050 .c-slider-item .img {
  position: relative;
}
.c-slider-5050 .c-slider-item .img:hover {
  cursor: pointer;
}
.c-slider-5050 .slick-next {
  bottom: -28px;
  top: initial;
  display: block;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
}
.c-slider-5050 .slick-next:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}
@media (min-width: 48em) {
  .c-slider-5050 .slick-next {
    right: 0;
  }
}

.c-slider-property .paralax-image {
  overflow: hidden;
  height: 400px;
  position: relative;
}
.c-slider-property .paralax-image img {
  position: absolute;
  height: 100vh;
  min-width: 100%;
}
.c-slider-property .slick-prev {
  bottom: initial;
  top: 80px;
  left: initial;
  right: -10px;
  display: block;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.c-slider-property .slick-prev:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}
@media (min-width: 37.5em) {
  .c-slider-property .slick-prev {
    top: 50%;
  }
}
@media (min-width: 48em) {
  .c-slider-property .slick-prev {
    bottom: 0;
    top: initial;
    left: 0;
    right: initial;
    display: block;
    width: 56px;
    height: 56px;
    background-image: none;
    background-color: #202230;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.c-slider-property .slick-next {
  bottom: initial;
  top: 170px;
  right: -10px;
  display: block;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
}
.c-slider-property .slick-next:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}
@media (min-width: 37.5em) {
  .c-slider-property .slick-next {
    top: 45%;
  }
}
@media (min-width: 48em) {
  .c-slider-property .slick-next {
    bottom: -28px;
    left: 56px;
    right: initial;
    top: initial;
  }
}

.c-slider-property-feat {
  padding-left: 0;
  margin-top: 0;
}
.c-slider-property-feat .c-slider-textwrap {
  height: 170px;
}
@media (min-width: 48em) {
  .c-slider-property-feat .c-slider-textwrap {
    height: auto;
  }
}
.c-slider-property-feat .c-slider-item {
  margin: 0px 7px 0 7px;
  text-align: center;
  position: relative;
}
@media (min-width: 48em) {
  .c-slider-property-feat .c-slider-item {
    margin: inherit;
    text-align: left;
  }
}
.c-slider-property-feat .c-slider-item .c-date {
  margin-bottom: 10px;
}
.c-slider-property-feat .c-title,
.c-slider-property-feat .c-small-text {
  display: none;
}
@media (min-width: 48em) {
  .c-slider-property-feat .c-title,
  .c-slider-property-feat .c-small-text {
    display: block;
  }
}
.c-slider-property-feat .c-btn {
  display: none;
}
@media (min-width: 48em) {
  .c-slider-property-feat .c-btn {
    display: inline-block;
  }
}
.c-slider-property-feat a.c-feat-img {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 48em) {
  .c-slider-property-feat a.c-feat-img {
    margin-bottom: 10px;
  }
}
.c-slider-property-feat .c-cover {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 34, 48, 0.5);
  z-index: 999;
}
@media (min-width: 48em) {
  .c-slider-property-feat .c-cover {
    display: none;
  }
}
.c-slider-property-feat .slick-current {
  margin: 0 7px 0 7px;
}
.c-slider-property-feat .slick-current .c-title,
.c-slider-property-feat .slick-current .c-small-text {
  display: block;
}
.c-slider-property-feat .slick-current .c-btn {
  display: inline-block;
}
.c-slider-property-feat .slick-current .c-cover {
  display: none;
}
.c-slider-property-feat .slick-prev {
  left: initial;
  right: 20px;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
  top: 157px;
  -webkit-transform: translate(0, -40%);
  -ms-transform: translate(0, -40%);
  transform: translate(0, -40%);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.c-slider-property-feat .slick-prev:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}
.c-slider-property-feat .slick-next {
  right: 20px;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
  top: 110px;
  -webkit-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  transform: translate(0, -30%);
}
.c-slider-property-feat .slick-next:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}

.c-slider-nicepics .c-slider-item {
  position: relative;
  margin-right: 10px;
  overflow: hidden;
  background-color: #202230;
}
@media (min-width: 48em) {
  .c-slider-nicepics .c-slider-item {
    background-color: transparent;
    width: initial;
  }
}
.c-slider-nicepics .c-slider-item .img {
  position: relative;
  width: 100%;
}
.c-slider-nicepics .c-slider-item .img:hover {
  cursor: pointer;
}
.c-slider-nicepics .c-slider-item .c-team-info {
  display: block;
  background-color: #202230;
  position: relative;
  bottom: 0%;
  width: 100%;
  left: 0%;
  padding: 20px 20px;
  transition: all 0.5s ease-in-out;
  min-height: 184px;
}
@media (min-width: 48em) {
  .c-slider-nicepics .c-slider-item .c-team-info {
    padding: 40px 50px;
    position: absolute;
    bottom: -100%;
    min-height: initial;
  }
}
.c-slider-nicepics .c-slider-item:hover .c-team-info {
  background-color: #202230;
  color: #ffffff;
  bottom: 0%;
  transform: translate(0%, 0%);
}
.c-slider-nicepics .c-slider-item h3 {
  margin-bottom: 5px;
}
.c-slider-nicepics .c-slider-item .c-position {
  font-family: europa, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #202230;
  padding-bottom: 10px;
  color: #ffffff;
  border-bottom: solid 1px #16999C;
  margin-bottom: 20px;
}
.c-slider-nicepics .c-slider-item .c-info-item {
  font-size: 1rem;
  padding-bottom: 2px;
}
.c-slider-nicepics .c-slider-item .c-info-item a {
  display: block;
  width: 100%;
}
.c-slider-nicepics .c-slider-item button {
  margin-bottom: 0;
}
.c-slider-nicepics .c-slider-item a {
  color: white;
}
.c-slider-nicepics .slick-prev {
  left: inherit;
  right: 0;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
  top: 38%;
  -webkit-transform: translate(0, -40%);
  -ms-transform: translate(0, -40%);
  transform: translate(0, -40%);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (min-width: 48em) {
  .c-slider-nicepics .slick-prev {
    width: 0;
    height: 0;
  }
}
.c-slider-nicepics .slick-prev:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}
@media (min-width: 48em) {
  .c-slider-nicepics .slick-prev:after {
    background-image: none;
    width: 0;
    height: 0;
  }
}
.c-slider-nicepics .slick-next {
  right: 0;
  width: 56px;
  height: 56px;
  background-image: none;
  background-color: #16999C;
  top: 32%;
  -webkit-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  transform: translate(0, -30%);
}
@media (min-width: 48em) {
  .c-slider-nicepics .slick-next {
    top: 0;
    height: 100%;
    width: 50px;
    background-color: rgba(32, 34, 48, 0.8);
    transform: translate(0, 0);
  }
}
.c-slider-nicepics .slick-next:after {
  content: "";
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 24px 27px;
  display: block;
  width: 24px;
  height: 27px;
  margin-left: 15px;
}

.c-slider-quote .slick-next {
  right: -80px;
  background-image: url("../assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 25px 28px;
  width: 25px;
}
@media (min-width: 48em) {
  .c-slider-quote .slick-next {
    background-size: 48px 53px;
    width: 48px;
  }
}
@media (min-width: 64em) {
  .c-slider-quote .slick-next {
    background-size: 48px 53px;
    width: 48px;
  }
}
.c-slider-quote .slick-next.slick-disabled {
  display: none !important;
}
.c-slider-quote .slick-prev {
  left: -80px;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 25px 28px;
  width: 25px;
}
@media (min-width: 48em) {
  .c-slider-quote .slick-prev {
    background-size: 48px 53px;
    width: 48px;
  }
}
@media (min-width: 64em) {
  .c-slider-quote .slick-prev {
    background-size: 48px 53px;
    width: 48px;
  }
}
.c-slider-quote .slick-prev.slick-disabled {
  display: none !important;
}
.c-slider-quote .c-slider-item {
  margin: 0 40px;
}

/*------------------------------------*\
  #SOCIAL ICONS
\*------------------------------------*/
.c-social-icon {
  height: 21px;
}

/*------------------------------------*\
  #TEAM popup styling
\*------------------------------------*/
.c-modal-popup {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  top: 0;
  overflow: scroll;
}

.c-bio-wrapper {
  position: absolute;
  height: auto;
  width: 100%;
  background-color: white;
  display: block;
  overflow: scroll;
}
@media (min-width: 48em) {
  .c-bio-wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
  }
}
@media (min-width: 64em) {
  .c-bio-wrapper {
    max-width: 1024px;
    overflow: hidden;
  }
}
.c-bio-wrapper .c-btn-back {
  display: inline-block;
  padding: 13px 20px 20px 32px;
}
@media (min-width: 48em) {
  .c-bio-wrapper .c-btn-back {
    display: none;
  }
}
.c-bio-wrapper .c-icon--close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 999;
}
.c-bio-wrapper img {
  width: 100%;
  height: auto;
}
.c-bio-wrapper .c-popup-right {
  padding: 20px;
}
@media (min-width: 48em) {
  .c-bio-wrapper .c-popup-right {
    padding: 40px;
  }
}
@media (min-width: 64em) {
  .c-bio-wrapper .c-popup-right {
    padding: 80px 80px 40px;
  }
}
.c-bio-wrapper .c-biotext {
  border-top: solid 2px #16999C;
  padding: 25px 0;
}

.c-contact-detail {
  display: block;
}

.c-popup-left,
.c-popup-right {
  width: 100%;
}
@media (min-width: 48em) {
  .c-popup-left,
  .c-popup-right {
    width: 50%;
  }
}

.c-popup-left img {
  width: 60%;
  padding: 30px 0 0 30px;
  display: block;
}
@media (min-width: 48em) {
  .c-popup-left img {
    width: 100%;
    padding: 0;
  }
}

.c-close-square {
  background-color: white;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 10px;
  right: 0;
}
@media (min-width: 48em) {
  .c-close-square {
    top: 0;
    right: 0;
  }
}
.c-close-square:hover {
  cursor: pointer;
}

.c-video-list {
  padding-top: 0;
  text-align: center;
}
@media (min-width: 48em) {
  .c-video-list {
    text-align: left;
  }
}
.c-video-list .c-small-text {
  margin-bottom: 10px;
}
@media (min-width: 48em) {
  .c-video-list .grid__item {
    width: 100%;
  }
}
@media (min-width: 64em) {
  .c-video-list .grid__item {
    width: calc(33.33% - 40px);
  }
}

.c-video-embed iframe {
  width: 100%;
}
@media (min-width: 48em) {
  .c-video-embed iframe {
    max-width: 100%;
    height: 380px;
    width: 100%;
  }
}
@media (min-width: 64em) {
  .c-video-embed iframe {
    max-width: 100%;
    height: auto;
    width: 100%;
  }
}
@media (min-width: 83.375em) {
  .c-video-embed iframe {
    height: 240px;
  }
}

.c-vimeo-embed {
  background-color: #202230;
  text-align: center;
  color: white;
  max-height: 600px;
  display: block;
  overflow: scroll;
}
@media (min-width: 64em) {
  .c-vimeo-embed {
    max-height: 740px;
    max-width: 80vw;
    margin: 0 auto;
  }
}
@media (min-width: 83.375em) {
  .c-vimeo-embed {
    max-height: initial;
  }
}

/*# sourceMappingURL=main.css.map */
