/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
/* line 11, ../../src/styles/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
/* line 30, ../../src/styles/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 41, ../../src/styles/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
/* line 50, ../../src/styles/_normalize.scss */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 64, ../../src/styles/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Removes default margin.
 */
/* line 74, ../../src/styles/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
/* line 86, ../../src/styles/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
/* line 94, ../../src/styles/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
/* line 108, ../../src/styles/_normalize.scss */
h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 116, ../../src/styles/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 124, ../../src/styles/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
/* line 133, ../../src/styles/_normalize.scss */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */
/* line 141, ../../src/styles/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
/* line 151, ../../src/styles/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
/* line 163, ../../src/styles/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
/* line 173, ../../src/styles/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
/* line 181, ../../src/styles/_normalize.scss */
small {
  font-size: 80%;
}

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

/* line 197, ../../src/styles/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 201, ../../src/styles/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
/* line 213, ../../src/styles/_normalize.scss */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
/* line 221, ../../src/styles/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
/* line 233, ../../src/styles/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
/* line 245, ../../src/styles/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 256, ../../src/styles/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
/* line 267, ../../src/styles/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 281, ../../src/styles/_normalize.scss */
button,
input {
  line-height: normal;
}

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

/*
 * Re-set default cursor for disabled elements.
 */
/* line 306, ../../src/styles/_normalize.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
/* line 316, ../../src/styles/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 328, ../../src/styles/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 340, ../../src/styles/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
/* line 349, ../../src/styles/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
/* line 360, ../../src/styles/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
/* line 373, ../../src/styles/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */
/* line 5, ../../src/styles/_flickity.scss */
.flickity-enabled {
  position: relative;
}

/* line 9, ../../src/styles/_flickity.scss */
.flickity-enabled:focus {
  outline: none;
}

/* line 11, ../../src/styles/_flickity.scss */
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

/* line 17, ../../src/styles/_flickity.scss */
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
/* line 25, ../../src/styles/_flickity.scss */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 34, ../../src/styles/_flickity.scss */
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 40, ../../src/styles/_flickity.scss */
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
/* line 47, ../../src/styles/_flickity.scss */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

/* line 54, ../../src/styles/_flickity.scss */
.flickity-button:hover {
  background: white;
  cursor: pointer;
}

/* line 59, ../../src/styles/_flickity.scss */
.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

/* line 64, ../../src/styles/_flickity.scss */
.flickity-button:active {
  opacity: 0.6;
}

/* line 68, ../../src/styles/_flickity.scss */
.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

/* line 75, ../../src/styles/_flickity.scss */
.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
/* line 81, ../../src/styles/_flickity.scss */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

/* line 90, ../../src/styles/_flickity.scss */
.flickity-prev-next-button.previous {
  left: 10px;
}

/* line 91, ../../src/styles/_flickity.scss */
.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
/* line 93, ../../src/styles/_flickity.scss */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

/* line 97, ../../src/styles/_flickity.scss */
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

/* line 102, ../../src/styles/_flickity.scss */
.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
/* line 112, ../../src/styles/_flickity.scss */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

/* line 123, ../../src/styles/_flickity.scss */
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

/* line 125, ../../src/styles/_flickity.scss */
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

/* line 136, ../../src/styles/_flickity.scss */
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/*******************************
  1. Commonly Used (Extends)
  2. Media Queries
  3. Custom
*******************************/
/*******************************
  1. COMMONLY USED (EXTENDS)
*******************************/
/* line 18, ../../src/styles/_mixins.scss */
header #menu-main-menu, .tax-type.et-db #et-boc .et-l .et_pb_section .filters ul,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters ul, .single-hero ul.breadcrumbs, footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}

/* line 26, ../../src/styles/_mixins.scss */
header #menu-main-menu li, .tax-type.et-db #et-boc .et-l .et_pb_section .filters ul li,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters ul li, .single-hero ul.breadcrumbs li {
  display: inline-block;
}

/* line 31, ../../src/styles/_mixins.scss */
.flickity-prev-next-button, .modal .modal-close, .et-db.single #et-boc .et-l a.launch-form {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top left;
}

/*******************************
  2. MEDIA QUERIES
*******************************/
/*******************************
  3. CUSTOM
     3.1 Buttons
*******************************/
/*******************************
  3.1 Buttons
*******************************/
/* line 98, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary, .et-db #et-boc .et-l a.et_pb_button.btn-secondary, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work a.et_pb_button, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white, .et-db #et-boc .et-l a.et_pb_button.btn-white, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost, .et-db #et-boc .et-l a.et_pb_button.btn-ghost, .et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true a.btn-ghost, .home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true a.btn-ghost-grey, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a, .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab a.btn, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button:not(.btn-text), .et-db #et-boc .et-l a.et_pb_button:not(.btn-text), body .gform_wrapper form .gform_footer input[type=submit],
.et-db #et-boc .et-l form .gform_footer input[type=submit], .et-db #et-boc .et-l div.hbspt-form .hs_submit.hs-submit input[type=submit],
.contact-form_wrapper div.hbspt-form .hs_submit.hs-submit input[type=submit], header #menu-main-menu > li.btn-small a, .et-db #et-boc .et-l .intelligence-sidebar-cta a.btn {
  font-family: 'BatonTurboMedium', Georgia, sans-serif;
  color: #333333;
  padding: 16px 32px !important;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid #FF6468;
  background-color: #FF6468;
  text-align: center;
  transition: all 250ms;
}
/* line 110, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary:hover, .et-db #et-boc .et-l a.et_pb_button.btn-secondary:hover, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work a.et_pb_button:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white:hover, .et-db #et-boc .et-l a.et_pb_button.btn-white:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost:hover, .et-db #et-boc .et-l a.et_pb_button.btn-ghost:hover, .et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true a.btn-ghost:hover, .home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true a.btn-ghost-grey:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey:hover, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey:hover, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a:hover, .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab a.btn:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button:hover:not(.btn-text), .et-db #et-boc .et-l a.et_pb_button:hover:not(.btn-text), body .gform_wrapper form .gform_footer input[type=submit]:hover,
.et-db #et-boc .et-l form .gform_footer input[type=submit]:hover, .et-db #et-boc .et-l div.hbspt-form .hs_submit.hs-submit input[type=submit]:hover,
.contact-form_wrapper div.hbspt-form .hs_submit.hs-submit input[type=submit]:hover, header #menu-main-menu > li.btn-small a:hover, .et-db #et-boc .et-l .intelligence-sidebar-cta a.btn:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary:focus, .et-db #et-boc .et-l a.et_pb_button.btn-secondary:focus, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work a.et_pb_button:focus, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white:focus, .et-db #et-boc .et-l a.et_pb_button.btn-white:focus, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost:focus, .et-db #et-boc .et-l a.et_pb_button.btn-ghost:focus, .et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true a.btn-ghost:focus, .home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true a.btn-ghost-grey:focus, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey:focus, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey:focus, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a:focus, .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab a.btn:focus, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button:focus:not(.btn-text), .et-db #et-boc .et-l a.et_pb_button:focus:not(.btn-text), body .gform_wrapper form .gform_footer input[type=submit]:focus,
.et-db #et-boc .et-l form .gform_footer input[type=submit]:focus, .et-db #et-boc .et-l div.hbspt-form .hs_submit.hs-submit input[type=submit]:focus,
.contact-form_wrapper div.hbspt-form .hs_submit.hs-submit input[type=submit]:focus, header #menu-main-menu > li.btn-small a:focus, .et-db #et-boc .et-l .intelligence-sidebar-cta a.btn:focus {
  color: #333333;
  border: 1px solid #FFADB0;
  background-color: #FFADB0;
}
/* line 115, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary:hover:after, .et-db #et-boc .et-l a.et_pb_button.btn-secondary:hover:after, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work a.et_pb_button:hover:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white:hover:after, .et-db #et-boc .et-l a.et_pb_button.btn-white:hover:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost:hover:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost:hover:after, .et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true a.btn-ghost:hover:after, .home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true a.btn-ghost-grey:hover:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey:hover:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey:hover:after, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a:hover:after, .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab a.btn:hover:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button:not(.btn-text):hover:after, .et-db #et-boc .et-l a.et_pb_button:not(.btn-text):hover:after, body .gform_wrapper form .gform_footer input[type=submit]:hover:after,
.et-db #et-boc .et-l form .gform_footer input[type=submit]:hover:after, .et-db #et-boc .et-l div.hbspt-form .hs_submit.hs-submit input[type=submit]:hover:after,
.contact-form_wrapper div.hbspt-form .hs_submit.hs-submit input[type=submit]:hover:after, header #menu-main-menu > li.btn-small a:hover:after, .et-db #et-boc .et-l .intelligence-sidebar-cta a.btn:hover:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary:focus:after, .et-db #et-boc .et-l a.et_pb_button.btn-secondary:focus:after, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work a.et_pb_button:focus:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white:focus:after, .et-db #et-boc .et-l a.et_pb_button.btn-white:focus:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost:focus:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost:focus:after, .et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true a.btn-ghost:focus:after, .home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true a.btn-ghost-grey:focus:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey:focus:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey:focus:after, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a:focus:after, .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab a.btn:focus:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button:not(.btn-text):focus:after, .et-db #et-boc .et-l a.et_pb_button:not(.btn-text):focus:after, body .gform_wrapper form .gform_footer input[type=submit]:focus:after,
.et-db #et-boc .et-l form .gform_footer input[type=submit]:focus:after, .et-db #et-boc .et-l div.hbspt-form .hs_submit.hs-submit input[type=submit]:focus:after,
.contact-form_wrapper div.hbspt-form .hs_submit.hs-submit input[type=submit]:focus:after, header #menu-main-menu > li.btn-small a:focus:after, .et-db #et-boc .et-l .intelligence-sidebar-cta a.btn:focus:after {
  display: none;
}

/* line 121, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-small, .et-db #et-boc .et-l a.et_pb_button.btn-small, header #menu-main-menu > li.btn-small a {
  padding: 8px 16px !important;
  font-size: 14px;
  line-height: 1.43;
}
/* line 125, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-small:hover, .et-db #et-boc .et-l a.et_pb_button.btn-small:hover, header #menu-main-menu > li.btn-small a:hover {
  padding: 8px 16px !important;
}

/* line 130, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary, .et-db #et-boc .et-l a.et_pb_button.btn-secondary, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work a.et_pb_button {
  color: #fff;
  background-color: #1D2438;
  border-color: #1D2438;
}
/* line 135, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary:hover, .et-db #et-boc .et-l a.et_pb_button.btn-secondary:hover, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work a.et_pb_button:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary:focus, .et-db #et-boc .et-l a.et_pb_button.btn-secondary:focus, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work a.et_pb_button:focus {
  color: #fff;
  background-color: #1D3F86;
  border-color: #1D3F86;
}

/* line 143, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white, .et-db #et-boc .et-l a.et_pb_button.btn-white {
  color: #333333;
  background-color: #fff;
  border-color: #fff;
}
/* line 148, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white:hover, .et-db #et-boc .et-l a.et_pb_button.btn-white:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white:focus, .et-db #et-boc .et-l a.et_pb_button.btn-white:focus {
  color: #333333;
  background-color: #E0E0E0;
  border-color: #E0E0E0;
}

/* line 156, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost, .et-db #et-boc .et-l a.et_pb_button.btn-ghost, .et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true a.btn-ghost, .home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true a.btn-ghost-grey {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
/* line 161, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost:hover, .et-db #et-boc .et-l a.et_pb_button.btn-ghost:hover, .et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true a.btn-ghost:hover, .home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true a.btn-ghost-grey:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost:focus, .et-db #et-boc .et-l a.et_pb_button.btn-ghost:focus, .et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true a.btn-ghost:focus, .home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true a.btn-ghost-grey:focus {
  color: #1D2438;
  background-color: #88A6FA;
  border-color: #88A6FA;
}

/* line 169, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a {
  color: #333333;
  background-color: transparent;
  border-color: #333333;
}
/* line 174, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey:hover, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey:hover, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey:focus, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey:focus, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a:focus {
  color: #333333;
  background-color: #E0E0E0;
  border-color: #333333;
}

/* line 183, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary[target=_blank]:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost[target=_blank]:after, .et-db #et-boc .et-l a.et_pb_button.btn-secondary[target=_blank]:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost[target=_blank]:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download[target=_blank]:after, .et-db #et-boc .et-l a.et_pb_button.btn-download:after, .et_pb_module_header a[target=_blank]:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button[target=_blank]:not(.btn-text):after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white[target=_blank]:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost[target=_blank]:hover:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey[target=_blank]:after, .et-db #et-boc .et-l a.et_pb_button[target=_blank]:not(.btn-text):after, .et-db #et-boc .et-l a.et_pb_button.btn-white[target=_blank]:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost[target=_blank]:hover:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey[target=_blank]:after, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a[target=_blank]:after {
  display: none;
}
/* line 186, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary[target=_blank] span, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost[target=_blank] span, .et-db #et-boc .et-l a.et_pb_button.btn-secondary[target=_blank] span, .et-db #et-boc .et-l a.et_pb_button.btn-ghost[target=_blank] span, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download span, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download[target=_blank] span, .et-db #et-boc .et-l a.et_pb_button.btn-download span, .et_pb_module_header a[target=_blank] span, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button[target=_blank]:not(.btn-text) span, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white[target=_blank] span, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost[target=_blank]:hover span, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey[target=_blank] span, .et-db #et-boc .et-l a.et_pb_button[target=_blank]:not(.btn-text) span, .et-db #et-boc .et-l a.et_pb_button.btn-white[target=_blank] span, .et-db #et-boc .et-l a.et_pb_button.btn-ghost[target=_blank]:hover span, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey[target=_blank] span, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a[target=_blank] span {
  padding-right: 19px !important;
  position: relative;
}
/* line 189, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary[target=_blank] span:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost[target=_blank] span:after, .et-db #et-boc .et-l a.et_pb_button.btn-secondary[target=_blank] span:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost[target=_blank] span:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download span:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download[target=_blank] span:after, .et-db #et-boc .et-l a.et_pb_button.btn-download span:after, .et_pb_module_header a[target=_blank] span:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button[target=_blank]:not(.btn-text) span:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-white[target=_blank] span:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost[target=_blank]:hover span:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost-grey[target=_blank] span:after, .et-db #et-boc .et-l a.et_pb_button[target=_blank]:not(.btn-text) span:after, .et-db #et-boc .et-l a.et_pb_button.btn-white[target=_blank] span:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost[target=_blank]:hover span:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost-grey[target=_blank] span:after, .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a[target=_blank] span:after {
  content: "";
  display: block !important;
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  background-image: url(../../images/icon_ext.svg);
  width: 9px;
  height: 9px;
  opacity: 1;
}

/* line 210, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-secondary[target=_blank] span:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-ghost[target=_blank] span:after, .et-db #et-boc .et-l a.et_pb_button.btn-secondary[target=_blank] span:after, .et-db #et-boc .et-l a.et_pb_button.btn-ghost[target=_blank] span:after {
  background-image: url(../../images/icon_ext_white.svg);
}

/* line 218, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download span, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download[target=_blank] span, .et-db #et-boc .et-l a.et_pb_button.btn-download span {
  padding-right: 29px !important;
  position: relative;
}
/* line 221, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download span:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-download[target=_blank] span:after, .et-db #et-boc .et-l a.et_pb_button.btn-download span:after {
  content: "";
  display: block !important;
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  background-image: url(../../images/icon_download.svg);
  width: 20px;
  height: 20px;
  opacity: 1;
}

/* line 239, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-text, .et-db #et-boc .et-l a.et_pb_button.btn-text, .et-db #et-boc .et-l .btn-text a.et_pb_button, body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row a.et_pb_button.btn-text, .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3 a, .et-db #et-boc .et-l .article-callout a span {
  font-family: 'BatonTurboMedium', Verdana, sans-serif;
  color: #FF6468;
  padding: 0 23px 0 0 !important;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  border-radius: 0;
  border: none;
  background-color: transparent;
  transition: all 250ms;
  position: relative;
}
/* line 251, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-text:after, .et-db #et-boc .et-l a.et_pb_button.btn-text:after, .et-db #et-boc .et-l .btn-text a.et_pb_button:after, body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row a.et_pb_button.btn-text:after, .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3 a:after, .et-db #et-boc .et-l .article-callout a span:after {
  content: "";
  display: block;
  width: 11px;
  height: 9px;
  opacity: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(../../images/icon_arrow_right_coral.svg);
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 250ms;
}
/* line 267, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-text:hover, .et-db #et-boc .et-l a.et_pb_button.btn-text:hover, .et-db #et-boc .et-l .btn-text a.et_pb_button:hover, body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row a.et_pb_button.btn-text:hover, .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3 a:hover, .et-db #et-boc .et-l .article-callout a span:hover, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-text:focus, .et-db #et-boc .et-l a.et_pb_button.btn-text:focus, .et-db #et-boc .et-l .btn-text a.et_pb_button:focus, body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row a.et_pb_button.btn-text:focus, .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3 a:focus, .et-db #et-boc .et-l .article-callout a span:focus {
  color: #FF6468;
  border: none;
  background-color: transparent;
}
/* line 272, ../../src/styles/_mixins.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-text:hover:after, .et-db #et-boc .et-l a.et_pb_button.btn-text:hover:after, .et-db #et-boc .et-l .btn-text a.et_pb_button:hover:after, body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row a.et_pb_button.btn-text:hover:after, .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3 a:hover:after, .et-db #et-boc .et-l .article-callout a span:hover:after, .et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-text:focus:after, .et-db #et-boc .et-l a.et_pb_button.btn-text:focus:after, .et-db #et-boc .et-l .btn-text a.et_pb_button:focus:after, body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row a.et_pb_button.btn-text:focus:after, .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3 a:focus:after, .et-db #et-boc .et-l .article-callout a span:focus:after {
  right: 0;
}

/***************************
	1. Typography
	2. Layout
	3. Buttons
***************************/
/***************************
	1. Typography
***************************/
@font-face {
  font-family: 'BatonTurbo';
  src: url(../../fonts/BatonTurbo/BatonTurboWeb-Regular.woff);
  src: url(../../fonts/BatonTurbo/BatonTurboWeb-Regular.woff2);
}
@font-face {
  font-family: 'BatonTurboMedium';
  src: url(../../fonts/BatonTurbo/BatonTurboWeb-Medium.woff);
  src: url(../../fonts/BatonTurbo/BatonTurboWeb-Medium.woff2);
}
@font-face {
  font-family: 'Tiempos';
  src: url(../../fonts/TiemposText/tiempos-text-regular.woff2);
  src: url(../../fonts/TiemposText/TiemposText-Regular.otf);
}
@font-face {
  font-family: 'TiemposSemibold';
  src: url(../../fonts/TiemposText/tiempos-text-semibold.woff2);
  src: url(../../fonts/TiemposText/TiemposText-Semibold.otf);
}
/* line 34, ../../src/styles/_universal.scss */
body {
  font-family: 'Tiempos', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.1%;
  color: #333333;
}
/* line 41, ../../src/styles/_universal.scss */
body strong {
  font-family: 'TiemposSemibold', serif;
}

/* line 46, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h1,
.et-db #et-boc .et-l .et_pb_module h1 a,
h1,
h1 a,
.et-db #et-boc .et-l .et_pb_module *.h1,
.et-db #et-boc .et-l .et_pb_module *.h1 a,
.h1,
.h1 a,
.et-db #et-boc .et-l .et_pb_module h2,
.et-db #et-boc .et-l .et_pb_module h2 a,
.et-db #et-boc .et-l .et_pb_module *.h2,
.et-db #et-boc .et-l .et_pb_module *.h2 a,
h2,
h2 a,
.h2,
.h2 a,
.et-db #et-boc .et-l .et_pb_module h3,
.et-db #et-boc .et-l .et_pb_module h3 > a,
body.et-db #et-boc .et-l .et_pb_module.card-news h3 > a,
.et-db #et-boc .et-l .et_pb_module *.h3,
.et-db #et-boc .et-l .et_pb_module *.h3 a,
h3,
h3 a,
.h3,
.h3 a {
  font-family: 'BatonTurbo', Verdana, sans-serif;
  font-weight: 400;
  color: #1D2438;
}

/* line 76, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h1,
.et-db #et-boc .et-l .et_pb_module *.h1,
h1,
.h1,
.et-db #et-boc .et-l .et_pb_module h2,
.et-db #et-boc .et-l .et_pb_module *.h2,
h2,
.h2,
.et-db #et-boc .et-l .et_pb_module h3,
.et-db #et-boc .et-l .et_pb_module *.h3,
h3,
.h3,
.et-db #et-boc .et-l .et_pb_module h4,
.et-db #et-boc .et-l .et_pb_module *.h4,
h4,
.h4 {
  line-height: 1.2;
}

/* line 95, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h1,
.et-db #et-boc .et-l .et_pb_module h1 a,
.et-db #et-boc .et-l .et_pb_module *.h1,
.et-db #et-boc .et-l .et_pb_module *.h1 a,
h1,
h1 a,
.h1,
.et-db #et-boc .et-l .et_pb_module.h1 *.et_pb_module_header,
.h1 a {
  font-size: 54px;
  letter-spacing: -1%;
}

/* line 108, ../../src/styles/_universal.scss */
body.et-db #et-boc .et-l .et_pb_module h2,
body.et-db #et-boc .et-l .et_pb_module h2 a,
body.et-db #et-boc .et-l .et_pb_module *.h2,
body.et-db #et-boc .et-l .et_pb_module *.h2 a,
h2,
h2 a,
.h2,
.h2 a {
  font-size: 36px;
  letter-spacing: -0.5%;
}

/* line 120, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h5,
.et-db #et-boc .et-l .et_pb_module h5 a,
.et-db #et-boc .et-l .et_pb_module *.h5,
.et-db #et-boc .et-l .et_pb_module *.h5 a,
h5,
h5 a,
.h5,
.h5 a {
  font-family: 'Tiempos', Georgia, sans-serif;
  color: #1D2438;
  font-weight: 500;
  line-height: 1.2;
}

/* line 134, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h3,
.et-db #et-boc .et-l .et_pb_module *.h3,
h3,
.h3,
.et-db #et-boc .et-l .et_pb_module h5,
.et-db #et-boc .et-l .et_pb_module *.h5,
h5,
.h5 {
  margin-bottom: 16px;
}

/* line 145, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h3,
.et-db #et-boc .et-l .et_pb_module *.h3,
h3,
.h3 {
  line-height: 1.2 !important;
}

/* line 152, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h3,
.et-db #et-boc .et-l .et_pb_module h3 a,
.et-db #et-boc .et-l .et_pb_module *.h3,
.et-db #et-boc .et-l .et_pb_module *.h3 a,
h3,
h3 a,
.h3,
.h3 a {
  font-size: 24px;
  text-transform: none;
  letter-spacing: -0.5%;
}

/* line 165, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h4,
.et-db #et-boc .et-l .et_pb_module *.h4,
h4,
.h4 {
  letter-spacing: 1%;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}
/* line 173, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h4:after,
.et-db #et-boc .et-l .et_pb_module *.h4:after,
h4:after,
.h4:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #BDBDBD;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* line 184, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h4,
.et-db #et-boc .et-l .et_pb_module h4 a,
.et-db #et-boc .et-l .et_pb_module *.h4,
.et-db #et-boc .et-l .et_pb_module *.h4 a,
h4,
h4 a,
.h4,
.h4 a {
  font-family: 'BatonTurboMedium', Verdana, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}
/* line 196, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h4:hover,
.et-db #et-boc .et-l .et_pb_module h4 a:hover,
.et-db #et-boc .et-l .et_pb_module *.h4:hover,
.et-db #et-boc .et-l .et_pb_module *.h4 a:hover,
h4:hover,
h4 a:hover,
.h4:hover,
.h4 a:hover {
  text-decoration: none;
}

/* line 201, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h4.alt,
.et-db #et-boc .et-l .et_pb_module h4.alt a,
.et-db #et-boc .et-l .et_pb_module *.h4.alt,
.et-db #et-boc .et-l .et_pb_module *.h4.alt a,
h4.alt,
h4.alt a,
.h4.alt,
.h4.alt a {
  padding-bottom: 6px;
  border-bottom: 3px solid #BDBDBD;
}

/* line 213, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h5,
.et-db #et-boc .et-l .et_pb_module h5 a,
.et-db #et-boc .et-l .et_pb_module *.h5,
.et-db #et-boc .et-l .et_pb_module *.h5 a,
h5,
h5 a,
.h5,
.h5 a {
  font-size: 16px;
}

/* line 224, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module h5.breadcrumb a {
  text-transform: uppercase;
}

/* line 230, ../../src/styles/_universal.scss */
body h1,
body *.h1,
body.et-db #et-boc .et-l .et_pb_module h1,
body.et-db #et-boc .et-l .et_pb_module *.h1 {
  padding-bottom: 32px;
}
/* line 235, ../../src/styles/_universal.scss */
body h2,
body *.h2,
body.et-db #et-boc .et-l .et_pb_module h2,
body.et-db #et-boc .et-l .et_pb_module *.h2 {
  padding-bottom: 24px;
}
/* line 240, ../../src/styles/_universal.scss */
body h4,
body *.h4,
body.et-db #et-boc .et-l .et_pb_module h4,
body.et-db #et-boc .et-l .et_pb_module *.h4 {
  margin-bottom: 30px;
}
/* line 245, ../../src/styles/_universal.scss */
body h3,
body *.h3,
body h5,
body *.h5,
body.et-db #et-boc .et-l .et_pb_module h3,
body.et-db #et-boc .et-l .et_pb_module *.h3,
body.et-db #et-boc .et-l .et_pb_module h5,
body.et-db #et-boc .et-l .et_pb_module *.h5 {
  padding-bottom: 16px;
}

/* line 253, ../../src/styles/_universal.scss */
body.et-db #et-boc .et-l .et_pb_module a:not(.et_pb_button) {
  font-family: 'TiemposSemibold', serif;
}

/* line 257, ../../src/styles/_universal.scss */
body.et-db #et-boc .et-l .et_pb_module a:not(.et_pb_button),
a:not(.et_pb_button) {
  font-weight: 600;
  color: #961316;
  text-decoration: none;
}
/* line 262, ../../src/styles/_universal.scss */
body.et-db #et-boc .et-l .et_pb_module a:not(.et_pb_button):hover,
a:not(.et_pb_button):hover {
  text-decoration: underline !important;
}
/* line 265, ../../src/styles/_universal.scss */
body.et-db #et-boc .et-l .et_pb_module a:not(.et_pb_button):focus,
a:not(.et_pb_button):focus {
  outline: none;
}

/* line 271, ../../src/styles/_universal.scss */
p.small {
  font-size: 14px;
  line-height: 1.5;
}

/* line 277, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l ul.checklist,
.et-db #et-boc .et-l .et_pb_tab ul.checklist {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
/* line 282, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l ul.checklist li,
.et-db #et-boc .et-l .et_pb_tab ul.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: none;
}
/* line 287, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l ul.checklist li:before,
.et-db #et-boc .et-l .et_pb_tab ul.checklist li:before {
  content: '';
  background-image: url(../../images/icon_checkmark.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  width: 13px;
  height: 9px;
  display: block;
  position: absolute;
  left: 0;
  top: 0.5em;
}

/* line 303, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .slash-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
/* line 307, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .slash-list ul li {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  /* line 307, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .slash-list ul li {
    display: inline;
  }
}
/* line 312, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .slash-list ul li:after {
  content: ' / ';
  color: #E0E0E0;
}

/***************************
	2. Layout
***************************/
@media screen and (max-width: 767px) {
  /* line 322, ../../src/styles/_universal.scss */
  main {
    padding-top: 0 !important;
  }
}

/* line 328, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module img,
img {
  max-width: 100%;
  height: auto;
}
/* line 332, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module img.aligncenter,
img.aligncenter {
  margin: 0 auto 24px;
}

/* line 337, ../../src/styles/_universal.scss */
.hide {
  display: none !important;
}

/* line 342, ../../src/styles/_universal.scss */
.et_pb_module_header a[target=_blank] {
  padding-right: 0 !important;
}
/* line 345, ../../src/styles/_universal.scss */
.et_pb_module_header a[target=_blank]:after {
  background-image: url(../../images/icon_ext_red.svg);
  top: 11px;
  right: -16px;
  transform: none;
}

/* line 354, ../../src/styles/_universal.scss */
.container {
  max-width: 1072px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  /* line 354, ../../src/styles/_universal.scss */
  .container {
    padding: 20px 24px;
  }
}

@media (min-width: 1440px) {
  /* line 364, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}
/* line 369, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section.et_section_transparent.dark, .et-db #et-boc .et-l .et_pb_section.dark {
  background-color: #1D2438;
}
/* line 372, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section.et_section_transparent.dark .et_pb_module:not(.et_pb_button_module_wrapper) *, .et-db #et-boc .et-l .et_pb_section.dark .et_pb_module:not(.et_pb_button_module_wrapper) * {
  color: #fff;
}
/* line 376, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section.et_section_transparent.shaded, .et-db #et-boc .et-l .et_pb_section.shaded {
  background-color: #F1F0ED;
}
/* line 380, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section.et_section_transparent.tinted, .et-db #et-boc .et-l .et_pb_section.tinted {
  background-color: #F1F5FF;
}
/* line 385, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section.align-center > .et_pb_row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 392, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section.et_pb_with_background .et_pb_row {
  width: 100%;
}
@media screen and (max-width: 767px) {
  /* line 392, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section.et_pb_with_background .et_pb_row {
    width: 100%;
  }
}
/* line 399, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row {
  max-width: 1200px;
}
@media (min-width: 1440px) {
  /* line 399, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_row {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
}
@media screen and (min-width: 981px) {
  /* line 405, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_row.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
/* line 410, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
/* line 413, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row.narrow {
  max-width: 888px;
}
@media screen and (max-width: 980px) {
  /* line 418, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section.swap-mobile > .et_pb_row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 422, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section.swap-mobile > .et_pb_row > .et_pb_column:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
    margin-top: 30px;
  }
}
/* line 430, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section > .et_pb_row {
  padding-left: 64px;
  padding-right: 64px;
}
@media screen and (max-width: 767px) {
  /* line 430, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (min-width: 981px) {
  /* line 437, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column {
    margin-right: 32px;
  }
}
@media screen and (min-width: 981px) {
  /* line 441, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_2 {
    width: calc(50% - calc(32px / 2));
  }
}
@media screen and (min-width: 981px) {
  /* line 446, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_3 {
    width: calc(33.3% - calc(calc(32px * 2) / 3));
  }
}
@media screen and (min-width: 981px) {
  /* line 451, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_2_3 {
    width: calc(66.6% - calc(32px /2));
  }
}
@media screen and (min-width: 768px) {
  /* line 456, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_4 {
    width: calc(50% - calc(32px / 2));
    margin-right: 32px;
  }
}
@media screen and (min-width: 981px) {
  /* line 456, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_4 {
    width: calc(25% - calc(calc(32px * 3) / 4));
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  /* line 465, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_5 {
    width: calc(50% - calc(32px / 2));
    margin-right: 32px;
  }
}
@media screen and (min-width: 981px) {
  /* line 465, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_5 {
    width: calc(20% - calc(calc(32px * 4) / 5));
  }
}
@media screen and (min-width: 981px) {
  /* line 474, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_2_5 {
    width: calc(40% - calc(32px / 2));
    margin-right: 32px;
  }
}
@media screen and (min-width: 981px) {
  /* line 480, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_3_5 {
    width: calc(60% - calc(32px / 2));
    margin-right: 32px;
  }
}
@media screen and (min-width: 480px) {
  /* line 486, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_6 {
    width: calc(33.3% - calc(calc(32px * 2) / 3));
    margin-right: 32px;
  }
}
@media screen and (min-width: 981px) {
  /* line 486, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_6 {
    width: calc(16.66% - calc(calc(32px * 5) / 6));
  }
}
/* line 495, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_4_4 {
  width: 100%;
}
/* line 500, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_blurb_content {
  max-width: 100%;
}
/* line 503, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs {
  border: none;
}
/* line 505, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs ul.et_pb_tabs_controls {
  background-color: transparent;
}
/* line 507, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs ul.et_pb_tabs_controls li {
  border: none;
  float: none;
}
/* line 511, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs ul.et_pb_tabs_controls:after {
  border-color: transparent;
}
/* line 515, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) {
  max-width: 888px;
  margin: 0 auto;
}
/* line 519, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  /* line 522, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li:not(:first-child) {
    margin-top: 20px;
  }
}
/* line 526, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li a:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #BDBDBD;
  position: absolute;
  left: 0;
  bottom: 0;
}
/* line 537, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li:hover a {
  color: #1D2438;
}
/* line 539, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li:hover a:after {
  background-color: #FF6468;
}
/* line 544, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li.et_pb_tab_active {
  background-color: transparent;
  border: none;
  position: relative;
}
/* line 548, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li.et_pb_tab_active a:after {
  height: 3px;
  background-color: #FF6468;
  bottom: -1px;
}
/* line 553, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li.et_pb_tab_active a {
  color: #1D2438 !important;
  font-weight: 600;
}
/* line 558, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li a {
  color: #4F4F4F;
  font-weight: 400;
  padding-bottom: 12px;
  position: relative;
}
/* line 563, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) ul.et_pb_tabs_controls li a:hover {
  text-decoration: none !important;
}
/* line 569, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs {
  background-color: transparent;
}
/* line 571, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab {
  padding: 60px 20px 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  /* line 571, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab {
    padding-top: 20px;
  }
}
/* line 577, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab .et_pb_tab_content {
  color: #000;
}
@media screen and (min-width: 981px) {
  /* line 577, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab .et_pb_tab_content {
    width: 63%;
    padding-right: 48px;
    float: left;
  }
}
/* line 584, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab .et_pb_tab_content > *:not(img) {
  max-width: 428px;
}
@media screen and (min-width: 981px) {
  /* line 587, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab .et_pb_tab_content + img {
    width: 37%;
    float: right;
  }
}
@media screen and (max-width: 980px) {
  /* line 587, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab .et_pb_tab_content + img {
    max-width: 335px;
    margin: 48px auto 0;
  }
}
/* line 598, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab a.btn {
  display: inline-block;
  margin-top: 24px;
}
/* line 602, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab a.btn:hover {
  text-decoration: none !important;
}
/* line 606, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left) .et_pb_all_tabs .et_pb_tab.has-btn {
  padding-bottom: 100px;
}
@media screen and (min-width: 981px) {
  /* line 614, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left).images-left .et_pb_all_tabs .et_pb_tab .et_pb_tab_content {
    width: 50%;
    padding-left: 48px;
    padding-right: 0;
    float: right;
  }
}
/* line 621, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left).images-left .et_pb_all_tabs .et_pb_tab .et_pb_tab_content > *:not(img) {
  max-width: 428px;
}
@media screen and (min-width: 981px) {
  /* line 624, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left).images-left .et_pb_all_tabs .et_pb_tab .et_pb_tab_content + img {
    width: 50%;
    float: left;
    max-width: none;
  }
}
/* line 634, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs:not(.tabs-left).images-left ul.et_pb_tabs_controls {
  text-align: center;
}
@media (min-width: 768px) {
  /* line 639, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  /* line 643, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left ul.et_pb_tabs_controls {
    width: 33.3%;
  }
}
@media screen and (max-width: 767px) {
  /* line 643, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left ul.et_pb_tabs_controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
  }
}
/* line 652, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left ul.et_pb_tabs_controls li:not(:last-child) {
  margin-bottom: 20px;
}
/* line 655, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left ul.et_pb_tabs_controls li a {
  line-height: 1.2;
  font-weight: 400;
  font-family: 'BatonTurbo', sans-serif;
  color: #4F4F4F;
}
@media screen and (max-width: 767px) {
  /* line 655, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left ul.et_pb_tabs_controls li a {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    width: 45vw;
  }
}
/* line 666, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left ul.et_pb_tabs_controls li a:hover {
  text-decoration: none !important;
  font-weight: 600;
}
/* line 672, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left ul.et_pb_tabs_controls li.et_pb_tab_active a {
  color: #4F4F4F;
  font-family: 'BatonTurboMedium', sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  /* line 680, ../../src/styles/_universal.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left .et_pb_all_tabs {
    width: 66.7%;
  }
}
/* line 684, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left .et_pb_all_tabs .et_pb_tab {
  padding-top: 0;
}
/* line 686, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left .et_pb_all_tabs .et_pb_tab li {
  position: relative;
}
/* line 688, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.et_pb_tabs.tabs-left .et_pb_all_tabs .et_pb_tab li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #333333;
  position: absolute;
  top: 0.63em;
  left: -1em;
  border-radius: 100%;
}

/***************************
	3. Buttons
***************************/
/* line 711, ../../src/styles/_universal.scss */
.btn-fullwidth input[type=submit],
.btn-fullwidth input,
.btn-fullwidth textarea {
  width: 100% !important;
}

/* line 765, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-text.btn-text-dark {
  color: #1D3F86;
}
/* line 767, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-text.btn-text-dark:after {
  background-image: url(../../images/icon_arrow_right_dark.svg);
}
/* line 772, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-play-video {
  padding: 10px 10px 10px 45px !important;
  background-color: transparent !important;
  line-height: 1 !important;
  border: none !important;
  color: #fff !important;
  text-transform: uppercase;
  font-family: 'BatonTurboMedium', sans-serif;
  text-align: left;
  position: relative;
}
/* line 782, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-play-video:after {
  content: "" !important;
  display: block !important;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  background-image: url(../../images/icon_play@2x.png);
  opacity: 1;
  margin-left: 0;
}
/* line 798, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_button_module_wrapper a.et_pb_button.btn-play-video:hover:after {
  content: "";
  display: block;
}

/* line 857, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l .btn-text a.et_pb_button:hover:after {
  display: block !important;
}

@media screen and (min-width: 981px) {
  /* line 865, ../../src/styles/_universal.scss */
  .inline-btns.et_pb_row .et_pb_column {
    margin-right: 24px !important;
    width: calc(50% - 12px) !important;
  }
}

@media screen and (min-width: 981px) {
  /* line 874, ../../src/styles/_universal.scss */
  .inline-btns.et_pb_column .et_pb_button_module_wrapper {
    display: inline-block;
    width: calc(50% - 12px);
    margin-bottom: 0 !important;
  }
  /* line 879, ../../src/styles/_universal.scss */
  .inline-btns.et_pb_column .et_pb_button_module_wrapper:not(:last-child) {
    margin-right: 24px !important;
  }
  /* line 882, ../../src/styles/_universal.scss */
  .inline-btns.et_pb_column .et_pb_button_module_wrapper a {
    width: 100%;
  }
}

/* line 890, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l ol.flickity-page-dots {
  text-align: center;
  width: 100%;
  margin: 0 !important;
  display: block;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}
/* line 898, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l ol.flickity-page-dots li.dot {
  width: 6px;
  height: 6px;
  background-color: #BDBDBD !important;
  border-radius: 100% !important;
  margin: 5px;
  opacity: 1;
}
/* line 905, ../../src/styles/_universal.scss */
.et-db #et-boc .et-l ol.flickity-page-dots li.dot:hover, .et-db #et-boc .et-l ol.flickity-page-dots li.dot.is-selected {
  background-color: #FF6468 !important;
}

/* line 913, ../../src/styles/_universal.scss */
.flickity-prev-next-button {
  top: 100%;
  background: none;
  z-index: 10;
  background-image: url(../../images/icon_chevron_left_coral.svg) !important;
  background-size: 24px 16px !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
/* line 922, ../../src/styles/_universal.scss */
.flickity-prev-next-button.next {
  transform: scale(-1, -1) translateY(50%);
}
/* line 925, ../../src/styles/_universal.scss */
.flickity-prev-next-button:hover {
  background-color: transparent;
}
/* line 928, ../../src/styles/_universal.scss */
.flickity-prev-next-button svg {
  display: none;
}

/****************************
	404 Page
****************************/
@media screen and (min-width: 981px) {
  /* line 937, ../../src/styles/_universal.scss */
  .error404 #et-boc {
    padding-top: 75px;
  }
}
/* line 942, ../../src/styles/_universal.scss */
.error404 .et_pb_section.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

/***************************
	Home
***************************/
@-webkit-keyframes loadimage {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loadimage {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* line 962, ../../src/styles/_universal.scss */
.home.et-db #et-boc .et-l .et_pb_section.hero {
  padding: 0 !important;
}
/* line 964, ../../src/styles/_universal.scss */
.home.et-db #et-boc .et-l .et_pb_section.hero:before {
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: loadimage 5s;
}
@media screen and (max-width: 767px) {
  /* line 964, ../../src/styles/_universal.scss */
  .home.et-db #et-boc .et-l .et_pb_section.hero:before {
    background-size: 100% auto;
    background-position: bottom center;
  }
}
/* line 981, ../../src/styles/_universal.scss */
.home.et-db #et-boc .et-l .et_pb_section.hero .et_pb_column {
  float: none;
}
/* line 983, ../../src/styles/_universal.scss */
.home.et-db #et-boc .et-l .et_pb_section.hero .et_pb_column .et_pb_promo_description {
  padding-bottom: 36px;
}
/* line 985, ../../src/styles/_universal.scss */
.home.et-db #et-boc .et-l .et_pb_section.hero .et_pb_column .et_pb_promo_description p {
  font-size: 24px;
}
/* line 990, ../../src/styles/_universal.scss */
.home.et-db #et-boc .et-l .et_pb_section.hero .et_pb_row:first-child {
  padding-top: 75px;
  padding-bottom: 135px !important;
}
@media screen and (min-width: 981px) {
  /* line 990, ../../src/styles/_universal.scss */
  .home.et-db #et-boc .et-l .et_pb_section.hero .et_pb_row:first-child {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  /* line 990, ../../src/styles/_universal.scss */
  .home.et-db #et-boc .et-l .et_pb_section.hero .et_pb_row:first-child {
    min-height: 710px;
  }
}
/* line 1000, ../../src/styles/_universal.scss */
.home.et-db #et-boc .et-l .et_pb_section.hero .et_pb_row:first-child:before {
  content: "";
  background: white;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  bottom: 50px;
  visibility: visible;
  width: 1px;
  height: 0;
  z-index: 1;
  animation: scrolldownfirst 2s linear infinite;
}
/* line 1013, ../../src/styles/_universal.scss */
.home.et-db #et-boc .et-l .et_pb_section.hero .et_pb_row:first-child:after {
  content: "Scroll";
  font-family: 'Tiempos', Georgia, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  color: #E0E0E0;
  line-height: 1.3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  visibility: visible;
  width: auto;
  height: auto;
  z-index: 1;
}
/* line 1031, ../../src/styles/_universal.scss */
.home.et-db #et-boc .et-l .et_pb_section.hero + .et_pb_section:before {
  top: 0;
  bottom: unset;
  background: #000;
  transform: translate(-50%, 0);
  animation: scrolldownsecond 2s linear infinite;
  content: "";
  position: absolute;
  left: 50%;
  visibility: visible;
  width: 1px;
  height: 0;
  z-index: 1;
}

/* line 1, ../../src/styles/_forms.scss */
.et_pb_section.hidden-form {
  display: none !important;
}

/* line 6, ../../src/styles/_forms.scss */
body.open-form {
  position: relative;
}
/* line 8, ../../src/styles/_forms.scss */
body.open-form:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
/* line 19, ../../src/styles/_forms.scss */
body.open-form #gform_confirmation_wrapper_1,
body.open-form .contact-form_wrapper {
  transform: translateX(0);
  margin-top: 0;
}
/* line 25, ../../src/styles/_forms.scss */
body .contact-form_wrapper {
  padding: 40px;
}
/* line 28, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1,
body .contact-form_wrapper {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 80%;
  max-width: 624px;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 500ms;
  overflow-y: scroll;
  background-color: #fff;
  z-index: 150;
}
@media screen and (max-width: 767px) {
  /* line 28, ../../src/styles/_forms.scss */
  body #gform_confirmation_wrapper_1,
  body .contact-form_wrapper {
    width: calc(100% - 80px);
  }
}
/* line 45, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .gform_anchor,
body .contact-form_wrapper .gform_anchor {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40px;
  right: 40px;
  background-image: url(../../images/icon_close.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  cursor: pointer;
  z-index: 1;
}
/* line 57, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .gform_anchor:focus,
body .contact-form_wrapper .gform_anchor:focus {
  outline: none;
}
/* line 62, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 {
  padding: 0;
  background-color: #F1F5FF;
}
/* line 65, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .gform_confirmation_message {
  background-color: #fff;
  padding: 100px 40px 50px;
}
/* line 68, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .gform_confirmation_message h2 {
  font-size: 54px;
  color: #1D2438;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 48px;
  padding-bottom: 0;
  position: relative;
}
/* line 76, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .gform_confirmation_message h2:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../images/icon_ok.svg);
}
/* line 91, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .gform_confirmation_message > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* line 96, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .form-cta.et_pb_section {
  padding: 60px 0;
}
/* line 98, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (min-width: 981px) {
  /* line 98, ../../src/styles/_forms.scss */
  body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  /* line 105, ../../src/styles/_forms.scss */
  body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row .et_pb_column:first-child {
    width: calc(55% - 20px);
    margin-right: 40px;
  }
  /* line 109, ../../src/styles/_forms.scss */
  body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row .et_pb_column:last-child {
    width: calc(45% - 20px);
  }
}
@media screen and (max-width: 980px) {
  /* line 115, ../../src/styles/_forms.scss */
  body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row .et_pb_column:first-child {
    margin-bottom: 40px;
  }
}
/* line 119, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row h2.et_pb_module_header {
  margin-top: 0;
}
/* line 122, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row a.et_pb_button.btn-text {
  color: #1D2438;
  text-decoration: none;
}
/* line 126, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row a.et_pb_button.btn-text:after {
  background-image: url(../../images/icon_arrow_right_dark.svg);
}
/* line 129, ../../src/styles/_forms.scss */
body #gform_confirmation_wrapper_1 .form-cta.et_pb_section .et_pb_row a.et_pb_button.btn-text:hover {
  color: #1D2438;
}
/* line 137, ../../src/styles/_forms.scss */
body .et_pb_section.report-landing .gform_confirmation_wrapper {
  background-color: #F0FFF8 !important;
  padding: 25px 25px 25px 46px !important;
  border-left: 5px solid #2AA46C !important;
}
/* line 141, ../../src/styles/_forms.scss */
body .et_pb_section.report-landing .gform_confirmation_wrapper h5 {
  padding-bottom: 9px !important;
  position: relative;
}
/* line 144, ../../src/styles/_forms.scss */
body .et_pb_section.report-landing .gform_confirmation_wrapper h5:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: -0.2em;
  left: -32px;
  background-image: url(../../images/icon_check_circle@2x.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
/* line 158, ../../src/styles/_forms.scss */
body .et_pb_section.report-landing .gform_confirmation_wrapper h5,
body .et_pb_section.report-landing .gform_confirmation_wrapper p {
  color: #000 !important;
}
/* line 162, ../../src/styles/_forms.scss */
body .et_pb_section.report-landing .gform_confirmation_wrapper a {
  display: none;
}
/* line 167, ../../src/styles/_forms.scss */
body .et_pb_section.report-landing .gform_validation_errors h2.gform_submission_error {
  display: none;
}
/* line 171, ../../src/styles/_forms.scss */
body .et_pb_section.report-landing img {
  box-shadow: none !important;
}

/* line 177, ../../src/styles/_forms.scss */
body .gform_wrapper form,
.et-db #et-boc .et-l form {
  position: relative;
  overflow-x: hidden;
}
/* line 181, ../../src/styles/_forms.scss */
body .gform_wrapper form h3.gform_title,
.et-db #et-boc .et-l form h3.gform_title {
  font-family: 'BatonTurbo', Verdana, serif;
  font-weight: 400;
  color: #000;
  font-size: 36px;
  line-height: 1.1;
  padding-bottom: 9px;
  padding-right: 50px;
}
/* line 190, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body,
.et-db #et-boc .et-l form .gform_body {
  /* hack to fall back in opera */
}
/* line 191, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body label,
.et-db #et-boc .et-l form .gform_body label {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #4F4F4F;
  margin-bottom: 8px;
}
/* line 198, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body li.gfield,
.et-db #et-boc .et-l form .gform_body li.gfield {
  padding-right: 0;
  margin-bottom: 30px;
}
/* line 201, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body li.gfield.gfield_error,
.et-db #et-boc .et-l form .gform_body li.gfield.gfield_error {
  background-color: transparent;
  border: none;
  padding: 0;
}
/* line 205, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body li.gfield.gfield_error.gfield_contains_required:not(.gf_left_half):not(.gf_right_half),
.et-db #et-boc .et-l form .gform_body li.gfield.gfield_error.gfield_contains_required:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}
/* line 208, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body li.gfield.gfield_error .ginput_container:not(.ginput_container_select),
.et-db #et-boc .et-l form .gform_body li.gfield.gfield_error .ginput_container:not(.ginput_container_select) {
  position: relative;
}
/* line 210, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body li.gfield.gfield_error .ginput_container:not(.ginput_container_select):after,
.et-db #et-boc .et-l form .gform_body li.gfield.gfield_error .ginput_container:not(.ginput_container_select):after {
  content: "";
  display: block;
  width: 20px;
  height: 21px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(../../images/icon_alert.svg);
  position: absolute;
  top: 13px;
  right: 13px;
}
/* line 224, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body li.gfield.gfield_error .gfield_label,
.et-db #et-boc .et-l form .gform_body li.gfield.gfield_error .gfield_label {
  color: #4F4F4F;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}
/* line 230, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body li.gfield.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper form .gform_body li.gfield.gfield_error textarea,
body .gform_wrapper form .gform_body li.gfield.gfield_error select,
.et-db #et-boc .et-l form .gform_body li.gfield.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.et-db #et-boc .et-l form .gform_body li.gfield.gfield_error textarea,
.et-db #et-boc .et-l form .gform_body li.gfield.gfield_error select {
  border: 2px solid #961316;
}
/* line 235, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body li.gfield.gfield_error .validation_message,
.et-db #et-boc .et-l form .gform_body li.gfield.gfield_error .validation_message {
  padding-top: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #961316;
}
/* line 244, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body input[type=text],
body .gform_wrapper form .gform_body input[type=email],
body .gform_wrapper form .gform_body input[type=phone],
body .gform_wrapper form .gform_body input[type=num],
body .gform_wrapper form .gform_body textarea,
.et-db #et-boc .et-l form .gform_body input[type=text],
.et-db #et-boc .et-l form .gform_body input[type=email],
.et-db #et-boc .et-l form .gform_body input[type=phone],
.et-db #et-boc .et-l form .gform_body input[type=num],
.et-db #et-boc .et-l form .gform_body textarea {
  padding: 5px 10px !important;
  border: 1px solid #828282;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  line-height: 33px;
  color: #000;
}
/* line 257, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body input[type=text]:focus,
body .gform_wrapper form .gform_body input[type=email]:focus,
body .gform_wrapper form .gform_body input[type=phone]:focus,
body .gform_wrapper form .gform_body input[type=num]:focus,
body .gform_wrapper form .gform_body textarea:focus,
.et-db #et-boc .et-l form .gform_body input[type=text]:focus,
.et-db #et-boc .et-l form .gform_body input[type=email]:focus,
.et-db #et-boc .et-l form .gform_body input[type=phone]:focus,
.et-db #et-boc .et-l form .gform_body input[type=num]:focus,
.et-db #et-boc .et-l form .gform_body textarea:focus {
  outline: none;
  border: 2px solid #1D3F86;
}
/* line 262, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body select,
.et-db #et-boc .et-l form .gform_body select {
  margin-left: 0 !important;
  max-width: 100%;
  -moz-appearance: none;
}
/* line 267, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body .ginput_container_select,
.et-db #et-boc .et-l form .gform_body .ginput_container_select {
  overflow: hidden;
  position: relative;
}
/* line 270, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body .ginput_container_select:after,
.et-db #et-boc .et-l form .gform_body .ginput_container_select:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid #4F4F4F;
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
  transform: rotate(135deg);
}
/* line 283, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body .ginput_container_select select,
.et-db #et-boc .et-l form .gform_body .ginput_container_select select {
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  /*hide default down arrow in webkit */
  -webkit-appearance: none;
  color: #000;
  line-height: 33px;
  padding: 5px 10px;
}
/* line 292, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body .ginput_container_select select:focus,
.et-db #et-boc .et-l form .gform_body .ginput_container_select select:focus {
  outline: none;
}
@-moz-document url-prefix() {
  /* line 299, ../../src/styles/_forms.scss */
  body .gform_wrapper form .gform_body .ginput_container_select select,
  .et-db #et-boc .et-l form .gform_body .ginput_container_select select {
    width: 110% !important;
  }
}
/* line 303, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body .ginput_container_select select::-ms-expand,
.et-db #et-boc .et-l form .gform_body .ginput_container_select select::-ms-expand {
  display: none;
  /* hide default down arrow in IE10*/
}
/* line 308, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_body _:-o-prefocus .styled-select, body .gform_wrapper form .gform_body .selector .styled-select,
.et-db #et-boc .et-l form .gform_body _:-o-prefocus .styled-select,
.et-db #et-boc .et-l form .gform_body .selector .styled-select {
  background: none;
}
/* line 314, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_footer input[type=submit],
.et-db #et-boc .et-l form .gform_footer input[type=submit] {
  margin-right: 0;
}
/* line 317, ../../src/styles/_forms.scss */
body .gform_wrapper form .gform_footer input[type=submit]:focus,
.et-db #et-boc .et-l form .gform_footer input[type=submit]:focus {
  outline: none;
}
/* line 322, ../../src/styles/_forms.scss */
body .gform_wrapper form .validation_error,
.et-db #et-boc .et-l form .validation_error {
  display: none;
}

/* Hubspot forms */
/* line 331, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l .tinted div.hbspt-form input[type=text],
.et-db #et-boc .et-l .tinted div.hbspt-form input[type=email],
.et-db #et-boc .et-l .tinted div.hbspt-form input[type=phone],
.et-db #et-boc .et-l .tinted div.hbspt-form input[type=num],
.et-db #et-boc .et-l .tinted div.hbspt-form textarea,
.et-db #et-boc .et-l .shaded div.hbspt-form input[type=text],
.et-db #et-boc .et-l .shaded div.hbspt-form input[type=email],
.et-db #et-boc .et-l .shaded div.hbspt-form input[type=phone],
.et-db #et-boc .et-l .shaded div.hbspt-form input[type=num],
.et-db #et-boc .et-l .shaded div.hbspt-form textarea {
  background-color: #fff;
}
/* line 342, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l .tinted div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input + span:before,
.et-db #et-boc .et-l .shaded div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input + span:before {
  background-color: #fff;
  border-color: #fff;
}

/* line 351, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form,
.contact-form_wrapper div.hbspt-form {
  padding-bottom: 80px;
}
/* line 354, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form fieldset,
.contact-form_wrapper div.hbspt-form fieldset {
  max-width: none;
  margin: 16px 0 30px;
}
/* line 357, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form fieldset.form-columns-1 .hs-input,
.contact-form_wrapper div.hbspt-form fieldset.form-columns-1 .hs-input {
  width: 100%;
}
@media screen and (min-width: 481px) {
  /* line 361, ../../src/styles/_forms.scss */
  .et-db #et-boc .et-l div.hbspt-form fieldset.form-columns-2 > div,
  .contact-form_wrapper div.hbspt-form fieldset.form-columns-2 > div {
    width: calc(50% - 15px);
  }
  /* line 364, ../../src/styles/_forms.scss */
  .et-db #et-boc .et-l div.hbspt-form fieldset.form-columns-2 > div:not(:last-child),
  .contact-form_wrapper div.hbspt-form fieldset.form-columns-2 > div:not(:last-child) {
    margin-right: 30px;
  }
  /* line 366, ../../src/styles/_forms.scss */
  .et-db #et-boc .et-l div.hbspt-form fieldset.form-columns-2 > div:not(:last-child) .input,
  .contact-form_wrapper div.hbspt-form fieldset.form-columns-2 > div:not(:last-child) .input {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  /* line 372, ../../src/styles/_forms.scss */
  .et-db #et-boc .et-l div.hbspt-form fieldset.form-columns-2 > div:not(:last-child),
  .contact-form_wrapper div.hbspt-form fieldset.form-columns-2 > div:not(:last-child) {
    margin-bottom: 30px;
  }
}
/* line 378, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form fieldset .hs-form-field,
.contact-form_wrapper div.hbspt-form fieldset .hs-form-field {
  margin-bottom: 0;
}
/* line 382, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form fieldset .input input[type=text],
.et-db #et-boc .et-l div.hbspt-form fieldset .input input[type=email],
.et-db #et-boc .et-l div.hbspt-form fieldset .input input[type=phone],
.et-db #et-boc .et-l div.hbspt-form fieldset .input input[type=num],
.et-db #et-boc .et-l div.hbspt-form fieldset .input textarea.hs-input,
.contact-form_wrapper div.hbspt-form fieldset .input input[type=text],
.contact-form_wrapper div.hbspt-form fieldset .input input[type=email],
.contact-form_wrapper div.hbspt-form fieldset .input input[type=phone],
.contact-form_wrapper div.hbspt-form fieldset .input input[type=num],
.contact-form_wrapper div.hbspt-form fieldset .input textarea.hs-input {
  width: calc(100% - 22px);
}
/* line 391, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-form-field,
.contact-form_wrapper div.hbspt-form .hs-form-field {
  margin-bottom: 16px;
}
/* line 394, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-form-field > label,
.contact-form_wrapper div.hbspt-form .hs-form-field > label {
  display: inline-block;
  line-height: 1.3;
  clear: both;
  font-size: 16px;
  font-weight: 400;
  color: #4F4F4F;
  margin-bottom: 8px;
}
/* line 403, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .input,
.contact-form_wrapper div.hbspt-form .input {
  margin-top: 8px;
  margin-right: 0 !important;
}
/* line 407, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form input[type=text],
.et-db #et-boc .et-l div.hbspt-form input[type=email],
.et-db #et-boc .et-l div.hbspt-form input[type=phone],
.et-db #et-boc .et-l div.hbspt-form input[type=num],
.et-db #et-boc .et-l div.hbspt-form textarea,
.contact-form_wrapper div.hbspt-form input[type=text],
.contact-form_wrapper div.hbspt-form input[type=email],
.contact-form_wrapper div.hbspt-form input[type=phone],
.contact-form_wrapper div.hbspt-form input[type=num],
.contact-form_wrapper div.hbspt-form textarea {
  padding: 5px 10px !important;
  border: 1px solid #828282;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  line-height: 33px;
  color: #000;
}
/* line 420, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form input[type=text]:focus,
.et-db #et-boc .et-l div.hbspt-form input[type=email]:focus,
.et-db #et-boc .et-l div.hbspt-form input[type=phone]:focus,
.et-db #et-boc .et-l div.hbspt-form input[type=num]:focus,
.et-db #et-boc .et-l div.hbspt-form textarea:focus,
.contact-form_wrapper div.hbspt-form input[type=text]:focus,
.contact-form_wrapper div.hbspt-form input[type=email]:focus,
.contact-form_wrapper div.hbspt-form input[type=phone]:focus,
.contact-form_wrapper div.hbspt-form input[type=num]:focus,
.contact-form_wrapper div.hbspt-form textarea:focus {
  outline: none;
  border: 2px solid #1D3F86;
}
/* line 425, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-select .input,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-select .input {
  overflow: hidden;
  position: relative;
  /* hack to fall back in opera */
}
/* line 428, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-select .input:after,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-select .input:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid #4F4F4F;
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
  transform: rotate(135deg);
}
/* line 441, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-select .input select,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-select .input select {
  margin-left: 0 !important;
  max-width: 100%;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  /*hide default down arrow in webkit */
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #000;
  line-height: 33px;
  padding: 5px 10px;
  width: 100%;
}
/* line 454, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-select .input select:focus,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-select .input select:focus {
  outline: none;
}
@-moz-document url-prefix() {
  /* line 459, ../../src/styles/_forms.scss */
  .et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-select .input select,
  .contact-form_wrapper div.hbspt-form .hs-fieldtype-select .input select {
    width: 110% !important;
  }
}
/* line 463, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-select .input select::-ms-expand,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-select .input select::-ms-expand {
  display: none;
  /* hide default down arrow in IE10*/
}
/* line 468, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-select .input _:-o-prefocus .styled-select, .et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-select .input .selector .styled-select,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-select .input _:-o-prefocus .styled-select,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-select .input .selector .styled-select {
  background: none;
}
/* line 474, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* line 478, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input {
  display: none;
}
/* line 480, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input + span,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input + span {
  display: block;
  padding-left: 30px;
  position: relative;
}
/* line 484, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input + span:before,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input + span:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #828282;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0.1em;
}
/* line 498, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input:checked + span:after,
.contact-form_wrapper div.hbspt-form .hs-fieldtype-booleancheckbox ul.inputs-list input:checked + span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0.2em;
  background-image: url(../../images/icon_checkmark.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  width: 16px;
  height: 11px;
}
/* line 517, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .legal-consent-container > *:not(:last-child),
.contact-form_wrapper div.hbspt-form .legal-consent-container > *:not(:last-child) {
  margin: 16px 0 30px;
}
/* line 520, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display > span,
.contact-form_wrapper div.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0;
}
/* line 524, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-form-required,
.contact-form_wrapper div.hbspt-form .hs-form-required {
  color: #4F4F4F;
}
/* line 527, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs_submit.hs-submit,
.contact-form_wrapper div.hbspt-form .hs_submit.hs-submit {
  padding: 16px 0 10px 0;
  margin: 16px 0 0 0;
}
/* line 534, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-error-msgs,
.contact-form_wrapper div.hbspt-form .hs-error-msgs {
  list-style: none;
  margin: 2px 0 0;
  padding-top: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #961316;
  position: relative;
}
/* line 543, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-error-msgs:after,
.contact-form_wrapper div.hbspt-form .hs-error-msgs:after {
  content: "";
  display: block;
  width: 20px;
  height: 21px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(../../images/icon_alert.svg);
  position: absolute;
  top: -36px;
  right: 13px;
}
/* line 556, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs-error-msgs label,
.contact-form_wrapper div.hbspt-form .hs-error-msgs label {
  color: #961316;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}
/* line 565, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .hs_error_rollup .hs-error-msgs:after,
.contact-form_wrapper div.hbspt-form .hs_error_rollup .hs-error-msgs:after {
  display: none;
}
/* line 570, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form input.hs-input.error,
.et-db #et-boc .et-l div.hbspt-form select.hs-input.error,
.contact-form_wrapper div.hbspt-form input.hs-input.error,
.contact-form_wrapper div.hbspt-form select.hs-input.error {
  border: 2px solid #961316;
}
/* line 574, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .submitted-message,
.contact-form_wrapper div.hbspt-form .submitted-message {
  padding: 100px 40px 50px;
  font-size: 48px;
  color: #1D2438;
  margin-top: 100px;
  margin-bottom: 0;
  padding-top: 48px;
  padding-bottom: 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  /* line 574, ../../src/styles/_forms.scss */
  .et-db #et-boc .et-l div.hbspt-form .submitted-message,
  .contact-form_wrapper div.hbspt-form .submitted-message {
    margin-top: 50px;
  }
}
/* line 587, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .submitted-message:before,
.contact-form_wrapper div.hbspt-form .submitted-message:before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../images/icon_ok.svg);
}
/* line 601, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div.hbspt-form .submitted-message:last-child,
.contact-form_wrapper div.hbspt-form .submitted-message:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* line 609, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l .btn-download div.hbspt-form .actions {
  display: inline-block;
  position: relative;
  font-family: 'BatonTurboMedium', Georgia, sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid #FF6468;
  background-color: #FF6468;
  text-align: center;
  transition: all 250ms;
  padding-right: 32px !important;
}
/* line 623, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l .btn-download div.hbspt-form .actions:hover, .et-db #et-boc .et-l .btn-download div.hbspt-form .actions:focus {
  color: #333333;
  border: 1px solid #FFADB0;
  background-color: #FFADB0;
}
/* line 629, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l .btn-download div.hbspt-form .actions:after {
  content: "";
  display: block !important;
  position: absolute;
  top: 48%;
  right: 36px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  background-image: url(../../images/icon_download.svg);
  width: 20px;
  height: 20px;
  opacity: 1;
}
/* line 644, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l .btn-download div.hbspt-form .actions input[type=submit] {
  background-color: transparent !important;
  border: none !important;
}

/* line 676, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l div:not(.contact-form_wrapper) > div.hbspt-form .hs-error-msgs:after {
  right: 26px;
}

/* line 681, ../../src/styles/_forms.scss */
::marker {
  display: none !important;
  color: transparent;
}

/* line 687, ../../src/styles/_forms.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.cta-block .btn-download .gform_footer input[type=submit] {
  padding-right: 45px !important;
  position: relative;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px 20px;
  background-image: url(../../images/icon_download.svg);
}

@media screen and (min-width: 768px) {
  /* line 3, ../../src/styles/_header.scss */
  body.admin-bar header {
    top: 32px;
  }
}
/* line 9, ../../src/styles/_header.scss */
body.menu-active {
  overflow-y: hidden;
}

/* line 13, ../../src/styles/_header.scss */
header {
  transition: background-color 250ms;
  background-color: #fff;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.1);
  max-height: 100vh;
}
@media screen and (min-width: 768px) {
  /* line 13, ../../src/styles/_header.scss */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
}
/* line 25, ../../src/styles/_header.scss */
header li a {
  font-family: 'BatonTurbo', Verdana, sans-serif;
  font-weight: 400;
}
/* line 29, ../../src/styles/_header.scss */
header .logo {
  margin: 0;
  padding-bottom: 0;
}
/* line 32, ../../src/styles/_header.scss */
header .logo img {
  height: 29px;
  width: auto;
  display: none;
}
/* line 36, ../../src/styles/_header.scss */
header .logo img.alt-logo {
  display: block;
}
/* line 40, ../../src/styles/_header.scss */
header .logo a {
  display: block;
}
/* line 42, ../../src/styles/_header.scss */
header .logo a:hover {
  text-decoration: none !important;
}
/* line 47, ../../src/styles/_header.scss */
header .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 23px 64px 22px;
}
@media screen and (max-width: 767px) {
  /* line 47, ../../src/styles/_header.scss */
  header .container {
    padding-left: 8px;
    padding-right: 23px;
  }
}
/* line 56, ../../src/styles/_header.scss */
header nav {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
/* line 59, ../../src/styles/_header.scss */
header .menu-main-menu-container {
  padding-left: 30px;
}
@media screen and (max-width: 1199px) {
  /* line 59, ../../src/styles/_header.scss */
  header .menu-main-menu-container {
    max-width: 1072px;
    margin: 0 auto;
    padding: 0 24px;
    height: calc(100vh - 75px);
    overflow-y: scroll;
  }
}
/* line 71, ../../src/styles/_header.scss */
header #menu-main-menu > li {
  float: left;
}
/* line 73, ../../src/styles/_header.scss */
header #menu-main-menu > li:not(.btn-small) {
  padding-left: 16px;
  padding-right: 16px;
}
/* line 76, ../../src/styles/_header.scss */
header #menu-main-menu > li:not(.btn-small) a {
  color: #1D2438;
  font-size: 14px;
  line-height: 1.21;
  font-weight: 400;
  padding: 10px 0 2px;
  margin-bottom: 7px;
  border-bottom: 1px solid transparent;
  transition: border-color 250ms;
}
@media screen and (max-width: 1199px) {
  /* line 76, ../../src/styles/_header.scss */
  header #menu-main-menu > li:not(.btn-small) a {
    font-size: 24px;
  }
}
/* line 91, ../../src/styles/_header.scss */
header #menu-main-menu > li:not(.btn-small).current-menu-item > a, header #menu-main-menu > li:not(.btn-small):hover > a {
  border-bottom-color: #1D2438;
}
/* line 97, ../../src/styles/_header.scss */
header #menu-main-menu > li.mega a {
  position: relative;
  padding-right: 19px;
}
/* line 100, ../../src/styles/_header.scss */
header #menu-main-menu > li.mega a:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #1D2438;
  border-right: 1px solid #1D2438;
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -1px;
  transition: all 250ms;
}
/* line 115, ../../src/styles/_header.scss */
header #menu-main-menu > li.mega.active a:after {
  margin-top: 2px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1199px) {
  /* line 121, ../../src/styles/_header.scss */
  header #menu-main-menu > li:nth-last-child(2) a {
    font-size: 14px;
  }
}
/* line 131, ../../src/styles/_header.scss */
header #menu-main-menu > li:nth-last-child(-n+2) {
  float: right;
}
@media screen and (max-width: 1199px) {
  /* line 131, ../../src/styles/_header.scss */
  header #menu-main-menu > li:nth-last-child(-n+2) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-order: 3;
    -ms-flex-order: 3;
    order: 3;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-top: 34px;
    border-bottom: none !important;
  }
}
/* line 141, ../../src/styles/_header.scss */
header #menu-main-menu > li a:hover {
  text-decoration: none !important;
}
/* line 147, ../../src/styles/_header.scss */
header.dark {
  background-color: #1D2438;
}
/* line 150, ../../src/styles/_header.scss */
header.dark .logo img:not(.alt-logo) {
  display: block;
}
/* line 153, ../../src/styles/_header.scss */
header.dark .logo img.alt-logo {
  display: none;
}
/* line 157, ../../src/styles/_header.scss */
header.dark:not(.fixed) {
  box-shadow: none;
}
/* line 161, ../../src/styles/_header.scss */
header.dark:not(.fixed) #menu-main-menu > li:not(.btn-small).current-menu-item a {
  font-weight: 600;
  border-color: #fff;
}
/* line 167, ../../src/styles/_header.scss */
header.dark:not(.fixed) #menu-main-menu > li:not(.btn-small):hover a {
  border-color: #fff;
}
/* line 171, ../../src/styles/_header.scss */
header.dark:not(.fixed) #menu-main-menu > li:not(.btn-small) a {
  border-bottom: 1px solid transparent;
  color: #fff;
}
@media screen and (min-width: 768px) {
  /* line 178, ../../src/styles/_header.scss */
  header.dark.fixed {
    background-color: #fff;
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.1);
  }
  /* line 182, ../../src/styles/_header.scss */
  header.dark.fixed .logo img:not(.alt-logo) {
    display: none;
  }
  /* line 185, ../../src/styles/_header.scss */
  header.dark.fixed .logo img.alt-logo {
    display: block;
  }
}
/* line 192, ../../src/styles/_header.scss */
header .hamburger-menu {
  display: none;
}
@media screen and (max-width: 1199px) {
  /* line 196, ../../src/styles/_header.scss */
  header .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    position: relative;
  }
  /* line 200, ../../src/styles/_header.scss */
  header .hamburger-menu {
    padding-right: 30px;
    position: relative;
    color: #1D2438;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.21;
    cursor: pointer;
    display: block;
  }
  /* line 209, ../../src/styles/_header.scss */
  header .hamburger-menu .burger-layer {
    position: absolute;
    right: 0;
    top: 60%;
  }
  /* line 214, ../../src/styles/_header.scss */
  header .hamburger-menu .burger-layer,
  header .hamburger-menu .burger-layer:before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background-color: #1D2438;
    transition: all 250ms;
  }
  /* line 223, ../../src/styles/_header.scss */
  header .hamburger-menu .burger-layer:before {
    margin-top: -8px;
  }
  /* line 226, ../../src/styles/_header.scss */
  header .hamburger-menu.active {
    color: transparent !important;
  }
  /* line 228, ../../src/styles/_header.scss */
  header .hamburger-menu.active + nav {
    max-height: calc(100vh - 75px);
  }
  /* line 231, ../../src/styles/_header.scss */
  header .hamburger-menu.active .burger-layer {
    transform: rotate(-45deg);
  }
  /* line 233, ../../src/styles/_header.scss */
  header .hamburger-menu.active .burger-layer:before {
    transform: rotate(90deg);
    margin-top: 0;
  }
  /* line 240, ../../src/styles/_header.scss */
  header nav {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: all 450ms;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 100;
  }
  /* line 251, ../../src/styles/_header.scss */
  header nav #menu-main-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 5px;
    padding-bottom: 40px !important;
  }
  /* line 256, ../../src/styles/_header.scss */
  header nav #menu-main-menu > li {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    float: none;
    display: block;
    padding: 10px 0;
  }
  /* line 261, ../../src/styles/_header.scss */
  header nav #menu-main-menu > li:not(.btn-small) {
    border-bottom: 1px solid rgba(29, 36, 56, 0.2);
  }
  /* line 264, ../../src/styles/_header.scss */
  header nav #menu-main-menu > li:not(.btn-small) a {
    border-bottom: none !important;
  }
  /* line 267, ../../src/styles/_header.scss */
  header nav #menu-main-menu > li.btn-small {
    margin-top: 34px;
    margin-left: 24px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  /* line 277, ../../src/styles/_header.scss */
  header.dark:not(.fixed) .hamburger-menu {
    color: #fff;
  }
  /* line 279, ../../src/styles/_header.scss */
  header.dark:not(.fixed) .hamburger-menu .burger-layer,
  header.dark:not(.fixed) .hamburger-menu .burger-layer:before {
    background-color: #fff;
  }
  /* line 284, ../../src/styles/_header.scss */
  header.dark:not(.fixed) nav {
    background-color: #1D2438;
  }
  /* line 288, ../../src/styles/_header.scss */
  header.dark:not(.fixed) nav #menu-main-menu > li:not(.btn-small) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  /* line 290, ../../src/styles/_header.scss */
  header.dark:not(.fixed) nav #menu-main-menu > li:not(.btn-small) a {
    border-bottom: none !important;
  }
}

/* line 301, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section {
  padding: 0 !important;
  background-color: #1D2438 !important;
  display: none;
}
/* line 305, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section.active {
  display: block;
}
/* line 308, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section.et_section_transparent {
  background-color: #1D2438 !important;
}
@media screen and (min-width: 981px) {
  /* line 312, ../../src/styles/_header.scss */
  .et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .et_pb_row_inner.et_pb_gutters2 .et_pb_column_1_4 {
    margin-right: 5.5%;
    width: 29.633%;
  }
  /* line 316, ../../src/styles/_header.scss */
  .et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .et_pb_row_inner.et_pb_gutters2.et_pb_row_1-4_1-4 .et_pb_column_1_4 {
    width: 47.25%;
  }
}
/* line 320, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row {
  max-width: 1112px;
  padding: 0 20px !important;
}
/* line 323, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column {
  padding-bottom: 20px;
}
/* line 325, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column:last-child {
  background-color: #FF6468;
  padding: 50px 30px 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
/* line 331, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column:last-child h4.et_pb_module_header {
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 11px;
  font-size: 16px;
  font-family: 'BatonTurbo', Verdana, sans-serif;
  font-weight: 700;
}
/* line 338, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column:last-child h4.et_pb_module_header:after {
  display: none;
}
/* line 342, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column:last-child .et_pb_button:not(.btn-text) {
  display: block;
  border: 1px solid #333;
}
/* line 347, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_2:first-child {
  width: calc(60% - (32px / 2));
}
/* line 350, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_2:last-child {
  width: calc(40% - (32px / 2));
}
/* line 352, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_1_2:last-child .et_pb_button {
  display: inline-block;
}
/* line 357, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column:first-child h2 {
  color: #fff;
}
/* line 360, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row > .et_pb_column:first-child a {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  font-family: 'BatonTurbo', Verdana, sans-serif;
  display: block;
}
/* line 369, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row .et_pb_blurb_container {
  padding-left: 0;
}
/* line 372, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row .et_pb_main_blurb_image + .et_pb_blurb_container {
  padding-left: 15px;
}
/* line 375, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row .custom-col {
  width: calc(50% - 16px);
  float: left;
}
/* line 378, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row .custom-col:first-child {
  margin-right: 32px;
}
/* line 381, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row .custom-col h4 {
  font-family: 'BatonTurboMedium', Verdana, sans-serif;
  font-weight: 500;
  color: #000;
  text-transform: none;
  padding-bottom: 5px;
  margin-bottom: 0;
  font-size: 16px;
}
/* line 389, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row .custom-col h4:after {
  display: none;
}
/* line 393, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row .custom-col span {
  display: block;
}
/* line 396, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section > .et_pb_row .custom-col a {
  font-family: 'Tiempos', serif;
  color: #000;
  font-weight: 400;
}
/* line 403, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row,
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row_inner {
  padding-top: 47px;
  padding-bottom: 0;
}
/* line 407, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row + .et_pb_row_inner,
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row_inner + .et_pb_row_inner {
  padding-top: 32px;
}
/* line 410, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row .et_pb_module,
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row_inner .et_pb_module {
  border-bottom: 1px solid #BDBDBD;
}
/* line 412, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row .et_pb_module h4,
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row_inner .et_pb_module h4 {
  color: #BDBDBD;
  margin-bottom: 0;
}
/* line 415, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row .et_pb_module h4:after,
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .mega-title.et_pb_row_inner .et_pb_module h4:after {
  display: none;
}
/* line 421, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .icon-blurb.et_pb_module {
  margin-bottom: 45px;
}
/* line 423, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .icon-blurb.et_pb_module h4.et_pb_module_header {
  padding-bottom: 14px;
  margin-bottom: 0;
}
/* line 426, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .icon-blurb.et_pb_module h4.et_pb_module_header span {
  color: #fff;
  font-family: 'BatonTurbo', Verdana, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  text-transform: none;
}
/* line 434, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .icon-blurb.et_pb_module h4.et_pb_module_header:after {
  display: none;
}
/* line 439, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section .icon-blurb.et_pb_module .et_pb_blurb_description p {
  color: #BDBDBD !important;
  font-family: 'BatonTurbo', Verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
/* line 451, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_row > .et_pb_column.et_pb_column_1_3 {
  width: calc(28% - calc(32px / 2));
}
/* line 454, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_row > .et_pb_column.et_pb_column_2_3 {
  width: calc(72% - calc(32px / 2));
  background-color: #1D3F86;
  padding: 50px 60px;
}
/* line 462, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column:first-child {
  width: calc(66.6% - 16px);
  margin-right: 32px;
}
/* line 466, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column:last-child {
  width: calc(33.3% - 16px);
}
/* line 469, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column.et_pb_post {
  width: 100%;
  margin-right: 0 !important;
  margin-bottom: 35px !important;
  padding: 0;
}
/* line 474, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column.et_pb_post:last-child {
  margin-bottom: 20px !important;
}
/* line 477, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column.et_pb_post .post-card-title {
  background-color: transparent;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
/* line 484, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column .post-card {
  padding: 0 !important;
}
/* line 487, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column .post-card:before {
  display: none;
}
/* line 490, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column .post-card-type {
  color: #6884D7 !important;
  font-size: 12px;
  margin-bottom: 10px;
  padding-top: 0;
}
/* line 496, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column .card-news {
  padding: 0;
}
/* line 498, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column .card-news h2 {
  color: #fff !important;
}
/* line 501, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column .card-news h3 {
  font-family: 'BatonTurbo', Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff !important;
  line-height: 1.2;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
/* line 511, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column .card-news a {
  padding: 0 !important;
  border: none;
  text-align: left;
}
/* line 515, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column .card-news a:hover, .et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column .card-news a:focus {
  background-color: transparent;
}
/* line 521, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_column p:empty {
  padding: 0;
}
/* line 526, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 .et_pb_row_inner {
  padding: 0;
}
/* line 529, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 a.btn-text {
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'BatonTurboMedium', Verdana, sans-serif;
  font-weight: 500;
  color: #fff;
}
/* line 535, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-intelligence .et_pb_column_2_3 a.btn-text:after {
  background-image: url(../../images/icon_arrow_right_white.svg);
}
/* line 542, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section #featured.layout-alt {
  background-image: none !important;
}
/* line 545, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section #featured .et_pb_button_module_wrapper {
  display: none;
}
/* line 548, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section #featured img {
  margin-bottom: 18px;
}
/* line 551, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section #featured .card-title {
  font-size: 14px !important;
  font-weight: 700;
  font-family: 'BatonTurbo', Verdana, sans-serif;
  text-transform: uppercase;
  padding-bottom: 10px;
}
/* line 558, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section #featured p {
  color: #fff !important;
  font-family: 'BatonTurbo', Verdana, sans-serif;
  font-size: 16px;
}
/* line 563, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section #featured .card-news.card-featured-true {
  background-color: transparent;
  padding: 0;
}
/* line 566, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section #featured .card-news.card-featured-true a {
  padding: 0 !important;
  border: none;
  text-align: left;
}
/* line 570, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section #featured .card-news.card-featured-true a:hover {
  background-color: transparent;
}
/* line 578, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-products .card-news h2 {
  color: #1D2438;
  font-size: 36px;
  padding-bottom: 24px;
}
/* line 583, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-products .card-news p {
  color: #1D2438 !important;
}
/* line 585, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-products .card-news p.card-title {
  color: #fff !important;
  font-size: 16px !important;
}
/* line 590, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-products .card-news.card-featured-true {
  width: 100% !important;
}
/* line 594, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-products #featured {
  padding-top: 0 !important;
  display: block;
}
/* line 597, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-products #featured > a {
  display: none;
}
/* line 600, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section#mega-products #featured:before {
  display: none;
}
/* line 605, ../../src/styles/_header.scss */
.et-db #et-boc.mega-wrapper .et-l .mega.et_pb_section p:empty {
  padding: 0 !important;
}

/* line 1, ../../src/styles/_footer.scss */
footer {
  background-color: #F1F0ED;
}
/* line 3, ../../src/styles/_footer.scss */
footer .container {
  padding-top: 64px;
  padding-bottom: 64px;
}
/* line 6, ../../src/styles/_footer.scss */
footer .container p,
footer .container a {
  font-weight: 400;
  color: #4F4F4F;
  font-size: 14px;
  line-height: 1.28;
}
/* line 13, ../../src/styles/_footer.scss */
footer .container .flex-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  border-top: 1px solid #BDBDBD;
}
/* line 18, ../../src/styles/_footer.scss */
footer .container .flex-wrapper .inner-wrapper {
  padding-top: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
/* line 22, ../../src/styles/_footer.scss */
footer .container .flex-wrapper .inner-wrapper img {
  height: 38px;
  margin-left: 12px;
}
/* line 29, ../../src/styles/_footer.scss */
footer .et_pb_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 32, ../../src/styles/_footer.scss */
footer .et_pb_row .et_pb_column_3_5 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  /* line 32, ../../src/styles/_footer.scss */
  footer .et_pb_row .et_pb_column_3_5 {
    width: 100%;
  }
}
/* line 37, ../../src/styles/_footer.scss */
footer .et_pb_row .et_pb_column_3_5 ul {
  column-count: 3;
}
/* line 41, ../../src/styles/_footer.scss */
footer .et_pb_row .et_pb_column_1_5 {
  width: 20%;
}
@media screen and (max-width: 767px) {
  /* line 41, ../../src/styles/_footer.scss */
  footer .et_pb_row .et_pb_column_1_5 {
    margin-top: 24px;
    width: 50%;
  }
}
/* line 48, ../../src/styles/_footer.scss */
footer .et_pb_row h4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #4F4F4F;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 8px;
  padding-bottom: 0;
}
/* line 57, ../../src/styles/_footer.scss */
footer .et_pb_row h4:after {
  display: none;
}
/* line 64, ../../src/styles/_footer.scss */
footer ul li {
  padding-bottom: 10px;
  display: inline-block;
  width: 100%;
}
/* line 70, ../../src/styles/_footer.scss */
footer p.copyright {
  margin: 0;
  padding-top: 16px;
  color: #4F4F4F;
  font-size: 12px;
  line-height: 1.33;
}
/* line 80, ../../src/styles/_footer.scss */
footer .social ul li a {
  padding-left: 20px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: left 1px;
}
/* line 88, ../../src/styles/_footer.scss */
footer .social ul li.twitter a {
  background-image: url(../../images/icon_twitter.svg);
}
/* line 93, ../../src/styles/_footer.scss */
footer .social ul li.linkedin a {
  background-image: url(../../images/icon_linkedin.svg);
}

/*********************
	Hero Section
*********************/
/* line 6, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section:not(.two-col) .et_pb_blurb .et_pb_blurb_content .et_pb_blurb_container {
  text-align: center;
}
/* line 10, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section.two-col {
  padding-top: 0 !important;
  padding-right: 0;
  padding-bottom: 0 !important;
}
@media screen and (min-width: 981px) {
  /* line 14, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .hero.et_pb_section.two-col .et_pb_row {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}
/* line 20, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section.two-col .et_pb_row .et_pb_column:first-child {
  padding-top: 64px;
}
@media screen and (min-width: 981px) {
  /* line 20, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .hero.et_pb_section.two-col .et_pb_row .et_pb_column:first-child {
    padding-bottom: 109px;
  }
}
@media screen and (min-width: 981px) {
  /* line 27, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .hero.et_pb_section.two-col .et_pb_row .et_pb_column_3_5 {
    width: calc(60% - calc(124px / 2));
    margin-right: 124px;
  }
}
/* line 36, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section .et_pb_blurb .et_pb_blurb_content .et_pb_blurb_container h1 .et_pb_module_header {
  padding-bottom: 17px;
}
/* line 39, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section .et_pb_blurb .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description {
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 0;
}
@media screen and (min-width: 981px) {
  /* line 39, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .hero.et_pb_section .et_pb_blurb .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description {
    max-width: 67%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* line 53, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section .et_pb_blurb.et_pb_bg_layout_light .et_pb_blurb_description {
  color: #1D2438;
}
/* line 59, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section .et_pb_module.headline-small {
  margin-bottom: 0;
}
/* line 63, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section a.et_pb_button {
  min-width: 165px;
}
/* line 69, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section .et_pb_column_1_2 .et_pb_blurb .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description {
  max-width: 100%;
}
/* line 75, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hero.et_pb_section .btn-play-wrapper {
  position: absolute;
  min-height: 0 !important;
  padding: 0;
  right: 0;
  left: 0;
}
@media screen and (min-width: 1200px) {
  /* line 75, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .hero.et_pb_section .btn-play-wrapper {
    bottom: 27px;
    text-align: right;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  /* line 75, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .hero.et_pb_section .btn-play-wrapper {
    padding: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  /* line 75, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .hero.et_pb_section .btn-play-wrapper {
    padding: 0 24px;
  }
}
@media screen and (max-width: 1199px) {
  /* line 75, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .hero.et_pb_section .btn-play-wrapper {
    top: calc(100% - 125px);
  }
}

/* line 97, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .hidden-video.et_pb_section {
  padding: 0 !important;
  max-height: 0;
  overflow: hidden;
}

/*********************
	Office Card
*********************/
/* line 107, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .card-office.et_pb_module *.et_pb_module_header {
  margin-bottom: 18px;
  color: #000;
  padding-bottom: 0;
}
/* line 111, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .card-office.et_pb_module *.et_pb_module_header:after {
  display: none;
}
/* line 115, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .card-office.et_pb_module .et_pb_main_blurb_image {
  margin-bottom: 24px;
}
@media screen and (max-width: 980px) {
  /* line 118, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .card-office.et_pb_module .et_pb_blurb_content,
  .et-db #et-boc .et-l .card-office.et_pb_module .et_pb_blurb_container {
    text-align: center !important;
  }
}

/*********************
	Featured Card
*********************/
/* line 131, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row.featured-banner {
  padding-top: 115px !important;
  padding-bottom: 0;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  /* line 131, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_row.featured-banner {
    background-size: auto 70vw;
    background-position: top;
    padding-top: 70vw !important;
  }
}
/* line 143, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true {
  background-color: #1D2438;
}
/* line 145, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true .card-title,
.et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true h2,
.et-db #et-boc .et-l .et_pb_section .et_pb_row .et_pb_module.et_pb_bg_layout_dark .featured-banner .card-news.card-featured-true p {
  color: #fff !important;
}
/* line 156, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true {
  background-color: #fff;
  margin-bottom: 0 !important;
  padding: 32px 8px;
  color: #1D2438;
  text-align: left;
  width: 90% !important;
  max-width: 520px;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  /* line 156, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true {
    padding: 48px 32px;
    width: 75%;
  }
}
@media screen and (min-width: 981px) {
  /* line 156, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  /* line 156, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true {
    width: 100% !important;
    padding: 32px 30px;
  }
}
/* line 176, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work {
  background-color: #FF6468;
}
/* line 178, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work .card-title,
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work h2 {
  color: #1D2438;
}
/* line 182, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true.card-work a.et_pb_button {
  margin-top: 8px;
}
/* line 187, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true .card-title,
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true .excerpt {
  padding-bottom: 16px;
}
/* line 191, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true .press-date {
  display: none;
}
/* line 194, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true h2 {
  color: #1D2438;
  padding-bottom: 16px;
}
/* line 197, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true h2 svg {
  display: none;
}
/* line 201, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true p {
  color: #000 !important;
  padding-bottom: 24px;
}
/* line 205, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_row .featured-banner .card-news.card-featured-true a {
  display: inline-block;
}

/* line 217, ../../src/styles/_components.scss */
#featured.spacing-large {
  margin-bottom: 30px !important;
}
/* line 220, ../../src/styles/_components.scss */
#featured + .custom-post-grid {
  padding-top: 32px !important;
}

/*********************
	News Card
*********************/
/* line 228, ../../src/styles/_components.scss */
.custom-post-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 0 !important;
}

/* line 235, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid.carousel {
  display: block;
}
/* line 237, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid.carousel .card-news.et_pb_column_1_2:nth-child(even) {
  margin-right: 32px !important;
}
/* line 242, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid[data-thumbnails="false"] .card-image {
  display: none !important;
}
/* line 245, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid[data-thumbnails="false"] .card-news.card-media {
  border-top: 1px solid #1D2438;
}
/* line 247, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid[data-thumbnails="false"] .card-news.card-media a {
  padding-bottom: 0;
  padding-top: 14px;
}
/* line 254, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid.post-card-large .card-news.card-media {
  border-top: none;
}
/* line 259, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid.spacing-large .card-news {
  margin-bottom: 72px !important;
}
/* line 263, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 981px) {
  /* line 263, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news {
    margin-right: 32px !important;
    margin-bottom: 32px !important;
  }
  /* line 269, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news.et_pb_column_1_2 {
    width: calc(50% - calc(32px / 2)) !important;
  }
  /* line 271, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news.et_pb_column_1_2:nth-child(even) {
    margin-right: 0 !important;
  }
  /* line 275, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news.et_pb_column_1_3 {
    width: calc(33.3% - calc(calc(32px * 2) / 3)) !important;
  }
  /* line 277, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news.et_pb_column_1_3:nth-child(3n+3) {
    margin-right: 0 !important;
  }
}
/* line 283, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news.card-partner-releases .card-image {
  padding-bottom: 55%;
}
/* line 287, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news > a {
  font-family: 'BatonTurboMedium', Verdana, sans-serif;
  font-weight: 500;
}
/* line 291, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* line 295, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news a:hover {
  text-decoration: none !important;
}
/* line 299, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news a[target="_blank"] + svg,
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news a[target="_blank"] svg {
  display: inline-block;
}
/* line 305, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news .card-image {
  width: 100%;
  padding-bottom: 40%;
  background-color: #F2F2F2;
  background-size: 80% auto;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 16px;
}
/* line 314, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news .card-title {
  font-family: 'BatonTurboMedium', Verdana, sans-serif;
  font-weight: 500;
  margin: 0;
  padding: 0 0 8px;
  font-size: 16px;
  line-height: 1.375;
  color: #1D2438 !important;
  text-transform: uppercase;
}
/* line 324, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news h3,
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news h3 a {
  color: #961316;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  font-family: 'BatonTurbo', Verdana, sans-serif;
}
/* line 331, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news h3 svg,
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news h3 a svg {
  display: none;
}
/* line 333, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news h3 svg path,
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news h3 a svg path {
  stroke: #961316;
}
/* line 337, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news h3:hover,
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news h3 a:hover {
  text-decoration: underline;
}
/* line 341, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news h3 a {
  display: inline;
}
/* line 344, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news .excerpt {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
/* line 347, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news .excerpt,
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news .press-date {
  font-weight: 400;
  color: #333333 !important;
  line-height: 1.5;
}
/* line 353, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news .press-date {
  color: #4F4F4F !important;
  padding-bottom: 16px;
}
/* line 358, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news .btns-inline .et_pb_button_module_wrapper {
  padding-top: 24px;
  width: auto;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  /* line 363, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-news .btns-inline .et_pb_button_module_wrapper:not(:first-child) {
    margin-left: 24px;
  }
}
/* line 371, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work img {
  margin-bottom: 24px;
}
/* line 374, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3,
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work p {
  max-width: 360px;
}
/* line 381, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3 a:after {
  background-image: url(../../images/icon_arrow_right_coral40.svg);
  color: #961316;
  width: 16px;
  height: 12px;
  right: -2px;
  top: calc(50% + 1px);
}
/* line 389, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3 a:hover {
  color: #961316;
}
/* line 391, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .custom-post-grid .card-work h3 a:hover:after {
  right: -7px;
}

/****************************
	Intelligence Card (home)
*****************************/
/* line 403, ../../src/styles/_components.scss */
.home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true {
  background-color: #1D3F86;
}
/* line 405, ../../src/styles/_components.scss */
.home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true p,
.home.et-db #et-boc .et-l .et_pb_row .featured-banner .card-intelligence.card-featured-true h2 {
  color: #fff !important;
}

/* line 414, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_module.featured-report h4:after {
  background-color: #FF6468;
}

/*********************
	Text on Image Card
*********************/
/* line 424, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .et_pb_column_1_4 .et_pb_module.card-tile .et_pb_blurb_content {
  padding-bottom: 117% !important;
}
@media screen and (max-width: 767px) {
  /* line 424, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_row .et_pb_column_1_4 .et_pb_module.card-tile .et_pb_blurb_content {
    padding-bottom: 100% !important;
  }
}
/* line 433, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .et_pb_column_1_2 .card-tile .et_pb_blurb_content {
  padding-bottom: 100%;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  /* line 433, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_row .et_pb_column_1_2 .card-tile .et_pb_blurb_content {
    padding-bottom: 37%;
  }
}
@media screen and (min-width: 981px) {
  /* line 439, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_row .et_pb_column_1_2 .et_pb_module.card-tile,
  .et-db #et-boc .et-l .et_pb_row .et_pb_column_1_2 .card-tile .et_pb_blurb_content {
    padding-bottom: 0;
    width: 100%;
    height: 100%;
  }
}
/* line 449, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .et_pb_module.card-tile .et_pb_blurb_content {
  position: relative;
}
/* line 451, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .et_pb_module.card-tile .et_pb_blurb_content .et_pb_module_header {
  position: absolute;
  color: #fff;
  padding-left: 32px;
  padding-right: 32px;
  top: calc(100% - 3.5em);
}

/*********************
	CTA - Panel
*********************/
/* line 465, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section.cta-panel {
  padding: 0 24px;
}
@media screen and (min-width: 981px) {
  /* line 465, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.cta-panel {
    padding: 64px 24px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 471, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.cta-panel .et_pb_row > .et_pb_column {
    width: 100%;
    margin-bottom: 24px;
  }
  /* line 474, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.cta-panel .et_pb_row > .et_pb_column .et_pb_button_module_wrapper {
    width: auto !important;
    display: inline-block;
  }
  /* line 477, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.cta-panel .et_pb_row > .et_pb_column .et_pb_button_module_wrapper:not(:last-child) {
    margin-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  /* line 483, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.cta-panel .et_pb_button_module_wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 1110px) {
  /* line 490, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.cta-panel.intelligence-cta .et_pb_column:first-child {
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  /* line 488, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.cta-panel.intelligence-cta {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 498, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.cta-panel.intelligence-cta .inline-btns {
    margin-bottom: 0;
  }
}
/* line 502, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section.cta-panel.intelligence-cta .inline-btns .et_pb_button_module_wrapper {
  width: auto;
}

/*********************
	CTA - Careers
*********************/
/* line 512, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section.cta-careers.et_section_transparent {
  background-color: #1D2438;
}
/* line 515, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section.cta-careers.et_section_transparent .et_pb_module.et_pb_blurb .et_pb_blurb_description {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-family: 'BatonTurbo', Verdana, sans-serif;
}
/* line 520, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_section.cta-careers.et_section_transparent .et_pb_module.et_pb_blurb .et_pb_blurb_description a {
  color: #FF6468;
  font-size: 24px;
  line-height: 1.2;
  font-family: 'BatonTurbo', Verdana, sans-serif;
  font-weight: 700;
}

/*********************
	Pagination
*********************/
/* line 536, ../../src/styles/_components.scss */
[data-pagination="false"] + .pagination {
  display: none;
}

/* line 540, ../../src/styles/_components.scss */
.pagination {
  margin-top: 20px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
/* line 545, ../../src/styles/_components.scss */
.pagination button {
  background-color: transparent;
  border: none;
  padding: 0 15px 5px;
  font-size: 16px;
  line-height: 1.5;
  color: #961316;
  position: relative;
  transition: color 250ms;
}
/* line 554, ../../src/styles/_components.scss */
.pagination button.jplist-selected {
  color: #333333;
}
/* line 557, ../../src/styles/_components.scss */
.pagination button:after {
  content: "";
  display: block;
  opacity: 0;
  width: 16px;
  height: 3px;
  background-color: #BDBDBD;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 250ms;
}
/* line 571, ../../src/styles/_components.scss */
.pagination button:hover:after {
  opacity: 1;
}
/* line 576, ../../src/styles/_components.scss */
.pagination span {
  cursor: pointer;
  padding-left: 15px !important;
  padding-right: 15px !important;
  display: inline-block;
}
/* line 581, ../../src/styles/_components.scss */
.pagination span.jplist-disabled {
  display: none;
}
/* line 585, ../../src/styles/_components.scss */
.pagination span.next svg {
  transform: rotate(180deg);
}
/* line 591, ../../src/styles/_components.scss */
.pagination span:hover svg path {
  stroke: #333333;
}

/*********************
	Team Cards
*********************/
/* line 603, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .et_pb_module.team .et_pb_main_blurb_image {
  margin-bottom: 16px;
}
/* line 606, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_row .et_pb_module.team h3 {
  padding-bottom: 5px;
}

/*********************
	Toggle Module
*********************/
/* line 614, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_toggle {
  padding: 16px 24px 16px 48px;
  background-color: transparent;
  border-width: 1px 0;
  border-color: #333333;
  margin: 0 !important;
}
/* line 620, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_toggle + .et_pb_module.et_pb_toggle {
  border-top: none;
}
/* line 623, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_toggle .et_pb_toggle_title {
  font-family: 'Tiempos', Georgia, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: 24px;
  color: #333333;
}
/* line 629, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_toggle .et_pb_toggle_title:before {
  content: "\33";
  right: unset;
  left: -42px;
  color: #333333;
  font-size: 24px;
  transition: transform 250ms;
}
/* line 638, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_toggle .et_pb_toggle_content {
  padding-top: 40px;
  padding-bottom: 24px;
}
/* line 644, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .et_pb_module.et_pb_toggle.et_pb_toggle_open .et_pb_toggle_title:before {
  transform: rotate(180deg);
}

/*************************
	Alternating Content
*************************/
@media screen and (min-width: 981px) {
  /* line 655, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.alternating .et_pb_row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /* line 663, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.alternating .et_pb_row:nth-child(even) > .et_pb_column:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 0 !important;
    margin-left: auto;
  }
  /* line 667, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.alternating .et_pb_row:nth-child(even) > .et_pb_column:first-child .et_pb_module.et_pb_image {
    margin-left: auto;
    margin-right: 0;
  }
  /* line 673, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.alternating .et_pb_row:nth-child(even) > .et_pb_column:nth-child(2) .et_pb_blurb_content {
    margin-left: 0;
  }
}
@media screen and (min-width: 981px) {
  /* line 682, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.alternating .et_pb_module.et_pb_image {
    max-width: 466px;
  }
}
@media screen and (min-width: 981px) {
  /* line 688, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .et_pb_section.alternating .et_pb_module.et_pb_blurb .et_pb_blurb_content {
    max-width: 410px;
  }
}

/***************************
	Bio Modal
***************************/
/* line 700, ../../src/styles/_components.scss */
.et_pb_module.bio-modal-content {
  display: none;
}

/* line 704, ../../src/styles/_components.scss */
.modal {
  position: fixed;
  top: 80px;
  z-index: 1000;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 821px;
  max-height: 800px;
  background-color: #fff;
  padding: 80px 48px 40px;
  overflow-y: auto;
}
/* line 717, ../../src/styles/_components.scss */
.modal:after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 48px;
  position: sticky;
  bottom: 0;
}
/* line 726, ../../src/styles/_components.scss */
.modal .modal-close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 30px;
  right: 50px;
  background-image: url(../../images/icon_close.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  cursor: pointer;
  z-index: 1;
}
/* line 740, ../../src/styles/_components.scss */
.modal .et_pb_module.bio-modal-content {
  display: block;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  /* line 743, ../../src/styles/_components.scss */
  .modal .et_pb_module.bio-modal-content .et_pb_blurb_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  /* line 747, ../../src/styles/_components.scss */
  .modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_main_blurb_image {
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}
/* line 752, ../../src/styles/_components.scss */
.modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_main_blurb_image a.linkedin {
  font-size: 16px;
  color: #4F4F4F !important;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  margin-top: 20px;
  display: block;
}
/* line 760, ../../src/styles/_components.scss */
.modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_main_blurb_image a.linkedin:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(../../images/icon_linkedin.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  position: absolute;
  top: 4px;
  left: 0;
}
/* line 777, ../../src/styles/_components.scss */
.modal .et_pb_module.bio-modal-content .et_pb_blurb_content *.et_pb_module_header a:not(.linkedin),
.modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_main_blurb_image a:not(.linkedin) {
  color: #1D2438;
  pointer-events: none;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  /* line 783, ../../src/styles/_components.scss */
  .modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_blurb_container {
    -webkit-flex-basis: 60%;
    -moz-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    padding-right: 72px;
  }
}
@media screen and (max-width: 767px) {
  /* line 783, ../../src/styles/_components.scss */
  .modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_blurb_container {
    margin-top: 48px;
  }
}
/* line 791, ../../src/styles/_components.scss */
.modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_blurb_container h2 {
  margin: 0;
  padding-bottom: 8px;
}
/* line 795, ../../src/styles/_components.scss */
.modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_blurb_container h3 {
  margin: 0;
  padding-bottom: 24px;
}
/* line 800, ../../src/styles/_components.scss */
.modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_blurb_container p:first-of-type {
  margin-top: 0;
  margin-bottom: 24px;
}
/* line 804, ../../src/styles/_components.scss */
.modal .et_pb_module.bio-modal-content .et_pb_blurb_content .et_pb_blurb_container p:last-of-type {
  margin-bottom: 0;
}

/************************
	Logo Carousel
************************/
/* line 816, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .logo-carousel.et_pb_row {
  padding: 0;
  margin-top: 25px;
  max-width: none;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}
/* line 824, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .logo-carousel.et_pb_row .et_pb_column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: auto !important;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0;
}
/* line 832, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .logo-carousel.et_pb_row .et_pb_column.copy {
  margin-left: -6px;
}
/* line 837, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .logo-carousel.et_pb_row.animate .et_pb_column {
  animation: carousel 25s infinite linear;
}
/* line 841, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .logo-carousel.et_pb_row .et_pb_module.et_pb_image {
  display: inline-block;
  margin: 0 24px;
}
/* line 844, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .logo-carousel.et_pb_row .et_pb_module.et_pb_image:last-child {
  margin-right: 0;
}
/* line 847, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .logo-carousel.et_pb_row .et_pb_module.et_pb_image img {
  max-width: none;
}

@keyframes carousel {
  0% {
    transform: translateX(0);
  }
  99.999% {
    transform: translateX(calc(-100% - 24px));
  }
  100% {
    transform: translateX(0);
  }
}
/***************************
	Custom FAQs (for use in Tabs)
***************************/
/* line 868, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq {
  border-top: 1px solid #333333;
  padding: 16px 0;
}
/* line 871, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq:first-of-type {
  margin-top: 24px;
}
/* line 874, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq:last-of-type {
  border-bottom: 1px solid #333333;
}
/* line 877, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq h3 {
  padding: 0 0 0 30px;
  position: relative;
  cursor: pointer;
}
/* line 881, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq h3:before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  transition: all 250ms;
}
/* line 894, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq .ar-faq-inner {
  max-height: 0;
  overflow: hidden;
  transition: all 350ms;
  padding-left: 30px;
}
/* line 899, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq .ar-faq-inner > *:first-child {
  padding-top: 40px;
}
/* line 902, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq .ar-faq-inner > *:last-child {
  padding-bottom: 40px;
}
/* line 907, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq.active h3:before {
  top: 0.45em;
  transform: rotate(-45deg);
}
/* line 911, ../../src/styles/_components.scss */
body.et-db #et-boc .et-l .ar-faq.active .ar-faq-inner {
  max-height: 3000px;
}

/***********************
	Bamboo HR
***********************/
/* line 921, ../../src/styles/_components.scss */
#BambooHR > div:not(#BambooHR-ATS) {
  display: none;
}
/* line 924, ../../src/styles/_components.scss */
#BambooHR h2 {
  border-bottom: none !important;
  padding-bottom: 40px !important;
  font-size: 36px;
  letter-spacing: -0.5%;
}
/* line 930, ../../src/styles/_components.scss */
#BambooHR .BambooHR-ATS-Department-Header {
  font-family: "BatonTurbo", Verdana, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  padding-bottom: 18px !important;
}
/* line 938, ../../src/styles/_components.scss */
#BambooHR .BambooHR-ATS-Department-List > li {
  margin-bottom: 30px !important;
}
/* line 941, ../../src/styles/_components.scss */
#BambooHR .BambooHR-ATS-Department-List > li:last-child .BambooHR-ATS-Jobs-List {
  border-bottom: none !important;
}
/* line 947, ../../src/styles/_components.scss */
#BambooHR .BambooHR-ATS-Jobs-List {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #BDBDBD !important;
}
/* line 951, ../../src/styles/_components.scss */
#BambooHR .BambooHR-ATS-Jobs-List .BambooHR-ATS-Jobs-Item {
  font-size: 18px;
  padding-bottom: 30px;
}
/* line 954, ../../src/styles/_components.scss */
#BambooHR .BambooHR-ATS-Jobs-List .BambooHR-ATS-Jobs-Item a {
  font-size: 18px;
  color: #FF6468 !important;
  font-family: 'BatonTurboMedium', Verdana, sans-serif !important;
}
/* line 959, ../../src/styles/_components.scss */
#BambooHR .BambooHR-ATS-Jobs-List .BambooHR-ATS-Jobs-Item .BambooHR-ATS-Location {
  display: block;
  float: none !important;
  padding-top: 0 !important;
  font-size: 16px;
  font-family: 'Tiempos', Georgia, sans-serif;
  color: #4F4F4F;
}

/* line 971, ../../src/styles/_components.scss */
.benefits-icon .et_pb_image_wrap {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/* line 978, ../../src/styles/_components.scss */
#employees-display .et_pb_column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 980px) {
  /* line 978, ../../src/styles/_components.scss */
  #employees-display .et_pb_column {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/* line 985, ../../src/styles/_components.scss */
#employees-display .et_pb_image {
  margin: 0 !important;
  position: relative;
}
/* line 988, ../../src/styles/_components.scss */
#employees-display .et_pb_image .et_pb_image_wrap {
  border: 7px solid;
  border-radius: 100%;
  width: 112px;
  height: 112px;
  position: relative;
  overflow: hidden;
}
/* line 995, ../../src/styles/_components.scss */
#employees-display .et_pb_image .et_pb_image_wrap img {
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none !important;
  height: 120px !important;
  width: auto !important;
}
/* line 1006, ../../src/styles/_components.scss */
#employees-display .et_pb_image:not(.show) {
  display: none !important;
}
/* line 1010, ../../src/styles/_components.scss */
#employees-display .et_pb_image.coral .et_pb_image_wrap {
  border-color: #FF6468;
}
/* line 1015, ../../src/styles/_components.scss */
#employees-display .et_pb_image.yellow .et_pb_image_wrap {
  border-color: #FFE872;
}
/* line 1020, ../../src/styles/_components.scss */
#employees-display .et_pb_image.grey .et_pb_image_wrap {
  border-color: #88A6FA;
}
/* line 1024, ../../src/styles/_components.scss */
#employees-display .et_pb_image:before {
  content: "";
  display: block;
  border-radius: 100%;
  background-color: #F1F0ED;
  position: absolute;
  z-index: -1;
}
/* line 1033, ../../src/styles/_components.scss */
#employees-display .et_pb_image:first-child:before {
  width: 24px;
  height: 24px;
  top: 150px;
  right: -10px;
}
/* line 1040, ../../src/styles/_components.scss */
#employees-display .et_pb_image:nth-child(2) {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  /* line 1040, ../../src/styles/_components.scss */
  #employees-display .et_pb_image:nth-child(2) {
    margin-top: 160px !important;
  }
}
/* line 1045, ../../src/styles/_components.scss */
#employees-display .et_pb_image:nth-child(2):before {
  width: 34px;
  height: 34px;
  top: -40px;
  left: -60px;
}
/* line 1052, ../../src/styles/_components.scss */
#employees-display .et_pb_image:nth-child(3) {
  margin-top: 50px !important;
}
/* line 1054, ../../src/styles/_components.scss */
#employees-display .et_pb_image:nth-child(3):before {
  width: 34px;
  height: 34px;
  top: 142px;
  left: -34px;
}
/* line 1061, ../../src/styles/_components.scss */
#employees-display .et_pb_image:nth-child(4) {
  margin-top: 66px !important;
}
@media screen and (max-width: 767px) {
  /* line 1061, ../../src/styles/_components.scss */
  #employees-display .et_pb_image:nth-child(4) {
    margin-top: 16px !important;
  }
}
/* line 1066, ../../src/styles/_components.scss */
#employees-display .et_pb_image:nth-child(4):before {
  width: 17px;
  height: 17px;
  top: -10px;
  left: -10px;
}
/* line 1073, ../../src/styles/_components.scss */
#employees-display .et_pb_image:nth-child(5) {
  margin-top: 33px !important;
}
/* line 1075, ../../src/styles/_components.scss */
#employees-display .et_pb_image:nth-child(5):before {
  width: 34px;
  height: 34px;
  top: 101px;
  left: -30px;
}
/* line 1081, ../../src/styles/_components.scss */
#employees-display .et_pb_image:nth-child(5):after {
  content: "";
  display: block;
  border-radius: 100%;
  background-color: #F1F0ED;
  position: absolute;
  width: 23px;
  height: 23px;
  right: -17px;
  top: -12px;
}

/* line 1098, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .flickity-viewport:before, .et-db #et-boc .et-l .employees-slider .flickity-viewport:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16.65%;
  background: linear-gradient(90deg, #F1F5FF 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  /* line 1098, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .employees-slider .flickity-viewport:before, .et-db #et-boc .et-l .employees-slider .flickity-viewport:after {
    display: none;
  }
}
/* line 1112, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .flickity-viewport:before {
  left: 0;
}
/* line 1115, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .flickity-viewport:after {
  right: 0;
  transform: scaleX(-1);
}
/* line 1120, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .flickity-button.flickity-prev-next-button {
  top: 50%;
  padding: 0;
  background-image: url(../../images/icon_carousel_arrow@2x.png) !important;
  background-size: cover !important;
  width: 49px;
  height: 49px;
  transition: opacity 250ms;
}
/* line 1128, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .flickity-button.flickity-prev-next-button:hover {
  opacity: 0.8;
}
/* line 1131, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .flickity-button.flickity-prev-next-button svg {
  display: none;
}
/* line 1134, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .flickity-button.flickity-prev-next-button.previous {
  left: 20px !important;
}
@media screen and (max-width: 767px) {
  /* line 1134, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .employees-slider .flickity-button.flickity-prev-next-button.previous {
    left: -20px !important;
  }
}
/* line 1140, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .flickity-button.flickity-prev-next-button.next {
  right: 20px;
  left: unset !important;
}
@media screen and (max-width: 767px) {
  /* line 1140, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .employees-slider .flickity-button.flickity-prev-next-button.next {
    right: -20px !important;
  }
}
/* line 1148, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider ol.flickity-page-dots {
  bottom: 20px;
}
/* line 1150, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider ol.flickity-page-dots li {
  width: 9px;
  height: 9px;
}
/* line 1153, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider ol.flickity-page-dots li:hover, .et-db #et-boc .et-l .employees-slider ol.flickity-page-dots li.is-selected.dot {
  background-color: #1D3F86 !important;
}
/* line 1159, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .et_pb_module {
  background-color: #F1F5FF;
  padding: 76px 53px 107px;
  width: 66.66%;
  margin-right: 40px;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  /* line 1159, ../../src/styles/_components.scss */
  .et-db #et-boc .et-l .employees-slider .et_pb_module {
    width: 100%;
  }
}
/* line 1169, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .et_pb_blurb_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* line 1172, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .et_pb_blurb_container h4.et_pb_module_header {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-order: 2;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  font-family: 'BatonTurboMedium', Verdana, sans-serif;
  line-height: 1.5;
  text-transform: none;
  color: #1D3F86;
  margin: 32px 0 0;
  padding-bottom: 0;
}
/* line 1183, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .et_pb_blurb_container h4.et_pb_module_header:after {
  display: none;
}
/* line 1186, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .et_pb_blurb_container h4.et_pb_module_header span span {
  font-family: 'BatonTurbo', Verdana, sans-serif;
  display: block;
  color: #333333;
}
/* line 1191, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .et_pb_blurb_container h4.et_pb_module_header img {
  width: 64px;
  height: auto;
  border-radius: 100%;
  margin-right: 16px;
}
/* line 1198, ../../src/styles/_components.scss */
.et-db #et-boc .et-l .employees-slider .et_pb_blurb_container .et_pb_blurb_description {
  font-size: 18px;
  font-family: 'BatonTurbo', Verdana, sans-serif;
}

/******************
	Logos Section
******************/
/* line 1208, ../../src/styles/_components.scss */
.logos-section.et_pb_row > .et_pb_column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 1213, ../../src/styles/_components.scss */
.logos-section.et_pb_row > .et_pb_column .et_pb_module {
  margin: 0 24px 40px !important;
}

/* line 1218, ../../src/styles/_components.scss */
.et_pb_section.no-after .et_pb_blurb h4.et_pb_module_header {
  padding-bottom: 0;
}
/* line 1220, ../../src/styles/_components.scss */
.et_pb_section.no-after .et_pb_blurb h4.et_pb_module_header:after {
  display: none;
}

/********************
	Landing
********************/
/* line 6, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section.hero,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section.hero {
  padding-bottom: 0;
}
/* line 9, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section.featured-banner,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section.featured-banner {
  padding-bottom: 0;
}
/* line 12, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section.staggered-grid,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section.staggered-grid {
  padding-top: 0;
}
/* line 14, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section.staggered-grid .et_pb_row,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section.staggered-grid .et_pb_row {
  padding-top: 32px;
}
/* line 16, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section.staggered-grid .et_pb_row .et_pb_column,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section.staggered-grid .et_pb_row .et_pb_column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  /* line 24, ../../src/styles/_intelligence.scss */
  .tax-type.et-db #et-boc .et-l .et_pb_section .filters p,
  .post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters p {
    display: inline-block;
    padding-right: 32px;
  }
}
@media screen and (max-width: 767px) {
  /* line 24, ../../src/styles/_intelligence.scss */
  .tax-type.et-db #et-boc .et-l .et_pb_section .filters p,
  .post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters p {
    margin-bottom: 16px;
  }
}
/* line 34, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section .filters p,
.tax-type.et-db #et-boc .et-l .et_pb_section .filters li a,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters p,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters li a {
  font-size: 18px;
  color: #000;
  line-height: 1.33;
  font-weight: 400;
}
/* line 41, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section .filters ul,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters ul {
  display: inline-block;
}
/* line 44, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section .filters ul li,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters ul li {
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
}
/* line 48, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section .filters ul li:before,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters ul li:before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  position: absolute;
  left: -18px;
  top: 0.75em;
  background-color: #BDBDBD;
  transform: rotate(-70deg);
}
/* line 59, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section .filters ul li a,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters ul li a {
  display: inline-block;
  border-bottom: 1px solid transparent;
}
/* line 62, ../../src/styles/_intelligence.scss */
.tax-type.et-db #et-boc .et-l .et_pb_section .filters ul li a:hover,
.post-type-archive-intelligence.et-db #et-boc .et-l .et_pb_section .filters ul li a:hover {
  text-decoration: none !important;
  border-color: #000;
}

/* line 73, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card {
  padding-top: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  /* line 73, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section .post-card {
    width: calc(50% - 16px);
  }
}
@media screen and (min-width: 981px) {
  /* line 73, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section .post-card {
    width: calc(33.3% - 16px);
  }
}
@media screen and (max-width: 767px) {
  /* line 73, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section .post-card {
    padding-top: 52%;
  }
}
/* line 91, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card.post-card-large {
  width: 100%;
}
/* line 94, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  transition: all 250ms;
}
/* line 105, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card:hover:before {
  transform: scale(1.2);
}
@media screen and (min-width: 981px) {
  /* line 109, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section .post-card:nth-child(5n+4) {
    width: calc(66.6% - 8px);
  }
}
@media screen and (max-width: 767px) {
  /* line 114, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section .post-card:not(:first-child) {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  /* line 119, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section .post-card:nth-child(n+3) {
    margin-top: 32px;
  }
}
@media screen and (min-width: 981px) {
  /* line 124, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section .post-card:nth-child(n+4) {
    margin-top: 32px;
  }
}
/* line 129, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card.intelligence-highlight {
  padding-top: 0;
  pointer-events: none;
  background-color: #F1F0ED;
}
/* line 133, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card.intelligence-highlight h2 {
  color: #1D2438;
  line-height: 1.2;
}
/* line 137, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card.intelligence-highlight .post-card-title {
  padding: 48px 32px;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
}
/* line 146, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card.card-type-webinar .post-card-title:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #1D3F86;
  position: absolute;
  top: 0;
  left: 32px;
  transform: translateY(-50%);
}
/* line 158, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card.card-type-webinar .post-card-title:after {
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../../images/icon_play_filled.svg);
  background-size: cover;
  z-index: 10;
  position: absolute;
  left: 48px;
  top: 0;
  transform: translateY(-50%);
}
/* line 176, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card-title {
  padding: 24px 32px;
  background-color: #fff;
  width: 82%;
  max-width: 278px;
  position: relative;
}
/* line 182, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card-title .post-card-type {
  font-family: 'BatonTurboMedium', Verdana, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  color: #1D3F86 !important;
  margin-bottom: 16px;
  padding-top: 10px;
}
/* line 190, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .post-card-title h3 {
  font-weight: 400;
}
/* line 195, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section article .post-card {
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  padding-top: 52%;
  padding-bottom: 0 !important;
}
/* line 200, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section article .post-card h3 {
  color: #1D2438 !important;
}
/* line 202, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section article .post-card h3:hover {
  text-decoration: none !important;
}

/********************
	Single
********************/
/* line 213, ../../src/styles/_intelligence.scss */
.single-hero {
  min-height: 512px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* line 218, ../../src/styles/_intelligence.scss */
.single-hero.report-landing:after {
  background: linear-gradient(360deg, #17264F 18.85%, rgba(255, 255, 255, 0) 85%);
  mix-blend-mode: multiply;
}
/* line 223, ../../src/styles/_intelligence.scss */
.single-hero:after {
  background: linear-gradient(360deg, #000000 18.85%, transparent 109.67%);
  background-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  visibility: visible !important;
  height: 100% !important;
  width: 100% !important;
}
/* line 236, ../../src/styles/_intelligence.scss */
.single-hero.webinar:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(360deg, #000000 10.28%, transparent 109.67%);
}
/* line 248, ../../src/styles/_intelligence.scss */
.single-hero .et_pb_row {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  padding-top: 40px !important;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 980px) {
  /* line 248, ../../src/styles/_intelligence.scss */
  .single-hero .et_pb_row {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/* line 258, ../../src/styles/_intelligence.scss */
.single-hero .et_pb_column {
  max-width: 770px;
}
/* line 260, ../../src/styles/_intelligence.scss */
.single-hero .et_pb_column h3 {
  padding-bottom: 0 !important;
}
/* line 264, ../../src/styles/_intelligence.scss */
.single-hero ul.breadcrumbs {
  position: absolute;
  top: 0;
  z-index: 10;
}
/* line 269, ../../src/styles/_intelligence.scss */
.single-hero ul.breadcrumbs li {
  color: #fff !important;
}
/* line 271, ../../src/styles/_intelligence.scss */
.single-hero ul.breadcrumbs li a {
  color: #fff !important;
  font-weight: 300;
  border-bottom: 1px solid transparent !important;
  font-family: 'BatonTurbo', Verdana, sans-serif;
}
/* line 276, ../../src/styles/_intelligence.scss */
.single-hero ul.breadcrumbs li a:hover {
  border-color: #fff !important;
}
/* line 280, ../../src/styles/_intelligence.scss */
.single-hero ul.breadcrumbs li:last-child a {
  font-weight: 600;
}
/* line 285, ../../src/styles/_intelligence.scss */
.single-hero .pill {
  font-family: 'BatonTurboMedium', Verdana, sans-serif;
  font-weight: 500;
}

@media (min-width: 981px) {
  /* line 292, ../../src/styles/_intelligence.scss */
  .single-intelligence.et-db #et-boc .et-l .et_pb_section > .et_pb_row > .et_pb_column.et_pb_column_2_3 {
    padding-right: 65px;
  }
}
/* line 297, ../../src/styles/_intelligence.scss */
.single-intelligence.et-db #et-boc .et-l div.hbspt-form {
  padding-bottom: 0;
}

/* line 303, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-meta {
  padding-top: 24px;
  padding-bottom: 24px;
}
/* line 306, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-meta .et_pb_row {
  padding-top: 0;
  padding-bottom: 0;
  float: left;
}
@media screen and (min-width: 768px) {
  /* line 306, ../../src/styles/_intelligence.scss */
  .et-db.single #et-boc .et-l .et_pb_section.post-meta .et_pb_row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    float: none;
  }
}
/* line 315, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-meta .et_pb_row:before {
  content: "";
  display: block;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -16px;
  width: calc(100% - 160px);
  left: 64px;
  right: 64px;
  visibility: visible;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  /* line 315, ../../src/styles/_intelligence.scss */
  .et-db.single #et-boc .et-l .et_pb_section.post-meta .et_pb_row:before {
    display: none;
  }
}
/* line 331, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-meta .et_pb_row .et_pb_column:first-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  /* line 331, ../../src/styles/_intelligence.scss */
  .et-db.single #et-boc .et-l .et_pb_section.post-meta .et_pb_row .et_pb_column:first-child {
    margin-bottom: 16px;
  }
}
/* line 339, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-meta p.post-date {
  font-size: 14px;
  color: #1D3F86 !important;
  padding: 0;
}
/* line 344, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-meta p.author {
  font-size: 18px;
  font-weight: 400;
  color: #1D2438;
}
@media screen and (min-width: 768px) {
  /* line 344, ../../src/styles/_intelligence.scss */
  .et-db.single #et-boc .et-l .et_pb_section.post-meta p.author {
    padding-left: 5px;
  }
}
/* line 355, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-content .et_pb_row {
  padding-top: 0;
}
/* line 357, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-content .et_pb_row h2.et_pb_module_header {
  padding-top: 25px;
}
/* line 361, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-content .et_pb_row .et_pb_column:not(.work-section) img {
  display: block;
  box-shadow: 6px 6px 7px 0 rgba(0, 0, 0, 0.1);
}
/* line 366, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l .et_pb_section.post-content .et_pb_row .et_pb_button_module_wrapper {
  margin-top: 24px;
}
/* line 373, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l a.launch-form {
  width: 100px;
  height: 100px;
  background-image: url(../../images/icon_play@2x.png);
  background-size: cover;
  cursor: pointer;
  z-index: 10;
  transition: all 250ms;
}
@media screen and (min-width: 981px) {
  /* line 373, ../../src/styles/_intelligence.scss */
  .et-db.single #et-boc .et-l a.launch-form {
    bottom: -10px;
    right: 20px;
    position: absolute;
  }
}
/* line 387, ../../src/styles/_intelligence.scss */
.et-db.single #et-boc .et-l a.launch-form:hover {
  transform: scale(1.2);
}

/* line 397, ../../src/styles/_intelligence.scss */
body.open-form .video-embed,
body.open-form.et-db.single .video-embed {
  display: block !important;
  position: fixed;
  top: 90px;
  bottom: 60px;
  z-index: 1000;
  left: 0;
  right: 0;
  text-align: center !important;
  max-width: 80vw;
  max-height: calc(100vh - 120px);
  margin: 0 auto !important;
}
/* line 409, ../../src/styles/_intelligence.scss */
body.open-form .video-embed .video-wrapper,
body.open-form.et-db.single .video-embed .video-wrapper {
  position: relative;
  padding-bottom: 56.25% !important;
  /* 16:9 */
  height: 0;
}
/* line 413, ../../src/styles/_intelligence.scss */
body.open-form .video-embed .video-wrapper iframe,
body.open-form.et-db.single .video-embed .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 120px);
}
/* line 421, ../../src/styles/_intelligence.scss */
body.open-form .video-embed a.close,
body.open-form.et-db.single .video-embed a.close {
  position: absolute;
  top: -48px;
  right: -32px;
  color: #fff;
  width: 24px;
  height: 24px;
  z-index: 10;
}
/* line 430, ../../src/styles/_intelligence.scss */
body.open-form .video-embed a.close svg path,
body.open-form.et-db.single .video-embed a.close svg path {
  stroke: #BDBDBD;
}

/**************************
	Report Landing Page
**************************/
/* line 441, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.report-landing.single-hero {
  padding-bottom: 60px;
  height: calc(100% - 85px);
}

/* line 446, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.report-landing:not(.single-hero) {
  padding-bottom: 0;
}
@media screen and (min-width: 981px) {
  /* line 448, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.report-landing:not(.single-hero) > .et_pb_row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
/* line 453, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.report-landing:not(.single-hero) > .et_pb_row .et_pb_column {
  width: 100%;
}
/* line 455, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.report-landing:not(.single-hero) > .et_pb_row .et_pb_column:last-child {
  padding: 16px 24px;
  margin-top: 60px;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
@media screen and (min-width: 981px) {
  /* line 453, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.report-landing:not(.single-hero) > .et_pb_row .et_pb_column {
    width: calc(50% - 50px);
  }
  /* line 463, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.report-landing:not(.single-hero) > .et_pb_row .et_pb_column:first-child {
    margin-right: 80px;
  }
  /* line 466, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.report-landing:not(.single-hero) > .et_pb_row .et_pb_column:last-child {
    padding: 60px 36px;
    transform: translateY(-102px);
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  /* line 476, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section .et_pb_module.cta-block {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
/* line 481, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.cta-block h2.et_pb_module_header {
  padding-top: 0 !important;
}
/* line 484, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.cta-block h3 {
  padding-bottom: 40px !important;
}
/* line 487, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.cta-block p.fineprint {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #4F4F4F;
  letter-spacing: -0.1%;
  padding-top: 40px;
}
/* line 495, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.cta-block img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
/* line 500, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section .et_pb_module.cta-block .gform_footer {
  margin-top: 14px !important;
  margin-bottom: 24px !important;
}

@media screen and (min-width: 768px) {
  /* line 506, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.fact-card {
    padding-top: 50px;
    padding-bottom: 104px;
  }
}
@media screen and (max-width: 980px) {
  /* line 506, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.fact-card {
    padding-top: 40px;
  }
  /* line 513, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 516, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_module {
    padding: 56px 24px;
  }
}
/* line 521, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 981px) {
  /* line 521, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
/* line 528, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:first-child {
  background-color: #1D2438;
  padding: 2%;
  min-height: 386px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 981px) {
  /* line 528, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:first-child {
    width: 66.7%;
    margin-right: 0;
  }
}
@media screen and (max-width: 980px) {
  /* line 528, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:first-child {
    margin-bottom: 0;
  }
}
/* line 541, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:first-child .et_pb_module {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  /* line 541, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:first-child .et_pb_module {
    max-width: none;
  }
}
/* line 549, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:first-child .et_pb_module h4.et_pb_module_header:after {
  background-color: #FF6468;
}
/* line 553, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:first-child .et_pb_module h2.et_pb_module_header {
  padding-bottom: 30px;
}
/* line 555, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:first-child .et_pb_module h2.et_pb_module_header + .et_pb_button {
  display: inline-block;
}
/* line 561, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:last-child {
  display: block !important;
}
/* line 563, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:last-child img {
  opacity: 0;
}
@media screen and (min-width: 981px) {
  /* line 561, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.fact-card .et_pb_row .et_pb_column:last-child {
    width: 33.3%;
  }
}

/* line 574, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_module.icons {
  padding-top: 55px;
}
/* line 576, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_module.icons h4.et_pb_module_header {
  color: #1D2438 !important;
  padding-bottom: 0;
  margin-bottom: 40px;
}
/* line 580, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_module.icons h4.et_pb_module_header:after {
  display: none;
}
/* line 585, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_module.icons .icons_wrapper .icon_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
/* line 589, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_module.icons .icons_wrapper .icon_item:not(:last-child) {
  margin-bottom: 30px;
}
/* line 593, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_module.icons .icons_wrapper img {
  display: inline-block;
  width: 29px;
  box-shadow: none !important;
}
/* line 598, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_module.icons .icons_wrapper p {
  width: calc(100% - 29px);
  padding-left: 20px;
  color: #000 !important;
}

@media screen and (max-width: 980px) {
  /* line 606, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.bottom-form {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
/* line 612, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.bottom-form .et_pb_module img {
  width: 100%;
}
/* line 615, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.bottom-form .et_pb_module h3 {
  font-size: 16px;
  line-height: 1.5;
  color: #1D2438;
}
@media screen and (min-width: 981px) {
  /* line 620, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.bottom-form .et_pb_module form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  /* line 623, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .et_pb_section.bottom-form .et_pb_module form .gform_footer {
    margin-left: 12px;
  }
}
/* line 627, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.bottom-form .et_pb_module form .gform_body {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
/* line 630, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.bottom-form .et_pb_module form .gform_footer {
  margin-top: 31px !important;
}

/* line 639, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero {
  padding-top: 60px;
  padding-bottom: 60px;
}
/* line 642, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero > .et_pb_row.narrow-wrapper {
  max-width: 780px;
  padding-left: 40px;
  padding-right: 40px;
}
/* line 646, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero > .et_pb_row.narrow-wrapper .et_pb_column.et-last-child {
  margin-right: 0 !important;
}
/* line 650, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero p.h4.article-eyebrow {
  color: #FF6468 !important;
  padding-bottom: 32px;
}
/* line 653, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero p.h4.article-eyebrow:after {
  display: none;
}
/* line 657, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero h1 {
  color: #000;
  padding-bottom: 17px;
}
/* line 661, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero h2.h3 {
  padding-bottom: 32px;
  margin-bottom: 0;
  font-weight: 400;
  font-family: 'Tiempos', sans-serif;
  font-size: 28px;
  color: #4F4F4F;
  line-height: 1.62 !important;
}
/* line 670, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero .post-meta {
  clear: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
/* line 673, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero .post-meta p {
  text-transform: uppercase;
  color: #4F4F4F !important;
}
/* line 677, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero .post-meta p.date {
  font-family: 'BatonTurboMedium', sans-serif;
  font-weight: 700;
  padding-right: 68px;
}
/* line 682, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .et_pb_section.article-hero .post-meta p.read-time {
  font-family: 'BatonTurbo', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
/* line 690, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .progress-bar.et_pb_section {
  width: 100%;
  max-width: 100%;
  padding: 0 !important;
  position: fixed;
  top: 106px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  /* line 690, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .progress-bar.et_pb_section {
    top: 0;
  }
}
/* line 700, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .progress-bar.et_pb_section > .et_pb_row {
  background-color: transparent;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
/* line 706, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .progress-bar.et_pb_section #progress-bar {
  background-color: #FF6468;
  height: 12px;
}
/* line 712, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-content blockquote {
  font-size: 24px;
  font-family: 'Tiempos', serif;
  color: #333333;
  font-style: italic;
  padding: 30px 0;
  position: relative;
  margin: 54px 0;
}
@media screen and (min-width: 981px) {
  /* line 712, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .article-content blockquote {
    width: calc(100% + 92px);
    margin-left: -92px;
  }
}
/* line 724, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-content blockquote:before, .et-db #et-boc .et-l .article-content blockquote:after {
  content: "";
  width: 148px;
  height: 1px;
  background-color: #828282;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* line 734, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-content blockquote:before {
  top: 0;
}
/* line 737, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-content blockquote:after {
  bottom: 0;
}
/* line 742, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .content-wrapper {
  padding-top: 0 !important;
}
/* line 744, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .content-wrapper > .et_pb_row {
  padding-top: 0;
}
@media screen and (max-width: 980px) {
  /* line 744, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .content-wrapper > .et_pb_row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  /* line 749, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .content-wrapper > .et_pb_row .social-share {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 100% !important;
    margin-right: 0;
  }
}
/* line 757, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-graph {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 38px 33px;
  margin-top: 70px;
  margin-bottom: 90px;
}
/* line 762, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-graph p {
  font-family: 'BatonTurboMedium', sans-serif;
  font-weight: 700;
  padding-bottom: 32px;
}
/* line 769, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .takeaways .takeaway {
  padding-bottom: 72px;
}
/* line 772, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .takeaways h4 {
  margin-bottom: 54px;
  text-transform: uppercase;
}
/* line 776, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .takeaways h2 {
  padding-bottom: 15px;
}
/* line 780, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .methodology {
  margin-top: 32px;
  border-top: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
  padding-top: 23px;
  padding-bottom: 36px;
  margin-bottom: 65px;
}
/* line 787, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .methodology h5 {
  font-size: 18px;
  font-family: 'BatonTurboMedium', sans-serif;
  font-weight: 600;
  color: #4F4F4F;
  padding-bottom: 23px;
}
/* line 794, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .methodology p {
  font-size: 14px;
}
/* line 798, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-callout {
  background-color: #F1F0ED;
  padding: 53px 23px;
}
/* line 801, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-callout img {
  margin-bottom: 23px;
}
/* line 804, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-callout p {
  font-style: italic;
}
/* line 807, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-callout a {
  margin-top: 40px;
  display: block;
}
/* line 812, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .article-callout a span:after {
  top: unset;
  transform: none;
  bottom: 4px;
}
/* line 821, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .social-share h5 {
  font-family: 'BatonTurboMedium', sans-serif;
  font-weight: 600;
  color: #828282;
  font-size: 16px;
  padding-bottom: 12px;
}
/* line 828, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .social-share .addthis_tool a {
  padding-bottom: 0 !important;
}
/* line 831, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .social-share .at-share-btn-elements > .at-icon-wrapper {
  margin-right: 15px;
}
/* line 835, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .social-share .at-icon-wrapper svg {
  display: none;
}
/* line 842, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .social-share .at-svc-linkedin .at-icon-wrapper,
.et-db #et-boc .et-l .social-share .at-svc-twitter .at-icon-wrapper,
.et-db #et-boc .et-l .social-share .at-svc-facebook .at-icon-wrapper {
  opacity: 0.6;
  background-repeat: no-repeat;
  background-position: center center;
}
/* line 849, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .social-share .at-svc-linkedin .at-icon-wrapper {
  background-image: url(../../images/icon_linkedin.svg);
  background-size: 20px 20px;
}
/* line 855, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .social-share .at-svc-twitter .at-icon-wrapper {
  background-image: url(../../images/icon_twitter.svg);
  background-size: 20px 20px;
}
/* line 861, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .social-share .at-svc-facebook .at-icon-wrapper {
  opacity: 1;
  background-image: url(../../images/icon_facebook.svg);
  background-size: 20px 20px;
}
/* line 869, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .popular.et_pb_section {
  background-color: #F1F5FF;
  padding-top: 140px;
  padding-bottom: 140px;
}
/* line 873, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .popular.et_pb_section > .et_pb_row {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 704px;
  margin: 0 auto;
}
/* line 879, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .popular.et_pb_section h2 {
  padding-bottom: 37px;
}
/* line 882, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .popular.et_pb_section .popular-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  /* line 882, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .popular.et_pb_section .popular-post {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/* line 888, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .popular.et_pb_section .popular-post h3 {
  padding-right: 32px;
  padding-bottom: 0;
  width: 66.7%;
}
@media screen and (max-width: 767px) {
  /* line 888, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .popular.et_pb_section .popular-post h3 {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding-right: 0;
    padding-top: 32px;
  }
}
/* line 899, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .popular.et_pb_section .popular-post .img-wrapper {
  width: 33.3%;
  height: 133px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  /* line 899, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .popular.et_pb_section .popular-post .img-wrapper {
    width: 100%;
  }
}
/* line 909, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .popular.et_pb_section .popular-post:hover {
  text-decoration: none !important;
}
/* line 912, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .popular.et_pb_section .popular-post:not(:last-child) {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #BDBDBD;
}
@media screen and (max-width: 980px) {
  /* line 920, ../../src/styles/_intelligence.scss */
  .et-db #et-boc .et-l .intelligence-cta-wrapper {
    width: 100% !important;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-order: 3;
    -ms-flex-order: 3;
    order: 3;
    text-align: center;
  }
}
/* line 928, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .intelligence-sidebar-cta {
  background-color: #F1F0ED;
  padding: 40px 28px;
}
/* line 931, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .intelligence-sidebar-cta p {
  font-size: 22px;
  color: #333333;
  font-family: 'BatonTurbo', sans-serif;
  padding-bottom: 15px;
}
/* line 937, ../../src/styles/_intelligence.scss */
.et-db #et-boc .et-l .intelligence-sidebar-cta a.btn {
  display: inline-block;
  font-size: 14px;
  padding: 12px 15px !important;
}

/* line 947, ../../src/styles/_intelligence.scss */
.et-db.logged-in #et-boc .et-l .progress-bar.et_pb_section {
  top: 106px;
}

/* line 951, ../../src/styles/_intelligence.scss */
.et-db:not(.logged-in) #et-boc .et-l .progress-bar.et_pb_section {
  top: 75px;
}

@keyframes scrolldownfirst {
  0% {
    height: 0;
  }
  50% {
    height: 51px;
  }
  100% {
    height: 51px;
  }
}
@keyframes scrolldownsecond {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  80% {
    height: 51px;
  }
  100% {
    height: 51px;
  }
}
/* line 33, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.single-hero > .et_pb_row:before,
.single-work.et-db #et-boc .et-l .et_pb_section.single-hero + .et_pb_section:before {
  content: "";
  background: white;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  bottom: 0;
  visibility: visible;
  width: 1px;
  height: 0;
  z-index: 1;
  animation: scrolldownfirst 2s linear infinite;
}
/* line 48, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.single-hero + .et_pb_section:before {
  top: 0;
  bottom: unset;
  background: #000;
  transform: translate(-50%, 0);
  animation: scrolldownsecond 2s linear infinite;
}
/* line 56, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.single-hero {
  min-height: 80vh;
  padding-top: 51px !important;
  padding-bottom: 51px !important;
}
/* line 60, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.single-hero:after {
  content: "";
  display: block;
  background: linear-gradient(360deg, #000000 16.56%, transparent 109.67%);
  background-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}
/* line 71, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.single-hero .et_pb_row {
  padding-bottom: 135px !important;
}
/* line 73, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.single-hero .et_pb_row:after {
  content: "Read on";
  font-family: 'Tiempos', Georgia, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  color: #E0E0E0;
  line-height: 1.3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  visibility: visible;
  width: auto;
  height: auto;
  z-index: 1;
}
/* line 89, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.single-hero .et_pb_row > .et_pb_column {
  left: 50%;
  transform: translateX(-50%);
}
/* line 94, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.single-hero + .et_pb_section {
  padding-top: 100px;
  padding-bottom: 50px;
}
/* line 99, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.intro {
  padding-bottom: 0;
}
/* line 101, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.intro .et_pb_row {
  padding-top: 0;
  padding-bottom: 0;
}
/* line 105, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .et_pb_section.intro .et_pb_module {
  margin: 0 auto !important;
  max-width: 890px;
}
/* line 110, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l ul.logos {
  margin-bottom: 40px;
  margin-left: -25px;
}
@media screen and (min-width: 768px) {
  /* line 110, ../../src/styles/_work.scss */
  .single-work.et-db #et-boc .et-l ul.logos {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
/* line 118, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l ul.logos li {
  margin: 25px;
}
/* line 121, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l ul.logos img {
  max-height: 52px;
}
/* line 126, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .et_pb_row {
  max-width: 890px;
}
@media screen and (min-width: 768px) {
  /* line 129, ../../src/styles/_work.scss */
  .single-work.et-db #et-boc .et-l .post-content .et_pb_row:not(:last-child):before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #000;
    position: absolute;
    right: 50%;
  }
}
/* line 139, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .et_pb_row:nth-last-child(2) {
  padding-bottom: 60px !important;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  /* line 145, ../../src/styles/_work.scss */
  .single-work.et-db #et-boc .et-l .post-content .et_pb_row:nth-child(odd) .et_pb_column:first-child .et_pb_module {
    padding-right: 64px;
  }
}
/* line 153, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .et_pb_row:nth-child(even) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
/* line 156, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .et_pb_row:nth-child(even) .et_pb_column:first-child {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-right: 0 !important;
  margin-left: 64px !important;
}
@media screen and (max-width: 767px) {
  /* line 156, ../../src/styles/_work.scss */
  .single-work.et-db #et-boc .et-l .post-content .et_pb_row:nth-child(even) .et_pb_column:first-child {
    margin-left: 0 !important;
  }
}
/* line 164, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .et_pb_row:nth-child(even) .et_pb_column:nth-child(2) {
  margin-left: 0 !important;
}
@media screen and (max-width: 767px) {
  /* line 164, ../../src/styles/_work.scss */
  .single-work.et-db #et-boc .et-l .post-content .et_pb_row:nth-child(even) .et_pb_column:nth-child(2) {
    display: none;
  }
}
/* line 172, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .et_pb_row h2.et_pb_module_header {
  padding-top: 10px !important;
  padding-bottom: 15px;
}
/* line 178, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .work-section.et_pb_column.work_findings {
  width: 100% !important;
  margin: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
/* line 183, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .work-section.et_pb_column.work_findings:first-child {
  width: 100%;
  margin: 0 !important;
}
/* line 187, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .work-section.et_pb_column.work_findings + .et-last-child {
  display: none !important;
}
/* line 190, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .work-section.et_pb_column.work_findings img {
  margin: 0 auto 25px !important;
  max-width: 286px;
}
/* line 194, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .work-section.et_pb_column.work_findings .et_pb_module {
  max-width: 704px;
  text-align: center;
}
/* line 200, ../../src/styles/_work.scss */
.single-work.et-db #et-boc .et-l .post-content .work-section.et_pb_column .et_pb_module {
  max-width: 336px;
}

/* line 208, ../../src/styles/_work.scss */
.et_pb_section.cta-panel.work h2.et_pb_module_header {
  font-size: 54px !important;
  padding-bottom: 0 !important;
}
/* line 212, ../../src/styles/_work.scss */
.et_pb_section.cta-panel.work .et_pb_button_module_wrapper {
  width: auto;
}
