.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
}
@media (max-width: 1240px) {
  .row {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

.row.natural-height {
  align-items: flex-start;
}

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

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 20px;
}

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

.first {
  order: -1;
}

.last {
  order: 1;
}

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

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

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

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

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

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 20px;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 20px;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 20px;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 20px;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 20px;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 20px;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 20px;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 20px;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 20px;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 20px;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 20px;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 20px;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 20px;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

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

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

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

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

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

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 20px;
  }

  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 20px;
  }

  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 20px;
  }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 20px;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 20px;
  }

  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 20px;
  }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 20px;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 20px;
  }

  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 20px;
  }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 20px;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 20px;
  }

  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 20px;
  }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .row.start-sm {
    justify-content: flex-start;
  }

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

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

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

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

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

  .row.around-sm {
    justify-content: space-around;
  }

  .row.between-sm {
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 65rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 20px;
  }

  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 20px;
  }

  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 20px;
  }

  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 20px;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 20px;
  }

  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 20px;
  }

  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 20px;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 20px;
  }

  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 20px;
  }

  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 20px;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 20px;
  }

  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 20px;
  }

  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .row.start-md {
    justify-content: flex-start;
  }

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

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

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

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

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

  .row.around-md {
    justify-content: space-around;
  }

  .row.between-md {
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 20px;
  }

  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 20px;
  }

  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 20px;
  }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 20px;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 20px;
  }

  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 20px;
  }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 20px;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 20px;
  }

  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 20px;
  }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 20px;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 20px;
  }

  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 20px;
  }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .row.start-lg {
    justify-content: flex-start;
  }

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

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

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

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

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

  .row.around-lg {
    justify-content: space-around;
  }

  .row.between-lg {
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 20px;
  }

  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 20px;
  }

  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 20px;
  }

  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }

  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 20px;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 20px;
  }

  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 20px;
  }

  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }

  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 20px;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 20px;
  }

  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 20px;
  }

  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }

  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 20px;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 20px;
  }

  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 20px;
  }

  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }

  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .col-xl-offset-12 {
    margin-left: 100%;
  }

  .row.start-xl {
    justify-content: flex-start;
  }

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

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

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

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

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

  .row.around-xl {
    justify-content: space-around;
  }

  .row.between-xl {
    justify-content: space-between;
  }

  .first-xl {
    order: -1;
  }

  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 20px;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }

  .row.show-xs-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }

  .row.show-sm {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block !important;
  }

  .row.show-sm-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block !important;
  }

  .row.show-md {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }

  .row.show-md-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }

  .row.show-lg {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }

  .row.show-lg-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }

  .row.show-xl {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-xl {
    display: none !important;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[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 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
  outline: none;
}

html,
body {
  overscroll-behavior-y: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #24242E;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
optgroup,
select,
textarea {
  font-family: "Open Sans", sans-serif;
}

select {
  height: 60px;
  max-width: 100%;
  border-radius: 0;
  display: block;
  padding: 14px 20px;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg width='20px' viewBox='0 0 20 10' version='1.1' xmlns='http://www.w3.org/2000/svg'><path d='M19.3784215,0.252577937 C19.0588292,-0.0670143828 18.5422169,-0.0670143828 18.2226245,0.252577937 L9.80904349,8.66612067 L1.39550076,0.252577937 C1.07590844,-0.0670143828 0.559296138,-0.0670143828 0.239703819,0.252577937 C-0.0798885009,0.572170256 -0.0798885009,1.08878256 0.239703819,1.40837488 L9.23116418,10.3998352 C9.39055802,10.5592291 9.59980076,10.6393475 9.80908181,10.6393475 C10.0183629,10.6393475 10.2276056,10.5592291 10.3869994,10.3998352 L19.3784598,1.40837488 C19.6980138,1.08878256 19.6980138,0.572170256 19.3784215,0.252577937 Z' id='Path'></path></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 14px);
  background-position-y: center;
  font-family: "Poppins";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  border: none;
  outline: 0;
  border: none;
  box-shadow: none;
  cursor: pointer;
}
select::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  padding-top: 20px;
}
select::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
select::-webkit-scrollbar-thumb {
  background: #000;
  border: 0px none #ffffff;
  border-radius: 52px;
}
select::-webkit-scrollbar-track {
  background: #ccccd9;
  border: 0px none #ffffff;
  border-radius: 50px;
}
select::-webkit-scrollbar-corner {
  background: transparent;
}
select :focus {
  outline: 0;
}
select option {
  background: rgba(36, 36, 46, 0.9);
  color: #fff;
  cursor: pointer;
}
select option[disabled] {
  color: rgba(255, 255, 255, 0.7);
}

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: cursive;
}

textarea,
input[type=search],
input[type=text],
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

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

a {
  color: #FF8106;
  cursor: pointer;
  text-decoration: none;
}
a strong {
  color: currentColor;
}
a:hover {
  color: #FF8106;
}

code {
  background-color: #ddd;
  color: #24242E;
  font-size: 14px;
  font-weight: normal;
  padding: 5px;
}

hr {
  background-color: transparent;
  border: none;
  display: block;
  height: 1px;
  margin: 10px 0;
}

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

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

small {
  font-size: 10px;
}

span {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  color: #24242E;
  font-weight: bold;
}

fieldset {
  border: none;
}

pre {
  -webkit-overflow-scrolling: touch;
  background-color: #eee;
  color: #24242E;
  font-size: 14px;
  overflow-x: auto;
  padding: 5px;
  white-space: pre;
  word-wrap: normal;
}
pre code {
  background-color: transparent;
  color: currentColor;
  font-size: 14px;
  padding: 0;
}

table td,
table th {
  vertical-align: top;
}
table td:not([align]),
table th:not([align]) {
  text-align: inherit;
}
table th {
  color: #24242E;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

.h1 {
  font-size: 2.25rem;
  line-height: 2.81rem;
}
@media (max-width: 768px) {
  .h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

.h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 768px) {
  .h2 {
    font-size: 21px;
    line-height: 32px;
  }
}

.h3 {
  font-size: 1.5rem;
  line-height: 2.06rem;
}
@media (max-width: 768px) {
  .h3 {
    font-size: 18px;
    line-height: 24px;
  }
}

.h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .h4 {
    line-height: 22px;
  }
}

.h5 {
  font-size: 11px;
  line-height: 16px;
}

.h6 {
  font-size: 1.38rem;
  line-height: 1rem;
}

.container {
  max-width: 1200px;
  flex: 1;
  margin: auto;
}
@media (max-width: 1240px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section-heading {
  font-size: 36px;
}

.view-all {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: underline;
  color: #24242E;
  text-decoration-color: #FF8106;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hs-baymax-editor body {
  padding: 0 !important;
}
.hs-baymax-editor .sticky-nav,
.hs-baymax-editor .navigation {
  position: static !important;
  overflow: hidden;
}
.hs-baymax-editor .sticky-nav {
  display: none !important;
}
.hs-baymax-editor + .main-wrapper {
  margin-top: 0 !important;
}
.hs-baymax-editor + .main-wrapper:before {
  content: unset;
}

.slick-dots {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0;
}
.slick-dots ul {
  list-style: none;
  justify-content: center;
}
.slick-dots .slick-active {
  font-size: 20px;
}
.slick-dots .slick-active button {
  background: #FF8106;
  border-color: #FF8106;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  /* width: 10px; */
  /* height: 10px; */
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  border-radius: 30px;
  /* overflow: hidden; */
  /* border-color: red; */
  /* border: 1px solid; */
}
.slick-dots button {
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  border: 1px solid #8787a1;
  width: 10px;
  transition: all 0.5s ease;
  height: 10px;
  border-radius: 50px;
}

#at-cv-lightbox,
.at-cv-lightbox-background {
  display: none !important;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
}

.main-wrapper {
  position: relative;
  margin-top: 90px;
}
.main-wrapper:before {
  position: absolute;
  top: -90px;
  content: "";
  height: 90px;
  width: 100%;
  background-color: #24242E;
}
@media (max-width: 1024px) {
  .main-wrapper {
    margin-top: 70px;
  }
  .main-wrapper:before {
    top: -70px;
    height: 70px;
  }
}

.slick {
  width: 100%;
}

.hs-input {
  height: 50px;
  border: none;
  background-color: #fff;
  border-radius: 0;
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 14px 14px;
}
@media (max-width: 768px) {
  .hs-input {
    height: 40px;
    padding: 10px 14px;
  }
}

.effect-shine {
  background: linear-gradient(to right, #1b1b22 5%, #eba64a 15%, #ff8106 30%, #1b1b22 100%);
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}

.effect-shine-alt {
  background: linear-gradient(to left, #fff 5%, #eba64a 15%, #ff8106 30%, #fff 100%);
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}

.effect-bottom-gradient {
  position: relative;
}
.effect-bottom-gradient:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: 9;
  width: 100%;
  height: 4px;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to right, #ffc040 5%, #ff8106 15%, #ff8106 30%, #efd244 100%);
  background-size: 200% auto;
  animation: shine 2s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}
.blob {
  background: #ff793f;
  border-radius: 50%;
  box-shadow: 0 0 0 0 black;
  margin-right: 10px;
  height: 10px;
  width: 10px;
  transform: scale(1);
  display: inline-block;
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
  }
}
#notif-bar-control {
  position: fixed;
  top: 150px;
  left: 0;
  z-index: 10;
  background: #fff;
  border-radius: 0 20px 20px 0;
  padding: 10px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: translateX(calc(-100% + 58px));
}
#notif-bar-control.active {
  transform: translateY(0);
}
#notif-bar-control .control-header {
  display: flex;
  display: none;
  flex-direction: row-reverse;
  align-items: center;
  font-size: 16px;
  justify-content: space-between;
}
#notif-bar-control h5 {
  margin: 0;
  font-size: 16px;
}
#notif-bar-control .icon {
  margin-left: 10px;
  cursor: pointer;
  display: flex;
}
#notif-bar-control .options {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: bold;
}
#notif-bar-control .h5 {
  margin: 0;
}
#notif-bar-control svg {
  width: 40px;
  height: 40px;
}
#notif-bar-control svg path {
  fill: #FF8106;
}
#notif-bar-control label {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
}
#notif-bar-control input {
  margin-right: 10px;
}

.loading-container {
  position: relative;
  min-height: 100px;
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 0.25rem solid #e6e6e6;
  border-top-color: #FF8106;
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.jqvmap-label {
  display: none !important;
}

.is-hidden {
  display: none;
}

*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */
*::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */
/* This one works! */
*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

video::-webkit-media-controls {
  display: none !important;
}

.article p {
  margin-top: 0;
}

@keyframes slide {
  from {
    transform: translateY(-80px);
  }
  to {
    transform: translateY(0px);
  }
}
#top-navigation {
  z-index: 6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
#top-navigation.shrinked .primary-nav .row {
  height: 50px;
}
#top-navigation.shrinked .primary-nav #hs-link-logo img {
  max-width: 65%;
}
#top-navigation.shrinked .primary-nav a {
  font-size: 14px;
}
@media (max-width: 1024px) {
  #top-navigation.shrinked .primary-nav .off-canvas a {
    font-size: 16px;
  }
  #top-navigation.shrinked .primary-nav .off-canvas li {
    margin: 0;
  }
}
#top-navigation .edge {
  right: 0;
  margin-right: -30px;
}

.burger-bar {
  cursor: pointer;
  display: block;
  height: 18px;
  position: relative;
  width: 25px;
  display: none;
  z-index: 5;
}
.burger-bar span {
  background-color: currentColor;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transform-origin: center;
  transition-duration: 0.3s;
  transition-property: background-color, opacity, transform;
  transition-timing-function: ease;
  width: 100%;
  border-radius: 10px;
}
.burger-bar span:nth-child(1) {
  top: 0;
}
.burger-bar span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.burger-bar span:nth-child(3) {
  bottom: 0;
}
.burger-bar:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.burger-bar.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-bar.active span:nth-child(2) {
  opacity: 0;
}
.burger-bar.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .burger-bar {
    display: flex;
  }
}

.burger-daddy {
  display: none;
  min-width: 100px;
  padding: 15px;
  padding-right: 20px;
  margin-right: -20px;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .burger-daddy {
    display: flex;
  }
}

.primary-nav {
  background: #24242E;
  color: #fff;
}
.primary-nav .row {
  height: 90px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .primary-nav .row {
    height: 70px;
  }
}
.primary-nav__menu-wrap {
  height: 100%;
}
@media (max-width: 1024px) {
  .primary-nav__menu-wrap {
    width: 0;
    overflow: hidden;
  }
}
.primary-nav #hs-link-logo {
  display: inline-flex;
  align-items: center;
  align-items: initial;
  flex: 163px 0 0;
  max-height: 100%;
  transition: all 0.3s ease;
}
@media (max-width: 426px) {
  .primary-nav #hs-link-logo {
    flex: 120px 0 0;
  }
}
.primary-nav #hs-link-logo img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .primary-nav #hs-link-logo {
    position: relative;
    z-index: 5;
  }
}
.primary-nav .hs_cos_wrapper_type_menu,
.primary-nav .hs-menu-wrapper {
  height: 100%;
}
.primary-nav .hs-item-has-children {
  padding-right: 10px;
}
.primary-nav .hs-item-has-children:before {
  width: 0;
  height: 0;
  content: "";
  z-index: 2;
  border-top: 0.45em solid #fff;
  border-left: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.primary-nav .hs-menu-wrapper > ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.primary-nav .hs-menu-wrapper > ul a {
  display: block;
  margin: 0 10px;
}
.primary-nav .hs-menu-wrapper > ul > li {
  position: relative;
  height: 100%;
  margin-left: 25px;
}
.primary-nav .hs-menu-wrapper > ul > li a {
  font-family: "Poppins", sans-serif;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.primary-nav .hs-menu-wrapper > ul > li:hover .hs-menu-children-wrapper {
  transform: scaleY(1);
}
.primary-nav .hs-menu-wrapper > ul > li:hover .hs-menu-children-wrapper a {
  opacity: 1;
}
.primary-nav .hs-menu-wrapper > ul .hs-menu-children-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  background: rgba(27, 27, 35, 0.8);
  min-width: 240px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 8;
}
.primary-nav .hs-menu-wrapper > ul .hs-menu-children-wrapper li {
  height: unset;
}
@keyframes slurp {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.primary-nav .hs-menu-wrapper > ul .hs-menu-children-wrapper a {
  position: relative;
  padding: 14px 33px;
  margin: 0;
  height: initial;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.primary-nav .hs-menu-wrapper > ul .hs-menu-children-wrapper a:before, .primary-nav .hs-menu-wrapper > ul .hs-menu-children-wrapper a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 5px;
  height: 0;
  background: #FF8106;
}
.primary-nav .hs-menu-wrapper > ul .hs-menu-children-wrapper a:before {
  top: 0;
}
.primary-nav .hs-menu-wrapper > ul .hs-menu-children-wrapper a:after {
  bottom: 0;
  background-color: #FF8106;
  transition: height 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.primary-nav .hs-menu-wrapper > ul .hs-menu-children-wrapper a:hover:before {
  background-color: #FF8106;
  height: 100%;
  transition: height 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.primary-nav .hs-menu-wrapper > ul .hs-menu-children-wrapper a:hover:after {
  height: 100%;
  background-color: transparent;
  transition: 0s;
}
.primary-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.primary-nav a:hover {
  color: #FF8106;
}

.off-canvas {
  overflow-x: auto;
  position: fixed;
  top: 0;
  height: 100%;
  right: -100%;
  width: 0;
  background: rgba(27, 27, 34, 0.96);
  z-index: -1;
  transition: all 0.3s ease;
  width: 0;
}
.off-canvas li {
  margin: 0;
}
.off-canvas .menu {
  padding: 0;
  list-style: none;
}
.off-canvas .menu__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.off-canvas .menu__link {
  position: relative;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  height: 60px;
  align-items: center;
  color: #fff;
}
.off-canvas .menu__link.active-branch {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #FF8106;
}
.off-canvas .menu__link.active-branch .menu__icon:after {
  opacity: 0;
}
.off-canvas .menu__link.active-item {
  color: #FF8106;
}
.off-canvas .menu__link:hover, .off-canvas .menu__link:focus, .off-canvas .menu__link:active {
  color: #FF8106;
}
.off-canvas .menu__icon {
  position: absolute;
  top: 0;
  right: 20px;
  width: 25px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #FF8106;
  border-radius: 50%;
}
.off-canvas .menu__icon:before, .off-canvas .menu__icon:after {
  position: absolute;
  content: "";
  background-color: #fff;
  border-radius: 10px;
  opacity: 1;
  transition: all 0.5s ease;
}
.off-canvas .menu__icon:before {
  height: 2px;
  width: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.off-canvas .menu__icon:after {
  width: 2px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.off-canvas .menu--submenu {
  display: none;
  padding-left: 20px;
}
.off-canvas .menu--submenu .menu__link {
  height: 30px;
  padding-left: 10px;
}
.off-canvas .menu--submenu .menu__item {
  border: none;
}
.off-canvas .menu--submenu .menu__item:first-child {
  padding-top: 10px;
}
.off-canvas .menu--submenu .menu__item:last-child {
  padding-bottom: 10px;
}
.off-canvas .menu--submenu .active-branch {
  border: none;
}
@media (max-width: 1024px) {
  .off-canvas .hs-menu-wrapper > ul {
    height: unset;
  }
  .off-canvas ul {
    flex-wrap: wrap;
  }
  .off-canvas li {
    margin: 0;
    flex: 100% 1 0;
    height: unset;
  }
  .off-canvas ul .hs-menu-children-wrapper {
    display: none;
  }
}
.off-canvas.active {
  right: 0;
  width: 100%;
  height: 100%;
  transition: width 0.3s ease;
}

.footer {
  background-color: #24242E;
  padding-top: 57px;
  padding-bottom: 22px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    text-align: center;
    padding-top: 50px;
  }
}
.footer__navigation {
  order: 3;
  flex: 0 0 calc(3 / 12 * 100%);
}
@media (max-width: 768px) {
  .footer__navigation {
    flex: 0 0 calc(4 / 12 * 100%);
  }
}
@media (max-width: 768px) {
  .footer__navigation {
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .footer__navigation.main {
    display: none;
  }
}
.footer__navigation.hygiene a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 17px;
}
@media (min-width: 769px) {
  .footer__navigation.hygiene {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer__navigation {
    padding: 0 !important;
    margin-bottom: 10px;
  }
}
.footer__widget-title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 0;
}
.footer__container {
  max-width: 1200px;
  flex: 1;
  margin: auto;
}
@media (max-width: 1240px) {
  .footer__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer__columns {
  display: flex;
}
@media (max-width: 768px) {
  .footer__columns {
    flex-wrap: wrap;
  }
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .hs-menu-item a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: Poppins;
  line-height: 22px;
}
.footer__copyright {
  background-color: #24242E;
  font-size: 14px;
  font-weight: 200;
  color: #8b8ba5;
  font-family: "Poppins", sans-serif;
}
.footer__copyright br {
  display: none;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 11px;
    text-align: center;
    justify-content: center;
  }
  .footer__copyright br {
    display: inline-block;
  }
}

.socials h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
}

@media (max-width: 768px) {
  .social-widget {
    order: 1;
  }
}

.social-links {
  display: flex;
}
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
}
.social-links div {
  width: 48px;
  height: 48px;
  border: 2px solid #FF8106;
  border-radius: 50px;
}
.social-links div:not(:last-child) {
  margin-right: 20px;
}

.sticky-nav {
  position: fixed;
  right: 0;
  display: flex;
  height: 64px;
  width: 64px;
  background-color: #1B1B22;
  color: #fff;
  z-index: 4;
  box-shadow: 0px 0px 15px 3px rgba(27, 27, 34, 0.13);
  transition: all 0.3s ease;
}
.sticky-nav:hover, .sticky-nav:focus {
  color: #fff;
}
.sticky-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  flex: 0 0 64px;
  background: #FF8106;
}
.sticky-nav__text {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 64px;
  font-weight: bold;
  background-color: #1B1B22;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sticky-nav__text {
    display: none;
  }
}
.sticky-nav:hover {
  width: 267px;
}
@media (max-width: 768px) {
  .sticky-nav:hover {
    width: 64px;
  }
}
@media (max-width: 768px) {
  .sticky-nav:hover .sticky-nav__text {
    display: none;
  }
}

.hygiene_nav {
  margin: 25px 0 15px;
}
@media (max-width: 768px) {
  .hygiene_nav {
    display: none;
  }
}
.hygiene_nav .secondary-nav {
  width: 100%;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .hygiene_nav .secondary-nav__container {
    justify-content: center;
  }
}
.hygiene_nav .secondary-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hygiene_nav .secondary-nav ul a {
  display: block;
  margin: 0 10px;
}
.hygiene_nav .secondary-nav ul li:first-child {
  border-left: none;
  padding-left: 0;
}
.hygiene_nav .secondary-nav ul li:first-child a {
  margin-left: 0;
}
.hygiene_nav .secondary-nav ul li:last-child a {
  margin-right: 0;
}
.hygiene_nav .secondary-nav ul li {
  flex-grow: 1;
  flex-basis: auto;
  margin: 0.25em 0;
  padding: 0 10px;
  text-align: center;
  border-left: 1px solid #fff;
}
.hygiene_nav .secondary-nav a {
  color: #8B8BA5;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 200;
}
.hygiene_nav .secondary-nav a:hover, .hygiene_nav .secondary-nav a:focus {
  color: #6f6f8e;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 50px;
  border: 2px solid transparent;
  color: #fff;
  background: #1B1B22;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
}
.button:hover {
  background: #FF8106;
  border-color: #FF8106;
  color: #fff;
}
.button--primary-dark {
  background-color: #fff;
  color: #1B1B22;
}
.button--primary-dark:hover {
  color: #fff;
}
.button--secondary {
  background: transparent;
  border-color: #1B1B22;
  color: #1B1B22;
}
.button--secondary:hover {
  color: #fff;
}
.button--secondary-dark {
  background-color: transparent;
  border-color: #fff;
}
.button[disabled] {
  pointer-events: none;
  background: #6d6d6d;
  border-color: #6d6d6d;
  opacity: 0.5;
}

.tabs__menu {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.tabs__content {
  position: absolute;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  border: 0;
}
.tabs__content.active {
  position: unset;
  clip: unset;
  width: unset;
  margin: unset;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  transition: height 0.3s ease;
  overflow: hidden;
}
@media (max-width: 768px) {
  .tags {
    background: #f6f6f8;
    height: 40px;
  }
  .tags--active {
    height: calc((40px * 6) + (2 * 8px));
  }
  .tags--active .tag--rendered span {
    transform: translateY(-50%) rotate(180deg);
  }
}
.tags span {
  transition: all 0.5s ease;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 28px;
  color: #8787a1;
  border: 2px solid #8787a1;
  border-radius: 50px;
  margin: 5px;
  transition: all 0.5s ease;
  cursor: pointer;
  min-width: 100px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .tag {
    flex: 1 0 100%;
    border-radius: 0;
    border: 0;
    margin: 0;
    color: #1B1B22;
    padding-left: 20px;
    padding-right: 20px;
  }
  .tag:not(.tag--rendered) {
    background: rgba(27, 27, 34, 0.9);
    color: #fff;
  }
  .tag:nth-child(2) {
    padding-top: 15px;
  }
}
.tag--rendered {
  display: none;
  position: relative;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  font-weight: bold;
  color: #1B1B22;
  user-select: none;
}
@media (max-width: 768px) {
  .tag--rendered {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tag--rendered:hover {
    background: transparent !important;
    color: #1B1B22 !important;
  }
}
.tag--rendered span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.tag--active {
  pointer-events: none;
}
.tag:hover, .tag--active {
  background-color: rgba(255, 129, 6, 0.7);
  border-color: #FF8106;
  color: #fff;
}
@media (max-width: 768px) {
  .tag:hover, .tag--active {
    border: none;
    background-color: rgba(27, 27, 34, 0.9);
  }
}
@media (max-width: 768px) {
  .tag--active {
    display: none;
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
    background-color: #1B1B22;
    color: #8787a1;
  }
  .tag--all {
    display: none;
  }
}

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

.post {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .post {
    overflow: hidden;
    height: unset;
  }
}
.post__overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #1b1b22;
  opacity: 0.2;
  transition: all 0.5s ease;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .post__overlay {
    display: none;
  }
}
.post img {
  transition: transform 0.5s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .post img {
    height: 300px;
  }
}
.post__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(36, 36, 46, 0.9);
  width: 65%;
  color: #fff;
  padding: 32px;
  z-index: 2;
}
@media (max-width: 768px) {
  .post__inner {
    position: static;
    width: 100%;
    padding: 20px;
  }
}
.post__tag {
  text-transform: uppercase;
  color: #FF8106;
  font-size: 11px;
}
@media (max-width: 768px) {
  .post__tag {
    font-weight: bold;
  }
}
.post__title {
  margin-top: 10px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .post__title {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.post__title a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.post__title a {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.post__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post__date {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
}
.post:hover img {
  transform: scale(1.2) rotate(-1deg);
}
@media (max-width: 768px) {
  .post:hover img {
    transform: unset;
  }
}
.post:hover .post__overlay {
  opacity: 0.7;
}

/*# sourceMappingURL=style.css.map */