/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 992px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 991px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Fonts
Base Fonts (<body>, <h1>, <a>, <p>, <button> etc.)
*/
@font-face {
  font-family: 'circular_stdbook';
  font-weight: normal;
  font-style: normal;
  src: url('https://3386508.fs1.hubspotusercontent-na1.net/hubfs/3386508/raw_assets/public/roofr-theme/fonts/circularstd-book-webfont.woff2') format('woff2'),
    url('https://3386508.fs1.hubspotusercontent-na1.net/hubfs/3386508/raw_assets/public/roofr-theme/fonts/circularstd-book-webfont.woff') format('woff');
}
@font-face {
  font-family: 'circular_stdmedium';
  font-weight: normal;
  font-style: normal;
  src: url('https://3386508.fs1.hubspotusercontent-na1.net/hubfs/3386508/raw_assets/public/roofr-theme/fonts/circularstd-medium-webfont.woff2') format('woff2'),
    url('https://3386508.fs1.hubspotusercontent-na1.net/hubfs/3386508/raw_assets/public/roofr-theme/fonts/circularstd-medium-webfont.woff') format('woff');
}
@font-face {
  font-family: 'circular_stdbold';
  font-weight: normal;
  font-style: normal;
  src: url('https://3386508.fs1.hubspotusercontent-na1.net/hubfs/3386508/raw_assets/public/roofr-theme/fonts/circularstd-bold-webfont.woff2') format('woff2'),
    url('https://3386508.fs1.hubspotusercontent-na1.net/hubfs/3386508/raw_assets/public/roofr-theme/fonts/circularstd-bold-webfont.woff') format('woff');
}
@font-face {
  font-family: 'circular_stdblack';
  font-weight: normal;
  font-style: normal;
  src: url('https://3386508.fs1.hubspotusercontent-na1.net/hubfs/3386508/raw_assets/public/roofr-theme/fonts/circularstd-black-webfont.woff2') format('woff2'),
    url('https://3386508.fs1.hubspotusercontent-na1.net/hubfs/3386508/raw_assets/public/roofr-theme/fonts/circularstd-black-webfont.woff') format('woff');
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

:root {
  --white: #ffffff;
  --black: #12171b;
  --sky: #4e73d1;
  --roofr-blue: #269bd6;
  --light-blue: #e7f1fc;
  --midnight: #0b0f12;
  --graphite: #28373e;
  --graphite-2: #74838b;
  --mist: #edf0f2;
  --roofr-gradient: linear-gradient(-90deg, var(--sky), #2c9bd6);
  --midnight-gradient: linear-gradient(90deg, var(--midnight), #212e34);
  --graphite-gradient: linear-gradient(90deg, #6B7980, var(--graphite));
  --mist-gradient: linear-gradient(90deg, var(--white), var(--mist));
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

body {
  font-family: "circular_stdbook", sans-serif;
  color: var(--midnight);
  font-size: 18px;
  line-height: 1.4;
  overflow-wrap: break-word;
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

/* Paragraphs */
p {
  margin: 0 0 1rem;
}

/* Anchors */
a {
  color: var(--roofr-blue);
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "circular_stdblack", sans-serif;
  color: var(--graphite);
  line-height: 1.2;
  margin: 0 0 1rem;
  display: block;
}

h1, .h1 {
  font-size: 36px;
}
h2, .h2 {
  font-size: 32px;
}
h3, .h3 {
  font-size: 28px;
}
h4, .h4 {
  font-size: 24px;
}
h5, .h5 {
  font-size: 20px;
}
h6, .h6 {
  font-size: 18px;
}

@media(min-width: 768px) {
  h1, .h1 {
    font-size: 44px;
  }
  h2, .h2 {
    font-size: 40px;
  }
  h3, .h3 {
    font-size: 32px;
  }
}
@media(min-width: 992px) {
  h1, .h1 {
    font-size: 50px;
  }
  h2, .h2 {
    font-size: 44px;
  }
}
@media(min-width: 1200px) {
  h1, .h1 {
    font-size: 60px;
  }
  h2, .h2 {
    font-size: 48px;
  }
}

/* Lists */
ul,
ol {
  margin: 0 0 1rem;
  padding: 0 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  max-width: 100%;
  height: auto;
}

/* container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.dnd-section > .row-fluid {
  max-width: 1240px;
  margin: 0 auto;
}
.dnd-section > .row-fluid .container {
  padding: 0;
}
[class*=full-width-section], [class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .container {
  padding: 0 20px;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}
@media(max-width: 991px) {
  .dnd-section > .row-fluid {
    padding: 0 20px;
  }
  [class*=full-width-section] > .row-fluid {
    padding: 0;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* button */
.cta_button, 
.hs-button {
  background-image: linear-gradient(225deg,var(--sky),var(--roofr-blue));
  color: var(--white);
  text-align: center;
  cursor: pointer;
  border-style: none;
  border-radius: 6rem;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: .625rem 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  transition: box-shadow .15s,border-color .15s,color .15s,background-color .15s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta_button:hover, .cta_button:focus, .cta_button:active,
.hs-button:hover, .hs-button:focus, .hs-button:active {
  box-shadow: 0 2px 16px #74838b29;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.header {
  background-color: var(--light-blue);
  text-align: center;
  position: relative;
  padding: 36px 0;
}
.header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--roofr-gradient);;
}
.header .container {
  text-align: center;
}
.header .logo {
  max-width: 180px;
  margin: 0 auto;
}
.pricing-plans {
  background-color: var(--light-blue);
  padding: 60px 0;
  position: relative;
}
.pricing-plans:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--roofr-gradient);;
}
.pricing-plans .logo {
  text-align: center;
  max-width: 180px;
  margin: 0 auto;
}
.pricing-plans h1 {
  text-align: center;
  margin-bottom: 30px;
}
.pricing-plans .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.pricing-plans .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
@media(min-width: 768px) {
  .pricing-plans .column {
    width: 50%;
  }
}
@media(min-width: 1200px) {
  .pricing-plans .column {
    width: 25%;
  }
}

.pricing-box {
  background-color: var(--white);
  box-shadow: 0 8px 1rem #0b0f121a;
  border-radius: 1rem;
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 30px;
}
.pricing-box .pricing-box__logo-wrap {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pricing-box .pricing-box__logo {
  max-width: 32px;
  line-height: 1;
  margin-right: 10px;
}
.pricing-box .pricing-box__heading {
  font-family: "circular_stdblack", sans-serif;
  font-size: 22px;
  line-height: 1em;
}
.pricing-box__text {
  font-size: 16px;
  border-bottom: 1px solid #74838B;
  padding: 0 0 25px;
  margin-bottom: 25px;
}
.pricing-box__info .title, .pricing-box__info .price, .pricing-box__info .subscription, .pricing-box__info .subtitle  {
  display: block;
  color: var(--graphite);
}
.pricing-box__info .title {
  font-family: "circular_stdbold", sans-serif;
  font-size: 20px;
}
.pricing-box__info .subtitle {
  font-family: "circular_stdbold", sans-serif;
  font-size: 30px;
  margin: 20px 0 16px;
}
.pricing-box__info .price {
  font-family: "circular_stdbold", sans-serif;
  font-size: 40px;
}
.pricing-box__info .subscription {
  font-size: 16px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-features li {
  padding: 0 0 0 30px;
  font-size: 16px;
  position: relative;
}
.pricing-features li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='url(%23paint0_linear)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='20' y1='6' x2='2.32238' y2='12.2705' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234E73D1'/%3E%3Cstop offset='1' stop-color='%23269BD6'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.pricing-features li:last-child span {
  border: none;
}
.pricing-features li span {
  border-bottom: 1px solid var(--graphite-2);
  padding: 5px 0;
  display: block;
}
.pricing-plans .additional {
  color: #8E9091;
  font-style: italic;
  font-size: 16px;
  padding: 10px 0 0 30px;
  display: block;
}

.pricing-box.roofr_blue {
  background: var(--roofr-gradient);
  color: var(--white);
}
.pricing-box.midnight {
  background: var(--midnight-gradient);
  color: var(--white);
}
.pricing-box.graphite {
  background: var(--graphite-gradient);
  color: var(--white);
}
.pricing-box.roofr_blue .pricing-box__text, .pricing-box.midnight .pricing-box__text, .pricing-box.graphite .pricing-box__text {
  border-color: var(--white);
}
.pricing-box.roofr_blue .pricing-box__info .price, .pricing-box.roofr_blue .pricing-box__info .subscription, .pricing-box.roofr_blue .pricing-box__info .title, .pricing-box.roofr_blue .pricing-box__info .subtitle {
  color: var(--white);
}
.pricing-box.midnight .pricing-box__info .price, .pricing-box.midnight .pricing-box__info .subscription, .pricing-box.midnight .pricing-box__info .title, .pricing-box.midnight .pricing-box__info .subtitle {
  color: var(--white);
}
.pricing-box.graphite .pricing-box__info .price, .pricing-box.graphite .pricing-box__info .subscription, .pricing-box.graphite .pricing-box__info .title, .pricing-box.graphite .pricing-box__info .subtitle {
  color: var(--white);
}
.product-comparison {
  background-color: var(--light-blue);
  padding: 60px 0;
}
.product-comparison h2 {
  text-align: center;
  margin-bottom: 30px;
}
.product-comparison .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.product-comparison .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
@media(min-width: 992px) {
  .product-comparison .column {
    width: 50%;
  }
}

.comparison-box {
  background-color: var(--white);
  box-shadow: 0 8px 1rem #0b0f121a;
  border-radius: 1rem;
  text-align: left;
  padding: 1.5rem;
  margin-bottom: 30px;
}
.comparison-box__text {
  font-size: 16px;
}
.pricing-features li {
  padding: 0 0 0 30px;
  font-size: 16px;
  position: relative;
}
.pricing-features li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='url(%23paint0_linear)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='20' y1='6' x2='2.32238' y2='12.2705' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234E73D1'/%3E%3Cstop offset='1' stop-color='%23269BD6'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.pricing-features li:last-child span {
  border: none;
}
.pricing-features li span {
  border-bottom: 1px solid var(--graphite-2);
  padding: 5px 0;
  display: block;
}
.product-comparison .additional {
  color: #8E9091;
  font-style: italic;
  font-size: 16px;
  padding: 10px 0 0 30px;
  display: block;
}
.testimonial {
  padding: 60px 0;
}
.testimonial .image-holder {
  background-color: var(--roofr-blue);
  border-radius: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 120px;
  width: 120px;
  margin-bottom: 30px;
}
.testimonial blockquote {
  color: var(--graphite);
  border: none;
  padding: 0;
}
.testimonial .info {
  font-size: 16px;
  color: #6B7980;
}

@media(min-width: 992px) {
  .testimonial .wrap {
    display: flex;
    flex-flow: row wrap;
  }
  .testimonial .image-holder {
    margin: 0;
  }
  .testimonial .content {
    width: calc(100% - 120px);
    padding-left: 50px;
  }
  .testimonial blockquote {
    font-size: 20px;
  }
}
@media(min-width: 1200px) {
  .testimonial .content {
    padding-left: 70px;
  }
}
.content-module {
  padding: 60px 0 0;
  text-align: center;
}
.content-module .text {
  max-width: 600px;
  margin: 0 auto 50px;
}
.content-module .image-holder {
  line-height: 0;
}
.invoicing {
  padding: 60px 0 0;
  text-align: center;
  position: relative;
}
.invoicing:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--roofr-gradient);;
}
.invoicing h1 {
  max-width: 900px;
  margin: 0 auto 20px;
}
.invoicing .text {
  max-width: 600px;
  margin: 0 auto 50px;
}
.invoicing .logo {
  max-width: 180px;
  margin: 0 auto;
}
.invoicing .title {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: rgba(0, 0,0, 0.75);
  position: relative;
  margin: 0 0 15px;
  padding: 20px 0 0;
}
.invoicing .title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 1px;
  width: 28px;
  transform: translateX(-50%);
  background-color: var(--graphite-2);
}

@media(min-width: 768px) {
  .invoicing .logo-wrap {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .invoicing .title {
    margin: 0 0 0 15px;
    padding: 0 0 0 20px;
  }
  .invoicing .title:before {
    top: -2px;
    left: 0;
    height: 28px;
    width: 1px;
    transform: none;
  }
  .invoicing .logo {
    margin: 0;
  }
}
.props-module {
  background-color: var(--light-blue);
  padding: 60px 0;
}
.props-module h2 {
  text-align: center;
  margin-bottom: 50px;
}
.props-module .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.props-module .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.props-module .props .image-holder {
  margin-bottom: 15px;
}


@media(min-width: 768px) {
  .props-module .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .props-module .column {
    width: 33.33%;
  }
}
.content-with-image {
  background-color: var(--light-blue);
  padding: 60px 0;
}
.content-with-image .text {
  margin: 0 0 30px;
  max-width: 950px;
}
.content-with-image .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.content-with-image .column {
  padding: 0 15px;
  width: 100%;
}
.content-with-image .image-holder {
  text-align: center;
}
.content-with-image .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content-with-image .content ul li {
  padding: 0 0 15px 30px;
  position: relative;
}
.content-with-image .content ul li:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='url(%23paint0_linear)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='20' y1='6' x2='2.32238' y2='12.2705' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234E73D1'/%3E%3Cstop offset='1' stop-color='%23269BD6'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

@media(min-width: 992px) {
  .content-with-image .column {
    width: 50%;
  }
}
.feature-tag {
  background-color: var(--mist);
  padding: 60px 0;
}
.feature-tag .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.feature-tag .column {
  padding: 0 15px;
  width: 100%;
}
.feature-tag .sub-heading {
  color: var(--graphite-2);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
  display: block;
} 
.feature-tag .text {
  margin: 0 0 50px;
  max-width: 950px;
}
.feature-tag .image-holder {
  text-align: center;
}
.feature-tag .text ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.feature-tag .text ul li {
  padding: 0 0 15px 30px;
  position: relative;
}
.feature-tag .text ul li:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='url(%23paint0_linear)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='20' y1='6' x2='2.32238' y2='12.2705' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234E73D1'/%3E%3Cstop offset='1' stop-color='%23269BD6'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

@media(min-width: 992px) {
  .feature-tag .column {
    width: 50%;
  }
}
.tagline {
  background-color: var(--white);
  padding: 60px 0;
}
.tagline .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.tagline .column {
  padding: 0 15px;
  width: 100%;
}
.tagline .sub-heading {
  color: var(--graphite-2);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
  display: block;
} 
.tagline .text {
  margin: 0 0 50px;
  max-width: 950px;
}
.tagline .image-holder {
  text-align: center;
}
.tagline .text ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.tagline .text ul li {
  padding: 0 0 15px 30px;
  position: relative;
}
.tagline .text ul li:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='url(%23paint0_linear)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='20' y1='6' x2='2.32238' y2='12.2705' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234E73D1'/%3E%3Cstop offset='1' stop-color='%23269BD6'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

@media(min-width: 992px) {
  .tagline .row.left {
    flex-direction: row-reverse;
  }
  .tagline .column {
    width: 50%;
  }
}
.benefits-module {
  background-color: var(--light-blue);
  padding: 60px 0;
}
.benefits-module h2 {
  margin-bottom: 50px;
}
.benefits-module h2, .benefits-module .sub-heading {
  text-align: center;
}
.benefits-module .sub-heading {
  color: var(--graphite-2);
  display: block;
  letter-spacing: 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.benefits-module .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.benefits-module .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.benefits-module .benefits {
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 8px 1rem #0b0f121a;
  margin-bottom: 30px;
  padding: 1.5rem;
}

@media(min-width: 768px) {
  .benefits-module .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .benefits-module .column {
    width: 33.33%;
  }
}
.solution {
  background: var(--roofr-gradient);
  color: var(--white);
  padding: 60px 0;
}
.solution .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.solution .column {
  padding: 0 15px;
  width: 100%;
}
.solution h2 {
  color: var(--white);
}

@media(min-width: 992px) {
  .solution .column:nth-child(1) {
    width: 40%;
  }
  .solution .column:nth-child(2) {
    width: 60%;
  }
}
.challenge {
  background-color: var(--white);
  padding: 60px 0;
}
.challenge .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.challenge .column {
  padding: 0 15px;
  width: 100%;
}

@media(min-width: 992px) {
  .challenge .column:nth-child(1) {
    width: 40%;
  }
  .challenge .column:nth-child(2) {
    width: 60%;
  }
}
.case-study {
  background: linear-gradient(to bottom, #ffffff 0%,#e7f1fc 100%);
  padding: 60px 0;
  position: relative;
}
.case-study:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--roofr-gradient);;
}
.case-study .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.case-study .column {
  padding: 0 15px;
  width: 100%;
}
.case-study .image-holder {
  background-color: var(--roofr-blue);
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}
.case-study .text {
  color: var(--graphite-2);
}


@media(min-width: 992px) {
  .case-study .column:nth-child(1) {
    width: 40%;
  }
  .case-study .column:nth-child(2) {
    width: 60%;
  }
  .case-study .image-holder {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
}
@media(min-width: 1200px) {
  .case-study .image-holder {
    width: 300px;
    height: 300px;
  }
}
.footer {
  font-family: "circular_stdbold", sans-serif;
  background: var(--roofr-gradient);
  color: var(--white);
  padding: 17px 0;
}
.footer a {
  color: var(--white);
}
.footer .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.footer .column {
  padding: 0 15px;
  width: 33.33%;
}
.footer .logo {
  text-align: center;
  max-width: 40px;
  margin: 0 auto;
  line-height: 1;
}
.footer .email {
  text-align: right;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

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

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