@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800");
@import "https://cdn.staticsfly.com/i/youtube/youtube-player.css";
/* CSS Document */
#offer-banner-wrapper.promo-locking-bar { z-index: 1000 !important; }
/* Fonts */
  .font-light { font-weight: 300; }
  .font-book, .font-roman, font-regular { font-weight: 400; }
  .font-medium { font-weight: 500; }
  .font-semibold { font-weight: 600; }
  .font-heavy, .font-bold { font-weight: 700; }
  .font-black, .font-extrabold { font-weight: 800; }
/* END Fonts */

/* Form Styles */
  .template-form input[type="radio"],
  .template-form input[type="checkbox"]{ display: none; }
  
  .template-form label.t-radio, 
  .template-form label.t-checkbox { position: relative; margin-left: 20px; }
  
  .template-form label.t-radio span::before,
  .template-form label.t-radio span::after,
  .template-form label.t-checkbox span::before,
  .template-form label.t-checkbox span::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  
  .template-form label.t-radio span.radio:hover { cursor: pointer; }
  
  .template-form label.t-radio span.radio::after {
    left: -21px;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: #fff;
    border: 2px solid #dddfe1;
    transition: border-color .2s;
  }
  
  input[type="radio"]:checked + label.t-radio span.radio::after { background-color: #F05323; }
  
  .template-form label.t-checkbox span.checkbox::before {
    width: 16px;
    height: 16px;
    background-color: #fff;
    left: -21px;
    box-sizing: border-box;
    border: 2px solid #dddfe1;
    border-radius: 4px;
  }
  
  .template-form label.t-radio span.radio:hover::after,
  .template-form label.t-checkbox span.checkbox:hover::before { border: 2px solid #F05323; }
  
  .template-form label.t-checkbox span.checkbox::after {
    content: "\2715";
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    left: -19px;
    top: -1px;
    color: transparent;
  }
  
  input[type="checkbox"]:checked + label.t-checkbox span.checkbox::after { color: #F05323; }
  
  /* Form Field "Placeholder" text styles */
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #838488 !important; } /* Chrome */
  input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #838488 !important; } /* IE 10+ */
  input::-moz-placeholder, textarea::-moz-placeholder { color: #838488 !important; opacity: 1; } /* Firefox 19+ */
  input:-moz-placeholder, textarea:-moz-placeholder { color: #838488 !important; opacity: 1; } /* Firefox 4 - 18 */
  /* END Form Field "Placeholder" text styles */
  
  .form-field {
    font: normal normal 300 12px 'Montserrat', Verdana, Arial, sans-serif;
    color: #58595b;
    border: 1px solid #dddfe1;
    border-radius: 4px;
    box-sizing: border-box;
    height: 32px;
    width: 300px;
    padding: 5px 0 5px 5px;
    margin: 0 0 8px 0;
  }
/* END Form Styles */

/* CTA styles */
  .cta-btn, .cta-btn:hover,
  .cta-btn-alt, .cta-btn-alt:hover, 
  .cta-btn-holiday, .cta-btn-holiday:hover,
  .cta-btn-secondary, .cta-btn-secondary:hover,
  .cta-btn-tp, .cta-btn-tp:hover {
    font: normal normal 600 12px 'Montserrat', Verdana, Arial, sans-serif !important;
    color: #ffffff !important;
    border-radius: 4px;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none !important;
    cursor: pointer;
    text-transform: uppercase;
    border: none;
    /*letter-spacing: .1em;*/
  }
  
  .cta-btn-tp, .cta-btn-tp:hover {
    font: normal normal 800 13px "Avenir LT", Verdana, Arial, sans-serif !important;
    border-radius: 0;
    color: #000 !important;
    border: 2px solid #000;
    padding: 10px;
  }
  
  .cta-btn-tp:hover { color: #00a8b0 !important; border: 2px solid #00a8b0; }
  
  .cta-btn { background-color: #d74012; -webkit-appearance: initial; }
  
  .cta-btn-alt { background-color: #181512; -webkit-appearance: initial; }
  
  .cta-btn-holiday  { background-color: #cd1b38; }
  
  .cta-btn-secondary {
    color:#58595b !important;
    border: 1px solid #58595b;				
    background-color: #ffffff;
    padding: 9px 19px;
  }
  
  .cta-btn-secondary:hover {
    color:#f05323 !important;
    border: 1px solid #f05323;
    padding: 9px 19px;		
  }
  
  .cta-text, .cta-text:hover,
  .cta-text-darkbg, .cta-text-darkbg:hover {
    font: normal normal 600 12px 'Montserrat', Verdana, Arial, sans-serif !important;
    letter-spacing: .05em;
    color: #58595b !important;
    text-transform: uppercase;
    text-decoration: none !important;
    display: block;
    cursor: pointer;
  }
  
  .cta-text:hover { color: #F05323 !important; }
  .cta-text-darkbg, .cta-text-darkbg:hover { color: #fff !important; }
  
  .cta-text::after, .cta-text-darkbg::after { content: " >" }
/* END CTA styles */

/* Flexbox */
  .flex { display: flex; }
  .flex-row-between, 
  .flex-row-around, 
  .flex-row-center { 
    /*display: flex;*/
    flex-direction: row;
    align-items: flex-start;
    align-content: flex-start;
  }
  .flex-row-between { justify-content: space-between; } /* Distribute items evenly in row.  First on start line, last on end line. */
  .flex-row-around { justify-content: space-around; } /* Distribute items in row with equal space around them. */
  .flex-row-center { justify-content: center; } /* Distribute items centered in row with equal space around them. */
  .flex-middle { align-items: center; } /* items are vertically centered */
  .flex-bottom { align-items: flex-end; } /* items are vertically centered */
/* END Flexbox */

body { margin: 0; padding: 0; }

span.strikethru { text-decoration:line-through; }
span.salePrice { color: #ba2911; }

#template-wrap, 
.template-wrap {
  max-width: 980px;
  margin: 0 auto;
  font: normal normal 400 12px/1.5em 'Montserrat', Verdana, Arial, sans-serif;
  color: #58595b;
}

#template-wrap a, 
.template-wrap a { 
  color: #1aaeba; 
  text-decoration: none;  
  font-weight: 600;
}

#template-wrap a:hover, 
.template-wrap a:hover { text-decoration: underline; } 

#template-wrap p, 
.template-wrap p { padding: 0; margin: 0; }

#template-wrap a.row-download, #template-wrap a.row-download:hover,
.template-wrap a.row-download, .template-wrap a.row-download:hover { color: #58595b; text-decoration: none; }


.icon-number {
  display: inline-block;
  width: 44px; height: 44px;
  -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
  font-weight: 700;
  font-size: 30px;
  line-height: 1em;
  color: #fff;
  background-color: #58595b;
  border-radius: 22px;
  text-align: center;
  padding: 7px 0 0 2px;
  margin: 0 auto;
}

#template-marquee img { display: block; width: 100%; }

.offer-stripe, 
.offer-stripe-seasonal { 
  height: 40px; 
  box-sizing: border-box; 
  padding-top: 10px; 
  background-color: #2d3137; 
  text-align: center; 
  color: #fff; 
  font-weight: 600; 
  font-size: 14px; 
  text-transform: uppercase;
}

.template-section-title { 
  padding: 0; 
  margin: 0 0 26px 0; 
  font: normal normal 400 22px 'Montserrat', Verdana, Arial, sans-serif;
  color: #58595b; 
  text-align: center; 
}

#template-wrap p.template-category-title,
.template-wrap p.template-category-title { 
  font-weight: 200; 
  font-size: 18px; 
  margin-bottom: 10px; 
}

.template-headline, 
.faq-question { font: normal normal 600 14px 'Montserrat', Verdana, Arial, sans-serif; }
  
.faq-question { margin-bottom: 2px !important; letter-spacing: .02em; }

#template-wrap p.faq-answer,
.template-wrap p.faq-answer { margin-bottom: 22px; }

#faq-main { padding: 0 40px 8px 10px; display: none; }

#faq-title { cursor: pointer; }

.faq-carrot { 
  display: inline-block; 
  transition: 0.5s ease-in-out; 
  margin-left: 13px; 
}

.rotate-carrot { transform: rotate(180deg); }

.row-no-border, 
.row-border { margin-bottom: 50px; position: relative; }

.row-border { border-bottom: 1px solid #dddfe1; padding-bottom: 30px; }

.row-flex { 
  display: flex; 
  flex-direction: row;
  flex-wrap: nowrap;


  align-content: center; 
}

.row-flex-3, 
.row-flex-4, 
.row-flex-5 { 
  box-sizing: border-box; 
  width: 196px; 
  text-align: center; 
}

.row-flex-copy-block {  padding: 0 10px; margin: 0; }

#template-wrap p.row-flex-head, .template-wrap p.row-flex-head { margin: 20px 0 6px 0; }

.row-flex-cross-sell { 
  display: flex; 
  justify-content: center;
  align-items: flex-start; 
  align-content: center; 
}

a.row-flex-cs-3, 
a.row-flex-cs-4 { 
  display: block; 
  /*margin: 2px; */
  background-color: #fff; 
  box-sizing: border-box; 
  /*width: 33.33%;*/ 
  /*height: 280px; */
  text-align: center; 
  position: relative; 
  /*border: 2px solid #f9f9f9;*/
}

a.row-flex-cs-3 { flex: 1 1 auto;  }

/*a.row-flex-cs-4 { width: 25%; }*/

.flex-group { display: flex; flex-wrap: wrap; justify-content: space-around; flex-grow: 1; margin: 0 auto; }

#template-wrap a.row-flex-cs-3 div, #template-wrap a.row-flex-cs-4 div,
.template-wrap a.row-flex-cs-3 div, .template-wrap a.row-flex-cs-4 div { 
  position: absolute; 
  left: 0; 
  bottom: 10px; 
  width: 100%; 
  color: #58595b; 
  font-weight: 400;
}

.label-product { 
font-weight: 600 !important; 
font-size: 13px; 
display: block; 
}

 
.row-flex-cat-2, 
.row-flex-cat-3 { 
  box-sizing: content-box; 
  width: 483px; 
  margin: 0 auto; 
  border: 1px solid #dddfe1; 
}

.row-flex-cat-3 { width: 318px; }

.row-flex-cat-2 img, 
.row-flex-cat-3 img { display: block; }

.row-flex-cat-3 a.cta-text { margin-top: 5px; }

.row-flex-cat-2 img { width: 483px; height: 272px; }

.cat-copy-box { padding: 15px 15px 18px 10px; margin: 0; }

.row-flex-cat-2 .cat-copy-box span { width: 320px; }

.template_row_category_1_text_left img { float: right; }
.template_row_category_1_text_left, template_row_category_1_text_right { position: relative; overflow: hidden; }

.template_row_category_1_text_left .row-flex-cat-1,
.template_row_category_1_text_right .row-flex-cat-1  { 
  position: absolute; top: 0; left: 0; width: 100%; display: flex; height: 300px; padding-left: 30px; padding-top: 0 !important;
}

.template_row_category_1_text_right .row-flex-cat-1 { padding: 0 30px 0 0; flex-direction: row-reverse; }

.category_1_copy { width: 348px; text-align: center; z-index: 1;}

.category_1_copy .template-section-title { margin: 0 0 6px 0; }

#template-wrap .category_1_copy h2,
.template-wrap .category_1_copy h2 { margin-bottom: 5px; }

#template-wrap .category_1_copy p,
.template-wrap .category_1_copy p { margin-bottom: 10px; } 

.block-cat-border { border: 10px solid #f9f9f9; margin-bottom: 50px; }

.block-cat-border hr { 
  width: 73%; 
  margin: 0 auto; 
  background-color: #dddfe1; 
  height: 1px; 
  border: none; 
}

.block-cat-content { background-color: #fff;  padding: 40px 80px 40px 30px; }

.block-cat-content-copy { width: 50%; }

.block-cat-content-copy ul { margin: 15px 0 10px 0; padding: 0; } 

.block-cat-content-copy ul li { 
  margin: 0 0 15px 15px; 
  padding: 0; 
  list-style: disc; 
} 

.template_row_feature img { width: 100%; height: auto; min-width: 0; min-height: 0; }

.feature-copy { width: 290px; padding: 0 30px 0 10px; box-sizing: border-box; flex-shrink: 0; }

.feature-copy .template-section-title { text-align: left; }

.feature-copy span { display: block; margin-bottom: 14px; }

.template_row_quote_bio { 
  background-color: #f9f9f9; 
  padding: 40px 40px 40px 17px; 
  margin-bottom: 50px; 
}

.template_row_quote_bio img { 
  margin: 6px 50px 0 0; 
  width: 215px; 
  height: 215px; 
}

.template_row_quote_bio hr { 
  background-color: #929497; 
  height: 1px; 
  width: 71%; 
  margin: 25px auto; 
  border: none;
}

.template_row_quote_bio a { text-decoration: none;  }

.template_row_quote_short { 
  background-color: #f9f9f9; 
  padding: 40px; 
  margin-bottom: 50px; 
}

.author-name { 
  font-weight: 300; 
  font-size: 18px; 
  margin-bottom: 10px !important; 
}

.author-bio { font-weight: 600; }

.quote_bio_copy { width: 100%; text-align: center; }

.quote_copy { width: 80%; text-align: center; }

blockquote {
  font: normal normal 400 20px/1.6em 'Montserrat', Verdana, Arial, sans-serif;
  margin: 0 auto 25px;
  text-align: center;
  position: relative;
}

blockquote span {
  background: url("https://cdn.staticsfly.com/i/landingpages/template/quote_close.png") no-repeat top right;
  padding-right: 22px;
}

blockquote::first-letter {
  background: url("https://cdn.staticsfly.com/i/landingpages/template/quote_open.png") no-repeat left top;
  padding-left: 22px;
  font: normal normal 400 20px/1.6em 'Montserrat', Verdana, Arial, sans-serif;
}

.template_row_video { 
  background-color: #f9f9f9; 
  margin-bottom: 50px; 
  border-bottom: 1px solid #f9f9f9; 
  border-right: 1px solid #f9f9f9;
}

.video-player video { width: 100%; }

.video-copy {
  text-align: right;
  padding: 0 20px 50px 20px;
  width: 227px;
  box-sizing: border-box;
}

.video-copy .template-section-title { text-align: right; margin-bottom: 11px; }

.video-copy p { font-weight: 700; }



/* Slideshow styles */
#cycle-pager-1, 
#cycle-pager-2 { 
  text-align: center; 
  width: 980px; 
  z-index: 500; 
  position: absolute; 
  bottom: -2px; 
  left: 0; 
  overflow: hidden; 
  height: 20px;
}

#cycle-pager-2 { width: 690px; }

.cycle-pager span { 
  font-family: arial; 
  font-size: 40px; 
  line-height: 20px; 
  display: inline-block; 
  color: #dddfe1; 
  cursor: pointer; 
  margin: 0 2px;
}

.cycle-pager span.cycle-pager-active { color: #939598;}

.cycle-pager > * { cursor: pointer;}
/* END Slideshow styles */

#template-disclaimer, .template-disclaimer { border-top: 1px solid #dddfe1; padding-top: 40px; }

#template-disclaimer h2, .template-disclaimer h2 {
  font: normal normal 500 16px 'Montserrat', Verdana, Arial, sans-serif;
  color: #58595b;
  margin: 0 0 .5em 0;
  padding: 0;
}

#template-disclaimer h4, .template-disclaimer h4 {
  font: normal normal 600 13px 'Montserrat', Verdana, Arial, sans-serif;
  color: #58595b;
  margin: .5em 0;
  padding: 0;
}

#template-disclaimer p, .template-disclaimer p {
  margin-bottom: 1em !important; 
}

.jsTrigger { float: left; }

/* hidden mobile items */
.template-marq-mobile,
.crcb-mobile-title, 
#quote-image-mobile { display: none; }
.hide-desktop, .show-mobile { display: none; }

/* Fixes for design changes that were made after pages went live. Remove after updating old LPs -B */
.row-flex-cat-2 .flex-middle { align-items: flex-end !important; }

/* ###################################################################################################### */
/* ###################################################################################################### */
/* ###################################################################################################### */
/* ###################################################################################################### */
/* ###################################################################################################### */
/* breakpoints: 320, 480, 768, 992, 1200, and 1600 */
@media screen and (max-width: 992px) {
  .row-flex { flex-wrap: wrap; }
  
  .row-flex-cat-2 { margin-bottom: 20px; }
  
  .row-flex-3, 
  .row-flex-4, 
  .row-flex-5 { margin-bottom: 30px; }
  
  .row-flex-cross-sell { background-color: #fff; padding: 0; flex-wrap: wrap; }
  a.row-flex-cs-3, a.row-flex-cs-4 { margin: 0 0 30px 0; }
  
  .template_row_category_1_text_left, 
  .template_row_category_1_text_right { overflow: hidden; }

  .category_1_copy { 
    width: 300px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 3px;
  }
  
  .template_row_feature .row-flex,
  .template_row_quote_bio .row-flex,
  .template_row_video .row-flex  { flex-wrap: nowrap; }
  
  .template_row_feature img { width: 100%; height: auto; min-width: 0; min-height: 0; }

  .video-copy {
    padding: 0 20px 50px 10px;
    flex-shrink: 0;
  }

  
}

@media screen and (max-width: 852px) {
  .template_row_category_1_text_left img { position: relative; right: -100px; }
  .template_row_category_1_text_right img { position: relative; left: -100px; }  
}

@media screen and (max-width: 768px) {
  /* Hidden Sections for Mobile */
  .template-marq-desktop,
  .template_row_feature_carousel,
  .template_row_feature_image_carousel { display: none; }
  /* End Hidden */
  
  #template-wrap, .template-wrap { width: 100%; font-weight: 200; font-size: 16px; text-align: center; }
  .template-marq-mobile { display: block; }

  .hide-desktop, .show-mobile { display: block; }
  .hide-mobile, .show-desktop { display: none; }
  
  #template-wrap h1, .template-wrap h1 { 
    font: normal normal 200 30px/1.2em 'Montserrat', 'Avenir LT', Verdana, Arial, sans-serif; 
    margin: 0 0 13px 0;
  }
  #template-wrap h3, .template-wrap h3 { margin: 0; font-size: 20px; line-height: 1.3em; font-weight: 300; }
  
  #row-flex-cat-3 { margin-bottom: 30px; }
  
  .block-cat-content {
    padding: 40px 30px 40px 30px;
  }
  
  .block-cat-content img { width: 100%; height: auto; min-width: 0; min-height: 0; }
  
  .block-cat-content-copy {
    margin-right: 30px;
    text-align: left;
  }
  
  #faq-main { width: 80%; margin: 0 auto; padding: 0; text-align: left; }
  
  .row-flex-cross-sell { justify-content: space-around; }
  a.row-flex-cs-3 { flex: 0 1 auto;  }
  .flex-group { display: flex; flex-wrap: wrap; justify-content: space-around; margin: 0 auto; width: 100%; }
  
/* Category 1 */
  .template_row_category_1_text_left img { right: 0; margin-bottom: 30px; }
  .template_row_category_1_text_right img { left: 0; margin-bottom: 30px;  } 
  .category_1_copy { width: 100%; background-color: transparent; padding: 0; border-radius: 0; }
  
  .template_row_category_1_text_left .row-flex-cat-1, 
  .template_row_category_1_text_right .row-flex-cat-1 {
    position: relative;
    width: 80%;
    display: block;
    height: auto;
    padding: 0 !important;
    margin: 0 auto;
  }
/* End Category 1 */  
  
  .template_row_feature { width: 100%; }
  
  .template_row_feature .row-flex { flex-direction: column-reverse; }
  
  .template_row_feature img { width: 70%; height: auto; margin: 0 0 20px 0; }
  
  .feature-copy .template-section-title { text-align: center; }
  
  .template_row_video .row-flex  { flex-wrap: wrap; }
  
  .template_row_video { 
    background-color: transparent; 
    margin-bottom: 50px; 
    border: none;
  }
  .video-player { margin: 0 auto; }
  .video-player video { width: 90%; }
  .video-left { width: 100%; }
  .video-copy {
    text-align: center;
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
  .video-copy .template-section-title { text-align: center; margin-bottom: 15px; }
  .video-player-youtube, .video-player-youtube-playlist { width: 90%; margin: 0 auto; }

  #quote-image-desktop { display: none; }
  #quote-image-mobile { display: block; }
  .quote_bio_copy { width: 70%; margin: 0 auto; }
  .quote_bio_copy img { margin: 0 auto 18px auto; }
}

@media screen and (max-width: 600px) {
  .template_row_category_1_text_left img { position: relative; right: -60px; }
  .template_row_category_1_text_right img { position: relative; left: -60px; }  
}

@media screen and (max-width: 480px) {
  .jsTrigger { float: none; }
  #template-wrap, .template-wrap { max-width: 375px; }
  
  /* CTA styles */
  .cta-btn, .cta-btn:hover,
  .cta-btn-alt, .cta-btn-alt:hover, 
  .cta-btn-holiday, .cta-btn-holiday:hover,
  .cta-btn-secondary, .cta-btn-secondary:hover {
    font: normal normal 700 14px "Avenir LT", Verdana, Arial, sans-serif !important;
  }
  
  /*----Text CTA/Link styling---*/
  .cta-text, .cta-text:hover {
    font: normal normal 700 14px 'Montserrat', Verdana, Arial, sans-serif  !important;
  }
  
  /* END CTA styles */
  
  .video-player-youtube, .video-player-youtube-playlist { width: 100%; }
  
  .template_row_mobile_catchall { margin-bottom: 50px; } 
  .template_row_mobile_catchall .row-flex { flex-direction: row; }
  
  .offer-stripe, .offer-stripe-seasonal { font-weight: 700; font-size: 14px; padding: 7px 0 9px 0; height: initial; }
  
  .row-no-border, 
  .row-border, 
  .row-flex-cross-sell { position: relative; width: 92%; margin: 0 auto 50px auto; }
  .row-flex-cross-sell { margin-bottom: 0; }
  
  .row-border { /*border-bottom: 1px solid #dddfe1;*/ padding-bottom: 40px; }
  
  .label-product { font-size: 16px; }
  
  #template-marquee { margin-bottom: 36px; }
  
  .mobile-preheader { padding: 0 !important; margin: 0 0 4px 0 !important; font-weight: 800; text-transform: uppercase; }
  
  .row-flex, 
  .row-flex-cross-sell { flex-wrap: wrap; flex-direction: column; }
    
  .row-flex-3, 
  .row-flex-4, 
  .row-flex-5 { width: 100%; }
  
  .row-flex-head { margin: 12px 0 5px 0 !important; }
  
  .template-headline, 
  .faq-question { font-weight: 700; font-size: 16px; }
  
  .template-section-title { margin: 0 0 24px 0; }
  
  .template_row_number_3 .row-flex-3, 
  .template_row_number_4 .row-flex-4 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .template_row_number_3 .row-flex-head, 
  .template_row_number_4 .row-flex-head { margin-top: 0 !important; }
  
  .template_row_number_3 .row-flex-copy-block, 
  .template_row_number_4 .row-flex-copy-block { text-align: left; padding: 0; width: 227px; }
  
  .icon-number { margin: 4px 24px 0 50px; flex-shrink: 0; }
  
  .template_row_icon_3 .row-flex-3, 
  .template_row_icon_4 .row-flex-4 { margin-bottom: 40px; }
  
  .template_row_icon_3, .template_row_icon_4,
  .template_row_number_3, .template_row_number_4,
  .template_row_icon_download_4, .template_row_icon_download_5 { padding-bottom: 0; }
  
  /*.template_row_number_3 .row-flex-3:last-of-type, 
  .template_row_number_4 .row-flex-4:last-of-type,
  .template_row_icon_3 .row-flex-3:last-of-type, 
  .template_row_icon_4 .row-flex-4:last-of-type { margin-bottom: 0; }*/
  
  a.row-flex-cs-3, 
  a.row-flex-cs-4 { margin: 0 auto 40px auto; }
  
  .row-flex-cat-2, 
  .row-flex-cat-3 { border: none; /*border-bottom: 1px solid #dddfe1;*/ padding-bottom: 20px; margin-bottom: 0; }
  
  .row-flex-cat-2:first-of-type, 
  .row-flex-cat-3:first-of-type, 
  .row-flex-cat-3:nth-of-type(2) { border: none; padding-bottom: 30px; }
 
  .row-flex-cat-2, 
  .row-flex-cat-2 img { width: 100%; height: auto; }
  
  .row-flex-cat-2 .flex-row-between { display: block; } 
  
  .row-flex-cat-2 .cat-copy-box span { width: 100%; }
  
  
  /* Category 1 */
  
  .template_row_category_1_text_left, 
  .template_row_category_1_text_right {
    width: 100% !important;
  }
  .template_row_category_1_text_right img ,
  .template_row_category_1_text_left img { height: 200px; margin-bottom: 30px; }
  .template_row_category_1_text_right img { left: -46px; position: relative; }
  .template_row_category_1_text_left img { right: -46px; position: relative; }
  
  .template_row_category_1_text_left .row-flex-cat-1, 
  .template_row_category_1_text_right .row-flex-cat-1 { width: 90% }

  /* End Category 1 */
  
  .template_row_category_2 { width: 100%; margin-bottom: 16px; }
  
  .template_row_category_2 .template-headline,
  .template_row_category_3 .template-headline { }
  
  .template_row_category_2 .row-flex-cat-2 .cat-copy-box p,
  .template_row_category_3 .row-flex-cat-3 .cat-copy-box p { margin-bottom: 11px !important; }
  
  .template_row_category_2 .row-flex-cat-2 .cat-copy-box a.cta-btn-alt,
  .template_row_category_2 .row-flex-cat-2 .cat-copy-box a.cta-btn-alt:hover {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #58595b !important;
    text-transform: uppercase;
    text-decoration: none !important;
    display: block;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
  }
  
  .template_row_category_2 .row-flex-cat-2 .cat-copy-box a.cta-btn-alt::after { content: " >" }
  
  .template_row_feature { width: 100%; }
  
  .template_row_feature .row-flex { flex-direction: column-reverse; }
  
  .template_row_feature img { width: 100%; height: auto; margin: 0 0 20px 0; }
  
  .feature-copy .template-section-title { text-align: center; }
  
  .template_row_category_bullets .flex-row-between { flex-direction: column-reverse; }
  .template_row_category_bullets img { width: 100%; height: auto; margin-top: 8px; }
  .template_row_category_bullets hr {  margin: 30px 0; width: 92%; }
  
  .block-cat-border { border: none; }
  .block-cat-content { padding: 0; }
  
  .template_row_category_bullets .block-cat-content-copy { width: 75%; margin: 16px auto 0; }

  .crcb-mobile-title { display: block; }
  
  .cat-copy-box { padding-top: 14px; }
  
  .block-cat-content-copy ul li { margin: 0 0 15px 15px; text-align: left; }
  
  #faq-main { text-align: left; padding-right: 0; }
  
  #quote-image-desktop { display: none; }
  #quote-image-mobile { display: block; }
  
  .template_row_quote_bio {
    background-color: #fff;
    padding: 0;
    margin-bottom: 50px;
  }
  
  .template_row_quote_bio hr { width: 100%; margin-bottom: 0; }
  
  .quote_bio_copy { width: 92%; margin: 0 auto; }
  
  .quote_bio_copy img { margin: 0 auto 18px auto; }
  
  blockquote {
    font: normal normal 300 20px/1.2em "Avenir LT", Verdana, Arial, sans-serif;
    margin: 0 auto 25px;
    text-align: center;
    position: relative;
    padding: 0;
    border-left: none;
  }
  
  blockquote span {
    background: none;
    padding-right: 0;
  }
  
  .template_row_quote_short blockquote { margin-bottom: 10px; }
  
  blockquote::first-letter { background: none; padding-left: 0; }
  blockquote::before { content: "\201D"; }
  blockquote::after { content: "\201D"; }
  
  .quote-additional { display: none; }
  
  .template_row_quote_short { padding: 10px 10px 15px 10px; margin-bottom: 40px; }
  
  .quote_copy { width: 100%; }
  
  .template_row_video { background-color: #fff; border: none; }
  
  .template_row_video .video-player video { width: 100%; }
  
  .video-left { width: 100%; }
  
  .video-copy {
    text-align: center;
    padding: 0;
    width: 92%;
    margin: 0 auto;
  }
  
  .video-copy .template-section-title { text-align: center; margin-bottom: 15px; }
  

  
  .row-flex-cat-3 { width: 100%; max-width: 318px; }
  
  .row-flex-cat-3 img { width: 100%; }
  
  .feature-copy { padding: 0; width: 93%; margin: 0 auto; }
  
  a.row-download { margin-bottom: 30px; }
  
  /*a.row-download:last-of-type { margin-bottom: 0; }*/
  
  span.hide-desktop, span.show-mobile { display: inline; }
  
  footer { border-top: 1px solid #dddfe1; }
  

  
}

