html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  font-family: roboto;
  color: #221e20;
}
a {
  text-decoration: none;
  transition: color 0.2s;
}
a.hover-white:hover {
  color: #ffffff;
}
a.hover-grey:hover {
  color: #cccccc;
}
.alert {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  border: 1px solid black;
}
.alert.alert-error {
  background-color: rgba(255, 0, 0, 0.1);
  border-color: #bd0202;
}
.background-slice {
  background-image: url("/images/Background-Slice-68e47a9ec7f8cadf2e4e55c88dd0269b.svg?vsn=d");
  background-size: cover;
  background-position: bottom;
}
.background-slice--grey-dot {
  background-image: url("/images/backgrounds/grey-dot-slant-background-f8594e4176c8038cb84c10528f2ecd4a.svg?vsn=d");
}
.background-square {
  background-image: url("/images/Background-Square.svg");
  background-size: cover;
  background-position: bottom;
}
b {
  font-weight: 400;
}
.button {
  background-color: #128093;
  box-shadow: 0 2px 0 0 #135c6b;
  padding: 25px 40px;
  color: white;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  transition: background-color 0.2s;
}
.button:hover {
  cursor: pointer;
  background-color: #138a9e;
}
.button:focus {
  outline: none;
}
.button:active {
  background-color: #128093;
  box-shadow: none;
  transform: translateY(2px);
}
.column-container {
  display: flex;
  width: 100%;
}
.column-container-keepflex {
  display: flex;
}
.column-container-table {
  display: inline-table;
}
.column-container.column-center {
  justify-content: center;
  align-items: center;
}
.column-container-keepflex.column-right {
  justify-content: flex-end;
  align-items: center;
}
.column {
  box-sizing: border-box;
}
.column.perc25 {
  width: 25%;
}
.column.perc33 {
  width: 33%;
}
.column.perc40 {
  width: 40%;
}
.column.perc50 {
  width: 50%;
}
.column.percmain {
  width: 60%;
}
.column.perc60 {
  width: 60%;
}
.column.perc67 {
  width: 67%;
}
.column.icon {
  width: 80px;
}
.column.icon-text {
  width: calc(100% - 80px);
}
.column.icon-mobile-resize {
  width: 80px;
}
.column.icon-text-mobile-resize {
  width: calc(100% - 80px);
}
.column.small-icon {
  width: 40px;
}
.column.small-icon-text {
  width: calc(100% - 40px);
}
@media screen and (max-width: 1200px) {
  .column-container {
    display: inline-block;
  }
  .column.perc25 {
    width: 50%;
    box-sizing: border-box;
  }
  .column.perc33,
  .column.perc40,
  .column.perc50,
  .column.perc60,
  .column.perc67,
  .column.percmain,
  .column.icon-mobile-resize,
  .column.icon-text-mobile-resize {
    width: 100%;
  }
  .column-container-keepflex.column-right {
    justify-content: center;
  }
}
.content-section {
  width: 100%;
  padding: 100px;
  box-sizing: border-box;
}
.content-section.small-section {
  padding: 50px 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.content-wrapper.form-wrapper {
  max-width: 800px;
}
@media screen and (max-width: 800px) {
  .content-section {
    padding: 50px 20px;
  }
}
.content {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content__section {
  width: 100%;
}
footer {
  min-height: 300px;
  background-color: #43484c;
}
.form {
  width: 100%;
}
.form-block {
  margin: 20px 0;
}
.form-field-label {
  font-size: 16px;
  color: #525F7F;
  margin: 5px 0;
}
.form-error-message {
  color: #d85a5a;
  margin: 10px 0;
}
.form-field-error {
  color: #d85a5a;
  margin: 5px 0;
}
input,
textarea {
  width: 100%;
  font-size: 14px;
  font-family: Muli;
  padding: 12px;
  border: 2px #221e20;
  background-color: #ffffff;
  box-sizing: border-box;
  box-shadow: 1px 1px 2px 0px #97a0a7;
  border-radius: 3px;
  transition: background-color 0.2s, border 0.2s;
}
input:focus,
textarea:focus {
  background-color: transparent;
  border-color: #128093;
  outline: none;
}
textarea {
  max-width: 100%;
  min-height: 100px;
}
.submit-button {
  width: 100%;
  padding: 15px;
  border: 2px solid #128093;
  border-radius: 3px;
  color: #ffffff;
  font-family: Muli;
  font-size: 14px;
  font-weight: 600;
  background-color: #128093;
  box-shadow: 1px 1px 2px 0px #97a0a7;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}
.submit-button:hover {
  border: 2px solid #1b8ca0;
  background-color: #1b8ca0;
}
.submit-button:focus {
  outline: none;
}
.help-block {
  display: block;
  margin-top: 5px;
  color: #bd0202;
}
header {
  background-image: url("/images/Header-image-spaced-f6021c63fb04936165775b337ab44f3b.png?vsn=d");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.header-heading {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
h1 {
  font-size: 52px;
  line-height: 1.3em;
  font-weight: 500;
}
h2 {
  font-size: 35px;
  font-weight: 400;
}
h3 {
  font-size: 32px;
  font-weight: 300;
}
h4 {
  font-size: 25px;
  font-weight: 300;
}
@media screen and (max-width: 800px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
}
img {
  max-width: 100%;
}
main {
  width: 100%;
  min-height: calc(100% - 300px);
}
.nav-item {
  font-size: 18px;
  font-family: roboto;
  font-weight: 400;
  color: white;
  transition: color 0.3s;
  padding: 10px;
}
.nav-item:hover {
  color: #CCC;
}
nav.nav-type-panel .nav-item {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.mobile-nav-button {
  width: 40px;
  height: 40px;
  background-image: url("/images/icons/hamburger-white-e554f021b82e2cb1709648af3ae6f8e3.svg?vsn=d");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.mobile-nav-panel-background {
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  height: 0%;
  background-color: transparent;
  transition: background-color 0.3s;
}
.mobile-nav-panel-background.open {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 30px;
  background-color: #128093;
  transform: translateX(300px);
  transition: transform 0.3s;
}
.mobile-nav-panel.open {
  transform: translateX(0);
}
.mobile-nav-panel-close-button {
  width: 40px;
  height: 40px;
  margin-left: auto;
  background-image: url("/images/icons/cross-white-a17ea6ea8f28feb9db904cc9251f6bfb.svg?vsn=d");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.header-dark .nav-item {
  color: #128093;
}
.header-dark .nav-item:hover {
  color: #229daa;
}
.header-dark .mobile-nav-button {
  width: 40px;
  height: 40px;
  background-image: url("/images/icons/hamburger-blue-4e8f2ebe8c7af0195441674059cbc889.svg?vsn=d");
}
p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.8em;
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.slide {
  transition: transform 1s;
}
.slider-dots {
  width: 100%;
  text-align: center;
}
.slider-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 10px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.5s;
}
.slider-dot.active {
  background-color: #128093;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-ExtraLight-f9b7a534f6b6a444ad62ea7e2df39303.ttf?vsn=d");
  font-weight: 200;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-Light-fb56401f2c9be89c17136b3f1264447c.ttf?vsn=d");
  font-weight: 300;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-Regular-a401afc3d1bb36f4de72835d1257746e.ttf?vsn=d");
  font-weight: 400;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-SemiBold-92860f9d8b244fd8a21ec0fd726d795e.ttf?vsn=d");
  font-weight: 500;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-Bold-557f369c1c3c1a1b80b26ab8a91a6979.ttf?vsn=d");
  font-weight: 600;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-ExtraBold-ae2a95d99bb298c15e31923cd55ee043.ttf?vsn=d");
  font-weight: 700;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-Black-6d782a98b54c6ef15f7ca92e57e53dd8.ttf?vsn=d");
  font-weight: 800;
}
@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto/Roboto-Thin-89e2666c24d37055bcb60e9d2d9f7e35.ttf?vsn=d");
  font-weight: 200;
}
@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto/Roboto-Light-fc84e998bc29b297ea20321e4c90b6ed.ttf?vsn=d");
  font-weight: 300;
}
@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto/Roboto-Regular-3e1af3ef546b9e6ecef9f3ba197bf7d2.ttf?vsn=d");
  font-weight: 400;
}
@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto/Roboto-Medium-d08840599e05db7345652d3d417574a9.ttf?vsn=d");
  font-weight: 500;
}
@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto/Roboto-Bold-ee7b96fa85d8fdb8c126409326ac2d2b.ttf?vsn=d");
  font-weight: 600;
}
@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto/Roboto-Black-ec4c9962ba54eb91787aa93d361c10a8.ttf?vsn=d");
  font-weight: 700;
}
.round-corners {
  border: 25px;
  border-radius: 3px;
}
.border-medium {
  border: 25px;
}
.color-primary {
  color: #128093;
}
.bg-primary {
  background-color: #128093;
}
.color-primary-l {
  color: #229daa;
}
.bg-primary-l {
  background-color: #229daa;
}
.color-white {
  color: #FFFFFF;
}
.bg-white {
  background-color: #FFFFFF;
}
.color-black {
  color: #221e20;
}
.bg-black {
  background-color: #221e20;
}
.color-grey {
  color: #F4F5F7;
}
.bg-grey {
  background-color: #F4F5F7;
}
.color-lightgrey {
  color: #97a0a7;
}
.bg-lightgrey {
  background-color: #97a0a7;
}
.color-grey-xxl {
  color: #f4f5f7;
}
.bg-grey-xxl {
  background-color: #f4f5f7;
}
.color-blue {
  color: #128093;
}
.bg-blue {
  background-color: #128093;
}
.color-purple {
  color: #32325D;
}
.bg-purple {
  background-color: #32325D;
}
.color-deepblue {
  color: #525F7F;
}
.bg-deepblue {
  background-color: #525F7F;
}
.max-height-large {
  max-height: 500px;
}
.max-height-medium {
  max-height: 480px;
}
@media screen and (max-width: 1200px) {
  .hide-mobile {
    display: none;
  }
}
.icon-shadow {
  height: 40px;
  width: 40px;
  padding: 20px;
  border-radius: 100%;
  background-color: #ffffff;
  box-shadow: 2px 1px 2px 0px #43484c;
}
.circle-shadow {
  border-radius: 100%;
  background-color: #ffffff;
  box-shadow: 2px 1px 2px 0px #43484c;
}
.shadow {
  box-shadow: 2px 1px 2px 0px #43484c;
}
.skew {
  transform: skew(0deg, -4deg);
}
.unskew {
  transform: skew(0deg, 4deg);
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left.center-on-mobile {
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .left-on-mobile {
    text-align: left;
  }
  .text-left.center-on-mobile {
    text-align: center;
  }
  .center-on-mobile {
    margin: auto;
    text-align: center;
  }
}
.underline-white {
  border-bottom: thin solid rgba(255, 255, 255, 0.5);
}
.valign-middle {
  vertical-align: middle;
}
.valign-bottom {
  vertical-align: bottom;
}
.full-width {
  width: 100%;
}
.big-min-width {
  min-width: 400px;
}
.medium-min-width {
  min-width: 350px;
}
@media screen and (max-width: 800px) {
  .big-min-width,
  .medium-min-width {
    min-width: auto;
  }
}
.margin-none {
  margin: 0;
}
.margin-small {
  margin: 10px;
}
.margin-medium {
  margin: 25px;
}
.margin-large {
  margin: 50px;
}
.margin-extra-large {
  margin: 100px;
}
.margin-left-none {
  margin-left: 0;
}
.margin-left-small {
  margin-left: 10px;
}
.margin-left-medium {
  margin-left: 25px;
}
.margin-left-large {
  margin-left: 50px;
}
.margin-left-extra-large {
  margin-left: 100px;
}
.margin-right-none {
  margin-right: 0;
}
.margin-right-small {
  margin-right: 10px;
}
.margin-right-medium {
  margin-right: 25px;
}
.margin-right-large {
  margin-right: 50px;
}
.margin-right-extra-large {
  margin-right: 100px;
}
.margin-top-none {
  margin-top: 0;
}
.margin-top-small {
  margin-top: 10px;
}
.margin-top-medium {
  margin-top: 25px;
}
.margin-top-large {
  margin-top: 50px;
}
.margin-top-extra-large {
  margin-top: 100px;
}
.margin-bottom-none {
  margin-bottom: 0;
}
.margin-bottom-small {
  margin-bottom: 10px;
}
.margin-bottom-medium {
  margin-bottom: 25px;
}
.margin-bottom-large {
  margin-bottom: 50px;
}
.margin-bottom-extra-large {
  margin-bottom: 100px;
}
.margin-x-none {
  margin-left: 0;
  margin-right: 0;
}
.margin-x-small {
  margin-left: 10px;
  margin-right: 10px;
}
.margin-x-medium {
  margin-left: 25px;
  margin-right: 25px;
}
.margin-x-large {
  margin-left: 50px;
  margin-right: 50px;
}
.margin-x-extra-large {
  margin-left: 100px;
  margin-right: 100px;
}
.margin-y-none {
  margin-top: 0;
  margin-bottom: 0;
}
.margin-y-small {
  margin-top: 10px;
  margin-bottom: 10px;
}
.margin-y-medium {
  margin-top: 25px;
  margin-bottom: 25px;
}
.margin-y-large {
  margin-top: 50px;
  margin-bottom: 50px;
}
.margin-y-extra-large {
  margin-top: 100px;
  margin-bottom: 100px;
}
.padding-none {
  padding: 0;
}
.padding-small {
  padding: 10px;
}
.padding-medium {
  padding: 25px;
}
.padding-large {
  padding: 50px;
}
.padding-extra-large {
  padding: 100px;
}
.padding-left-none {
  padding-left: 0;
}
.padding-left-small {
  padding-left: 10px;
}
.padding-left-medium {
  padding-left: 25px;
}
.padding-left-large {
  padding-left: 50px;
}
.padding-left-extra-large {
  padding-left: 100px;
}
.padding-right-none {
  padding-right: 0;
}
.padding-right-small {
  padding-right: 10px;
}
.padding-right-medium {
  padding-right: 25px;
}
.padding-right-large {
  padding-right: 50px;
}
.padding-right-extra-large {
  padding-right: 100px;
}
.padding-top-none {
  padding-top: 0;
}
.padding-top-small {
  padding-top: 10px;
}
.padding-top-medium {
  padding-top: 25px;
}
.padding-top-large {
  padding-top: 50px;
}
.padding-top-extra-large {
  padding-top: 100px;
}
.padding-bottom-none {
  padding-bottom: 0;
}
.padding-bottom-small {
  padding-bottom: 10px;
}
.padding-bottom-medium {
  padding-bottom: 25px;
}
.padding-bottom-large {
  padding-bottom: 50px;
}
.padding-bottom-extra-large {
  padding-bottom: 100px;
}
.padding-x-none {
  padding-left: 0;
  padding-right: 0;
}
.padding-x-small {
  padding-left: 10px;
  padding-right: 10px;
}
.padding-x-medium {
  padding-left: 25px;
  padding-right: 25px;
}
.padding-x-large {
  padding-left: 50px;
  padding-right: 50px;
}
.padding-x-extra-large {
  padding-left: 100px;
  padding-right: 100px;
}
.padding-y-none {
  padding-top: 0;
  padding-bottom: 0;
}
.padding-y-small {
  padding-top: 10px;
  padding-bottom: 10px;
}
.padding-y-medium {
  padding-top: 25px;
  padding-bottom: 25px;
}
.padding-y-large {
  padding-top: 50px;
  padding-bottom: 50px;
}
.padding-y-extra-large {
  padding-top: 100px;
  padding-bottom: 100px;
}
.inline-block {
  display: inline-block;
}
.truncate {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.some-style {
  width: 100%;
  min-height: 100%;
}
.blog-post-cards-container {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  background-color: #f4f5f7;
}
.blog-post-card {
  overflow: hidden;
  margin: 10px;
}
.blog-post-card--regular {
  background-color: white;
  border-radius: 5px;
  width: 250px;
}
.blog-post-card--featured .blog-post-card__body {
  width: calc(50% - 10px);
  display: inline-block;
  vertical-align: top;
  padding-top: 0;
}
.blog-post-card--featured .blog-post-card__title {
  font-size: 32px;
  font-weight: 500;
}
.blog-post-card__featured-image {
  width: 50%;
  max-width: 400px;
  display: inline-block;
  vertical-align: top;
}
.blog-post-card__cover {
  overflow: hidden;
  height: 150px;
  background-color: grey;
  background-size: cover;
  background-position: center;
}
.blog-post-card__body {
  box-sizing: border-box;
  padding: 20px;
}
.blog-post-card__title {
  color: black;
  min-height: 40px;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}
.blog-post-card__author {
  margin: 20px 0;
  font-size: 14px;
  color: #128093;
}
.blog-post-card__date {
  font-size: 14px;
  color: #97a0a7;
}
@media screen and (max-width: 600px) {
  .blog-post-cards-container {
    padding: 30px 0;
  }
  .blog-post-card--featured {
    text-align: center;
  }
  .blog-post-card--featured .blog-post-card__featured-image {
    width: 100%;
  }
  .blog-post-card--featured .blog-post-card__body {
    width: 100%;
    padding: 0;
  }
  .blog-post-card--featured .blog-post-card__title {
    margin-top: 20px;
    font-size: 24px;
  }
}
.slanted-header {
  background-image: url("/images/Background-Slice-68e47a9ec7f8cadf2e4e55c88dd0269b.svg?vsn=d");
  background-size: cover;
  background-position: bottom left;
  background-repeat: no-repeat;
}
.slanted-header--standalone {
  width: 100%;
  min-height: 300px;
  padding-bottom: 150px;
}
.slanted-header--grey-dots {
  background-image: url("/images/backgrounds/grey-dot-slant-background-f8594e4176c8038cb84c10528f2ecd4a.svg?vsn=d");
}
.slanted-header--top {
  background-position: top;
  background-size: 100%;
}
.box {
  width: 100%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 2px 2px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.blog-post-box__header {
  width: 100%;
  min-height: 500px;
  padding: 20px 40px;
  box-sizing: border-box;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
}
.blog-post-box__header__social-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.blog-post-box__header__social-buttons__button {
  width: 40px;
  height: 40px;
  margin-left: 20px;
  transition: transform 0.2s;
}
.blog-post-box__header__social-buttons__button:hover {
  transform: scale(1.1);
}
.blog-post-box__header__title {
  flex: 1;
  margin: 10px 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.blog-post-box__header__date {
  margin-bottom: 20px;
}
.blog-post-box__header__tags_and_author {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
}
.blog-post-box__content {
  white-space: pre-wrap;
  padding: 20px 40px;
}
.blog-post-box__content h1,
.blog-post-box__content h2,
.blog-post-box__content h3,
.blog-post-box__content h4,
.blog-post-box__content h5,
.blog-post-box__content h6,
.blog-post-box__content p {
  margin: 0;
  padding: 0;
}
.blog-post-box__content h1 {
  font-size: 2em;
}
.blog-post-box__content h2 {
  font-size: 1.5em;
}
.blog-post-box__content h3 {
  font-size: 1.17em;
}
.blog-post-box__content iframe {
  width: 100%;
  height: 500px;
  transition: height 0.5s;
}
@media screen and (max-width: 1000px) {
  .blog-post-box__content iframe {
    height: 400px;
  }
}
@media screen and (max-width: 800px) {
  .blog-post-box__content iframe {
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .blog-post-box__content iframe {
    height: 200px;
  }
}
.blog-post-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 5px;
}
.blog-post-tag--light {
  background-color: white;
  color: #128093;
}
.selector {
  position: relative;
  min-width: 150px;
  max-width: 200px;
}
.selector__label {
  position: relative;
  padding: 10px 40px 10px 20px;
  color: #128093;
  border: 2px solid #128093;
  border-radius: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.selector__label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #128093;
  border-right: 2px solid #128093;
  transform: translateY(calc(-50% - 3px)) rotate(45deg);
  transition: transform 0.2s;
}
.selector__label--expanded::after {
  transform: translateY(calc(-50% + 3px)) rotate(225deg);
}
.selector__dropdown {
  position: absolute;
  top: 50px;
  left: 0;
  padding: 20px;
  border: 2px solid #128093;
  border-radius: 10px;
  background-color: white;
  z-index: 1;
}
.selector__dropdown__item {
  color: #221e20;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.selector__dropdown__item:hover {
  color: #128093;
}
.selector__dropdown__item + .selector__dropdown__item {
  margin-top: 10px;
}

