﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,600;0,700;1,400&display=swap");
.about-us-collage {
  max-width: 431px;
  margin: auto;
}
.about-us-collage__row {
  display: flex;
}
.about-us-collage__col--primary {
  width: 87%;
}
.about-us-collage__col--secondary {
  width: 13%;
  display: flex;
  align-items: flex-end;
}
.about-us-collage__leaf {
  position: relative;
  margin: 3px;
}
@media screen and (min-width: 992px) {
  .about-us-collage__leaf {
    margin: 5px;
  }
}
.about-us-collage__leaf--image-secondary {
  overflow: hidden;
  border-radius: 40px 4px 40px 4px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .about-us-collage__leaf--image-secondary {
    border-radius: 60px 5px 60px 5px;
  }
}
.about-us-collage__leaf--image-primary {
  overflow: hidden;
  border-radius: 4px 40px 4px 40px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .about-us-collage__leaf--image-primary {
    border-radius: 5px 60px 5px 60px;
  }
}
.about-us-collage__leaf--background-primary {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 3px 10px 3px 10px;
  background-color: #5c7b95;
}
@media screen and (min-width: 992px) {
  .about-us-collage__leaf--background-primary {
    border-radius: 4px 20px 4px 20px;
  }
}
.about-us-collage__leaf img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.advantages {
  margin: 0 -24px;
  padding: 24px 0;
  overflow-x: scroll;
  overflow-y: hidden;
}
@media screen and (min-width: 992px) {
  .advantages {
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
.advantages--no-scroller {
  margin: 0 -13px;
  overflow: visible;
}
.advantages__scroller {
  margin: -30px 0;
}
@media screen and (max-width: 991px) {
  .advantages__scroller {
    margin: 0 -13px;
    padding: 0 24px;
    width: auto;
  }
  .advantages__scroller .row {
    flex-wrap: nowrap;
  }
  .advantages__scroller .col {
    min-width: 240px;
    max-width: 240px;
    flex-basis: 240px;
  }
}
@media screen and (min-width: 992px) {
  .advantages__item {
    margin: 30px 40px 30px 0;
  }
}
.advantages__item--compact {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
@media screen and (min-width: 992px) {
  .advantages__item--compact {
    margin: 16px 0;
  }
}
.advantages__item--no-margin {
  margin: 0;
}
.advantages__summary {
  margin-top: 24px;
}
.advantages__summary--compact {
  margin-top: 0;
  margin-left: 16px;
}
@media screen and (min-width: 992px) {
  .advantages__summary--compact {
    margin-left: 24px;
  }
}
.advantages__summary--compact .typography h3 {
  margin: 0;
}
.advantages__summary--compact .typography p {
  margin: 0;
}
.advantages__icon {
  box-sizing: border-box;
  width: 84px;
  height: 84px;
  background-color: #5c7b95;
  padding: 16px;
  border-radius: 20px 3px 20px 3px;
}
.advantages__icon svg {
  width: 52px;
  height: 52px;
  fill: #ffffff;
}
.advantages__icon--compact {
  width: 52px;
  height: 52px;
  padding: 8px;
}
.advantages__icon--big {
  width: 57px;
  height: 57px;
  padding: 8px;
}
.advantages__digit {
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 10px;
  border-radius: 20px 3px 20px 3px;
  background-color: #5c7b95;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.advantages__digit svg {
  width: 52px;
  height: 52px;
  fill: #ffffff;
}

.button {
  position: relative;
  width: 100%;
  display: inline-block;
  padding: 11px 12px;
  font-size: 18px;
  font-weight: bold;
  background-color: #e6e7eb;
  color: #313c5b;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .button {
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .button {
    padding: 15px 30px;
    font-size: 20px;
  }
}
.button:link, .button:visited {
  background-color: #e6e7eb;
  color: #313c5b;
  text-decoration: none;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.button:not(.button--loading):hover {
  background-color: #d2d4db;
}
.button:not(.button--loading):active {
  background-color: #bbc7d5;
}
.button--primary {
  color: #ffffff;
  background-color: #313c5b;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.button--primary:link, .button--primary:visited {
  color: #ffffff;
  background-color: #313c5b;
}
.button--primary:not(.button--loading):hover {
  background-color: #1c253c;
}
.button--primary:not(.button--loading):active {
  background-color: #0c162e;
}
.button--over-background {
  color: #313c5b;
  background-color: #ffffff;
}
.button--over-background:link, .button--over-background:visited {
  color: #313c5b;
  background-color: #ffffff;
}
.button--over-background:not(.button--loading):hover {
  background-color: #e6e7eb;
}
.button--over-background:not(.button--loading):active {
  background-color: #d2d4db;
}
body:not(.using-mouse) .button:focus {
  background-color: #2591d0;
  color: #ffffff;
  box-shadow: 0 0 0 2px #2591d0;
}
body:not(.using-mouse) .button:focus:not(.button--loading):hover {
  background: #1e86c2;
  box-shadow: 0 0 0 2px #1e86c2;
}
body:not(.using-mouse) .button:focus:not(.button--loading):active {
  background: #197ab3;
  box-shadow: 0 0 0 2px #197ab3;
}

.button__loading-underlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.5;
  display: none;
}
.button--loading {
  cursor: not-allowed;
  background: #1c253c;
  color: #ffffff;
}
.button--loading .button__loading-underlay {
  display: block;
}
.button__text {
  color: inherit;
}
.button__inverse-text {
  color: inherit;
}
.button--border {
  border: 1px solid #313c5b;
}
.button:disabled:not(.button--loading), .button:disabled:not(.button--loading):hover, .button:disabled:not(.button--loading):focus, .button:disabled:not(.button--loading):active {
  cursor: not-allowed;
  user-select: none;
  color: #b3b3b3;
  background-color: #e1e1e1;
  border-color: #e1e1e1;
}
.button:disabled:not(.button--loading).button--quiet {
  background: none;
}
.button__loading-underlay {
  display: none;
}

.checkbox {
  display: flex;
  align-items: baseline;
  cursor: pointer;
  color: #0c162e;
  position: relative;
}
@media screen and (min-width: 768px) {
  .checkbox {
    display: inline-flex;
  }
}
.checkbox__native {
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.checkbox__box {
  position: absolute;
  top: 0.15em;
  border: 1px solid;
  border-radius: 4px;
  width: 16px;
  min-width: 16px;
  height: 16px;
  box-sizing: border-box;
  pointer-events: none;
  touch-action: none;
}
.checkbox__tick {
  width: 10px;
  height: 10px;
  top: 2px;
  left: 2px;
  position: absolute;
  opacity: 0;
  transform: scale(0);
  transition: opacity 160ms cubic-bezier(0.62, 0, 0.38, 1), transform 160ms cubic-bezier(0.62, 0, 0.38, 1);
}
.checkbox__tick:after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 4px;
  top: 1px;
  left: 0;
  border: 1.38px solid;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}
.checkbox__label {
  line-height: 1.35;
  font-size: 16px;
  cursor: pointer;
  padding-left: 24px;
}
.checkbox__native:checked ~ .checkbox__box .checkbox__tick {
  transform: scale(1);
  opacity: 1;
}
.checkbox--contrast {
  color: #fafbfc;
}
body:not(.using-mouse) .checkbox__native:focus ~ .checkbox__box {
  border-color: #2591d0;
  box-shadow: 0 0 0 2px #2591d0;
}
body:not(.using-mouse) .checkbox__native:focus ~ .checkbox__label {
  color: #2591d0;
}

.collage {
  display: flex;
  max-width: 449px;
}
@media screen and (min-width: 992px) {
  .collage {
    margin-left: auto;
  }
}
.collage__col {
  display: flex;
  flex-direction: column;
}
.collage__col--primary {
  width: 57.56%;
}
.collage__col--secondary {
  width: 42.44%;
}
.collage__leaf {
  position: relative;
  margin: 3px;
}
@media screen and (min-width: 992px) {
  .collage__leaf {
    margin: 5px;
  }
}
.collage__leaf--image-secondary {
  overflow: hidden;
  border-radius: 40px 3px 40px 3px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .collage__leaf--image-secondary {
    border-radius: 60px 4px 60px 4px;
  }
}
.collage__leaf--image-primary {
  overflow: hidden;
  margin-top: 25px;
  border-radius: 40px 3px 40px 3px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .collage__leaf--image-primary {
    margin-top: 50px;
    border-radius: 60px 5px 60px 5px;
  }
}
.collage__leaf--background-secondary {
  flex-shrink: 0;
  width: 26px;
  height: 30px;
  border-radius: 3px 10px 3px 10px;
  background-color: #5c7b95;
}
@media screen and (min-width: 992px) {
  .collage__leaf--background-secondary {
    width: 46px;
    height: 53px;
    border-radius: 5px 20px 5px 20px;
  }
}
.collage__leaf--background-primary {
  width: 30px;
  height: 43px;
  border-radius: 3px 15px 3px 15px;
  margin-left: auto;
  background-color: #99b9c7;
}
@media screen and (min-width: 992px) {
  .collage__leaf--background-primary {
    width: 53px;
    height: 76px;
    border-radius: 4px 30px 4px 30px;
  }
}
.collage__leaf img {
  max-width: 100%;
  height: auto;
  display: block;
}
.collage--with-icons {
  width: 100%;
  max-width: 475px;
}
.collage--with-icons .collage__leaf + .collage__logo-wrapper {
  margin-left: 5px;
}
.collage--with-icons .collage__leaf--image-secondary {
  height: 200px;
}
.collage--with-icons .collage__leaf--image-primary {
  height: 200px;
  margin-top: 10px;
}
.collage--with-icons .collage__logo-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .collage--with-icons .collage__logo-wrapper {
    flex-direction: row;
  }
}
.collage--with-icons .collage__image {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.collage--with-icons .collage__logo-text {
  color: #313c5b;
  font-size: 10px;
  letter-spacing: -0.2px;
  text-align: right;
}
.collage--with-icons .collage__logo-text + .collage__logo {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .collage--with-icons .collage__logo-text + .collage__logo {
    margin-top: 0;
    margin-left: 10px;
  }
}
.collage--with-icons .collage__logo {
  max-width: 100px;
  max-height: 35px;
}
.collage--with-icons .collage__leaf-wrapper {
  display: flex;
  align-items: center;
}

.contact-block {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .contact-block {
    flex-direction: row;
  }
}
.contact-block__icon {
  box-sizing: border-box;
  width: 84px;
  min-width: 84px;
  height: 84px;
  background-color: #5c7b95;
  padding: 16px;
  border-radius: 20px 3px 20px 3px;
}
.contact-block__icon svg {
  width: 52px;
  height: 52px;
  fill: #ffffff;
}
@media screen and (min-width: 576px) {
  .contact-block__contacts {
    margin-left: 24px;
  }
}
.contact-block__label {
  color: #6E6E6E;
  margin: 15px 0 10px;
}
.contact-block__link {
  font-size: 26px;
  color: #313c5b;
  text-decoration: none;
  word-break: break-word;
  letter-spacing: -0.49px;
}
.contact-block__link:link, .contact-block__link:visited {
  color: #313c5b;
}
.contact-block__link:hover {
  color: #2591d0;
}
.contact-block__link + * {
  margin-top: 32px;
}

.contact-us-collage {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contact-us-collage {
    justify-content: flex-start;
    margin-top: 60px;
  }
}
.contact-us-collage__leaf {
  position: relative;
  margin: 3px;
}
@media screen and (min-width: 992px) {
  .contact-us-collage__leaf {
    margin: 5px;
  }
}
.contact-us-collage__leaf--image-primary {
  overflow: hidden;
  border-radius: 40px 3px 40px 3px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .contact-us-collage__leaf--image-primary {
    border-radius: 60px 4px 60px 4px;
  }
}
.contact-us-collage__leaf--background-secondary {
  width: 26px;
  min-width: 26px;
  height: 30px;
  border-radius: 3px 10px 3px 10px;
  background-color: #5c7b95;
}
@media screen and (min-width: 992px) {
  .contact-us-collage__leaf--background-secondary {
    width: 46px;
    min-width: 26px;
    height: 53px;
    border-radius: 4px 20px 4px 20px;
  }
}
.contact-us-collage__leaf img {
  max-width: 100%;
  height: auto;
  display: block;
}

.contact-us-leaf-card {
  margin-top: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-us-leaf-card {
    margin-top: 13px;
  }
}
.contact-us-leaf-card + .contact-us-leaf-card {
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .contact-us-leaf-card + .contact-us-leaf-card {
    margin-top: 42px;
  }
}
.contact-us-leaf-card__limiter {
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 40px 3px 40px 3px;
}
.contact-us-leaf-card__limiter--inverse {
  border-radius: 3px 40px 3px 40px;
}
@media screen and (min-width: 992px) {
  .contact-us-leaf-card__limiter {
    padding: 40px;
    border-radius: 60px 4px 60px 4px;
  }
  .contact-us-leaf-card__limiter--inverse {
    border-radius: 4px 60px 4px 60px;
  }
}

.container {
  margin: auto;
  max-width: 1140px;
  padding: 0 11px;
}
@media screen and (min-width: 1200px) {
  .container {
    padding: 0;
  }
}
.container--narrow {
  max-width: 890px;
}

.horizontal-scroller {
  position: relative;
}
.horizontal-scroller:before, .horizontal-scroller:after {
  content: "";
  position: absolute;
  width: 2em;
  top: 0;
  bottom: 0;
  transition-property: opacity;
  transition-timing-function: ease-out;
  transition-duration: 60ms;
}
.horizontal-scroller:before {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}
.horizontal-scroller:after {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}
.horizontal-scroller--start:before {
  opacity: 0;
}
.horizontal-scroller--end:after {
  opacity: 0;
}
.horizontal-scroller__container {
  max-width: 100%;
  overflow-y: hidden;
  overflow-x: scroll;
}

.dropdown-button {
  position: relative;
  width: 100%;
  display: block;
  padding: 11px 12px;
  font-size: 18px;
  font-weight: bold;
  background-color: #313c5b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  .dropdown-button {
    width: 245px;
  }
}
@media screen and (min-width: 992px) {
  .dropdown-button {
    padding: 15px 30px;
    font-size: 20px;
    width: 290px;
  }
}
.dropdown-button__label {
  position: relative;
}
.dropdown-button__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 6px;
  transform: translate(0, -50%);
}
.dropdown-button__arrow svg {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: #ffffff;
}
.dropdown-button__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #313c5b;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.dropdown-button__link {
  display: block;
  padding: 11px 12px;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  box-shadow: inset 0 1px 0 #5c7b95;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .dropdown-button__link {
    padding: 15px 30px;
    font-size: 18px;
  }
}
.dropdown-button__link:link, .dropdown-button__link:visited {
  color: #ffffff;
  text-decoration: none;
}
.dropdown-button__link:hover {
  background: #1c253c;
}
.dropdown-button__link:active {
  background: #0c162e;
}
.dropdown-button:hover {
  overflow: visible;
  border-radius: 6px 6px 0 0;
}
body:not(.using-mouse) .dropdown-button:focus-within {
  overflow: visible;
  border-radius: 6px 6px 0 0;
}
body:not(.using-mouse) .dropdown-button__link:focus {
  background-color: #2591d0;
  color: #ffffff;
  box-shadow: none;
}

.error:not(:empty) {
  color: #e02b1f;
  margin-top: 1em;
}

.faqs-collage {
  max-width: 448px;
  margin: auto auto 32px;
}
@media screen and (min-width: 992px) {
  .faqs-collage {
    margin: auto;
  }
}
.faqs-collage__row {
  display: flex;
}
.faqs-collage__col--primary {
  width: 78.6206896552%;
}
.faqs-collage__col--secondary {
  width: 21.3793103448%;
}
.faqs-collage__leaf {
  position: relative;
  margin: 3px;
}
@media screen and (min-width: 992px) {
  .faqs-collage__leaf {
    margin: 5px;
  }
}
.faqs-collage__leaf--image-secondary {
  overflow: hidden;
  border-radius: 40px 3px 40px 3px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .faqs-collage__leaf--image-secondary {
    border-radius: 60px 4px 60px 4px;
  }
}
.faqs-collage__leaf--image-primary {
  overflow: hidden;
  border-radius: 3px 40px 3px 40px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .faqs-collage__leaf--image-primary {
    border-radius: 4px 60px 4px 60px;
  }
}
.faqs-collage__leaf--background-primary {
  padding-bottom: 106%;
  border-radius: 3px 20px 3px 20px;
  background-color: #99b9c7;
}
@media screen and (min-width: 992px) {
  .faqs-collage__leaf--background-primary {
    border-radius: 4px 40px 4px 40px;
  }
}
.faqs-collage__leaf--background-secondary {
  width: 18px;
  height: 22px;
  border-radius: 10px 3px 10px 3px;
  margin-left: auto;
  background-color: #313c5b;
}
@media screen and (min-width: 992px) {
  .faqs-collage__leaf--background-secondary {
    width: 36px;
    height: 44px;
    border-radius: 20px 4px 20px 4px;
  }
}
.faqs-collage__leaf img {
  max-width: 100%;
  height: auto;
  display: block;
}

.faqs {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .faqs {
    padding: 32px;
  }
}
.faqs + .faqs {
  margin-top: 20px;
}
.faqs--quiet {
  padding: 32px 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.faqs--quiet + .faqs--quiet {
  margin-top: 0;
  border-top: 1px solid #bbc7d5;
}
.faqs__question {
  position: relative;
  cursor: pointer;
  padding-right: 36px;
}
.faqs__question:hover .faqs__toggle-button {
  background-color: #1c253c;
}
.faqs__question:active .faqs__toggle-button {
  background-color: #0c162e;
}
.faqs__question-title {
  margin: 0;
  position: relative;
}
.faqs__toggle-button {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background-color: #313c5b;
  border-radius: 50%;
  transform: translate(0, -50%);
  transition: transform 160ms ease-in-out;
  cursor: pointer;
}
.faqs__toggle-button:before, .faqs__toggle-button:after {
  content: "";
  position: absolute;
  display: block;
  width: 13px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background-color: #ffffff;
  transition: opacity 160ms ease-in-out;
}
.faqs__toggle-button:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
body:not(.using-mouse) .faqs__toggle-button:focus {
  background-color: #2591d0;
  box-shadow: 0 0 0 2px #2591d0;
}
body:not(.using-mouse) .faqs__toggle-button:focus:hover {
  background: #1e86c2;
  box-shadow: 0 0 0 2px #1e86c2;
}
body:not(.using-mouse) .faqs__toggle-button:focus:active {
  background: #197ab3;
  box-shadow: 0 0 0 2px #197ab3;
}

.faqs__answer {
  display: none;
}
.faqs--active .faqs__answer {
  display: block;
}
.faqs--active .faqs__toggle-button {
  transform: translate(0, -50%) rotate(90deg);
}
.faqs--active .faqs__toggle-button:before {
  opacity: 0;
}

.footer {
  padding: 30px 0;
  font-size: 18px;
  line-height: 1.5;
  background-color: #313c5b;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .footer {
    padding: 84px 0;
    font-size: 24px;
  }
}
.footer a:link {
  text-decoration: none;
  color: inherit;
}
.footer a:hover {
  text-decoration: underline;
}
body:not(.using-mouse) .footer a:focus {
  color: #ffffff;
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 7px;
  border-radius: 6px;
}

.footer__address {
  font-style: normal;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-bottom: 0;
    text-align: left;
  }
}
.footer__partners {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__partners {
    justify-content: flex-end;
  }
}
.footer__partners img {
  display: block;
  margin: 16px;
  max-width: 134px;
  max-height: 54px;
}
@media screen and (min-width: 768px) {
  .footer__partners img {
    max-width: 170px;
    margin: 1.5em 0 1.5em 40px;
  }
}
.footer__social {
  margin-bottom: 1em;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer__social {
    margin: 1em 0 0 -3px;
    text-align: left;
  }
}
.footer__social a:hover {
  text-decoration: none;
}
.footer__social svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.footer__social svg:hover {
  fill: #2591d0;
}
.footer__contacts {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__contacts {
    text-align: right;
  }
  .footer__contacts a {
    display: block;
  }
  .footer__contacts a ~ a {
    margin-top: 1em;
  }
}
.footer__quiet {
  margin-top: 1.5em;
  font-size: 14px;
  color: #ffffff;
  display: flex;
}
.footer__quiet a:link, .footer__quiet a:visited {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__quiet {
    margin-top: 48px;
  }
}
.footer__quiet--copy {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__quiet--copy {
    justify-content: flex-start;
  }
}
.footer__quiet--terms {
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  .footer__quiet--terms {
    justify-content: flex-end;
  }
}
.footer__quiet--terms a {
  display: block;
}
.footer__quiet--terms a + a {
  margin-left: 48px;
}

.form {
  margin-top: 20px;
}
.form__field {
  margin: 15px 0;
}
@media screen and (min-width: 768px) {
  .form__field {
    margin: 20px 0;
  }
}
.form__field:last-child {
  margin-bottom: 0;
}
.form__field--error .form__input {
  border-color: #e02b1f;
}
.form__field--success .form__input {
  border-color: #1fbd53;
}
.form__field--select {
  position: relative;
}
.form__field--select:after {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 8px;
  top: 24px;
  right: 16px;
  pointer-events: none;
  touch-action: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L7 5.58579L12.2929 0.292893C12.6834 -0.0976311 13.3166 -0.0976311 13.7071 0.292893C14.0976 0.683417 14.0976 1.31658 13.7071 1.70711L7.70711 7.70711C7.31658 8.09763 6.68342 8.09763 6.29289 7.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893Z' fill='%23313C5B'/%3E%3C/svg%3E");
}
@media (min-width: 992px) {
  .form__field--centered {
    display: flex;
    justify-content: center;
  }
}
.form__input {
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  padding: 18px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
  width: 100%;
  border-radius: 6px;
  background: #ffffff;
}
.form__input:focus {
  border-color: #2591d0;
}
.form__input::placeholder {
  color: #b3b3b3;
}
.form__input--textarea {
  resize: vertical;
  min-height: 132px;
}
.form__input--textarea-3 {
  min-height: 208px;
}
.form__input--select {
  -webkit-appearance: none;
}
.form__input--select:required:invalid {
  color: #b3b3b3;
}
.form__input--select option {
  color: #313c5b;
}
.form__submit {
  margin-top: 20px;
  text-align: center;
}
body:not(.using-mouse) .form__input:focus {
  box-shadow: 0 0 0 2px #2591d0;
}

.row {
  display: flex;
  flex: 0 1 auto;
  flex-flow: row wrap;
}
.row .col {
  flex-grow: 1;
  flex-basis: 0;
  box-sizing: border-box;
  padding-right: 13px;
  padding-left: 13px;
  max-width: 100%;
}
.row-xs-left {
  justify-content: flex-start;
}
.row-xs-center {
  justify-content: center;
}
.row-xs-right {
  justify-content: flex-end;
}
.row-xs-around {
  justify-content: space-around;
}
.row-xs-between {
  justify-content: space-between;
}
.row-xs-top {
  align-items: flex-start;
}
.row .col-xs-top {
  align-self: flex-start;
}
.row-xs-middle {
  align-items: center;
}
.row .col-xs-middle {
  align-self: center;
}
.row-xs-bottom {
  align-items: flex-end;
}
.row .col-xs-bottom {
  align-self: flex-end;
}
.row-xs-stretch {
  align-items: stretch;
}
.row .col-xs-stretch {
  align-self: stretch;
}
.row-xs-baseline {
  align-items: baseline;
}
.row .col-xs-baseline {
  align-self: baseline;
}
.row .col-xs-first {
  order: -1;
}
.row .col-xs-last {
  order: 1;
}
.row .col-xs-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}
.row .col-xs-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}
.row .col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}
.row .col-xs-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
.row .col-xs-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}
.row .col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}
.row .col-xs-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}
.row .col-xs-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}
.row .col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}
.row .col-xs-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}
.row .col-xs-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}
.row .col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}
.row .col-xs-offset-1 {
  margin-left: 8.3333333333%;
}
.row .col-xs-offset-2 {
  margin-left: 16.6666666667%;
}
.row .col-xs-offset-3 {
  margin-left: 25%;
}
.row .col-xs-offset-4 {
  margin-left: 33.3333333333%;
}
.row .col-xs-offset-5 {
  margin-left: 41.6666666667%;
}
.row .col-xs-offset-6 {
  margin-left: 50%;
}
.row .col-xs-offset-7 {
  margin-left: 58.3333333333%;
}
.row .col-xs-offset-8 {
  margin-left: 66.6666666667%;
}
.row .col-xs-offset-9 {
  margin-left: 75%;
}
.row .col-xs-offset-10 {
  margin-left: 83.3333333333%;
}
.row .col-xs-offset-11 {
  margin-left: 91.6666666667%;
}
.row .col-xs-offset-12 {
  margin-left: 100%;
}
@media screen and (max-width: 575px) {
  .row .col-xs-0 {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .row-sm-left {
    justify-content: flex-start;
  }
  .row-sm-center {
    justify-content: center;
  }
  .row-sm-right {
    justify-content: flex-end;
  }
  .row-sm-around {
    justify-content: space-around;
  }
  .row-sm-between {
    justify-content: space-between;
  }
  .row-sm-top {
    align-items: flex-start;
  }
  .row .col-sm-top {
    align-self: flex-start;
  }
  .row-sm-middle {
    align-items: center;
  }
  .row .col-sm-middle {
    align-self: center;
  }
  .row-sm-bottom {
    align-items: flex-end;
  }
  .row .col-sm-bottom {
    align-self: flex-end;
  }
  .row-sm-stretch {
    align-items: stretch;
  }
  .row .col-sm-stretch {
    align-self: stretch;
  }
  .row-sm-baseline {
    align-items: baseline;
  }
  .row .col-sm-baseline {
    align-self: baseline;
  }
  .row .col-sm-first {
    order: -1;
  }
  .row .col-sm-last {
    order: 1;
  }
  .row .col-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .row .col-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .row .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row .col-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row .col-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .row .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row .col-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .row .col-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row .col-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .row .col-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .row .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .row .col-sm-offset-3 {
    margin-left: 25%;
  }
  .row .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .row .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .row .col-sm-offset-6 {
    margin-left: 50%;
  }
  .row .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .row .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .row .col-sm-offset-9 {
    margin-left: 75%;
  }
  .row .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .row .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .row .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 576px) and (min-width: 576px) and (max-width: 767px) {
  .row .col-sm-0 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .row-md-left {
    justify-content: flex-start;
  }
  .row-md-center {
    justify-content: center;
  }
  .row-md-right {
    justify-content: flex-end;
  }
  .row-md-around {
    justify-content: space-around;
  }
  .row-md-between {
    justify-content: space-between;
  }
  .row-md-top {
    align-items: flex-start;
  }
  .row .col-md-top {
    align-self: flex-start;
  }
  .row-md-middle {
    align-items: center;
  }
  .row .col-md-middle {
    align-self: center;
  }
  .row-md-bottom {
    align-items: flex-end;
  }
  .row .col-md-bottom {
    align-self: flex-end;
  }
  .row-md-stretch {
    align-items: stretch;
  }
  .row .col-md-stretch {
    align-self: stretch;
  }
  .row-md-baseline {
    align-items: baseline;
  }
  .row .col-md-baseline {
    align-self: baseline;
  }
  .row .col-md-first {
    order: -1;
  }
  .row .col-md-last {
    order: 1;
  }
  .row .col-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .row .col-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .row .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row .col-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row .col-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .row .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row .col-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .row .col-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row .col-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .row .col-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .row .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .row .col-md-offset-3 {
    margin-left: 25%;
  }
  .row .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .row .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .row .col-md-offset-6 {
    margin-left: 50%;
  }
  .row .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .row .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .row .col-md-offset-9 {
    margin-left: 75%;
  }
  .row .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .row .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .row .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 991px) {
  .row .col-md-0 {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .row-lg-left {
    justify-content: flex-start;
  }
  .row-lg-center {
    justify-content: center;
  }
  .row-lg-right {
    justify-content: flex-end;
  }
  .row-lg-around {
    justify-content: space-around;
  }
  .row-lg-between {
    justify-content: space-between;
  }
  .row-lg-top {
    align-items: flex-start;
  }
  .row .col-lg-top {
    align-self: flex-start;
  }
  .row-lg-middle {
    align-items: center;
  }
  .row .col-lg-middle {
    align-self: center;
  }
  .row-lg-bottom {
    align-items: flex-end;
  }
  .row .col-lg-bottom {
    align-self: flex-end;
  }
  .row-lg-stretch {
    align-items: stretch;
  }
  .row .col-lg-stretch {
    align-self: stretch;
  }
  .row-lg-baseline {
    align-items: baseline;
  }
  .row .col-lg-baseline {
    align-self: baseline;
  }
  .row .col-lg-first {
    order: -1;
  }
  .row .col-lg-last {
    order: 1;
  }
  .row .col-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .row .col-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .row .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row .col-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row .col-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .row .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row .col-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .row .col-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row .col-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .row .col-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .row .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .row .col-lg-offset-3 {
    margin-left: 25%;
  }
  .row .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .row .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .row .col-lg-offset-6 {
    margin-left: 50%;
  }
  .row .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .row .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .row .col-lg-offset-9 {
    margin-left: 75%;
  }
  .row .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .row .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .row .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1199px) {
  .row .col-lg-0 {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .row-xl-left {
    justify-content: flex-start;
  }
  .row-xl-center {
    justify-content: center;
  }
  .row-xl-right {
    justify-content: flex-end;
  }
  .row-xl-around {
    justify-content: space-around;
  }
  .row-xl-between {
    justify-content: space-between;
  }
  .row-xl-top {
    align-items: flex-start;
  }
  .row .col-xl-top {
    align-self: flex-start;
  }
  .row-xl-middle {
    align-items: center;
  }
  .row .col-xl-middle {
    align-self: center;
  }
  .row-xl-bottom {
    align-items: flex-end;
  }
  .row .col-xl-bottom {
    align-self: flex-end;
  }
  .row-xl-stretch {
    align-items: stretch;
  }
  .row .col-xl-stretch {
    align-self: stretch;
  }
  .row-xl-baseline {
    align-items: baseline;
  }
  .row .col-xl-baseline {
    align-self: baseline;
  }
  .row .col-xl-first {
    order: -1;
  }
  .row .col-xl-last {
    order: 1;
  }
  .row .col-xl-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .row .col-xl-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .row .col-xl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row .col-xl-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row .col-xl-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .row .col-xl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row .col-xl-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .row .col-xl-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row .col-xl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row .col-xl-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .row .col-xl-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .row .col-xl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .row .col-xl-offset-3 {
    margin-left: 25%;
  }
  .row .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .row .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .row .col-xl-offset-6 {
    margin-left: 50%;
  }
  .row .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .row .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .row .col-xl-offset-9 {
    margin-left: 75%;
  }
  .row .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .row .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .row .col-xl-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) and (max-width: 1439px) {
  .row .col-xl-0 {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .row-xxl-left {
    justify-content: flex-start;
  }
  .row-xxl-center {
    justify-content: center;
  }
  .row-xxl-right {
    justify-content: flex-end;
  }
  .row-xxl-around {
    justify-content: space-around;
  }
  .row-xxl-between {
    justify-content: space-between;
  }
  .row-xxl-top {
    align-items: flex-start;
  }
  .row .col-xxl-top {
    align-self: flex-start;
  }
  .row-xxl-middle {
    align-items: center;
  }
  .row .col-xxl-middle {
    align-self: center;
  }
  .row-xxl-bottom {
    align-items: flex-end;
  }
  .row .col-xxl-bottom {
    align-self: flex-end;
  }
  .row-xxl-stretch {
    align-items: stretch;
  }
  .row .col-xxl-stretch {
    align-self: stretch;
  }
  .row-xxl-baseline {
    align-items: baseline;
  }
  .row .col-xxl-baseline {
    align-self: baseline;
  }
  .row .col-xxl-first {
    order: -1;
  }
  .row .col-xxl-last {
    order: 1;
  }
  .row .col-xxl-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .row .col-xxl-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .row .col-xxl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .row .col-xxl-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row .col-xxl-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .row .col-xxl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .row .col-xxl-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .row .col-xxl-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .row .col-xxl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .row .col-xxl-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .row .col-xxl-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .row .col-xxl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row .col-xxl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .row .col-xxl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .row .col-xxl-offset-3 {
    margin-left: 25%;
  }
  .row .col-xxl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .row .col-xxl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .row .col-xxl-offset-6 {
    margin-left: 50%;
  }
  .row .col-xxl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .row .col-xxl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .row .col-xxl-offset-9 {
    margin-left: 75%;
  }
  .row .col-xxl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .row .col-xxl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .row .col-xxl-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1440px) and (min-width: 1440px) {
  .row .col-xxl-0 {
    display: none;
  }
}

.hamburger {
  padding: 12px 16px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger-box {
  width: 24px;
  height: 15px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 1px;
  background-color: #313c5b;
  border-radius: 1px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body {
  padding-top: 104px;
}
@media screen and (min-width: 992px) {
  body {
    padding-top: 0;
  }
}

.header-underlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 104px;
  background-color: #fafbfc;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .header-underlay {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px 0 20px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .header {
    position: static;
    overflow: visible;
    padding: 30px 0;
    background-color: #fafbfc;
  }
}
.header__container {
  max-width: 1366px;
  padding: 0 24px;
  margin: auto;
  display: flex;
  align-items: center;
}
.header__logo img {
  display: block;
  max-width: 100%;
  max-height: 64px;
  height: auto;
}
@media screen and (min-width: 992px) {
  .header__logo img {
    max-height: none;
  }
}
.header__hamburger {
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .header__hamburger {
    display: none;
  }
}
.header__navigation {
  display: none;
}
@media screen and (min-width: 992px) {
  .header__navigation {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
  }
}
.header__menu {
  display: flex;
  justify-content: flex-end;
}
.header__switcher {
  display: block;
}
.header__item {
  display: block;
  position: relative;
  margin: 0 7px;
}
.header__item:hover .header__dropdown {
  display: block;
}
.header__link {
  display: block;
  padding: 15px 16px;
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.007em;
  color: #313c5b;
  text-decoration: none;
  border-radius: 6px;
}
@media screen and (min-width: 1200px) {
  .header__link {
    padding: 15px 24px;
  }
}
.header__link:link, .header__link:visited {
  color: #313c5b;
  text-decoration: none;
}
.header__link:hover {
  color: #2591d0;
}
.header__link--quiet {
  font-size: 16px;
  font-weight: 400;
  padding: 11px 16px;
  line-height: 1.25;
  color: #6E6E6E;
  margin: 0 16px;
}
.header__link--quiet:link, .header__link--quiet:visited {
  color: #6E6E6E;
}
.header__link--quiet:hover {
  color: #1f79ad;
}
@media screen and (min-width: 1200px) {
  .header__link--quiet {
    padding: 11px 24px;
  }
}
.header__dropdown {
  display: none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
}
.header__dropdown .header__link {
  font-size: 16px;
  font-weight: 400;
  color: #8e8e8e;
  white-space: nowrap;
  padding: 10px 16px;
}
@media screen and (min-width: 1200px) {
  .header__dropdown .header__link {
    padding: 10px 24px;
  }
}
.header__dropdown .header__link:link, .header__dropdown .header__link:visited {
  color: #8e8e8e;
  text-decoration: none;
}
.header__dropdown .header__link:hover {
  color: #1f79ad;
}
.header__search {
  display: block;
}
.header.__alt .header__navigation {
  display: none;
}
.header.__alt .header__container {
  max-width: 1140px;
}
body:not(.using-mouse) .header__link:focus {
  background-color: #2591d0;
  color: #ffffff;
}
body:not(.using-mouse) .header__link--search {
  background-color: #313c5b;
}

.homepage-collage {
  display: flex;
  max-width: 500px;
}
.homepage-collage__col {
  display: flex;
  flex-direction: column;
}
.homepage-collage__col--primary {
  width: 61.8%;
}
.homepage-collage__col--secondary {
  width: 38.2%;
}
.homepage-collage__leaf {
  position: relative;
  margin: 3px;
}
@media screen and (min-width: 992px) {
  .homepage-collage__leaf {
    margin: 5px;
  }
}
.homepage-collage__leaf--image-secondary {
  overflow: hidden;
  margin-top: 30px;
  border-radius: 40px 3px 40px 3px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .homepage-collage__leaf--image-secondary {
    margin-top: 60px;
    border-radius: 60px 4px 60px 4px;
  }
}
.homepage-collage__leaf--image-primary {
  overflow: hidden;
  border-radius: 3px 40px 3px 40px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
}
@media screen and (min-width: 992px) {
  .homepage-collage__leaf--image-primary {
    border-radius: 4px 60px 4px 60px;
  }
}
.homepage-collage__leaf--background-secondary {
  width: 40px;
  height: 46px;
  border-radius: 20px 3px 20px 3px;
  margin-left: auto;
  background-color: #5c7b95;
}
@media screen and (min-width: 992px) {
  .homepage-collage__leaf--background-secondary {
    width: 80px;
    height: 92px;
    border-radius: 40px 4px 40px 4px;
  }
}
.homepage-collage__leaf--background-primary {
  width: 46px;
  height: 66px;
  border-radius: 3px 20px 3px 20px;
  margin-right: auto;
  background-color: #99b9c7;
}
@media screen and (min-width: 992px) {
  .homepage-collage__leaf--background-primary {
    width: 92px;
    height: 132px;
    border-radius: 4px 40px 4px 40px;
  }
}
.homepage-collage__leaf img {
  max-width: 100%;
  height: auto;
  display: block;
}
.homepage-collage__logo {
  display: none;
  position: absolute;
  left: calc(100% + 5px);
  bottom: 0;
  width: 190px;
}
@media screen and (min-width: 992px) {
  .homepage-collage__logo {
    display: block;
  }
}

.inline-search {
  z-index: 2;
  position: relative;
  height: 40px;
  margin: 1px;
}
@media screen and (min-width: 992px) {
  .inline-search {
    width: 40px;
    margin: 1px 24px 1px 42px;
  }
}
.inline-search__input {
  width: calc(100% - 20px);
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  padding: 0 0 0 18px;
  line-height: 38px;
  height: 38px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
  border-radius: 20px 0 0 20px;
  background: #ffffff;
  box-shadow: 0 0 0 0 #2591d0;
  transition-timing-function: cubic-bezier(0.62, 0, 0.38, 1);
  transition-duration: 500ms;
  transition-property: width;
}
@media screen and (min-width: 992px) {
  .inline-search__input {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 0;
    box-sizing: content-box;
  }
}
.inline-search__input::placeholder {
  color: #b3b3b3;
}
.inline-search__input--empty {
  border-color: #2591d0;
  animation: emptyFlash 2000ms linear;
}
.inline-search__input::-ms-clear {
  display: none;
}
.inline-search__button {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background-color: #2591d0;
}
@media screen and (min-width: 992px) {
  .inline-search__button {
    position: relative;
  }
}
.inline-search__button:hover {
  background-color: #313c5b;
}
.inline-search__button svg {
  width: 40px;
  height: 40px;
  fill: #ffffff;
}
@media screen and (min-width: 992px) {
  .inline-search:hover .inline-search__input {
    width: 500px;
  }
}
.inline-search .inline-search__input:focus {
  border-color: #2591d0;
}
@media screen and (min-width: 992px) {
  .inline-search .inline-search__input:focus {
    width: 500px;
  }
}

@keyframes emptyFlash {
  50% {
    box-shadow: 0 0 5px 2px #2591d0;
  }
}
.mobile-menu .inline-search__input {
  border-radius: 3px;
  width: 100%;
}

.mobile-menu .inline-search__button {
  background-color: #fafafa;
  border-radius: 0;
  top: 2px;
  right: 10px;
  height: 30px;
  width: 30px;
}
.mobile-menu .inline-search__button svg {
  fill: #2591d0;
}

.language-switcher {
  height: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.language-switcher__dropdown {
  overflow: hidden;
  border-radius: 6px;
}
.language-switcher__link {
  position: relative;
  display: block;
  padding: 11px 32px 11px 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #6E6E6E;
}
.language-switcher__link:link, .language-switcher__link:visited {
  color: #6E6E6E;
  text-decoration: none;
}
.language-switcher__link:hover, .language-switcher__link:active {
  color: #2591d0;
}
.language-switcher__link:hover .language-switcher__dropdown-arrow svg, .language-switcher__link:active .language-switcher__dropdown-arrow svg {
  fill: #2591d0;
}
.language-switcher__dropdown-arrow {
  position: absolute;
  right: 12px;
  top: 18px;
  width: 12px;
  height: 6px;
}
.language-switcher__dropdown-arrow svg {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: #8e8e8e;
}
.language-switcher:hover {
  overflow: visible;
}
.language-switcher:hover .language-switcher__dropdown {
  background: #ffffff;
  box-shadow: 0 3px 6px #e1e1e1;
}
body:not(.using-mouse) .language-switcher:focus-within {
  overflow: visible;
}
body:not(.using-mouse) .language-switcher:focus-within .language-switcher__dropdown {
  background: #ffffff;
  box-shadow: 0 3px 6px #e1e1e1;
}
body:not(.using-mouse) .language-switcher__link:focus {
  background-color: #2591d0;
  color: #ffffff;
}
body:not(.using-mouse) .language-switcher__link:focus .language-switcher__dropdown-arrow svg {
  fill: #ffffff;
}

.leading__collage {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
@media screen and (min-width: 992px) {
  .leading__collage {
    margin: 0;
  }
}
.leading__logo {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .leading__logo {
    display: none;
  }
}
.leading__logo img {
  max-width: 100%;
  height: auto;
}
.leading__wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .leading__wrapper {
    flex-direction: row;
  }
}
.leading__button + .leading__button {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .leading__button + .leading__button {
    margin-top: 0;
    margin-left: 16px;
  }
}
.leading__info {
  display: flex;
  align-items: center;
}
.leading__info + .leading__info {
  margin-top: 16px;
}
.leading__icon + .leading__text {
  margin-left: 15px;
}
.leading__text {
  margin-top: 0;
}

.leaf-card {
  margin: 13px 0;
  position: relative;
}
.leaf-card--tall {
  height: calc(100% - 26px);
}
.leaf-card--tall .leaf-card__limiter {
  height: 100%;
}
.leaf-card__limiter {
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 40px 3px 40px 3px;
}
.leaf-card__limiter--inverse {
  border-radius: 3px 40px 3px 40px;
}
@media screen and (min-width: 992px) {
  .leaf-card__limiter {
    padding: 60px 40px 60px 60px;
    border-radius: 60px 4px 60px 4px;
  }
  .leaf-card__limiter--inverse {
    border-radius: 4px 60px 4px 60px;
  }
}
.leaf-card__limiter--image {
  display: inline-block;
  padding: 0;
}
.leaf-card__limiter img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 40px 3px 40px 3px;
}
.leaf-card__limiter--bg {
  overflow: hidden;
  width: 100%;
  height: 300px;
  padding: 30px 30px 0;
  background-color: #313c5b;
}
@media screen and (min-width: 992px) {
  .leaf-card__limiter--bg {
    height: 410px;
  }
}
.leaf-card__limiter--bg .leaf-card__image-wrapper {
  position: relative;
  height: 100%;
}
.leaf-card__limiter--bg .leaf-card__image {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
@media screen and (min-width: 992px) {
  .leaf-card__limiter--bg .leaf-card__image {
    bottom: -20px;
  }
}
.leaf-card__limiter--image-content {
  width: 100%;
  height: 390px;
}
@media screen and (min-width: 768px) {
  .leaf-card__limiter--image-content {
    max-width: 470px;
  }
}
.leaf-card__limiter--image-content .leaf-card__image {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.leaf-card__label {
  position: relative;
  width: 135px;
  margin: -45px 32px 0 auto;
  padding: 16px 24px;
  border-radius: 4px 40px 4px 40px;
  background-color: #99b9c7;
}
@media screen and (min-width: 992px) {
  .leaf-card__label {
    width: 220px;
    margin-top: -80px;
    padding: 32px;
    border-radius: 4px 60px 4px 60px;
  }
}
.leaf-card--small {
  height: calc(100% - 26px);
}
.leaf-card--small .leaf-card__limiter {
  height: 100%;
}
@media screen and (min-width: 576px) {
  .leaf-card--small .leaf-card__limiter {
    padding: 32px 25px 35px 38px;
  }
}
.leaf-card--small .leaf-card__summary {
  margin-top: 15px;
}
.leaf-card--content {
  display: flex;
}
.leaf-card--content .leaf-card__limiter--primary {
  margin-left: auto;
}

.loading-background {
  background: rgba(255, 255, 255, 0);
  background-repeat: no-repeat;
  background-size: 80px 100%;
  background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0px, #ffffff 40px, rgba(255, 255, 255, 0) 80px);
  animation: loading 1.38s linear 0.62s infinite;
}

@keyframes loading {
  0% {
    background-position: -120px 0;
  }
  100% {
    background-position: calc(100% + 80px) 0;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding-top: 104px;
  background: #ffffff;
  transform: translate(-100%, 0);
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.62, 0, 0.38, 1);
  transition-property: transform;
}
.mobile-menu a:link, .mobile-menu a:visited, .mobile-menu a:hover, .mobile-menu a:active {
  font-weight: 700;
  text-decoration: none;
}
.mobile-menu nav:last-of-type a {
  border-bottom: none;
}
.mobile-menu--active {
  transform: translate(0, 0);
}
.mobile-menu__scroller {
  height: 100%;
  padding-bottom: 26px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.mobile-menu__search {
  padding: 0 24px;
  margin-bottom: 16px;
  border-radius: 5px;
}
.mobile-menu__list--compact {
  display: flex;
}
.mobile-menu__link {
  display: block;
  padding: 20px 26px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.007em;
  color: #313c5b;
  text-decoration: none;
  border-radius: 6px;
  border-bottom: 1px solid #f1f1f1;
}
.mobile-menu__link:hover {
  color: #2591d0;
}
.mobile-menu__link--subitem {
  font-size: 18px;
  font-weight: 300 !important;
  padding: 20px 26px;
  padding-bottom: 0;
  line-height: 1.25;
  color: #8e8e8e;
  font-style: italic;
  border-bottom: none;
  display: block;
}
.mobile-menu__link--subitem::before {
  content: "— ";
}
.mobile-menu__link--lastsubitem {
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 26px;
}
.mobile-menu__link--quiet {
  font-size: 18px;
  font-weight: 400;
  padding: 20px 26px;
  line-height: 1.25;
  color: #8e8e8e;
  border-bottom: 1px solid #f1f1f1;
}
.mobile-menu__link--parent {
  border-bottom: none;
  padding-bottom: 0;
}
.mobile-menu__link--separated {
  position: relative;
}
.mobile-menu__link--separated:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  height: 1em;
  left: -1px;
  margin-left: 1px;
  width: 1px;
  background: #8e8e8e;
}
.mobile-menu__link--compact {
  border: none;
}

@media screen and (min-width: 992px) {
  .not-found {
    display: flex;
    align-items: flex-start;
  }
}
.not-found__icon {
  margin: auto;
  box-sizing: border-box;
  width: 120px;
  height: 120px;
  background-color: #5c7b95;
  padding: 19px;
  border-radius: 20px 3px 20px 3px;
}
@media screen and (min-width: 992px) {
  .not-found__icon {
    margin: 0;
  }
}
.not-found__icon svg {
  width: 82px;
  height: 82px;
  fill: #ffffff;
}
.not-found__excuses {
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  color: #8e8e8e;
}
.not-found__excuses .typography h1 {
  font-size: 100px;
  line-height: 80px;
  margin: 20px 0;
}
@media screen and (min-width: 992px) {
  .not-found__excuses .typography h1 {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .not-found__excuses {
    text-align: left;
    margin-top: 0;
    margin-left: 40px;
  }
}

.pagination {
  display: flex;
  padding: 20px 0;
}
.pagination > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border: solid 1px #f5f5f5;
}
.pagination > ul > li {
  margin: 0;
  border-right: solid 1px #f5f5f5;
}
.pagination > ul > li:last-child {
  border-right: none;
}
.pagination .pagination-btn {
  border: solid 1px #f5f5f5;
}
.pagination .pagination-btn--prev {
  border-right: none;
}
.pagination .pagination-btn--next {
  border-left: none;
}
.pagination a, .pagination span {
  display: block;
  padding: 8px 12px;
}
.pagination a:link, .pagination a:visited, .pagination span {
  font-weight: 400;
  color: #000;
  background: #fff;
  text-decoration: none;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.pagination a:hover, .pagination a:active, .pagination a:focus {
  font-weight: 400;
  color: #fff;
  background: #2591d0;
  text-decoration: none;
}
.pagination span.page-number {
  background: #2591d0;
  color: #fff;
}

.product-card {
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
  margin-bottom: 26px;
  background-color: #ffffff;
}
@media screen and (min-width: 992px) {
  .product-card {
    padding: 30px;
  }
}
.product-card__logo {
  height: 64px;
  display: flex;
  align-items: center;
}
.product-card__logo img {
  max-height: 64px;
  max-width: 150px;
  width: auto;
  height: auto;
  display: block;
}
.product-card__title {
  font-size: 18px;
  margin: 1em 0;
  color: #313c5b;
}
@media screen and (min-width: 992px) {
  .product-card__title {
    font-size: 20px;
  }
}
.product-card__details {
  display: none;
  font-size: 16px;
  color: #8e8e8e;
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .product-card__details {
    font-size: 18px;
  }
}
.product-card .button__text {
  display: inline;
}
.product-card .button__inverse-text {
  display: none;
}
.product-card--active .product-card__details {
  display: block;
}
.product-card--active .button__text {
  display: none;
}
.product-card--active .button__inverse-text {
  display: inline;
}

.search-form {
  position: relative;
  margin-top: 40px;
}
.search-form__input {
  border: none;
  border-bottom: 1px solid #b3b3b3;
  background: none;
  padding: 16px 120px 16px 0;
  width: 100%;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .search-form__input {
    font-size: 24px;
  }
}
.search-form__input:hover {
  border-color: #6e6e6e;
}
.search-form__input:focus {
  border-color: #2591d0;
  box-shadow: 0 1px 0 0 #2591d0;
}
.search-form__button {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .search-form__button {
    margin-top: 0;
    right: 0;
    top: 0;
    position: absolute;
  }
}

@media screen and (min-width: 992px) {
  .search-nothing-found {
    display: flex;
    align-items: center;
  }
}
.search-nothing-found__icon {
  margin: auto;
  box-sizing: border-box;
  width: 120px;
  min-width: 120px;
  height: 120px;
  background-color: #5c7b95;
  padding: 28px;
  border-radius: 20px 3px 20px 3px;
}
@media screen and (min-width: 992px) {
  .search-nothing-found__icon {
    margin: 0;
  }
}
.search-nothing-found__icon svg {
  width: 64px;
  height: 64px;
  fill: #ffffff;
}
.search-nothing-found__excuses {
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  color: #8e8e8e;
}
@media screen and (min-width: 992px) {
  .search-nothing-found__excuses {
    text-align: left;
    margin-top: 0;
    margin-left: 40px;
  }
}

.search-results__count {
  color: #8e8e8e;
}
.search-results ul.search-results__list {
  margin: 0;
  list-style: none;
  padding: 0;
}
.search-results__item {
  padding: 16px 0;
  border-bottom: 1px solid #b3b3b3;
}
@media screen and (min-width: 992px) {
  .search-results__item {
    display: flex;
    padding: 24px 0;
  }
}
.search-results__about {
  flex-grow: 1;
}
.search-results__about a:link, .search-results__about a:visited {
  color: #5c7b95;
  text-decoration: none;
}
.search-results__url {
  color: #8e8e8e;
}
.search-results__control {
  margin-top: 12px;
  display: block;
}
@media screen and (min-width: 992px) {
  .search-results__control {
    margin-top: 0;
    align-self: center;
    flex-basis: 144px;
    min-width: 144px;
    white-space: nowrap;
  }
}
.search-results__loadmore {
  margin: 40px auto 0;
  text-align: center;
}

.section {
  padding: 20px 0;
  position: relative;
  background: #ffffff;
}
.section__arrow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 60px;
  height: 25px;
}
@media screen and (min-width: 992px) {
  .section__arrow {
    width: 81px;
    height: 34px;
  }
}
.section__arrow svg {
  width: 60px;
  height: 25px;
  fill: #fafbfc;
}
@media screen and (min-width: 992px) {
  .section__arrow svg {
    width: 81px;
    height: 34px;
  }
}
.section__arrow--white svg {
  fill: #ffffff;
}
.section--highlight {
  background-color: #fafbfc;
}
.section--highlight-second {
  background-color: rgba(187, 199, 213, 0.07);
}
.section--strong {
  padding: 40px 0;
}
@media screen and (min-width: 992px) {
  .section--strong {
    padding: 80px 0;
  }
}
.section--strong-bottom {
  padding-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .section--strong-bottom {
    padding-bottom: 80px;
  }
}
.section--strong-top {
  padding-top: 40px;
}
@media screen and (min-width: 992px) {
  .section--strong-top {
    padding-top: 80px;
  }
}
.section--weak-bottom {
  padding-bottom: 0;
}
.section--contrast {
  background-color: #313c5b;
  color: #ffffff;
}
.section--blog .typography h1:last-child {
  margin-bottom: 40px;
}
.section p.blog-excerpt {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.018em;
  color: #5c7b95;
}
.section .pl-md {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .section .pl-md {
    padding-left: 1.5rem;
  }
}

@media screen and (min-width: 992px) {
  .select-multiple__native {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
.select-multiple__dropdown {
  display: none;
}
@media screen and (min-width: 992px) {
  .select-multiple__dropdown {
    display: block;
    position: relative;
    box-sizing: border-box;
    border: 1px solid #e1e1e1;
    font-size: 16px;
    line-height: 1.75;
    padding: 13px 17px;
    box-shadow: 0 5px 25px rgba(179, 179, 179, 0.2);
    width: 100%;
    border-radius: 6px;
    background: #ffffff;
    color: #0c162e;
    overflow: hidden;
  }
  .select-multiple__dropdown:hover {
    overflow: visible;
    border-radius: 6px 6px 0 0;
  }
}
.select-multiple__group {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  z-index: 1;
  border: 1px solid #e1e1e1;
  border-top: 0;
  padding: 0 17px 13px;
  background: #ffffff;
  color: #0c162e;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 25px 25px -20px rgba(179, 179, 179, 0.2);
}
.select-multiple__label {
  cursor: pointer;
}
body:not(.using-mouse) .select-multiple__dropdown:focus-within {
  overflow: visible;
  border-radius: 6px 6px 0 0;
  border-color: #2591d0;
  box-shadow: 0 0 0 2px #2591d0;
}
body:not(.using-mouse) .select-multiple__dropdown:focus-within .select-multiple__group {
  border-color: #2591d0;
  border-width: 3px;
  left: -3px;
  right: -3px;
}

.typography h1,
.typography .h1 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.27;
  letter-spacing: -0.03em;
  color: #313c5b;
}
@media screen and (min-width: 992px) {
  .typography h1,
  .typography .h1 {
    font-size: 44px;
  }
}
.typography h2,
.typography .h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #313c5b;
}
@media screen and (min-width: 992px) {
  .typography h2,
  .typography .h2 {
    font-size: 32px;
  }
}
.typography h2.color-grey,
.typography .h2.color-grey {
  color: #3f3f3f;
}
.typography h3,
.typography .h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.018em;
  color: #55748B;
}
.typography h1:last-child,
.typography .h1:last-child,
.typography h2:last-child,
.typography .h2:last-child,
.typography h3:last-child,
.typography .h3:last-child,
.typography p:last-child {
  margin-bottom: 0;
}
.typography .h1--single, .typography .h1--single:last-child {
  margin-bottom: 0.62em;
}
.typography p {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.018em;
  color: #6E6E6E;
}
@media screen and (min-width: 992px) {
  .typography p {
    font-size: 18px;
  }
}
.typography p.small {
  font-size: 14px;
  letter-spacing: -0.26px;
}
.typography p.blue {
  color: #313c5b;
}
.typography ul, .typography ol {
  margin: 0.62em 0 1em;
  padding: 0 0 0 1.1em;
}
.typography ul li, .typography ol li {
  margin-top: 0.38em;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.018em;
  color: #8e8e8e;
}
@media screen and (min-width: 992px) {
  .typography ul li, .typography ol li {
    font-size: 18px;
  }
}
.typography--contrast h1,
.typography--contrast .h1,
.typography--contrast h2,
.typography--contrast .h2,
.typography--contrast h3,
.typography--contrast .h3 {
  color: #ffffff;
}
.typography--contrast p {
  color: #99b9c7;
}
.typography blockquote {
  margin: 0;
}
.typography blockquote q {
  display: block;
  margin-bottom: 1em;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .typography blockquote q {
    font-size: 28px;
  }
}
.typography blockquote footer {
  font-size: 16px;
  color: #8e8e8e;
}
@media screen and (min-width: 992px) {
  .typography blockquote footer {
    font-size: 18px;
  }
}
.typography blockquote cite {
  display: block;
  color: #313c5b;
  margin-top: 0.38em;
  font-weight: bold;
}
.typography table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  -moz-font-feature-settings: "tnum" 1;
  -ms-font-feature-settings: "tnum" 1;
  -o-font-feature-settings: "tnum" 1;
  -webkit-font-feature-settings: "tnum" 1;
  font-feature-settings: "tnum" 1;
}
.typography th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #6e6e6e;
  border-bottom: 1px solid #e1e1e1;
  user-select: none;
  cursor: default;
  text-align: left;
}
.typography td {
  font-size: 14px;
}
.typography td:empty:after {
  content: "–";
}
.typography th,
.typography td {
  border-bottom: 1px solid #e1e1e1;
  padding: 8px 12px;
}
.typography .text-left {
  text-align: left;
}
.typography .text-center {
  text-align: center;
}
.typography .text-right {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .typography .text-left-md {
    text-align: left;
  }
  .typography .text-center-md {
    text-align: center;
  }
  .typography .text-right-md {
    text-align: right;
  }
}
.typography--custom h3.regular {
  font-weight: 400;
}
.typography--custom h2,
.typography--custom h3 {
  color: #313c5b;
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .typography--custom h2,
  .typography--custom h3 {
    font-size: 40px;
    letter-spacing: -1.2px;
  }
}
.typography--form h3 {
  color: #3f3f3f;
  font-weight: 400;
  letter-spacing: -0.1px;
}
@media screen and (min-width: 768px) {
  .typography--form h3 {
    font-size: 33px;
  }
}
@media screen and (min-width: 768px) {
  .typography--leaf-card h3 {
    font-size: 28px;
    letter-spacing: -0.28px;
  }
}
.typography--leaf-card p {
  margin-top: 10px;
}
.typography .pre-line {
  white-space: pre-line;
}

.underlay {
  position: relative;
}
.underlay__container {
  position: relative;
}
.underlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fafbfc;
}
.underlay--homepage-spotlight:before {
  height: 50%;
}
.underlay--buy-licences-spotlight:before {
  height: 25%;
}
.underlay--faqs:before {
  height: 67px;
}
.underlay--product-page:before {
  height: 150px;
}
.underlay--contact-us {
  padding-bottom: 80px;
}
.underlay--contact-us:before {
  height: 50%;
}

.where-to-find {
  position: relative;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .where-to-find {
    padding-bottom: 0;
  }
}
.where-to-find__map {
  margin-top: 30px;
  width: 100%;
  height: 456px;
}
.where-to-find__address {
  position: absolute;
  bottom: 0;
  right: 20px;
  padding: 40px;
  box-sizing: border-box;
  background-color: #313c5b;
  border-radius: 60px 0 60px 0;
}
@media screen and (min-width: 768px) {
  .where-to-find__address {
    right: 40px;
    bottom: 44px;
  }
}
@media screen and (min-width: 992px) {
  .where-to-find__address {
    right: 60px;
    bottom: 66px;
  }
}
.where-to-find__address p {
  color: #ffffff;
  margin: 0;
}
.where-to-find__leaf {
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 46px;
  height: 54px;
  background: #689cb6;
  border-radius: 2px 26px 2px 26px;
}

.cookie-bar {
  position: fixed;
  bottom: 11px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: none;
  z-index: 17000000;
}
.cookie-bar--visible {
  display: block;
}
.cookie-bar__container {
  max-width: 1200px;
  margin: 0 14px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(142, 142, 142, 0.5);
  background-color: #597891;
  padding: 18px 44px 18px 24px;
}
@media screen and (min-width: 1200px) {
  .cookie-bar__container {
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .cookie-bar__container {
    flex-wrap: nowrap;
  }
}
.cookie-bar__message p {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.018em;
  color: #ffffff;
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .cookie-bar__message p {
    font-size: 18px;
    margin: 0;
  }
}
.cookie-bar__message a {
  color: #ffffff !important;
}
.cookie-bar__message a:hover {
  color: #cacaca;
}
@media screen and (min-width: 768px) {
  .cookie-bar__button {
    margin-left: 30px;
    white-space: nowrap;
  }
}

.raconteur-banner {
  position: relative;
  color: #ffffff;
  padding-top: 40px;
  padding-bottom: 0;
}
@media screen and (min-width: 992px) {
  .raconteur-banner {
    padding-top: 50px;
  }
}
.raconteur-banner__inner {
  padding: 30px 0 0;
  background-color: #313c5b;
}
@media screen and (min-width: 992px) {
  .raconteur-banner__inner {
    padding: 74px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .raconteur-banner__col-copy {
    padding-right: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .raconteur-banner__col-copy {
    padding-bottom: 74px;
  }
}
.raconteur-banner__col-image {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .raconteur-banner__col-image {
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
  }
}
.raconteur-banner__lock {
  margin-bottom: 20px;
}
.raconteur-banner .raconteur-banner__title {
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .raconteur-banner .raconteur-banner__title {
    font-size: 30px;
  }
}
.raconteur-banner .raconteur-banner__p {
  color: #ffffff;
  opacity: 0.8;
}
.raconteur-banner__image-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
  flex-grow: 1;
}
.raconteur-banner__image {
  max-width: 100%;
  width: 420px;
  height: auto;
}
.raconteur-banner--carousel-item {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .raconteur-banner--carousel-item {
    padding: 0 80px;
  }
}
@media screen and (min-width: 1440px) {
  .raconteur-banner--carousel-item {
    padding: 0 20px;
  }
}
.raconteur-banner--carousel-item .raconteur-banner__inner {
  padding: 0;
}
.raconteur-banner--carousel-item .raconteur-banner__row {
  margin: 0 -13px;
}

.raconteur-logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.raconteur-logo::before {
  display: block;
  content: "";
  width: 70px;
  height: 80px;
  margin-right: 10px;
  background-color: #99b9c7;
  border-radius: 3px 35px 3px 35px;
}
.raconteur-logo__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5c7b95;
  width: 240px;
  height: 120px;
  border-radius: 40px 3px 40px 3px;
}
@media screen and (min-width: 992px) {
  .raconteur-logo__wrap {
    border-radius: 60px 4px 60px 4px;
  }
}
.raconteur-logo__img {
  max-width: 80%;
  height: auto;
}

.carousel {
  overflow-x: hidden;
  position: relative;
  padding-top: 40px;
  padding-bottom: 0;
}
@media screen and (min-width: 992px) {
  .carousel {
    padding-top: 50px;
  }
}
.carousel__wrapper {
  padding: 30px 0 50px;
  background-color: #313c5b;
}
@media screen and (min-width: 992px) {
  .carousel__wrapper {
    padding-top: 74px;
  }
}
.carousel__bullets {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 25px;
}
.carousel__bullet {
  padding: 0;
  background-color: transparent;
  border: none;
  opacity: 0.4;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: opacity linear 300ms;
  cursor: pointer;
}
.carousel__bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
}
.carousel__bullet + .carousel__bullet {
  margin-left: 8px;
}
.carousel__bullet.glide__bullet--active {
  opacity: 1;
}
.carousel__controls {
  display: none;
}
@media screen and (min-width: 992px) {
  .carousel__controls {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    max-width: 1440px;
    transform: translate(-50%, -50%);
  }
}
.carousel__control {
  padding: 0;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  transition: opacity linear 300ms;
  cursor: pointer;
}
.carousel__control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 40px;
  height: 100px;
}
.carousel__control[disabled] {
  opacity: 0.4;
}
.carousel__control--left {
  left: 45px;
  transform: rotate(135deg) skew(3deg, 3deg);
}
.carousel__control--right {
  right: 45px;
  transform: rotate(-45deg) skew(3deg, 3deg);
}
.carousel__slides {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
}

.benefits__title-wrapper {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .benefits__title-wrapper {
    margin-bottom: 25px;
  }
}
.benefits__button-wrapper {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .benefits__button-wrapper {
    margin-top: 40px;
  }
}
.benefits__button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .benefits__button {
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .benefits .row {
    margin: 0 -13px;
  }
}

.interested__row + .interested__row {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .interested__row + .interested__row {
    margin-top: 35px;
  }
}

.pagination {
  display: flex;
  padding: 20px 0;
}
.pagination > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border: solid 1px #f5f5f5;
}
.pagination > ul > li {
  margin: 0;
  border-right: solid 1px #f5f5f5;
}
.pagination > ul > li:last-child {
  border-right: none;
}
.pagination .pagination-btn {
  border: solid 1px #f5f5f5;
}
.pagination .pagination-btn--prev {
  border-right: none;
}
.pagination .pagination-btn--next {
  border-left: none;
}
.pagination a, .pagination span {
  display: block;
  padding: 8px 12px;
}
.pagination a:link, .pagination a:visited, .pagination span {
  font-weight: 400;
  color: #000;
  background: #fff;
  text-decoration: none;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.pagination a:hover, .pagination a:active, .pagination a:focus {
  font-weight: 400;
  color: #fff;
  background: #2591d0;
  text-decoration: none;
}
.pagination span.page-number {
  background: #2591d0;
  color: #fff;
}

.share-links {
  margin: 40px 0 20px 0;
}
.share-links h4 {
  color: #313c5b;
  font-size: 18px;
}

ul.sharelinks {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.sharelinks li a.sharelink {
  margin-right: 15px;
}
ul.sharelinks li a.sharelink svg {
  height: 24px;
  width: 24px;
  fill: #313c5b;
}
ul.sharelinks li a.sharelink--twitter svg {
  height: 26px;
  width: 26px;
}
ul.sharelinks li a.sharelink:hover svg, ul.sharelinks li a.sharelink:focus svg {
  fill: #689cb6;
}
ul.sharelinks li a.sharelink:hover svg path, ul.sharelinks li a.sharelink:focus svg path {
  fill: #689cb6;
}

.html-landing .container {
  max-width: 1440px;
}
.html-landing .header {
  position: absolute;
  min-height: 275px;
}
.html-landing .header:not(.header__lp) {
  display: none;
}
@media screen and (min-width: 768px) {
  .html-landing .header {
    min-height: 300px;
  }
}
@media screen and (min-width: 992px) {
  .html-landing .header {
    position: static;
    min-height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .html-landing .header {
    min-height: 700px;
  }
}
.html-landing .header__container {
  max-width: 1440px;
  position: relative;
  z-index: 2;
  background: transparent;
}
.html-landing .header-underlay {
  display: none;
}
.html-landing__banner {
  background: url("/assets/landing-pages/money-banner.jpg") top left no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 275px;
}
@media screen and (min-width: 768px) {
  .html-landing__banner {
    min-height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .html-landing__banner {
    min-height: 700px;
  }
}
.html-landing__banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}
.html-landing__banner h1 {
  position: absolute;
  z-index: 5;
  color: #ffffff;
  padding: 0 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1200px) {
  .html-landing__banner h1 {
    width: 75%;
    font-size: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .html-landing__banner h1 {
    width: 50%;
  }
}
.html-landing__banner h1 span {
  background-color: #FFFE00;
  color: #313c5b;
  padding: 0 15px;
}
@media screen and (min-width: 1200px) {
  .html-landing__form {
    margin-top: -230px;
  }
}
.html-landing__form .section--highlight {
  background: none;
  padding: 0;
}
.html-landing__form .section--highlight > .container {
  background-color: #313c5b;
  padding: 35px 15px;
}
.html-landing__form h2 {
  color: #ffffff;
  text-align: left !important;
  font-weight: 700;
}
.html-landing__form h1, .html-landing__form p {
  color: #ffffff;
}
.html-landing__form form > .row .col {
  margin: 0;
  max-width: 100%;
  flex-basis: 100%;
}
.html-landing__form form > .row .col .form__field:not(:last-child) {
  margin: 20px 0 30px;
}
.html-landing__form form > .row .col input {
  border-radius: 0;
}
.html-landing__form form > .row .col .checkbox__box {
  background-color: #ffffff;
  border-radius: 0;
  min-width: 20px;
  height: 20px;
}
.html-landing__form form > .row .col .checkbox__label {
  color: #ffffff;
  padding-left: 35px;
}
@media screen and (min-width: 768px) {
  .html-landing__form form > .row .col .checkbox__label {
    font-size: 19px;
  }
}
.html-landing__form form > .row .col .form__submit {
  text-align: left;
}
.html-landing__form form > .row .col .form__submit button {
  background-color: #3190cf;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 0;
  margin: 15px 0;
}
.html-landing__form form > .row .col .form__submit button .fa-angle-right {
  display: inline-block !important;
}
.html-landing section {
  padding: 50px 0;
}
.html-landing section.html-landing__form-text {
  margin-top: 175px;
}
@media screen and (min-width: 992px) {
  .html-landing section.html-landing__form-text {
    margin-top: 0;
  }
}
.html-landing section.html-landing__form-text .html-landing__form {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .html-landing section.html-landing__form-text .html-landing__form {
    order: 2;
  }
}
.html-landing section .h2 {
  font-weight: 800;
}
.html-landing section p {
  margin: 25px 0;
}
.html-landing section p.m-0 {
  margin: 0;
}
.html-landing section p.intro {
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .html-landing section p.intro {
    font-size: 20px;
  }
}
.html-landing section.bg-grey {
  background-color: #f5f5f5;
}
.html-landing section.bg-darkblue {
  background-color: #313c5b;
  background-image: url("/assets/landing-pages/cirlce-images.png");
  background-size: 125%;
  background-repeat: no-repeat;
  background-position: top center;
}
@media screen and (min-width: 768px) {
  .html-landing section.bg-darkblue {
    background-image: none;
  }
}
.html-landing section.bg-darkblue h2, .html-landing section.bg-darkblue p, .html-landing section.bg-darkblue a {
  color: #ffffff;
}
.html-landing section.bg-darkblue .button {
  background-color: #3190cf;
  text-transform: uppercase;
  border-radius: 0;
}
.html-landing section .row.two-column, .html-landing section .row.d-flex {
  display: block;
}
@media screen and (min-width: 576px) {
  .html-landing section .row.two-column, .html-landing section .row.d-flex {
    display: flex;
  }
}
@media screen and (min-width: 576px) {
  .html-landing section .row .col {
    padding: 0 25px;
  }
}
.html-landing section .row .col.hidden-md-down {
  display: none;
}
@media screen and (min-width: 768px) {
  .html-landing section .row .col.hidden-md-down {
    display: block;
  }
}
.html-landing section .row .col.sign-up {
  max-width: 66%;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .html-landing section .row .col.sign-up {
    max-width: none;
  }
}
.html-landing section .row .col.p-0 {
  padding: 0;
}
.html-landing section .row .col.quote {
  font-weight: 700;
  padding-right: 35px;
  padding-top: 8px;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .html-landing section .row .col.quote {
    margin-bottom: 0;
  }
}
.html-landing section .row .col.quote:before {
  content: "";
  width: 90px;
  height: 10px;
  background-color: #3190cf;
  display: block;
  margin-bottom: -5px;
}
.html-landing .button .fa-angle-right:before {
  content: "";
  background: url("/assets/landing-pages/chevron-right.png") top right no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-bottom: -2px;
  margin-left: 15px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  display: block;
}
body.touch {
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a:link, a:visited {
  text-decoration: underline;
  color: #3190cf;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

a:hover {
  color: #0464a0;
}

.link {
  text-decoration: none;
  color: #99b9c7;
}
.link--active {
  color: black;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

img {
  max-width: 100%;
  height: auto;
}

