/**
 * Foundation for Sites
 * Version 6.9.0
 * https://get.foundation
 * Licensed under MIT Open Source
 */
/**
 * Root Media Query Variables
 */
body {
  --global--spacing-horizontal: 30px;
  --responsive--alignwide-width: min(var(--wp--style--global--wide-size), calc(100vw - 2 * var(--global--spacing-horizontal)));
  --responsive--alignfull-width: 100%;
  --responsive--aligndefault-width: min(var(--wp--style--global--content-size), calc(100vw - 2 * var(--global--spacing-horizontal)));
}
@media print, screen and (max-width: 61.99875em) {
  body {
    --responsive--aligndefault-width: min(750px, calc(100vw - 2 * var(--global--spacing-horizontal)));
    --wp--style--global--content-size: 750px;
  }
}

/*---------------------------------
		Colors Variables
-----------------------------------*/
/*---------------------------------
		Element Colors
-----------------------------------*/
/*---------------------------------
		Border Colors
-----------------------------------*/
/**
 * Custom Sass Functions.
 */
/**
 * Define self-hosted font families.
 *
 */
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-Regular.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-Bold.ttf) format("truetype");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: montserrat;
  src: url(../fonts/Montserrat-Light.ttf) format("truetype");
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: montserrat;
  src: url(../fonts/Montserrat-Regular.ttf) format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: montserrat;
  src: url(../fonts/Montserrat-Medium.ttf) format("truetype");
  font-display: swap;
  font-weight: 500;
}
/*----------------
		Font
------------------*/
/*---------------------------------
		Body Text Font Sizes
-----------------------------------*/
/**
 * Add font scale with media query as per configuration on $body-text
 * Ex: @include body-text( h1 );
 * This will add font-size and line-height with different breakpoints.
 */
.align-left {
  justify-content: flex-start;
}

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

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

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

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

.align-self-top {
  align-self: flex-start;
}

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

.align-self-bottom {
  align-self: flex-end;
}

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

.align-self-middle {
  align-self: center;
}

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

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 62em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 75em) {
  .xlarge-order-1 {
    order: 1;
  }
  .xlarge-order-2 {
    order: 2;
  }
  .xlarge-order-3 {
    order: 3;
  }
  .xlarge-order-4 {
    order: 4;
  }
  .xlarge-order-5 {
    order: 5;
  }
  .xlarge-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

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

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

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

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

@media print, screen and (min-width: 62em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 75em) {
  .xlarge-flex-container {
    display: flex;
  }
  .xlarge-flex-child-auto {
    flex: 1 1 auto;
  }
  .xlarge-flex-child-grow {
    flex: 1 0 auto;
  }
  .xlarge-flex-child-shrink {
    flex: 0 1 auto;
  }
  .xlarge-flex-dir-row {
    flex-direction: row;
  }
  .xlarge-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .xlarge-flex-dir-column {
    flex-direction: column;
  }
  .xlarge-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media print, screen and (max-width: 61.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 62em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 62em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 61.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print, screen and (min-width: 62em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 61.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 75em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 74.99875em) {
  .show-for-xlarge {
    display: none !important;
  }
}

@media print, screen and (min-width: 75em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 74.99875em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

.grid-container {
  max-width: 1470px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 62em) {
  .grid-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.fluid {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 62em) {
  .grid-container.fluid {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.full {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  padding-left: 0;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex-basis: auto;
}

@media print, screen and (min-width: 62em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-x > .xlarge-shrink, .grid-x > .xlarge-full, .grid-x > .xlarge-1, .grid-x > .xlarge-2, .grid-x > .xlarge-3, .grid-x > .xlarge-4, .grid-x > .xlarge-5, .grid-x > .xlarge-6, .grid-x > .xlarge-7, .grid-x > .xlarge-8, .grid-x > .xlarge-9, .grid-x > .xlarge-10, .grid-x > .xlarge-11, .grid-x > .xlarge-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 {
  flex: 0 0 auto;
}

.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 62em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-x > .xlarge-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .xlarge-12, .grid-x > .xlarge-11, .grid-x > .xlarge-10, .grid-x > .xlarge-9, .grid-x > .xlarge-8, .grid-x > .xlarge-7, .grid-x > .xlarge-6, .grid-x > .xlarge-5, .grid-x > .xlarge-4, .grid-x > .xlarge-3, .grid-x > .xlarge-2, .grid-x > .xlarge-1, .grid-x > .xlarge-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .xlarge-shrink {
    width: auto;
  }
  .grid-x > .xlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xlarge-3 {
    width: 25%;
  }
  .grid-x > .xlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xlarge-6 {
    width: 50%;
  }
  .grid-x > .xlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xlarge-9 {
    width: 75%;
  }
  .grid-x > .xlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xlarge-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
@media print, screen and (min-width: 62em) {
  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.875rem);
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
}
@media print, screen and (min-width: 62em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.875rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.875rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.875rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.875rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.875rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.875rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.875rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.875rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.875rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.875rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.875rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.875rem);
}
@media print, screen and (min-width: 62em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .xlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xlarge-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .xlarge-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .xlarge-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .xlarge-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 1.875rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
}
@media print, screen and (min-width: 62em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
}
@media print, screen and (min-width: 62em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 62em) {
  .grid-padding-x > .cell {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: 700;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ccc;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -8px;
}

sub {
  bottom: -4px;
}

/* Embedded content
   ========================================================================== */
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #ccc;
  margin: 0 2px;
  padding: 6px 10px 12px;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: 700;
}

/* Note: This file is updated by Sagar, To remove ducplication of styles. */
figure {
  margin: 0;
  max-width: 100%;
}

/*---------------------------
		Accessiblity
---------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  left: -999em;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}
.screen-reader-text:focus {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto;
  clip-path: none;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/*---------------------------
		Alignments
---------------------------*/
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

/*---------------------------
		Clearing
---------------------------*/
.clearfix::before, .clearfix::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}

.clear-both {
  clear: both;
}
.clear-left {
  clear: left;
}
.clear-right {
  clear: right;
}
.clear-none {
  clear: none;
}

.float-left {
  float: left;
}
.float-right {
  float: right;
}
.float-none {
  float: none;
}

.linx-has-green-checkmark {
  padding: 0 0 0 65px;
  position: relative;
}
.linx-has-green-checkmark::before {
  content: "";
  background-image: url(../images/green-tick.png);
  background-repeat: no-repeat;
  background-size: 45px;
  background-position: left center;
  height: 45px;
  width: 45px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.has-black-background-color {
  background-color: #000;
  color: set-text-color(#000);
}

.has-black-color {
  color: #000;
}

.has-text-color.has-black-color {
  color: #000;
}

.wp-block-button__link.has-black-background-color {
  background-color: #000;
  color: set-text-color(#000);
}
.wp-block-button__link.has-black-background-color:hover, .wp-block-button__link.has-black-background-color:focus {
  background-color: black;
  color: set-text-color(#000);
  border: 0;
}

.wp-block-button__link.has-black-color {
  color: #000;
  border: 1px solid currentColor;
}
.wp-block-button__link.has-black-color:hover, .wp-block-button__link.has-black-color:focus {
  color: black;
  border: 1px solid currentColor;
}

.has-white-background-color {
  background-color: #fff;
  color: set-text-color(#fff);
}

.has-white-color {
  color: #fff;
}

.has-text-color.has-white-color {
  color: #fff;
}

.wp-block-button__link.has-white-background-color {
  background-color: #fff;
  color: set-text-color(#fff);
}
.wp-block-button__link.has-white-background-color:hover, .wp-block-button__link.has-white-background-color:focus {
  background-color: rgb(229.5, 229.5, 229.5);
  color: set-text-color(#fff);
  border: 0;
}

.wp-block-button__link.has-white-color {
  color: #fff;
  border: 1px solid currentColor;
}
.wp-block-button__link.has-white-color:hover, .wp-block-button__link.has-white-color:focus {
  color: rgb(229.5, 229.5, 229.5);
  border: 1px solid currentColor;
}

.has-gray-200-background-color {
  background-color: #ccc;
  color: set-text-color(#ccc);
}

.has-gray-200-color {
  color: #ccc;
}

.has-text-color.has-gray-200-color {
  color: #ccc;
}

.wp-block-button__link.has-gray-200-background-color {
  background-color: #ccc;
  color: set-text-color(#ccc);
}
.wp-block-button__link.has-gray-200-background-color:hover, .wp-block-button__link.has-gray-200-background-color:focus {
  background-color: rgb(178.5, 178.5, 178.5);
  color: set-text-color(#ccc);
  border: 0;
}

.wp-block-button__link.has-gray-200-color {
  color: #ccc;
  border: 1px solid currentColor;
}
.wp-block-button__link.has-gray-200-color:hover, .wp-block-button__link.has-gray-200-color:focus {
  color: rgb(178.5, 178.5, 178.5);
  border: 1px solid currentColor;
}

.has-gray-100-background-color {
  background-color: #eff3f6;
  color: set-text-color(#eff3f6);
}

.has-gray-100-color {
  color: #eff3f6;
}

.has-text-color.has-gray-100-color {
  color: #eff3f6;
}

.wp-block-button__link.has-gray-100-background-color {
  background-color: #eff3f6;
  color: set-text-color(#eff3f6);
}
.wp-block-button__link.has-gray-100-background-color:hover, .wp-block-button__link.has-gray-100-background-color:focus {
  background-color: rgb(206.36, 218.52, 227.64);
  color: set-text-color(#eff3f6);
  border: 0;
}

.wp-block-button__link.has-gray-100-color {
  color: #eff3f6;
  border: 1px solid currentColor;
}
.wp-block-button__link.has-gray-100-color:hover, .wp-block-button__link.has-gray-100-color:focus {
  color: rgb(206.36, 218.52, 227.64);
  border: 1px solid currentColor;
}

.has-dark-gray-200-background-color {
  background-color: #333;
  color: set-text-color(#333);
}

.has-dark-gray-200-color {
  color: #333;
}

.has-text-color.has-dark-gray-200-color {
  color: #333;
}

.wp-block-button__link.has-dark-gray-200-background-color {
  background-color: #333;
  color: set-text-color(#333);
}
.wp-block-button__link.has-dark-gray-200-background-color:hover, .wp-block-button__link.has-dark-gray-200-background-color:focus {
  background-color: rgb(25.5, 25.5, 25.5);
  color: set-text-color(#333);
  border: 0;
}

.wp-block-button__link.has-dark-gray-200-color {
  color: #333;
  border: 1px solid currentColor;
}
.wp-block-button__link.has-dark-gray-200-color:hover, .wp-block-button__link.has-dark-gray-200-color:focus {
  color: rgb(25.5, 25.5, 25.5);
  border: 1px solid currentColor;
}

.has-dark-gray-100-background-color {
  background-color: #424242;
  color: set-text-color(#424242);
}

.has-dark-gray-100-color {
  color: #424242;
}

.has-text-color.has-dark-gray-100-color {
  color: #424242;
}

.wp-block-button__link.has-dark-gray-100-background-color {
  background-color: #424242;
  color: set-text-color(#424242);
}
.wp-block-button__link.has-dark-gray-100-background-color:hover, .wp-block-button__link.has-dark-gray-100-background-color:focus {
  background-color: rgb(40.5, 40.5, 40.5);
  color: set-text-color(#424242);
  border: 0;
}

.wp-block-button__link.has-dark-gray-100-color {
  color: #424242;
  border: 1px solid currentColor;
}
.wp-block-button__link.has-dark-gray-100-color:hover, .wp-block-button__link.has-dark-gray-100-color:focus {
  color: rgb(40.5, 40.5, 40.5);
  border: 1px solid currentColor;
}

.has-red-100-background-color {
  background-color: #d32f2f;
  color: set-text-color(#d32f2f);
}

.has-red-100-color {
  color: #d32f2f;
}

.has-text-color.has-red-100-color {
  color: #d32f2f;
}

.wp-block-button__link.has-red-100-background-color {
  background-color: #d32f2f;
  color: set-text-color(#d32f2f);
}
.wp-block-button__link.has-red-100-background-color:hover, .wp-block-button__link.has-red-100-background-color:focus {
  background-color: rgb(170.8571428571, 36.1428571429, 36.1428571429);
  color: set-text-color(#d32f2f);
  border: 0;
}

.wp-block-button__link.has-red-100-color {
  color: #d32f2f;
  border: 1px solid currentColor;
}
.wp-block-button__link.has-red-100-color:hover, .wp-block-button__link.has-red-100-color:focus {
  color: rgb(170.8571428571, 36.1428571429, 36.1428571429);
  border: 1px solid currentColor;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #424242;
}

/* stylelint-disable */
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

/* stylelint-enable */
/**
 * 1. Fallback for when there is no custom background color defined. [WordPress]
 * 2. Remove default margin. [normalize.css]
 * 3. Set the base elements `font-size` to the value of your choosing.
 * 4. Work out the unitless `line-height` for your project based around your
 *    desired `line-height` (defined previously in pixels), and your projects
 *    base font size.
 */
body {
  background: #fff;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  line-height: 1.42857;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  /**
   * Removing WebFont loader temporarily, to test self-hosted fonts.
   * Keeping the webfontloader script to properly test it later on dev site.
   */
}
@media print, screen and (max-width: 74.99875em) {
  body {
    font-size: 14px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  body {
    font-size: 14px;
  }
}
body.mce-content-body {
  font-family: inherit;
  margin: 15px;
}

blockquote,
q {
  quotes: "" "";
  border-left: 4px solid #e6e6e6;
  color: #000;
  font-style: italic;
  margin: 0 0 30px 30px;
  padding-left: 16px;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

figure {
  max-width: 100%;
}

a {
  color: #00386b;
  text-decoration: none;
  transition: all 0.2s ease-in-out 0s;
}
a:hover {
  color: #3b84d7;
}

/*---------------------------
		Lists & Tables
---------------------------*/
ul,
ol {
  margin: 0 0 18px 0;
  padding-left: 16px;
}
ul li,
ol li {
  line-height: 1.6;
  margin-bottom: 4px;
}
ul li.menu-item, ul li.glide__slide,
ol li.menu-item,
ol li.glide__slide { /* stylelint-disable-line selector-class-pattern */
  margin-bottom: 0;
}
> li {
  margin-bottom: 0;
  margin-left: 18px;
}

ul.no-bullet,
ul.no-bullet ul,
ul.no-bullet ol,
ol.no-bullet,
ol.no-bullet ul,
ol.no-bullet ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 24px 24px;
}

/*---------------------------
		Buttons
---------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  background: #eff3f6;
  background-image: linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%);
  border-radius: 3px;
  border: 1px solid #333;
  color: #424242;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 12px;
  white-space: nowrap;
  vertical-align: middle;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background: #eff3f6;
  background-image: linear-gradient(-180deg, #f0f3f6 0%, #e6ebf1 90%);
  border-color: #000;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  background: #eff3f6;
  background-image: linear-gradient(-180deg, #f0f3f6 0%, #e6ebf1 90%);
  border-color: #000;
}

/*---------------------------
		Fields
---------------------------*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search] {
  padding: 3px;
}

textarea {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1) inset;
  max-width: 100%;
  outline: none;
  overflow: auto;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  color: #333;
  border: 1px solid #eff3f6;
  border-radius: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
textarea:focus {
  color: #000;
}

p {
  line-height: 1.6;
  margin: 8px 0 20px;
  font-size: 14px;
}
p:empty {
  display: none;
}

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
h1 {
  font-size: 54px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 74.99875em) {
  h1 {
    font-size: 35px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  h1 {
    font-size: 18px;
  }
}

h2 {
  font-size: 36px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 74.99875em) {
  h2 {
    font-size: 30px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  h2 {
    font-size: 16px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 74.99875em) {
  h3 {
    font-size: 26px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  h3 {
    font-size: 15px;
  }
}

h4 {
  font-size: 22px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 74.99875em) {
  h4 {
    font-size: 22px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  h4 {
    font-size: 14px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 74.99875em) {
  h5 {
    font-size: 20px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  h5 {
    font-size: 12px;
  }
}

h6 {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 74.99875em) {
  h6 {
    font-size: 18px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  h6 {
    font-size: 10px;
  }
}

/**
 * Crude table styles; tables are very difficult to keep on the baseline.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media print, screen and (max-width: 63.99875em) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #eff3f6;
  }
  .table-responsive > table {
    margin-bottom: 0;
  }
  .table-responsive > table > thead > tr > th,
  .table-responsive > table > thead > tr > td,
  .table-responsive > table > tbody > tr > th,
  .table-responsive > table > tbody > tr > td,
  .table-responsive > table > tfoot > tr > th,
  .table-responsive > table > tfoot > tr > td {
    white-space: nowrap;
  }
}

th,
td {
  border-bottom: 1px solid #ccc;
  padding: 15px;
  text-align: left;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}

code {
  font-size: 80%;
  margin: 0 3px;
  padding: 2px 6px;
  background: #eff3f6;
  border-radius: 3px;
  border: 1px solid #eff3f6;
}

code,
kbd,
pre,
samp {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

pre {
  background: #eff3f6;
  border: 1px solid #eff3f6;
  max-width: 100%;
  overflow: auto;
  padding: 16px; /* Contain overflow in all browsers. */
}
pre code.bash,
pre > code {
  background: transparent;
  border: 0;
  display: block;
  margin: 0;
  padding: 0;
}
pre code code.bash {
  font-size: inherit;
}

hr {
  background-color: #eff3f6;
  border: 0;
  box-sizing: content-box;
  height: 1px;
}

/* Hide site title on page. */
.page .entry-title,
.entry-header .entry-title {
  display: none;
}

/* Aside */
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*-----------
	Media
-------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

.site-content {
  word-wrap: break-word;
}

a.wp-element-button,
div.wp-element-button,
button.is-style-btn-default,
p.is-style-btn-default,
a.is-style-btn-default {
  border: none;
  display: block;
  text-align: center;
  box-shadow: 1px 1px 2px 0 #b34a0f;
  color: #fff;
  background-color: #ef7b39;
  position: relative;
  padding: 10px 28px 11px;
  font-size: 14px;
  font-weight: 700;
  min-width: 190px;
  border-radius: 20px;
  outline: none;
  transition: all 0.2s ease-in-out 0s;
  touch-action: manipulation;
  cursor: pointer;
  text-decoration: none;
  background-image: none;
}
a.wp-element-button:hover,
div.wp-element-button:hover,
button.is-style-btn-default:hover,
p.is-style-btn-default:hover,
a.is-style-btn-default:hover {
  text-decoration: none;
  background-color: #ff8a47;
  color: #fff;
}
a.wp-element-button:focus,
div.wp-element-button:focus,
button.is-style-btn-default:focus,
p.is-style-btn-default:focus,
a.is-style-btn-default:focus {
  background-color: #ff8a47;
}
a.wp-element-button:visited,
div.wp-element-button:visited,
button.is-style-btn-default:visited,
p.is-style-btn-default:visited,
a.is-style-btn-default:visited {
  color: #fff;
}
a.wp-element-button a,
div.wp-element-button a,
button.is-style-btn-default a,
p.is-style-btn-default a,
a.is-style-btn-default a {
  text-decoration: none;
  color: inherit;
}

.is-style-btn-blue a.wp-element-button,
.is-style-btn-blue div.wp-element-button,
button.is-style-btn-blue,
p.is-style-btn-blue,
a.is-style-btn-blue { /* stylelint-disable no-descending-specificity */
  box-shadow: 1px 1px 2px 0 #1d528f;
  background-color: #3b84d7;
}
.is-style-btn-blue a.wp-element-button:hover, .is-style-btn-blue a.wp-element-button:focus,
.is-style-btn-blue div.wp-element-button:hover,
.is-style-btn-blue div.wp-element-button:focus,
button.is-style-btn-blue:hover,
button.is-style-btn-blue:focus,
p.is-style-btn-blue:hover,
p.is-style-btn-blue:focus,
a.is-style-btn-blue:hover,
a.is-style-btn-blue:focus {
  background-color: #489afa;
}

.is-style-btn-navy-blue a.wp-element-button,
.is-style-btn-navy-blue div.wp-element-button,
button.is-style-btn-navy-blue,
p.is-style-btn-navy-blue,
a.is-style-btn-navy-blue {
  box-shadow: 1px 1px 2px 0 #000305;
  background-color: #00386b;
}
.is-style-btn-navy-blue a.wp-element-button:hover, .is-style-btn-navy-blue a.wp-element-button:focus,
.is-style-btn-navy-blue div.wp-element-button:hover,
.is-style-btn-navy-blue div.wp-element-button:focus,
button.is-style-btn-navy-blue:hover,
button.is-style-btn-navy-blue:focus,
p.is-style-btn-navy-blue:hover,
p.is-style-btn-navy-blue:focus,
a.is-style-btn-navy-blue:hover,
a.is-style-btn-navy-blue:focus {
  background-color: #0058a9;
}

.is-style-btn-green a.wp-element-button,
.is-style-btn-green div.wp-element-button,
button.is-style-btn-green,
p.is-style-btn-green,
a.is-style-btn-green {
  box-shadow: 1px 1px 2px 0 #0c4b1e;
  background-color: #1ba241;
}
.is-style-btn-green a.wp-element-button:hover, .is-style-btn-green a.wp-element-button:focus,
.is-style-btn-green div.wp-element-button:hover,
.is-style-btn-green div.wp-element-button:focus,
button.is-style-btn-green:hover,
button.is-style-btn-green:focus,
p.is-style-btn-green:hover,
p.is-style-btn-green:focus,
a.is-style-btn-green:hover,
a.is-style-btn-green:focus {
  background-color: #37c152;
}

.is-style-btn-white a.wp-element-button,
.is-style-btn-white div.wp-element-button,
button.is-style-btn-white,
p.is-style-btn-white,
a.is-style-btn-white {
  box-shadow: none;
  background-color: #fff;
  color: #00386b;
}
.is-style-btn-white a.wp-element-button:hover, .is-style-btn-white a.wp-element-button:focus,
.is-style-btn-white div.wp-element-button:hover,
.is-style-btn-white div.wp-element-button:focus,
button.is-style-btn-white:hover,
button.is-style-btn-white:focus,
p.is-style-btn-white:hover,
p.is-style-btn-white:focus,
a.is-style-btn-white:hover,
a.is-style-btn-white:focus {
  background-color: #fff;
  color: #00386b;
}
.is-style-btn-white a.wp-element-button:visited,
.is-style-btn-white div.wp-element-button:visited,
button.is-style-btn-white:visited,
p.is-style-btn-white:visited,
a.is-style-btn-white:visited {
  color: #00386b;
}

.is-style-btn-show-more a.wp-element-button,
.is-style-btn-show-more div.wp-element-button,
button.is-style-btn-show-more,
p.is-style-btn-show-more,
a.is-style-btn-show-more {
  box-shadow: none;
  background-color: #fff;
  color: #00386b;
  border: solid 1px #00386b;
  min-width: auto;
}
.is-style-btn-show-more a.wp-element-button:hover, .is-style-btn-show-more a.wp-element-button:focus,
.is-style-btn-show-more div.wp-element-button:hover,
.is-style-btn-show-more div.wp-element-button:focus,
button.is-style-btn-show-more:hover,
button.is-style-btn-show-more:focus,
p.is-style-btn-show-more:hover,
p.is-style-btn-show-more:focus,
a.is-style-btn-show-more:hover,
a.is-style-btn-show-more:focus {
  background-color: #f7f9fa;
  color: #333;
}
.is-style-btn-show-more a.wp-element-button:visited,
.is-style-btn-show-more div.wp-element-button:visited,
button.is-style-btn-show-more:visited,
p.is-style-btn-show-more:visited,
a.is-style-btn-show-more:visited {
  color: #333;
}

.wp-block-buttons > .wp-block-button.wp-block-button__width-25 { /* stylelint-disable-line selector-class-pattern */ }
@media print, screen and (max-width: 63.99875em) {
  .wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
    width: auto;
  }
}

/* stylelint-disable selector-class-pattern */
#ot-sdk-btn-floating .ot-floating-button__front button.ot-floating-button__open,
#ot-sdk-btn-floating .ot-floating-button__front button.ot-floating-button__open:hover,
#ot-sdk-btn-floating .ot-floating-button__back button.ot-floating-button__close,
#ot-sdk-btn-floating .ot-floating-button__back button.ot-floating-button__close:hover {
  background-image: none;
}

@media print, screen and (max-width: 61.99875em) {
  .wp-block-columns {
    flex-wrap: wrap !important; /* stylelint-disable-line declaration-no-important */
  }
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-columns .wp-block-column {
    flex-basis: 100% !important; /* stylelint-disable-line declaration-no-important */
  }
}

/**
 * Styles for overlays & modals
 */
.linx-overlay::before {
  content: "";
  visibility: hidden;
  background-color: #00386b;
  opacity: 0;
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  transition: all 0.35s ease-out;
}
.linx-overlay.opened::before {
  visibility: visible;
  opacity: 0.85;
  top: 0;
}
.linx-overlay .linx-modal {
  padding: 60px 15px 15px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  transform: translate(0, -100%);
  transition: all 0.35s ease-out;
}
.linx-overlay .linx-modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 16px;
}
.linx-overlay .linx-modal__header .linx-overlay-close {
  color: #fff;
  opacity: 0.5;
  font-size: 30px;
  background: transparent;
  border: none;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
  padding: 0;
  margin-top: -10px;
}
.linx-overlay .linx-modal__body {
  max-height: calc(100vh - 132px);
}
.linx-overlay .linx-modal__body * {
  max-height: calc(100vh - 132px);
}
.linx-overlay .linx-modal__body, .linx-overlay .linx-modal__header, .linx-overlay .linx-modal__footer {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  min-width: 1140px;
}
@media print, screen and (max-width: 74.99875em) {
  .linx-overlay .linx-modal__body, .linx-overlay .linx-modal__header, .linx-overlay .linx-modal__footer {
    min-width: 100%;
    max-width: 100%;
  }
}
.linx-overlay.opened .linx-modal {
  visibility: visible;
  transform: translate(0, 0);
  opacity: 1;
  top: 0;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.animated-menu {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.is-linx-animation-fade-in,
.is-linx-animation-fade-in-left,
.is-linx-animation-fade-in-right {
  visibility: hidden;
}
.is-linx-animation-fade-in.animate,
.is-linx-animation-fade-in-left.animate,
.is-linx-animation-fade-in-right.animate {
  animation-duration: 1.25s;
  animation-fill-mode: both;
  animation-timing-function: ease;
  visibility: visible;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.is-linx-animation-fade-in.animate {
  animation-name: fade-in;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.is-linx-animation-fade-in-left.animate {
  animation-name: fade-in-left;
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.is-linx-animation-fade-in-right.animate {
  animation-name: fade-in-right;
}

.svg-blue img {
  filter: invert(16%) sepia(65%) saturate(2032%) hue-rotate(189deg) brightness(94%) contrast(104%);
}

.entry-content > * {
  max-width: var(--responsive--aligndefault-width);
  margin-left: auto !important; /* stylelint-disable-line declaration-no-important */
  margin-right: auto !important; /* stylelint-disable-line declaration-no-important */
}

.aligndefault {
  max-width: var(--responsive--aligndefault-width);
  margin-left: auto !important; /* stylelint-disable-line declaration-no-important */
  margin-right: auto !important; /* stylelint-disable-line declaration-no-important */
}

.alignwide {
  max-width: var(--responsive--alignwide-width) !important; /* stylelint-disable-line declaration-no-important */
  margin-left: auto !important; /* stylelint-disable-line declaration-no-important */
  margin-right: auto !important; /* stylelint-disable-line declaration-no-important */
}

.alignfull {
  max-width: var(--responsive--alignfull-width) !important; /* stylelint-disable-line declaration-no-important */
  margin-left: auto !important; /* stylelint-disable-line declaration-no-important */
  margin-right: auto !important; /* stylelint-disable-line declaration-no-important */
  padding-left: var(--global--spacing-horizontal) !important; /* stylelint-disable-line declaration-no-important */
  padding-right: var(--global--spacing-horizontal) !important; /* stylelint-disable-line declaration-no-important */
}

/**
 * Remove padding if we are already inside any block.
 * (It is assumed that parent block will have padding).
 */
.entry-content *[class^=wp-group] .alignfull {
  padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
  padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
}

/* stylelint-disable selector-class-pattern, no-descending-specificity */
body.admin-bar .linx-redesign-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .linx-redesign-header {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar .linx-redesign-header {
    position: sticky;
    top: 0;
  }
}

.linx-redesign-header {
  position: sticky;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 76px;
  overflow: visible;
  background-color: #fff;
  transition: background-color 0.3s ease-in-out 0s, height 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s, bottom 0.3s ease-in-out 0s, box-shadow 0.3s ease-in-out 0s;
}
.linx-redesign-header.scrolled {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .linx-redesign-header {
    height: 90px;
  }
}
.linx-redesign-header .linx-redesign-header-inner {
  display: flex;
  position: relative;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-left {
  display: flex;
  height: 100%;
  padding: 13px 0 0 13px;
}
@media (min-width: 992px) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-left {
    padding: 19px 0 0 19px;
  }
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-left .linx-redesign-site-branding {
  height: 52px;
  width: 121px;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-left .linx-redesign-site-branding a.custom-logo-link {
  display: inline-block;
  width: 121px;
  height: 52px;
  -webkit-tap-highlight-color: transparent;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-left .linx-redesign-site-branding img {
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out 0s;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-left .linx-redesign-site-branding img:active {
  position: relative;
  top: 1px;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right {
  display: flex;
  height: 100%;
  align-items: center;
  grid-gap: 15px;
  gap: 15px;
  padding: 0 20px;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop {
  display: inline-block;
  width: 200px;
  height: 40px;
  min-height: 40px;
  border: 1px solid #5d6b78;
  border-radius: 10px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop {
    display: none;
  }
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop .screen-reader-text {
  display: none;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop .linx-redesign-search-input {
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 8px 0 8px 41px;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop .linx-redesign-search-input input {
  border: 0 none;
  width: 100%;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop .linx-redesign-search-input input:focus {
  outline: none;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop .linx-redesign-search-input input:focus .linx-redesign-search-wrapper {
  border: 1px solid #3b84d7;
  color: #00386b;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop button {
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  position: absolute;
  font-size: 25px;
  text-align: center;
  border: 0 none;
  border-radius: 10px;
  background-color: transparent;
  color: #00386b;
  background-image: none;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop button:hover, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop button:focus, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop button:active, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-wrapper-desktop button:focus-visible {
  background-image: none;
  background-color: transparent;
  color: #00386b;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button {
  display: none;
}
@media screen and (max-width: 992px) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button {
    display: inline-block;
  }
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button .search-opened {
  display: none;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button .active .search-opened {
  display: block;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button .active .search-closed {
  display: none;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button button {
  margin: 0;
  padding: 0;
  font-size: 34px;
  text-align: center;
  border: 0 none;
  background-color: transparent;
  color: #00386b;
  background-image: none;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button button:hover, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button button:focus, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button button:active, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-search-form .linx-redesign-search-mobile-button button:focus-visible {
  background-image: none;
  background-color: transparent;
  color: #00386b;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher .language-logo {
  height: 30px;
  width: 30px;
  display: inline-block;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher .language-logo > img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-options, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  font-weight: 700;
  font-size: 14px;
  left: 0;
  width: 100%;
  padding-right: 182px;
  -ms-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
}
@media print, screen and (max-width: 63.99875em) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-options, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages {
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    left: auto;
    right: 40px;
    background-color: #fff;
    color: #00386b;
    padding-right: 0;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher .activate-language {
    display: flex;
    padding: 0 20px;
    border: 1px solid #00386b;
  }
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-options {
  color: #fff;
  background-color: #00386b;
  top: 80px;
  display: none;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-options > li {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-options > li > span {
  display: inline-block;
  padding: 38px 20px;
}
@media print, screen and (max-width: 63.99875em) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-options {
    background-color: #fff;
    color: #00386b;
    top: 83px;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-options > li {
    cursor: default;
    margin-bottom: 10px;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-options > li > span {
    padding: 10px 0;
  }
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages {
  background-color: #fff;
  color: #00386b;
  top: 97px;
  left: -2999px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out 0s;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li {
  display: block;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li > a, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li > a {
  color: #00386b;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li > a :hover, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li > a :hover {
  color: #00386b;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li > a > div, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li > a > div {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 4px;
  gap: 4px;
  padding: 38px 15px;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li > a > span, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li > a > span {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 4px;
  gap: 4px;
  padding: 38px 20px;
}
@media print, screen and (max-width: 63.99875em) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages {
    opacity: 1;
    position: relative;
    font-weight: 400;
    left: 0;
    top: 0;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li {
    display: block;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li > a, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li > a {
    color: #00386b;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li > a :hover, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li > a :hover {
    color: #00386b;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li > a > div, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li > a > div {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
    gap: 8px;
    margin: 5px 0;
    padding: 0;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-countries > li > a > span, .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher-languages > li > a > span {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
    gap: 8px;
    margin: 6px 0;
    padding: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher:hover .linx-redesign-lang-switcher-options {
    display: flex;
  }
}
@media print, screen and (min-width: 64em) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher .country-option:hover {
    background-color: #fff;
    color: #3b84d7;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher .country-option:hover .linx-redesign-lang-switcher-countries {
    left: 0;
    opacity: 1;
  }
}
@media print, screen and (min-width: 64em) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher .language-option:hover {
    background-color: #fff;
    color: #3b84d7;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-lang-switcher .language-option:hover .linx-redesign-lang-switcher-languages {
    left: 0;
    opacity: 1;
  }
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone {
  display: flex;
  align-items: center;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone .phone-icon-fallback {
  display: none;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone .phone-icon-fallback i {
  font-size: 36px;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone i {
  font-size: 24px;
  color: #00386b;
}
@media (max-width: 992px) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone i {
    font-size: 34px;
  }
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone a {
  color: #00386b;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone a p {
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone a p {
    display: none;
  }
}
@media (max-width: 1200px) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone a .phone-icon-fallback {
    display: inline-block;
  }
}
@media (max-width: 1200px) {
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone a {
    display: none;
  }
  .linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone a:first-child {
    display: flex;
    width: 30px;
    height: 30px;
  }
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-header-phone img {
  height: 26px;
  width: 26px;
}
.linx-redesign-header .linx-redesign-header-inner .linx-redesign-header-inner-right .linx-redesign-main-navigation {
  padding: 0;
}

.linx-redesign-main-navigation {
  padding: 0 0 0 15px;
  font-weight: 700;
}
.linx-redesign-main-navigation ul li > .sub-menu > li > .sub-menu {
  left: -2999px;
}
.linx-redesign-main-navigation ul li > .sub-menu > li > .sub-menu:hover {
  left: 0;
}
@media (min-width: 992px) {
  .linx-redesign-main-navigation {
    font-size: 12px;
  }
}
@media (min-width: 1250px) {
  .linx-redesign-main-navigation {
    font-size: 13px;
  }
}
.linx-redesign-main-navigation .menu > li > a {
  color: #00386b;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .linx-redesign-main-navigation .menu > li > a {
    height: 60px;
    padding: 18px 11px;
  }
}
@media (min-width: 1250px) {
  .linx-redesign-main-navigation .menu > li > a {
    padding: 18px 13px;
  }
}
.linx-redesign-main-navigation .menu > .menu-item-orange > a {
  color: #ef7b39;
}
.linx-redesign-main-navigation .menu > .menu-item-orange > a:hover {
  color: #fba674;
}
.linx-redesign-main-navigation .primary-menu-desktop {
  display: none;
  overflow: hidden;
}
.linx-redesign-main-navigation .primary-menu-desktop a:hover {
  color: #3b84d7;
}
@media (min-width: 992px) {
  .linx-redesign-main-navigation .primary-menu-desktop {
    display: block;
  }
}
.linx-redesign-main-navigation .nav-menu-mobile {
  display: block;
  position: relative;
  width: 45px;
  height: 50px;
  justify-content: center;
  align-items: center;
  transform: rotate(0deg);
  transition: 0.2s ease-in-out 0s;
  cursor: pointer;
}
@media (min-width: 992px) {
  .linx-redesign-main-navigation .nav-menu-mobile {
    display: none;
  }
}
.linx-redesign-main-navigation .nav-menu-mobile span {
  display: block;
  position: absolute;
  height: 3px;
  width: 30px;
  opacity: 1;
  transform: rotate(0deg);
  background: #00386b;
}
.linx-redesign-main-navigation .nav-menu-mobile span:nth-child(1) {
  top: calc(50% - 8px);
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out 0.2s, top 0.3s ease-in-out 0.3s;
}
.linx-redesign-main-navigation .nav-menu-mobile span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out 0.2s, opacity 0.2s ease-in-out 0s, width 0.3s ease-in-out 0.2s;
}
.linx-redesign-main-navigation .nav-menu-mobile span:nth-child(3) {
  top: calc(50% + 8px);
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out 0.2s, top 0.3s ease-in-out 0.3s;
}
.linx-redesign-main-navigation .nav-menu-mobile.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.linx-redesign-main-navigation .nav-menu-mobile.active span:nth-child(2) {
  transform: translateX(30px);
  width: 0;
  overflow: hidden;
}
.linx-redesign-main-navigation .nav-menu-mobile.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.linx-redesign-main-navigation > div,
.linx-redesign-main-navigation .menu,
.linx-redesign-main-navigation .menu > li {
  height: 100%;
}

.linx-redesign-main-navigation ul li:hover > .sub-menu {
  background-color: #00386b;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
@media (min-width: 992px) {
  .linx-redesign-main-navigation ul li:hover > .sub-menu {
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 90px;
    padding: 0;
    padding-right: 20px;
    text-align: left;
    -ms-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
    -o-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
  }
}

.linx-redesign-main-navigation ul.menu > li:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(65%, #fff), color-stop(65%, #3b84d7), color-stop(70%, #3b84d7), color-stop(70%, #fff), color-stop(100%, #fff));
  color: #3b84d7;
}

.linx-redesign-main-navigation ul.menu > .menu-item-orange:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(65%, #fff), color-stop(65%, #fba674), color-stop(70%, #fba674), color-stop(70%, #fff), color-stop(100%, #fff));
  color: #fba674;
}

ul:not(.sub-menu).primary-menu-desktop > .current_page_item,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-item,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-parent {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(65%, #fff), color-stop(65%, #3b84d7), color-stop(70%, #3b84d7), color-stop(70%, #fff), color-stop(100%, #fff));
  color: #3b84d7;
}
ul:not(.sub-menu).primary-menu-desktop > .current_page_item > a,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-item > a,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-parent > a {
  color: #3b84d7;
}
ul:not(.sub-menu).primary-menu-desktop > .current_page_item.menu-item-orange,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-item.menu-item-orange,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-parent.menu-item-orange {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(65%, #fff), color-stop(65%, #fba674), color-stop(70%, #fba674), color-stop(70%, #fff), color-stop(100%, #fff));
}
ul:not(.sub-menu).primary-menu-desktop > .current_page_item.menu-item-orange > a,
ul:not(.sub-menu).primary-menu-desktop > .current_page_item.menu-item-orange > a:hover,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-item.menu-item-orange > a,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-item.menu-item-orange > a:hover,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-parent.menu-item-orange > a,
ul:not(.sub-menu).primary-menu-desktop > .current-menu-parent.menu-item-orange > a:hover {
  color: #fba674;
}

.linx-redesign-main-navigation ul li:hover > .sub-menu > li:hover > .sub-menu {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  height: 90px;
  top: 90px;
  width: 100%;
  -ms-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.05);
}

.sub-menu li {
  height: 100%;
  transition: all 0.2s ease-in-out 0s;
}

.linx-redesign-main-navigation ul.sub-menu li.menu-item > a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (min-width: 1250px) {
  .linx-redesign-main-navigation ul.sub-menu li.menu-item > a {
    padding: 38px 20px;
  }
}
@media (min-width: 992px) {
  .linx-redesign-main-navigation ul.sub-menu li.menu-item > a {
    padding: 28px 20px;
  }
}

.linx-redesign-main-navigation ul.sub-menu li.menu-item:hover > a {
  color: #3b84d7;
}

.linx-redesign-main-navigation ul.sub-menu li.menu-item:hover {
  background-color: #fff;
}

.linx-redesign-main-navigation ul.sub-menu ul.sub-menu li.menu-item a {
  color: #00386b;
}

.linx-redesign-main-navigation ul ul.sub-menu a {
  width: auto;
}

.linx-redesign-main-navigation li {
  position: static;
  margin: 0;
}

.linx-redesign-header-phone-menu {
  display: none;
  position: sticky;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
}
@media (max-width: 992px) {
  .linx-redesign-header-phone-menu.active {
    display: block;
  }
  .linx-redesign-header-phone-menu ul:not(.sub-menu) > li:hover,
  .linx-redesign-header-phone-menu ul:not(.sub-menu) .current_page_item,
  .linx-redesign-header-phone-menu ul:not(.sub-menu) .current-menu-item,
  .linx-redesign-header-phone-menu ul:not(.sub-menu) .current-menu-parent {
    background-color: #3b84d7;
  }
  .linx-redesign-header-phone-menu ul:not(.sub-menu) > li:hover a,
  .linx-redesign-header-phone-menu ul:not(.sub-menu) .current_page_item a,
  .linx-redesign-header-phone-menu ul:not(.sub-menu) .current-menu-item a,
  .linx-redesign-header-phone-menu ul:not(.sub-menu) .current-menu-parent a {
    color: #fff;
  }
  .linx-redesign-header-phone-menu ul:not(.sub-menu) > li > a {
    text-transform: uppercase;
    padding: 20px 30px;
  }
  .linx-redesign-header-phone-menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
  }
  .linx-redesign-header-phone-menu ul li.menu-item-has-children {
    position: relative;
  }
  .linx-redesign-header-phone-menu ul li.menu-item-has-children i {
    position: absolute;
    right: 20px;
    width: 60px;
    height: 60px;
    padding: 20px;
    text-align: center;
    color: #fff;
  }
  .linx-redesign-header-phone-menu ul li a {
    width: 100%;
    padding: 12px 30px;
    color: #00386b;
    display: inline-block;
    line-height: 1;
  }
  .linx-redesign-header-phone-menu ul li.nav-menu-mobile-open > .sub-menu {
    display: block;
  }
  .linx-redesign-header-phone-menu ul li.nav-menu-mobile-open > i {
    transform: rotate(180deg);
  }
  .linx-redesign-header-phone-menu ul li.menu-item-orange a {
    color: #ef7b39;
  }
  .linx-redesign-header-phone-menu ul .sub-menu {
    display: none;
    background-color: #00386b;
  }
  .linx-redesign-header-phone-menu ul .sub-menu .sub-menu {
    background-color: rgb(38, 77, 128);
  }
  .linx-redesign-header-phone-menu ul .sub-menu a {
    color: #fff;
  }
}

.linx-redesign-mobile-search-wrapper {
  display: none;
  position: sticky;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
}
@media (max-width: 992px) {
  .linx-redesign-mobile-search-wrapper.active {
    display: block;
  }
  .linx-redesign-mobile-search-wrapper .linx-redesign-mobile-search-input {
    padding: 80px 10% 30px;
    background-color: #fff;
    height: 85%;
    width: 100%;
  }
  .linx-redesign-mobile-search-wrapper .linx-redesign-mobile-search-input input {
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid #5d6b78;
    color: #8d9aa3;
    display: block;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    min-height: 40px;
  }
  .linx-redesign-mobile-search-wrapper .linx-redesign-mobile-search-input button {
    background: none;
    background-image: none;
    box-shadow: 1px 1px 2px 0 #1d528f;
    color: #fff;
    background-color: #3b84d7;
    padding: 10px 28px 11px;
    font-size: 14px;
    font-weight: 700;
    min-width: 190px;
    border-radius: 20px;
    border: 0;
  }
  .linx-redesign-mobile-search-wrapper .linx-redesign-mobile-search-input button:hover {
    background-color: #489afa;
    color: #fff;
  }
  .linx-redesign-mobile-search-wrapper .linx-redesign-mobile-search-input .linx-redesign-search-input {
    margin: 0 0 15px 0;
  }
  .linx-redesign-mobile-search-wrapper .linx-redesign-mobile-search-input .linx-redesign-search-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

footer.linx-redesign-footer {
  transition: all 0.2s ease-in-out 0s;
  background-color: #00386b;
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}
footer.linx-redesign-footer .menu-item a[href="#"] {
  cursor: default;
}
@media (min-width: 992px) {
  footer.linx-redesign-footer {
    padding: 0 0 28px 0;
  }
}
footer.linx-redesign-footer .linx-redesign-footer-copyright {
  padding: 0 0 15px 48px;
}
@media (max-width: 768px) {
  footer.linx-redesign-footer .linx-redesign-footer-copyright {
    display: flex;
    justify-content: center;
    padding: 0 15px;
  }
  footer.linx-redesign-footer .linx-redesign-footer-copyright p {
    text-align: center;
  }
}
footer.linx-redesign-footer .linx-redesign-footer-copyright p {
  margin: 0;
  font-size: 12px;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper {
  display: flex;
  justify-content: space-between;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper a {
  color: #fff;
  font-size: 12px;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner {
  margin: 48px 48px 28px 48px;
  display: grid;
  justify-content: stretch;
  grid-auto-flow: column;
  width: 100%;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-logo {
  margin-bottom: 20px;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-logo img,
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-logo a {
  width: 180px;
  height: 76px;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-logo a:hover {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  -ms-opacity: 0.6;
  opacity: 0.6;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-logo img {
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-logo {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-desktop {
    display: none;
  }
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile {
  display: none;
  align-items: center;
  flex-direction: column;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile p {
  text-align: center;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile .widget-footer-telephone,
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile ul {
  margin: 0;
}
@media (max-width: 768px) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile {
    display: flex;
  }
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-desktop ul,
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile ul {
  list-style: none;
  padding: 0;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-desktop ul a,
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile ul a { /* stylelint-disable-line no-descending-specificity */
  display: inline-block;
}
@media print, screen and (max-width: 61.99875em) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-desktop ul a:hover,
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile ul a:hover {
    text-decoration: none;
    -webkit-opacity: 0.6;
    -moz-opacity: 0.6;
    -ms-opacity: 0.6;
    opacity: 0.6;
  }
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-desktop ul a.has-image p,
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile ul a.has-image p {
  display: none;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-desktop ul a img,
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-contact-mobile ul a img {
  width: 40px;
  height: 40px;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper {
  display: grid;
  justify-content: space-evenly;
  grid-auto-flow: column;
  width: 100%;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper i {
  display: none;
}
@media print, screen and (max-width: 63.99875em) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper {
    justify-content: normal;
  }
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu {
  margin: 0;
}
@media print, screen and (max-width: 63.99875em) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu {
    padding-left: 0;
  }
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li {
  list-style: none;
  cursor: pointer;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li > a {
  display: inline-block;
  font-size: 14px;
  padding: 8px 0 20px 0;
  font-weight: 700;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li .sub-menu {
  padding: 0;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li .sub-menu li {
  list-style: none;
  cursor: pointer;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li .sub-menu li a {
  line-height: 1;
  margin-bottom: 10px;
}
footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li .sub-menu a:hover {
  text-decoration: none;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  -ms-opacity: 0.6;
  opacity: 0.6;
}
@media (max-width: 768px) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper {
    grid-auto-flow: row;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu .sub-menu {
    display: none;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu {
    padding: 0;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children {
    position: relative;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children i {
    display: inline;
    position: absolute;
    right: 0;
    top: 14px;
    color: #fff;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.footer-menu-open a,
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.footer-menu-open i, footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.active a,
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.active i {
    color: #fff;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.footer-menu-open > .sub-menu, footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.active > .sub-menu {
    display: block;
    background-color: #4778a6;
    padding: 20px 30px;
    margin: 0 -48px;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.footer-menu-open > .sub-menu li, footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.active > .sub-menu li {
    padding: 0 0 7px 0;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.footer-menu-open > .sub-menu li a:hover, footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.active > .sub-menu li a:hover {
    text-decoration: underline;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.footer-menu-open > i, footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children.active > i {
    transform: rotate(180deg);
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children {
    /* stylelint-disable no-descending-specificity */
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children:hover:not(.footer-menu-open) > a,
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children:hover:not(.footer-menu-open) > i {
    color: #181818;
  }
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner .linx-redesign-footer-menu-wrapper .linx-redesign-footer-menu > li.menu-item-has-children {
    /* stylelint-enable no-descending-specificity */
  }
}
@media (max-width: 991px) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner {
    grid-auto-flow: row;
  }
}
@media (min-width: 992px) {
  footer.linx-redesign-footer .linx-redesign-footer-column-wrapper .linx-redesign-footer-inner {
    grid-template-columns: 3fr 8fr;
  }
}

.linx-scroll-to-top {
  position: fixed;
  bottom: -60px;
  right: 0;
  padding: 0;
  opacity: 0;
  transition: bottom 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
  z-index: 200;
}
.linx-scroll-to-top.visible {
  bottom: 0;
  opacity: 1;
}
.linx-scroll-to-top button,
.linx-scroll-to-top button:hover,
.linx-scroll-to-top button:active,
.linx-scroll-to-top button:focus {
  color: #fff;
  background-color: #00386b;
  width: 60px;
  height: 60px;
  font-size: 20px;
  display: block;
  padding: 15px;
  text-align: center;
  outline: none;
  border: none;
  background-image: none;
  border-radius: 0;
}
@media print, screen and (max-width: 61.99875em) {
  .linx-scroll-to-top button,
  .linx-scroll-to-top button:hover,
  .linx-scroll-to-top button:active,
  .linx-scroll-to-top button:focus {
    width: 100%;
    height: auto;
    font-size: 14px;
    border-top: 1px solid #1d528f;
  }
}
@media print, screen and (max-width: 61.99875em) {
  .linx-scroll-to-top {
    position: initial;
    opacity: 1;
  }
}

.sticky {
  display: block;
}

.hentry {
  margin: 0;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 24px;
}

.site-main {
  background: #fff;
}

.linx-redesign-pagination {
  text-align: center;
}

/* stylelint-disable -- Remove this as you update the menu styles. */
/*==============================
          Main Menu
===============================*/
.linx-redesign-main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.linx-redesign-main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.linx-redesign-main-navigation ul ul {
  float: left;
  position: absolute;
  top: 35px;
  left: -999em;
  z-index: 99999;
  background: #fff;
}
.linx-redesign-main-navigation ul ul ul {
  left: -999px;
  top: 0;
}
.linx-redesign-main-navigation ul ul li:hover > ul, .linx-redesign-main-navigation ul ul li.focus > ul {
  left: 100%;
}
.linx-redesign-main-navigation ul ul a {
  width: 200px;
}
.linx-redesign-main-navigation ul ul:hover > a, .linx-redesign-main-navigation ul ul.focus > a {
  color: #3b84d7;
}
.linx-redesign-main-navigation ul li:hover > ul,
.linx-redesign-main-navigation ul li.focus > ul {
  left: auto;
}
.linx-redesign-main-navigation li {
  float: left;
}
.linx-redesign-main-navigation li:hover > a, .linx-redesign-main-navigation li.focus > a {
  color: #3b84d7;
}
.linx-redesign-main-navigation a {
  display: block;
  text-decoration: none;
  padding: 10px;
}
.linx-redesign-main-navigation .current_page_item > a,
.linx-redesign-main-navigation .current-menu-item > a,
.linx-redesign-main-navigation .current_page_ancestor > a {
  color: #3b84d7;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 24px;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/* stylelint-enable */
.comment-content::before, .comment-content::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.comment-content::after {
  clear: both;
}
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
}
.comments-area .comment-author img {
  float: left;
  margin-right: 15px;
}
.comments-area .comment-author .url {
  color: #424242;
  text-transform: capitalize;
}
.comments-area li.comment {
  border-bottom: 1px solid #eff3f6;
  overflow: hidden;
  margin-bottom: 25px;
}
.comments-area li.comment:last-child {
  border-bottom: none;
}
.comments-area .comment-body {
  margin-bottom: 20px;
}
.comments-area .comment-body p {
  margin-bottom: 5px;
}
.comments-area ol.children {
  margin-bottom: 0;
}

.comment-form-comment textarea {
  width: 100%;
}

.widget {
  margin: 0 0 20px;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}

.widget-sidebar {
  background: #fff;
  clear: both;
  padding: 10px;
}

/* Search widget. */
.widget-search .search-submit {
  display: none;
}

.widget-title {
  font-size: 22px;
  line-height: 30px;
}

.wp-block-linx-features-horizontal-content {
  width: 100%;
}
.wp-block-linx-features-horizontal-content .wp-block-group {
  padding-top: 95px;
  padding-bottom: 95px;
}
@media only screen and (max-width: 568px) {
  .wp-block-linx-features-horizontal-content .wp-block-group {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.wp-block-linx-features-horizontal-content .wp-block-columns {
  margin-bottom: 0;
  grid-gap: var(--column-gap);
  gap: var(--column-gap);
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-horizontal-content .wp-block-columns {
    grid-gap: 20px;
    gap: 20px;
  }
}
.wp-block-linx-features-horizontal-content.is-style-media-right .wp-block-columns {
  flex-direction: row-reverse;
}
.wp-block-linx-features-horizontal-content .wp-block-heading {
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-horizontal-content .wp-block-heading {
    font-size: 30px;
  }
}
@media only screen and (max-width: 568px) {
  .wp-block-linx-features-horizontal-content .wp-block-heading {
    font-size: 25px;
  }
}
.wp-block-linx-features-horizontal-content .wp-block-image {
  margin-bottom: 0;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-horizontal-content .wp-block-image {
    text-align: center;
  }
}
.wp-block-linx-features-horizontal-content .wp-block-image img {
  aspect-ratio: 380/285;
  object-fit: cover;
  width: 100%;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-horizontal-content .wp-block-image img {
    aspect-ratio: 720/540;
  }
}
.wp-block-linx-features-horizontal-content .wp-block-buttons {
  margin-top: 30px;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-horizontal-content .wp-block-buttons.is-layout-flex {
    justify-content: center;
  }
}

.entry-content .wp-block-linx-features-horizontal-content {
  max-width: none;
}

.wp-block-linx-features-embed video.linx-embed-internal-video {
  width: 100%;
  height: auto;
  aspect-ratio: 1.778;
  max-height: calc(100vh - 132px);
}
.wp-block-linx-features-embed .jetpack-video-wrapper {
  margin-bottom: 0;
}
.wp-block-linx-features-embed .linx-modal__body { /* stylelint-disable-line selector-class-pattern */ }
.wp-block-linx-features-embed .linx-modal__body iframe {
  width: 100% !important; /* stylelint-disable-line declaration-no-important */
  height: auto !important; /* stylelint-disable-line declaration-no-important */
  aspect-ratio: 1.778;
  max-height: calc(100vh - 132px);
}
.wp-block-linx-features-embed .linx-embed__video__poster { /* stylelint-disable-line selector-class-pattern */
  position: relative;
  cursor: pointer;
}
.wp-block-linx-features-embed .linx-embed__video__poster img {
  aspect-ratio: 380/285;
  object-fit: cover;
  width: 100%;
}
.wp-block-linx-features-embed .linx-embed__video__poster .ion-ios-play {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 140px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
}
.wp-block-linx-features-embed .linx-embed__video__poster .ion-ios-play:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
@media print, screen and (max-width: 74.99875em) {
  .wp-block-linx-features-embed .linx-embed__video__poster .ion-ios-play {
    font-size: 100px;
  }
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-embed .linx-embed__video__poster .ion-ios-play {
    font-size: 60px;
  }
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-embed .linx-embed__video__poster {
    aspect-ratio: 720/540;
  }
}

.wp-block-linx-features-vertical-cards .vertical-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-vertical-cards .vertical-cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 568px) {
  .wp-block-linx-features-vertical-cards .vertical-cards-wrapper {
    grid-template-columns: 1fr;
  }
}
.wp-block-linx-features-vertical-cards .vertical-card-show-more {
  display: flex;
  justify-content: center;
}
.wp-block-linx-features-vertical-cards .vertical-card-show-more-button {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #00386b;
  min-width: auto;
  background: #fff;
}
.wp-block-linx-features-vertical-cards .vertical-card-show-more-button:hover {
  background: #f7f9fa;
  color: #000;
}
.wp-block-linx-features-vertical-cards .vertical-card-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 #aaa;
  position: relative;
  transition: all 0.6s;
  transform: translate(0, 0);
}
.wp-block-linx-features-vertical-cards .vertical-card-container.is-hidden {
  transform: translate(0, -100%);
}
.wp-block-linx-features-vertical-cards .vertical-card-container-wrapper {
  overflow: hidden;
  padding: 2px;
}
.wp-block-linx-features-vertical-cards .vertical-card-container-wrapper.is-hidden {
  display: none;
}
.wp-block-linx-features-vertical-cards .vertical-card-container-wrapper.is-hidden .vertical-card-container {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -100%);
}
.wp-block-linx-features-vertical-cards .vertical-card-data-wrapper {
  text-align: center;
  width: 100%;
}
.wp-block-linx-features-vertical-cards .vertical-card-button-wrapper {
  margin-bottom: 30px;
}
.wp-block-linx-features-vertical-cards .vertical-card-feature-image {
  aspect-ratio: 300/256;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.wp-block-linx-features-vertical-cards .vertical-card-title {
  margin: 20px 0 0 0;
  font-size: 21px;
  padding: 0 25px;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-align: center;
  color: #00386b;
  width: 100%;
  max-width: 100%;
}
.wp-block-linx-features-vertical-cards .vertical-card-title a {
  color: #00386b;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-vertical-cards .vertical-card-title {
    font-size: 18px;
  }
}
.wp-block-linx-features-vertical-cards .vertical-card-excerpt {
  margin: 10px 0 0 0;
  padding-left: 30px;
  padding-right: 30px;
  color: #00386b;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  max-width: 100%;
  font-size: 14px;
}
.wp-block-linx-features-vertical-cards .vertical-card-button {
  margin-top: 10px;
  padding-left: 25px;
  padding-right: 25px;
  box-shadow: 1px 1px 2px 0 #000305;
}

.wp-block-linx-features-product-hero-carousel {
  padding-right: 0 !important; /* stylelint-disable-line declaration-no-important */
  padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper {
    display: block;
  }
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-basis: 42%;
  padding-right: 15px;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper {
    display: block;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper {
    flex-basis: 43.196%;
  }
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper {
    flex-basis: 100%;
    padding-right: 0;
    display: block;
  }
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper .product-hero-carousel-data {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper .product-hero-carousel-data .product-hero-carousel-para {
  font-size: 14px;
  color: #5d6b78;
  line-height: 1.6;
  margin: 0;
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper .product-hero-carousel-header {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 54px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #00386b;
}
@media print, screen and (max-width: 74.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper .product-hero-carousel-header {
    font-size: 35px;
  }
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper .product-hero-carousel-header {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper .product-hero-carousel-header {
    font-size: 24px;
  }
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper .product-hero-carousel-sub-header {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #00386b;
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper .product-hero-carousel-button {
  margin-top: 30px;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-data-wrapper .product-hero-carousel-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-main-image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  flex-basis: 58%;
  padding-left: 15px;
}
@media print, screen and (max-width: 74.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-main-image-wrapper {
    flex-basis: 56.804%;
  }
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-main-image-wrapper {
    display: none;
  }
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-main-image-wrapper .is-linx-modal-toggle {
  width: 100%;
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-main-image-wrapper img.product-hero-carousel-main-image {
  border-radius: 10px;
  transition: all 0.4s ease-in-out 0s;
  aspect-ratio: 547/331.8;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}
.wp-block-linx-features-product-hero-carousel .product-hero-carousel-wrapper .product-hero-carousel-main-image-wrapper img.product-hero-carousel-main-image.is-linx-animation-fade-in.animate {
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper {
  background-color: #00386b;
  cursor: default;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper {
    display: none;
  }
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper .product-hero-image-carousel-inner-wrapper {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper .product-hero-image-carousel {
  margin: 0 50px;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper .product-hero-image-carousel .product-hero-carousel-image-cover img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  width: 83%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper,
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper {
  cursor: pointer;
  /* stylelint-disable selector-class-pattern */
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper .glide__arrow.glide__arrow--left,
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--left,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--left {
  left: 0;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper .glide__arrow.glide__arrow--right,
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--right,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--right {
  right: 0;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper .glide__arrow.glide__arrow--left,
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper .glide__arrow.glide__arrow--right,
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--left,
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--right,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--left,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--right {
  outline: none;
  background-color: rgba(255, 255, 255, 0.4);
  background-image: none;
  box-shadow: none;
  border: none;
  border-radius: 50%;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  font-size: 16px;
  color: #00386b;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper .glide__arrow.glide__arrow--left:hover,
.wp-block-linx-features-product-hero-carousel .product-hero-image-carousel-wrapper .glide__arrow.glide__arrow--right:hover,
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--left:hover,
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--right:hover,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--left:hover,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--right:hover {
  background-color: #fff;
}
.wp-block-linx-features-product-hero-carousel {
  /* stylelint-disable no-descending-specificity */
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper img,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-modal-carousel-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .product-hero-modal-carousel-image-cover,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-modal-carousel-wrapper .product-hero-modal-carousel-image-cover {
  text-align: center;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .product-hero-image-modal-carousel,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-modal-carousel-wrapper .product-hero-image-modal-carousel {
  margin: 0 50px;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--left,
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--right,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-modal-carousel-wrapper .glide__arrow.glide__arrow--left,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-modal-carousel-wrapper .glide__arrow.glide__arrow--right {
  background-color: transparent;
  font-size: 30px;
  color: #fff;
}
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--left:hover,
.wp-block-linx-features-product-hero-carousel .product-hero-image-modal-carousel-wrapper .glide__arrow.glide__arrow--right:hover,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-modal-carousel-wrapper .glide__arrow.glide__arrow--left:hover,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-modal-carousel-wrapper .glide__arrow.glide__arrow--right:hover {
  background-color: transparent;
  color: #3b84d7;
}
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper {
  display: none;
  margin-bottom: 30px;
}
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .product-hero-mobile-carousel-image-cover img {
  aspect-ratio: 690/418;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--left {
  left: 0;
  border-radius: 0 15px 15px 0;
}
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--right {
  right: 0;
  border-radius: 15px 0 0 15px;
}
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--left,
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__arrow.glide__arrow--right {
  height: 30px;
  padding: 0;
  width: 50px;
}
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__bullets .glide__bullet {
  display: none;
  background-color: rgba(24, 24, 24, 0.4);
  border: none;
  box-shadow: none;
  background-image: none;
  width: 12px;
  height: 12px;
}
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__bullets .glide__bullet.glide__bullet--active {
  background-color: #181818;
}
@media only screen and (max-width: 768px) {
  .wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .glide__bullets .glide__bullet {
    display: inline-block;
  }
}
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .product-hero-mobile-image-modal-carousel-wrapper .product-hero-mobile-modal-carousel-image-cover {
  align-self: center;
}
.wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper .product-hero-mobile-image-modal-carousel-wrapper .glide__bullets .glide__bullet {
  display: none;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-product-hero-carousel .product-hero-mobile-image-carousel-wrapper {
    display: block;
  }
}
.wp-block-linx-features-product-hero-carousel .social-share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: 1;
  margin-top: 30px;
}
.wp-block-linx-features-product-hero-carousel .social-share.is-social-share-mobile {
  display: none;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-product-hero-carousel .social-share.is-social-share-mobile {
    display: flex;
    justify-content: flex-start;
  }
}
.wp-block-linx-features-product-hero-carousel .social-share .share-text {
  display: inline-block;
  font-weight: 700;
  color: #00386b;
  text-align: right;
  margin-right: 20px;
}
.wp-block-linx-features-product-hero-carousel .social-share .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.wp-block-linx-features-product-hero-carousel .social-share .social-icons li {
  margin: 0 5px 0 0;
  display: inline-block;
  position: relative;
  line-height: 1;
}
.wp-block-linx-features-product-hero-carousel .social-share .social-icons li a {
  display: block;
  float: left;
  text-indent: -9999px;
  width: 36px;
  height: 36px;
  background-image: url(../images/social-sprite-blue-on-ret.png);
  background-repeat: no-repeat;
  background-size: auto 36px;
  text-decoration: none;
  color: #00386b;
  outline: none;
}
.wp-block-linx-features-product-hero-carousel .social-share .social-icons li.twitter a {
  background-image: url(../images/twitter-x-logo-blue.png);
}
.wp-block-linx-features-product-hero-carousel .social-share .social-icons li.linkedin a {
  background-position: -72px top;
}
.wp-block-linx-features-product-hero-carousel .social-share .social-icons li.email a {
  background-position: -108px top;
}

.wp-block-linx-features-image-carousel {
  /* stylelint-disable selector-class-pattern, no-descending-specificity */
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .linx-image-carousel .glide__slides .linx-image-carousel__image {
  position: relative;
  cursor: pointer;
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .linx-image-carousel .glide__slides .linx-image-carousel__image img {
  aspect-ratio: 240/180;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .linx-image-carousel .glide__slides .linx-image-carousel__image .ion-arrow-expand {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 60px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .linx-image-carousel .glide__slides .linx-image-carousel__image .ion-arrow-expand:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.75);
}
@media print, screen and (max-width: 74.99875em) {
  .wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .linx-image-carousel .glide__slides .linx-image-carousel__image .ion-arrow-expand {
    font-size: 50px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .linx-image-carousel .glide__slides .linx-image-carousel__image .ion-arrow-expand {
    font-size: 40px;
  }
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .glide__arrows .glide__arrow.glide__arrow--left {
  left: 0;
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .glide__arrows .glide__arrow.glide__arrow--right {
  right: 0;
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .glide__arrows .glide__arrow.glide__arrow--left,
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .glide__arrows .glide__arrow.glide__arrow--right {
  outline: none;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: none;
  box-shadow: none;
  border: none;
  border-radius: 50%;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  font-size: 16px;
  color: #00386b;
  padding: 8px 12px;
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .glide__arrows .glide__arrow.glide__arrow--left:hover,
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .glide__arrows .glide__arrow.glide__arrow--right:hover {
  background-color: #fff;
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .glide__arrows .ion-chevron-right,
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper .glide__arrows .ion-chevron-left {
  line-height: inherit;
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper.is-not-carousel .linx-image-carousel {
  width: min-content;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .wp-block-linx-features-image-carousel .linx-image-carousel__wrapper.is-not-carousel .linx-image-carousel {
    width: auto;
  }
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper.is-not-carousel .linx-image-carousel .linx-image-carousel__image {
  flex-shrink: initial;
  width: 242.5px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .wp-block-linx-features-image-carousel .linx-image-carousel__wrapper.is-not-carousel .linx-image-carousel .linx-image-carousel__image {
    width: 100%;
  }
}
.wp-block-linx-features-image-carousel .linx-image-carousel__wrapper.is-not-carousel .linx-image-carousel ~ .glide__arrows {
  display: none;
}
.wp-block-linx-features-image-carousel .linx-modal {
  cursor: default;
}
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper {
  cursor: default;
}
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper .linx-image-modal-carousel {
  margin: 0 50px;
  cursor: grab;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper .linx-image-modal-carousel {
    margin: 0;
  }
}
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper .linx-image-modal-carousel .glide__slides .linx-image-modal-carousel__image {
  text-align: center;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper .linx-image-modal-carousel .glide__slides .linx-image-modal-carousel__image {
    align-self: center;
  }
}
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper .glide__arrows {
  display: block;
}
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper .glide__arrows .glide__arrow.glide__arrow--left,
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper .glide__arrows .glide__arrow.glide__arrow--right {
  background-color: transparent;
  font-size: 30px;
  color: #fff;
}
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper .glide__arrows .glide__arrow.glide__arrow--left:hover,
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper .glide__arrows .glide__arrow.glide__arrow--right:hover {
  background-color: transparent;
  color: #3b84d7;
}
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper.is-not-carousel .linx-image-modal-carousel {
  margin: 0;
  cursor: default;
}
.wp-block-linx-features-image-carousel .linx-image-modal-carousel-wrapper.is-not-carousel .glide__arrows {
  display: none;
}

.wp-block-linx-features-resource-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wp-block-linx-features-resource-cards.alignleft {
  align-items: flex-start;
}
.wp-block-linx-features-resource-cards.alignright {
  align-items: flex-end;
}
.wp-block-linx-features-resource-cards .resource-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 50px;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-resource-cards .resource-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-linx-features-resource-cards .resource-cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wp-block-linx-features-resource-cards .resource-cards-container.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .wp-block-linx-features-resource-cards .resource-cards-container.columns-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wp-block-linx-features-resource-cards .resource-cards-container.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 768px) {
  .wp-block-linx-features-resource-cards .resource-cards-container.columns-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wp-block-linx-features-resource-cards .resource-cards-container.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.wp-block-linx-features-resource-cards .resource-cards-container .resource-card-data-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.wp-block-linx-features-resource-cards .resource-cards-container .resource-card-image {
  margin-bottom: 15px;
  aspect-ratio: 1/1;
  max-width: 100%;
  width: 80px;
  height: 80px;
  transition: height 0.2s linear;
  transition-delay: 0.2s;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-resource-cards .resource-cards-container .resource-card-image {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-linx-features-resource-cards .resource-cards-container .resource-card-image {
    width: calc((100vw - 50px) * 30 / 100);
    height: calc((100vw - 50px) * 30 / 100);
  }
  .wp-block-linx-features-resource-cards .resource-cards-container .resource-card-image img {
    width: calc((100vw - 50px) * 30 / 100);
    height: calc((100vw - 50px) * 30 / 100);
  }
}
.wp-block-linx-features-resource-cards .resource-cards-container .resource-card-title {
  font-size: 14px;
  line-height: 1.2;
  margin: 8px 0 20px;
  color: #5d6b78;
  font-weight: 400;
}
.wp-block-linx-features-resource-cards .resource-cards-container .resource-card-button a,
.wp-block-linx-features-resource-cards .resource-cards-container .resource-card-button button {
  padding-left: 25px;
  padding-right: 25px;
  line-height: 1.4;
  white-space: nowrap;
  -webkit-user-select: none;
          user-select: none;
}
.wp-block-linx-features-resource-cards .resource-cards-container .resource-cards-container,
.wp-block-linx-features-resource-cards .resource-cards-container .resource-card-title,
.wp-block-linx-features-resource-cards .resource-cards-container .resource-card-button a,
.wp-block-linx-features-resource-cards .resource-cards-container .resource-card-button button,
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card,
.wp-block-linx-features-resource-cards .resource-cards-container .resource-card-wrapper {
  transition: all 0.2s linear;
}
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card {
  margin-bottom: 50px;
}
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card .resource-card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-bottom: 2px;
  padding-right: 2px;
  height: 100%;
}
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden {
  margin-bottom: 0;
  transition: none;
}
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-cards-container,
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-title,
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-button a,
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-button button,
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .wp-block-linx-features-resource-card,
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-wrapper {
  transition: none;
}
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-wrapper .resource-card-data-wrapper {
  height: 0;
}
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-wrapper .resource-card-image {
  height: 0;
  width: 0;
}
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-wrapper .resource-card-title {
  height: 0;
  font-size: 0;
  margin: 0;
}
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-wrapper .resource-card-button {
  height: 0;
}
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-wrapper .resource-card-button a,
.wp-block-linx-features-resource-cards .resource-cards-container .wp-block-linx-features-resource-card.hidden .resource-card-wrapper .resource-card-button button {
  height: 0;
  padding: 0;
}
.wp-block-linx-features-resource-cards .show-more {
  align-self: center;
}
.wp-block-linx-features-resource-cards .show-more.hidden {
  display: none;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/* stylelint-disable selector-class-pattern */
.wp-block-linx-features-hero {
  max-width: 100% !important;
}
.wp-block-linx-features-hero.glide .wp-block-cover .wp-block-cover__inner-container {
  padding-left: 50px;
  padding-right: 50px;
}
@media print, screen and (max-width: 63.99875em) {
  .wp-block-linx-features-hero.glide .wp-block-cover .wp-block-cover__inner-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.wp-block-linx-features-hero.glide .glide__slides {
  display: flex;
}
.wp-block-linx-features-hero.glide .glide__slides .block-editor-inner-blocks {
  width: 100%;
}
.wp-block-linx-features-hero.glide .glide__slides .block-editor-inner-blocks .block-editor-block-list__layout {
  display: flex;
}
.wp-block-linx-features-hero.glide .glide__slides .block-editor-inner-blocks .block-editor-block-list__layout .wp-block-cover .block-editor-block-list__layout {
  flex-direction: column;
}
.wp-block-linx-features-hero.glide .glide__slides h2 {
  font-size: 36px;
}
.wp-block-linx-features-hero.glide .glide__slides h3 {
  font-size: 28px;
}
@media print, screen and (max-width: 61.99875em) {
  .wp-block-linx-features-hero.glide .glide__slides h3 {
    font-size: 18px;
  }
}
.wp-block-linx-features-hero.glide .glide__arrows .glide-prev-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  z-index: 200;
  border: 0 none;
  cursor: pointer;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8) none;
  color: #00386b;
  border-radius: 50%;
}
@media print, screen and (max-width: 63.99875em) {
  .wp-block-linx-features-hero.glide .glide__arrows .glide-prev-arrow {
    width: 30px;
    height: 30px;
    padding: 0;
  }
}
.wp-block-linx-features-hero.glide .glide__arrows .glide-prev-arrow::before {
  content: "\f124";
  display: inline-block;
  font-family: Ionicons, "Open Sans", sans-serif;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  padding-right: 2px;
}
.wp-block-linx-features-hero.glide .glide__arrows .glide-next-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  z-index: 200;
  border: 0 none;
  cursor: pointer;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8) none;
  color: #00386b;
  border-radius: 50%;
  right: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wp-block-linx-features-hero.glide .glide__arrows .glide-next-arrow {
    width: 30px;
    height: 30px;
    padding: 0;
  }
}
.wp-block-linx-features-hero.glide .glide__arrows .glide-next-arrow::before {
  content: "\f125";
  display: inline-block;
  font-family: Ionicons, "Open Sans", sans-serif;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  padding-left: 2px;
}
.wp-block-linx-features-hero.glide .glide__bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 12px;
  height: 12px;
  transition: background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
}
.wp-block-linx-features-hero.glide .glide__bullet--active {
  background: #fff;
}
.wp-block-linx-features-hero .is-scroll-to-content {
  display: flex;
  flex-direction: column;
}
.wp-block-linx-features-hero .mouse-scroll {
  position: absolute;
  width: 21px;
  height: 35px;
  margin: 0 auto;
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-radius: 10px;
  z-index: 1;
  cursor: pointer;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.wp-block-linx-features-hero .mouse-scroll::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 7px;
  width: 3px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  animation-iteration-count: infinite;
  animation-duration: 1.25s;
  animation-delay: 3s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}
@media print, screen and (max-width: 74.99875em) {
  .wp-block-linx-features-hero .mouse-scroll {
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg) translateX(-50%);
    -webkit-transform: rotate(45deg) translateX(-50%);
    width: 14px;
    height: 14px;
    border-color: solid #fff;
    border-radius: 0;
    z-index: 1;
    cursor: pointer;
    bottom: 50px;
    left: 50%;
    animation: fadeIn 3s;
  }
  .wp-block-linx-features-hero .mouse-scroll::before {
    content: none;
  }
  .wp-block-linx-features-hero .mouse-scroll:hover {
    border-color: #00386b;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* The Contact Us Form */
/* stylelint-disable selector-class-pattern,
font-family-no-missing-generic-family-keyword,
font-family-name-quotes */
.linx-contact-us-form_wrapper {
  padding: 0 0 0 15px;
}

.wp-block-linx-features-content-slider .content-slide-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
.wp-block-linx-features-content-slider .content-slide-image img {
  aspect-ratio: 465/348;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media print, screen and (max-width: 74.99875em) {
  .wp-block-linx-features-content-slider .content-slide-image img {
    aspect-ratio: 455/341;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wp-block-linx-features-content-slider .content-slide-image img {
    aspect-ratio: 663/497;
  }
}
.wp-block-linx-features-content-slider .content-slide-title {
  white-space: initial;
}
.wp-block-linx-features-content-slider .content-slide-date {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-linx-features-content-slider .wp-block-linx-features-content-slide { /* stylelint-disable-line selector-class-pattern */
  padding-right: 10px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wp-block-linx-features-content-slider .glide__arrows { /* stylelint-disable-line selector-class-pattern */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
.wp-block-linx-features-content-slider .glide__arrows__bottom {
  display: none;
  margin-top: 30px;
}
@media print, screen and (max-width: 63.99875em) {
  .wp-block-linx-features-content-slider .glide__arrows__bottom {
    display: flex;
  }
  .wp-block-linx-features-content-slider .glide__arrows__top {
    display: none;
  }
}
.wp-block-linx-features-content-slider .glide__arrows button {
  color: #00386b;
  border-radius: 50%;
  outline: none;
  transition: all 0.2s ease-in-out;
  width: 40px;
  height: 40px;
  font-size: 16px;
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  background-image: none;
  padding: 0;
}
.wp-block-linx-features-content-slider .glide__arrows button:hover {
  background-color: #fff;
}
@media print, screen and (max-width: 63.99875em) {
  .wp-block-linx-features-content-slider .glide__arrows button {
    width: 30px;
    height: 30px;
  }
}
.wp-block-linx-features-content-slider .glide__arrows button.glide__arrow--left { /* stylelint-disable-line selector-class-pattern */
  margin-right: 4px;
}
