@charset "UTF-8";
/*****************************************************************

BRAND COLORS

If a color is directly tied to another color in its usage, append it with how it's being modified. For example:

$teal: #009482;
$teal-light: #35a08b;

/*****************************************************************/
/*****************************************************************

COLOR USAGE

Take the brand color variables from above and apply them below to the common color usages

Note: Having "body" in the class selectors below allows it to have higher inheritance over our standard styling that's in place

*****************************************************************/
/* PRIMARY COLOR **************/
body .color-primary-bg {
  background: #434867;
}

body .color-primary-tx {
  color: #434867;
}

/**/
body .color-primary-l-bg {
  background: #535980;
}

body .color-primary-l-tx {
  color: #535980;
}

/**/
body .color-primary-d-bg {
  background: #33374e;
}

body .color-primary-d-tx {
  color: #33374e;
}

/* SECONDARY COLOR **************/
body .color-secondary-bg {
  background: #fff;
}

body .color-secondary-tx {
  color: #fff;
}

/**/
body .color-secondary-l-bg {
  background: white;
}

body .color-secondary-l-tx {
  color: white;
}

/**/
body .color-secondary-d-bg {
  background: #d9d9d9;
}

body .color-secondary-d-tx {
  color: #d9d9d9;
}

/* BACKGROUND COLORS **************/
body .color-bg-light {
  background: #f0f1f8;
}

body .color-bg-dark {
  background: #434867;
}

/* BORDER COLORS **************/
/* TEXT COLORS **************/
/* PINK ACCENT COLOR **************/
body .color-accent-bg {
  background: #d83968;
}

body .color-accent-tx {
  color: #d83968;
}

/**/
body .color-accent-l-bg {
  background: #e57999;
}

body .color-accent-l-tx {
  color: #e57999;
}

/**/
body .color-accent-d-bg {
  background: #a42047;
}

body .color-accent-d-tx {
  color: #a42047;
}

/* BLUE ACCENT COLOR **************/
body .color-accent-bg-blue {
  background: #135EAB;
}

body .color-accent-tx-blue {
  color: #135EAB;
}

/**/
body .color-accent-l-bg-blue {
  background: #2484e7;
}

body .color-accent-l-tx-blue {
  color: #2484e7;
}

/**/
body .color-accent-d-bg-blue {
  background: #0b3866;
}

body .color-accent-d-tx-blue {
  color: #0b3866;
}

/* TEAL ACCENT COLOR **************/
body .color-accent-bg-teal {
  background: #26afbc;
}

body .color-accent-tx-teal {
  color: #26afbc;
}

/**/
body .color-accent-l-bg-teal {
  background: #52d0dc;
}

body .color-accent-l-tx-teal {
  color: #52d0dc;
}

/**/
body .color-accent-d-bg-teal {
  background: #19747c;
}

body .color-accent-d-tx-teal {
  color: #19747c;
}

/* GREEN ACCENT COLOR **************/
body .color-accent-bg-green {
  background: #b8d637;
}

body .color-accent-tx-green {
  color: #b8d637;
}

/**/
body .color-accent-l-bg-green {
  background: #cfe376;
}

body .color-accent-l-tx-green {
  color: #cfe376;
}

/**/
body .color-accent-d-bg-green {
  background: #88a021;
}

body .color-accent-d-tx-green {
  color: #88a021;
}

/* YELLOW ACCENT COLOR **************/
body .color-accent-bg-yellow {
  background: #ffc90d;
}

body .color-accent-tx-yellow {
  color: #ffc90d;
}

/**/
body .color-accent-l-bg-yellow {
  background: #ffda5a;
}

body .color-accent-l-tx-yellow {
  color: #ffda5a;
}

/**/
body .color-accent-d-bg-yellow {
  background: #c09500;
}

body .color-accent-d-tx-yellow {
  color: #c09500;
}

/* Add default spacing to row & blocks */
.pb-default-wrapper {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pb-default-wrapper .col {
  padding: 10px;
}

/* Allow blocks to go full width of page by making setcontainer 100% */
.no-setcontainer .setcontainer {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/***************************

REUSABLE CLASSES

***************************/
/* Narrow Content Block */
.narrow-content,
.narrow-content.col,
.narrow-content.col:first-child {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  text-align: left;
}

/* Remove Block Margins */
.no-margin,
.col.no-margin {
  margin: 0;
}

/* Reverses Order of Elements in Row */
.row-reverse > .col {
  float: right;
}

.row-reverse > .col:first-child {
  margin-left: 1.6%;
}

.row-reverse > .col:last-child {
  margin-left: 0;
}

/*****************************************************************

PADDING & MARGIN

The mixins and CSS classes below for padding and margin should not be used for the Header & Footer. 

*****************************************************************/
/* PADDING & MARGIN SMALL **************/
@media (min-width: 1025px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-sm {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .pad-sm {
    padding: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-top-sm {
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-top-sm {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .pad-top-sm {
    padding-top: 10px;
  }
}

@media (min-width: 1025px) {
  .margin-top-sm {
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .margin-top-sm {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .margin-top-sm {
    margin-top: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-right-sm {
    padding-right: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-right-sm {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .pad-right-sm {
    padding-right: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-bottom-sm {
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-bottom-sm {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-sm {
    padding-bottom: 10px;
  }
}

@media (min-width: 1025px) {
  .margin-bottom-sm {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .margin-bottom-sm {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-sm {
    margin-bottom: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-left-sm {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .pad-left-sm {
    padding-left: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-vertical-sm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-vertical-sm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pad-vertical-sm {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (min-width: 1025px) {
  .margin-vertical-sm {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .margin-vertical-sm {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .margin-vertical-sm {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1025px) {
  .pad-horizontal-sm {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .pad-horizontal-sm {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .pad-horizontal-sm {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* PADDING & MARGIN MEDIUM **************/
@media (min-width: 1024px) {
  .pad-md {
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-md {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .pad-md {
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-top-md {
    padding-top: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-top-md {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .pad-top-md {
    padding-top: 20px;
  }
}

@media (min-width: 1024px) {
  .margin-top-md {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .margin-top-md {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .margin-top-md {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-right-md {
    padding-right: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-right-md {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .pad-right-md {
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-md {
    padding-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-md {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-md {
    padding-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-md {
    margin-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-md {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-md {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .pad-left-md {
    padding-left: 40px;
  }
}
@media (max-width: 1023px) {
  .pad-left-md {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .pad-left-md {
    padding-left: 20px;
  }
}

@media (min-width: 1025px) {
  .pad-vertical-md {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .pad-vertical-md {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pad-vertical-md {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (min-width: 1025px) {
  .margin-vertical-md {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .margin-vertical-md {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .margin-vertical-md {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1025px) {
  .pad-horizontal-md {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 1024px) {
  .pad-horizontal-md {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .pad-horizontal-md {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* PADDING & MARGIN LARGE **************/
@media (min-width: 1024px) {
  .pad-lg {
    padding: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-lg {
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .pad-lg {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-top-lg {
    padding-top: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-top-lg {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .pad-top-lg {
    padding-top: 40px;
  }
}

@media (min-width: 1024px) {
  .margin-top-lg {
    margin-top: 80px;
  }
}
@media (max-width: 1023px) {
  .margin-top-lg {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .margin-top-lg {
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-right-lg {
    padding-right: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-right-lg {
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .pad-right-lg {
    padding-right: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-lg {
    padding-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-lg {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-lg {
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-lg {
    margin-bottom: 80px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-lg {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-lg {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .pad-left-lg {
    padding-left: 80px;
  }
}
@media (max-width: 1023px) {
  .pad-left-lg {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .pad-left-lg {
    padding-left: 40px;
  }
}

@media (min-width: 1025px) {
  .pad-vertical-lg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 1024px) {
  .pad-vertical-lg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .pad-vertical-lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  .margin-vertical-lg {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 1024px) {
  .margin-vertical-lg {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .margin-vertical-lg {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  .pad-horizontal-lg {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media (max-width: 1024px) {
  .pad-horizontal-lg {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .pad-horizontal-lg {
    padding-right: 40px;
    padding-left: 40px;
  }
}

/* PADDING & MARGIN EXTRA LARGE **************/
@media (min-width: 1024px) {
  .pad-xl {
    padding: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-xl {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .pad-xl {
    padding: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-top-xl {
    padding-top: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-top-xl {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pad-top-xl {
    padding-top: 60px;
  }
}

@media (min-width: 1024px) {
  .margin-top-xl {
    margin-top: 120px;
  }
}
@media (max-width: 1023px) {
  .margin-top-xl {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .margin-top-xl {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-right-xl {
    padding-right: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-right-xl {
    padding-right: 80px;
  }
}
@media (max-width: 767px) {
  .pad-right-xl {
    padding-right: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-bottom-xl {
    padding-bottom: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-bottom-xl {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pad-bottom-xl {
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .margin-bottom-xl {
    margin-bottom: 120px;
  }
}
@media (max-width: 1023px) {
  .margin-bottom-xl {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .margin-bottom-xl {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .pad-left-xl {
    padding-left: 120px;
  }
}
@media (max-width: 1023px) {
  .pad-left-xl {
    padding-left: 80px;
  }
}
@media (max-width: 767px) {
  .pad-left-xl {
    padding-left: 60px;
  }
}

@media (min-width: 1025px) {
  .pad-vertical-xl {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .pad-vertical-xl {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pad-vertical-xl {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1025px) {
  .margin-vertical-xl {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .margin-vertical-xl {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .margin-vertical-xl {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1025px) {
  .pad-horizontal-xl {
    padding-right: 120px;
    padding-left: 120px;
  }
}
@media (max-width: 1024px) {
  .pad-horizontal-xl {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media (max-width: 767px) {
  .pad-horizontal-xl {
    padding-right: 60px;
    padding-left: 60px;
  }
}

/* PADDING CLASSES - DO NOT USE THESE. ONLY HERE FOR BACKWARD COMPATABILITY. USE THE PADDING/MARGIN CLASSES ABOVE */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-padding-small {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-padding-top {
  padding-top: 100px;
}

.section-padding-top-small {
  padding-top: 50px;
}

.section-padding-bottom {
  padding-bottom: 100px;
}

.section-padding-bottom-small {
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-padding-top {
    padding-top: 70px;
  }

  .section-padding-bottom {
    padding-bottom: 70px;
  }

  .section-padding-small {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-padding-top-small {
    padding-top: 40px;
  }

  .section-padding-bottom-small {
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-padding-top {
    padding-top: 30px;
  }

  .section-padding-bottom {
    padding-bottom: 30px;
  }

  .section-padding-small {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-padding-top-small {
    padding-top: 20px;
  }

  .section-padding-bottom-small {
    padding-bottom: 20px;
  }
}
/*****************************************************************

EMBEDDED FONTS

*****************************************************************/
@font-face {
  font-family: "NexaReg";
  src: url("/Pub/fonts/nexa-regular-webfont.woff2") format("woff2"), url("/Pub/fonts/nexa-regular-webfont.woff") format("woff");
}
@font-face {
  font-family: "NexaRegIt";
  src: url("/Pub/fonts/nexa-regularitalic-webfont.woff2") format("woff2"), url("/Pub/fonts/nexa-regularitalic-webfont.woff") format("woff");
}
@font-face {
  font-family: "NexaBold";
  src: url("/Pub/fonts/nexa-bold-webfont.woff2") format("woff2"), url("/Pub/fonts/nexa-bold-webfont.woff") format("woff");
}
@font-face {
  font-family: "NexaBoldIt";
  src: url("/Pub/fonts/nexa-bolditalic-webfont.woff2") format("woff2"), url("/Pub/fonts/nexa-bolditalic-webfont.woff") format("woff");
}
@font-face {
  font-family: "UmbaSoftSCBold";
  src: url("/Pub/fonts/umbasoft-scbold-webfont.woff2") format("woff2"), url("/Pub/fonts/umbasoft-scbold-webfont.woff") format("woff");
}
@font-face {
  font-family: "UmbaSoftSCBoldIt";
  src: url("/Pub/fonts/umbasoft-scbolditalic-webfont.woff2") format("woff2"), url("/Pub/fonts/umbasoft-scbolditalic-webfont.woff") format("woff");
}
@font-face {
  font-family: "PermMarker";
  src: url("/Pub/fonts/permanentmarker-regular-webfont.woff2") format("woff2"), url("/Pub/fonts/permanentmarker-regular-webfont.woff") format("woff");
}
@font-face {
  font-family: "MarkerSD";
  src: url("/Pub/fonts/marker_sd-webfont.woff2") format("woff2"), url("/Pub/fonts/marker_sd-webfont.woff") format("woff");
}
@font-face {
  font-family: "MarkerSDIt";
  src: url("/Pub/fonts/marker_sd_italic-webfont.woff2") format("woff2"), url("/Pub/fonts/marker_sd_italic-webfont.woff") format("woff");
}
/* FONT NAME **************/
.nexa-reg {
  font-family: "NexaReg";
  font-style: normal;
  font-weight: 300;
}

.nexa-reg-italic {
  font-family: "NexaRegIt";
  font-style: normal;
  font-weight: 300;
}

.nexa-bold {
  font-family: "NexaBold";
  font-style: normal;
  font-weight: 300;
}

.nexa-bold-italic {
  font-family: "NexaBoldIt";
  font-style: normal;
  font-weight: 300;
}

.umba-soft-sc-bold {
  font-family: "UmbaSoftSCBold";
  font-style: normal;
  font-weight: 300;
}

.umba-soft-sc-bold-italic {
  font-family: "UmbaSoftSCBoldIt";
  font-style: normal;
  font-weight: 300;
}

.permanent-marker {
  font-family: "PermMarker";
  font-style: normal;
  font-weight: 300;
}

.marker-sd {
  font-family: "MarkerSD";
  font-style: normal;
  font-weight: 300;
}

.marker-sd-italic {
  font-family: "MarkerSDIt";
  font-style: normal;
  font-weight: 300;
}

/*****************************************************************

CONTENT TYPE MIXINS

Note: Having "body" in the class selectors below allows it to have higher inheritance over our standard font-family styling that's in place

*****************************************************************/
/* HEADINGS **************/
body .hcontent .font-heading,
body .font-heading {
  font-family: "UmbaSoftSCBold";
  font-style: normal;
  font-weight: 400;
}

/* SUBHEADINGS *************/
body .hcontent .font-subheading,
body .font-subheading {
  font-family: "NexaBold";
  font-style: normal;
  font-weight: 400;
}

/* BODY COPY **************/
body .hcontent .font-body,
body .font-body {
  font-family: "NexaReg", sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* ACCENT FONTS *************/
body .hcontent .font-accent-heading,
body .font-accent-heading {
  font-family: "PermMarker";
  font-style: normal;
  font-weight: 400;
}

body .hcontent .font-accent-body,
body .font-accent-body {
  font-family: "MarkerSD";
  font-style: normal;
  font-weight: 400;
}

/*****************************************************************

.HCONTENT CLASS STYLING

1. The ".hcontent" class should be added to the direct wrapper of the content. It should not be added higher up in the DOM since sidebars are usually styled different.
2. All headings below h2 (h3-h6) should alternate color so that they are easy to distinguish. In most cases your h3, h5 will be one color, and your h4, h6 will be another color. 
3. There should be extra padding added above your h2-h6's to help separate sections more.

*****************************************************************/
.hcontent {
  font-family: "NexaReg", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.hcontent h1, .hcontent .h1, .hcontent h2, .hcontent .h2 {
  font-family: "UmbaSoftSCBold";
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}
.hcontent h3, .hcontent .h3, .hcontent h4, .hcontent .h4, .hcontent h5, .hcontent .h5, .hcontent h6, .hcontent .h6 {
  font-family: "NexaBold";
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
.hcontent h2, .hcontent .h2, .hcontent h3, .hcontent .h3, .hcontent h4, .hcontent .h4, .hcontent h5, .hcontent .h5, .hcontent h6, .hcontent .h6 {
  padding-top: 20px;
  margin-bottom: 14px;
}
.hcontent p, .hcontent ul, .hcontent ol {
  margin-bottom: 30px;
  line-height: 1.7;
}
.hcontent p, .hcontent li {
  font-size: 18px;
  line-height: 1.7;
}
.hcontent p.large-body-text,
.hcontent ul.large-body-text li,
.hcontent ol.large-body-text li {
  font-size: 140%;
}
.hcontent p.small-body-text,
.hcontent ul.small-body-text li,
.hcontent ol.small-body-text li {
  font-size: 80%;
}
.hcontent ul, .hcontent ol {
  padding-left: 35px;
}
.hcontent ul li {
  list-style: disc outside;
}
.hcontent ol li {
  list-style: decimal outside;
}
.hcontent.non-list ul, .hcontent.non-list ol,
.hcontent .non-list ul,
.hcontent .non-list ol {
  padding-left: 0;
}
.hcontent.non-list ul li, .hcontent.non-list ol li,
.hcontent .non-list ul li,
.hcontent .non-list ol li {
  list-style: none;
}
.hcontent h1, .hcontent .h1 {
  font-size: 54px;
  margin-bottom: 15px;
}
.hcontent h2, .hcontent .h2 {
  font-size: 32px;
}
.hcontent h3, .hcontent .h3 {
  font-size: 26px;
}
.hcontent h4, .hcontent .h4 {
  font-size: 20px;
}
.hcontent h5, .hcontent .h5 {
  font-size: 18px;
}
.hcontent h6, .hcontent .h6 {
  font-size: 16px;
}
.hcontent a {
  text-decoration: underline;
}
.hcontent strong {
  font-weight: bold;
}
.hcontent em {
  font-style: italic;
}
.hcontent .font-subheading + h1, .hcontent .font-subheading + h2, .hcontent .font-subheading + h3, .hcontent .font-subheading + h4, .hcontent .font-subheading + h5, .hcontent .font-subheading + h6 {
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .hcontent h1, .hcontent .h1 {
    font-size: 50px;
  }
  .hcontent h2, .hcontent .h2 {
    font-size: 38px;
  }
  .hcontent h3, .hcontent .h3 {
    font-size: 26px;
  }
  .hcontent h4, .hcontent .h4 {
    font-size: 20px;
  }
  .hcontent h5, .hcontent .h5 {
    font-size: 16px;
  }
  .hcontent h6, .hcontent .h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .hcontent h1, .hcontent .h1 {
    font-size: 42px;
  }
  .hcontent h2, .hcontent .h2 {
    font-size: 32px;
  }
  .hcontent h3, .hcontent .h3 {
    font-size: 20px;
  }
  .hcontent h4, .hcontent .h4 {
    font-size: 18px;
  }
  .hcontent h5, .hcontent .h5 {
    font-size: 16px;
  }
  .hcontent h6, .hcontent .h6 {
    font-size: 16px;
  }
  .hcontent p.large-body-text,
.hcontent ul.large-body-text li,
.hcontent ol.large-body-text li {
    font-size: 120%;
  }
}

.hcontent a.cta-text-link,
a.cta-text-link {
  font-family: "NexaBold";
  font-style: normal;
  font-weight: 400;
  color: #d83968;
  text-decoration: none;
  text-transform: uppercase;
}
.hcontent a.cta-text-link:hover,
a.cta-text-link:hover {
  color: #d83968;
  text-decoration: none;
}

@media (min-width: 1025px) {
  .large-headings.hcontent h2,
.large-headings .hcontent h2,
.large-headings h2 {
    font-size: 54px;
  }
  .large-headings.hcontent h3,
.large-headings .hcontent h3,
.large-headings h3 {
    font-size: 36px;
  }
  .large-headings.hcontent h4,
.large-headings .hcontent h4,
.large-headings h4 {
    font-size: 28px;
  }
}

/* TYPOGRAPHY COLORS */
.hcontent h1 {
  color: #434867;
}
.hcontent h2, .hcontent h4, .hcontent h6 {
  color: #434867;
}
.hcontent h3, .hcontent h5 {
  color: #5b6670;
}
.hcontent p {
  color: #5b6670;
}
.hcontent a:not(.button), .hcontent a:not(.button):active {
  color: #d83968;
}
.hcontent a:not(.button):hover, .hcontent a:not(.button):active:hover {
  color: #d83968;
}
.hcontent .font-subheading {
  color: #5b6670;
}
.hcontent.hcontent-dark-bg {
  color: #fff;
}
.hcontent.hcontent-dark-bg h1 {
  color: #fff;
}
.hcontent.hcontent-dark-bg h2, .hcontent.hcontent-dark-bg h4, .hcontent.hcontent-dark-bg h6 {
  color: #fff;
}
.hcontent.hcontent-dark-bg h3, .hcontent.hcontent-dark-bg h5 {
  color: #fff;
}
.hcontent.hcontent-dark-bg p, .hcontent.hcontent-dark-bg li {
  color: #dfdfdf;
}
.hcontent.hcontent-dark-bg a:not(.button) {
  color: #fff;
}
.hcontent.hcontent-dark-bg a:not(.button):hover {
  color: #fff;
}
.hcontent.hcontent-dark-bg .font-subheading {
  color: #dfdfdf;
}
.hcontent.hcontent-blue-accent-bg {
  color: #fff;
}
.hcontent.hcontent-blue-accent-bg h1 {
  color: #fff;
}
.hcontent.hcontent-blue-accent-bg h2, .hcontent.hcontent-blue-accent-bg h4, .hcontent.hcontent-blue-accent-bg h6 {
  color: #fff;
}
.hcontent.hcontent-blue-accent-bg h3, .hcontent.hcontent-blue-accent-bg h5 {
  color: #fff;
}
.hcontent.hcontent-blue-accent-bg p, .hcontent.hcontent-blue-accent-bg li {
  color: #fff;
}
.hcontent.hcontent-blue-accent-bg a:not(.button) {
  color: #fff;
}
.hcontent.hcontent-blue-accent-bg a:not(.button):hover {
  color: #fff;
}
.hcontent.hcontent-blue-accent-bg .font-subheading {
  color: #fff;
}

/* END OF TYPOGRAPHY COLORS */
/* STYLE GUIDE SPECIFIC VARIABLES */
/* Colors */
.sg-color-bdr {
  background: #dddee7;
}

.sg-color-tx {
  background: #5b6670;
}

/* END OF STYLE GUIDE SPECIFIC VARIABLES */
/************************************************

BASE STYLE GUIDE STRUCTURE

************************************************/
.sg-side-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 250px;
  font-size: 20px;
  text-align: left;
  overflow-y: auto;
  border-right: 1px solid #dddee7;
}
.sg-side-nav .side-nav-header {
  text-align: center;
  border-bottom: 1px solid #dddee7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1025px) {
  .sg-side-nav .side-nav-header {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .sg-side-nav .side-nav-header {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .sg-side-nav .side-nav-header {
    padding: 10px;
  }
}
.sg-side-nav .side-nav-header .side-nav-header-inner {
  width: 100%;
}
.sg-side-nav .side-nav-header .flexFit {
  padding-bottom: 50%;
}
.sg-side-nav .side-nav-header p {
  font-size: 16px;
  margin: 15px 0 0 0;
  padding: 0;
}
.sg-side-nav .side-nav-header p a:not(.button) {
  color: #5b6670;
  text-decoration: none;
}
.sg-side-nav .side-nav-header p a:not(.button):hover {
  text-decoration: none;
}
.sg-side-nav ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.sg-side-nav ul li {
  list-style: none;
  margin: 0;
  position: relative;
}
.sg-side-nav ul li a:not(.button) {
  display: block;
  padding: 14px 24px;
  color: #5b6670;
  line-height: 1.3;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.sg-side-nav ul li a:not(.button).active-nav-item {
  color: #434867;
  border-color: #434867;
}
.sg-side-nav ul li a:not(.button).active-nav-item:active {
  color: #434867;
}
.sg-side-nav ul li a:not(.button):hover {
  color: #434867;
  text-decoration: none;
}
.sg-side-nav ul li.hassubmenu > a:after {
  position: absolute;
  right: 24px;
  top: 14px;
  font-family: "FontAwesome";
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sg-side-nav ul li.active-nav-parent {
  background: #f0f1f8;
}
.sg-side-nav ul li.active-nav-parent a:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sg-side-nav ul li ul {
  display: none;
  margin: 0;
  padding: 0 0 14px 0;
}
.sg-side-nav ul li ul li a {
  font-size: 14px;
}

.sg-main {
  width: 100%;
  max-width: 1600px;
  text-align: left;
}
@media (min-width: 1024px) {
  .sg-main {
    padding-right: 120px;
  }
}
@media (max-width: 1023px) {
  .sg-main {
    padding-right: 80px;
  }
}
@media (max-width: 767px) {
  .sg-main {
    padding-right: 60px;
  }
}
@media (min-width: 1024px) {
  .sg-main {
    padding-bottom: 120px;
  }
}
@media (max-width: 1023px) {
  .sg-main {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .sg-main {
    padding-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .sg-main {
    padding-top: 80px;
  }
}
@media (max-width: 1023px) {
  .sg-main {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .sg-main {
    padding-top: 40px;
  }
}
@media (min-width: 1025px) {
  .sg-main {
    padding-left: 370px;
  }
}
@media (max-width: 1024px) {
  .sg-main {
    padding-left: 330px;
  }
}

.style-guide .pb-row.row .setcontainer {
  padding: 0;
  max-width: 100%;
}

@media (min-width: 1025px) {
  .sg-row {
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .sg-row {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .sg-row {
    padding-top: 10px;
  }
}
@media (min-width: 1024px) {
  .sg-row {
    padding-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .sg-row {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .sg-row {
    padding-bottom: 20px;
  }
}
.sg-row .sg-component-label {
  margin-bottom: 20px;
  font-size: 18px;
}
.sg-row .sg-component-label h3 {
  margin: 0;
  padding: 0;
}

.sg-mobile-header {
  display: none;
  background: #fff;
  border-bottom: 1px solid #dddee7;
  padding: 15px;
  text-align: center;
  position: relative;
}
.sg-mobile-header .sg-mobile-nav-toggle {
  position: absolute;
  z-index: 99;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 46px;
  height: 36px;
  cursor: pointer;
}
.sg-mobile-header .sg-mobile-nav-toggle i.nav-toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #5b6670;
  width: 28px;
  height: 2px;
  margin: -2px 0 0 -14px;
}
.sg-mobile-header .sg-mobile-nav-toggle i.nav-toggle-line:before, .sg-mobile-header .sg-mobile-nav-toggle i.nav-toggle-line:after {
  content: "";
  position: absolute;
  background: #5b6670;
  width: 28px;
  height: 2px;
  left: 50%;
  top: 50%;
  margin-left: -14px;
}
.sg-mobile-header .sg-mobile-nav-toggle i.nav-toggle-line:before {
  margin-top: -9px;
}
.sg-mobile-header .sg-mobile-nav-toggle i.nav-toggle-line:after {
  margin-top: 7px;
}
.sg-mobile-header a.mobile-logo img {
  max-width: 100px;
}

.sg-mobile-slideout-overlay {
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sg-mobile-slideout-overlay.sg-show-overlay {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}

@media (max-width: 900px) {
  .sg-wrapper .sg-side-nav {
    position: fixed;
    height: 100%;
    z-index: 999;
    width: 250px;
    left: -250px;
    top: 0;
    background: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .sg-wrapper .sg-side-nav.sg-show-menu {
    left: 0;
    -webkit-box-shadow: 4px 0 5px rgba(0, 0, 0, 0.2);
            box-shadow: 4px 0 5px rgba(0, 0, 0, 0.2);
  }
  .sg-wrapper .sg-side-nav .side-nav-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sg-wrapper .sg-side-nav .side-nav-header p {
    margin: 0 0 10px 0;
  }
  .sg-wrapper .sg-mobile-header {
    display: block;
  }
  .sg-wrapper .sg-main {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  [class*=grid],
div[class*=grid] {
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }

  .sg-section .sg-section-component > .row {
    margin-bottom: 0;
  }
}
/* END OF BASE STYLE GUIDE STRUCTURE ***********************/
/************************************************

INTRO

************************************************/
.intro-section {
  padding-bottom: 0;
}
.intro-section .callout-message a {
  color: #5b6670;
}
.intro-section .callout-message a:hover {
  color: #434867;
}

/* END OF INTRO ***********************/
/************************************************

LOGO

************************************************/
.sg-logo-width img {
  max-height: 150px;
  width: auto;
}

.sg-logo-spacing img {
  max-width: 600px;
  width: 100%;
}

/* END OF INTRO ***********************/
/************************************************

COLOR

************************************************/
[class*=sg-component-color] .col .color-swatch {
  min-height: 60px;
  border-radius: 3px;
  margin-bottom: 10px;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
[class*=sg-component-color] .col .color-swatch:hover {
  z-index: 2;
  -webkit-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0px 4px rgba(0, 0, 0, 0.3);
}
[class*=sg-component-color] .col .color-swatch:hover span.copy-link {
  opacity: 1;
  visibility: visible;
}
[class*=sg-component-color] .col .color-swatch span.copy-link {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #333;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}
[class*=sg-component-color] .col .color-swatch span.copy-feedback {
  display: none;
}
[class*=sg-component-color] .col .color-swatch.light-text .copy-feedback,
[class*=sg-component-color] .col .color-swatch.light-text .copy-link,
[class*=sg-component-color] .col .color-swatch.light-text span.variable-name,
[class*=sg-component-color] .col .color-swatch.light-text .combo-color-name {
  color: #fff;
}
[class*=sg-component-color] .col p {
  font-size: 14px;
  margin: 0;
  padding: 2px 0;
  line-height: 1.4;
}
[class*=sg-component-color] .col .color-name {
  color: #434867;
  margin-bottom: 5px;
}

.sg-component-color-shades-row .col {
  margin: 0;
}
.sg-component-color-shades-row .col.grid1-5 {
  width: 20%;
}
.sg-component-color-shades-row .col.grid3-12 {
  width: 25%;
}
.sg-component-color-shades-row .col.grid4-12 {
  width: 33.33%;
}
.sg-component-color-shades-row .col > div:not(.row) {
  border-radius: 0;
}
.sg-component-color-shades-row .col:first-child > div {
  border-radius: 3px 0 0 3px;
}
.sg-component-color-shades-row .col:last-child > div {
  border-radius: 0 3px 3px 0;
}
.sg-component-color-shades-row .col p {
  padding-right: 15px;
}

.sg-color-white {
  background: #fff;
  border: 1px solid #dddee7;
}

.sg-component-color-combos {
  margin-left: -8px;
  margin-right: -8px;
}
.sg-component-color-combos .col {
  margin: 0;
  padding: 0;
}
.sg-component-color-combos .col.grid12-12 {
  width: 100%;
}
.sg-component-color-combos .col.grid6-12 {
  width: 50%;
}
.sg-component-color-combos .col.grid4-12 {
  width: 33.33%;
}
.sg-component-color-combos .col.grid3-12 {
  width: 25%;
}
.sg-component-color-combos .col .color-swatch-spacer {
  position: relative;
  border: 8px solid #fff;
}
.sg-component-color-combos .col .color-swatch-spacer .color-swatch {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.sg-component-color-combos .col .color-swatch-spacer .color-swatch span.copy-link {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 20px 0 0;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch12-12 {
  height: 360px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch11-12 {
  height: 330px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch10-12 {
  height: 300px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch9-12 {
  height: 270px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch8-12 {
  height: 240px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch7-12 {
  height: 210px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch6-12 {
  height: 180px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch5-12 {
  height: 150px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch4-12 {
  height: 120px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch3-12 {
  height: 90px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch2-12 {
  height: 60px;
}
.sg-component-color-combos .col .combo-color-name {
  position: absolute;
  left: 0;
  bottom: 20px;
  padding: 0 20px;
  color: #333;
}
.sg-component-color-combos .col .combo-color-name span.color-combo-hex {
  opacity: 0.7;
  display: block;
  margin-top: 5px;
  font-size: 14px;
}
.sg-component-color-combos .col .combo-color-name span.color-combo-hex span {
  margin-left: 3px;
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch2-12 .combo-color-name, .sg-component-color-combos .col .color-swatch-spacer.color-swatch1-12 .combo-color-name {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sg-component-color-combos .col .color-swatch-spacer.color-swatch2-12 span.copy-link, .sg-component-color-combos .col .color-swatch-spacer.color-swatch1-12 span.copy-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 20px 0 0;
}

.sg-full-color-palette .col .color-swatch {
  height: 80px;
}

.copy-input {
  opacity: 0;
  height: 0;
  font-size: 0 !important;
  padding: 0;
}

@media (max-width: 767px) {
  .sg-component-color-shades-row .col.grid1-5, .sg-component-color-shades-row .col.grid3-12, .sg-component-color-shades-row .col.grid4-12 {
    width: 100%;
  }
  .sg-component-color-shades-row .col > div, .sg-component-color-shades-row .col:first-child > div, .sg-component-color-shades-row .col:last-child > div {
    border-radius: 3px;
  }
  .sg-component-color-shades-row .col p {
    padding-right: 0;
  }

  .sg-component-color-combos .col {
    margin: 0 !important;
    padding: 0;
  }
  .sg-component-color-combos .col.grid12-12, .sg-component-color-combos .col.grid6-12, .sg-component-color-combos .col.grid4-12, .sg-component-color-combos .col.grid3-12 {
    width: 100%;
  }
  .sg-component-color-combos .col .color-swatch-spacer {
    height: 120px !important;
  }
  .sg-component-color-combos .col .color-swatch-spacer.color-swatch2-12 .combo-color-name, .sg-component-color-combos .col .color-swatch-spacer.color-swatch1-12 .combo-color-name {
    bottom: 20px;
    top: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .sg-component-color-combos .col .color-swatch-spacer.color-swatch2-12 span.copy-link, .sg-component-color-combos .col .color-swatch-spacer.color-swatch1-12 span.copy-link {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 20px 20px 0 0;
  }

  [class*=sg-component-color] .col {
    margin: 15px 0;
  }
  [class*=sg-component-color] .col > div {
    height: 120px;
  }

  .sg-full-color-palette .sg-row {
    margin: 0;
    padding: 0;
  }
}
/* END OF COLOR ***********************/
/************************************************

TYPOGRAPHY

************************************************/
.sg-component-typography {
  border-bottom: 1px solid #dddee7;
}
@media (min-width: 1024px) {
  .sg-component-typography {
    padding-top: 40px;
  }
}
@media (max-width: 1023px) {
  .sg-component-typography {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .sg-component-typography {
    padding-top: 20px;
  }
}
@media (min-width: 1024px) {
  .sg-component-typography {
    padding-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .sg-component-typography {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .sg-component-typography {
    padding-bottom: 20px;
  }
}
.sg-component-typography .col {
  padding: 0px 20px;
}
.sg-component-typography .col:first-child {
  padding-left: 0;
}
.sg-component-typography .col:last-child {
  padding-right: 0;
}
.sg-component-typography .col h2.typography-category {
  font-size: 16px;
  padding-bottom: 5px;
  font-family: "NexaReg", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #434867;
  text-transform: uppercase;
}
.sg-component-typography .col .typography-category-breakdown {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 25px 0 0 25px;
  border-top: 1px solid #dddee7;
  border-left: 1px solid #dddee7;
}
.sg-component-typography .col .typography-category-breakdown p {
  line-height: 1;
}
.sg-component-typography .col.typography-category-overview {
  padding-right: 50px;
}
.sg-component-typography .col.typography-category-overview h2 {
  font-size: 26px;
  padding-top: 0;
  letter-spacing: 0;
}
.sg-component-typography .col.typography-category-details p {
  line-height: 1.3;
  letter-spacing: 5px !important;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 10px;
}
.sg-component-typography .col.typography-category-details p:last-child {
  margin-bottom: 0;
}
.sg-component-typography .col.typography-category-details .letters-preview {
  font-size: 80px;
  letter-spacing: 2px;
  line-height: 1;
}
.sg-component-typography .col.typography-category-overview h2, .sg-component-typography .col.typography-category-details .letters-preview {
  color: #434867;
}
.sg-component-typography .font-heading,
.sg-component-typography .font-subheading {
  text-transform: none !important;
}
.sg-component-typography h2.font-heading {
  font-family: "UmbaSoftSCBold";
  font-style: normal;
  font-weight: 400;
}
.sg-component-typography h2.font-subheading {
  font-family: "NexaBold";
  font-style: normal;
  font-weight: 400;
}
.sg-component-typography h2.font-body {
  font-family: "NexaReg", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.typography-heading-font-row {
  border-top: 1px solid #dddee7;
}
@media (min-width: 1025px) {
  .typography-heading-font-row {
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .typography-heading-font-row {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .typography-heading-font-row {
    margin-top: 10px;
  }
}

.sg-styler.hcontent {
  border: 4px solid #dddee7;
}
@media (min-width: 1024px) {
  .sg-styler.hcontent {
    padding: 80px;
  }
}
@media (max-width: 1023px) {
  .sg-styler.hcontent {
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .sg-styler.hcontent {
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .sg-styler.hcontent {
    margin-top: 80px;
  }
}
@media (max-width: 1023px) {
  .sg-styler.hcontent {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .sg-styler.hcontent {
    margin-top: 40px;
  }
}
.sg-styler.hcontent:after {
  clear: both;
  display: block;
  content: "";
}
.sg-styler.hcontent > *:first-child {
  margin-top: 0;
}
.sg-styler.hcontent > *:last-child {
  margin-bottom: 0;
}
.sg-styler.hcontent > * {
  float: left;
  clear: left;
  padding: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sg-styler.hcontent > *:hover {
  background: rgba(67, 72, 103, 0.2);
}
.sg-styler.hcontent > p:first-of-type {
  margin-top: -8px;
}
.sg-styler.hcontent > p:last-of-type {
  margin-top: -16px;
}
.sg-styler.hcontent .font-subheading {
  padding-bottom: 0;
}
.sg-styler.hcontent .button {
  margin-left: 8px;
}

@media (max-width: 900px) {
  .sg-component-typography {
    display: block;
  }
  .sg-component-typography.row {
    margin-bottom: 0;
  }
  .sg-component-typography .col {
    padding: 0;
    display: block;
    width: 100%;
    margin: 5px 0;
  }
  .sg-component-typography .col h2.typography-category {
    font-size: 16px;
    padding-bottom: 5px;
    font-family: "NexaReg", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #434867;
    text-transform: uppercase;
  }
  .sg-component-typography .col .typography-category-breakdown {
    padding: 25px 0 0 25px;
    border-top: 1px solid #dddee7;
    border-left: 1px solid #dddee7;
  }
  .sg-component-typography .col .typography-category-breakdown p {
    line-height: 1;
  }
  .sg-component-typography .col.typography-category-overview {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .sg-section .sg-component-typography {
    display: block;
  }
  .sg-section .sg-component-typography .col .typography-category-breakdown p:not(.large-body-text) {
    width: 100%;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}
/* END OF TYPOGRAPHY ***********************/
/************************************************

BUTTONS

************************************************/
.sg-component-buttons .preview-wrapper .button {
  margin: 4px;
}
@media (max-width: 767px) {
  .sg-component-buttons .preview-wrapper .button {
    float: left;
    clear: left;
  }
}

/* END OF BUTTONS ***********************/
/************************************************

TYPE STYLES

************************************************/
.hcontent-dark-bg {
  background: #434867;
}

.hcontent-blue-accent-bg {
  background: #135EAB;
}

.sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links {
  position: relative;
  z-index: 2;
}
.sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link {
  border-bottom: none;
}
.sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a {
  border-radius: 3px 3px 0 0;
}
.sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent, .sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.h-tab-link-current {
  background: #fff;
  color: #5b6670;
  border: 1px solid #dddee7;
  border-bottom: none;
}
.sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-dark-bg, .sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-dark-bg.h-tab-link-current {
  background: #434867;
  color: #fff;
}
.sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-branded-bg1, .sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-branded-bg1.h-tab-link-current {
  background: #434867;
  color: #fff;
}
.sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-blue-accent-bg, .sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-blue-accent-bg.h-tab-link-current {
  background: #135EAB;
  color: #fff;
}
.sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-content-container {
  position: relative;
  top: -1px;
}
.sg-component-type-styles .h-tabs-container.style-button-tabs .h-tab-content-container .h-tab-content {
  padding-top: 0;
}
.sg-component-type-styles > .row:last-of-type {
  margin-bottom: 0;
}
.sg-component-type-styles h1, .sg-component-type-styles h2, .sg-component-type-styles h3, .sg-component-type-styles h4, .sg-component-type-styles h5, .sg-component-type-styles h6, .sg-component-type-styles p {
  padding: 0;
  margin: 0;
}
.sg-component-type-styles .sg-type-styles-container {
  border: 1px solid #dddee7;
  border-radius: 0 3px 3px 3px;
  position: relative;
}
@media (min-width: 1024px) {
  .sg-component-type-styles .sg-type-styles-container {
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .sg-component-type-styles .sg-type-styles-container {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .sg-component-type-styles .sg-type-styles-container {
    padding: 20px;
  }
}
.sg-component-type-styles .sg-type-styles-container .toggle-type-specs {
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 7px 10px;
  background: #999;
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sg-component-type-styles .sg-type-styles-container .toggle-type-specs:hover {
  background: #777;
}
.sg-component-type-styles .sg-type-detail-wrapper {
  padding: 20px 0;
}
.sg-component-type-styles .sg-type-detail-wrapper .type-detail-element {
  display: block;
  width: 100%;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.sg-component-type-styles .sg-type-detail-wrapper .typography-element-details {
  font-size: 0;
  margin-top: 15px;
}
.sg-component-type-styles .sg-type-detail-wrapper .typography-element-details > *:not(.word-tag) {
  opacity: 0;
  visibility: visible;
}
.sg-component-type-styles .sg-type-detail-wrapper .typography-element-details.show-typography-element-details {
  font-size: 14px;
}
.sg-component-type-styles .sg-type-detail-wrapper .typography-element-details.show-typography-element-details > *:not(.word-tag) {
  opacity: 1;
  visibility: visible;
}
.sg-component-type-styles .sg-type-detail-wrapper .typography-element-details .word-tag {
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sg-component-type-styles .sg-type-detail-wrapper .typography-element-details .word-tag:hover {
  background: #434867;
  color: #fff;
}
.sg-component-type-styles .sg-type-detail-wrapper .typography-element-details span.pipe {
  padding: 0 3px;
}
.sg-component-type-styles.sg-component-type-styles2 .sg-type-detail-wrapper {
  padding: 40px 0;
  border-bottom: 1px solid #dddee7;
}
.sg-component-type-styles.sg-component-type-styles2 .sg-type-detail-wrapper:first-of-type {
  border-top: 1px solid #dddee7;
}
.sg-component-type-styles.sg-component-type-styles2 .sg-type-detail-wrapper .sg-type-detail-content-wrap {
  padding-right: 50px;
}
.sg-component-type-styles.sg-component-type-styles2 .sg-type-detail-wrapper .sg-type-detail-content-wrap .type-detail-element-html {
  font-size: 14px;
  margin-bottom: 10px;
}
.sg-component-type-styles.sg-component-type-styles2 .sg-type-detail-wrapper .sg-type-detail-content-wrap .type-detail-element {
  display: block;
  width: 100%;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.sg-component-type-styles.sg-component-type-styles2 .sg-type-detail-wrapper .typography-element-details {
  margin-top: 0;
  font-size: 13px;
  opacity: 0.8;
}
.sg-component-type-styles.sg-component-type-styles2 .sg-type-detail-wrapper .typography-element-details .details-element {
  display: block;
  opacity: 1;
  visibility: visible;
}

.sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links {
  position: relative;
  z-index: 2;
}
.sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link {
  border-bottom: none;
}
.sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a {
  border-radius: 3px 3px 0 0;
}
.sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent, .sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.h-tab-link-current {
  background: #fff;
  color: #5b6670;
  border: 1px solid #dddee7;
  border-bottom: none;
}
.sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-dark-bg, .sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-dark-bg.h-tab-link-current {
  background: #434867;
  color: #fff;
}
.sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-branded-bg1, .sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-branded-bg1.h-tab-link-current {
  background: #434867;
  color: #fff;
}
.sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-blue-accent-bg, .sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-links li.h-tab-link a.hcontent.hcontent-blue-accent-bg.h-tab-link-current {
  background: #135EAB;
  color: #fff;
}
.sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-content-container {
  position: relative;
  top: -1px;
}
.sg-component-type-styles-color .h-tabs-container.style-button-tabs .h-tab-content-container .h-tab-content {
  padding-top: 0;
}
.sg-component-type-styles-color .sg-type-styles-color-container {
  border: 1px solid #dddee7;
  border-radius: 0 3px 3px 3px;
  position: relative;
}
@media (min-width: 1024px) {
  .sg-component-type-styles-color .sg-type-styles-color-container {
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .sg-component-type-styles-color .sg-type-styles-color-container {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .sg-component-type-styles-color .sg-type-styles-color-container {
    padding: 20px;
  }
}
.sg-component-type-styles-color .sg-type-styles-color-container .toggle-type-specs {
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 7px 10px;
  background: #999;
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sg-component-type-styles-color .sg-type-styles-color-container .toggle-type-specs:hover {
  background: #777;
}

.tooltip-typography-content {
  text-align: left;
  line-height: 1.4;
}
.tooltip-typography-content p {
  padding: 3px;
}

@media (max-width: 767px) {
  .sg-component-type-styles.sg-component-type-styles2 .sg-type-detail-wrapper .sg-type-detail-content-wrap {
    padding-right: 0;
    margin-bottom: 10px;
  }
}
/* END OF TYPE STYLES ***********************/