html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

elements-of-type(html5-block) {
  display: block;
}

/**
 * Adds a mixin for browser prefixed keyframes
 * @param  {string} $animationName Name of the animation
 * @return {[type]}                Browser prefixed properties
 */
/**
 * Set the given px-based font sized as rem, with px as fallback
 * @param  {string} $size Pixel size
 */
html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

html.prevent-scroll,
body.prevent-scroll {
  position: fixed;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: 100vw;
  overflow: hidden;
}

main {
  flex-grow: 1;
  margin-top: 6.25vw;
}

@media (max-width: 992px) {
  main {
    margin-top: 100px;
  }
}

.silver-chalice {
  color: #A4A4A4;
}

.comet {
  color: #60627b;
}

.fountain-blue {
  color: #55a9c3;
}

.tree-poppy {
  color: #f78e1e;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.flex {
  display: flex;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
}

.flex-space-around {
  display: flex;
  justify-content: space-around;
}

.flex-space-evenly {
  display: flex;
  justify-content: space-evenly;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-end {
  display: flex;
  align-items: end;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-flex-end {
  justify-content: flex-end;
}

.align-flex-start {
  align-items: flex-start;
}

.underlined {
  text-decoration: underline;
}

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

.full-width {
  width: 100%;
}

.bold {
  font-weight: bold;
}

button,
.button {
  color: #fff;
  background-color: #f78e1e;
  border: 0;
  border-radius: 4px;
  padding: 1.1979166667vw 2.5520833333vw;
  font-size: 1.1458333333vw;
  line-height: 1.40625vw;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
}

button:hover,
.button:hover {
  color: #fff;
  text-decoration: none;
}

button.small,
.button.small {
  padding: 0.7291666667vw 2.34375vw;
  font-size: 1.0416666667vw;
  line-height: 1.25vw;
  font-weight: 600;
}

button.blue,
.button.blue {
  background-color: #2e768e;
}

button.transparent,
.button.transparent {
  background-color: inherit;
  border-radius: 8px;
  color: #000;
  border: 1px solid #ECECED;
}

button.transparent:hover,
.button.transparent:hover {
  text-decoration: none;
  color: #000;
  border-color: #9AA1A4;
  transform: scaleX(1.05) scaleY(1.05);
}

button.narrow,
.button.narrow {
  padding: 1.1979166667vw 0.5208333333vw;
}

@media (max-width: 992px) {
  button,
  .button {
    padding: 19px 50px;
    font-size: 18px;
    line-height: 22px;
  }
  button.small,
  .button.small {
    padding: 19px 50px;
    font-size: 18px;
    line-height: 22px;
  }
  button.narrow,
  .button.narrow {
    padding: 19px 10px;
  }
}

section {
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
}

section.overflow-image + section {
  display: flex;
  justify-content: flex-end;
  padding-right: 12.5vw;
}

section.overflow-image + section > * {
  max-width: 32.65625vw;
  margin: inherit;
}

@media (max-width: 992px) {
  section {
    padding: 80px 25px;
  }
  section.overflow-image + section {
    display: flex;
    justify-content: initial;
    padding-right: 25px;
    padding-top: 168px;
  }
  section.overflow-image + section > * {
    max-width: 100%;
    margin: inherit;
  }
}

section.black {
  background: #000;
}

section.white {
  background: #fff;
}

section.whistleb-black {
  background: #121317;
}

section.comet {
  background: #60627b;
}

section.mine-shaft {
  background: #272727;
}

section.calypso {
  background: #2e768e;
}

section.eastern-blue {
  background: #168fbf;
}

section.fountain-blue {
  background: #55a9c3;
}

section.ivory {
  background: #fffff0;
}

section.tree-poppy {
  background: #f78e1e;
}

section.silver {
  background: #cccccc;
}

section.wild-sand {
  background: #f5f5f5;
}

section.elephant {
  background: #103a48;
}

section.dove-gray {
  background: #666666;
}

section.paragraph {
  background: #000000;
}

section.whisper {
  background: #e4e4e4;
}

section.gray-chateau {
  background: #9AA1A4;
}

section.dusty-gray {
  background: #969696;
}

section.athens-gray {
  background: #ECECED;
}

section.chambray {
  background: #3A579A;
}

section.silver-chalice {
  background: #A4A4A4;
}

.search-button {
  background: #fff;
  width: 1.875vw;
  height: 1.875vw;
  padding: 0;
  color: #60627b;
  border-radius: 0.9375vw;
  position: absolute;
  right: 0.78125vw;
}

.search-button:hover {
  color: #666666;
}

@media (max-width: 992px) {
  .search-button {
    border-radius: 18px;
    width: 36px;
    height: 36px;
    right: 15px;
  }
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Lato", sans-serif;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

h1 {
  color: #000;
  font-size: 3.125vw;
  line-height: 3.6458333333vw;
  letter-spacing: 0;
  margin: 0;
  word-break: break-word;
}

@media (max-width: 992px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
  }
}

h2 {
  font-size: 2.0833333333vw;
  line-height: 2.3958333333vw;
  letter-spacing: 0;
  margin: 0;
  word-break: break-word;
  color: #000;
}

h2.medium {
  font-size: 2.8645833333vw;
  line-height: 3.6458333333vw;
}

h2.large {
  font-size: 3.125vw;
  line-height: 3.6458333333vw;
}

@media (max-width: 992px) {
  h2 {
    font-size: 30px;
    line-height: 36px;
  }
  h2.medium {
    font-size: 32px;
    line-height: 38px;
  }
  h2.large {
    font-size: 36px;
    line-height: 42px;
  }
}

h3 {
  font-size: 2.8645833333vw;
  line-height: 3.6458333333vw;
  letter-spacing: 0;
  margin: 0;
  word-break: break-word;
  color: #000;
}

@media (max-width: 992px) {
  h3 {
    font-size: 32px;
    line-height: 38px;
  }
}

h4 {
  color: #000;
  font-size: 1.4583333333vw;
  line-height: 2.0833333333vw;
  margin-bottom: 0.7291666667vw;
  letter-spacing: 0;
  word-break: break-word;
  margin: 0;
}

h4.large {
  font-size: 2.34375vw;
  line-height: 3.6458333333vw;
}

@media (max-width: 992px) {
  h4 {
    font-size: 22px;
    line-height: 30px;
  }
  h4.large {
    font-size: 28px;
    line-height: 50px;
  }
}

h4.no-margin {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

h5 {
  color: #000;
  font-size: 0.9375vw;
  line-height: 1.4583333333vw;
  letter-spacing: 0;
  word-break: break-word;
  margin: 0;
}

@media (max-width: 992px) {
  h5 {
    font-size: 16px;
    line-height: 24px;
  }
}

p {
  color: #000000;
  font-size: 1.0416666667vw;
  line-height: 1.5625vw;
  letter-spacing: 0;
  margin: 0;
}

p + p {
  margin-top: 0.78125vw;
}

@media (max-width: 1440px) {
  p {
    font-size: 1.25vw;
    line-height: 1.9444444444vw;
  }
  p.small {
    font-size: 1.1111111111vw;
    line-height: 1.6666666667vw;
  }
  p.large {
    font-size: 1.9444444444vw;
    line-height: 2.5vw;
  }
}

@media (max-width: 992px) {
  p {
    font-size: 16px;
    line-height: 26px;
  }
  p.large {
    font-size: 18px;
  }
}

.bold,
strong {
  font-weight: bold;
}

a,
a:hover {
  color: #2e768e;
}

/* --sections-- */
.section-banner {
  background: #2e768e;
  padding: 4.4270833333vw 9.375vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  min-height: 17.1875vw;
}

@media (max-width: 992px) {
  .section-banner {
    flex-direction: column;
    padding: 90px 15px;
  }
}

@media (max-width: 992px) {
  .section-banner .titles {
    margin-bottom: 40px;
  }
}

.section-banner h2 {
  font-size: 1.8229166667vw;
  line-height: 3.6458333333vw;
  color: #fff;
}

@media (max-width: 992px) {
  .section-banner h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 48px;
    text-align: center;
  }
}

.section-banner .subtitle {
  font-size: 0.9375vw;
  line-height: 1.1458333333vw;
  padding-top: 1.6666666667vw;
}

@media (max-width: 992px) {
  .section-banner .subtitle {
    font-size: 16px;
    line-height: 26px;
    padding-top: 16px;
    width: 100%;
    text-align: center;
    display: block;
  }
}

.section-banner .button {
  margin-left: 3.125vw;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .section-banner .button {
    width: 100%;
    margin-left: 0;
  }
}

.section-banner.centered-layout {
  flex-direction: column;
  text-align: center;
}

.section-banner.centered-layout h2 {
  margin-bottom: 1.5625vw;
}

.section-banner.centered-layout .subtitle {
  font-size: 1.4583333333vw;
  line-height: 4.1666666667vw;
  font-weight: bold;
}

@media (max-width: 992px) {
  .section-banner.centered-layout .subtitle {
    font-size: 20px;
    line-height: 46px;
  }
}

.section-banner.centered-layout .button {
  width: 48.28125vw;
  margin-top: 3.6458333333vw;
}

.section-banner.white {
  background: #fff;
}

.section-banner.white h2 {
  color: #000;
}

.section-banner.grey {
  background: #e4e4e4;
}

.section-banner.grey h2 {
  color: #000;
}

@media (max-width: 992px) {
  .section-cards {
    padding: 0 15px;
  }
}

.section-cards.grey {
  background: #f5f5f5;
}

.section-cards.grey h2 {
  color: #000;
  letter-spacing: 0.2083333333vw;
  margin-bottom: 3.6458333333vw;
  text-align: center;
}

@media (max-width: 992px) {
  .section-cards.grey h2 {
    width: 100%;
    margin-bottom: 40px;
  }
}

.section-cards.no-spacing {
  padding: 0;
}

.section-cards.no-spacing-bottom {
  padding-bottom: 0;
}

.section-cards .cards,
.section-cards h2 {
  width: 44.375vw;
  margin: 0 auto;
}

.section-cards .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 5.2083333333vw;
}

.section-cards .cards.no-spacing-bottom {
  padding-bottom: 0;
}

@media (max-width: 992px) {
  .section-cards .cards {
    width: 100%;
  }
}

.section-cards h2 {
  margin-bottom: 3.125vw;
}

@media (max-width: 992px) {
  .section-cards h2 {
    margin-bottom: 40px;
    width: 100%;
  }
}

.section-cards .cards-card {
  background-color: #2e768e;
  width: 20.9895833333vw;
  height: 181px;
  margin-right: 2.3958333333vw;
  margin-bottom: 2.34375vw;
}

@media (max-width: 992px) {
  .section-cards .cards-card {
    margin-right: 0;
    margin-bottom: 24px;
    width: 100%;
  }
}

.section-cards .cards-card:nth-child(2n) {
  margin-right: 0;
}

.section-cards .cards-card-link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0 3.125vw;
}

.section-cards .cards-card-link:hover {
  text-decoration: none;
}

@media (max-width: 992px) {
  .section-cards .cards-card-link {
    padding: 0 35px;
  }
}

.section-cards .cards-card-title {
  font-size: 1.3020833333vw;
  color: #fff;
}

@media (max-width: 992px) {
  .section-cards .cards-card-title {
    font-size: 22px;
  }
}

.section-cards .cards-card-subtitle {
  font-size: 0.9375vw;
  font-family: "Lato", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.0208333333vw;
  margin-bottom: 0.3645833333vw;
}

@media (max-width: 992px) {
  .section-cards .cards-card-subtitle {
    font-size: 18px;
  }
}

section.section-contact-form,
.career-contact,
.contact-form-col {
  min-height: 500px;
  border-radius: 4px;
  border-top: 1px solid #ECECED;
  border-bottom: 1px solid #ECECED;
  border-radius: 0;
}

section.section-contact-form h2,
section.section-contact-form p,
.career-contact h2,
.career-contact p,
.contact-form-col h2,
.contact-form-col p {
  text-align: center;
}

section.section-contact-form.white,
.career-contact.white,
.contact-form-col.white {
  background-color: #fff;
}

section.section-contact-form.white h2,
.career-contact.white h2,
.contact-form-col.white h2 {
  color: #000;
}

section.section-contact-form.blue,
.career-contact.blue,
.contact-form-col.blue {
  background-color: #2e768e;
}

section.section-contact-form.blue h2,
.career-contact.blue h2,
.contact-form-col.blue h2 {
  color: #fff;
}

section.section-contact-form .message,
.career-contact .message,
.contact-form-col .message {
  display: none;
}

section.section-contact-form .message.fail,
.career-contact .message.fail,
.contact-form-col .message.fail {
  color: #f78e1e;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
}

.form-wrapper .success-message {
  color: #f78e1e;
  display: none;
  line-height: 28px;
  max-width: 500px;
  margin: 50px auto;
}

form.contact-form,
form.mktoForm {
  max-width: 700px;
  margin: 5px auto 30px;
}

form.contact-form#career-contact-form,
form.mktoForm#career-contact-form {
  margin: 0 auto;
}

form.contact-form#career-contact-form .first-row input,
form.mktoForm#career-contact-form .first-row input {
  margin-top: 0;
}

@media (max-width: 992px) {
  form.contact-form#career-contact-form .first-row input,
  form.mktoForm#career-contact-form .first-row input {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  form.contact-form .input-wrapper.left,
  form.mktoForm .input-wrapper.left {
    padding-right: 10px;
  }
  form.contact-form .input-wrapper.right,
  form.mktoForm .input-wrapper.right {
    padding-left: 10px;
  }
}

form.contact-form label,
form.mktoForm label {
  display: none;
}

form.contact-form input,
form.contact-form textarea,
form.mktoForm input,
form.mktoForm textarea {
  width: 100%;
  border: 1px solid #f5f5f5;
  border-radius: 6px;
  background: #f5f5f5;
  margin-top: 20px;
  padding: 20px 30px;
}

form.contact-form input,
form.mktoForm input {
  height: 50px;
}

form.contact-form textarea,
form.contact-form .g-recaptcha,
form.mktoForm textarea,
form.mktoForm .g-recaptcha {
  margin-bottom: 5px;
}

form.contact-form .input-error,
form.mktoForm .input-error {
  display: inline-block;
  height: 25px;
  color: #000;
}

form.contact-form button,
form.mktoForm button {
  width: 100%;
}

form.mktoForm {
  width: 100% !important;
}

form.mktoForm .mktoFormRow {
  display: flex;
}

form.mktoForm .mktoFormRow .mktoGutter {
  display: none;
}

form.mktoForm .mktoFormRow .mktoOffset {
  display: none;
}

form.mktoForm .mktoFormRow .mktoFormCol {
  width: 100% !important;
  margin-bottom: 0 !important;
}

form.mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap {
  width: 100% !important;
}

form.mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap textarea.mktoField {
  min-height: 122px;
  margin-bottom: 30px;
}

form.mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap .mktoField {
  width: 100% !important;
  box-shadow: unset;
  border: 1px solid #f5f5f5;
  border-radius: 6px;
  background: #f5f5f5;
  margin-top: 20px;
  padding: 20px 30px;
  font-size: 15px;
}

form.mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap .mktoField:focus {
  outline: -webkit-focus-ring-color auto 1px;
}

form.mktoForm .mktoFormRow .mktoFormCol ~ .mktoFormCol {
  margin-left: 20px;
}

form.mktoForm .mktoButtonRow {
  width: 100% !important;
}

form.mktoForm .mktoButtonRow .mktoButtonWrap {
  margin-left: 0 !important;
}

form.mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
  color: #fff;
  background-color: #f78e1e;
  border: 0;
  border-radius: 4px;
  padding: 19px 50px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  background-image: unset;
  font-size: 1.0416666667vw;
  line-height: 1.25vw;
  font-weight: 600;
}

form.mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:focus, form.mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover {
  border: none;
}

@media (max-width: 992px) {
  form.mktoForm {
    margin-left: 8.333333%;
    max-width: 83.333333%;
  }
  form.mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
    font-size: 18px;
    padding: 19px 50px;
    line-height: 22px;
  }
}

@media (max-width: 600px) {
  form.mktoForm {
    margin-left: 0;
    max-width: 100%;
    padding: 0;
  }
}

.section-customers h2 {
  text-align: center;
  padding-bottom: 72px;
}

@media (max-width: 992px) {
  .section-customers h2 {
    padding-top: 40px;
  }
}

@media (max-width: 992px) {
  .section-customers {
    padding: 0 15px 90px;
  }
}

.section-customers .customer-list {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  width: 64.3229166667vw;
}

@media (max-width: 992px) {
  .section-customers .customer-list {
    width: 100%;
  }
}

.section-customers .customer {
  padding: 0.625vw 0.5208333333vw;
  width: 16.0416666667vw;
  height: 9.375vw;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .section-customers .customer {
    width: 50%;
    height: auto;
  }
}

.section-customers .customer div {
  width: 14.7916666667vw;
  height: 8.3333333333vw;
  overflow: hidden;
}

@media (max-width: 992px) {
  .section-customers .customer div {
    width: 100%;
    height: auto;
  }
}

.section-customers .customer:nth-child(4n) {
  border-right: none;
}

.section-customers .customer.last-desktop {
  border-bottom: none;
}

@media (max-width: 992px) {
  .section-customers .customer.last-desktop {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 992px) {
  .section-customers .customer.last-mobile {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 992px) {
  .section-customers .customer:nth-child(2n) {
    border-right: none;
  }
  .section-customers .customer.last-mobile {
    border-bottom: none;
  }
}

.section-customers img {
  width: 100%;
  height: inherit;
}

.download-information {
  background: #f5f5f5;
  padding: 4.6875vw 16.1458333333vw;
}

@media (max-width: 992px) {
  .download-information {
    padding: 50px 0;
  }
}

.download-information h2 {
  font-size: 2.8645833333vw;
  line-height: 3.6458333333vw;
  margin-bottom: 3.125vw;
}

@media (max-width: 992px) {
  .download-information h2 {
    font-size: 32px;
    line-height: 38px;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .download-information .files {
    padding: 0 15px;
  }
}

.download-information .file {
  margin-bottom: 1.6666666667vw;
  font-size: 1.0416666667vw;
  line-height: 1.71875vw;
}

.download-information .file a span {
  margin-left: 0.78125vw;
}

@media (max-width: 992px) {
  .download-information .file a span {
    margin-left: 9px;
  }
}

@media (max-width: 992px) {
  .download-information .file {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 24px;
  }
}

section.section-hero-large {
  margin-bottom: -19.2708333333vw;
}

section.section-hero-large .text-wrapper {
  max-width: 48.4375vw;
  margin: auto;
  margin-bottom: 5.0260416667vw;
}

section.section-hero-large .text-wrapper h1 {
  text-align: center;
  margin-bottom: 2.5520833333vw;
}

section.section-hero-large .text-wrapper h2 {
  text-align: center;
  margin-bottom: 2.5520833333vw;
}

section.section-hero-large .hero-image {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 93.75vw;
  margin: auto;
  padding-bottom: 40.8%;
  background-image: var(--background-large);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

section.section-hero-large .hero-image .button {
  position: absolute;
  top: -1.9010416667vw;
}

section.section-hero-large .system-details {
  width: 76.0416666667vw;
  position: relative;
  top: -19.2708333333vw;
  display: flex;
  margin: auto;
  background: #fff;
  padding: 4.1666666667vw 5.2083333333vw;
}

section.section-hero-large .system-details > h2 {
  width: 50%;
  padding-right: 3.28125vw;
  margin-top: 16%;
}

section.section-hero-large .system-details > div {
  width: 50%;
  padding-left: 3.28125vw;
}

section.section-hero-large .system-details h2,
section.section-hero-large .system-details h3,
section.section-hero-large .system-details h4 {
  line-height: 1;
}

section.section-hero-large .system-details h3 {
  font-size: 1.4583333333vw;
  margin: 0;
}

@media (max-width: 992px) {
  section.section-hero-large .system-details h3 {
    font-size: 22px;
  }
}

section.section-hero-large .system-details .system-detail {
  margin-bottom: 2.1354166667vw;
}

section.section-hero-large .system-details .system-detail div {
  padding-left: 4.1666666667vw;
}

section.section-hero-large .system-details .system-detail p {
  padding-top: 0.7291666667vw;
}

section.section-hero-large .system-details .system-detail img {
  position: absolute;
  width: 2.96875vw;
}

section.section-hero-large .system-details .titles {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding-left: 0;
}

@media (max-width: 992px) {
  section.section-hero-large {
    margin-bottom: 0;
  }
  section.section-hero-large .text-wrapper {
    max-width: 100%;
    margin-bottom: 68px;
  }
  section.section-hero-large .text-wrapper h1 {
    margin-bottom: 32px;
  }
  section.section-hero-large .hero-image {
    max-width: initial;
    padding-bottom: 74.1545894%;
    width: 100vw;
    left: -25px;
  }
  section.section-hero-large .hero-image .button {
    top: -30.5px;
  }
  section.section-hero-large .system-details {
    width: 100%;
    top: 0;
    padding: 0;
    display: block;
  }
  section.section-hero-large .system-details h2 {
    text-align: center;
    padding: 60px 0;
  }
  section.section-hero-large .system-details > h2,
  section.section-hero-large .system-details > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  section.section-hero-large .system-details .titles {
    padding: 0 15px;
    margin-bottom: 15px;
  }
  section.section-hero-large .system-details .system-detail {
    margin-bottom: 17px;
    padding: 0 15px;
  }
  section.section-hero-large .system-details .system-detail div {
    padding-left: 61px;
  }
  section.section-hero-large .system-details .system-detail p {
    font-size: 15px;
    padding-top: 9px;
  }
  section.section-hero-large .system-details .system-detail img {
    position: absolute;
    width: 43px;
  }
  section.section-hero-large .compliant-logotypes {
    top: 0;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  section.section-hero-large .compliant-logotypes img {
    width: 85px;
    margin-right: 40px;
  }
  section.section-hero-large .compliant-logotypes img:last-of-type {
    margin-right: 0px;
  }
}

@media (max-width: 600px) {
  section.section-hero-large .hero-image {
    background-image: var(--background-small);
  }
}

section.no-padding-bottom {
  padding-bottom: 0;
}

section.section-hero-small {
  position: relative;
  padding-bottom: 5.2083333333vw;
  min-height: 17.1875vw;
}

section.section-hero-small.no-bottom-padding {
  padding-bottom: 0;
}

section.section-hero-small .text-wrapper {
  max-width: 46.875vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}

section.section-hero-small .text-wrapper h1 {
  margin-bottom: 2.6041666667vw;
  max-width: 46.875vw;
  text-align: center;
}

section.section-hero-small .text-wrapper h1.no-bottom-margin {
  margin-bottom: 0;
}

section.section-hero-small .text-wrapper h5 {
  color: #f78e1e;
  margin-bottom: 1.0416666667vw;
}

section.section-hero-small .text-wrapper p {
  max-width: 46.875vw;
  text-align: center;
}

section.section-hero-small .text-wrapper.two-col {
  max-width: 67.7083333333vw;
  flex-direction: row;
  align-items: flex-start;
}

section.section-hero-small .text-wrapper.two-col h1 {
  margin-right: 5.7291666667vw;
  min-width: 29.6875vw;
  text-align: left;
}

section.section-hero-small .text-wrapper a {
  color: #000;
  text-decoration: underline;
  font-weight: normal;
  font-family: "Lato", sans-serif;
}

section.section-hero-small img {
  width: 90.78125vw;
  position: absolute;
  left: -36.5625vw;
  top: 5.2083333333vw;
}

@media (max-width: 992px) {
  section.section-hero-small {
    margin-bottom: 0;
    padding: 25px;
  }
  section.section-hero-small .text-wrapper {
    max-width: 100%;
    text-align: center;
  }
  section.section-hero-small .text-wrapper h1 {
    margin-bottom: 32px;
    max-width: 100%;
  }
  section.section-hero-small .text-wrapper p {
    max-width: 100%;
    text-align: center;
  }
  section.section-hero-small .text-wrapper.two-col {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
  section.section-hero-small .text-wrapper.two-col h1 {
    margin-right: 0;
    min-width: 100%;
    text-align: center;
  }
  section.section-hero-small img {
    width: 739px;
    position: absolute;
    left: -453px;
    top: initial;
    bottom: -212px;
  }
}

section.section-hero-small.blue {
  background: #2e768e;
}

section.section-hero-small.blue p {
  color: #fff;
}

section.section-hero-small.grey {
  background: #f5f5f5;
}

.section-how-it-works {
  padding-bottom: 0;
}

@media (max-width: 992px) {
  .section-how-it-works {
    padding: 60px 25px;
  }
}

.section-how-it-works h2 {
  font-size: 2.0833333333vw;
  color: #000;
  text-align: center;
  margin-bottom: 5.2083333333vw;
}

@media (max-width: 992px) {
  .section-how-it-works h2 {
    font-size: 26px;
  }
}

.section-how-it-works h3 {
  line-height: 2.3958333333vw;
}

@media (max-width: 992px) {
  .section-how-it-works h3 {
    line-height: 36px;
  }
}

.section-how-it-works .how-it-works-steps {
  width: 78.125vw;
  display: flex;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-steps {
    width: 100%;
  }
}

.section-how-it-works .how-it-works-column {
  padding-top: 0.5208333333vw;
}

.section-how-it-works .how-it-works-column:first-child {
  padding-top: 9.375vw;
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-column:first-child {
    padding-top: 0;
  }
}

.section-how-it-works .how-it-works-column:first-child .how-it-works-step {
  text-align: right;
}

.section-how-it-works .how-it-works-column:first-child .how-it-works-step h3 {
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-column:first-child .how-it-works-step h3 {
    justify-content: flex-start;
    line-height: 30px;
  }
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-column:first-child .how-it-works-step {
    text-align: inherit;
  }
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-column:nth-child(3) {
    display: none;
  }
}

.section-how-it-works .how-it-works-step-numbers {
  margin: 0.5208333333vw 4.1666666667vw 0;
  width: 2.3958333333vw;
  position: relative;
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-step-numbers {
    display: none;
  }
}

.section-how-it-works .how-it-works-step-numbers li {
  width: 2.3958333333vw;
  height: 2.3958333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 6.4583333333vw;
  color: #fff;
  font-size: 1.09375vw;
  font-weight: bold;
  position: relative;
  background-color: #f78e1e;
}

.section-how-it-works .how-it-works-step-numbers li:after {
  height: 6.4583333333vw;
  content: "";
  flex: 1;
  width: 1px;
  background-color: #e4e4e4;
  display: block;
  position: absolute;
  top: 2.34375vw;
  left: 50%;
}

.section-how-it-works .how-it-works-step-numbers li:last-child:after {
  display: none;
}

.section-how-it-works .how-it-works-step {
  height: 17.7083333333vw;
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-step {
    height: auto;
    margin-bottom: 54px;
  }
  .section-how-it-works .how-it-works-step:last-child {
    margin-bottom: 0;
  }
}

.section-how-it-works .how-it-works-step.hide-desktop {
  display: none;
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-step.hide-desktop {
    display: block;
  }
}

.section-how-it-works .how-it-works-step h3 {
  font-size: 1.4583333333vw;
  margin-bottom: 0.3125vw;
  display: flex;
  align-items: center;
}

.section-how-it-works .how-it-works-step h3 img {
  width: 2.3958333333vw;
  height: auto;
  margin-right: 1.3020833333vw;
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-step h3 img {
    width: 35px;
    height: auto;
    margin-right: 16px;
  }
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-step h3 {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .section-how-it-works .how-it-works-step p {
    font-size: 15px;
  }
}

section.section-list {
  padding-top: 0;
}

@media (max-width: 992px) {
  section.section-list {
    padding-bottom: 0;
  }
}

section.section-list .section-two-columns {
  padding-bottom: 0;
}

section.section-list .list-summary {
  padding: 0 16.1458333333vw 6.09375vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

section.section-list .list-summary .step-wrapper {
  max-width: 15.2083333333vw;
}

section.section-list .list-summary .step-number {
  border-radius: 6px;
  width: 2.3958333333vw;
  height: 2.3958333333vw;
  font-size: 1.09375vw;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #55a9c3;
  border: 3px solid #55a9c3;
}

section.section-list .list-summary .step-short-title {
  font-size: 1.0416666667vw;
  color: #000000;
  padding-left: 0.5208333333vw;
  flex: 1;
  line-height: 1.3020833333vw;
}

@media (max-width: 992px) {
  section.section-list .list-summary {
    padding: 0 25px 60px;
    flex-direction: column;
  }
  section.section-list .list-summary .step-wrapper {
    max-width: 100%;
  }
  section.section-list .list-summary .step-wrapper:not(:first-child) {
    margin-top: 24px;
  }
  section.section-list .list-summary .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
    border: 2px solid #55a9c3;
  }
  section.section-list .list-summary .step-short-title {
    font-size: 16px;
    padding-left: 12px;
    line-height: 22px;
  }
}

section.section-list .list-wrapper {
  padding-top: 6.09375vw;
}

section.section-list .list-wrapper .list-item {
  padding: 6.09375vw 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

section.section-list .list-wrapper .list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

section.section-list .list-wrapper .list-item:first-child {
  padding-top: 0;
}

section.section-list .list-wrapper .list-item .step-wrapper {
  padding: 0 16.1458333333vw 0.8854166667vw;
}

section.section-list .list-wrapper .list-item .step-number {
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  font-size: 2.5vw;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #55a9c3;
  border-radius: 6px;
  border: 6px solid #55a9c3;
}

section.section-list .list-wrapper .list-item .step-title {
  padding-left: 2.0833333333vw;
  flex: 1;
}

@media (max-width: 992px) {
  section.section-list .list-wrapper {
    padding-top: 60px;
  }
  section.section-list .list-wrapper .section-two-columns {
    padding-top: 40px;
  }
  section.section-list .list-wrapper .section-two-columns .column {
    padding-left: 0;
    padding-right: 0;
  }
  section.section-list .list-wrapper .list-item {
    padding: 60px 0 10px;
  }
  section.section-list .list-wrapper .list-item .step-wrapper {
    padding: 0;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  section.section-list .list-wrapper .list-item .step-number {
    border-radius: 6px;
    width: 80px;
    height: 80px;
    font-size: 28px;
    border: 4px solid #55a9c3;
  }
  section.section-list .list-wrapper .list-item .step-title {
    padding-left: 16px;
    flex: 1;
  }
}

.hide_desktop {
  display: none;
}

@media (max-width: 992px) {
  .hide_desktop {
    display: block;
  }
}

section.section-our-plans {
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  section.section-our-plans {
    padding: 42 px 20px;
  }
}

section.section-our-plans .title {
  color: #000;
  font-size: 2.0833333333vw;
  text-align: center;
  margin-bottom: 2.0833333333vw;
}

@media (max-width: 992px) {
  section.section-our-plans .title {
    font-size: 30px;
    margin-bottom: 28px;
    margin-top: 72px;
  }
}

section.section-our-plans .button {
  margin-bottom: 1.0416666667vw;
  width: 15.625vw;
  transition: 0.3s;
}

section.section-our-plans .button:hover {
  text-decoration: none;
  color: white;
  opacity: 0.7;
  transform: scaleX(1.05) scaleY(1.05);
}

@media (max-width: 992px) {
  section.section-our-plans .button {
    width: 70vw;
  }
}

section.section-our-plans .description {
  width: 46.875vw;
  margin: 0 auto 3.6458333333vw;
  color: #000;
  font-size: 1.6666666667vw;
  text-align: center;
  margin-bottom: 3.6458333333vw;
}

@media (max-width: 992px) {
  section.section-our-plans .description {
    font-size: 32px;
    margin-bottom: 42px;
    width: 100%;
  }
}

section.section-our-plans .plan-list {
  display: flex;
  width: 83.3333333333vw;
  margin: 0 auto 3.6458333333vw;
  justify-content: space-between;
}

@media (max-width: 992px) {
  section.section-our-plans .plan-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
  }
}

section.section-our-plans .plan {
  background: #fff;
  width: 31%;
  padding: 50px 42px 0 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ECECED;
  border-radius: 12px;
}

@media (max-width: 992px) {
  section.section-our-plans .plan {
    width: 100%;
    margin-bottom: 30px;
    padding: 42px 20px 20px 20px;
  }
}

section.section-our-plans .plan-title {
  text-align: start;
  padding-bottom: 38px;
  font-size: 2.0833333333vw;
  line-height: unset;
}

@media (max-width: 992px) {
  section.section-our-plans .plan-title {
    font-size: 30px;
    padding-bottom: 38px;
    text-align: left;
  }
}

section.section-our-plans .plan-icon {
  margin-right: 0.9375vw;
  color: #000;
}

@media (max-width: 992px) {
  section.section-our-plans .plan-icon {
    margin-right: 18px;
  }
}

section.section-our-plans .specification-link-wrapper {
  display: flex;
  justify-content: center;
}

section.section-our-plans .specification-link-wrapper .feature-section {
  flex: 1;
}

section.section-our-plans .specification-link-wrapper .empty-box {
  flex: 1;
}

section.section-our-plans .column.text {
  flex-grow: 2;
}

section.section-our-plans .plan-price-section .price {
  margin-top: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 2.0833333333vw;
  padding-bottom: 8px;
}

@media (max-width: 992px) {
  section.section-our-plans .plan-price-section .price {
    font-size: 30px;
  }
}

section.section-our-plans .plan-price-section .price-text {
  text-align: left;
  font-size: 1.0416666667vw;
  color: #9AA1A4;
  padding-bottom: 20px;
}

@media (max-width: 992px) {
  section.section-our-plans .plan-price-section .price-text {
    font-size: 16px;
  }
}

section.section-our-plans .mobile-plan-buttons {
  width: 100%;
  margin: auto;
  display: flex;
}

section.section-our-plans .mobile-plan-buttons button, section.section-our-plans .mobile-plan-buttons input[type="submit"], section.section-our-plans .mobile-plan-buttons input[type="reset"] {
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

section.section-our-plans .mobile-plan-buttons .mobile-plan-button {
  width: 33%;
  display: inline-flex;
  border-radius: 0;
  background: #fff 0% 0% no-repeat padding-box;
  font: 600 16px/19px Montserrat;
  color: #272727;
  justify-content: center;
  align-items: center;
}

section.section-our-plans .mobile-plan-buttons .mobile-plan-button:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

section.section-our-plans .mobile-plan-buttons .mobile-plan-button:nth-child(2) {
  border-left: 1.5px solid #ECECED;
  border-right: 1.5px solid #ECECED;
}

section.section-our-plans .mobile-plan-buttons .mobile-plan-button:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

section.section-our-plans .column.text .text-wrapper ul li:last-child {
  margin-bottom: 0px;
}

@media (max-width: 992px) {
  section.section-our-plans .hidden-plan {
    display: none;
  }
}

section.section-our-plans .feature-order-button {
  font-size: 1.1458333333vw;
  transition: 0.3s;
}

section.section-our-plans .feature-order-button:hover {
  text-decoration: none;
  color: white;
  opacity: 0.7;
  transform: scaleX(1.05) scaleY(1.05);
}

@media (max-width: 992px) {
  section.section-our-plans .feature-order-button {
    width: 65vw;
    font-size: 20px;
  }
}

section.section-our-plans .price-plan-buttons {
  padding-bottom: 0px;
}

section.section-our-plans .hidden-desktop {
  display: none;
}

@media (max-width: 992px) {
  section.section-our-plans .hidden-desktop {
    display: flex;
    margin-bottom: 50px;
  }
}

.mobile-plan-active {
  background-color: #f78e1e !important;
  color: #fff !important;
}

.compare-button-section {
  margin: auto;
}

.section-plan-features {
  padding-top: 0;
}

@media (max-width: 992px) {
  .section-plan-features {
    padding-bottom: 42px;
  }
}

.features {
  max-width: 80.7291666667vw;
  margin: 0 auto;
}

.features .feature-section:nth-child(2) .feature-row:first-child .feature-group-title {
  padding-top: 0;
}

.features .feature-section:nth-child(2) .feature-row:first-child .extra-height {
  height: auto;
}

.feature-row {
  display: flex;
  justify-content: center;
}

.feature-row:first-child .feature-item-contet {
  border-top: none;
}

.feature-row:first-child .feature-items {
  border-bottom: none;
}

@media (min-width: 985px) {
  .feature-row:not(:first-child):hover {
    background-color: #f5f5f5;
  }
  .feature-row:not(:first-child):hover .feature-item {
    background-color: #f5f5f5;
  }
  .feature-row.hide-mobile:hover {
    background-color: #fff;
  }
  .feature-row.hide-mobile:hover .feature-item {
    background-color: #fff;
  }
}

.feature-item {
  border-left: 1px solid #ECECED;
  border-right: 1px solid #ECECED;
}

.feature-section:last-child .feature-row:last-child .feature-items:last-child {
  border-bottom: none;
}

.feature-section:last-child .feature-row:last-child .feature-item {
  border-bottom: 1px solid #ECECED;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.feature-section-price .feature-item-title-container {
  font-weight: bold;
  opacity: 1;
  border: none;
  font-size: 1.1458333333vw;
  height: auto;
}

.feature-section-price .feature-row:first-child .feature-item-title-container,
.feature-section-price .feature-row:first-child .feature-item {
  padding-top: 1.5625vw;
}

.feature-title {
  display: flex;
  align-items: center;
  font-size: 2.0833333333vw;
  font-family: "Montserrat", sans-serif;
  width: 18.2291666667vw;
  letter-spacing: 0.2083333333vw;
}

.feature-group-title-container {
  font-family: "Montserrat", sans-serif;
  padding-top: 1.0416666667vw;
  width: 18.2291666667vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-group-title-container .feature-group-title {
  font-size: 1.0416666667vw;
  font-family: Montserrat;
  line-height: 26px;
  font-weight: 600;
}

.feature-item-title-container {
  font-size: 0.78125vw;
  line-height: 24px;
  letter-spacing: -0.0208333333vw;
  color: #000000;
  border-bottom: 1px solid #ECECED;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 18.2291666667vw;
  padding-right: 10px;
}

.feature-item-title-container .feature-item-title-container {
  max-width: 75%;
}

.feature-item-info-button {
  cursor: pointer;
  width: 1.0416666667vw;
  margin-left: 4px;
}

.feature-item-info-button img {
  width: 100%;
  height: auto;
}

.feature-plan-titles {
  display: flex;
}

.feature-plan-title {
  background: #fff;
  width: 20.46875vw;
  height: 10.7291666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0833333333vw;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-right: 1.1979166667vw;
  border-top: 1px solid #ECECED;
  border-left: 1px solid #ECECED;
  border-right: 1px solid #ECECED;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.feature-plan-title:last-child {
  margin-right: 0;
}

.feature-items {
  display: flex;
  border-bottom: 1px solid #ECECED;
}

.feature-item {
  background: #fff;
  width: 20.46875vw;
  margin-right: 1.1979166667vw;
  color: #000000;
  display: flex;
  justify-content: center;
}

.feature-item-empty {
  height: auto;
}

.feature-item:last-child {
  margin-right: 0;
}

.feature-item-checkmark {
  font-size: 0.9375vw;
}

.feature-item-content {
  width: 20.46875vw;
  height: 1.9791666667vw;
  justify-content: center;
  align-items: center;
  font-size: 0.78125vw;
  text-align: center;
  line-height: 24px;
}

.feature-item-content.hidden {
  display: none;
}

.feature-item-content .button.small {
  font-weight: bold;
}

.extra-height {
  height: 3.125vw;
  border-bottom: none;
}

.price-styling {
  width: fit-content;
}

.feature-button-container {
  display: block;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.feature-button-wrapper {
  display: flex;
  background: #fff;
  border-radius: 4px;
  justify-content: space-around;
  padding: 5px;
}

.feature-button-wrapper button {
  margin-right: 2px;
  width: 3.125vw;
}

.feature-button-wrapper button.active {
  z-index: 1;
}

.feature-button-title {
  display: none;
  color: #000;
  margin-bottom: 10px;
}

.single-plan .feature-plan-titles {
  width: calc(63% - 2px);
}

.single-plan .feature-plan-titles .feature-plan-title {
  width: 100%;
}

.single-plan .feature-items {
  width: calc(63% - 2px);
}

.single-plan .feature-items .feature-item {
  width: 100%;
}

.single-plan .feature-items .feature-item .feature-item-content {
  width: 90%;
}

.single-plan .feature-item-empty {
  width: 61%;
  margin-left: 1.1979166667vw;
}

.price-plan-buttons {
  display: flex;
  flex-direction: column;
  height: 6.25vw;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom: none;
}

.price-plan-buttons .button {
  width: 13.0208333333vw;
}

.feature-link {
  padding-bottom: 2vw;
  padding-top: 2vw;
}

.feature-order-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 3.125vw;
  margin-top: 10px;
  margin-bottom: 10px;
  background: #f78e1e 0% 0% no-repeat padding-box;
  border-radius: 8px;
  opacity: 1;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.feature-order-button:hover {
  text-decoration: none;
  color: white;
  opacity: 0.7;
  transform: scaleX(1.05) scaleY(1.05);
}

.learn-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  width: 80%;
  height: 40%;
  border: 1px solid #ECECED;
  border-radius: 8px;
  opacity: 1;
  color: #272727;
  transition: 0.3s;
}

.learn-more-button:hover {
  text-decoration: none;
  color: #000;
  border-color: #9AA1A4;
  transform: scaleX(1.05) scaleY(1.05);
}

.mobile-info-text {
  display: none;
}

.hide-desktop {
  display: none;
}

@media (max-width: 992px) {
  .compliant-text {
    max-width: 100%;
  }
  h2 {
    font: 600 20px/26px Montserrat;
  }
  .features {
    width: 100%;
    max-width: 100%;
  }
  .features .feature-section:nth-child(2) .feature-row:first-child .feature-group-title-container {
    padding-top: 72px;
    padding-bottom: 18px;
  }
  .extra-height {
    display: none;
  }
  .hide-desktop {
    display: block;
    margin-top: 10px;
    font: 600 12px/20px Montserrat;
  }
  .hide-mobile {
    display: none;
  }
  .feature-row {
    flex-wrap: wrap;
    border-bottom: 1px solid #ECECED;
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .feature-row:first-child {
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .feature-row:first-child .feature-group-title-container {
    height: fit-content;
  }
  .feature-row:last-child .feature-item {
    padding-bottom: 0;
  }
  .feature-section:first-child {
    display: none;
  }
  .feature-section:last-child .feature-row:nth-last-child(2) {
    border-bottom: none;
  }
  .mobile-info-text {
    display: block;
    text-align: center;
    font: 14px/22px Lato;
    letter-spacing: 0px;
    color: #9AA1A4;
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .feature-row-section {
    width: 100%;
  }
  .feature-title {
    margin-right: 0;
    width: 100%;
    font-size: 30px;
    height: 80px;
    justify-content: center;
    letter-spacing: 3px;
  }
  .feature-group-title-container {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding-top: 42px;
    padding-bottom: 18px;
  }
  .feature-group-title-container .feature-group-title {
    font-size: 20px;
  }
  .feature-plan-titles {
    width: 100% !important;
  }
  .feature-plan-title {
    font-size: 22px;
    margin: 0 1px;
    width: calc(50% - 2px);
    min-height: 80px;
    height: auto;
    text-align: center;
    padding: 0 10px;
  }
  .feature-section-price {
    margin-top: 25px;
  }
  .feature-section-price .feature-items {
    margin: 0;
  }
  .feature-section-price .feature-item-content {
    font-size: 20px;
    height: auto;
  }
  .feature-section-price .feature-row:last-child .feature-item {
    padding-bottom: 3.125vw;
  }
  .feature-section-price .feature-row:last-child .feature-item-title {
    display: none;
  }
  .feature-item-title-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    border: none;
    justify-content: center;
    font-size: 16px;
    opacity: 1;
  }
  .feature-item-title-container .feature-item-title {
    text-align: center;
    font-size: 17px;
    line-height: 24px;
  }
  .feature-item-title-container.buttons {
    height: auto;
    margin-bottom: 24px;
  }
  .feature-item-info-button {
    display: none;
    position: absolute;
    right: 0;
    width: 22px;
  }
  .feature-items {
    width: 100% !important;
    border-bottom: none;
  }
  .feature-item {
    margin: 0 1px;
    width: calc(50% - 2px);
    min-height: 70px;
    align-items: center;
    border-left: none;
    border-right: none;
  }
  .feature-item-empty {
    display: none;
  }
  .feature-item-content {
    font-size: 15px;
    border: none;
    width: 100%;
    flex-direction: column;
    height: fit-content;
  }
  .feature-item-content .button.small {
    width: 85%;
    padding-right: 12px;
    padding-left: 12px;
  }
  .feature-button-container {
    flex-direction: column;
    width: 100%;
  }
  .feature-button-title {
    display: block;
    font-size: 22px;
    width: 50%;
    margin: 5vw auto;
  }
  .feature-button-wrapper {
    width: 100%;
    padding: 12px;
  }
  .feature-button-wrapper button {
    width: 60px;
  }
  .price-plan-buttons {
    height: 150px;
  }
  .price-plan-buttons .button {
    width: 50%;
  }
}

.section-quoted-customers {
  background: #f5f5f5;
}

.section-quoted-customers .wrapper {
  margin: 0 auto;
  width: 67.65625vw;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .section-quoted-customers .wrapper {
    width: 100%;
  }
}

.section-quoted-customers .customer {
  background: #fff;
  padding: 0 1.1458333333vw 1.1458333333vw;
  margin: 0 2.34375vw 2.0833333333vw 0;
  width: 20.9895833333vw;
  height: 13.5416666667vw;
  cursor: pointer;
}

.section-quoted-customers .customer:nth-child(3n) {
  margin-right: 0;
}

.section-quoted-customers .customer .customer-normal,
.section-quoted-customers .customer .customer-hover {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

.section-quoted-customers .customer .customer-hover {
  text-align: center;
  display: none;
}

@media (max-width: 992px) {
  .section-quoted-customers .customer .customer-hover p {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    line-height: 23px;
  }
}

.section-quoted-customers .customer:hover .customer-normal {
  opacity: 0;
  display: none;
}

.section-quoted-customers .customer:hover .customer-hover {
  opacity: 1;
  display: flex;
}

@media (max-width: 992px) {
  .section-quoted-customers .customer {
    width: 100%;
    height: 250px;
    padding: 0 25px 25px;
    margin: 0 0 24px;
  }
}

.section-quoted-customers .read-more-wrapper {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
  padding-top: 1.1458333333vw;
}

@media (max-width: 992px) {
  .section-quoted-customers .read-more-wrapper {
    padding-top: 22px;
  }
}

.section-quoted-customers .customer-logotype-wrapper {
  flex-grow: 2;
  display: flex;
  align-items: center;
}

.section-quoted-customers .customer-logotype-wrapper img {
  width: 100%;
  height: auto;
}

.customers-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 16.1458333333vw;
}

@media (max-width: 992px) {
  .customers-modal {
    padding: 15px;
  }
}

.customers-modal .modal-content {
  border-radius: 0;
  border: none;
  padding: 4.6875vw 2.6041666667vw;
}

@media (max-width: 992px) {
  .customers-modal .modal-content {
    padding: 60px 35px 40px;
  }
}

.customers-modal .modal-mobile-navigation {
  display: none;
}

@media (max-width: 992px) {
  .customers-modal .modal-mobile-navigation {
    display: block;
    height: 62px;
    position: relative;
  }
}

.customers-modal .modal-left-arrow,
.customers-modal .modal-right-arrow {
  background: rgba(0, 0, 0, 0.04);
  color: #60627b;
  display: flex;
  font-size: 1.09375vw;
  width: 3.2291666667vw;
  height: 3.2291666667vw;
  border-radius: 1.6145833333vw;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .customers-modal .modal-left-arrow,
  .customers-modal .modal-right-arrow {
    width: 62px;
    height: 62px;
    border-radius: 31px;
    top: 0;
    margin-top: 0;
    font-size: 21px;
  }
}

.customers-modal .modal-left-arrow:hover,
.customers-modal .modal-right-arrow:hover {
  text-decoration: none;
}

.customers-modal .modal-left-arrow-desktop,
.customers-modal .modal-right-arrow-desktop {
  display: flex;
}

@media (max-width: 992px) {
  .customers-modal .modal-left-arrow-desktop,
  .customers-modal .modal-right-arrow-desktop {
    display: none;
  }
}

.customers-modal.hidden {
  display: none;
}

.customers-modal .modal-close {
  position: absolute;
  top: 1.5625vw;
  right: 1.7708333333vw;
  color: #168fbf;
  cursor: pointer;
  font-size: 0.8854166667vw;
}

@media (max-width: 992px) {
  .customers-modal .modal-close {
    top: 30px;
    right: 34px;
    font-size: 17px;
  }
}

.customers-modal .modal-customer {
  display: flex;
  align-items: center;
  width: 41.6666666667vw;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .customers-modal .modal-customer {
    flex-direction: column;
    width: 100%;
  }
}

.customers-modal .modal-customer img {
  margin-right: 2.1875vw;
  width: 18.5416666667vw;
  height: auto;
}

@media (max-width: 992px) {
  .customers-modal .modal-customer img {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
}

.customers-modal .modal-customer div {
  padding-bottom: 10px;
}

.customers-modal .swiper-container {
  width: 100%;
  position: relative;
}

.customers-modal .swiper-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .customers-modal .swiper-wrapper {
    height: calc(100vh - 150px);
    align-items: normal;
    padding-bottom: 10px;
  }
}

@media (max-width: 992px) {
  .customers-modal .swiper-slide {
    height: auto;
    overflow-y: scroll;
  }
}

.customers-modal .swiper-button-next:after,
.customers-modal .swiper-button-prev:after {
  display: none;
}

.section-resources {
  padding-top: 0;
}

.section-resources .resource-items {
  display: flex;
  flex-wrap: wrap;
  width: 67.7083333333vw;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .section-resources .resource-items {
    width: 100%;
  }
}

.section-resources .resource-item {
  width: 20.8333333333vw;
  margin: 0 2.6041666667vw 4.6875vw 0;
}

.section-resources .resource-item h2 {
  font-size: 0.9375vw;
}

@media (max-width: 992px) {
  .section-resources .resource-item h2 {
    font-size: 22px;
  }
}

.section-resources .resource-item img {
  width: 100%;
  height: auto;
}

.section-resources .resource-item p {
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .section-resources .resource-item p {
    font-size: 15px;
    margin-bottom: 1.25vw;
  }
}

.section-resources .resource-item a {
  font-size: 1.0416666667vw;
}

@media (max-width: 992px) {
  .section-resources .resource-item a {
    font-size: 16px;
  }
}

.section-resources .resource-item:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 992px) {
  .section-resources .resource-item {
    width: 100%;
    margin-right: 0;
  }
}

section.section-testimonials h2 {
  text-align: center;
  padding-bottom: 1.5625vw;
}

section.section-testimonials .subtitle {
  text-align: center;
  max-width: 67.7083333333vw;
  margin: 0 auto;
  margin-bottom: 4.6875vw;
}

section.section-testimonials .testimonial {
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  max-width: 47.3958333333vw;
}

section.section-testimonials .testimonial .job-title {
  display: block;
  font-size: 0.78125vw;
  opacity: 0.41;
  padding-bottom: 1.25vw;
}

section.section-testimonials .testimonial img {
  width: 7.2916666667vw;
  padding-top: 2.6041666667vw;
}

section.section-testimonials .swiper-container {
  padding-bottom: 46px;
}

section.section-testimonials .swiper-pagination {
  bottom: 0;
}

section.section-testimonials .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.1;
  -webkit-transition: opacity 0.3s ease, background 0.3s ease;
  -moz-transition: opacity 0.3s ease, background 0.3s ease;
  -ms-transition: opacity 0.3s ease, background 0.3s ease;
  -o-transition: opacity 0.3s ease, background 0.3s ease;
  transition: opacity 0.3s ease, background 0.3s ease;
}

section.section-testimonials .swiper-pagination-bullet-active {
  background: #f78e1e;
  opacity: 1;
}

section.section-testimonials .minimal-list {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 16.1458333333vw;
}

section.section-testimonials .minimal-list .testimonial {
  width: 16.6666666667%;
  border-bottom: none;
  padding: 0 1.0416666667vw;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

section.section-testimonials .minimal-list .testimonial img {
  width: 100%;
  height: auto;
}

section.section-testimonials .minimal-list .testimonial:last-child {
  border: none;
}

@media (max-width: 992px) {
  section.section-testimonials .minimal-list {
    flex-direction: column;
    width: 100%;
  }
  section.section-testimonials .minimal-list .testimonial {
    border: none;
    width: 100%;
    height: auto;
    padding: 60px 0;
  }
  section.section-testimonials .minimal-list .testimonial:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 992px) {
  section.section-testimonials {
    padding-left: 25px;
    padding-right: 25px;
  }
  section.section-testimonials h2 {
    padding-bottom: 30px;
  }
  section.section-testimonials .testimonial {
    max-width: 100%;
  }
  section.section-testimonials .testimonial .job-title {
    font-size: 15px;
    padding-bottom: 24px;
  }
  section.section-testimonials .testimonial img {
    width: 140px;
  }
  section.section-testimonials .swiper-container {
    padding-bottom: 26px;
  }
}

section.section-testimonials.grey {
  background: #f5f5f5;
}

.divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

section.section-text-image {
  position: relative;
  padding: 7.8125vw;
  overflow: hidden;
}

section.section-text-image.grey {
  background: #f5f5f5;
}

section.section-text-image.blue {
  background: #55a9c3;
}

section.section-text-image.blue h2,
section.section-text-image.blue p {
  color: #fff;
}

section.section-text-image h2 {
  padding-bottom: 2.6041666667vw;
}

section.section-text-image p {
  padding-bottom: 4.53125vw;
}

section.section-text-image .inner-wrapper {
  width: 33.8541666667vw;
}

section.section-text-image img {
  width: 71.3020833333vw;
  position: absolute;
  right: -21.71875vw;
  bottom: -6.9270833333vw;
}

@media (max-width: 992px) {
  section.section-text-image {
    padding: 69px 25px;
    text-align: center;
  }
  section.section-text-image h2 {
    padding-bottom: 32px;
  }
  section.section-text-image p {
    padding-bottom: 40px;
  }
  section.section-text-image .inner-wrapper {
    width: 100%;
    z-index: 1;
    position: relative;
  }
  section.section-text-image .inner-wrapper .button {
    margin: 0 25px;
  }
  section.section-text-image .image-wrapper {
    display: none;
  }
}

@media (max-width: 600px) {
  section.section-text-image .image-wrapper {
    display: block;
    position: relative;
    min-height: 0;
    padding-bottom: 84.1269841vw;
    width: 100vw;
    left: -25px;
  }
  section.section-text-image img {
    width: 200vw;
    max-width: 900px;
    left: -26vw;
    top: -26vw;
    position: absolute;
  }
}

.section-two-columns {
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
}

.section-two-columns.compact {
  padding-top: 0;
}

.section-two-columns.no-bottom-padding {
  padding-bottom: 0 !important;
}

.section-two-columns.divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.section-two-columns h3 {
  font-size: 1.4583333333vw;
  line-height: 2.0833333333vw;
  margin-bottom: 0.7291666667vw;
  letter-spacing: 0;
  word-break: break-word;
  margin: 0;
}

.section-two-columns h3.large {
  font-size: 2.34375vw;
  line-height: 3.6458333333vw;
}

@media (max-width: 992px) {
  .section-two-columns h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .section-two-columns h3.large {
    font-size: 28px;
    line-height: 50px;
  }
}

.section-two-columns h1 {
  text-align: left;
}

@media (max-width: 992px) {
  .section-two-columns h1 {
    text-align: center;
  }
}

.section-two-columns.grey {
  background: #f5f5f5;
}

.section-two-columns + .section-two-columns {
  padding-bottom: 6.09375vw;
}

.section-two-columns h2 {
  padding-bottom: 2.6041666667vw;
  padding-left: 7.8125vw;
  padding-right: 7.8125vw;
  text-align: center;
  font-size: 2.34375vw;
}

.section-two-columns h2.regular-small {
  font-size: 1.4583333333vw;
}

.section-two-columns h2.regular-large-center {
  text-align: center;
  padding-bottom: 4.1666666667vw;
  padding-top: 2.9166666667vw;
}

.section-two-columns h2.large {
  text-align: center;
  padding-bottom: 4.6875vw;
  padding-top: 1.9270833333vw;
  font-weight: 400;
  margin: auto;
}

.section-two-columns h2.small {
  text-align: center;
  padding-bottom: 2.6041666667vw;
  font-weight: 400;
  font-size: 1.4583333333vw;
  margin: auto;
}

.section-two-columns.with-subtitle h2 {
  padding-bottom: 1.0416666667vw;
}

.section-two-columns.with-subtitle .subtitle {
  text-align: center;
  padding-bottom: 2.6041666667vw;
}

.section-two-columns .column-wrapper {
  max-width: 67.7083333333vw;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .section-two-columns .column-wrapper {
    padding: 0px 25px;
    max-width: 100%;
  }
}

.section-two-columns .column {
  width: 50%;
}

.section-two-columns .column:first-child {
  padding-right: 1.1979166667vw;
}

.section-two-columns .column:first-child.text, .section-two-columns .column:first-child.coworker, .section-two-columns .column:first-child.quote {
  padding-right: 4.1666666667vw;
}

.section-two-columns .column:last-child {
  padding-left: 1.1979166667vw;
}

.section-two-columns .column:last-child.text, .section-two-columns .column:last-child.coworker, .section-two-columns .column:last-child.quote {
  padding-left: 4.1666666667vw;
}

.section-two-columns .column.text.column-icon {
  display: flex;
  align-items: center;
}

.section-two-columns .column.text .numbered_list li {
  padding-left: 3.125vw;
}

.section-two-columns .column.text .numbered_list li:before {
  width: 2.3958333333vw;
  height: 2.3958333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #55a9c3;
  border-radius: 6px;
  margin-bottom: 6.4583333333vw;
  color: #55a9c3;
  font-size: 1.09375vw;
  font-weight: bold;
  list-style-type: decimal;
}

.section-two-columns .column.text .title-icon {
  margin-right: 1.1979166667vw;
  width: 2.96875vw;
  height: auto;
}

.section-two-columns .column.text .text-wrapper {
  margin-top: 1.0416666667vw;
}

.section-two-columns .column.text .text-wrapper.has-icon {
  padding-left: 4.1666666667vw;
}

@media (max-width: 992px) {
  .section-two-columns .column.text .text-wrapper {
    margin-top: 20px;
    padding-left: 0;
  }
}

.section-two-columns .column .step-number {
  width: 8.3333333333vw;
  height: 4.1666666667vw;
  font-size: 2.5vw;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #55a9c3;
  border-radius: 6px;
  border: 6px solid #55a9c3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-two-columns .column .contact-form-col {
  padding: 40px;
  padding-bottom: 0;
}

@media (max-width: 992px) {
  .section-two-columns .column .contact-form-col {
    width: 100vw;
    margin-left: -45px;
  }
}

.section-two-columns .column .contact-form-col h2 {
  padding: 0;
  font-size: 24px;
}

@media (max-width: 992px) {
  .section-two-columns .column .contact-form-col h2 {
    font-size: 24px;
  }
}

.section-two-columns .column .contact-form-col.blue {
  background-color: #2e768e;
}

.section-two-columns .text-container {
  padding: 1.71875vw 13.0208333333vw;
}

.section-two-columns .text-container a {
  margin-top: 1.71875vw;
}

.section-two-columns .text-container .message {
  display: none;
}

.section-two-columns .text-container .message.fail {
  color: #f78e1e;
}

@media (max-width: 992px) {
  .section-two-columns {
    padding: 40px 15px;
    padding-bottom: 0;
  }
  .section-two-columns h2 {
    font-size: 32px;
    max-width: 100%;
    padding: 0 10px 20px;
  }
  .section-two-columns h2.regular-small {
    font-size: 22px;
  }
  .section-two-columns h2.large {
    font-size: 26px;
    line-height: 49px;
    padding-bottom: 60px;
  }
  .section-two-columns h2.small {
    font-size: 22px;
    line-height: 49px;
    padding-bottom: 40px;
  }
  .section-two-columns .column-wrapper {
    flex-direction: column;
  }
  .section-two-columns .column-wrapper.change-order-mobile {
    flex-direction: column-reverse;
  }
  .section-two-columns .column-wrapper.coworkers, .section-two-columns .column-wrapper.coworkers.change-order-mobile {
    flex-direction: row;
  }
  .section-two-columns .column {
    width: 100%;
    padding-bottom: 50px;
  }
  .section-two-columns .column:first-child {
    padding-bottom: 50px;
  }
  .section-two-columns .column.download {
    padding-bottom: 24px;
  }
  .section-two-columns .column:first-child.text, .section-two-columns .column:first-child.coworker, .section-two-columns .column:first-child.quote, .section-two-columns .column:first-child.image, .section-two-columns .column:first-child.career-contact, .section-two-columns .column:last-child.text, .section-two-columns .column:last-child.coworker, .section-two-columns .column:last-child.quote, .section-two-columns .column:last-child.image, .section-two-columns .column:last-child.career-contact {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section-two-columns .column:first-child .download, .section-two-columns .column:last-child .download {
    padding-left: 0;
    padding-right: 0;
  }
  .section-two-columns .column.text .text-wrapper {
    margin-top: 5.2083333333vw;
  }
  .section-two-columns .column.text .numbered_list li {
    padding-left: 15.125vw;
  }
  .section-two-columns .column.text .numbered_list li:before {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .section-two-columns .column.text .title-icon {
    width: 50px;
    height: auto;
    max-width: none;
  }
  .section-two-columns .text-container a {
    margin: 30px 0 40px;
  }
}

@media (max-width: 600px) {
  .section-two-columns .column-wrapper.coworkers {
    flex-direction: column;
  }
  .section-two-columns .column-wrapper.coworkers.change-order-mobile {
    flex-direction: column-reverse;
  }
}

section.section-three-columns h2 {
  padding: 0 10.9375vw;
  font-size: 2.34375vw;
  line-height: 3.6458333333vw;
  margin-bottom: 3.125vw;
  text-align: center;
}

@media (max-width: 992px) {
  section.section-three-columns h2 {
    padding: 0 25px;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 50px;
  }
}

section.section-three-columns h3 {
  font-size: 1.4583333333vw;
  line-height: 2.0833333333vw;
  margin-bottom: 0.7291666667vw;
  letter-spacing: 0;
  word-break: break-word;
  margin: 0;
}

section.section-three-columns h3.large {
  font-size: 2.34375vw;
  line-height: 3.6458333333vw;
}

@media (max-width: 992px) {
  section.section-three-columns h3 {
    font-size: 22px;
    line-height: 30px;
  }
  section.section-three-columns h3.large {
    font-size: 28px;
    line-height: 50px;
  }
}

section.section-three-columns .column-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0 16.1458333333vw;
}

section.section-three-columns .column-wrapper .column {
  width: calc(100% / 3);
  padding: 0 1.3020833333vw;
  margin-bottom: 3.125vw;
}

section.section-three-columns .column-wrapper .column h4 {
  margin-bottom: 1.0416666667vw;
}

section.section-three-columns .column-wrapper .column:nth-child(3n + 1) {
  padding-left: 0;
}

section.section-three-columns .column-wrapper .column:nth-child(3n) {
  padding-right: 0;
}

@media (max-width: 992px) {
  section.section-three-columns .column-wrapper {
    padding: 0 25px;
  }
  section.section-three-columns .column-wrapper .column {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  section.section-three-columns .column-wrapper .column h4 {
    margin-bottom: 16px;
  }
}

section.section-accordion-list {
  background-color: var(--background-color-section);
  padding-top: 0;
}

section.section-accordion-list h2 {
  padding: 0 10.9375vw;
  font-size: 2.34375vw;
  line-height: 3.6458333333vw;
  text-align: center;
}

@media (max-width: 992px) {
  section.section-accordion-list h2 {
    padding: 0 25px;
    font-size: 28px;
    line-height: 38px;
  }
}

section.section-accordion-list p.subtitle {
  padding: 0 10.9375vw;
}

@media (max-width: 992px) {
  section.section-accordion-list p.subtitle {
    padding: 0 25px;
  }
}

section.section-accordion-list .section-two-columns {
  padding: 2.6041666667vw 4.6875vw 0;
}

@media (max-width: 992px) {
  section.section-accordion-list .section-two-columns {
    padding: 38px 5px 0;
  }
}

section.section-accordion-list .section-two-columns .column .text {
  text-align: left;
}

section.section-accordion-list a {
  color: #000;
  text-decoration: underline;
  font-weight: normal;
  font-family: "Lato", sans-serif;
}

section.section-accordion-list .list-wrapper {
  padding-top: 2.6041666667vw;
}

section.section-accordion-list .list-wrapper .list-item {
  margin: 1.25vw 0;
  position: relative;
}

section.section-accordion-list .list-wrapper .list-item:before {
  content: "";
  position: absolute;
  left: 16.1458333333vw;
  top: 0;
  width: 67.7083333333vw;
  height: 100%;
  border-color: #f5f5f5;
  -webkit-transition: border 0.3s ease;
  -moz-transition: border 0.3s ease;
  -ms-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition: border 0.3s ease;
  pointer-events: none;
}

section.section-accordion-list .list-wrapper .list-item:last-child {
  padding-bottom: 0;
}

section.section-accordion-list .list-wrapper .list-item:first-child {
  padding-top: 0;
}

section.section-accordion-list .list-wrapper .list-item .step-wrapper {
  height: 6.25vw;
  background-color: var(--background-color-step);
  margin: 0 16.1458333333vw;
  padding: 0 1.5625vw;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

section.section-accordion-list .list-wrapper .list-item .step-wrapper .step-number {
  width: 2.3958333333vw;
  height: 2.3958333333vw;
  font-size: 1.09375vw;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  border-radius: 6px;
  background-color: #f78e1e;
}

section.section-accordion-list .list-wrapper .list-item .step-wrapper .step-title {
  padding-left: 1.0416666667vw;
  flex: 1;
}

section.section-accordion-list .list-wrapper .list-item .step-wrapper .expand-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f78e1e;
  background: #fff;
  width: 2.7083333333vw;
  height: 2.7083333333vw;
  border-radius: 50px;
  font-size: 1.0416666667vw;
  position: relative;
}

section.section-accordion-list .list-wrapper .list-item .step-wrapper .expand-button:before, section.section-accordion-list .list-wrapper .list-item .step-wrapper .expand-button:after {
  content: "";
  position: absolute;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background: #f78e1e;
  border-radius: 2px;
}

section.section-accordion-list .list-wrapper .list-item .step-wrapper .expand-button:before {
  width: 0.2083333333vw;
  height: 1.0416666667vw;
}

section.section-accordion-list .list-wrapper .list-item .step-wrapper .expand-button:after {
  height: 0.2083333333vw;
  width: 1.0416666667vw;
}

section.section-accordion-list .list-wrapper .list-item.expanded {
  z-index: 1;
}

section.section-accordion-list .list-wrapper .list-item.expanded:before {
  border-width: 1px;
  border-style: solid;
  background-color: var(--background-color-step);
  z-index: -1;
}

section.section-accordion-list .list-wrapper .list-item.expanded .expand-button:before {
  opacity: 0;
}

@media (max-width: 992px) {
  section.section-accordion-list .list-wrapper {
    padding-top: 73px;
  }
  section.section-accordion-list .list-wrapper li {
    line-height: 24px;
  }
  section.section-accordion-list .list-wrapper .list-item {
    margin: 8px 0;
  }
  section.section-accordion-list .list-wrapper .list-item:before {
    left: 0;
    width: 100%;
  }
  section.section-accordion-list .list-wrapper .list-item .step-wrapper {
    height: 80px;
    padding: 0 15px;
    margin: 0;
  }
  section.section-accordion-list .list-wrapper .list-item .step-wrapper .flex {
    flex: 1;
  }
  section.section-accordion-list .list-wrapper .list-item .step-wrapper .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  section.section-accordion-list .list-wrapper .list-item .step-wrapper .step-title {
    padding-left: 12px;
  }
  section.section-accordion-list .list-wrapper .list-item .step-wrapper .expand-button {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  section.section-accordion-list .list-wrapper .list-item .step-wrapper .expand-button:before {
    width: 2px;
    height: 12px;
  }
  section.section-accordion-list .list-wrapper .list-item .step-wrapper .expand-button:after {
    height: 2px;
    width: 12px;
  }
}

section.section-accordion-list .content-wrapper {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height ease;
  -moz-transition: 0.3s max-height ease;
  -ms-transition: 0.3s max-height ease;
  -o-transition: 0.3s max-height ease;
  transition: 0.3s max-height ease;
}

.section-posts-ad {
  padding: 4.6875vw 16.1458333333vw;
}

@media (max-width: 992px) {
  .section-posts-ad {
    width: 100%;
    padding: 70px 25px;
    flex-wrap: wrap;
  }
}

.section-posts-ad .top-container {
  text-align: center;
}

.section-posts-ad .top-container .buttons {
  padding-top: 2.6041666667vw;
  width: 75%;
  align-items: center;
}

.section-posts-ad .top-container .buttons a {
  width: 15.625vw;
}

@media (max-width: 992px) {
  .section-posts-ad .top-container .buttons {
    width: 100%;
    flex-direction: column;
  }
  .section-posts-ad .top-container .buttons a {
    width: 300px;
    margin-top: 15px;
  }
}

.section-posts-ad .body-container {
  padding-top: 5.2083333333vw;
}

@media (max-width: 992px) {
  .section-posts-ad .body-container {
    flex-direction: column;
  }
}

.section-posts-ad .post {
  position: relative;
  width: 15.9375vw;
}

@media (max-width: 992px) {
  .section-posts-ad .post {
    width: 100%;
  }
}

.section-posts-ad .post h2 {
  color: #000;
  text-transform: uppercase;
  font-size: 1.4583333333vw;
  line-height: 2.5520833333vw;
  letter-spacing: 3px;
  word-break: keep-all;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .section-posts-ad .post h2 {
    font-size: 26px;
    line-height: 49px;
    margin-bottom: 34px;
    text-align: center;
    word-break: normal;
  }
}

.section-posts-ad .post .post-preview-title {
  min-height: 4.6875vw;
  display: table-caption;
}

.section-posts-ad .post .post-preview-title h2 {
  font-size: 1.25vw;
}

@media (max-width: 992px) {
  .section-posts-ad .post .post-preview-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .section-posts-ad .post .post-preview-title {
    display: block;
  }
}

.section-posts-ad .post .meta {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.8333333333vw;
  padding: 0.9895833333vw 0 0.46875vw;
  display: block;
}

.section-posts-ad .post .meta-border {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.section-posts-ad .post .meta a {
  color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .section-posts-ad .post .meta {
    font-size: 15px;
    padding: 17px 0 9px;
  }
}

.section-posts-ad .post .post {
  color: #000;
  font-size: 0.9375vw;
  line-height: 1.4583333333vw;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.0416666667vw;
}

@media (max-width: 992px) {
  .section-posts-ad .post .post {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 29px;
  }
}

.section-posts-ad .post .see-all {
  color: #55a9c3;
  font-size: 1.0416666667vw;
  position: absolute;
  bottom: 0;
}

@media (max-width: 992px) {
  .section-posts-ad .post .see-all {
    font-size: 16px;
    margin-bottom: 50px;
  }
}

.posts-preview {
  width: 67.7083333333vw;
  margin: 0 auto;
  padding: 0 0 2.6041666667vw;
}

.posts-preview ~ .posts-preview {
  padding: 2.6041666667vw 0;
}

@media (max-width: 992px) {
  .posts-preview {
    width: 100%;
    padding: 70px 25px;
    flex-wrap: wrap;
  }
  .posts-preview ~ .posts-preview {
    padding: 70px 25px;
  }
}

.posts-preview-header {
  align-items: baseline;
  display: flex;
  margin-bottom: 2.0833333333vw;
}

@media (max-width: 992px) {
  .posts-preview-header {
    margin-bottom: 30px;
  }
}

.posts-preview-posts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.posts-preview h2 {
  font-size: 1.4583333333vw;
  margin-right: 2.0833333333vw;
}

@media (max-width: 992px) {
  .posts-preview h2 {
    font-size: 28px;
  }
}

.section-post {
  padding-top: 1.0416666667vw;
  padding-bottom: 1.0416666667vw;
}

@media (max-width: 992px) {
  .section-post {
    padding-left: 0;
    padding-right: 0;
  }
}

.section-post li {
  list-style: initial;
  line-height: 1.875vw;
}

.section-post ul ul {
  margin-left: 20px;
}

.section-post ul ul li {
  list-style: circle;
}

.section-post-quote {
  padding-top: 1.0416666667vw;
  padding-bottom: 1.0416666667vw;
}

.section-post-quote .quote {
  border-left: 5px solid;
  padding-left: 20px;
  border-color: #2e768e;
}

.section-text-image-link {
  max-width: 67.7083333333vw;
  margin: 0 auto;
}

.section-text-image-link img {
  width: inherit;
}

.section-text-image-link .text-link-container {
  margin-bottom: 1.5625vw;
  padding-bottom: 0.78125vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .section-text-image-link {
    padding: 80px 25px;
    margin: 0 auto;
    max-width: inherit;
  }
  .section-text-image-link .image-container {
    margin-bottom: 20px;
  }
}

.section-simple-text {
  padding-top: 1.0416666667vw;
  padding-bottom: 5.2083333333vw;
  max-width: 60.4166666667vw;
  margin: 0 auto;
}

.section-simple-text li {
  list-style: initial;
  line-height: 1.875vw;
}

.section-simple-text ul ul {
  margin-left: 20px;
}

.section-simple-text ul ul li {
  list-style: circle;
}

.section-simple-text .title {
  margin-bottom: 1.5625vw;
}

.section-simple-text .sidebar {
  margin-bottom: 1.0416666667vw;
  padding-bottom: 1.0416666667vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-flow: column;
}

.section-simple-text .sidebar .related-page {
  padding: 0.5208333333vw 0;
}

.section-pages-preview {
  width: 67.7083333333vw;
  margin: 0 auto;
  padding: 0 0 2.6041666667vw;
}

.section-pages-preview ~ .section-pages-preview {
  padding: 2.6041666667vw 0;
}

@media (max-width: 992px) {
  .section-pages-preview {
    width: 100%;
    padding: 70px 25px;
    flex-wrap: wrap;
  }
  .section-pages-preview ~ .section-pages-preview {
    padding: 70px 25px;
  }
}

.section-pages-preview-header {
  align-items: baseline;
  display: flex;
  margin-bottom: 2.0833333333vw;
}

@media (max-width: 992px) {
  .section-pages-preview-header {
    margin-bottom: 30px;
  }
}

.section-pages-preview-posts,
.section-pages-preview .posts-preview-posts {
  display: flex;
  justify-content: unset;
  flex-wrap: wrap;
}

.section-pages-preview h2 {
  font-size: 1.4583333333vw;
  margin-right: 2.0833333333vw;
}

@media (max-width: 992px) {
  .section-pages-preview h2 {
    font-size: 28px;
  }
}

.section-premium-features {
  background-color: var(--background-color);
}

.section-premium-features h1 {
  color: var(--font-color);
}

.section-premium-features .wrapper {
  display: block;
  margin: -7vw 10vw -2vw 10vw;
  grid-template-columns: 60% 40%;
  grid-template-rows: 70% 30%;
}

.section-premium-features .wrapper .grid-item-1 {
  grid-column: 1;
  grid-row: 1;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.section-premium-features .wrapper .grid-item-1 h2 {
  font-size: 2.0833333333vw;
}

.section-premium-features .wrapper .grid-item-1 h3 {
  font-size: 1.0833333333vw;
}

.section-premium-features .wrapper .grid-item-2 {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  width: fit-content;
  margin: 1vw auto 2vw auto;
}

.section-premium-features .wrapper .grid-item-3 {
  grid-column: 1 / 3;
  grid-row: 2;
  margin-top: 3vw;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

.section-premium-features .wrapper .left-table {
  margin-right: 50px;
  margin-left: 10px;
}

.section-premium-features .wrapper ul li {
  margin-bottom: 0.5208333333vw;
  padding-left: 1.3020833333vw;
  font-size: 1.0416666667vw;
  line-height: 1.8229166667vw;
  color: #000000;
  position: relative;
  font-weight: 400;
}

.section-premium-features .wrapper ul li:before {
  content: "\f3fd";
  font-family: "Ionicons";
  color: #000000;
  position: absolute;
  left: 0;
  font-size: 2.0833333333vw;
}

@media (max-width: 992px) {
  .section-premium-features .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    text-align: center;
  }
  .section-premium-features .wrapper .grid-item-1 h2 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .section-premium-features .wrapper .grid-item-1 h3 {
    font-size: 15px;
    line-height: 20px;
  }
  .section-premium-features .wrapper .button {
    width: 200px;
    font-size: 15px;
  }
  .section-premium-features .wrapper .grid-item-2 {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    text-align: initial;
  }
  .section-premium-features .wrapper .left-table {
    margin-left: 0;
    margin-right: 0;
  }
  .section-premium-features .wrapper ul li {
    height: 20px;
    font-size: 15px;
    padding-left: 20px;
  }
  .section-premium-features .wrapper ul li:before {
    font-size: 20px;
  }
}

.section-navex-contact {
  background-color: var(--background-color);
}

.section-navex-contact .flex-wrapper {
  display: flex;
  padding: 0 7.8125vw;
}

.section-navex-contact .flex-wrapper .flex-col-1 {
  width: 60%;
  padding-right: 100px;
}

.section-navex-contact .flex-wrapper p {
  color: #9AA1A4;
}

.section-navex-contact .flex-wrapper .flex-col-title h2 {
  font-size: 2.0833333333vw;
  line-height: 3.125vw;
  font-weight: 600;
}

.section-navex-contact .flex-wrapper .flex-col-text {
  font-size: 1.0416666667vw;
  padding-top: 42px;
  padding-bottom: 42px;
}

.section-navex-contact .flex-wrapper .button {
  width: 15vw;
}

.section-navex-contact .flex-wrapper .flex-col-2 {
  width: 40%;
  text-align: right;
}

.section-navex-contact .flex-wrapper img {
  max-width: 80%;
  height: auto;
}

.section-navex-contact.border-bottom {
  border-bottom: 1px solid #272727;
}

@media (max-width: 992px) {
  .section-navex-contact .flex-wrapper {
    flex-direction: column-reverse;
    justify-content: center;
    margin: 0;
    width: 100%;
  }
  .section-navex-contact .flex-wrapper .flex-col-1 {
    width: 100%;
    padding-right: 0;
  }
  .section-navex-contact .flex-wrapper .flex-col-2 {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .section-navex-contact .flex-wrapper img {
    max-width: 100%;
  }
  .section-navex-contact .flex-wrapper .content-body {
    display: flex;
    flex-direction: column-reverse;
  }
  .section-navex-contact .flex-wrapper .flex-col-title h2 {
    font: normal normal 600 22px/28px Montserrat;
    padding-top: 26px;
  }
  .section-navex-contact .flex-wrapper .button {
    width: 200px;
    font-size: 15px;
    padding: 20px;
  }
  .section-navex-contact .flex-wrapper .flex-col-text {
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    text-align: initial;
  }
  .section-navex-contact .flex-wrapper p {
    font-size: 14px;
    line-height: 22px;
  }
}

.section-add-ons {
  display: flex;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.section-add-ons p {
  color: #9AA1A4;
}

.section-add-ons .add-ons-title {
  margin-bottom: 24px;
}

.section-add-ons .left-column {
  width: 50%;
}

.section-add-ons .left-column .left-col-text {
  width: 80%;
  padding-top: 20px;
  padding-bottom: 22px;
}

.section-add-ons .right-column {
  width: 50%;
}

.section-add-ons .right-column .list-section {
  display: flex;
  padding-top: 20px;
  padding-bottom: 22px;
}

.section-add-ons .right-column .left-list {
  width: 50%;
  padding-right: 25px;
}

.section-add-ons .right-column .right-list {
  width: 50%;
  padding-right: 25px;
}

.section-add-ons ul li {
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 1.5625vw;
  font-size: 1.0416666667vw;
  line-height: 1.8229166667vw;
  color: #000000;
  position: relative;
  font-weight: 400;
}

.section-add-ons ul li:before {
  content: "\f3fd";
  font-family: "Ionicons";
  color: #000000;
  position: absolute;
  left: 0;
  font-size: 2.0833333333vw;
}

@media (max-width: 992px) {
  .section-add-ons ul li {
    padding-left: 25px;
  }
  .section-add-ons ul li:before {
    font-size: 26px;
  }
}

.section-add-ons .add-ons-button {
  background: #f78e1e 0% 0% no-repeat padding-box;
  border-radius: 8px;
  opacity: 1;
  width: 31%;
}

.section-add-ons .add-ons-button:hover {
  text-decoration: none;
  color: white;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .section-add-ons {
    width: 100%;
    flex-direction: column-reverse;
  }
  .section-add-ons p {
    font-size: 14px;
    line-height: 22px;
  }
  .section-add-ons h2 {
    font-size: 22px;
    line-height: 28px;
  }
  .section-add-ons .left-column {
    width: 100%;
    padding-top: 72px;
  }
  .section-add-ons .left-column .left-col-text {
    width: 100%;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .section-add-ons .right-column {
    width: 100%;
  }
  .section-add-ons .right-column .list-section {
    width: 100%;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .section-add-ons .right-column .list-section ul, .section-add-ons .right-column .list-section li {
    font-size: 14px;
    line-height: 22px;
  }
  .section-add-ons .right-column .list-section .left-list {
    width: 80%;
  }
  .section-add-ons .right-column .list-section .right-list {
    width: 80%;
  }
  .section-add-ons .add-ons-button {
    width: 75%;
  }
}

.section-compliant {
  background-color: var(--background-color);
  padding-bottom: 42px;
  padding-top: 42px;
}

.section-compliant h2 {
  width: 40%;
  margin: auto;
  margin-bottom: 3%;
  text-align: center;
}

.section-compliant .no-padding-top {
  padding-top: 0;
}

.section-compliant .compliant-text-container {
  font-size: 1.3020833333vw;
}

.section-compliant .flex-row {
  display: flex;
  margin: auto;
  justify-content: center;
}

.section-compliant .flex-item {
  display: flex;
  align-items: center;
  margin-left: 36px;
  margin-right: 36px;
}

.section-compliant .checkmark-icon {
  margin-right: 10px;
  width: 1.3020833333vw;
}

@media (max-width: 992px) {
  .section-compliant h2 {
    width: 100%;
    font: normal normal 600 20px/26px Montserrat;
  }
  .section-compliant .compliant-text-container {
    font-size: 15px;
  }
  .section-compliant .checkmark-icon {
    width: 20px;
  }
  .section-compliant .flex-row {
    display: block;
    margin-left: 0;
  }
  .section-compliant .flex-row .flex-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.section-single-plan-features {
  background-color: #f5f5f5;
}

.plan {
  background-color: white;
  width: 55%;
  padding-top: 72px;
  padding-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
}

.plan-title-section {
  width: 80%;
  margin: auto;
}

.plan-title {
  width: 80%;
  font: normal normal 600 48px/58px Montserrat;
  letter-spacing: 0px;
  opacity: 1;
}

.plan-subtitle {
  font: normal normal normal 24px/36px Lato;
  padding-top: 24px;
}

.plan-group {
  width: 80%;
  margin-top: 38px;
  margin-left: auto;
  margin-right: auto;
}

.plan-row {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e4e4;
}

.plan-group-title {
  text-align: left;
  font: normal normal 600 28px/42px Montserrat;
  letter-spacing: 0px;
  opacity: 1;
  padding-bottom: 18px;
}

.plan-item-head {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.plan-item-title {
  text-align: left;
  font: normal normal normal 16px/23px Lato;
  margin-right: auto;
  display: flex;
  align-items: center;
  width: 75%;
  line-height: 24px;
}

.info-icon {
  display: flex;
  align-items: center;
}

.plan-item-content {
  text-align: right;
  font: normal normal normal 16px/24px Lato;
  letter-spacing: 0px;
  color: #272727;
  opacity: 1;
  height: 3.8020833333vw;
  display: flex;
  align-items: center;
}

.plan-order-section {
  margin-top: 10%;
}

.plan-order-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  background: #f78e1e 0% 0% no-repeat padding-box;
  border-radius: 8px;
  text-align: center;
  font: normal normal 600 16px/19px Montserrat;
  letter-spacing: -0.16px;
  color: #fff;
  opacity: 1;
}

.plan-order-button:hover {
  text-decoration: none;
  color: white;
  opacity: 0.7;
}

.hidden-desktop {
  display: none;
}

@media (max-width: 992px) {
  .section-single-plan-features {
    width: 100%;
    padding-bottom: 72px;
    padding-top: 72px;
  }
  .section-single-plan-features .hidden-mobile {
    display: none;
  }
  .section-single-plan-features .hidden-desktop {
    display: block;
    margin-bottom: 20px;
  }
  .section-single-plan-features .plan {
    width: 100%;
    padding-top: 72px;
    padding-bottom: 10px;
  }
  .section-single-plan-features .plan-group {
    margin-top: 0;
    padding-top: 22px;
  }
  .section-single-plan-features .plan-row {
    flex-direction: column;
    margin-bottom: 20px;
    padding-top: 0;
  }
  .section-single-plan-features .plan-title {
    font: normal normal 600 28px/38px Montserrat;
  }
  .section-single-plan-features .plan-subtitle {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .section-single-plan-features .plan-group-title {
    text-align: left;
    font: normal normal 600 20px/26px Montserrat;
  }
  .section-single-plan-features .plan-item-head {
    align-items: center;
  }
  .section-single-plan-features .plan-item-title {
    font: normal normal normal 17px/24px Lato;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .section-single-plan-features .plan-info-text {
    font: normal normal normal 14px/22px Lato;
    color: #9AA1A4;
  }
  .section-single-plan-features .plan-item-body {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .section-single-plan-features .plan-order-button {
    width: 90%;
  }
}

.no_bottom_padding {
  padding-bottom: 0;
}

.no_top_padding {
  padding-top: 0;
}

.section-text-and-list {
  padding-top: 72px;
}

.section-text-and-list .section-content {
  width: 40%;
  margin: auto;
}

.section-text-and-list .section-content .subtitle {
  text-align: left;
  font: 600 18px/30px Montserrat;
  color: #9AA1A4;
  opacity: 1;
  padding-bottom: 24px;
}

.section-text-and-list .section-content .text-container p {
  padding-top: 42px;
  font-size: 16px;
  line-height: 24px;
}

.section-text-and-list .section-content .only-text p {
  padding-top: 0;
}

.section-text-and-list .section-content a {
  color: #000;
  text-decoration: underline;
  font-weight: normal;
  font-family: "Lato", sans-serif;
}

.section-text-and-list .section-content ul li {
  padding-left: 25px;
  font-size: 16px;
  line-height: 24px;
  padding-top: 24px;
  position: relative;
  font-weight: 400;
}

.section-text-and-list .section-content ul li:first-child {
  padding-top: 42px;
}

.section-text-and-list .section-content ul li:before {
  content: "\f3fd";
  font-family: "Ionicons";
  color: #000000;
  position: absolute;
  left: 0;
  font-size: 30px;
}

@media (max-width: 992px) {
  .section-text-and-list .section-content ul li {
    padding-left: 25px;
    font-size: 15px;
    line-height: 24px;
  }
  .section-text-and-list .section-content ul li:before {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .section-text-and-list .section-content {
    width: 100%;
  }
}

.section-navex-form {
  width: 50%;
  margin: auto;
}

.section-navex-form #navex-thank-you-message {
  display: none;
}

@media (max-width: 992px) {
  .section-navex-form {
    width: 100%;
  }
}

.section-cookie-preferences h1 {
  padding-bottom: 20px;
  text-align: center;
}

.section-cookie-preferences .cookie-preferences-container {
  width: 900px;
  margin: auto;
}

.section-partner-offer-list .section-container {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .section-partner-offer-list .section-container {
    width: 100%;
  }
}

.section-partner-offer-list .section-container h2 {
  text-align: center;
}

.section-partner-offer-list .section-container .intro-text {
  margin: auto;
  width: 50%;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 52px;
}

@media (max-width: 992px) {
  .section-partner-offer-list .section-container .intro-text {
    width: 100%;
  }
}

.section-partner-offer-list .section-container .offers-flex-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.section-partner-offer-list .section-container .offers-flex-container .offer-flex-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25vw;
  padding: 10px;
  margin: 10px;
}

.section-partner-offer-list .section-container .offers-flex-container .offer-flex-item .title {
  font-size: 1.4583333333vw;
  padding-top: 28px;
  padding-bottom: 20px;
}

@media (max-width: 992px) {
  .section-partner-offer-list .section-container .offers-flex-container .offer-flex-item .title {
    font-size: 18px;
  }
}

.section-partner-offer-list .section-container .offers-flex-container .offer-flex-item .text {
  color: #969696;
}

.section-partner-offer-list .section-container .offers-flex-container .offer-flex-item img {
  width: 15%;
  height: 15%;
}

@media (max-width: 992px) {
  .section-partner-offer-list .section-container .offers-flex-container .offer-flex-item {
    width: 100%;
  }
}

.divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.remove-top-padding {
  padding-top: 0;
}

.remove-bot-padding {
  padding-bottom: 0;
}

.remove-top-bot-padding {
  padding-bottom: 0;
  padding-top: 0;
}

.section-partner-hero {
  padding: 0;
}

.section-partner-hero .partner-hero-background-image {
  background-color: #000;
  width: 100%;
  height: 52.0833333333vw;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .section-partner-hero .partner-hero-background-image {
    height: 900px;
  }
}

.section-partner-hero .partner-hero-background-image::before {
  content: "";
  background-image: var(--background-image);
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.50;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-partner-hero .partner-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  .section-partner-hero .partner-hero-content {
    width: 90%;
  }
}

.section-partner-hero .partner-hero-content .caption {
  font-weight: 600;
  color: #f78e1e;
}

.section-partner-hero .partner-hero-content h1 {
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-partner-hero .partner-hero-content p {
  color: white;
}

.section-partner-hero .partner-hero-content button {
  margin-top: 72px;
}

.section-partner-offers {
  background-color: #f5f5f5;
}

.section-partner-offers .partner-offers-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-partner-offers .partner-offers-container .partner-offers-flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .section-partner-offers .partner-offers-container .partner-offers-flex-container {
    flex-direction: column;
  }
}

.section-partner-offers .partner-offers-container .partner-offers-flex-container .partner-offer-flex-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-partner-offers .partner-offers-container .partner-offers-flex-container .partner-offer-flex-item img {
  width: 20.8333333333vw;
  margin: 3.125vw;
}

@media (max-width: 992px) {
  .section-partner-offers .partner-offers-container .partner-offers-flex-container .partner-offer-flex-item img {
    width: 300px;
    margin: 40px;
  }
}

.section-partner-offers {
  background-color: #f5f5f5;
}

.section-partner-offers .partner-offers-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-partner-offers .partner-offers-container .swiper-container {
  position: relative;
}

.section-partner-offers .partner-offers-container .swiper-container .swiper-container > .swiper-slide__content {
  position: absolute;
  top: 0;
}

.section-partner-offers .partner-offers-container .swiper-container .swiper-slide {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .section-partner-offers .partner-offers-container .swiper-container .swiper-slide {
    height: 150px;
  }
}

.section-partner-offers .partner-offers-container .swiper-container .swiper-slide img {
  width: 20.8333333333vw;
  margin: 3.125vw;
}

@media (max-width: 992px) {
  .section-partner-offers .partner-offers-container .swiper-container .swiper-slide img {
    width: 200px;
  }
}

@media (max-width: 992px) {
  .section-partner-offers .partner-offers-container .swiper-container .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 60px;
  }
}

.section-partner-offers .partner-offers-container .swiper-container .swiper-pagination {
  bottom: 0;
}

.section-partner-offers .partner-offers-container .swiper-container .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.1;
  -webkit-transition: opacity 0.3s ease, background 0.3s ease;
  -moz-transition: opacity 0.3s ease, background 0.3s ease;
  -ms-transition: opacity 0.3s ease, background 0.3s ease;
  -o-transition: opacity 0.3s ease, background 0.3s ease;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.section-partner-offers .partner-offers-container .swiper-container .swiper-pagination-bullet-active {
  background: #f78e1e;
  opacity: 1;
}

.section-title-and-list .title-and-list-container {
  width: 50%;
  margin: auto;
}

@media (max-width: 992px) {
  .section-title-and-list .title-and-list-container {
    width: 90%;
  }
}

.section-title-and-list .title-and-list-container h2 {
  padding-bottom: 50px;
  text-align: center;
}

.section-title-and-list .title-and-list-container ul li {
  display: flex;
  align-items: center;
  padding-bottom: 28px;
}

.section-title-and-list .title-and-list-container ul li img {
  padding-right: 16px;
}

.section-title-and-list .title-and-list-container ul li:last-child {
  padding-bottom: 0;
}

.section-how-it-works-partner {
  background-color: var(--background-color);
}

.section-how-it-works-partner.no-padding-bottom {
  padding-bottom: 0;
}

.section-how-it-works-partner .how-it-works-partner-container {
  width: 90%;
  margin: auto;
}

.section-how-it-works-partner .how-it-works-partner-container h2 {
  text-align: center;
  padding-bottom: 72px;
}

@media (max-width: 992px) {
  .section-how-it-works-partner .how-it-works-partner-container h2 {
    padding-bottom: 40px;
  }
}

.section-how-it-works-partner .how-it-works-partner-container .section-text {
  text-align: center;
  width: 50%;
  margin: auto;
  margin-top: -30px;
  padding-bottom: 40px;
}

@media (max-width: 992px) {
  .section-how-it-works-partner .how-it-works-partner-container .section-text {
    width: 90%;
  }
}

.section-how-it-works-partner .how-it-works-partner-container .more-info {
  text-align: center;
  font-weight: bold;
  margin-top: 60px;
}

.section-how-it-works-partner .how-it-works-partner-container .more-info a {
  color: #000;
  text-decoration: underline;
  font-family: "Lato", sans-serif;
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container {
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .section-how-it-works-partner .how-it-works-partner-container .step-flex-container {
    flex-wrap: wrap;
  }
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item {
  display: flex;
  width: 36.4583333333vw;
  padding-left: 20px;
}

@media (max-width: 992px) {
  .section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item {
    width: 400px;
    padding-top: 20px;
  }
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .flex-left {
  display: flex;
  min-width: 3.125vw;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .flex-left {
    min-width: 40px;
  }
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .flex-left .counter {
  width: 2.3958333333vw;
  height: 2.3958333333vw;
  color: white;
  background-color: #f78e1e;
  font-family: "Montserrat", sans-serif;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.09375vw;
}

@media (max-width: 992px) {
  .section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .flex-left .counter {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .step-flex-item-content {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .step-flex-item-content .step-title {
  font-size: 1.25vw;
}

@media (max-width: 992px) {
  .section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .step-flex-item-content .step-title {
    font-size: 18px;
  }
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .step-flex-item-content .step-content {
  padding-top: 16px;
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .step-flex-item-content .step-content p {
  color: #969696;
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .step-flex-item-content .step-content.only-text {
  padding-top: 0;
}

.section-how-it-works-partner .how-it-works-partner-container .step-flex-container .step-flex-item .step-flex-item-content .step-content.only-text p {
  color: #000;
}

.section-video .section-title {
  display: flex;
  justify-content: center;
}

.section-video .video-container {
  position: relative;
  width: 40%;
  padding-top: 20px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.section-video .video-container .overlay-image-container {
  align-self: center;
  background-color: black;
  width: 100%;
  height: 100%;
}

.section-video .video-container .image-overlay {
  width: 100%;
  opacity: 0.5;
}

.section-video .video-container .overlay-play {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 1;
}

.section-video .video-container .overlay-play .overlay-text {
  padding-top: 10px;
  font-size: 24px;
  color: white;
}

.section-video .video-container .overlay-play .play-button {
  width: 5.2083333333vw;
}

.section-video .video-container .overlay-play .play-button:hover {
  transform: scaleX(1.05) scaleY(1.05);
}

@media (max-width: 992px) {
  .section-video .video-container .overlay-play .play-button {
    width: 75px;
  }
}

@media (max-width: 600px) {
  .section-video .video-container .overlay-play .play-button {
    width: 50px;
  }
}

.section-video .video-container #vimeo-player {
  display: contents;
}

.section-video .video-container #vimeo-player iframe {
  width: 40vw;
  height: 22.5vw;
}

@media (max-width: 992px) {
  .section-video .video-container #vimeo-player iframe {
    width: 70vw;
    height: 36vw;
  }
}

@media (max-width: 600px) {
  .section-video .video-container #vimeo-player iframe {
    width: 100vw;
    height: 50vw;
  }
}

@media (max-width: 992px) {
  .section-video .video-container {
    width: 70%;
  }
}

@media (max-width: 600px) {
  .section-video .video-container {
    width: 100%;
  }
}

.hide {
  display: none !important;
}

.section-system-details {
  padding-left: 7.8125vw;
  padding-right: 7.8125vw;
  padding-bottom: 0;
}

@media (max-width: 992px) {
  .section-system-details {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.flex-container {
  display: flex;
  align-items: center;
}

.flex-container .left {
  width: 50%;
}

@media (max-width: 992px) {
  .flex-container .left {
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
  }
}

.flex-container .right {
  width: 50%;
}

.flex-container .right img {
  width: 5.2083333333vw;
}

@media (max-width: 992px) {
  .flex-container .right img {
    width: auto;
  }
}

.flex-container .right .system-detail {
  padding: 1.5625vw;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .flex-container .right .system-detail {
    padding: 20px;
  }
}

.flex-container .right .system-detail .system-info {
  padding-left: 2.34375vw;
}

@media (max-width: 992px) {
  .flex-container .right .system-detail .system-info {
    padding-left: 20px;
  }
}

.flex-container .right .system-detail .system-info p {
  color: #9AA1A4;
  padding-top: 1.5625vw;
}

@media (max-width: 992px) {
  .flex-container .right .system-detail .system-info p {
    padding-top: 20px;
  }
}

@media (max-width: 992px) {
  .flex-container .right {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .flex-container {
    flex-direction: column;
  }
}

.section-gated-content-form {
  padding-left: 7.8125vw;
  padding-right: 7.8125vw;
}

.section-gated-content-form h3 {
  padding-bottom: 2.6041666667vw;
}

@media (max-width: 992px) {
  .section-gated-content-form {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.section-gated-content-form .gated-flex-container {
  display: flex;
  width: 100%;
}

.section-gated-content-form .gated-flex-container .left {
  width: 50%;
  margin-right: 2.6041666667vw;
}

@media (max-width: 992px) {
  .section-gated-content-form .gated-flex-container .left {
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
  }
}

.section-gated-content-form .gated-flex-container .right {
  width: 50%;
  margin-left: 2.6041666667vw;
}

@media (max-width: 992px) {
  .section-gated-content-form .gated-flex-container .right {
    width: 100%;
    display: block;
    margin-left: 1.0416666667vw;
    margin-right: 1.0416666667vw;
  }
}

@media (max-width: 992px) {
  .section-gated-content-form .gated-flex-container {
    flex-direction: column;
  }
}

.section-gated-content-form .mktoCheckboxList {
  width: auto !important;
  height: 40px;
  margin-bottom: 15px;
}

.section-gated-content-form .mktoCheckboxList input {
  float: left !important;
}

.section-gated-content-form .mktoCheckboxList label {
  float: right !important;
}

.section-gated-content-form .mktoButton {
  margin-top: 20px !important;
}

/* --partials-- */
.column.text .text-wrapper ul li {
  margin-bottom: 1.5625vw;
  padding-left: 1.3020833333vw;
  font-size: 1.0416666667vw;
  line-height: 1.8229166667vw;
  color: #000000;
  position: relative;
}

.column.text .text-wrapper ul li:before {
  content: "\f3fd";
  font-family: "Ionicons";
  color: #000000;
  position: absolute;
  left: 0;
  font-size: 2.0833333333vw;
}

@media (max-width: 992px) {
  .column.text .text-wrapper ul li {
    margin-bottom: 24px;
    padding-left: 25px;
    font-size: 15px;
    line-height: 24px;
  }
  .column.text .text-wrapper ul li:before {
    font-size: 26px;
  }
}

.column.text .text-wrapper ol {
  counter-reset: my-awesome-counter;
}

.column.text .text-wrapper ol li {
  margin-bottom: 1.5625vw;
  padding-left: 2.0833333333vw;
  font-size: 1.0416666667vw;
  line-height: 1.5625vw;
  color: #000000;
  position: relative;
  counter-increment: my-awesome-counter;
}

.column.text .text-wrapper ol li:before {
  content: counter(my-awesome-counter);
  font-family: "Montserrat", sans-serif;
  color: #000000;
  position: absolute;
  left: 0;
  font-size: 2.0833333333vw;
}

@media (max-width: 992px) {
  .column.text .text-wrapper ol li {
    margin-bottom: 24px;
    padding-left: 25px;
    font-size: 15px;
    line-height: 24px;
  }
  .column.text .text-wrapper ol li:before {
    font-size: 26px;
  }
}

.column.video {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.column.video .video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 0.5208333333vw;
}

.column.video .video-wrapper video,
.column.video .video-wrapper .overlay,
.column.video .video-wrapper .play {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.column.video .video-wrapper video {
  background: #000;
}

.column.video .video-wrapper .overlay {
  z-index: 1;
  background: #103a48;
  opacity: 0.3;
  cursor: pointer;
}

.column.video .video-wrapper .play {
  z-index: 2;
}

.column.video .video-wrapper .play span {
  display: block;
  font-size: 1.0416666667vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding-top: 1.6145833333vw;
  width: 80%;
  text-align: center;
}

.column.video .video-wrapper.playing .overlay,
.column.video .video-wrapper.playing .play {
  opacity: 0;
  pointer-events: none;
}

.column.video .video-wrapper.vimeo .white {
  position: absolute;
  top: 58%;
  width: 90%;
  text-align: center;
}

@media (max-width: 992px) {
  .column.video .video-wrapper.vimeo .white {
    top: 53%;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .column.video .video-wrapper .play svg {
    width: 108px;
  }
  .column.video .video-wrapper .play span {
    font-size: 20px;
    padding-top: 31px;
  }
}

.column.image .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.column.image img,
.column.coworker img {
  width: 100%;
  max-width: 100%;
  height: inherit;
}

.column.courses {
  margin-top: 1.0416666667vw;
}

.column.courses .course-container .course {
  background: #f5f5f5;
  padding: 1.5625vw;
  margin: 0 1.5625vw;
}

.column.courses .course-container .course p {
  text-align: center;
  width: 100%;
}

.column.courses .course-container .button-container {
  margin: 1.0416666667vw 1.5625vw;
}

.column.courses .course-container .button-container .button {
  width: 100%;
}

@media (max-width: 992px) {
  .column.courses .course-container {
    margin-bottom: 20px;
  }
}

.column.image {
  position: relative;
}

.column.image .button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18.6458333333vw;
}

@media (max-width: 992px) {
  .column.image .button {
    width: 60%;
    transform: translate(-50%, -50%);
  }
}

.column.quote .quote-text {
  font-style: italic;
  padding-bottom: 1.71875vw;
}

.column.quote .quote-name {
  font-weight: bold;
  color: #55a9c3;
  font-size: 1.0416666667vw;
  margin-top: 0;
}

.column.quote .quote-title {
  color: #000;
  opacity: 0.41;
  font-size: 0.78125vw;
}

@media (max-width: 992px) {
  .column.quote .quote-text {
    padding-bottom: 33px;
  }
  .column.quote .quote-name {
    font-size: 18px;
  }
  .column.quote .quote-title {
    font-size: 15px;
  }
}

.column.coworker .coworker-name {
  font-weight: bold;
  color: #55a9c3;
  font-size: 1.0416666667vw;
  margin-top: 0;
}

.column.coworker .coworker-title {
  display: block;
  color: #000;
  opacity: 0.41;
  font-size: 0.78125vw;
  padding-bottom: 1.1458333333vw;
}

.column.coworker img {
  height: 18.4375vw;
  width: 18.4375vw;
}

@media (max-width: 992px) {
  .column.coworker .coworker-name {
    font-size: 18px;
  }
  .column.coworker .coworker-title {
    font-size: 15px;
  }
  .column.coworker img {
    width: 100%;
    max-width: 314px;
    height: auto;
  }
}

.column.download .download-wrapper {
  background-color: white;
  color: #55a9c3;
  padding: 2.5vw 3.28125vw;
}

.column.download .download-wrapper span {
  display: block;
}

.column.download .download-wrapper .download-header {
  font-size: 0.9375vw;
  opacity: 0.6;
  letter-spacing: -0.02em;
  padding-bottom: 7px;
}

.column.download .download-wrapper .download-text {
  font-size: 1.3020833333vw;
}

@media (max-width: 992px) {
  .column.download .download-wrapper {
    padding: 35px;
  }
  .column.download .download-wrapper .download-header {
    font-size: 18px;
  }
  .column.download .download-wrapper .download-text {
    font-size: 22px;
  }
}

.footer-language-switcher {
  position: relative;
}

.footer-language-switcher .active-language {
  color: #fff;
  border-radius: 0.4166666667vw;
  border: 1px solid #168fbf;
  background: #000;
  height: 4.0104166667vw;
  width: 14.7916666667vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.3020833333vw;
  cursor: pointer;
  font-size: 1.0416666667vw;
}

@media (max-width: 992px) {
  .footer-language-switcher .active-language {
    width: 100%;
    height: 61px;
    font-size: 18px;
    border-radius: 8px;
    padding: 0 25px;
  }
}

.footer-language-switcher .active-language div {
  display: flex;
  align-items: center;
}

.footer-language-switcher .active-language .globe {
  margin-right: 0.625vw;
}

@media (max-width: 992px) {
  .footer-language-switcher .active-language .globe {
    margin-right: 17px;
  }
}

.footer-language-switcher .active-language img {
  width: 1.40625vw;
  height: 1.40625vw;
}

@media (max-width: 992px) {
  .footer-language-switcher .active-language img {
    width: 21px;
    height: 21px;
  }
}

.footer-language-switcher .active-language .ion-chevron-down {
  color: #168fbf;
}

.footer-language-switcher.open .languages {
  opacity: 1;
  z-index: 1;
  max-height: 31.25vw;
  padding: 0.46875vw 1.25vw;
  max-height: 600px;
}

@media (max-width: 992px) {
  .footer-language-switcher.open .languages {
    padding: 9px 24px;
  }
}

.footer-language-switcher.open .active-language {
  border-bottom: 1px solid #000;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.footer-language-switcher .languages {
  -webkit-transition: max-height 0.3s ease, transform 0.3s ease;
  -moz-transition: max-height 0.3s ease, transform 0.3s ease;
  -ms-transition: max-height 0.3s ease, transform 0.3s ease;
  -o-transition: max-height 0.3s ease, transform 0.3s ease;
  transition: max-height 0.3s ease, transform 0.3s ease;
  opacity: 0;
  background: #ECECED;
  border-bottom-right-radius: 0.4166666667vw;
  border-bottom-left-radius: 0.4166666667vw;
  max-height: 0;
  position: absolute;
  width: 14.7916666667vw;
  overflow: hidden;
}

@media (max-width: 992px) {
  .footer-language-switcher .languages {
    width: 100%;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}

.footer-language-switcher .languages li {
  text-align: left;
}

.footer-language-switcher .languages a {
  display: inline-block;
  color: #60627b;
  width: 100%;
  font-size: 0.8854166667vw;
  padding: 0.3645833333vw 0 0.4166666667vw;
  text-transform: capitalize;
}

@media (max-width: 992px) {
  .footer-language-switcher .languages a {
    font-size: 17px;
    padding: 7px 0 8px;
  }
}

.header-language-switcher-desktop {
  position: relative;
  border: 1px solid #fff;
  border-radius: 8px;
  margin-left: 0.78125vw;
}

.header-language-switcher-desktop:hover {
  border-color: #9AA1A4;
}

.header-language-switcher-desktop.open {
  background-color: #f5f5f5;
  border-color: #e4e4e4;
}

.header-language-switcher-desktop.open .languages {
  display: block;
  max-height: 60vh;
  overflow-y: scroll;
}

.header-language-switcher-desktop.open .languages li a {
  display: flex;
  align-items: center;
}

.header-language-switcher-desktop.open .languages li a img {
  padding: 1.0416666667vw;
  margin-right: 0.2604166667vw;
}

.header-language-switcher-desktop.open:hover {
  border-color: #e4e4e4;
}

.header-language-switcher-desktop .languages {
  width: 13.5416666667vw;
  padding: 1.25vw 1.6145833333vw;
  background: #fff;
  position: absolute;
  right: 0;
  top: 110%;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
  display: none;
}

.header-language-switcher-desktop .languages li {
  padding: 0.2604166667vw 0;
}

.header-language-switcher-desktop .languages li:last-child {
  margin-bottom: 0;
}

.header-language-switcher-desktop .languages a {
  display: inline-block;
  width: 100%;
  color: #000;
  font-size: 1.0416666667vw;
  text-transform: capitalize;
}

.header-language-switcher-desktop .languages a.active, .header-language-switcher-desktop .languages a:hover {
  text-decoration: none;
}

.header-language-switcher-desktop img {
  padding: 0.78125vw;
  width: 3.125vw;
  cursor: pointer;
}

.header-language-switcher-mobile {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 35px;
}

.header-language-switcher-mobile .active-language {
  display: inline-block;
  margin: 0 auto 23px;
  color: #60627b;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  line-height: 35px;
  cursor: pointer;
  font-weight: 600;
}

.header-language-switcher-mobile .languages {
  -webkit-transition: max-height 0.3s ease, transform 0.3s ease;
  -moz-transition: max-height 0.3s ease, transform 0.3s ease;
  -ms-transition: max-height 0.3s ease, transform 0.3s ease;
  -o-transition: max-height 0.3s ease, transform 0.3s ease;
  transition: max-height 0.3s ease, transform 0.3s ease;
  max-height: 0;
  overflow: hidden;
  padding: 0.2604166667vw 0;
}

.header-language-switcher-mobile .languages li {
  margin-bottom: 15px;
  padding: 1px 23px;
}

.header-language-switcher-mobile .languages li img {
  padding: 1.0416666667vw;
  margin-right: 1.0416666667vw;
}

@media (max-width: 600px) {
  .header-language-switcher-mobile .languages li img {
    margin-right: 2.0833333333vw;
  }
}

.header-language-switcher-mobile .languages li:last-child {
  margin-bottom: 0;
}

.header-language-switcher-mobile .languages a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #60627b;
  font-size: 17px;
  text-transform: capitalize;
}

.header-language-switcher-mobile .languages a.active {
  color: #f78e1e;
}

.header-language-switcher-mobile .ion-chevron-down {
  margin-left: 6px;
}

.header-language-switcher-mobile .ion-chevron-down:before {
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.header-language-switcher-mobile.open .active-language {
  color: #f78e1e;
}

.header-language-switcher-mobile.open .languages {
  max-height: 1000px;
}

.header-language-switcher-mobile.open .ion-chevron-down:before {
  transform: scaleY(-1);
}

.search-form {
  width: 100%;
  height: 3.1770833333vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 0.4166666667vw;
}

@media (max-width: 992px) {
  .search-form {
    height: 61px;
  }
}

.search-form input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.4166666667vw;
  padding: 0 3.3854166667vw 0 0.78125vw;
}

.search-form input:focus {
  outline: none;
}

@media (max-width: 992px) {
  .search-form input {
    border-radius: 8px;
    padding: 0 65px 0 15px;
  }
}

.search-suggestions {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.4166666667vw;
  background: #fff;
  position: absolute;
  width: 100%;
}

.search-suggestions a {
  display: block;
  padding: 0.5208333333vw 1.1458333333vw;
  margin: 0 0.5208333333vw;
  font-size: 0.9375vw;
  font-family: "Lato", sans-serif;
  color: #666666;
  font-weight: normal;
}

.search-suggestions a:hover {
  background: #f5f5f5;
  text-decoration: none;
}

.search-suggestions li:first-child {
  margin-top: 0.5208333333vw;
}

.search-suggestions li:last-child {
  margin-bottom: 0.5208333333vw;
}

@media (max-width: 992px) {
  .search-suggestions {
    display: none;
  }
}

.post-preview {
  width: 15.1041666667vw;
  padding-bottom: 3.6458333333vw;
  margin-right: 2.3958333333vw;
}

.post-preview:nth-child(4n) {
  margin-right: 0;
}

@media (max-width: 992px) {
  .post-preview {
    width: 100%;
    margin-bottom: 42px;
    margin-right: 0;
  }
}

.post-preview img {
  width: 15.625vw;
  height: 15.625vw;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .post-preview img {
    width: 100%;
    height: auto;
  }
}

.post-preview .meta {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.8333333333vw;
  padding: 0.9895833333vw 0 0.46875vw;
  display: block;
}

.post-preview .meta-border {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .post-preview .meta {
    font-size: 15px;
    padding: 17px 0 9px;
  }
}

.post-preview .post {
  color: #000;
  font-size: 0.9375vw;
  line-height: 1.4583333333vw;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.0416666667vw;
}

@media (max-width: 992px) {
  .post-preview .post {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 29px;
  }
}

.post-preview .default-image img {
  object-fit: contain;
}

.pagination {
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  border-radius: 8px;
  width: 2.6041666667vw;
  height: 2.6041666667vw;
  background: #f5f5f5;
  font-size: 1.0416666667vw;
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .pagination .page-numbers {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

.pagination .page-numbers.current {
  background: #2e768e;
  color: #fff;
}

.pagination .page-numbers.dots, .pagination .page-numbers.prev, .pagination .page-numbers.next {
  background: transparent;
  color: #2e768e;
}

.pagination .page-numbers.prev, .pagination .page-numbers.next {
  background: transparent;
  width: auto;
  color: #2e768e;
}

@media (max-width: 992px) {
  .pagination .page-numbers.prev span, .pagination .page-numbers.next span {
    display: none;
  }
}

.pagination .page-numbers.next {
  margin-left: 0.8333333333vw;
}

.pagination .page-numbers.next:after {
  content: "\f125";
  font-family: "Ionicons";
  margin-left: 0.3645833333vw;
}

@media (max-width: 992px) {
  .pagination .page-numbers.next {
    margin-left: 16px;
  }
}

.pagination .page-numbers.prev {
  margin-right: 0.8333333333vw;
}

.pagination .page-numbers.prev:before {
  content: "\f124";
  font-family: "Ionicons";
  margin-right: 0.3645833333vw;
}

@media (max-width: 992px) {
  .pagination .page-numbers.prev {
    margin-right: 16px;
  }
}

/* --components-- */
.cookie-notice {
  position: fixed;
  bottom: 0;
  background-color: #f5f5f5;
  width: 100%;
  padding: 2.7083333333vw 0;
  display: none;
}

@media (max-width: 992px) {
  .cookie-notice {
    padding: 40px 0;
  }
}

.cookie-notice.show {
  display: block;
}

.cookie-notice .cookie-container {
  width: 67.7083333333vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .cookie-notice .cookie-container {
    width: 100%;
    padding: 0 40px;
    flex-direction: column;
    text-align: center;
  }
}

.cookie-notice .cookie-wrap {
  width: 49.4791666667vw;
}

@media (max-width: 992px) {
  .cookie-notice .cookie-wrap {
    width: 100%;
    margin-bottom: 40px;
  }
}

.cookie-notice h1 {
  font-size: 1.4583333333vw;
  line-height: 3.6458333333vw;
}

@media (max-width: 992px) {
  .cookie-notice h1 {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

.cookie-notice p {
  font-size: 0.9375vw;
}

@media (max-width: 992px) {
  .cookie-notice p {
    font-size: 16px;
  }
}

.cookie-notice p a {
  font-weight: inherit;
}

footer {
  background-color: #121317;
  flex-shrink: 0;
}

footer .footer-logotype-wrapper {
  margin-top: 2.0833333333vw;
  padding: 0 6.9270833333vw;
}

footer .footer-logotype-wrapper .footer-logotype {
  margin: 1.5625vw 0;
}

footer .footer-logotype-wrapper .footer-logotype .logotype {
  width: 12.34375vw;
}

@media (max-width: 992px) {
  footer .footer-logotype-wrapper {
    justify-content: center;
  }
}

footer .footer-menu {
  padding: 1.5625vw 6.9270833333vw 6.9270833333vw 6.9270833333vw;
}

footer .nav-menu-header {
  display: block;
  padding-bottom: 1.5625vw;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

footer .footer-nav.two-col {
  display: flex;
}

footer .footer-nav ul:not(:last-child) {
  margin-right: 2.7083333333vw;
}

footer .footer-nav li {
  padding-bottom: 1.0416666667vw;
  font-size: 1.0416666667vw;
}

footer .footer-nav li .button {
  margin-bottom: 20px;
}

footer .footer-nav li a {
  color: #fff;
  font-size: initial;
}

footer .footer-nav li a .mail {
  width: 15px;
  margin-right: 9px;
}

footer .newsletter-subscribe {
  padding: 1.5625vw 6.9270833333vw 2.6041666667vw 6.9270833333vw;
}

footer .newsletter-subscribe h2 {
  color: #fff;
}

footer .newsletter-subscribe form.mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap .mktoField {
  width: 300px !important;
  padding: 0 20px !important;
}

footer .newsletter-subscribe .newsletter-thank-you-msg {
  margin-top: 20px;
}

footer .newsletter-subscribe .mktoForm {
  width: auto !important;
  max-width: 1000px !important;
  margin: 0;
}

footer .newsletter-subscribe .mktoOffset {
  display: none;
}

footer .newsletter-subscribe .mktoFormRow {
  display: inline-block;
}

footer .newsletter-subscribe .mktoFormRow input {
  height: 55px;
}

footer .newsletter-subscribe .mktoFormRow select {
  height: 55px;
}

footer .newsletter-subscribe .mktoFormRow:first-of-type {
  margin-right: 20px;
}

footer .newsletter-subscribe .mktoButtonRow {
  display: inline-block;
  width: auto !important;
  position: relative;
  margin-left: 20px !important;
  vertical-align: top;
}

footer .newsletter-subscribe .mktoButtonRow button {
  height: 55px;
  margin-top: 20px;
}

footer .contact-wrapper {
  padding: 1.71875vw 6.9270833333vw;
  border-bottom: 1px solid #272727;
  border-top: 1px solid #272727;
}

footer .social-media-link {
  color: #fff;
}

footer .social-media-link i {
  position: absolute;
  font-size: 1.6666666667vw;
}

footer .footer-bottom-wrapper {
  padding: 2.0833333333vw 6.9270833333vw;
}

footer .footer-bottom-wrapper .policy-links {
  display: inline-block;
  padding-left: 2.2916666667vw;
}

footer .footer-bottom-wrapper .policy-links a {
  font-family: "Lato", sans-serif;
  font-size: 15px;
}

footer .footer-bottom-wrapper .policy-link-divider {
  margin: 0 5px;
}

footer .footer-icons-wrapper {
  padding: 2.0833333333vw 0;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

footer .footer-icons-wrapper .footer-icons img {
  max-height: 4.1666666667vw;
  margin-right: 2.6041666667vw;
  opacity: 0.8;
}

footer .footer-icons-wrapper p {
  color: white;
}

@media (max-width: 992px) {
  footer {
    text-align: center;
  }
  footer .logotype {
    min-width: 237px;
    padding-bottom: 10px;
    padding-top: 24px;
  }
  footer .footer-logotype-wrapper, footer .footer-menu, footer .footer-icons-wrapper {
    padding: 0 50px;
  }
  footer .flex-space-between {
    display: block;
  }
  footer .footer-menu {
    padding-bottom: 24px;
    display: block;
  }
  footer .footer-menu > div {
    display: block;
  }
  footer .nav-menu-header {
    padding-bottom: 34px;
    font-size: 15px;
  }
  footer .footer-nav {
    padding-bottom: 64px;
  }
  footer .footer-nav.two-col {
    display: block;
  }
  footer .footer-nav ul:not(:last-child) {
    margin-right: 0;
  }
  footer .footer-nav li {
    padding-bottom: 25px;
  }
  footer .newsletter-subscribe {
    padding: 1.5625vw 6.9270833333vw 5.2083333333vw 6.9270833333vw;
  }
  footer .newsletter-subscribe h2 {
    color: white;
  }
  footer .newsletter-subscribe .mktoForm {
    width: auto !important;
    max-width: 1000px !important;
    margin: 0;
    text-align: center;
  }
  footer .newsletter-subscribe .mktoOffset {
    display: none;
  }
  footer .newsletter-subscribe form.mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap .mktoField {
    width: 100% !important;
  }
  footer .newsletter-subscribe .mktoFormRow {
    text-align: center;
    display: block;
    width: 100% !important;
    padding-left: 7.8125vw;
    padding-right: 7.8125vw;
  }
  footer .newsletter-subscribe .mktoFormRow input {
    height: 55px;
    width: auto !important;
  }
  footer .newsletter-subscribe .mktoFormRow:first-of-type {
    margin-right: 20px;
  }
  footer .newsletter-subscribe .mktoButtonRow {
    display: block;
    position: relative;
    margin-left: 0 !important;
    padding-left: 7.8125vw;
    padding-right: 7.8125vw;
  }
  footer .newsletter-subscribe .mktoButtonRow button {
    height: 55px;
    margin-top: 20px;
  }
  footer .contact-wrapper {
    padding: 42px 0;
  }
  footer .social-media-links {
    justify-content: center;
    padding-top: 27px;
  }
  footer .social-media-link {
    width: 53px;
    height: 53px;
  }
  footer .social-media-link i {
    font-size: 25px;
  }
  footer .footer-bottom-wrapper {
    padding: 38px 0;
  }
  footer .footer-bottom-wrapper .copyright {
    font-size: 14px;
    padding-bottom: 52px;
  }
  footer .footer-bottom-wrapper > div {
    display: flex;
    flex-direction: column-reverse;
  }
  footer .footer-bottom-wrapper .policy-links {
    padding-left: 0;
    padding-bottom: 20px;
  }
  footer .footer-bottom-wrapper .policy-links a {
    font-size: 14px;
  }
  footer .footer-icons {
    display: flex;
    flex-flow: column;
  }
  footer .footer-icons img {
    min-height: 52px;
    margin-bottom: 35px;
  }
  footer .footer-icons img:first-child {
    margin-top: 25px;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes growContainer {
  0% {
    height: 3.1770833333vw;
    transform: translate(100%);
    opacity: 0;
  }
  75% {
    height: 3.1770833333vw;
    transform: translate(50%);
    opacity: 1;
  }
  100% {
    height: 15.625vw;
  }
}

@-moz-keyframes growContainer {
  0% {
    height: 3.1770833333vw;
    transform: translate(100%);
    opacity: 0;
  }
  75% {
    height: 3.1770833333vw;
    transform: translate(50%);
    opacity: 1;
  }
  100% {
    height: 15.625vw;
  }
}

@-o-keyframes growContainer {
  0% {
    height: 3.1770833333vw;
    transform: translate(100%);
    opacity: 0;
  }
  75% {
    height: 3.1770833333vw;
    transform: translate(50%);
    opacity: 1;
  }
  100% {
    height: 15.625vw;
  }
}

@keyframes growContainer {
  0% {
    height: 3.1770833333vw;
    transform: translate(100%);
    opacity: 0;
  }
  75% {
    height: 3.1770833333vw;
    transform: translate(50%);
    opacity: 1;
  }
  100% {
    height: 15.625vw;
  }
}

header {
  padding: 1.5625vw 0;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 100;
  border: 1px solid #e4e4e4;
}

header .hidden {
  animation: 0.1s ease-in fadeOut;
  opacity: 1;
  visibility: hidden;
}

header .header-wrapper {
  width: 100%;
  padding: 0 1.0416666667vw;
  position: relative;
}

header .header-wrapper.desktop {
  display: flex;
}

header .header-wrapper.mobile {
  display: none;
}

header .logo img {
  padding-left: 5.2083333333vw;
  width: 14.3229166667vw;
}

header .header-menu li {
  padding: 1.0416666667vw 1.0416666667vw;
}

header .header-menu li:first-child {
  padding-left: 0;
}

header .header-menu li:last-child {
  padding-right: 0;
}

header .header-menu li.header-dropdown {
  border-radius: 8px;
}

header .header-menu li a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 1.0416666667vw;
  cursor: pointer;
}

header .header-menu li a.active {
  color: #f78e1e;
}

header .header-menu .header-dropdown {
  position: relative;
  cursor: pointer;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -ms-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

header .header-menu .header-dropdown .header-dropdown-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1px;
  font-size: 1.0416666667vw;
  margin-right: 0.5208333333vw;
}

header .header-menu .header-dropdown img {
  height: 1.0416666667vw;
  width: 1.0416666667vw;
  transition: transform 200ms ease;
}

header .header-menu .header-dropdown .ion-chevron-down {
  font-size: 1.0416666667vw;
}

header .header-menu .header-dropdown .header-dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 14.4270833333vw;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 1.9791666667vw;
  display: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: opacity 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: opacity 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: opacity 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
  -o-transition: opacity 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
  transition: opacity 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
}

header .header-menu .header-dropdown .header-dropdown-menu li {
  padding: 0.78125vw 0;
}

header .header-menu .header-dropdown:hover {
  border-color: #9AA1A4;
}

header .header-menu .header-dropdown.open {
  background-color: #f5f5f5;
  border-color: #e4e4e4;
}

header .header-menu .header-dropdown.open .header-dropdown-menu {
  display: block;
}

header .header-menu .header-dropdown.open:hover {
  border-color: #e4e4e4;
}

header .header-menu .header-dropdown.open img {
  transform: rotate(180deg);
}

@media (max-width: 992px) {
  header .header-menu .header-dropdown.open {
    background-color: #fff;
  }
}

header .search {
  display: flex;
  align-items: center;
  position: relative;
}

header .search:hover {
  border-color: #9AA1A4;
}

header .search + .search-form-wrapper {
  position: absolute;
  visibility: hidden;
}

header .search .search-expand-button {
  position: relative;
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.78125vw;
  cursor: pointer;
  padding: 0.78125vw;
  width: 3.125vw;
}

header .search .search-expand-button:hover {
  border-color: #9AA1A4;
}

header .search .search-expand-button img {
  width: 3.125vw;
}

header .search.expanded .search-expand-button {
  visibility: hidden;
}

header .search.expanded + .search-form-wrapper {
  animation: 0.3s ease-in growContainer;
  visibility: visible;
  position: absolute;
  right: 50%;
  transform: translate(50%);
  width: 50%;
  opacity: 1;
  height: 15.625vw;
  top: 0;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 992px) {
  header {
    padding-top: 23px;
  }
  header .header-wrapper {
    padding: 0 25px;
  }
  header .header-wrapper.desktop {
    display: none;
  }
  header .header-wrapper.mobile {
    display: block;
  }
  header .logo img {
    width: 137px;
  }
  header .header-menu {
    display: none;
  }
  header .header-menu .header-dropdown {
    border: none;
    border-radius: 0px;
  }
  header .header-menu .header-dropdown .header-dropdown-label {
    display: block;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    font-size: 20px;
  }
  header .header-menu .header-dropdown .header-dropdown-label-wrapper {
    display: flex;
  }
  header .header-menu .header-dropdown .header-dropdown-label-wrapper .ion-chevron-down {
    margin-left: 6px;
    font-size: 20px;
  }
  header .header-menu .header-dropdown .header-dropdown-label-wrapper li {
    border: none;
  }
  header .header-menu .header-dropdown .header-dropdown-menu {
    position: relative;
    top: 0;
    min-width: 100%;
    z-index: 1;
    opacity: 0;
    max-height: 0;
    padding: 0;
    border: none;
    -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
    -moz-transition: max-height 0.3s ease, opacity 0.3s ease;
    -ms-transition: max-height 0.3s ease, opacity 0.3s ease;
    -o-transition: max-height 0.3s ease, opacity 0.3s ease;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
  header .header-menu .header-dropdown .header-dropdown-menu li {
    padding: 0;
    border: 0;
  }
  header .header-menu .header-dropdown .header-dropdown-menu li a {
    font-size: 17px;
  }
  header .header-menu .header-dropdown:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: #e4e4e4;
  }
  header .header-menu .header-dropdown:hover .header-dropdown-menu {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    opacity: 0;
  }
  header .header-menu .header-dropdown:hover.open .header-dropdown-label {
    color: #f78e1e;
  }
  header .header-menu .header-dropdown:hover.open .header-dropdown-menu {
    opacity: 1;
  }
  header .header-menu .header-dropdown.open .header-dropdown-menu {
    max-height: 300px;
    opacity: 1;
  }
  header .top-menu {
    height: 70px;
  }
  header .hamburger {
    position: relative;
    width: 25px;
    height: 22px;
    display: flex;
    align-items: center;
  }
  header .hamburger .bar {
    width: 25px;
    height: 3px;
    -webkit-transition: transform 150ms ease, background-color 150ms ease;
    -moz-transition: transform 150ms ease, background-color 150ms ease;
    -ms-transition: transform 150ms ease, background-color 150ms ease;
    -o-transition: transform 150ms ease, background-color 150ms ease;
    transition: transform 150ms ease, background-color 150ms ease;
    background-color: #000;
  }
  header .hamburger .bar:before, header .hamburger .bar:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    -webkit-transition: transform 150ms ease, top 150ms ease;
    -moz-transition: transform 150ms ease, top 150ms ease;
    -ms-transition: transform 150ms ease, top 150ms ease;
    -o-transition: transform 150ms ease, top 150ms ease;
    transition: transform 150ms ease, top 150ms ease;
    background-color: #000;
  }
  header .hamburger .bar:before {
    top: 0;
  }
  header .hamburger .bar:after {
    bottom: 0;
  }
  header .hamburger.active .bar {
    background-color: transparent;
  }
  header .hamburger.active .bar:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
  }
  header .hamburger.active .bar:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
  }
  header .mobile-menu {
    position: absolute;
    left: 0;
    top: calc(70px + 7px);
    width: 100%;
    height: 88vh;
    min-height: -webkit-fill-available;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 25px;
    padding-bottom: calc(70px + 23px);
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: opacity 300ms ease, visibility 0s ease 300ms;
    -moz-transition: opacity 300ms ease, visibility 0s ease 300ms;
    -ms-transition: opacity 300ms ease, visibility 0s ease 300ms;
    -o-transition: opacity 300ms ease, visibility 0s ease 300ms;
    transition: opacity 300ms ease, visibility 0s ease 300ms;
  }
  header .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  header .mobile-menu .header-menu {
    display: block;
    padding: 0;
  }
  header .mobile-menu .header-menu li {
    padding: 15px 0;
    font-size: 20px;
    line-height: 24px;
  }
  header .mobile-menu .header-menu li a {
    font-size: 20px;
  }
  header .mobile-menu .header-menu li:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
  header .mobile-menu .header-menu li:not(:last-child) {
    padding-right: 15px;
  }
  header .mobile-menu .header-menu .header-dropdown {
    margin: 0;
  }
  header .mobile-menu .header-menu .header-dropdown li {
    padding-left: 10px;
    border: none;
  }
  header .mobile-menu .order-wrapper {
    padding: 42.5px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
  header .mobile-menu .order-wrapper .button {
    width: 100%;
  }
  header .search-wrapper {
    height: 100px;
    margin-bottom: 50px;
    padding: 25px 25px;
  }
}

.hover-button {
  padding: 1.0416666667vw 1.7vw !important;
  border-radius: 8px !important;
  width: 10.4166666667vw;
}

.hover-button:hover {
  opacity: 0.7;
  transition: ease-in-out 0.3s;
  transform: scaleX(1.05) scaleY(1.05);
}

.button-flex-container {
  display: flex;
  align-items: flex-end;
}

/* This is a customization of the Tooltipster Shadow theme
 * https://iamceege.github.io/tooltipster/#styling
 */
.tooltipster-sidetip.tooltipster-shadow-customized {
  font-size: 0.6770833333vw;
}

@media (max-width: 992px) {
  .tooltipster-sidetip.tooltipster-shadow-customized {
    font-size: 13px;
  }
}

.tooltipster-sidetip.tooltipster-shadow-customized .tooltipster-box {
  box-shadow: 0px 3px 6px #00000029;
}

.quick-form-container {
  position: fixed;
  bottom: 0;
  right: 20px;
  z-index: 150;
  width: 400px;
  transition: transform 1s ease-out;
}

@media (max-width: 600px) {
  .quick-form-container {
    right: 0;
    width: 100%;
  }
}

.quick-form-container .container-header {
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
  margin-bottom: -30px;
}

.quick-form-container .container-header img {
  width: 75px;
  cursor: pointer;
  margin-left: 20px;
}

.quick-form-container .quick-form-body {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #2e768e;
  padding: 30px 30px 1px 30px;
  position: sticky;
}

.quick-form-container .quick-form-body .close-form-button {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.quick-form-container .quick-form-body .close-form-button p {
  transform: rotate(45deg);
  font-size: 15px;
  color: #fff;
}

.quick-form-container .quick-form-body .form-text {
  color: white;
  font-size: 15px;
}

.quick-form-container .quick-form-body textarea {
  min-height: 100px !important;
}

.quick-form-container .quick-form-body form .mktoFormRow .mktoFormCol .mktoFieldWrap .mktoField {
  margin-top: 10px;
}

.quick-form-container.menu-closed {
  transform: translateY(85%);
}

.quick-form-container .g-recaptcha {
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.closed-style {
  display: none;
}

.text-bubble {
  align-self: center;
  font-size: 15px;
  width: 55%;
  background: #fff;
  border-radius: 7px;
  margin-bottom: -15px;
  text-align: center;
  color: #000;
  cursor: pointer;
  padding: 7px;
  position: relative;
  z-index: 1;
}

.text-bubble::after {
  content: "";
  display: block;
  position: absolute;
  right: -14px;
  top: 5px;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #fff;
}

.contact-popupoverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-popupoverlay .contact-popup {
  background-color: white;
  width: 900px;
  height: auto;
  padding: 5px 25px 20px;
  text-align: center;
  border-radius: 5px;
}

.contact-popupoverlay .contact-popup .closePopup {
  display: block;
  text-align: right;
  font-size: 40px;
  cursor: pointer;
}

.contact-popupoverlay .contact-popup h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-popupoverlay .contact-popup p {
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-popupoverlay .contact-popup .content {
  text-align: left;
}

.contact-popupoverlay .contact-popup .content h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.contact-popupoverlay .contact-popup .content p {
  font-size: 16px;
  margin-bottom: 25px;
}

.contact-popupoverlay .contact-popup .content a[href^="mailto:"] {
  text-decoration: underline;
}

@media only screen and (max-width: 700px) {
  .contact-popupoverlay .contact-popup {
    width: 90%;
    padding: 0px 15px 0px;
  }
  .contact-popupoverlay .contact-popup p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* --pages -- */
section.search-results {
  width: 67.7083333333vw;
  padding-top: 5.2604166667vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  section.search-results {
    width: 100%;
  }
}

section.search-results .search-suggestions {
  display: none;
}

section.search-results .search-form {
  margin-bottom: 6.0416666667vw;
}

section.search-results .list {
  width: 50.2604166667vw;
}

@media (max-width: 992px) {
  section.search-results .list {
    width: 100%;
  }
}

section.search-results .sidebar {
  width: 15.3645833333vw;
}

section.search-results .sidebar p {
  font-size: 0.9375vw;
}

@media (max-width: 992px) {
  section.search-results .sidebar {
    display: none;
  }
}

section.search-results .search-result {
  padding-bottom: 1.3020833333vw;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 1.8229166667vw;
  clear: both;
}

section.search-results .search-result:after {
  clear: both;
  content: "";
  display: block;
}

@media (max-width: 992px) {
  section.search-results .search-result {
    padding-bottom: 20px;
    margin-bottom: 35px;
  }
}

section.search-results .search-result img {
  float: left;
  margin: 0 1.0416666667vw 0.78125vw 0;
  max-width: 14.5833333333vw;
  height: auto;
}

@media (max-width: 992px) {
  section.search-results .search-result img {
    margin: 0 0 15px 0;
    float: none;
    max-width: 100%;
  }
}

section.search-results h2 {
  font-size: 1.4583333333vw;
  line-height: 2.0833333333vw;
  margin-bottom: 0.78125vw;
}

@media (max-width: 992px) {
  section.search-results h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

section.search-results h2 a {
  color: #000;
}

section.search-results .meta {
  font-size: 0.78125vw;
  display: flex;
  margin-bottom: 1.0416666667vw;
}

@media (max-width: 992px) {
  section.search-results .meta {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

section.search-results .meta div:nth-child(2) {
  padding-left: 0.2604166667vw;
  border-left: 1px solid #000;
}

@media (max-width: 992px) {
  section.search-results .meta div:nth-child(2) {
    padding-left: 5px;
  }
}

section.search-results .date {
  color: #969696;
  margin-right: 0.2604166667vw;
}

@media (max-width: 992px) {
  section.search-results .date {
    margin-right: 5px;
  }
}

section.search-results .post-categories a {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
}

section.search-results p {
  font-size: 0.9375vw;
}

@media (max-width: 992px) {
  section.search-results p {
    font-size: 18px;
  }
}

section.search-results .pagination {
  display: flex;
  justify-content: center;
}

section.search-results .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  border-radius: 8px;
  width: 2.6041666667vw;
  height: 2.6041666667vw;
  background: #f5f5f5;
  font-size: 1.0416666667vw;
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  section.search-results .pagination .page-numbers {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

section.search-results .pagination .page-numbers.current {
  background: #2e768e;
  color: #fff;
}

section.search-results .pagination .page-numbers.dots, section.search-results .pagination .page-numbers.prev, section.search-results .pagination .page-numbers.next {
  background: transparent;
  color: #2e768e;
}

section.search-results .pagination .page-numbers.prev, section.search-results .pagination .page-numbers.next {
  background: transparent;
  width: auto;
  color: #2e768e;
}

@media (max-width: 992px) {
  section.search-results .pagination .page-numbers.prev span, section.search-results .pagination .page-numbers.next span {
    display: none;
  }
}

section.search-results .pagination .page-numbers.next {
  margin-left: 0.8333333333vw;
}

section.search-results .pagination .page-numbers.next:after {
  content: "\f125";
  font-family: "Ionicons";
  margin-left: 0.3645833333vw;
}

@media (max-width: 992px) {
  section.search-results .pagination .page-numbers.next {
    margin-left: 16px;
  }
}

section.search-results .pagination .page-numbers.prev {
  margin-right: 0.8333333333vw;
}

section.search-results .pagination .page-numbers.prev:before {
  content: "\f124";
  font-family: "Ionicons";
  margin-right: 0.3645833333vw;
}

@media (max-width: 992px) {
  section.search-results .pagination .page-numbers.prev {
    margin-right: 16px;
  }
}

.category-archive {
  margin: 0 auto;
  width: 67.7083333333vw;
}

@media (max-width: 992px) {
  .category-archive {
    width: 100%;
    padding: 0 25px;
  }
}

.category-archive h1 {
  font-size: 3.125vw;
  text-align: center;
  margin-bottom: 5.2083333333vw;
}

@media (max-width: 992px) {
  .category-archive h1 {
    font-size: 42px;
    line-height: 1;
  }
}

.category-archive .list {
  display: flex;
  flex-wrap: wrap;
}

section.post {
  width: 67.7083333333vw;
  padding-top: 5.2604166667vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  section.post {
    width: 100%;
    flex-direction: column;
  }
}

section.post .content {
  width: 50.2604166667vw;
}

@media (max-width: 992px) {
  section.post .content {
    width: 100%;
  }
}

section.post .content h1 {
  margin-bottom: 1.3020833333vw;
  font-size: 2.34375vw;
  line-height: 2.6041666667vw;
}

@media (max-width: 992px) {
  section.post .content h1 {
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 1.3em;
  }
}

section.post .content h2 {
  margin-bottom: 0.78125vw;
  font-size: 1.5625vw;
  padding-top: 1.0416666667vw;
}

@media (max-width: 992px) {
  section.post .content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 1.5em;
  }
}

section.post .content h3 {
  font-size: 1.8229166667vw;
  margin-bottom: 0.625vw;
  line-height: 2.0833333333vw;
}

@media (max-width: 992px) {
  section.post .content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.5em;
  }
}

section.post .content h4 {
  margin-bottom: 0.4166666667vw;
}

@media (max-width: 992px) {
  section.post .content h4 {
    margin-bottom: 8px;
  }
}

section.post .content p {
  margin-bottom: 1.0416666667vw;
}

@media (max-width: 992px) {
  section.post .content p {
    margin-bottom: 20px;
  }
}

section.post .content ul {
  margin-top: 1.0416666667vw;
}

section.post .content ul li {
  margin-bottom: 1.5625vw;
  padding-left: 1.0416666667vw;
  font-size: 1.0416666667vw;
  line-height: 1.8229166667vw;
  color: #000000;
  position: relative;
  list-style: none;
}

section.post .content ul li:before {
  content: "\f3fd";
  font-family: "Ionicons";
  color: #000000;
  position: absolute;
  left: 0;
  font-size: 1.5625vw;
}

@media (max-width: 992px) {
  section.post .content ul li {
    margin-bottom: 24px;
    padding-left: 25px;
    font-size: 15px;
    line-height: 24px;
  }
  section.post .content ul li:before {
    font-size: 26px;
  }
}

section.post .content ol {
  counter-reset: my-awesome-counter;
  margin-top: 1.0416666667vw;
}

section.post .content ol li {
  margin-bottom: 1.5625vw;
  padding-left: 1.0416666667vw;
  font-size: 1.0416666667vw;
  line-height: 1.5625vw;
  color: #000000;
  position: relative;
  list-style: none;
  counter-increment: my-awesome-counter;
}

section.post .content ol li:before {
  content: counter(my-awesome-counter);
  font-family: "Montserrat", sans-serif;
  color: #000000;
  position: absolute;
  left: 0;
  font-size: 1.0416666667vw;
  line-height: 1.8229166667vw;
}

@media (max-width: 992px) {
  section.post .content ol li {
    margin-bottom: 24px;
    padding-left: 25px;
    font-size: 15px;
    line-height: 24px;
  }
  section.post .content ol li:before {
    font-size: 15px;
    top: 9px;
  }
}

section.post .content em {
  font-style: italic;
}

section.post .content .meta ul,
section.post .content .meta ol {
  margin-top: 0;
}

section.post .content .meta ul li,
section.post .content .meta ol li {
  list-style: none;
  margin-bottom: 0;
  line-height: initial;
  padding: 0;
  font-size: inherit;
}

section.post .content .meta ul li::before,
section.post .content .meta ol li::before {
  content: none;
}

section.post .content iframe {
  width: 100%;
  height: 28.6458333333vw;
}

section.post .content blockquote {
  padding: 2.0833333333vw;
}

@media (max-width: 992px) {
  section.post .content blockquote {
    padding: 40px;
  }
}

section.post .content blockquote p,
section.post .content blockquote cite {
  display: block;
}

section.post .content blockquote cite {
  font-size: 1.0416666667vw;
  line-height: 1.5625vw;
}

@media (max-width: 992px) {
  section.post .content blockquote cite {
    font-size: 16px;
    line-height: 20px;
  }
}

section.post .content blockquote p {
  font-size: 1.8229166667vw;
  line-height: 2.0833333333vw;
}

@media (max-width: 992px) {
  section.post .content blockquote p {
    font-size: 24px;
    line-height: 32px;
  }
}

section.post .content .wp-block-image img {
  height: auto;
}

section.post .content .wp-block-image figcaption {
  font-size: 1.0416666667vw;
}

@media (max-width: 992px) {
  section.post .content .wp-block-image figcaption {
    font-size: 20px;
  }
}

section.post .sidebar {
  width: 15.3645833333vw;
}

section.post .sidebar img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  section.post .sidebar {
    width: 100%;
  }
}

section.post .sidebar .author-title,
section.post .sidebar .author-bio {
  font-weight: 600;
  font-size: 0.9375vw;
  line-height: 1.5625vw;
}

@media (max-width: 992px) {
  section.post .sidebar .author-title,
  section.post .sidebar .author-bio {
    font-size: 16px;
    line-height: 30px;
  }
}

section.post .sidebar .author-picture {
  margin-bottom: 1.0416666667vw;
}

@media (max-width: 992px) {
  section.post .sidebar .author-picture {
    margin-bottom: 20px;
  }
}

section.post .sidebar .author-title {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  margin-bottom: 1.0416666667vw;
  width: 100%;
}

@media (max-width: 992px) {
  section.post .sidebar .author-title {
    margin-bottom: 20px;
  }
}

section.post .sidebar .author-contact-details {
  font-size: 0.9375vw;
  line-height: 1.5625vw;
  display: inline-block;
  margin-bottom: 2.34375vw;
}

section.post .sidebar .author-contact-details a {
  color: #666666;
  font-weight: normal;
}

@media (max-width: 992px) {
  section.post .sidebar .author-contact-details {
    font-size: 16px;
    line-height: 1.3em;
    margin-bottom: 45px;
  }
}

section.post .sidebar .share-button {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 0.9375vw;
  margin-bottom: 1.3020833333vw;
}

section.post .sidebar .share-button:hover {
  text-decoration: none;
}

@media (max-width: 992px) {
  section.post .sidebar .share-button {
    font-size: 16px;
    line-height: 1.3em;
    margin-bottom: 25px;
  }
}

section.post .sidebar .share-icon {
  border-radius: 50%;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5208333333vw;
}

section.post .sidebar .share-icon:before {
  font-family: "Ionicons";
  color: #fff;
  left: 0;
  font-size: 1.0416666667vw;
}

@media (max-width: 992px) {
  section.post .sidebar .share-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  section.post .sidebar .share-icon:before {
    font-size: 20px;
  }
}

section.post .sidebar .share-icon.share-linkedin {
  background: #168fbf;
}

section.post .sidebar .share-icon.share-linkedin:before {
  content: "\f238";
}

section.post .sidebar .share-icon.share-twitter {
  background: #168fbf;
}

section.post .sidebar .share-icon.share-twitter:before {
  content: "\f242";
}

section.post .sidebar .share-icon.share-facebook {
  background: #3A579A;
}

section.post .sidebar .share-icon.share-facebook:before {
  content: "\f231";
}

section.post .sidebar .share-icon.share-mail {
  background: #168fbf;
}

section.post .sidebar .share-icon.share-mail:before {
  content: "\f132";
}

section.post .sidebar .webinar-data {
  margin-bottom: 2.6041666667vw;
}

section.post .sidebar .webinar-data li {
  line-height: 1.25;
}

section.post .meta {
  font-size: 0.78125vw;
  display: flex;
  margin-bottom: 1.3020833333vw;
}

@media (max-width: 992px) {
  section.post .meta {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

section.post .meta div:nth-child(2) {
  padding-left: 0.2604166667vw;
  border-left: 1px solid #000;
}

@media (max-width: 992px) {
  section.post .meta div:nth-child(2) {
    padding-left: 5px;
  }
}

section.post .date {
  color: #969696;
  margin-right: 0.2604166667vw;
  line-height: normal;
}

@media (max-width: 992px) {
  section.post .date {
    margin-right: 5px;
  }
}

section.post .post-categories a {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
}

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