/*
* Less variables should be separated by a semicolon. Example of correct usage:
* .grid-column(1;3;4%) for a one-third column with 4% margins.
*
* @n - Numeric. How many columns this grid column should span, by default out of twelve,
* @total - Numeric. How many columns the grid row should have in total.
* @margin - Percentage. Column gutters.
*/
/*
* .grid-row() is used to correct margins for the grid and includes a clearfix.
* Call this on elements that will contain .grid-column();
*
* @margin - Percentage. Column gutter; should match the gutter specified in .grid-column().
*/
/*
* .push() and .pull() are to be used in conjunction with .grid-column().
* Note that they must be used AFTER .grid-column() for heritance to work properly,
* as .grid-column() will also set a margin.
*/
[class^="icon-"],
[class*=" icon-"] {
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1px;
  line-height: 0.0625rem;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-tel:before {
  content: "\e601";
}
.icon-arrow-down:before {
  content: "\e611";
}
.icon-arrow-left:before {
  content: "\e612";
}
.icon-arrow-right:before {
  content: "\e610";
}
.icon-mail:before {
  background-image: url('/assets/img/home/support/support-email.svg');
}
.down-arrow {
  cursor: pointer;
  transition: all 0.5s ease;
}
.rotate-arrow {
  transform: rotate(-180deg);
  transition: all 0.5s ease;
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.aligner {
  display: inline-block;
  height: 100%;
}
.aligned-content {
  display: inline-block;
}
.align-center {
  vertical-align: middle;
}
.align-bottom {
  vertical-align: bottom;
}
.align-top {
  vertical-align: top;
}
.no-wrap {
  white-space: nowrap;
}
.clear {
  clear: both;
  height: 0;
  width: 0;
  min-height: 0;
  visibility: hidden;
  overflow: hidden;
  display: block;
}
/* Accessibility */
.a11y-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.a11y-hidden-focusable:active,
.a11y-hidden-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.full-bleed {
  color: white;
  padding: 300px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (max-width: 600px) {
  .full-bleed {
    padding: 150px 0px;
  }
}
/*
CTA Module

This CTA can be found on the home-short template, as well as the BMO page.
Behaviour: Should scroll to the signup form

Markup:
<div class="cta-module cta-light">
    <button class="button-primary cta-button" type="button">
        Try it Free for 30 Days
    </button>
    <p> or
        <a href="/benefits">
            discover more benefits of using FreshBooks
        </a>
    </p>
</div>

Styleguide 2.5
*/
.cta-module {
  border-radius: 6px;
  text-align: center;
  box-sizing: border-box;
  padding: 25px 30px;
  background: #E6F3FC;
}
.cta-module button {
  margin: 10px auto;
  width: 100%;
}
.cta-module p {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 0;
  margin-top: 10px;
}
.cta-module .button-primary {
  text-decoration: none;
  display: block;
}
.cta-light {
  background: #E6F3FC;
  color: #0d83dd;
}
.cta-dark {
  background: #0673ce;
  color: #fff;
}
.cta-dark a {
  color: #fff;
}
.cta-centered {
  padding: 1em 0;
  text-align: center;
}
.cta-centered-subtext {
  color: #6A6A6A;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 0;
}
.cta-centered-link {
  color: #00f;
}
.cta-button-wide {
  display: block;
  width: 387px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .cta-button-wide {
    width: 100%;
  }
}
.feature-summary-cta {
  width: 53%;
  float: right;
}
@media (max-width: 860px) {
  .feature-summary-cta {
    float: none;
    width: 100%;
  }
}
.feature-summary-cta .cta-module {
  max-width: 410px;
  margin: -45px 0 80px 30px;
  clear: both;
}
@media (max-width: 860px) {
  .feature-summary-cta .cta-module {
    margin-top: 0px;
    margin: 0 auto 30px auto;
  }
}
/*****************************************************************************/
/*
/* Featured In section
/*
/*****************************************************************************/
.featured-in {
  background-image: url("/assets/img/partials/featured-in/spritesheet.png");
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 7%;
  vertical-align: middle;
  -khtml-opacity: 0.5;
  -ms-filter: 'alpha(opacity=50)';
  opacity: 0.5;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .featured-in {
    background-image: url("/assets/img/partials/featured-in/spritesheet@2x.png");
  }
}
.featured-in.featured-in-cnet {
  background-position: 0 100%;
  width: auto;
  height: auto;
  background-size: 406.25%;
}
.featured-in.featured-in-cnn {
  background-position: 0 83.333333%;
  width: auto;
  height: auto;
  background-size: 375%;
}
.featured-in.featured-in-forbes {
  background-position: 0 50%;
  width: auto;
  height: auto;
  background-size: 205.263158%;
}
.featured-in.featured-in-mashable {
  background-position: 0 33.333333%;
  width: auto;
  height: auto;
  background-size: 150%;
}
.featured-in.featured-in-nyt {
  background-position: 0 16.666667%;
  width: auto;
  height: auto;
  background-size: 111.428571%;
}
.featured-in.featured-in-pcworld {
  background-position: 0 66.666667%;
  width: auto;
  height: auto;
  background-size: 205.263158%;
}
.featured-in.featured-in-techcrunch {
  background-position: 0 0%;
  width: auto;
  height: auto;
  background-size: 100%;
}
.section-feature-summary h1,
.section-feature-summary .section-heading-secondary {
  margin: 6% 0;
  font-size: 46px;
  font-size: 2.875rem;
}
@media (max-width: 767px) {
  .section-feature-summary h1,
  .section-feature-summary .section-heading-secondary {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.feature-summary-background {
  background-image: url("/assets/img/partials/feature-summary/background-small.png");
  background-size: 500px auto;
  background-position: 0 60%;
}
@media (max-width: 860px) {
  .feature-summary-background {
    background-image: none;
  }
}
@media (max-width: 930px) {
  .feature-summary-background {
    background-position: -50% 60%;
  }
}
.feature-summary-container {
  overflow: hidden!important;
}
@media (max-width: 767px) {
  .feature-summary-container {
    width: 100%;
    padding-left: 0%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}
@media (max-width: 610px) {
  .feature-summary-feature {
    padding-left: 20px;
  }
}
/*****************************************************************************/
/*
/* Vertical Support
/*
/*****************************************************************************/
.support-vertical-section {
  background-color: #0d83dd;
  color: #fff;
  background-image: url("/assets/img/team/supportpic.jpg");
  background-size: auto 80%;
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/assets/img/team/supportpic-ie8.jpg', sizingMethod='scale')";
  background-repeat: no-repeat;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .support-vertical-section {
    padding-top: 75%;
  }
}
@media screen and (min-width: 768px) {
  .support-vertical-section {
    padding-top: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .support-vertical-section {
    padding-top: 35%;
  }
}
@media screen and (max-width: 480px) {
  .support-vertical-section {
    padding-top: 130%;
  }
}
.vertical-support-cloud {
  background: #0d83dd;
}
.support-cloud-top {
  display: block;
  background-image: url("/assets/img/team/support-cloud.svg");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 100%;
  width: 100%;
  height: 104px;
  margin-bottom: -2px;
}
@media screen and (max-width: 480px) {
  .support-cloud-top {
    height: 60px;
  }
}
.section-vertical-support-info {
  text-align: center;
  padding: 0 0 2%;
}
.section-vertical-support-info .heading-sub {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
}
.section-vertical-support-info .u-wrapper {
  padding: 0 15px;
}
.support-options-list {
  list-style-type: none;
  margin: 0 auto;
  padding: 12px;
  border-radius: 6px;
  text-align: left;
  display: inline-block;
  width: auto;
  background: transparent;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .support-options-list {
    text-align: center;
  }
}
.support-h2.section-heading-secondary {
  margin-top: 0;
  font-size: 38px;
  font-size: 2.375rem;
  color: #fff;
}
.support-options {
  display: inline-block;
}
.support-phone {
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .support-phone {
    margin-bottom: 12px;
  }
}
.support-phone-icon {
  vertical-align: middle;
}
.support-phone-number {
  vertical-align: middle;
}
.support-email {
  background-repeat: no-repeat;
  margin-left: 20px;
}
.support-email-icon {
  vertical-align: middle;
}
.support-icons {
  padding-right: 4px;
}
.section-vertical-support-info a {
  color: white;
}
.section-vertical-support-info a:hover,
:focus {
  text-decoration: none;
}
/* @group img static widths */
.app-store img,
.play-store img {
  height: 40px;
  width: auto;
}
.rating img {
  width: 102px;
}
.mobile-clr {
  display: none;
}
.mobile-img {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-clr {
    clear: both;
    height: 0;
    width: 0;
    min-height: 0;
    visibility: hidden;
    overflow: hidden;
    display: block;
  }
  .mobile-img {
    display: block;
  }
}
.tabbed-content .section-heading-secondary {
  color: #0d83dd;
  line-height: 1.1;
  font-size: 32px;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tabbed-content section {
    padding-left: 0;
    padding-right: 0;
  }
}
.accordion-toggle {
  display: none;
  width: 100%;
  border-bottom: solid 1px #ccc;
  float: left;
}
.accordion-toggle.invoicing {
  background: url('/assets/img/icons/icon-invoices-active.png');
  background: url('/assets/img/icons/icon-invoices-active.svg');
  background-position: 30px 13px;
  background-repeat: no-repeat;
}
.accordion-toggle.expenses {
  background: url('/assets/img/icons/icon-expenses-active.png');
  background: url('/assets/img/icons/icon-expenses-active.svg');
  background-position: 30px 13px;
  background-repeat: no-repeat;
}
.accordion-toggle.time {
  background: url('/assets/img/icons/icon-time-active.png');
  background: url('/assets/img/icons/icon-time-active.svg');
  background-position: 30px 13px;
  background-repeat: no-repeat;
}
.accordion-toggle.pay {
  background: url('/assets/img/icons/icon-pay-active.png');
  background: url('/assets/img/icons/icon-pay-active.svg');
  background-position: 30px 13px;
  background-repeat: no-repeat;
}
.accordion-toggle.reports {
  background: url('/assets/img/icons/icon-reports-active.png');
  background: url('/assets/img/icons/icon-reports-active.svg');
  background-position: 30px 13px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .accordion-toggle {
    display: block;
  }
}
.accordion-toggle .accordion-inner {
  display: block;
  height: 100%;
  padding-bottom: 15px;
  padding-right: 30px;
}
.accordion-toggle span.title {
  display: inline-block;
  padding-top: 20px;
  padding-left: 80px;
  height: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  color: #0d83dd;
}
.accordion-toggle[data-state="collapsed"] .accordion-inner {
  background: url('/assets/img/icons/icon-plus.png');
  background: url('/assets/img/icons/icon-plus.svg');
  background-position: 97% 18px;
  background-repeat: no-repeat;
}
.accordion-toggle[data-state="expanded"] .accordion-inner {
  background: url('/assets/img/icons/icon-minus.png');
  background: url('/assets/img/icons/icon-minus.svg');
  background-position: 97% 26px;
  background-repeat: no-repeat;
}
.tabbed-nav {
  margin: 30px 0;
  width: 100%;
  border: solid 1px #ccc;
  float: left;
}
@media screen and (max-width: 767px) {
  .tabbed-nav {
    display: none;
  }
}
.tab-link {
  text-decoration: none;
  display: inline-block;
  float: left;
  position: relative;
  width: 20%;
  height: 108px;
  background-color: #F7F8F8;
  text-align: center;
  color: #4A4A4A;
  background-position: 55% 30px;
  background-repeat: no-repeat;
  line-height: 40px;
}
.tab-link:hover {
  background-color: #fff;
}
.tab-link:hover .arrow-main {
  border-left: 27px solid #fff;
}
.tab-link img {
  margin-top: 15px;
  margin-bottom: 5px;
}
.tab-link .link-title {
  margin-left: 10px;
}
.tab-link.invoicing {
  background-image: url('/assets/img/icons/icon-invoices.png');
  background-image: url('/assets/img/icons/icon-invoices.svg');
}
.tab-link.invoicing.selected {
  background-image: url('/assets/img/icons/icon-invoices-active.png');
  background-image: url('/assets/img/icons/icon-invoices-active.svg');
}
.tab-link.expenses {
  background-image: url('/assets/img/icons/icon-expenses.png');
  background-image: url('/assets/img/icons/icon-expenses.svg');
}
.tab-link.expenses.selected {
  background-image: url('/assets/img/icons/icon-expenses-active.png');
  background-image: url('/assets/img/icons/icon-expenses-active.svg');
}
.tab-link.time {
  background-image: url('/assets/img/icons/icon-time.png');
  background-image: url('/assets/img/icons/icon-time.svg');
}
.tab-link.time.selected {
  background-image: url('/assets/img/icons/icon-time-active.png');
  background-image: url('/assets/img/icons/icon-time-active.svg');
}
.tab-link.pay {
  background-image: url('/assets/img/icons/icon-pay.png');
  background-image: url('/assets/img/icons/icon-pay.svg');
}
.tab-link.pay.selected {
  background-image: url('/assets/img/icons/icon-pay-active.png');
  background-image: url('/assets/img/icons/icon-pay-active.svg');
}
.tab-link.reports {
  background-image: url('/assets/img/icons/icon-reports.png');
  background-image: url('/assets/img/icons/icon-reports.svg');
}
.tab-link.reports.selected {
  background-image: url('/assets/img/icons/icon-reports-active.png');
  background-image: url('/assets/img/icons/icon-reports-active.svg');
}
.tab-link.selected {
  background-color: #fff;
}
.tab-link.selected .arrow-main {
  border-left: 27px solid #fff;
}
.tab-link:first-child {
  z-index: 20;
}
.tab-link:nth-child(2) {
  z-index: 15;
}
.tab-link:nth-child(3) {
  z-index: 10;
}
.tab-link:nth-child(4) {
  z-index: 5;
}
.tab-link:last-child {
  z-index: 0;
}
.tab-link:last-child .arrow {
  display: none;
}
.tab-link .arrow-main {
  display: block;
  position: absolute;
  top: 0;
  right: -27px;
  width: 0px;
  height: 0;
  border-top: 54px solid transparent;
  border-bottom: 54px solid transparent;
  border-left: 27px solid #F7F8F8;
  z-index: 5;
}
.tab-link .arrow-main.arrow-shadow {
  z-index: 0;
  right: -28px;
  border-left: 27px solid #ccc;
}
.tab-link .arrow-border {
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background: #ccc;
}
.toggled-content {
  display: none;
  float: left;
  width: 100%;
  padding-bottom: 20px;
  color: #4A4A4A;
}
@media screen and (max-width: 767px) {
  .toggled-content {
    border-bottom: solid 1px #ccc;
    padding-bottom: 40px;
  }
}
.toggled-content .credit-cards {
  text-align: left;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .toggled-content .credit-cards {
    text-align: center;
  }
}
.toggled-content .credit-cards .visa,
.toggled-content .credit-cards .mc,
.toggled-content .credit-cards .amex {
  height: 30px;
}
.toggled-content .credit-cards .visa {
  height: 18px;
  padding-top: 6px;
  vertical-align: top;
}
.toggled-content .credit-cards .mc {
  margin: 0px 10px;
}
@media screen and (min-width: 1024px) {
  .toggled-content .credit-cards .amex {
    margin-right: 15px;
  }
}
.toggled-content .hr {
  float: left;
  width: 100%;
  border-bottom: solid 1px #ccc;
  padding: 20px 0;
}
.toggled-content ul {
  list-style-type: none;
  padding-left: 0;
  margin: 10px auto auto;
}
.toggled-content ul li {
  margin-bottom: 10px;
}
.toggled-content ul li span {
  background: url('/assets/img/competitors/fb-check.png');
  background-repeat: no-repeat;
  background-size: 18px 17px;
  display: inline-block;
  padding-left: 28px;
}
.toggled-content ul li:last-child {
  margin-bottom: 0px;
}
.toggled-content .two-col {
  float: left;
  width: 100%;
}
.toggled-content .two-col .col {
  float: left;
  width: 47%;
}
.toggled-content .two-col .col:first-child {
  margin-right: 6%;
}
@media screen and (max-width: 767px) {
  .toggled-content .two-col .col {
    width: 80%;
    padding-left: 5px;
    padding-right: 5px;
    text-align: left;
    float: none;
    margin: 0 auto;
  }
  .toggled-content .two-col .col:first-child {
    margin-right: auto;
  }
  .toggled-content .two-col .col:last-child {
    display: none;
  }
  .toggled-content .two-col .col .mobile-img {
    display: block;
    width: 60%;
    height: auto;
    margin: 0 auto;
  }
}
.toggled-content h3 {
  color: #0d83dd;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 34px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .toggled-content h3 {
    text-align: center;
    padding-top: 20px;
  }
}
.app-img {
  float: left;
  width: 50%;
}
.app-img img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .app-img {
    float: none;
    width: 100%;
  }
}
.app-content {
  float: right;
  text-align: left;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .app-content {
    float: none;
    text-align: center;
    width: 100%;
  }
  .app-content p {
    padding: 0 10px;
  }
}
.app-content h3 {
  width: 100%;
  color: #0d83dd;
  font-size: 28px;
  font-size: 1.75rem;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .app-content h3 {
    width: 75%;
    margin: 20px auto;
  }
}
.app-content .store-info {
  text-align: center;
}
.app-content .store-info a {
  text-decoration: none;
}
.cell-wrap {
  display: inline-block;
}
.cell-wrap .cell {
  display: table-cell;
  vertical-align: middle;
}
.app-btns,
.rating {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .app-btns,
  .rating {
    display: inline-block;
    float: none;
  }
}
.app-btns a,
.rating a {
  text-decoration: none;
}
.app-store {
  margin-right: 30px;
}
@media screen and (max-width: 480px) {
  .app-store {
    margin-right: 12px;
  }
}
.rating {
  margin: 10px 0px;
}
.rating span {
  font-size: 18px;
  font-size: 1.125rem;
  color: #0d83dd;
  margin-right: 15px;
}
.hero-background {
  padding: 0 0 140px 0;
  background-image: url('/assets/img/hero/verticals-hero-full.jpg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #0d83dd;
}
.hero-background h3 {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .hero-background {
    background-image: url('/assets/img/hero/verticals-tablet-hero.jpg');
    padding-bottom: 170px;
  }
}
@media screen and (max-width: 480px) {
  .hero-background {
    background-image: url('/assets/img/hero/verticals-mobile-hero.jpg');
    padding-bottom: 320px;
  }
}
.hero {
  padding-top: 1em;
  padding-bottom: 2em;
}
.hero:after {
  content: "";
  display: table;
  clear: both;
}
.hero-h1,
.hero-h2,
.hero .heading-sub,
.vertical-banner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hero-h1,
  .hero-h2,
  .hero .heading-sub,
  .vertical-banner {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .hero-h1 .hero-break,
  .hero-h2 .hero-break,
  .hero .heading-sub .hero-break,
  .vertical-banner .hero-break {
    display: block;
  }
}
.hero-h1 {
  max-width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .hero-h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.hero .heading-sub {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .hero-h1 .hero-break {
    display: block;
  }
}
.try-button {
  margin: 30px 0px 50px;
}
.try-button .button-primary {
  font-size: 22px;
  font-size: 1.375rem;
  padding: 14px 50px;
}
@media screen and (max-width: 767px) {
  .try-button .button-primary {
    padding: 14px 0;
    width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .try-button .button-primary {
    width: 100%;
  }
}
.featured-logos-container {
  box-shadow: none;
}
.cta-module-wrap {
  margin: 50px 0 50px 0;
}
@media screen and (max-width: 767px) {
  .cta-module-wrap {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.cta-module-wrap .feature-summary-cta {
  width: 100%;
  float: none;
  box-sizing: border-box;
}
.cta-module-wrap .feature-summary-cta .cta-module {
  margin: 0 auto;
  max-width: 616px;
}
.testimonials-large:after {
  content: "";
  display: table;
  clear: both;
}
.rule {
  border-top: 2px solid #e5e5e5;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .rule {
    padding-top: 20px;
  }
}
.section-feature-summary .section-heading-secondary {
  margin: 6% 0;
  font-size: 46px;
  font-size: 2.875rem;
}
@media screen and (max-width: 767px) {
  .section-feature-summary .section-heading-secondary {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.section-benefits {
  margin-top: 0;
}
@media screen and (min-width: 1200px) {
  .section-benefits {
    margin-top: 0;
  }
}
