html {
  font-size: 50%;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 57.25%;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222b36;
  overflow-x: hidden;
}

body,
html {
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  padding: 0 2.2rem;
}
@media screen and (min-width: 940px) {
  .container {
    max-width: 940px;
    margin: 0 auto;
  }
}
.container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

h1 {
  font-size: 34px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 50px;
  }
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #222b36;
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 600;
}

img {
  vertical-align: middle;
  display: inline-block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.w-col-3 {
  width: 25%;
}

.w-col-9 {
  width: 75%;
}

.w-layout-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
}

.footer-grid {
  grid-column-gap: 24px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
@media screen and (min-width: 1023px) {
  .footer-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.blue {
  display: block;
  color: #556dd7;
}

.white {
  color: #fff;
}

.divider {
  height: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #395b62;
}
.divider.footer {
  width: 80%;
}
.divider.blue {
  width: 100%;
  height: 2px;
  background-color: #4e5eb3;
}

.transparent-to-tint {
  position: relative;
  z-index: 3;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(0, #f6f9fc));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #f6f9fc 0);
}

.background-tint {
  position: relative;
  background-color: #f6f9fc;
}

.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898ec;
  color: #fff;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

.btn-small-header {
  margin-left: 8px;
  padding: 5px 14px;
  border-radius: 8px;
  background-color: #222b36;
  -webkit-transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  color: #fff;
  font-size: 15px;
  line-height: 1.6em;
  text-align: center;
}

.btn-default {
  margin-bottom: 10px;
  padding: 10px 40px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border-radius: 10px;
  background-color: #222b36;
  -webkit-transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  color: #fff;
  text-align: center;
}

.btn-blue {
  margin-bottom: 10px;
  padding: 10px 40px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border-radius: 10px;
  background-color: #556dd7;
  -webkit-transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  color: #fff;
  text-align: center;
}

header.header {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: auto;
  z-index: 900;
}
header.header .header-new {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.header .header-new .header-links-outer {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header.header .header-new .header-new-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 auto;
          flex: 0 auto;
  padding-left: 32px;
}
header.header .header-new .header-new-links .menu-link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  color: #fff;
}
header.header .header-new .header-new-links .menu-link-wrap .menu-new-link {
  display: inline-block;
  padding-right: 16px;
  padding-left: 16px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
header.header .header-new .header-new-buttons {
  -webkit-box-flex: 0 0 auto;
      -ms-flex-positive: 0 0 auto;
          flex-grow: 0 0 auto;
}
header.header .header-new .header-new-buttons .nav-button {
  display: none;
}

.shapes-wrap {
  position: relative;
  width: 100%;
  max-width: 100vw;
}
.shapes-wrap .shape-top, .shapes-wrap .shape-bottom, .shapes-wrap .shape-top-short, .shapes-wrap .shape-bottom-short, .shapes-wrap .hero__shape-1, .shapes-wrap .hero__shape-2 {
  mix-blend-mode: multiply;
}
.shapes-wrap .shape-bottom-short {
  position: absolute;
  top: -350px;
  top: -195px;
  left: 150px;
  left: 50px;
  width: 200%;
  max-width: 1600px;
}
@media screen and (max-width: 767px) {
  .shapes-wrap .shape-bottom-short {
    top: -138px;
  }
}
@media screen and (orientation: landscape) and (min-width: 768px) {
  .shapes-wrap .shape-bottom-short {
    top: -50px;
    width: 100%;
  }
}
.shapes-wrap .shape-top-short {
  position: absolute;
  top: -150px;
  top: -60px;
  left: -180px;
  width: 95%;
  max-width: 1600px;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (max-width: 991px) {
  .shapes-wrap .shape-top-short {
    top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .shapes-wrap .shape-top-short {
    top: 0px;
    left: -10px;
  }
}
@media screen and (orientation: landscape) and (min-width: 768px) {
  .shapes-wrap .shape-top-short {
    top: -30px;
    width: 120%;
  }
}

footer.footer .footer-top {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #222b36;
}
footer.footer .footer-bottom {
  background-color: #2f3b4a;
}
footer.footer .footer-bottom .footer-legal-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}
footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
}
footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex .footer-legal-left {
  width: 100%;
  margin-bottom: 40px;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex .footer-legal-left {
    width: auto;
    margin-bottom: 0;
  }
}
footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex .footer-legal-left .footer-logo {
  display: inline-block;
  margin-right: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 auto;
          flex: 0 auto;
}
footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex .footer-legal-left .footer-copyright {
  display: block;
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex .footer-legal-left .footer-copyright {
    display: inline;
  }
}
footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex .footer-legal-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
@media screen and (min-width: 768px) {
  footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex .footer-legal-right {
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex .footer-legal-right .social-icon {
  padding-left: 20px;
}
footer.footer .footer-bottom .footer-legal-wrap .footer-legal-flex .footer-legal-right .social-icon:first-child {
  padding-left: 0;
}
footer.footer .footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #50e3c2;
}
@media screen and (min-width: 768px) {
  footer.footer .footer-heading {
    font-size: 14px;
  }
}
footer.footer .footer-heading.blue {
  display: block;
  color: #556dd7;
}
footer.footer ul li {
  padding-right: 5px;
  padding-bottom: 10px;
  color: #222b36;
  line-height: 1.6em;
  font-weight: 300;
  text-align: left;
}
footer.footer ul li .footer-link {
  display: block;
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

main#main {
  overflow: hidden;
}
main#main .hero_section {
  padding-top: 140px;
  z-index: 2;
  overflow: hidden;
  margin-top: 0;
}
main#main .hero_section--content h1.hero-heading-home {
  position: relative;
  margin-bottom: 20px;
  line-height: 1.4em;
}
main#main .hero_section--content h2.hero-subline {
  position: relative;
  max-width: 54ch;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  main#main .hero_section--content h2.hero-subline {
    font-size: 22px;
    line-height: 1.6em;
  }
}
main#main .hero_section--search {
  padding-bottom: 40px;
}
main#main .hero_section--search .search_wrapper {
  position: relative;
  z-index: 3;
  padding: 24px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1023px) {
  main#main .hero_section--search .search_wrapper {
    padding: 40px 60px;
  }
}
main#main .hero_section--search .search_wrapper p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
}
main#main .hero_section--search .search_wrapper p strong {
  display: inline;
  font-weight: 700;
}
main#main .hero_section--search .search_wrapper input[type=text] {
  display: block;
  width: 100%;
  background-color: #f6f9fc;
  border: none;
  padding: 14px 12px;
}
main#main .boxes_section {
  padding: 40px 0 80px 0;
}
main#main .boxes_section--title {
  margin-bottom: 40px;
}
main#main .boxes_section--title h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  main#main .boxes_section--title h3 {
    font-size: 20px;
  }
}
main#main .boxes_section--title h2 {
  max-width: none;
  margin-top: 0;
  margin-bottom: 20px;
  color: #222b36;
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 768px) {
  main#main .boxes_section--title h2 {
    font-size: 30px;
  }
}
main#main .boxes_section--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main#main .boxes_section--wrapper .single_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  background-color: #fff;
  width: 100%;
  margin-bottom: 20px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  main#main .boxes_section--wrapper .single_box {
    width: calc(50% - 2rem);
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
  main#main .boxes_section--wrapper .single_box:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1023px) {
  main#main .boxes_section--wrapper .single_box {
    width: calc(33.333% - 1.3333rem);
    margin-right: calc(3.9999rem / 2);
    margin-bottom: calc(3.9999rem / 2);
  }
  main#main .boxes_section--wrapper .single_box:nth-child(2n) {
    margin-right: calc(3.9999rem / 2);
  }
  main#main .boxes_section--wrapper .single_box:nth-child(3n) {
    margin-right: 0;
  }
}
main#main .boxes_section--wrapper .single_box:hover {
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}
main#main .boxes_section--wrapper .single_box .image {
  margin-bottom: 0.8rem;
}
main#main .boxes_section--wrapper .single_box .image img {
  display: block;
  height: 60px;
  width: auto;
}
* {
  box-sizing: border-box;
}

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

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

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}
