/**
 * Description: MAIN SCSS FILE, Imports all scss files.
 * Version: 1.0.0
 * Last update: 2017/02/27
 * Author: Matthew Bayliss <matt@mattbay.co.uk>
 *
 */
/* ==========================================================================
   CHARSET
   ========================================================================== */
/* PATHS
========================================================================== */
/* ==========================================================================
   FONT IMPORTS
   ========================================================================== */
/* ==========================================================================
   HELPERS
   ========================================================================== */
/* FONTS
========================================================================== */
/* COLOURS
========================================================================== */
/* SIZES & SPACING
========================================================================== */
/* ANIMATION
========================================================================== */
/* LAYOUT
========================================================================== */
/* OPACITY
========================================================================== */
/* TRANSITIONS
========================================================================== */
/* ==========================================================================
   BASE
   ========================================================================== */
/* BLANKET RESET
   ========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML 5 ELEMENTS
   ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* LISTS
   ========================================================================== */
ol, ul {
  list-style: none;
}

/* BLOCKQUOTES
   ========================================================================== */
blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

/* TABLES
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* CLEAR
   ========================================================================== */
.clear {
  clear: both;
}

/* OUTLINE
   ========================================================================== */
* {
  outline: none;
}

/* MARK
   ========================================================================== */
mark {
  background-color: transparent;
  font-weight: 900;
}

/* BODY
   ========================================================================== */
body {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.004);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smooth: always;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-family: poppins, Arial, sans-serif;
  font-size: 18px;
  line-height: 27px;
  color: #00355F;
}
@media (min-width: 660px) {
  body {
    font-size: 16px;
    line-height: 28px;
  }
}

/* STRONG
   ========================================================================== */
strong, b {
  font-weight: 900;
}

/* ITALICS
   ========================================================================== */
i, em {
  font-style: italic;
}

/* A LINKS
   ========================================================================== */
a {
  transition: all 0.3s ease-in-out;
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #000000;
}

/* HEADINGS
   ========================================================================== */
h1 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
}
@media (min-width: 900px) {
  h1 {
    font-size: 50px;
  }
}

h2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
}
h2.sm {
  font-size: 40px;
}
h2.smr {
  font-size: 20px;
}
h2 span {
  color: #00D3C4;
}
@media (min-width: 900px) {
  h2 {
    font-size: 40px;
  }
}
@media (min-width: 1100px) {
  h2.smr {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  h2.smr {
    font-size: 40px;
  }
}

h3, h6, h5, h4 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}
h3 span, h6 span, h5 span, h4 span {
  color: #00D3C4;
}

/* BODY COPY
   ========================================================================== */
p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}
p.lg {
  font-size: 16px;
  line-height: 26px;
}
@media (min-width: 660px) {
  p {
    font-size: 17px;
    line-height: 25px;
  }
  p.lg {
    font-size: 20px;
    line-height: 32px;
  }
}
p:last-child {
  margin-bottom: 0px;
}

/* ADDRESS
   ========================================================================== */
address {
  font-size: 16px;
  line-height: 28px;
}

/* ==========================================================================
   VENDORS
   ========================================================================== */
.flickity-button {
  background: transparent !important;
  border: 2px solid #ffffff !important;
  transform: unset !important;
  width: 48px !important;
  height: 48px !important;
  transition: all 0.3s ease-in-out;
}
.flickity-button:disabled {
  display: none;
}
.flickity-button .flickity-button-icon path {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.flickity-button:hover {
  background: #00355F !important;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* BUTTON
================================================================== */
.button {
  box-sizing: border-box;
  display: inline-block;
  height: 42px;
  padding-right: 30px;
  padding-left: 30px;
  border: none;
  border-radius: 30px;
  background-color: #00D3C4;
  color: #00355F;
  font-family: poppins, Arial, sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  background-color: #E9EFFA;
  color: #00355F;
}
@media (min-width: 660px) {
  .button {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

/* INPUTS
============================================================================ */
input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
textarea,
select {
  border-radius: 10px;
  box-sizing: border-box;
  font-family: poppins, Arial, sans-serif;
  background: #ffffff;
  border: 2px solid #00355F;
  font-size: 16px;
  padding: 16px;
  color: #000000;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  transition: all 0.3s ease-in-out;
}
input[type=email]::-ms-expand,
input[type=search]::-ms-expand,
input[type=number]::-ms-expand,
input[type=password]::-ms-expand,
input[type=tel]::-ms-expand,
input[type=text]::-ms-expand,
textarea::-ms-expand,
select::-ms-expand {
  display: none;
}
input[type=email]::-webkit-inner-spin-button,
input[type=email] input[type=number]::-webkit-outer-spin-button,
input[type=search]::-webkit-inner-spin-button,
input[type=search] input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=number] input[type=number]::-webkit-outer-spin-button,
input[type=password]::-webkit-inner-spin-button,
input[type=password] input[type=number]::-webkit-outer-spin-button,
input[type=tel]::-webkit-inner-spin-button,
input[type=tel] input[type=number]::-webkit-outer-spin-button,
input[type=text]::-webkit-inner-spin-button,
input[type=text] input[type=number]::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
textarea input[type=number]::-webkit-outer-spin-button,
select::-webkit-inner-spin-button,
select input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
input[type=email]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=text]:focus,
textarea:focus,
select:focus {
  border-color: #000000;
}
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #cccccc;
}
input[type=email]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=text]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #cccccc;
  opacity: 1;
}
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #cccccc;
  opacity: 1;
}
input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #cccccc;
}

select {
  background-image: url(/images/select.svg?8379c2441e1f14fb80d4c31cf0eddb65);
  background-repeat: no-repeat;
  background-position: 95% 50%;
}

/* CHECKBOXS & RADIO BUTTONS
============================================================================ */
[type=checkbox]:not(:checked),
[type=checkbox]:checked,
[type=radio]:not(:checked),
[type=radio]:checked {
  position: absolute;
  left: -9999px;
}

[type=checkbox]:not(:checked) + label,
[type=checkbox]:checked + label,
[type=radio]:not(:checked) + label,
[type=radio]:checked + label {
  position: relative;
  padding-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  line-height: 20px;
  margin-bottom: 0px;
  width: 100%;
  box-sizing: border-box;
  display: block;
}
[type=checkbox]:not(:checked) + label.check-noborder,
[type=checkbox]:checked + label.check-noborder,
[type=radio]:not(:checked) + label.check-noborder,
[type=radio]:checked + label.check-noborder {
  border: none;
  padding-left: 30px;
}

[type=checkbox]:not(:checked) + label:before,
[type=checkbox]:checked + label:before,
[type=checkbox]:not(:checked) + label:after,
[type=checkbox]:checked + label:after,
[type=radio]:not(:checked) + label:before,
[type=radio]:checked + label:before,
[type=radio]:not(:checked) + label:after,
[type=radio]:checked + label:after {
  content: "";
  position: absolute;
}

[type=checkbox]:not(:checked) + label.check-noborder:before,
[type=checkbox]:checked + label.check-noborder:before,
[type=radio]:not(:checked) + label.check-noborder:before,
[type=radio]:checked + label.check-noborder:before {
  left: 0px;
}

[type=checkbox]:not(:checked) + label:before,
[type=checkbox]:checked + label:before,
[type=radio]:not(:checked) + label:before,
[type=radio]:checked + label:before {
  left: 0px;
  top: 5px;
  width: 20px;
  height: 20px;
  border: 1px solid #cccccc;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

[type=checkbox]:not(:checked) + label:after,
[type=checkbox]:checked + label:after,
[type=radio]:not(:checked) + label:after,
[type=radio]:checked + label:after {
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
  background: #cccccc;
  top: 10px;
  left: 5px;
}

[type=checkbox]:not(:checked) + label.check-noborder:after,
[type=checkbox]:checked + label.check-noborder:after,
[type=radio]:not(:checked) + label.check-noborder:after,
[type=radio]:checked + label.check-noborder:after {
  left: 5px;
}

[type=checkbox]:checked + label:before,
[type=radio]:checked + label:before {
  border-color: #000000;
}

[type=checkbox]:checked + label:after,
[type=radio]:checked + label:after {
  background: #000000;
}

[type=checkbox]:checked + label .ui,
[type=checkbox]:not(:checked) + label .ui:before,
[type=checkbox]:checked + label .ui:after,
[type=radio]:checked + label .ui,
[type=radio]:not(:checked) + label .ui:before,
[type=radio]:checked + label .ui:after {
  position: absolute;
  left: 6px;
  width: 65px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  transition: all 0.2s;
}

[type=checkbox]:not(:checked) + label .ui:before,
[type=radio]:not(:checked) + label .ui:before {
  content: "no";
  left: 32px;
}

[type=checkbox]:checked + label .ui:after,
[type=radio]:checked + label .ui:after {
  content: "yes";
  color: #000000;
}

[type=checkbox]:focus + label:before,
[type=radio]:focus + label:before {
  box-sizing: border-box;
}

/* GRAVITY FORMS
============================================================================ */
.gform_submission_error span {
  color: #c02b0a;
}

.gform_heading {
  display: none;
}

.gform_wrapper {
  margin-top: 50px;
}

.gform_wrapper.gravity-theme .customForm {
  position: relative;
}
.gform_wrapper.gravity-theme .customForm .gform_fields input, .gform_wrapper.gravity-theme .customForm .gform_fields textarea {
  padding: 16px;
  display: block;
}
.gform_wrapper.gravity-theme .customForm .gform_footer .button {
  height: 57px;
  margin: 0;
  border-radius: 10px;
  width: 100%;
  text-transform: none;
  font-weight: normal;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gform_wrapper.gravity-theme .customForm .gform_footer .button svg {
  margin-left: 10px;
}
.gform_wrapper.gravity-theme .customForm .gform_footer .button:hover {
  background: #00355F;
}
@media (min-width: 900px) {
  .gform_wrapper.gravity-theme .customForm .gform_fields {
    grid-template-columns: 1fr 1fr 1fr 400px;
    grid-column-gap: 30px;
    row-gap: 30px;
  }
  .gform_wrapper.gravity-theme .customForm .gform_fields input, .gform_wrapper.gravity-theme .customForm .gform_fields textarea {
    padding: 16px;
    display: block;
  }
  .gform_wrapper.gravity-theme .customForm .gform_fields textarea {
    height: 324px !important;
  }
  .gform_wrapper.gravity-theme .customForm .gform_fields > div:nth-child(1) {
    grid-area: 1/1/5/4;
  }
  .gform_wrapper.gravity-theme .customForm .gform_fields > div:nth-child(2) {
    grid-area: 1/4/2/6;
  }
  .gform_wrapper.gravity-theme .customForm .gform_fields > div:nth-child(3) {
    grid-area: 2/4/3/6;
  }
  .gform_wrapper.gravity-theme .customForm .gform_fields > div:nth-child(4) {
    grid-area: 3/4/4/6;
  }
  .gform_wrapper.gravity-theme .customForm .gform_footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0;
  }
  .gform_wrapper.gravity-theme .customForm .gform_footer .button {
    height: 57px;
    margin: 0;
    border-radius: 10px;
    width: 430px;
  }
}

/* TABLES
============================================================================ */
table {
  width: 100%;
}
table tr {
  *zoom: 1;
}
table tr:before, table tr:after {
  display: table;
  content: "";
}
table tr:after {
  clear: both;
}
table tr th, table tr td {
  padding: 20px;
  vertical-align: middle;
  font-size: 16px;
  text-align: left;
}
table tr th {
  background: #cccccc;
  font-weight: 900;
}
table tr td {
  border-bottom: 1px solid #cccccc;
}

.image--full img {
  width: 100%;
  height: auto;
  display: block;
}

.image--ratio {
  padding-top: 76.4583333333%;
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}
.image--ratio.image--ratio--square {
  padding-top: 100%;
}
.image--ratio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image--ratio .caption {
  position: absolute;
  z-index: 1;
  background: #ffffff;
  color: #000000;
  padding: 30px;
  text-transform: uppercase;
  top: 0;
  left: 0;
  max-width: 250px;
}
.image--ratio .caption.caption--dark {
  background: #cccccc;
  color: #ffffff;
}
.image--ratio .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  border: 1px solid #ffffff;
  width: 230px;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 660px) {
  .image--ratio .play {
    font-size: 28px;
    line-height: 34px;
    width: 350px;
    height: 350px;
  }
}

.social__block {
  font-size: 32px;
  line-height: 32px;
}
.social__block a {
  padding-right: 10px;
}
@media (min-width: 1100px) {
  .social__block {
    line-height: 90px;
  }
}

.social--list {
  padding: 0 30px 30px;
}
.social--list li a {
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1100px) {
  .social--list {
    line-height: 90px;
  }
}

header {
  padding: 30px 0;
  z-index: 110;
  position: fixed;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
header.isHero {
  width: 100%;
  background: transparent;
}
header .logo.active {
  position: fixed;
  top: 30px;
}
header .logo img {
  height: 50px;
  width: auto;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav {
  display: none;
}
header nav ul li {
  display: inline-block;
  margin-left: 30px;
  font-size: 20px;
  font-weight: 900;
}
header nav ul li a {
  color: #ffffff;
}
header nav ul li a:hover {
  color: #00D3C4;
}
@media (max-width: 1000px) {
  header.fixedHeader {
    padding: 15px 0;
    background: #00355F;
  }
  header.fixedHeader .logo.active {
    top: 15px;
  }
}
@media (min-width: 1000px) {
  header {
    position: relative;
    padding: 50px 0;
  }
  header.isHero {
    position: absolute;
  }
  header .logo img {
    height: 70px;
  }
  header nav {
    display: flex;
  }
}

.footer--bottom {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 50px 0;
}
@media (min-width: 660px) {
  .footer--bottom {
    padding: 0 0 100px;
  }
}
.footer--bottom li {
  display: inline-block;
  margin-left: 10px;
}
.footer--bottom li a {
  color: #ffffff;
}
.footer--bottom li a:hover {
  color: #00D3C4;
}

.footer {
  padding: 50px 0 20px;
}
.footer > div {
  margin-bottom: 50px;
}
.footer > div:last-child {
  margin-bottom: 0;
}
.footer a {
  color: #00D3C4;
}
.footer a:hover {
  color: #ffffff;
}
.footer h3, .footer h4, .footer h5, .footer h6 {
  margin-bottom: 20px;
}
.footer .partners {
  display: inline-block;
}
.footer .partners img {
  height: 60px;
  width: auto;
  padding-left: 20px;
}
.footer .partners img:first-of-type {
  padding-left: 0;
}
@media (min-width: 660px) {
  .footer {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0 50px;
  }
  .footer h3, .footer h4, .footer h5, .footer h6 {
    margin-bottom: 40px;
  }
  .footer > div {
    margin-bottom: unset;
  }
  .footer > div:nth-child(1) {
    flex-basis: 50%;
    max-width: 50%;
  }
  .footer > div:nth-child(2) {
    flex-basis: 50%;
    max-width: 50%;
  }
  .footer > div:nth-child(3) {
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 50px;
  }
  .footer .partners img {
    height: 90px;
    padding-left: 30px;
  }
}
@media (min-width: 1100px) {
  .footer p {
    line-height: 90px;
  }
  .footer > div:nth-child(1) {
    flex-basis: 35%;
    max-width: 35%;
  }
  .footer > div:nth-child(2) {
    flex-basis: 25%;
    max-width: 25%;
  }
  .footer > div:nth-child(3) {
    flex-basis: 40%;
    max-width: 40%;
    margin-top: unset;
  }
}

.text.text--sm {
  max-width: 500px;
  width: 100%;
  margin: auto;
}
.text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
  margin-bottom: 30px;
}
.text a:not(.button) {
  color: #00D3C4;
}

.navigation__toggle {
  height: 30px;
  width: 30px;
  z-index: 110;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  transform: translateY(-4px);
  position: fixed;
  right: 30px;
  top: 40px;
  transition: all 0.3s ease-in-out;
}
.navigation__toggle.fixedHeader {
  top: 25px;
}
.navigation__toggle .navigation__icon {
  height: 30px;
  width: 30px;
}
.navigation__toggle .navigation__icon:after,
.navigation__toggle .navigation__icon:before,
.navigation__toggle .navigation__icon div {
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  content: "";
  display: block;
  height: 2px;
  transition: all 0.2s ease-in-out;
  margin: 8px 0;
}
.navigation__toggle.active {
  position: fixed;
}
.navigation__toggle.active .navigation__icon:after,
.navigation__toggle.active .navigation__icon:before,
.navigation__toggle.active .navigation__icon div {
  opacity: 1;
}
.navigation__toggle.active .navigation__icon:before {
  transform: translateY(8px) rotate(135deg);
  background-color: #ffffff;
}
.navigation__toggle.active .navigation__icon:after {
  transform: translateY(-12px) rotate(-135deg);
  background-color: #ffffff;
}
.navigation__toggle.active .navigation__icon div {
  transform: scale(0);
  background-color: #ffffff;
  margin: 0;
}
@media (min-width: 660px) {
  .navigation__toggle {
    right: 60px;
  }
}
@media (min-width: 1000px) {
  .navigation__toggle {
    display: none;
  }
}

.navigation__overlay {
  background: #00355F;
  color: #ffffff;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 25;
  text-align: left;
  transform: scaleX(0) skewX(0);
  transform-origin: top left;
}
@media (max-height: 550px) {
  .navigation__overlay {
    display: block;
    height: 100%;
    overflow: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .navigation__overlay .navigation__overlay--inner {
    padding: 50px 0;
  }
}
.navigation__overlay a {
  color: #ffffff;
}
.navigation__overlay .navigation__overlay--inner {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
}
.navigation__overlay nav {
  position: relative;
  display: block;
  padding: 30px;
}
.navigation__overlay nav li {
  font-size: 30px;
  line-height: 50px;
}
.navigation__overlay nav li a {
  border-bottom: 3px solid transparent;
  padding: 0 10px 5px 0;
}
.navigation__overlay nav li:last-child {
  margin-bottom: 0;
}
.navigation__overlay nav li:last-child a {
  padding: 0 10px 0 0;
}
@media (min-width: 1000px) {
  .navigation__overlay {
    display: none;
  }
}

.hero {
  display: flex;
  height: 100vh;
  width: 100%;
  min-height: 690px;
  text-align: center;
  position: relative;
}
.hero + .isGrey {
  background: rgba(246, 246, 247, 0.84);
  z-index: 1;
  position: relative;
}
.hero .hero--info {
  max-width: 609px;
  width: 100%;
  margin: auto;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero .hero--info--top {
  padding-bottom: 5%;
}
.hero .hero--info--top h1 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 300px;
  transform: translateX(-50%);
}
.hero .hero--info--top img {
  width: 100%;
  height: auto;
}
.hero .imgDesktop {
  display: none;
}
.hero .imgMobile {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  z-index: 0;
}
.hero .imgMobile img {
  width: auto;
  height: 463px;
}
.hero .down {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 39px;
  height: 39px;
}
.hero .down svg {
  width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  .hero {
    text-align: unset;
  }
  .hero .hero--info {
    margin: unset;
  }
  .hero .hero--info h1, .hero .hero--info p {
    padding-bottom: 5%;
  }
  .hero .hero--info--top {
    padding-bottom: 0;
  }
  .hero .hero--info--top h1 {
    position: unset;
    top: unset;
    left: unset;
    width: unset;
    max-width: unset;
    transform: unset;
  }
  .hero .hero--info--top img {
    display: none;
  }
  .hero .imgMobile {
    display: none;
  }
  .hero .imgDesktop {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .hero .imgDesktop img {
    width: auto;
    height: 80vh;
  }
  .hero .down {
    width: 68px;
    height: 68px;
  }
}
@media (min-width: 1000px) {
  .hero .imgDesktop img {
    height: 100vh;
  }
}
@media (min-width: 1100px) {
  .hero .imgDesktop img {
    height: 119vh;
  }
}

.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 0;
  margin: 50px auto 0;
}
.logos.logos--one {
  grid-template-columns: repeat(1, 1fr);
  max-width: 300px;
  width: 100%;
}
.logos img {
  width: 100%;
  height: auto;
}
@media (min-width: 800px) {
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .logos.logos--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    width: 100%;
  }
  .logos.logos--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    width: 100%;
  }
  .logos.logos--one {
    grid-template-columns: repeat(1, 1fr);
    max-width: 300px;
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .logos {
    grid-template-columns: repeat(4, 1fr);
  }
}

.threeCols.threeCols--news > div {
  margin-bottom: 50px;
}
.threeCols.threeCols--news > div:last-child {
  margin-bottom: 0;
}
.threeCols > div .text {
  padding: 0 30px;
  max-width: 500px;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
}
.threeCols > div .text img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}
@media (min-width: 800px) {
  .threeCols {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .threeCols.threeCols--news {
    gap: 40px;
  }
  .threeCols.threeCols--news > div {
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-bottom: 0;
  }
  .threeCols > div {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
    box-sizing: border-box;
  }
  .threeCols > div .text {
    max-width: 360px;
  }
  .threeCols > div .text img {
    width: 95px;
    height: 95px;
  }
}
@media (min-width: 1000px) {
  .threeCols.threeCols--news {
    gap: 60px;
  }
  .threeCols.threeCols--news > div {
    flex-basis: calc(33.333333% - 40px);
    max-width: calc(33.333333% - 40px);
  }
}

.twoCol {
  display: flex;
  flex-direction: column-reverse;
}
.twoCol.twoCol--intro .twoCol--text .c--green {
  display: none;
  text-transform: uppercase;
}
.twoCol.twoCol--intro .twoCol--text h2 {
  display: block;
}
.twoCol .twoCol--image {
  margin-bottom: 50px;
}
.twoCol .twoCol--image img {
  width: 100%;
  height: auto;
}
.twoCol .twoCol--image h2 {
  margin-bottom: 30px;
}
.twoCol .twoCol--text h2 {
  display: none;
}
.twoCol .twoCol--text .twoCol--text--logos {
  margin-top: 30px;
}
.twoCol .twoCol--text .twoCol--text--logos img {
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: 100%;
  margin-right: 20px;
}
@media (min-width: 800px) {
  .twoCol {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 100px;
         column-gap: 100px;
    flex-direction: row;
  }
  .twoCol.twoCol--intro {
    -moz-column-gap: 20px;
         column-gap: 20px;
    justify-content: space-between;
  }
  .twoCol.twoCol--intro .twoCol--text .c--green {
    display: block;
  }
  .twoCol.twoCol--reverse {
    flex-direction: row-reverse;
  }
  .twoCol.twoCol--who {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .twoCol.twoCol--who .twoCol--text {
    flex-basis: calc(50% - 25px);
    max-width: calc(50% - 25px);
    justify-content: flex-start;
  }
  .twoCol.twoCol--who .twoCol--image {
    flex-basis: calc(50% - 25px);
    max-width: calc(50% - 25px);
  }
  .twoCol .twoCol--text {
    box-sizing: border-box;
    flex-basis: calc(50% - 50px);
    max-width: calc(50% - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .twoCol .twoCol--text h2 {
    display: block;
  }
  .twoCol .twoCol--text .textSmall {
    max-width: 480px;
    width: 100%;
  }
  .twoCol .twoCol--image {
    box-sizing: border-box;
    flex-basis: calc(50% - 50px);
    max-width: calc(50% - 50px);
    margin-bottom: 0;
  }
  .twoCol .twoCol--image img {
    width: 100%;
    height: auto;
  }
  .twoCol .twoCol--image h2 {
    display: none;
  }
}
@media (min-width: 1100px) {
  .twoCol.twoCol--who {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .twoCol.twoCol--who .twoCol--text {
    flex-basis: 30%;
    max-width: 30%;
  }
  .twoCol.twoCol--who .twoCol--image {
    flex-basis: 70%;
    max-width: 70%;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.grid > div:nth-child(1) {
  grid-area: 1/1/3/3;
}
.grid > div:nth-child(2) {
  grid-area: 3/1/4/2;
}
.grid > div:nth-child(3) {
  grid-area: 3/2/4/3;
}
.grid > div:nth-child(4) {
  grid-area: 4/1/5/2;
}
.grid > div:nth-child(5) {
  grid-area: 4/2/5/3;
}
.grid > div:nth-child(6) {
  grid-area: 5/1/7/3;
}
.grid > div .text {
  padding: 20px;
  font-size: 13px;
  line-height: 19px;
}
.grid > div .text h3, .grid > div .text h4, .grid > div .text h5, .grid > div .text h6 {
  margin-bottom: 10px;
}
.grid > div .image--grid {
  position: relative;
  height: 100%;
}
.grid > div .image--grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 660px) {
  .grid > div .text {
    padding: 30px;
    font-size: unset;
    line-height: unset;
  }
  .grid > div .text h3, .grid > div .text h4, .grid > div .text h5, .grid > div .text h6 {
    margin-bottom: 30px;
  }
}
@media (min-width: 900px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .grid > div:nth-child(1) {
    grid-area: 1/1/3/3;
  }
  .grid > div:nth-child(2) {
    grid-area: 3/1/4/2;
  }
  .grid > div:nth-child(3) {
    grid-area: 3/2/4/3;
  }
  .grid > div:nth-child(4) {
    grid-area: 1/3/2/4;
  }
  .grid > div:nth-child(5) {
    grid-area: 1/4/2/5;
  }
  .grid > div:nth-child(6) {
    grid-area: 2/3/4/5;
  }
  .grid > div .text {
    padding: 40px;
  }
  .grid > div .image--grid {
    position: relative;
    height: 100%;
  }
  .grid > div .image--grid img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1400px) {
  .grid > div .text {
    padding: 60px;
  }
}

.grid--image {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.grid--image > div.grid--image--text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid--image > div.grid--image--text .text {
  padding: 40px;
  max-width: 600px;
  width: 100%;
}
.grid--image > div.grid--image--text h2 {
  display: none;
}
.grid--image > div.grid--image--image {
  position: relative;
  padding-top: 30px;
}
.grid--image > div.grid--image--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid--image > div.grid--image--image h2 {
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .grid--image {
    flex-direction: row;
  }
  .grid--image.grid--image--reverse {
    flex-direction: row-reverse;
  }
  .grid--image > div {
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid--image > div.grid--image--image {
    padding-top: 0;
  }
  .grid--image > div.grid--image--image h2 {
    display: none;
  }
  .grid--image > div.grid--image--text h2 {
    display: block;
  }
  .grid--image > div.grid--image--text .text {
    padding: 60px;
  }
}

.people {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
  margin-top: 50px;
  justify-content: center;
}
.people > div {
  flex-basis: calc(50% - 10px);
  max-width: calc(50% - 10px);
  display: flex;
  text-align: center;
  justify-content: center;
}
.people > div img {
  width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  .people > div {
    flex-basis: calc(30% - 10px);
    max-width: calc(30% - 10px);
  }
}
@media (min-width: 1100px) {
  .people > div {
    flex-basis: calc(16% - 10px);
    max-width: calc(16% - 10px);
  }
}

.flickity-resize .testimonial {
  min-height: 100%;
}

@media (max-width: 800px) {
  .testimonials .flickity-prev-next-button {
    top: 150px !important;
  }
}

.testimonial > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  flex-direction: column-reverse;
}
.testimonial .testimonial--info {
  flex-basis: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
}
.testimonial .testimonial--info .text {
  width: 100%;
  padding: 30px 30px 30px 30px;
  box-sizing: border-box;
}
.testimonial .testimonial---bg {
  flex-basis: 300px;
  max-width: 300px;
  position: relative;
  width: 100%;
  margin: auto;
}
.testimonial .testimonial---bg .svg_mob {
  width: 100%;
  height: auto;
}
.testimonial .testimonial--image {
  position: absolute;
  left: 49px;
  top: 50%;
  transform: translateY(-63%);
  margin-top: 30px;
  border-radius: 50%;
  overflow: hidden;
  width: 250px;
  height: 250px;
}
@media (max-width: 800px) {
  .testimonial .testimonial---bg .svg_desk {
    display: none;
  }
}
@media (min-width: 800px) {
  .testimonial > div {
    flex-direction: row;
  }
  .testimonial .testimonial--info {
    flex-basis: 50%;
    max-width: 50%;
  }
  .testimonial .testimonial--info .text {
    max-width: 700px;
    width: 100%;
    padding: 30px 30px 30px 100px;
  }
  .testimonial .testimonial---bg {
    flex-basis: 50%;
    max-width: 50%;
    width: auto;
    position: relative;
    height: 100%;
    max-height: 730px;
    padding-left: 0;
  }
  .testimonial .testimonial---bg .svg_mob {
    display: none;
  }
  .testimonial .testimonial---bg .svg_desk {
    display: block;
    height: 100%;
    max-height: 730px;
    width: auto;
    transform: unset;
  }
  .testimonial .testimonial--image {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-48%);
    margin-top: 30px;
    border-radius: 50%;
    overflow: hidden;
    width: 450px;
    height: 450px;
  }
}

.slider .flickity-prev-next-button.next {
  right: -24px;
}
.slider .flickity-prev-next-button.previous {
  left: -24px;
}
.slider .flickity-button {
  border: 2px solid #00D3C4 !important;
  background: #ffffff !important;
}
.slider .flickity-button .flickity-button-icon path {
  fill: #00D3C4;
}
.slider .flickity-button:hover {
  background: #00D3C4 !important;
}
.slider .flickity-button:hover .flickity-button-icon path {
  fill: #ffffff;
}
.slider.slider--number {
  margin-top: 100px;
}
.slider.slider--number .flickity-viewport {
  overflow: visible;
}
.slider.slider--number .slider--cell {
  border: 1px solid #00D3C4;
}
.slider.slider--number .slider--cell .text .num {
  background: #00D3C4;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin: -75px auto 10px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 900;
}
.slider.slider--number .slider--cell .text h3, .slider.slider--number .slider--cell .text h4, .slider.slider--number .slider--cell .text h5, .slider.slider--number .slider--cell .text h6 {
  color: #00D3C4;
  margin-bottom: 10px;
}
.slider.slider--number .slider--cell .text h3:after, .slider.slider--number .slider--cell .text h4:after, .slider.slider--number .slider--cell .text h5:after, .slider.slider--number .slider--cell .text h6:after {
  content: " ";
  height: 2px;
  width: 58px;
  margin: 10px auto 0;
  background: #00D3C4;
  display: block;
}
.slider .slider--cell {
  background: #ffffff;
  margin-right: 30px;
  width: 100%;
  box-sizing: border-box;
  padding: 40px;
  border-radius: 30px;
  min-height: 100%;
}
.slider .slider--cell .text h3, .slider .slider--cell .text h4, .slider .slider--cell .text h5, .slider .slider--cell .text h6 {
  padding: 0 10px;
}
.slider .slider--cell img {
  height: 148px;
  width: auto;
  margin-bottom: 20px;
}
@media (min-width: 800px) {
  .slider .slider--cell {
    border: 1px solid #00D3C4;
  }
  .slider .slider--cell .text .num {
    height: 100px;
    width: 100px;
    margin: -90px auto 10px;
    font-size: 40px;
  }
  .slider .slider--cell {
    margin-right: 40px;
    width: calc(50% - 20px);
  }
}
@media (min-width: 1100px) {
  .slider.hideArrows .flickity-button {
    display: none;
  }
  .slider .slider--cell {
    margin-right: 60px;
    width: calc(33.333333% - 40px);
  }
}

.contactCols > div {
  margin-bottom: 50px;
}
.contactCols > div:last-child {
  margin-bottom: 0;
}
.contactCols > div .text {
  padding: 0 30px;
  max-width: 500px;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
}
.contactCols > div .text a[href^="mailto:"] {
  color: #00355F;
}
.contactCols > div .text a[href^="mailto:"]:hover {
  color: #00D3C4;
}
.contactCols > div .text svg {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}
@media (min-width: 800px) {
  .contactCols {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
  }
  .contactCols > div {
    flex-basis: 50%;
    max-width: 50%;
    box-sizing: border-box;
    margin-bottom: 0;
  }
  .contactCols > div .text {
    max-width: 360px;
  }
  .contactCols > div .text svg {
    width: 95px;
    height: 95px;
  }
}

@media (min-width: 660px) {
  .intro.intro--news {
    padding-bottom: 150px;
  }
}

.card {
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.card img {
  transition: all 0.3s ease-in-out;
}
.card .card--post {
  padding: 40px;
}
.card .card--post .card--cat {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.card .card--post h6 {
  margin-bottom: 20px;
}
.card:hover {
  background: #E9EFFA;
}
.card:hover img {
  transform: scale(1.02);
}

.wp-pagenavi {
  margin: 100px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  padding: 0;
  border-color: #E9EFFA;
  background: #E9EFFA;
  border-radius: 3px;
  font-weight: normal;
  margin: 0 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
.wp-pagenavi a.pages, .wp-pagenavi span.pages {
  height: 34px;
  padding: 0 10px;
  border: none;
  background: #E9EFFA !important;
  color: #00355F !important;
}
.wp-pagenavi a.extend, .wp-pagenavi span.extend {
  height: 34px;
  padding: 0 0;
  border: none;
  background: #E9EFFA !important;
  color: #00355F !important;
}
.wp-pagenavi a.last, .wp-pagenavi a.first, .wp-pagenavi span.last, .wp-pagenavi span.first {
  height: 34px;
  padding: 0 10px;
}
.wp-pagenavi a.page, .wp-pagenavi a.current, .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink, .wp-pagenavi span.page, .wp-pagenavi span.current, .wp-pagenavi span.nextpostslink, .wp-pagenavi span.previouspostslink {
  width: 34px;
  height: 34px;
}
.wp-pagenavi a.current, .wp-pagenavi a:hover, .wp-pagenavi span.current, .wp-pagenavi span:hover {
  border-color: #00D3C4;
  background: #00D3C4;
  color: #ffffff;
  font-weight: normal;
}

.intro__news {
  min-height: unset;
}
.intro__news .text {
  max-width: 800px;
  width: 100%;
}
.intro__news .text .social--share a {
  margin-right: 8px;
  font-size: 20px;
}
.intro__news .text .social--share a:hover {
  color: #00355F;
}
.intro__news + section {
  margin-top: 0px;
}
@media (min-width: 660px) {
  .intro__news {
    padding-bottom: 260px !important;
  }
  .intro__news + section {
    margin-top: -160px;
  }
}

.news__sections {
  margin-top: 100px;
}
.news__sections .text {
  margin-top: 100px;
}

.news__links {
  border-top: 1px solid #cccccc;
  margin-top: 100px;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
}
.news__links .button--news {
  display: flex;
  align-items: center;
  color: #00D3C4;
}
.news__links .button--news.button--news--left > div {
  margin-right: 10px;
  margin-left: 0;
}
.news__links .button--news.button--news--left > div svg {
  left: 35%;
}
.news__links .button--news > div {
  position: relative;
  border: 2px solid #00D3C4;
  width: 48px;
  height: 48px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.news__links .button--news > div svg {
  position: absolute;
  left: 32%;
  top: 33%;
  width: 35%;
  height: 35%;
}
.news__links .button--news > div svg path {
  fill: #00D3C4;
  transition: all 0.3s ease-in-out;
}
.news__links .button--news:hover > div {
  background: #00D3C4;
}
.news__links .button--news:hover > div svg path {
  fill: #ffffff;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  max-width: 1220px;
  width: 100%;
  margin: auto;
  padding: 0 30px;
  box-sizing: border-box;
  position: relative;
}
.container.container--sm {
  max-width: 800px;
}
.container.container--md {
  max-width: 1000px;
}
.container.container--md1 {
  max-width: 1120px;
}
.container.container--md2 {
  max-width: 1600px;
}
.container.container--lg {
  max-width: 2560px;
}
.container.container--noPad {
  padding: 0;
}
@media (max-width: 660px) {
  .container.container--noPadMobile {
    padding: 0;
  }
}
@media (min-width: 660px) {
  .container {
    padding: 0 60px;
  }
}
@media (min-width: 800px) {
  .container.container--noPadLeft {
    padding-left: 0;
  }
  .container.container--noPadRight {
    padding-right: 0;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.isBlue {
  background: #00355F;
  color: #ffffff;
}

.isGreen {
  background: #00D3C4;
}

.isLightBlue {
  background: #E9EFFA;
}

.isGrey {
  background: #F6F6F7;
}

.c--green {
  color: #00D3C4;
}

section {
  position: relative;
}

.hasPad {
  padding: 50px 0;
}
@media (min-width: 660px) {
  .hasPad {
    padding: 100px 0;
  }
}
@media (min-width: 1100px) {
  .hasPad.hasPadWho {
    padding: 250px 0 100px;
  }
}

.hasPadBottom {
  padding-bottom: 50px;
}
@media (min-width: 660px) {
  .hasPadBottom {
    padding-bottom: 100px;
  }
}

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

.intro + .three .threeCols {
  margin-top: -85px;
}
@media (min-width: 660px) {
  .intro + .three .threeCols {
    margin-top: -145px;
  }
}

.intro + .contact .contactCols {
  margin-top: -85px;
}
@media (min-width: 660px) {
  .intro + .contact .contactCols {
    margin-top: -145px;
  }
}

.intro + .news .threeCols--news {
  margin-top: -85px;
}
@media (min-width: 660px) {
  .intro + .news .threeCols--news {
    margin-top: -145px;
  }
}
