/*! 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;
}

/*******************************
  1. Commonly Used (Extends)
  2. Media Queries
*******************************/
/*******************************
  1. COMMONLY USED (EXTENDS)
*******************************/
/* line 16, ../../src/styles/_mixins.scss */
.testimonials .testimonial-source, .hbspt-form .inputs-list, ul.progress, .profile-cards, nav > ul, .circle-page .publisher-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 24, ../../src/styles/_mixins.scss */
.testimonials .testimonial-source li, .hbspt-form .inputs-list li, ul.progress li, .profile-cards li, nav > ul li {
  display: inline-block;
}
/* line 26, ../../src/styles/_mixins.scss */
.testimonials .testimonial-source li:before, .hbspt-form .inputs-list li:before, ul.progress li:before, .profile-cards li:before, nav > ul li:before {
  display: none;
}

/* line 32, ../../src/styles/_mixins.scss */
.logo, ul.progress li {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top left;
}

/*******************************
  2. MEDIA QUERIES
*******************************/
/********************************
  1. Reused Classes
  2. Components
  3. Default Page
  4. Circle Pages
  5. Hubspot Chatbot
********************************/
/* line 8, ../../src/styles/_universal.scss */
* {
  box-sizing: border-box;
}

/* line 12, ../../src/styles/_universal.scss */
body,
html {
  overflow-x: hidden;
}

/* line 17, ../../src/styles/_universal.scss */
body {
  color: #637381;
  font-family: 'Roboto', Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

/* line 25, ../../src/styles/_universal.scss */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  /* line 25, ../../src/styles/_universal.scss */
  .container {
    padding: 50px 20px;
  }
}
/* line 33, ../../src/styles/_universal.scss */
.container > * {
  z-index: 5;
  position: relative;
}

/* line 39, ../../src/styles/_universal.scss */
h1,
h2 {
  color: #040515;
  font-weight: 400;
}

/* line 45, ../../src/styles/_universal.scss */
h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 20px;
}
@media screen and (max-width: 992px) {
  /* line 45, ../../src/styles/_universal.scss */
  h1 {
    font-size: 36px;
  }
}

/* line 54, ../../src/styles/_universal.scss */
h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 20px;
}
@media screen and (max-width: 992px) {
  /* line 54, ../../src/styles/_universal.scss */
  h2 {
    font-size: 28px;
  }
}

/* line 63, ../../src/styles/_universal.scss */
ol {
  padding-left: 30px;
}
/* line 65, ../../src/styles/_universal.scss */
ol li {
  padding-left: 5px;
}

/* line 70, ../../src/styles/_universal.scss */
.white {
  color: #fff !important;
}
/* line 72, ../../src/styles/_universal.scss */
.white > * {
  color: #fff !important;
}

/* line 77, ../../src/styles/_universal.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 82, ../../src/styles/_universal.scss */
.divider {
  border-width: 1px 0 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.13);
  padding: 0;
}

/* line 90, ../../src/styles/_universal.scss */
main ul {
  padding-left: 30px;
}
/* line 92, ../../src/styles/_universal.scss */
main ul li {
  padding-left: 5px;
}
/* line 95, ../../src/styles/_universal.scss */
main ul.arrow-list {
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  /* line 95, ../../src/styles/_universal.scss */
  main ul.arrow-list {
    text-align: left;
  }
}
/* line 101, ../../src/styles/_universal.scss */
main ul.arrow-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991px) {
  /* line 101, ../../src/styles/_universal.scss */
  main ul.arrow-list li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
/* line 106, ../../src/styles/_universal.scss */
main ul.arrow-list li:not(:first-child) {
  margin-top: 12px;
}
/* line 109, ../../src/styles/_universal.scss */
main ul.arrow-list li span {
  padding-left: 22px;
  position: relative;
}
/* line 112, ../../src/styles/_universal.scss */
main ul.arrow-list li span:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0.6em;
  left: 0;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/****************************
  1. Reused Classes
****************************/
/* line 135, ../../src/styles/_universal.scss */
.flex-wrapper {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  /* line 139, ../../src/styles/_universal.scss */
  .flex-wrapper.two-col {
    display: block;
    text-align: center;
  }
}
/* line 144, ../../src/styles/_universal.scss */
.flex-wrapper.two-col > * {
  width: 50%;
}
/* line 146, ../../src/styles/_universal.scss */
.flex-wrapper.two-col > *:first-of-type {
  padding-right: 130px;
}
@media screen and (max-width: 991px) {
  /* line 144, ../../src/styles/_universal.scss */
  .flex-wrapper.two-col > * {
    width: 100%;
  }
  /* line 151, ../../src/styles/_universal.scss */
  .flex-wrapper.two-col > *:first-of-type {
    padding-right: 0;
  }
}
/* line 157, ../../src/styles/_universal.scss */
.flex-wrapper.two-col.reversed > *:first-of-type {
  order: 2;
  padding-right: 0;
}
@media screen and (min-width: 992px) {
  /* line 157, ../../src/styles/_universal.scss */
  .flex-wrapper.two-col.reversed > *:first-of-type {
    padding-left: 130px;
  }
}
/* line 166, ../../src/styles/_universal.scss */
.flex-wrapper.three-col {
  text-align: left;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  /* line 166, ../../src/styles/_universal.scss */
  .flex-wrapper.three-col {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/* line 173, ../../src/styles/_universal.scss */
.flex-wrapper.three-col > * {
  width: 33.3%;
}
@media screen and (max-width: 767px) {
  /* line 173, ../../src/styles/_universal.scss */
  .flex-wrapper.three-col > * {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  /* line 179, ../../src/styles/_universal.scss */
  .flex-wrapper.three-col li {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 183, ../../src/styles/_universal.scss */
  .flex-wrapper.three-col li:first-child {
    padding-left: 0;
  }
  /* line 186, ../../src/styles/_universal.scss */
  .flex-wrapper.three-col li:last-child {
    padding-right: 0;
  }
}
/* line 191, ../../src/styles/_universal.scss */
.flex-wrapper.three-col .flex-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  /* line 191, ../../src/styles/_universal.scss */
  .flex-wrapper.three-col .flex-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  /* line 196, ../../src/styles/_universal.scss */
  .flex-wrapper.three-col .flex-wrapper:not(:first-of-type) {
    margin-top: 40px;
  }
}
/* line 200, ../../src/styles/_universal.scss */
.flex-wrapper.three-col .flex-wrapper .icon {
  top: 0;
  transform: none;
}

/* line 208, ../../src/styles/_universal.scss */
.blue-bg {
  background-color: #4B36F8;
}
/* line 211, ../../src/styles/_universal.scss */
.blue-bg .publisher-list a {
  color: #fff;
  text-decoration: none;
}
/* line 214, ../../src/styles/_universal.scss */
.blue-bg .publisher-list a:hover {
  text-decoration: underline;
}

/* line 221, ../../src/styles/_universal.scss */
.logo {
  width: 100px;
  height: 45px;
  background-size: 100px 45px;
  background-image: url(../../images/logo-carbon.svg);
}

/* line 229, ../../src/styles/_universal.scss */
.with-oval {
  position: relative;
}
/* line 231, ../../src/styles/_universal.scss */
.with-oval:before {
  content: "";
  display: block;
  background-image: url(../../images/oval-purple.svg);
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  height: 110px;
  z-index: -1;
  margin: 0 auto;
  transform: translateY(-77.43%);
}
/* line 247, ../../src/styles/_universal.scss */
.with-oval.oval-top:before {
  top: 0;
}
/* line 252, ../../src/styles/_universal.scss */
.with-oval.oval-bottom:before {
  bottom: 0;
  height: 50px;
  transform: rotate(180deg) translateY(-77.43%);
}
/* line 257, ../../src/styles/_universal.scss */
.with-oval.oval-bottom + * {
  padding-top: 105px;
}

/* line 263, ../../src/styles/_universal.scss */
.btn,
input[type="submit"] {
  background-color: #FE4C54;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 10px 30px;
  border-radius: 24px;
  display: inline-block;
  text-decoration: none;
  margin-top: 40px;
  transition: background-color 250ms;
}
/* line 275, ../../src/styles/_universal.scss */
.btn:hover,
input[type="submit"]:hover {
  text-decoration: none;
  background: #fe1924;
}
/* line 279, ../../src/styles/_universal.scss */
.btn:focus,
input[type="submit"]:focus {
  outline: none;
}
/* line 282, ../../src/styles/_universal.scss */
.btn.btn-green,
input[type="submit"].btn-green {
  padding: 3px 7px;
  font-size: 12px;
  line-height: 1.17;
  text-transform: uppercase;
  background-color: #3FC1AF;
}

/* line 291, ../../src/styles/_universal.scss */
.carbon-example {
  padding: 8px;
  background-color: #fff;
  width: 295px;
  box-sizing: border-box;
  border-radius: 6px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
}
/* line 301, ../../src/styles/_universal.scss */
.carbon-example img {
  margin-right: 9px;
  max-width: 125px;
}
/* line 305, ../../src/styles/_universal.scss */
.carbon-example .inner-wrapper {
  text-align: left;
}
/* line 307, ../../src/styles/_universal.scss */
.carbon-example .inner-wrapper p {
  font-size: 12px;
  line-height: 1.33;
  margin: 8px 0;
}
/* line 311, ../../src/styles/_universal.scss */
.carbon-example .inner-wrapper p.fine-print {
  font-size: 8px;
  color: #C5CDD0;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 500;
}

/* line 322, ../../src/styles/_universal.scss */
.icon-cards {
  padding: 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  /* line 322, ../../src/styles/_universal.scss */
  .icon-cards {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
/* line 327, ../../src/styles/_universal.scss */
.icon-cards li {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  min-height: 64px;
}
/* line 329, ../../src/styles/_universal.scss */
.icon-cards li:not(:first-child) {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  /* line 327, ../../src/styles/_universal.scss */
  .icon-cards li {
    padding-left: 96px !important;
  }
}
@media screen and (max-width: 991px) {
  /* line 327, ../../src/styles/_universal.scss */
  .icon-cards li {
    padding: 85px 12px 0;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  /* line 327, ../../src/styles/_universal.scss */
  .icon-cards li {
    width: 33.3%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  /* line 327, ../../src/styles/_universal.scss */
  .icon-cards li {
    padding-top: 110px;
  }
}
/* line 350, ../../src/styles/_universal.scss */
.icon-cards li .icon {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid transparent;
  width: 64px;
  height: 64px;
  background-color: #FFF5F5;
  border-radius: 50%;
  transition: border-color 250ms;
}
@media screen and (max-width: 991px) {
  /* line 350, ../../src/styles/_universal.scss */
  .icon-cards li .icon {
    top: 0;
    left: 50%;
    transform: translateX(-50%) !important;
  }
}
@media screen and (max-width: 767px) {
  /* line 350, ../../src/styles/_universal.scss */
  .icon-cards li .icon {
    width: 84px;
    height: 84px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* line 375, ../../src/styles/_universal.scss */
.icon-cards .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: auto;
}
/* line 384, ../../src/styles/_universal.scss */
.icon-cards > span {
  vertical-align: middle;
}

/****************************
  2. Components
     2.1 Hero
     2.2 Publishers
     2.3 CTA
     2.4 Profile cards
****************************/
/****************************
  2.1 Hero
****************************/
/* line 399, ../../src/styles/_universal.scss */
.carbon-bank {
  display: none;
}

@media screen and (max-width: 767px) {
  /* line 404, ../../src/styles/_universal.scss */
  body:not(.home):not(.default-page) .hero {
    padding-top: 70px;
  }
}
@media screen and (min-width: 768px) {
  /* line 404, ../../src/styles/_universal.scss */
  body:not(.home):not(.default-page) .hero {
    padding-top: 70px;
    background-image: url(../../images/hero-blob.svg);
    background-size: 60% 100%;
    background-position: right top;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1224px) {
  /* line 404, ../../src/styles/_universal.scss */
  body:not(.home):not(.default-page) .hero {
    padding-top: 0px;
  }
}
@media screen and (min-width: 1300px) {
  /* line 404, ../../src/styles/_universal.scss */
  body:not(.home):not(.default-page) .hero {
    background-size: 65% 80%;
  }
}
@media screen and (min-width: 2000px) {
  /* line 404, ../../src/styles/_universal.scss */
  body:not(.home):not(.default-page) .hero {
    background-size: 75% 80%;
  }
}
/* line 424, ../../src/styles/_universal.scss */
body:not(.home):not(.default-page) .hero img {
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  /* line 427, ../../src/styles/_universal.scss */
  body:not(.home):not(.default-page) .hero .flex-item:nth-of-type(2) {
    margin-top: 40px;
    background-image: url(../../images/hero-blob.svg);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 768px) {
  /* line 438, ../../src/styles/_universal.scss */
  body:not(.home):not(.default-page) .hero > .flex-wrapper.two-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  /* line 440, ../../src/styles/_universal.scss */
  body:not(.home):not(.default-page) .hero > .flex-wrapper.two-col .flex-item {
    text-align: left;
    width: 50%;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  /* line 440, ../../src/styles/_universal.scss */
  body:not(.home):not(.default-page) .hero > .flex-wrapper.two-col .flex-item {
    margin-top: 60px;
    text-align: center;
    width: 100%;
  }
}

/* line 459, ../../src/styles/_universal.scss */
.home .hero > .container {
  padding-top: 70px;
}

/* line 465, ../../src/styles/_universal.scss */
.hero {
  background-color: #F7F7FD;
}
/* line 467, ../../src/styles/_universal.scss */
.hero > .container {
  padding-bottom: 0;
  padding-top: 0;
}
/* line 471, ../../src/styles/_universal.scss */
.hero p {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

@media screen and (min-width: 768px) {
  /* line 478, ../../src/styles/_universal.scss */
  .hero-carbon-container {
    margin-top: -140px;
    z-index: 1;
  }
}
@media screen and (min-width: 925px) and (max-width: 991px) {
  /* line 478, ../../src/styles/_universal.scss */
  .hero-carbon-container {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  /* line 478, ../../src/styles/_universal.scss */
  .hero-carbon-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  /* line 478, ../../src/styles/_universal.scss */
  .hero-carbon-container {
    margin-top: 60px;
  }
}
/* line 496, ../../src/styles/_universal.scss */
.hero-carbon-container > img {
  max-width: none;
}
@media screen and (min-width: 768px) {
  /* line 496, ../../src/styles/_universal.scss */
  .hero-carbon-container > img {
    margin-left: -17px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  /* line 496, ../../src/styles/_universal.scss */
  .hero-carbon-container > img {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  /* line 496, ../../src/styles/_universal.scss */
  .hero-carbon-container > img {
    position: absolute;
    left: 48%;
    bottom: -58%;
    width: 286px;
  }
}
/* line 511, ../../src/styles/_universal.scss */
.hero-carbon-container .carbon-wrapper {
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  /* line 511, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40px;
    right: -10px;
  }
}
/* line 521, ../../src/styles/_universal.scss */
.hero-carbon-container .flex-wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 991px) {
  /* line 521, ../../src/styles/_universal.scss */
  .hero-carbon-container .flex-wrapper {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  /* line 528, ../../src/styles/_universal.scss */
  .hero-carbon-container .flex-wrapper.two-col > *:first-of-type {
    padding-right: 109px;
  }
}
@media screen and (max-width: 991px) {
  /* line 528, ../../src/styles/_universal.scss */
  .hero-carbon-container .flex-wrapper.two-col > *:first-of-type {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  /* line 539, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example {
    position: absolute;
  }
}
@media screen and (min-width: 992px) {
  /* line 543, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(1) {
    top: 175px;
    left: -40px;
  }
}
@media screen and (min-width: 850px) and (max-width: 991px) {
  /* line 543, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(1) {
    top: 245px;
    left: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 849px) {
  /* line 543, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(1) {
    top: 180px;
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  /* line 543, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(1) {
    margin: 0 auto;
  }
}
/* line 560, ../../src/styles/_universal.scss */
.hero-carbon-container .carbon-example:nth-of-type(2) {
  top: 275px;
  right: -10px;
}
@media screen and (min-width: 992px) and (max-width: 1100px) {
  /* line 560, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(2) {
    top: 305px;
  }
}
@media screen and (min-width: 850px) and (max-width: 991px) {
  /* line 560, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(2) {
    top: 360px;
    right: 110px;
  }
}
@media screen and (min-width: 768px) and (max-width: 849px) {
  /* line 560, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(2) {
    top: 300px;
    right: 70px;
  }
}
@media screen and (max-width: 767px) {
  /* line 560, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(2) {
    display: none;
  }
}
/* line 578, ../../src/styles/_universal.scss */
.hero-carbon-container .carbon-example:nth-of-type(3) {
  bottom: 77px;
  left: 0;
}
@media screen and (min-width: 992px) and (max-width: 1100px) {
  /* line 578, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(3) {
    bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  /* line 578, ../../src/styles/_universal.scss */
  .hero-carbon-container .carbon-example:nth-of-type(3) {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  /* line 595, ../../src/styles/_universal.scss */
  .overview > .flex-wrapper .flex-item:first-of-type {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  /* line 601, ../../src/styles/_universal.scss */
  .overview > .flex-wrapper .flex-item {
    max-width: 100%;
  }
}
/* line 606, ../../src/styles/_universal.scss */
.overview.centered {
  text-align: center;
}

/****************************
  2.2 Publishers
****************************/
/* line 614, ../../src/styles/_universal.scss */
.title-wrapper {
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  /* line 614, ../../src/styles/_universal.scss */
  .title-wrapper {
    max-width: 60%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  /* line 614, ../../src/styles/_universal.scss */
  .title-wrapper {
    max-width: 80%;
  }
}

/* line 625, ../../src/styles/_universal.scss */
.publishers > .container:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../../images/circles-small-group.svg);
  background-position: top left;
  background-repeat: no-repeat;
  left: -205px;
  top: 55%;
  z-index: 10;
  width: 312px;
  height: 385px;
  background-color: transparent;
  z-index: -1;
}
/* line 641, ../../src/styles/_universal.scss */
.publishers h2,
.publishers p {
  text-align: center;
}

/* line 647, ../../src/styles/_universal.scss */
.listings {
  position: relative;
  background-color: #4B36F8;
  margin-top: 140px;
}
/* line 651, ../../src/styles/_universal.scss */
.listings:after {
  content: "";
  display: block;
  background: -webkit-linear-gradient(rgba(75, 54, 248, 0) 0%, rgba(75, 54, 248, 0.15), rgba(75, 54, 248, 0.35), #4B36F8 100%);
  background: -o-linear-gradient(rgba(75, 54, 248, 0) 0%, rgba(75, 54, 248, 0.15), rgba(75, 54, 248, 0.35), #4B36F8 100%);
  background: linear-gradient(rgba(75, 54, 248, 0) 0%, rgba(75, 54, 248, 0.15), rgba(75, 54, 248, 0.35), #4B36F8 100%);
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 125px;
  z-index: 10;
}
/* line 664, ../../src/styles/_universal.scss */
.listings .container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  padding-bottom: 85px;
  margin-top: -180px;
}
/* line 671, ../../src/styles/_universal.scss */
.listings .listing {
  padding-left: 27px;
  width: 25%;
  box-sizing: border-box;
  text-decoration: none;
  color: #637381;
}
@media screen and (min-width: 992px) {
  /* line 678, ../../src/styles/_universal.scss */
  .listings .listing:nth-of-type(even) {
    margin-top: 57px;
  }
  /* line 681, ../../src/styles/_universal.scss */
  .listings .listing:nth-of-type(odd) {
    margin-top: -57px;
  }
}
@media screen and (min-width: 800px) and (max-width: 991px) {
  /* line 671, ../../src/styles/_universal.scss */
  .listings .listing {
    width: 33.3%;
  }
  /* line 687, ../../src/styles/_universal.scss */
  .listings .listing:nth-of-type(3n+2) {
    margin-top: 57px;
  }
}
@media screen and (max-width: 799px) {
  /* line 671, ../../src/styles/_universal.scss */
  .listings .listing {
    width: 50%;
  }
  /* line 693, ../../src/styles/_universal.scss */
  .listings .listing:nth-of-type(even) {
    margin-top: 57px;
    padding-left: 12px;
  }
  /* line 697, ../../src/styles/_universal.scss */
  .listings .listing:nth-of-type(odd) {
    padding-left: 0;
    padding-right: 12px;
  }
}
/* line 702, ../../src/styles/_universal.scss */
.listings .listing .inner-wrapper {
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  padding: 50px 16px 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  /* line 702, ../../src/styles/_universal.scss */
  .listings .listing .inner-wrapper {
    padding: 40px 15px 24px;
  }
}
/* line 712, ../../src/styles/_universal.scss */
.listings .listing .inner-wrapper:hover {
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.2);
}
/* line 715, ../../src/styles/_universal.scss */
.listings .listing .inner-wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  border-radius: 6px 6px 0 0;
  background-color: #E4E4E4;
  position: absolute;
  top: 0;
  left: 0;
}
/* line 726, ../../src/styles/_universal.scss */
.listings .listing .inner-wrapper:after {
  content: "";
  display: block;
  width: 26px;
  height: 6px;
  background-image: url(../../images/icon-browser-buttons.svg);
  background-size: 26px 6px;
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  left: 9px;
  top: 5px;
}
/* line 739, ../../src/styles/_universal.scss */
.listings .listing .inner-wrapper p {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  /* line 739, ../../src/styles/_universal.scss */
  .listings .listing .inner-wrapper p {
    font-size: 14px;
  }
}

/* line 752, ../../src/styles/_universal.scss */
.img-wrapper {
  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;
  margin-bottom: 20px;
  min-height: 100px;
}
/* line 758, ../../src/styles/_universal.scss */
.img-wrapper img {
  border-radius: 6px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 108px;
  max-width: 60%;
}

/* line 770, ../../src/styles/_universal.scss */
.home .testimonials .container {
  padding-top: 0;
}

/* line 776, ../../src/styles/_universal.scss */
.testimonials {
  text-align: center;
  position: relative;
  z-index: 10;
}
/* line 781, ../../src/styles/_universal.scss */
.testimonials .title-wrapper p {
  margin: 0;
}
/* line 784, ../../src/styles/_universal.scss */
.testimonials .title-wrapper > img {
  margin: 24px 0;
}
/* line 788, ../../src/styles/_universal.scss */
.testimonials .testimonial {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
/* line 790, ../../src/styles/_universal.scss */
.testimonials .testimonial .single-testimonial {
  width: 100%;
}
/* line 792, ../../src/styles/_universal.scss */
.testimonials .testimonial .single-testimonial:not(.active) {
  display: none;
}
/* line 796, ../../src/styles/_universal.scss */
.testimonials .testimonial p {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.3;
}
/* line 800, ../../src/styles/_universal.scss */
.testimonials .testimonial p.byline {
  opacity: 0.8;
  font-size: 18px;
  line-height: 1.2;
}
/* line 804, ../../src/styles/_universal.scss */
.testimonials .testimonial p.byline span {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  /* line 810, ../../src/styles/_universal.scss */
  .testimonials .testimonial-source {
    margin-bottom: 65px;
  }
}
/* line 815, ../../src/styles/_universal.scss */
.testimonials .testimonial-source li {
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.75;
  transition: all 250ms;
  margin: 50px 32px 0;
}
@media screen and (max-width: 767px) {
  /* line 815, ../../src/styles/_universal.scss */
  .testimonials .testimonial-source li {
    margin-right: 10px;
    margin-left: 10px;
  }
}
/* line 827, ../../src/styles/_universal.scss */
.testimonials .testimonial-source li img {
  border-radius: 50%;
  display: block;
}
/* line 831, ../../src/styles/_universal.scss */
.testimonials .testimonial-source li.active, .testimonials .testimonial-source li:hover {
  border-color: #fff;
  opacity: 1;
}

/****************************
  2.3 CTA
****************************/
/* line 845, ../../src/styles/_universal.scss */
.home fieldset label {
  display: none;
}

/* line 851, ../../src/styles/_universal.scss */
#cta {
  position: relative;
}
/* line 853, ../../src/styles/_universal.scss */
#cta:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../../images/circles-small-group.svg);
  background-size: 264px 466px;
  background-position: top left;
  background-repeat: no-repeat;
  transform: rotate(130deg);
  width: 264px;
  height: 466px;
  top: -190px;
  right: -80px;
  left: auto;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  /* line 869, ../../src/styles/_universal.scss */
  #cta .flex-wrapper.two-col {
    text-align: center;
  }
}
/* line 873, ../../src/styles/_universal.scss */
#cta .flex-wrapper.two-col > *:not(:first-of-type) {
  width: 50%;
}
@media screen and (max-width: 991px) {
  /* line 873, ../../src/styles/_universal.scss */
  #cta .flex-wrapper.two-col > *:not(:first-of-type) {
    width: 100%;
    margin-top: 70px;
  }
}

/* line 882, ../../src/styles/_universal.scss */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #637381;
  opacity: 0.5;
}

/* line 886, ../../src/styles/_universal.scss */
::-moz-placeholder {
  /* Firefox 19+ */
  color: #637381;
  opacity: 0.5;
}

/* line 890, ../../src/styles/_universal.scss */
:-ms-input-placeholder {
  /* IE 10+ */
  color: #637381;
  opacity: 0.5;
}

/* line 894, ../../src/styles/_universal.scss */
:-moz-placeholder {
  /* Firefox 18- */
  color: #637381;
  opacity: 0.5;
}

/* line 898, ../../src/styles/_universal.scss */
.hbspt-form {
  padding: 80px 60px;
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
}
/* line 904, ../../src/styles/_universal.scss */
.hbspt-form:not(.single-page-form) {
  min-height: 478px;
  position: relative;
  padding-bottom: 116px;
}
@media screen and (min-width: 992px) and (max-width: 1100px) {
  /* line 904, ../../src/styles/_universal.scss */
  .hbspt-form:not(.single-page-form) {
    min-height: 510px;
  }
}
/* line 911, ../../src/styles/_universal.scss */
.hbspt-form:not(.single-page-form) .hs_submit {
  position: absolute;
  bottom: 48px;
  left: 56px;
  right: 56px;
}
@media screen and (max-width: 767px) {
  /* line 911, ../../src/styles/_universal.scss */
  .hbspt-form:not(.single-page-form) .hs_submit {
    left: 25px;
    right: 25px;
  }
}
@media screen and (max-width: 767px) {
  /* line 898, ../../src/styles/_universal.scss */
  .hbspt-form {
    padding: 48px 25px;
  }
}
/* line 925, ../../src/styles/_universal.scss */
.hbspt-form .hs-form-required {
  display: none;
}
/* line 928, ../../src/styles/_universal.scss */
.hbspt-form fieldset {
  max-width: 100% !important;
}
/* line 930, ../../src/styles/_universal.scss */
.hbspt-form fieldset .input {
  width: 100%;
  margin-right: 0 !important;
}
@media screen and (min-width: 768px) {
  /* line 937, ../../src/styles/_universal.scss */
  .hbspt-form fieldset.form-columns-2 > .hs-form-field:first-of-type {
    padding-right: 12px;
  }
  /* line 940, ../../src/styles/_universal.scss */
  .hbspt-form fieldset.form-columns-2 > .hs-form-field:last-of-type {
    padding-left: 12px;
  }
}
/* line 946, ../../src/styles/_universal.scss */
.hbspt-form fieldset p {
  margin: 0 0 30px;
  display: block;
  font-size: 24px;
  color: #27282F;
  line-height: 1.17;
  text-align: left;
}
@media screen and (max-width: 991px) {
  /* line 946, ../../src/styles/_universal.scss */
  .hbspt-form fieldset p {
    text-align: center;
  }
}
/* line 957, ../../src/styles/_universal.scss */
.hbspt-form fieldset em {
  display: block;
  margin-top: -20px;
}
/* line 962, ../../src/styles/_universal.scss */
.hbspt-form .hs_product input.hs-input {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #CDCDCD;
  padding: 0 0 19px;
  font-size: 18px;
  border-radius: 0;
}
/* line 971, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list {
  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;
}
/* line 975, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox {
  margin-top: 15px;
  text-align: center;
  cursor: pointer;
  width: 33.3%;
  max-width: 112px;
}
@media screen and (max-width: 991px) {
  /* line 975, ../../src/styles/_universal.scss */
  .hbspt-form .inputs-list .hs-form-checkbox {
    max-width: 160px;
  }
}
@media screen and (max-width: 767px) {
  /* line 975, ../../src/styles/_universal.scss */
  .hbspt-form .inputs-list .hs-form-checkbox {
    display: block;
    margin: 40px 0;
  }
}
/* line 988, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox .hs-input {
  opacity: 0;
  position: absolute;
}
/* line 992, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox label {
  cursor: pointer;
  display: block;
}
/* line 995, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox label span {
  display: block;
}
/* line 997, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox label span:before {
  content: "";
  display: block;
  border: 1px solid #E0E1E3;
  border-radius: 4px;
  height: 112px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: border-color 250ms, background-image 250ms;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  /* line 997, ../../src/styles/_universal.scss */
  .hbspt-form .inputs-list .hs-form-checkbox label span:before {
    margin: 0 auto 20px;
  }
}
/* line 1013, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox:first-child {
  padding-left: 0;
}
/* line 1016, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox:last-child {
  padding-right: 0;
}
/* line 1022, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox:not(.no-hover).icon-designers:hover span:before {
  background-image: url("../../images/icon-mug-red@2x.png");
}
/* line 1029, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox:not(.no-hover).icon-developers:hover span:before {
  background-image: url("../../images/icon-dev-red@2x.png");
}
/* line 1036, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox:not(.no-hover).icon-business:hover span:before {
  background-image: url("../../images/icon-presentation-red@2x.png");
}
/* line 1042, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox:not(.no-hover):hover span:before {
  border-color: #FE4C54;
}
/* line 1048, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox.icon-designers span:before {
  background-image: url("../../images/icon-mug@2x.png");
  background-size: 44px 56px;
}
/* line 1053, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox.icon-designers.checked span:before {
  background-image: url("../../images/icon-mug-red@2x.png");
}
/* line 1059, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox.icon-developers span:before {
  background-image: url("../../images/icon-dev@2x.png");
  background-size: 58px 56px;
}
/* line 1064, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox.icon-developers.checked span:before {
  background-image: url("../../images/icon-dev-red@2x.png");
}
/* line 1070, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox.icon-business span:before {
  background-image: url("../../images/icon-presentation@2x.png");
  background-size: 54px 56px;
}
/* line 1075, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox.icon-business.checked span:before {
  background-image: url("../../images/icon-presentation-red@2x.png");
}
/* line 1081, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox.checked span:before {
  border-color: #FE4C54;
}
/* line 1086, ../../src/styles/_universal.scss */
.hbspt-form .inputs-list .hs-form-checkbox label span {
  font-size: 14px;
  text-align: center;
  color: #637381;
}
/* line 1095, ../../src/styles/_universal.scss */
.hbspt-form input:not([type="submit"]),
.hbspt-form textarea {
  border: 1px solid #DFDEDE;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.31;
  color: #637381;
  -webkit-appearance: none;
}
/* line 1104, ../../src/styles/_universal.scss */
.hbspt-form input:not([type="submit"]):focus,
.hbspt-form textarea:focus {
  outline: none;
}
/* line 1107, ../../src/styles/_universal.scss */
.hbspt-form input:not([type="submit"]).hs-input,
.hbspt-form textarea.hs-input {
  width: 100% !important;
}
/* line 1111, ../../src/styles/_universal.scss */
.hbspt-form textarea {
  min-height: 136px;
  padding: 16px;
}
/* line 1116, ../../src/styles/_universal.scss */
.hbspt-form .hs_submit {
  margin-top: 20px;
}
/* line 1120, ../../src/styles/_universal.scss */
.hbspt-form .actions {
  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;
}
/* line 1125, ../../src/styles/_universal.scss */
.hbspt-form input[type="submit"] {
  border: none;
  display: none;
  margin-top: 0;
  line-height: 1.75;
}
/* line 1132, ../../src/styles/_universal.scss */
.hbspt-form .hs-customization {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
/* line 1138, ../../src/styles/_universal.scss */
.hbspt-form .submitted-message p {
  font-size: 24px;
  line-height: 1.17;
  color: #040515;
  margin: 0;
  text-align: center;
}
/* line 1145, ../../src/styles/_universal.scss */
.hbspt-form .submitted-message p:last-of-type:after {
  content: "";
  display: block;
  width: 301px;
  height: 220px;
  background-image: url(../../images/working.svg);
  background-position: top left;
  background-size: 301px 220px;
  background-repeat: no-repeat;
  margin: 40px auto 0;
}
/* line 1161, ../../src/styles/_universal.scss */
.hbspt-form .hs-fieldtype-radio .input > ul {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 1165, ../../src/styles/_universal.scss */
.hbspt-form .hs-fieldtype-radio .hs-form-radio {
  padding: 0;
  margin-top: 0;
  width: 47%;
  border: 2px solid #E0E1E3;
  border-radius: 4px;
}
/* line 1171, ../../src/styles/_universal.scss */
.hbspt-form .hs-fieldtype-radio .hs-form-radio:hover, .hbspt-form .hs-fieldtype-radio .hs-form-radio.checked {
  color: #FE4C54;
  border-color: #FE4C54;
}
/* line 1176, ../../src/styles/_universal.scss */
.hbspt-form .hs-fieldtype-radio .hs-form-radio:nth-child(odd) {
  margin: 3% 3% 3% 0;
}
/* line 1179, ../../src/styles/_universal.scss */
.hbspt-form .hs-fieldtype-radio .hs-form-radio:nth-child(even) {
  margin: 3% 0 3% 3%;
}
/* line 1182, ../../src/styles/_universal.scss */
.hbspt-form .hs-fieldtype-radio .hs-form-radio label.hs-form-radio-display {
  padding: 15px;
  text-align: center;
  font-size: 18px;
  display: block;
  transition: color 250ms, border-color 250ms;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
/* line 1191, ../../src/styles/_universal.scss */
.hbspt-form .hs-fieldtype-radio .hs-form-radio label.hs-form-radio-display input {
  display: none;
}
/* line 1197, ../../src/styles/_universal.scss */
.hbspt-form .hs-form-field {
  margin-bottom: 24px;
}
/* line 1202, ../../src/styles/_universal.scss */
.hbspt-form .hs-error-msgs li label {
  display: block;
  font-size: 75%;
  color: #FC1F2E;
}

/* line 1212, ../../src/styles/_universal.scss */
.single-page-form .hs-form-field {
  text-align: left;
}
/* line 1214, ../../src/styles/_universal.scss */
.single-page-form .hs-form-field:not(:first-of-type) {
  margin-top: 24px;
}
/* line 1218, ../../src/styles/_universal.scss */
.single-page-form input[type="submit"] {
  display: inline-block;
}

/* line 1223, ../../src/styles/_universal.scss */
.hs-customization {
  display: none;
}
/* line 1225, ../../src/styles/_universal.scss */
.hs-customization .btn {
  margin-top: 0;
}

/* line 1229, ../../src/styles/_universal.scss */
.back-link {
  font-size: 16px;
  line-height: 1.3;
  color: #FE4C54;
  text-decoration: none;
  font-weight: 700;
  margin-right: 25px;
}
/* line 1236, ../../src/styles/_universal.scss */
.back-link:hover {
  text-decoration: underline;
}

/* line 1240, ../../src/styles/_universal.scss */
.page-break {
  display: none;
}
/* line 1242, ../../src/styles/_universal.scss */
.page-break.show {
  display: block;
}
/* line 1247, ../../src/styles/_universal.scss */
.page-break:first-of-type.show ~ .hs_submit .back-link {
  display: none;
}
/* line 1254, ../../src/styles/_universal.scss */
.page-break.last.show ~ .hs_submit .btn-next {
  display: none;
}
/* line 1257, ../../src/styles/_universal.scss */
.page-break.last.show ~ .hs_submit input[type="submit"] {
  display: inline-block;
}

/* line 1263, ../../src/styles/_universal.scss */
ul.progress {
  display: inherit;
}
/* line 1266, ../../src/styles/_universal.scss */
ul.progress li {
  width: 16px;
  height: 2px;
  background-color: #E0E1E3;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 250ms;
  margin-right: 6px;
  margin-top: 0 !important;
}
/* line 1276, ../../src/styles/_universal.scss */
ul.progress li:first-child, ul.progress li.complete {
  background-color: #FE4C54;
}

/****************************
  2.4 Profile Cards
****************************/
/* line 1286, ../../src/styles/_universal.scss */
.profile-cards {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 991px) {
  /* line 1286, ../../src/styles/_universal.scss */
  .profile-cards {
    margin-top: 60px;
  }
}
/* line 1294, ../../src/styles/_universal.scss */
.profile-cards.half-cards li {
  width: 46%;
}
/* line 1298, ../../src/styles/_universal.scss */
.profile-cards li {
  width: 29%;
  text-align: center;
  padding: 20px 10px 5px;
  border: 1px solid #F2F2F2;
  border-radius: 6px;
  background-color: #FFFFFF;
  margin: 0 2% 4% !important;
}
@media screen and (max-width: 767px) {
  /* line 1298, ../../src/styles/_universal.scss */
  .profile-cards li {
    width: 46%;
  }
}
/* line 1309, ../../src/styles/_universal.scss */
.profile-cards li a {
  text-decoration: none;
  color: #637381;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 1315, ../../src/styles/_universal.scss */
.profile-cards li span:not(.img-wrapper) {
  display: block;
  margin: 20px -10px 0;
  padding: 0 10px;
  border-top: 1px solid #F2F2F2;
  padding-top: 4px;
  font-weight: 600;
}

/****************************
  3. Default Page
****************************/
/* line 1330, ../../src/styles/_universal.scss */
.default-page .hero {
  text-align: center;
}
/* line 1332, ../../src/styles/_universal.scss */
.default-page .hero .container {
  padding-top: 100px;
  padding-bottom: 35px;
}
/* line 1338, ../../src/styles/_universal.scss */
.default-page .main-container .container {
  padding-top: 40px;
}
@media screen and (min-width: 800px) {
  /* line 1342, ../../src/styles/_universal.scss */
  .default-page .faqs-container {
    width: 70%;
    margin: 0 auto;
  }
}
/* line 1347, ../../src/styles/_universal.scss */
.default-page .faqs-container .faq-single {
  padding: 23px 0;
}
/* line 1349, ../../src/styles/_universal.scss */
.default-page .faqs-container .faq-single:not(:last-of-type) {
  border-bottom: 1px solid #F2F2F2;
}
/* line 1352, ../../src/styles/_universal.scss */
.default-page .faqs-container .faq-single > *:last-child {
  margin-bottom: 0;
}
/* line 1357, ../../src/styles/_universal.scss */
.default-page p {
  margin: 25px 0;
}
/* line 1361, ../../src/styles/_universal.scss */
.default-page:not(.circle-page) footer {
  background-color: #fff;
}
/* line 1365, ../../src/styles/_universal.scss */
.default-page footer {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  /* line 1365, ../../src/styles/_universal.scss */
  .default-page footer {
    margin-top: 90px;
  }
}

/****************************
  4. CIRCLE PAGES
****************************/
/* line 1378, ../../src/styles/_universal.scss */
.circle-page .main-container .hero-carbon-container {
  text-align: center;
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  /* line 1378, ../../src/styles/_universal.scss */
  .circle-page .main-container .hero-carbon-container {
    padding-top: 60px;
  }
}
/* line 1384, ../../src/styles/_universal.scss */
.circle-page .main-container .hero-carbon-container .carbon-wrapper {
  top: 80px;
  left: 0;
}
@media screen and (min-width: 1025px) and (max-width: 1100px) {
  /* line 1384, ../../src/styles/_universal.scss */
  .circle-page .main-container .hero-carbon-container .carbon-wrapper {
    left: -40px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
  /* line 1384, ../../src/styles/_universal.scss */
  .circle-page .main-container .hero-carbon-container .carbon-wrapper {
    left: -70px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  /* line 1384, ../../src/styles/_universal.scss */
  .circle-page .main-container .hero-carbon-container .carbon-wrapper {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* line 1400, ../../src/styles/_universal.scss */
.circle-page .main-container .hero-carbon-container .carbon-example {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
/* line 1406, ../../src/styles/_universal.scss */
.circle-page .main-container .hero-carbon-container .carbon-example:nth-of-type(1) {
  margin-bottom: 25px;
}
/* line 1409, ../../src/styles/_universal.scss */
.circle-page .main-container .hero-carbon-container .carbon-example:nth-of-type(2) {
  margin-left: 250px;
}
/* line 1416, ../../src/styles/_universal.scss */
.circle-page .listings:after {
  display: none;
}
/* line 1420, ../../src/styles/_universal.scss */
.circle-page .publisher-list {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 1425, ../../src/styles/_universal.scss */
.circle-page .publisher-list ul {
  width: 25%;
  padding-right: 10px;
}
@media screen and (max-width: 992px) {
  /* line 1425, ../../src/styles/_universal.scss */
  .circle-page .publisher-list ul {
    width: 50%;
  }
  /* line 1431, ../../src/styles/_universal.scss */
  .circle-page .publisher-list ul:nth-of-type(2) {
    order: 3;
  }
  /* line 1434, ../../src/styles/_universal.scss */
  .circle-page .publisher-list ul:nth-of-type(3) {
    order: 2;
  }
  /* line 1437, ../../src/styles/_universal.scss */
  .circle-page .publisher-list ul:nth-of-type(4) {
    order: 4;
  }
}
@media screen and (max-width: 767px) {
  /* line 1425, ../../src/styles/_universal.scss */
  .circle-page .publisher-list ul {
    width: 100%;
  }
}
/* line 1444, ../../src/styles/_universal.scss */
.circle-page .publisher-list ul li {
  padding-left: 0;
}
/* line 1451, ../../src/styles/_universal.scss */
.circle-page .testimonials .testimonial-source li {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  /* line 1460, ../../src/styles/_universal.scss */
  .pitch .flex-item img {
    max-width: 75%;
  }
}

/****************************
  5. Hubspot Chatbot
****************************/
@media screen and (max-width: 767px) {
  /* line 1473, ../../src/styles/_universal.scss */
  #hubspot-messages-iframe-container iframe {
    display: none !important;
  }
}

/* line 1, ../../src/styles/_header.scss */
header {
  background-color: #F7F7FD;
}
/* line 3, ../../src/styles/_header.scss */
header .container {
  padding-top: 32px;
  padding-bottom: 32px;
}
/* line 6, ../../src/styles/_header.scss */
header .container > * {
  z-index: 10;
  position: relative;
}

/* line 16, ../../src/styles/_header.scss */
.home header .container:before {
  content: "";
  display: block;
  width: 639px;
  height: 639px;
  background-image: url(../../images/circle-common.svg);
  background-size: 639px 639px;
  background-repeat: no-repeat;
  background-position: top right;
  position: absolute;
  right: -173px;
  top: -247px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  /* line 16, ../../src/styles/_header.scss */
  .home header .container:before {
    right: -223px;
    top: -107px;
    width: 479px;
    background-size: 100%;
  }
}

@media screen and (max-width: 767px) {
  /* line 40, ../../src/styles/_header.scss */
  body.menu-active {
    height: 100vh;
    overflow: hidden;
    position: fixed;
  }
  /* line 45, ../../src/styles/_header.scss */
  body.menu-active:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
  }
  /* line 56, ../../src/styles/_header.scss */
  body.menu-active header .logo {
    opacity: 0.4;
  }
}

/* line 62, ../../src/styles/_header.scss */
.mobile-menu {
  display: none;
}
@media screen and (max-width: 767px) {
  /* line 62, ../../src/styles/_header.scss */
  .mobile-menu {
    display: block;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 5px;
    z-index: 10;
  }
  /* line 74, ../../src/styles/_header.scss */
  .mobile-menu span {
    position: relative;
    width: 20px;
    transition: transform 250ms;
  }
  /* line 79, ../../src/styles/_header.scss */
  .mobile-menu:before {
    width: 20px;
    position: absolute;
    top: 0;
    transition: transform 250ms;
  }
  /* line 85, ../../src/styles/_header.scss */
  .mobile-menu:after {
    width: 20px;
    position: absolute;
    top: 4px;
    transition: opacity 250ms;
  }
  /* line 91, ../../src/styles/_header.scss */
  .mobile-menu span, .mobile-menu:before, .mobile-menu:after {
    content: "";
    display: block;
    height: 1px;
    border-radius: 4px;
    background-color: #637381;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  /* line 104, ../../src/styles/_header.scss */
  .mobile-menu.active span {
    transform: rotate(-45deg) translate(5px, -3px);
  }
  /* line 107, ../../src/styles/_header.scss */
  .mobile-menu.active:before {
    transform: rotate(45deg) translateX(3px);
  }
  /* line 110, ../../src/styles/_header.scss */
  .mobile-menu.active:after {
    opacity: 0;
  }
  /* line 113, ../../src/styles/_header.scss */
  .mobile-menu.active + ul {
    display: block;
    padding-top: 85px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
  }
  /* line 121, ../../src/styles/_header.scss */
  .mobile-menu.active + ul:before {
    content: "";
    background-image: url(../../images/logo-carbon.svg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 85px 39px;
    display: block;
    width: 85px;
    height: 39px;
    position: absolute;
    top: 23px;
    left: 20px;
  }
}

@media screen and (max-width: 767px) {
  /* line 140, ../../src/styles/_header.scss */
  nav > ul {
    display: none;
    background-color: #fff;
    padding: 30px 25px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    border-radius: 4px;
  }
}
/* line 149, ../../src/styles/_header.scss */
nav > ul > li {
  position: relative;
}
/* line 151, ../../src/styles/_header.scss */
nav > ul > li.has-children {
  padding: 10px 20px 20px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  /* line 149, ../../src/styles/_header.scss */
  nav > ul > li {
    display: block;
  }
  /* line 158, ../../src/styles/_header.scss */
  nav > ul > li.has-children .publisher-title {
    font-size: 16px;
    color: #040515;
    font-weight: 500;
  }
  /* line 163, ../../src/styles/_header.scss */
  nav > ul > li.has-children > a {
    font-weight: 700;
    border-bottom: 1px solid #f6f6f6;
  }
  /* line 168, ../../src/styles/_header.scss */
  nav > ul > li a {
    padding: 5px 0 8px;
  }
}
/* line 173, ../../src/styles/_header.scss */
nav > ul > li:last-child a:not(.btn) {
  padding-right: 0;
}
/* line 178, ../../src/styles/_header.scss */
nav > ul ul {
  padding: 0;
}
@media screen and (min-width: 768px) {
  /* line 178, ../../src/styles/_header.scss */
  nav > ul ul {
    background-color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 0 32px;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /* line 178, ../../src/styles/_header.scss */
  nav > ul ul {
    border-bottom: 1px solid #f6f6f6;
    margin-bottom: 20px;
    max-height: 100%;
  }
}
/* line 197, ../../src/styles/_header.scss */
nav > ul ul:before {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #ffffff transparent;
}
/* line 211, ../../src/styles/_header.scss */
nav > ul ul li {
  display: block;
  padding-top: 32px;
}
@media screen and (max-width: 767px) {
  /* line 215, ../../src/styles/_header.scss */
  nav > ul ul li:first-of-type {
    padding-top: 13px;
  }
}
/* line 219, ../../src/styles/_header.scss */
nav > ul ul li:last-child {
  padding-bottom: 32px;
}
/* line 223, ../../src/styles/_header.scss */
nav > ul ul a {
  transition: all 250ms;
  white-space: nowrap;
  line-height: 1.4;
  padding: 0 38px 0 0;
  position: relative;
  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: 768px) {
  /* line 223, ../../src/styles/_header.scss */
  nav > ul ul a {
    font-size: 18px;
  }
}
/* line 234, ../../src/styles/_header.scss */
nav > ul ul a .icon {
  border: 1px solid transparent;
  width: 56px;
  height: 56px;
  background-color: #FFF5F5;
  border-radius: 50%;
  margin-right: 24px;
  transition: border-color 250ms;
  position: relative;
}
@media screen and (max-width: 767px) {
  /* line 234, ../../src/styles/_header.scss */
  nav > ul ul a .icon {
    display: none;
  }
}
/* line 246, ../../src/styles/_header.scss */
nav > ul ul a .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* line 253, ../../src/styles/_header.scss */
nav > ul ul a > span {
  vertical-align: middle;
}
/* line 256, ../../src/styles/_header.scss */
nav > ul ul a .styled {
  display: block;
  font-size: 14px;
  font-style: italic;
  color: #637381;
  font-weight: 400;
  transition: color 250ms;
}
/* line 264, ../../src/styles/_header.scss */
nav > ul ul a:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #A6A9B8;
  border-right: 1px solid #A6A9B8;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
  transition: border-color 250ms;
}
@media screen and (max-width: 767px) {
  /* line 264, ../../src/styles/_header.scss */
  nav > ul ul a:after {
    right: 4px;
  }
}
/* line 281, ../../src/styles/_header.scss */
nav > ul ul a:hover, nav > ul ul a.active {
  color: #FE4C54;
  border-color: #FE4C54;
  text-decoration: none;
}
/* line 286, ../../src/styles/_header.scss */
nav > ul ul a:hover .styled, nav > ul ul a.active .styled {
  color: #FE4C54;
}
/* line 289, ../../src/styles/_header.scss */
nav > ul ul a:hover .icon, nav > ul ul a.active .icon {
  border-color: #FE4C54;
}
/* line 292, ../../src/styles/_header.scss */
nav > ul ul a:hover:after, nav > ul ul a.active:after {
  border-color: #FE4C54;
}
/* line 299, ../../src/styles/_header.scss */
nav li,
nav a {
  font-size: 14px;
  color: #27282F;
}
/* line 304, ../../src/styles/_header.scss */
nav a {
  padding: 10px 20px;
  display: block;
  text-decoration: none;
}
/* line 308, ../../src/styles/_header.scss */
nav a:hover {
  text-decoration: underline;
}
/* line 311, ../../src/styles/_header.scss */
nav a.btn {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  /* line 311, ../../src/styles/_header.scss */
  nav a.btn {
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  /* line 311, ../../src/styles/_header.scss */
  nav a.btn {
    display: block;
  }
}

/* line 1, ../../src/styles/_footer.scss */
footer {
  font-size: 14px;
  line-height: 1.2;
  background-color: #F7F7FD;
  position: relative;
  margin-top: -75px;
}
@media screen and (max-width: 767px) {
  /* line 1, ../../src/styles/_footer.scss */
  footer {
    margin-top: -35px;
  }
}
/* line 13, ../../src/styles/_footer.scss */
footer .flex-wrapper {
  padding: 70px 0px;
  border-top: 1px solid rgba(151, 151, 151, 0.13);
}
@media screen and (max-width: 767px) {
  /* line 13, ../../src/styles/_footer.scss */
  footer .flex-wrapper {
    display: block;
    text-align: center;
  }
  /* line 20, ../../src/styles/_footer.scss */
  footer .flex-wrapper .logo {
    margin: 0 auto 30px;
  }
  /* line 24, ../../src/styles/_footer.scss */
  footer .flex-wrapper nav ul {
    display: block;
    background-color: transparent;
    box-shadow: none;
    padding-bottom: 0;
  }
  /* line 29, ../../src/styles/_footer.scss */
  footer .flex-wrapper nav ul a {
    padding-bottom: 20px;
  }
}
/* line 36, ../../src/styles/_footer.scss */
footer p {
  margin: 0;
}
/* line 39, ../../src/styles/_footer.scss */
footer nav ul a {
  color: #637381;
}
/* line 42, ../../src/styles/_footer.scss */
footer .copyright {
  font-size: 12px;
}
