
.il_cta_section .main .cta_button{display:inline-block;}

/* ==========================================================================
   General fonts  definition.
   Change the line above with whatever Google font call of your liking
   ========================================================================== */

@import url('https://fonts.googleapis.com/css?family=Libre+Franklin:300,300i,400,400i,500,500i,600,600i,700,700i|Work+Sans:200,300,400,500,600&display=swap');
/* @import url('https://use.fontawesome.com/releases/v5.8.1/css/all.css'); */
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/venobox/1.8.6/venobox.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css');

/* ==========================================================================
   HS COS Boilerplate v1.4.0                                
   ========================================================================== */




/* ==========================================================================

   Index:         

  1. BASE STYLES   
    - Variables
    - Macros
    - Base
    - Typography

  2. COS STRUCTURE
    - Structure
    - Header
    - Content
    - Footer

  3. MAIN NAVIGATION
    - Custom Menu Primary
    - Mobile Menu

  4. TEMPLATE MODULE CLASSES
    - Common Template Classes
    - Site Pages
    - Landing Pages
    - System Pages

  5. COS COMPONENTS
    - Blog
    - Forms
    - Buttons

  6. DOMAIN SPECIFICS
  
  7. MISCELLANOUS

  8. MOBILE MEDIA QUERIES

   ========================================================================== */








/* ==========================================================================


   1. BASE STYLES                                             


   ========================================================================== */





/* ==========================================================================
   Variables                                               
   ========================================================================== */


/**
 * Find the most consistently used font styles, colors, and container widths 
 * for your site and assign them to the jinja variables below for easy use 
 * and reference. 
 *
 * Apply the variable as shown below.  Ignore the jingja comment tags.
 *
 * 
 */

/* Colors */
 





   
  
 
 







 

 
 


/* Containers */
 





/* ==========================================================================
   Macros                                                  
   ========================================================================== */


/** 
  * Create jinja macros for CSS3 properties that need browser prefixes.
  *
  * Apply the style as shown below on it's own CSS property line.  
  * Ignore the jinja comment tags. 
  *
  *  The variable name must be a signle word (no dashes). In the example below, the variable name is cssTransition.
  */

 

/** 
  * Example of how to apply the above macro (ignore the jinja comment tags):
  *
  * a {
  *   color: red;
  *   font-size: 12px;
  *    
  * }
  */




/* ==========================================================================
   Base                                                    
   ========================================================================== */


/** 
 * Box Sizing
 * 
 * Applies a natural box layout model to all elements so that width and padding 
 * are essentially combined, making responsive styles easier to manage.
 */

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
html,body{
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  background: #CCC;
  overflow-x: hidden;
}

/* Website background color and default font styles */
body {
  color: #23272b;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media(max-width: 1023px){
    body {
        font-size: 14px;
    }
}

/**
 * Page Center
 *
 * Apply .page-center to full-width modules.
 */

.container-fluid .row-fluid .page-center {
  float: none;
  max-width: 1120px;
  margin: 0 auto;
}

a { color: #ef6544; text-decoration: none; transition: all 0.3s ease; }
a:hover, a:focus { color: #000; }

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #23272b;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #23272b;
  text-shadow: none;
}




/* ==========================================================================
   Typography
   ========================================================================== */


/* Basic text */
p {
    line-height:1.6;
    margin-bottom: 25px; 
    margin-top: 0;
} 
small {}
strong {}
em {}
cite {
    text-transform: none;
    display: block;
    font-weight: 400;
    font-style: normal;
}
code {}
pre {}

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

sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Headings */
h1, h2, h3, h4, h5, h6{
  font-family: 'Work Sans', sans-serif; 
}
h1 {
  font-size: 58px;
  line-height: 1.12;
  margin-top: 0px;
  margin-bottom: 0px;
}
h2 {
  font-size: 40px;
  line-height: 1.12;
  margin-top: 0px;
  margin-bottom: 0px;
}
h3 {
  font-size: 23px;
  line-height: 1.12;
  margin-top: 0px;
  margin-bottom: 0px;
}
h4 {
  font-size: 20px;
  line-height: 1.12;
   margin-top: 0px;
  margin-bottom: 0px;
}
h5{
    font-size: 16px;
    line-height: 1.12;
}
h6{
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

@media(max-width: 1023px){
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 14px;
  }
  h5{
    font-size: 14px;
  }
  h6{
    font-size: 12px;
  }
    
}

p, ul, ol, pre, table, blockquote {
  margin-bottom: 25px;
}
/* Lists */
ul, ol {
    margin: 25px 0;
    padding: 0 0 0 47px;;
}
ul ul, ul ol, ol ol, ol ul {}
li {}

ul.unstyled, ol.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul{list-style:inherit;}
/* Quotes */
blockquote {
    font-size: 17px;
    font-style: italic;
    border-left: 4px solid #EAF4FF;
    margin-left: 0;
    padding-left: 25px;
}
blockquote p {}
blockquote small {
    font-style: normal;
    margin-top: 25px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}
blockquote small:before {}

q:before, q:after, blockquote:before, blockquote:after {}

/*===============Tables===================*/

.table {
    width: 100%;
    margin-bottom: 25px;
}
table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: .9em;
}
.table thead th {
    vertical-align: bottom;
}
.table th {
    font-weight: bold;
}
.table th, .table td {
    padding: 8px;
    line-height: 33px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table thead th {
    vertical-align: bottom;
}
.table th {
    font-weight: bold;
}

.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}

.table tbody + tbody {
  border-top: 2px solid #dddddd;
}

.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}

.table-bordered {
  border: 1px solid #dddddd;
  border-collapse: separate;
  *border-collapse: collapsed;
  border-left: 0;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.table-bordered th,
.table-bordered td {
  border-left: 1px solid #dddddd;
}

.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}

.table-bordered thead:first-child tr:first-child th:first-child,
.table-bordered tbody:first-child tr:first-child td:first-child {
  -webkit-border-top-left-radius: 4px;
          border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
}

.table-bordered thead:first-child tr:first-child th:last-child,
.table-bordered tbody:first-child tr:first-child td:last-child {
  -webkit-border-top-right-radius: 4px;
          border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
}

.table-bordered thead:last-child tr:last-child th:first-child,
.table-bordered tbody:last-child tr:last-child td:first-child {
  -webkit-border-radius: 0 0 0 4px;
     -moz-border-radius: 0 0 0 4px;
          border-radius: 0 0 0 4px;
  -webkit-border-bottom-left-radius: 4px;
          border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
}

.table-bordered thead:last-child tr:last-child th:last-child,
.table-bordered tbody:last-child tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 4px;
          border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
}

.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: #f9f9f9;
}

.table tbody tr:hover td,
.table tbody tr:hover th {
  background-color: #f5f5f5;
}

table .span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}

table .span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}

table .span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}

table .span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}

table .span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}

table .span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}

table .span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}

table .span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}

table .span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}

table .span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}

table .span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}

table .span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}

table .span13 {
  float: none;
  width: 1004px;
  margin-left: 0;
}

table .span14 {
  float: none;
  width: 1084px;
  margin-left: 0;
}

table .span15 {
  float: none;
  width: 1164px;
  margin-left: 0;
}

table .span16 {
  float: none;
  width: 1244px;
  margin-left: 0;
}

table .span17 {
  float: none;
  width: 1324px;
  margin-left: 0;
}

table .span18 {
  float: none;
  width: 1404px;
  margin-left: 0;
}

table .span19 {
  float: none;
  width: 1484px;
  margin-left: 0;
}

table .span20 {
  float: none;
  width: 1564px;
  margin-left: 0;
}

table .span21 {
  float: none;
  width: 1644px;
  margin-left: 0;
}

table .span22 {
  float: none;
  width: 1724px;
  margin-left: 0;
}

table .span23 {
  float: none;
  width: 1804px;
  margin-left: 0;
}

table .span24 {
  float: none;
  width: 1884px;
  margin-left: 0;
}





.text-muted{
    color: #94ADC5;
}
.text-warning{
    color: #FF1E00;
}
.text-danger{
    color: #F25A57;
}
.text-success{
    color: #43B86A;
}
.text-info{
    color: #00B5DA;
}


figure{
  margin: 0; 
}


/* ==========================================================================


   2. COS STRUCTURE                                            


   ========================================================================== */
.section{
    padding: 122px 0;
}
.section.bordered{
    border-bottom: solid 1px #dcdfe6;
}

@media(max-width: 1023px){
    .section{
        padding: 46px 0;
    }
}
@media(max-width: 767px){
    .section{
        padding: 37px 0;
    }
}

/* ==========================================================================
   Structure                                               
   ========================================================================== */


/* The outer wrappers of your website */
.wrapper,
.row-fluid .wrapper[class*="span"]{
    max-width: 1120px;
    margin: 0 auto;
    display: block;
    padding-top: 0;
    float: none;
}
.header-container-wrapper, 
.body-container-wrapper, 
.footer-container-wrapper {
  max-width: 1900px;
  margin: 0 auto;
}

/* The inner wrappers of your website */
.header-container, 
.body-container, 
.footer-container {
}

@media (max-width: 1199px) {
    .wrapper,.row-fluid .wrapper[class*="span"]{
        width: 100%;
        max-width: 920px;
    }
}
@media (max-width: 1023px) {
    .wrapper,.row-fluid .wrapper[class*="span"]{
        width: 100%;
        max-width: 738px;
    }
}

@media (max-width: 767px) {
  .wrapper,.row-fluid .wrapper[class*="span"]{
    width: 90%;
    max-width: 90%;
  }
}


/* ==========================================================================
   Header
   ========================================================================== */


/* .header-container-wrapper {
  position: fixed;
  z-index: 3;
  width: 100vw;
  top: 0;
  left: 0;
  
  transition: 0.3s ease all;
} */
.header-container {}


/* Header */
.header{
  position: relative;
  padding: 29px 40px 23px 40px;
  transition: 0.3s ease all;
}

.header .logo a:not(.mobile-nav) img{
  max-height: 56px;
  width: auto;
  transition: 0.3s ease all;
}
.header .logo .mobile-nav{
  z-index: 10;
  display: none;
}
.header .logo .mobile-nav *{
  line-height: 25px;
}

.header .main-nav{
  display: flex;
  justify-content: center;
  
  position: absolute;
  top: 50%;
  left: 45%;
  width: 75%;
  transform: translate(-50%, -50%);
}


.header .main-nav>span,
.header .main-nav>span>div{
/*   height: 34px; */
}
.header .main-nav li a{
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  color: #171738;
  text-transform: uppercase;
  max-width: inherit;
  padding: 12px 24px;
}
.header .main-nav li a:hover{
  color: #ef6544;
}

.header .right-col{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  
}

.header .right-col .cta_button{
  padding: 10px 20px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  border-radius: 4px;
}
.header .right-col .cta_left .cta_button{
  border: 2px solid rgba(0,0,0,0);
  background: none;
  color: #171738;
  margin-right: 20px;
}
.header .right-col .cta_left .cta_button:hover{
  color: #FFF;
  border: 2px solid #171738;
  background-color: #171738;
}
.header .right-col .cta_right .cta_button{
  border: 2px solid #ef6544;
  background-color: #ef6544;
  color: #FFF;
}
.header .right-col .cta_right .cta_button:hover{
  color: #ef6544;
  background-color: #FFF;
}

/* Sticky Header */
.header.sticky{
  background: #FFF; 
  padding: 19px 40px 13px 40px;
  box-shadow: 0 2px 54px 0 rgba(23, 23, 56, 0.15);
}

/* @media(min-width: 1900px){
  .header-container-wrapper {
    left: 50%;
    transform: translateX(-50%);
  }
} */
@media(max-width: 1279px){
  .header .main-nav>span,
  .header .main-nav>span>div{
    height: 34px;
  }
  .header .main-nav li a{
    font-size: 10px;
    padding: 10px 10px !important;
    line-height: 12px;
  }
  .header .right-col .cta_left .cta_button{
    font-size: 10px;
    margin-right: 5px;
    line-height: 12px;
    padding: 10px !important;
  }
}
@media(max-width: 1023px){
  
  body.sidr-open .header-container-wrapper{
    left: 260px; 
  }
  
  .header{
    padding: 12px 20px;
  }
  .header .logo{
    display: flex;
    align-items: center;
  }
  .header .logo a:not(.mobile-nav) img{
    max-height: 45px;
  }
  .header .logo .mobile-nav{
    display: inline-block;
    margin-right: 20px;
  } 
  .header .main-nav{
    display: none; 
  }
  .header .right-col{
    right: 20px; 
  }
  .header .right-col .cta_button{
    font-size: 11px;
  }
  
  /* Sticky Header */
  .header.sticky{
    padding: 12px 20px;
  }
}
@media(max-width: 767px){
  .header{
    padding: 16px 20px;
  }
  .header .logo a:not(.mobile-nav) img{
    max-height: 36px;
  }
  
  .header .right-col .cta_button{
    padding: 10px 20px;
  }
  .header .right-col .cta_left .cta_button{
    margin: 0; 
  }
  body.sidr-open .header .logo a:not(.mobile-nav) img{
    opacity: 0; 
  }
}

/* ==========================================================================
   Content                                                 
   ========================================================================== */


.body-container-wrapper {
  background:#fff;
/*   overflow:hidden; */
  width: 100vw;
  position:relative;
  z-index:2;
}
.body-container {}


/* Unique Pages
   ========================================================================== */

/* Homepage */

/* Contact Us */

/* About Us */


/* Modular & Reusable Components
   ========================================================================== */

/* Callouts */

/* Social Media Custom Icons */

/* Additional Menus aside from the Main Nav */


/* ==========================================================================
   FOOTER
   ========================================================================== */




.footer-container-wrapper {}
.footer-container {}

/*============================================================
            Footer Styling
===========================================================*/

.footer{
    background:#f3f4f5;
    padding: 66px 0 84px 0;
}

.footer .left-col{
}
.footer .left-col .logo img{
  margin-bottom: 22px; 
}
.footer .left-col .address,
.footer .left-col .copyright{
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.83;
  letter-spacing: normal;
  color: #64737e;
  margin-bottom: 12px;
}
.footer .left-col .shopify{
  margin: 10px 0 38px 0;
}
.footer .left-col ul.social{
  list-style: none;
  padding: 0;
}
.footer .left-col ul.social li{
  display: inline-block;
}
.footer .left-col ul.social li img{
  width: 32px;
  height: auto;
}
.footer .left-col ul.social li:not(:last-child){
  margin-right: 20px; 
}
.footer .menu-col .menu-col_title{
  font-size: 24px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: #a7adba;
  margin-bottom: 34px;
  font-family: 'Work Sans', sans-serif;
}
.footer .menu-col .hs-menu-wrapper.hs-menu-flow-vertical>ul {
  margin-bottom: 0;
  padding: 0;
}

.footer .menu-col .hs-menu-wrapper.hs-menu-flow-vertical li {
    padding: 0;
    border-bottom: 0;
    margin: 0;
}

.footer .menu-col .hs-menu-wrapper.hs-menu-flow-vertical>ul li a {
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #171738;
  white-space: normal;
  text-transform: uppercase;
}
.footer .menu-col .hs-menu-wrapper.hs-menu-flow-vertical>ul li a:hover{
  color: #ef6544; 
}
.footer .menu-col .hs-menu-wrapper.hs-menu-flow-vertical>ul li:not(:last-child){
  margin-bottom: 34px; 
}

@media(max-width: 1023px){
  .footer{
    padding: 56px 0 131px 0;
    position: relative;
  }
  .footer>.wrapper{
    max-width: 80vw; 
  }
  .footer>.wrapper>.row-fluid-wrapper>.row-fluid>div{
    width: 100%;
    margin: 0;
  }
  .footer .left-col{
    text-align: center;
  }
  .footer .left-col .address,
  .footer .left-col .copyright{
    line-height: 22px;
    margin-bottom: 0;
  }
  .footer .left-col .shopify{
    margin: 15px 0 40px 0;
  }
  .footer .left-col ul.social{
    position: absolute;
    bottom: 67px;
    left: 50%;
    transform: translate(-50%, 50%);
    margin: 0;
  }
}
@media(max-width: 767px){
  .footer{
    padding: 56px 0 138px 0;
    position: relative;
  }
  .footer>.wrapper{
    max-width: 251px; 
  }
  .footer .left-col{
    text-align: left;
  }
  .footer .left-col .logo img{
    max-height: 36px;
    margin-bottom: 19px;
  }
  .footer .left-col .shopify img{
    max-height: 36px;
  }
  .footer .left-col ul.social{
    bottom: 40px;
    transform: translate(-50%, -50%);
    width: 251px;
    display: flex;
    justify-content: space-between;
  }
  .footer .span8 .menu-col:not(:last-child){
    margin-bottom: 50px; 
  }
  .footer .menu-col .menu-col_title{
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .footer .menu-col .hs-menu-wrapper.hs-menu-flow-vertical>ul li:not(:last-child){
    margin-bottom: 24px; 
  }
}


/*============================================================
            FOOTER Tablet Responsive
===========================================================*/

@media (max-width:1024px){


}


/*============================================================
            FOOTER Mobile Responsive
===========================================================*/

@media (max-width:767px){



}




/* ==========================================================================


   4. TEMPLATE MODULE SELECTORS                                         


   ========================================================================== */





/* Common Template Selectors                                             
   ========================================================================== */

body.one-column {}
body.two-column {}
body.three-column {}
.content-wrapper {}
.main-content {}
.sidebar{}
.sidebar.right{}
.sidebar.left{}

/* Common One Column Selectors */
body.site-page.one-column, 
body.landing-page.one-column, 
body.error-template.one-column, 
body.password-template.one-column, 
body.subscription-template.one-column {}

body.site-page.one-column .main-content, 
body.landing-page.one-column .main-content, 
body.error-template .main-content, 
body.password-template .main-content, 
body.subscription-template .main-content {}

/* Common Two Column Selectors */
body.site-page.two-column, 
body.landing-page.two-column, 
body.blog {}  

body.site-page.two-column .main-content, 
body.landing-page.two-column .main-content, 
body.blog .blog-content {}

/* Common Three Column Selectors */
body.site-page.three-column, 
body.landing-page.three-column {}

body.site-page.three-column .main-content, 
body.landing-page.three-column .main-content {}


/* Site Pages                                            
   ========================================================================== */

/* One Column Template */
body.site-page.one-column {}
body.site-page.one-column .content-wrapper {}
body.site-page.one-column .main-content {}

/* Two Column Template */
body.site-page.two-column {}
body.site-page.two-column .content-wrapper {}
body.site-page.two-column .main-content {}
body.site-page.two-column .sidebar.right {}

/* Three Column Template */
body.site-page.three-column {}
body.site-page.three-column .content-wrapper {}
body.site-page.three-column .main-content {}


/* Landing Pages                                           
   ========================================================================== */

/* One Column Template */
body.landing-page.one-column {}
body.landing-page.one-column .content-wrapper {}
body.landing-page.one-column .main-content {}

/* Two Column Template */
body.landing-page.two-column {}
body.landing-page.two-column .content-wrapper {}
body.landing-page.two-column .main-content {}
body.landing-page.two-column .sidebar.right {}

/* Three Column Template */
body.landing-page.three-column {}
body.landing-page.three-column .content-wrapper {}
body.landing-page.three-column .main-content {}


/* System Pages                                          
   ========================================================================== */

/* Error Templates 404, 500 */
body.error-template.one-column {}
body.error-template.one-column .content-wrapper {}
body.error-template.one-column .main-content {}

/* Password template */
body.password-template.one-column {}
body.password-template.one-column .content-wrapper {}
body.password-template.one-column .main-content {}

/* Email Subscribition templates */
body.subscription-template.one-column {}
body.subscription-template.one-column .content-wrapper {}
body.subscription-template.one-column .main-content {}








/* ==========================================================================


   5. COS COMPONENTS                                        


   ========================================================================== */





/* ==========================================================================
   Blog                                         
   ========================================================================== */
.hs-rss-item-text{
    margin-top: 12px;
}

/* Blog Post and Listing Body Class */
body.blog {}

/* Blog Post */
body.hs-blog-post {}

/* Blog Listing */
body.hs-blog-listing {}

/* Blog Columns Wrapper */
.blog .content-wrapper {}


/* Blog Content Column
   ========================================================================== */

.blog .blog-content {}

/* Use this to style the main wrapper for the blog listing pages */
.blog-listing-wrapper {}

/* Use this to style the main wrapper for the blog post pages */
.blog-post-wrapper {}

/* Blog Title */
.hs-blog-header h1 a{}

/* Blog Post Title */
.post-header h2 a {}

/* Blog Author and Avatar */
#hubspot-author_data {}
#hubspot-author_data a.author-link {}
.hs-author-avatar {}
.hs-author-avatar img {}

/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item {}
.blog-listing-wrapper .post-listing .post-item .post-body {}
.blog-post-wrapper .post-body {}

/* Post Featured Image on Listings Page */
.hs-featured-image-wrapper {}
.hs-featured-image-wrapper .hs-featured-image-link {}
.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
  border-width: 0;
  max-height: 170px;
  max-width: 210px;
  height: auto;
  width: auto;
  display: inline-block !important;
  float: right;
  margin: 20px 0 20px 20px;
}

/* Read More Link */
a.more-link {}

/* Blog Topics List */
#hubspot-topic_data {}
#hubspot-topic_data a.topic-link {}

/** 
 * Blog Social Sharing icons
 *
 * Overrides defaults to better align icons and prevent overlapping 
 */

.hs-blog-social-share {
  padding: 10px 0 0 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  height: auto;
}

.hs-blog-social-share .hs-blog-social-share-item *{
  vertical-align: top !important; 
}

/** 
 * Blog Commments 
 *
 * Custom styles are listed below, as the COS does not provide default styles.
 */

#comments-listing {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  margin-top: 30px;
}
.comment {
  margin: 10px 0;
  border-top: 1px solid #ccc;
  padding: 15px 0;
}
.comment-date { font-size: 13px; text-align: right; }
.comment-from { font-weight: bold; }
.comment-body { padding: 10px 0; }

/* Pagination */
.blog-pagination {}
.blog-pagination .previous-posts-link {}
.blog-pagination .all-posts-link {}
.blog-pagination .next-posts-link {}



/* Blog Sidebar
   ========================================================================== */

.blog .blog-sidebar {}

.widget-type-post_listing ul, .hs_cos_wrapper_type_post_filter ul{
    padding-left: 0;
    margin-top: 10px;
}
.widget-type-post_listing ul li, .hs_cos_wrapper_type_post_filter ul li{
    list-style-type: none;
    margin-bottom: 25px;
    font-size: .9em;
}
.hs_cos_wrapper_type_blog_subscribe label{
    margin-top: 11px;
    display: block;
}
.hs-rss-byline {
    opacity: .7;
    font-size: 0.8em;
}
.hs-rss-item {
    margin-bottom: 50px;
}


/* Blog Modules */
.blog .blog-sidebar .widget-span {}




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


/* All Global Forms
   ========================================================================== */

/* Form Field */
body .hs-form-field {}

/* Descriptions */
body .hs-field-desc {
    font-size: .85em;
    font-style: italic;
}

/* Labels */
body label { 
    font-weight: 500;
    font-size: .9em;
}


/* One Line Inputs */
body input[type="text"],
body input[type="password"], 
body input[type="datetime"], 
body input[type="datetime-local"], 
body input[type="date"], 
body input[type="month"], 
body input[type="time"], 
body input[type="week"], 
body input[type="number"], 
body input[type="email"], 
body input[type="url"], 
body input[type="search"], 
body input[type="tel"], 
body input[type="color"],
body input[type="file"],
body textarea,
body select {
  width: 100%;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  resize: none;
}

body input[type="text"]:focus,
body input[type="password"]:focus, 
body input[type="datetime"]:focus, 
body input[type="datetime-local"]:focus, 
body input[type="date"]:focus, 
body input[type="month"]:focus, 
body input[type="time"]:focus, 
body input[type="week"]:focus, 
body input[type="number"]:focus, 
body input[type="email"]:focus, 
body input[type="url"]:focus, 
body input[type="search"]:focus, 
body input[type="tel"]:focus, 
body input[type="color"]:focus,
body input[type="file"]:focus,
body textarea:focus,
body select:focus { 
    border: 1px solid #ef6544;
    outline: none;
    }

/* Separate Styles for Multiple Line Inputs */
body textarea {}
body textarea:focus {}

/* Separate Styles for Drop Downs */
body select {}
body select:focus {}

/* Multiple Selection Inputs */
body form.hs-form .hs-form-field ul.hs-error-msgs {
  list-style: none;
  padding: 0;
  margin: -30px 0 10px 0;
}
body form.hs-form .hs-form-field ul.hs-error-msgs li input {}
body input[type="radio"] {}
body input[type="checkbox"] {}

/* Required */
body input:focus:required:invalid, 
body textarea:focus:required:invalid, 
body select:focus:required:invalid {}

body input:focus:required:invalid:focus, 
body textarea:focus:required:invalid:focus, 
body select:focus:required:invalid:focus {
    border: 1px solid #FF1E00;
}

/* Placeholder Text */
::-webkit-input-placeholder { /* Webkit Browsers */
   opacity: .8; 
   font-size: .9em;
}
:-moz-placeholder { /* Firefox 18- */
   opacity: .8; 
   font-size: .9em;
}
::-moz-placeholder { /* Firefox 19+ */
   opacity: .8; 
   font-size: .9em;
}
:-ms-input-placeholder { /* IE10 */
   opacity: .8; 
   font-size: .9em;
}

.hs-error-msgs{
    list-style: none;
    padding: 0;
}

.hs-error-msgs label{
    color: #ef4a22;
    font-size: 12px;
}

.hs_error_rollup{
    text-align: center;
}
.hs_error_rollup .hs-error-msgs{
    margin: 10px 0;
}

/* Form Module
   ========================================================================== */

/* Form Field */
.hs_cos_wrapper_type_form .hs-form-field {}

/* Descriptions */
.hs_cos_wrapper_type_form .hs-field-desc {}

/* Labels */
.hs_cos_wrapper_type_form label {}
.hs_cos_wrapper_type_form .hs-form-field > label {}

/* One Line Inputs */
.hs_cos_wrapper_type_form input[type="text"],
.hs_cos_wrapper_type_form input[type="password"], 
.hs_cos_wrapper_type_form input[type="datetime"], 
.hs_cos_wrapper_type_form input[type="datetime-local"], 
.hs_cos_wrapper_type_form input[type="date"], 
.hs_cos_wrapper_type_form input[type="month"], 
.hs_cos_wrapper_type_form input[type="time"], 
.hs_cos_wrapper_type_form input[type="week"], 
.hs_cos_wrapper_type_form input[type="number"], 
.hs_cos_wrapper_type_form input[type="email"], 
.hs_cos_wrapper_type_form input[type="url"], 
.hs_cos_wrapper_type_form input[type="search"], 
.hs_cos_wrapper_type_form input[type="tel"], 
.hs_cos_wrapper_type_form input[type="color"],
.hs_cos_wrapper_type_form input[type="file"],
.hs_cos_wrapper_type_form textarea,
.hs_cos_wrapper_type_form select {}

.hs_cos_wrapper_type_form input[type="text"]:focus,
.hs_cos_wrapper_type_form input[type="password"]:focus, 
.hs_cos_wrapper_type_form input[type="datetime"]:focus, 
.hs_cos_wrapper_type_form input[type="datetime-local"]:focus, 
.hs_cos_wrapper_type_form input[type="date"]:focus, 
.hs_cos_wrapper_type_form input[type="month"]:focus, 
.hs_cos_wrapper_type_form input[type="time"]:focus, 
.hs_cos_wrapper_type_form input[type="week"]:focus, 
.hs_cos_wrapper_type_form input[type="number"]:focus, 
.hs_cos_wrapper_type_form input[type="email"]:focus, 
.hs_cos_wrapper_type_form input[type="url"]:focus, 
.hs_cos_wrapper_type_form input[type="search"]:focus, 
.hs_cos_wrapper_type_form input[type="tel"]:focus, 
.hs_cos_wrapper_type_form input[type="color"]:focus,
.hs_cos_wrapper_type_form input[type="file"]:focus,
.hs_cos_wrapper_type_form textarea:focus,
.hs_cos_wrapper_type_form select:focus {}

/* Separate Styles for Multiple Line Inputs */
.hs_cos_wrapper_type_form textarea {}
.hs_cos_wrapper_type_form textarea:focus {}

/* Separate Styles for Drop Downs */
.hs_cos_wrapper_type_form select {}
.hs_cos_wrapper_type_form select:focus {}

/* Multiple Selection Inputs */
.hs_cos_wrapper_type_form form.hs-form .hs-form-field ul.inputs-list li input {}
.hs_cos_wrapper_type_form input[type="radio"] {}
.hs_cos_wrapper_type_form input[type="checkbox"] {}

/* Blog Comment Form
   ========================================================================== */

/* Label */
#comment-form .hs-form-field > label {}
#comment-form label {}

/* Inputs */
#comment-form input[type="text"] {}
#comment-form input[type="text"]:focus {}

#comment-form textarea {}
#comment-form textarea:focus {}

#comment-form input[type="checkbox"] {}

/* Error */
body .hs-common-error-message {}


/* Blog Subscription Form
   ========================================================================== */

/* Label */
#hs_form_target_blog_subscription .hs-form-field > label {}
#hs_form_target_blog_subscription label {}

/* Inputs */
#hs_form_target_blog_subscription input[type="email"] {}
#hs_form_target_blog_subscription input[type="email"]:focus {}

#hs_form_target_blog_subscription input[type="radio"] {}


/* Google Search Form
   ========================================================================== */

/* Label */
.widget-type-google_search label {}

/* Input */
.widget-type-google_search input[type="text"] {}
.widget-type-google_search input[type="focus"] {}


/* Multi Column Form
   ========================================================================== */

body .hs-form fieldset.form-columns-1 {}
body .hs-form fieldset.form-columns-1 .hs-form-field {}

body .hs-form fieldset.form-columns-2 {}
body .hs-form fieldset.form-columns-2 .hs-form-field {}

body .hs-form fieldset.form-columns-3 {}
body .hs-form fieldset.form-columns-3 .hs-form-field {}

/* Multiple Selection Inputs */
body form.hs-form .hs-form-field ul.inputs-list li input {}
body input[type="radio"] {}
body input[type="checkbox"] {}
body form.hs-form fieldset { max-width: none; }
body form.hs-form fieldset .hs-form-field { padding: 0 10px 0 0; }
body form.hs-form fieldset[class*="form-columns"] .input { margin-right: 0; }
body form.hs-form fieldset[class*="form-columns"] .hs-input { width: 100%; }
body form.hs-form fieldset[class*="form-columns"] .hs-input[type="checkbox"] { width: auto; }
body form.hs-form fieldset.form-columns-3 .hs-form-field { width: 33.33%; }

@media (max-width: 400px) {
  body form.hs-form fieldset .hs-form-field { padding: 0; }
  body form.hs-form fieldset.form-columns-3 .hs-form-field,
  body form.hs-form .form-columns-2 .hs-form-field .hs-input, 
  body form.hs-form .form-columns-3 .hs-form-field .hs-input { width: 100%; }
  body form.hs-form .form-columns-3 .hs-form-field .hs-input[type="checkbox"] { width: auto; }
}




/* ==========================================================================
   Buttons                                              
   ========================================================================== */


/* All Global Buttons (Excluding CTAs)
   ========================================================================== */

body .hs-button.primary,
body input[type="submit"],
body input[type="button"] {
  cursor: pointer;
  -webkit-appearance: none;
  font-family: 'futura-pt';
  font-size: 18px;
  text-decoration: none !important;
  border: 2px solid #ff2e63;
  padding: 15px 30px;
  background: #ff2e63;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.8px;
  white-space: normal; /* Required for iOS! */
  word-wrap: break-word;
  line-height: 1;
  outline: 0;
  border-radius: 3px;
}

body .hs-button.primary:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {
    color: #ff2e63;
    background: #FFF;
}

body .hs-button.primary:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus {}

@media(max-width: 1023px){
    body .hs-button.primary,
    body input[type="submit"],
    body input[type="button"] {
        padding: 14px 24px;   
    }
}


/* Form Module Button
   ========================================================================== */

.hs_cos_wrapper_type_form .hs-button.primary.large {}
.hs_cos_wrapper_type_form .hs-button.primary.large:hover {}
.hs_cos_wrapper_type_form .hs-button.primary.large:focus {}


/* Blog Comment Button
   ========================================================================== */
#add-comment-button.hs-button.primary {}
#add-comment-button.hs-button.primary:hover {}
#add-comment-button.hs-button.primary:focus {}


/* Blog Subscription Button
   ========================================================================== */
#hs_form_target_blog_subscription .hs-button.primary.large {}
#hs_form_target_blog_subscription .hs-button.primary.large:hover {}
#hs_form_target_blog_subscription .hs-button.primary.large:focus {}


/* Google Search Button
   ========================================================================== */
.widget-type-google_search .hs-button.primary {}
.widget-type-google_search .hs-button.primary:hover {}
.widget-type-google_search .hs-button.primary:focus {}


/* CTA Buttons
   ========================================================================== */

/** 
 * Override global CTA styles by wrapping the CTA module in a module group 
 * that has an ID, and use that ID to prefix your CTA selector. Example shown below.
 *
 * All overriding properties require !important tags. 

.cta_button{
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-block;
  outline: 0;
  background-color: #ef6544;
  border: 2px solid #ef6544;
  border-radius: 4px;
  padding: 10px 20px;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
  white-space: nowrap;

}
.cta_button:hover{
  color: #ef6544;
  background: #FFF;
}

.cta_button.outlined{
  background: none !Important;
  color: #ef6544;
  border: 1px solid #ef6544;
}


*/
/* ==========================================================================


   6. DOMAIN ESPECIFICS                                        


   ========================================================================== */
   





/* ==========================================================================


   7. MISCELLANOUS                                        


   ========================================================================== */





/** 
 * Styles that do not fit into available sections above can go here.
 * For example, one would place 3rd party plugin overriding styles here.
 *
 * This section is NOT for 'Custom' styles.  All custom styles must go in the
 * proper sections above.
 *
 * For instance, custom header and footer styles must go in the HEADER and 
 * FOOTER sections.  Custom styles for anything in-between the header and footer 
 * (such as, styles that are unique to the HOMEPAGE only), must go in the 
 * CONTENT section.
*/ 








/* ==========================================================================


   7. MOBILE MEDIA QUERIES                              


   ========================================================================== */



   

/* Screen sizes smaller than site maxWidth (.page-center)
   ========================================================================== */

@media (max-width: 1120px) {}


/* Landscape tablet and smaller devices
   ========================================================================== */

@media (max-width: 767px) {}
     

/* Landscape phones and smaller devices
   ========================================================================== */

@media (max-width: 479px) {
}


/*** CompanyModules ***/

/* Global - What They Say */
.global-section-testimonial{
  position: relative;
  z-index: 2; 
}
.global-section-testimonial .il_two_col>.wrapper>.title{
  margin-bottom: 67px; 
}
.global-section-testimonial .il_two_col .image-col{
  background: #171738;
  position: relative;
  width: 53%;
}
.global-section-testimonial .il_two_col .image-col:after{
  content: '';
  position: absolute;
  float: left;
  top: 0;
  left: 100%;
  background-color: #171738;
  height: 100%;
  width: 7vw;
}
.global-section-testimonial .il_two_col .image-col:before{
  content: '';
  position: absolute;
  bottom: -50px;
  left: -70px;
  z-index: -1;
  width: 140px;
  height: 100px;
  background-image: url(https://www.privy.com/hubfs/assets_aug_2019/global/dotted-bg-icon.svg);
  animation: float 6s ease-in-out infinite;
}
.global-section-testimonial .il_two_col .inner-wrapper .image-col img{
  margin-top: -32px; 
}
.global-section-testimonial .il_two_col .content-col{
  justify-content: flex-start; 
  width: 47%;
  padding: 20px 0;
}
.global-section-testimonial .il_two_col .content-col .inner{
  max-width: 445px;
}
.global-section-testimonial .il_two_col .content-col .cta .hs_cos_wrapper_type_cta:before{
  content: '';
  display: inline-block;
  width: 80px;
  height: 2px;
  line-height: 19px;
  background: #ef6544;
  vertical-align: middle;
  margin-right: 16px;
}
.global-section-testimonial .il_two_col .content-col .cta{
  display: flex;
  justify-content: space-between;
}
.global-section-testimonial .il_two_col .content-col .cta .cta_button{  
  font-size: 12px;
  font-weight: bold;
  background: none;
  padding: 0;
  border: none;
  max-width: 80px;
  white-space: normal;
  box-shadow: none;
  margin: 0;
}
.global-section-testimonial .il_two_col .content-col .cta .cta_button:hover{  
  color: #171738; 
}

.global-section-testimonial .il_two_col .content-col .cta>.hs_cos_wrapper_type_cta:not(:first-child){
  margin: 0 !important; 
}
@media(max-width: 1279px){
  .global-section-testimonial .il_two_col .image-col:after{
    width: 5vw;
  }
  .global-section-testimonial .il_two_col .content-col{
    padding: 20px;
  }
}
@media(max-width: 1023px){
  
  .global-section-testimonial .il_two_col>.wrapper{
    width: 100%;
    max-width: 100%;
  }
  .global-section-testimonial .il_two_col>.wrapper>.title{
    margin-bottom: 69px;
  }
  .global-section-testimonial .il_two_col .inner-wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .global-section-testimonial .il_two_col .inner-wrapper>div{
    width: 100%; 
  }
  
  .global-section-testimonial .il_two_col .inner-wrapper .image-col{order: 1}
  .global-section-testimonial .il_two_col .inner-wrapper .image-col:before,
  .global-section-testimonial .il_two_col .image-col:after{
    display: none; 
  }
  .global-section-testimonial .il_two_col .inner-wrapper .content-col{
    order: 2;
    padding: 48px 0 0 0;
  }
  
  .global-section-testimonial .il_two_col .inner-wrapper .content-col .inner {
    max-width: 375px;
    margin: 0 auto;
  }
  .global-section-testimonial .il_two_col .content-col .cta .hs_cos_wrapper_type_cta:before{
    width: 60px;
  }
}
@media(max-width: 767px){
  
  .global-section-testimonial .il_two_col .inner-wrapper .image-col{
    margin-bottom: 95px;
  }
  .global-section-testimonial .il_two_col .inner-wrapper .content-col{
    padding: 21px 0 0 0;
  }
  .il_two_col .image-col figure figcaption{
    width: 90%;
    text-align: center;
    bottom: -23px;
    left: 50%;
    transform: translate(-50%,100%);
  }
  .il_two_col .image-col figure figcaption p{
    color: #171738;
  }
  .global-section-testimonial .il_two_col .inner-wrapper .content-col .content{
    text-align: center;
  }
  .global-section-testimonial .il_two_col .content-col .cta{
    justify-content: space-around;
  }
  .global-section-testimonial .il_two_col .inner-wrapper .content-col .inner {
    max-width: 280px;
  }
  .global-section-testimonial .il_two_col .content-col .cta .hs_cos_wrapper_type_cta:before{
    display: none;
    margin: 0;
  }
  .global-section-testimonial .il_two_col .content-col .cta .cta_button{
    max-width: inherit; 
  }
}


/* Images */
img {
    max-width: 100%;
    height: auto;
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: bottom; /* Suppress the space beneath the baseline */
}

img.alignRight{
    margin: 0 0 5px 15px;
}

img.alignLeft{
    margin: 0 15px 5px 0;
}

/* Reduces min-height on bootstrap structure */
/*.row-fluid [class*="span"] { min-height: 1px; }*/

/* Blog Social Sharing */
.widget-type-social_sharing, .widget-type-follow_me{
    margin-top: 11px;
}

.hs-blog-social-share .hs-blog-social-share-list {
  margin: 0;
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item {
/*   height: 30px; */
}
@media (max-width: 479px){
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item:nth-child(2) {
    float: none !important; /* Stack social icons into two rows on phones */
  }
}

/* Videos */
video {
    max-width: 100%;
    height: auto;
}

/* Date Picker */
#calroot {
    width: 202px !important;
    line-height: normal;
}
#calroot,
#calroot *,
#calroot *:before,
#calroot *:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
 
#calroot select {
    min-height: 0 !important;
    padding: 1px 2px !important;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet MS", Verdana, sans-serif !important;
    font-size: 10px !important;
    line-height: 18px !important;
    font-weight: normal !important;
}
 
#caldays {
    margin-bottom: 4px;
}

/* Embed Container (iFrame, Object, Embed) */
.hs-responsive-embed {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}
.hs-responsive-embed iframe, 
.hs-responsive-embed object, 
.hs-responsive-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.hs-responsive-embed,
.hs-responsive-embed.hs-responsive-embed-youtube,
.hs-responsive-embed.hs-responsive-embed-wistia,
.hs-responsive-embed.hs-responsive-embed-vimeo {
    padding-bottom: 56.25%;
}
.hs-responsive-embed.hs-responsive-embed-instagram {
    padding-bottom: 116.01%;
}
.hs-responsive-embed.hs-responsive-embed-pinterest {
    height: auto;
    overflow: visible;
    padding: 0;
}
.hs-responsive-embed.hs-responsive-embed-pinterest iframe {
    position: static;
    width: auto;
    height: auto;
}
iframe[src^="http://www.slideshare.net/slideshow/embed_code/"] {
    width: 100%;
    max-width: 100%;
}
@media (max-width: 568px) {
    iframe {
        max-width: 100%;
    }
}

/* Forms */

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"]
{
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 48px;
    padding-left: 17px;
    margin-bottom: 26px;
    border: solid 1px #cccfda;
}
textarea{
    min-height:150px;
    border: solid 1px #cccfda;
    padding: 17px;
    margin-bottom:26px;
}
select{
   -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
   height:50px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    padding-left: .5em;
    margin-bottom: 25px;
   background: url(//cdn2.hubspot.net/hub/358710/file-2408982178-png/IL-Boilerplate-images/dropdown-arw.png) 100% center no-repeat;
}

/* System Template Forms */
#email-prefs-form .email-edit {
    width: 100% !important;
    max-width: 507px !important;
}
#hs-pwd-widget-password {
    height: auto !important;
}

/* Menus */
.hs-menu-wrapper ul {
    
}

/* Horizontal Menu
   ========================================================================== 

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
    list-style: none;
    margin: 0;
    font-size: .9em;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    display: inline-block;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul:before {
    content: " ";
    display: table;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul:after {
    content: " ";
    display: table;
    clear: both;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
  float: left;
  line-height: 1;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  max-width: inherit;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
    position: relative;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    position: absolute;
    z-index: 10;
    left: 15px;
    background: #EBEFF2;
    top: 25px;
    padding: 25px;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    display: block;
    white-space: nowrap;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 100%;
    top: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
}
.row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch {
    position: relative;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul {
    margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children {
    position: static;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    display: none;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper {
    display: block;
    visibility: visible;
    opacity: 1;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:before {
    content: " ";
    display: table;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:after {
    content: " ";
    display: table;
    clear: both;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li {
    float: left;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
    display: inline-block;
}

/* Vertical Menu
   ========================================================================== 

.hs-menu-wrapper.hs-menu-flow-vertical {
    width: 100%;
}
.hs-menu-wrapper.hs-menu-flow-vertical ul {
    list-style: none;
    margin: 0;
    font-size: .9em;
}
.hs-menu-wrapper.hs-menu-flow-vertical li{
}
.hs-menu-wrapper.hs-menu-flow-vertical li a {
    display: block;
    text-decoration: none;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul {
    margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-menu-depth-1 > a {
    width: auto;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children {
    position: relative;
}

/* Flyouts 
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    position: absolute;
    z-index: 10;
    left: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    display: block;
    white-space: nowrap;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 100%;
    top: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 767px) {
  
    .hs-menu-wrapper, .hs-menu-wrapper * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 100%;
    }
    .hs-menu-wrapper.hs-menu-flow-horizontal ul {
        list-style: none;
        margin: 0;
        display: block;
    }
    .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
        display: block;
    }
    .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
        float: none;
    }
    .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a,
    .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a,
    .hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
        display: block;
    }

    /* Stacking Horizontal Nav for Mobile 
    .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
    }
    .hs-menu-wrapper.hs-menu-flow-horizontal ul ul ul {
        padding: 0;
    }
    .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
        white-space: normal;
    }

    /* Stacking Vertical Nav for Mobile
    .hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper  {
        position: static;
        opacity: 1;
        visibility: visible;
    }
}

.hs-menu-wrapper.hs-menu-flow-vertical.no-flyouts .hs-menu-children-wrapper {
    visibility: visible;
    opacity: 1;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.no-flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    display: block;
    visibility: visible;
    opacity: 1;
}
*/
/* Space Module */
.widget-type-space {
    visibility: hidden;
}

/* Blog Author Section */
.hs-author-social-links {
    display: inline-block;
}
.hs-author-social-links a.hs-author-social-link {
    width: 24px;
    height: 24px;
    border-width: 0px;
    border: 0px;
    line-height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    display: inline-block;
    text-indent: -99999px;
}
.hs-author-social-links a.hs-author-social-link.hs-social-facebook {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/facebook-24x24.png");
}
.hs-author-social-links a.hs-author-social-link.hs-social-linkedin {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/linkedin-24x24.png");
}
.hs-author-social-links a.hs-author-social-link.hs-social-twitter {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/twitter-24x24.png");
}
.hs-author-social-links a.hs-author-social-link.hs-social-google-plus {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/googleplus-24x24.png");
}

/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

/* Wrapper */
.hs_cos_wrapper_type_image_slider {
    display: block;
    overflow: hidden
}

/* Browser Resets */
.hs_cos_flex-container a:active,
.hs_cos_flex-slider a:active,
.hs_cos_flex-container a:focus,
.hs_cos_flex-slider a:focus  {outline: none;}
.hs_cos_flex-slides,
.hs_cos_flex-control-nav,
.hs_cos_flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* FlexSlider Necessary Styles
*********************************/
.hs_cos_flex-slider {margin: 0; padding: 0;}
.hs_cos_flex-slider .hs_cos_flex-slides > li {display: none; -webkit-backface-visibility: hidden; position: relative;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.hs_cos_flex-slider .hs_cos_flex-slides img {width: 100%; display: block; border-radius: 0px;}
.hs_cos_flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .hs_cos_flex-slides element */
.hs_cos_flex-slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .hs_cos_flex-slides {display: block;}
* html .hs_cos_flex-slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */

/* FlexSlider Default Theme
*********************************/
.hs_cos_flex-slider {margin: 0 0 60px; background: #fff; border: 0; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; zoom: 1;}
.hs_cos_flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .hs_cos_flex-viewport {max-height: 300px;}
.hs_cos_flex-slider .hs_cos_flex-slides {zoom: 1;}

.carousel li {margin-right: 5px}


/* Direction Nav */
.hs_cos_flex-direction-nav {*height: 0;}
.hs_cos_flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url(http://cdn2.hubspotqa.com/local/hub/124/file-52894-png/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
.hs_cos_flex-direction-nav .hs_cos_flex-next {background-position: 100% 0; right: -36px; }
.hs_cos_flex-direction-nav .hs_cos_flex-prev {left: -36px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next {opacity: 0.8; right: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-prev {opacity: 0.8; left: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next:hover, .hs_cos_flex-slider:hover .hs_cos_flex-prev:hover {opacity: 1;}
.hs_cos_flex-direction-nav .hs_cos_flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Direction Nav for the Thumbnail Carousel */
.hs_cos_flex_thumbnavs-direction-nav {
    margin: 0px;
    padding: 0px;
    list-style: none;
    }
.hs_cos_flex_thumbnavs-direction-nav {*height: 0;}
.hs_cos_flex_thumbnavs-direction-nav a {width: 30px; height: 140px; margin: -60px 0 0; display: block; background: url(http://cdn2.hubspotqa.com/local/hub/124/file-52894-png/bg_direction_nav.png) no-repeat 0 40%; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 1; -webkit-transition: all .3s ease;}
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-next {background-position: 100% 40%; right: 0px; }
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-prev {left: 0px;}
.hs-cos-flex-slider-control-panel img { cursor: pointer; }
.hs-cos-flex-slider-control-panel img:hover { opacity:.8; }
.hs-cos-flex-slider-control-panel { margin-top: -30px; }



/* Control Nav */
.hs_cos_flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.hs_cos_flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.hs_cos_flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
.hs_cos_flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.hs_cos_flex-control-paging li a.hs_cos_flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.hs_cos_flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.hs_cos_flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.hs_cos_flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.hs_cos_flex-control-thumbs img:hover {opacity: 1;}
.hs_cos_flex-control-thumbs .hs_cos_flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .hs_cos_flex-direction-nav .hs_cos_flex-prev {opacity: 1; left: 0;}
  .hs_cos_flex-direction-nav .hs_cos_flex-next {opacity: 1; right: 0;}
}

.hs_cos_flex-slider .caption {
    background-color: black;
    position: static;
    font-size: 2em;
    line-height: 1.1em;
    color: white;
    padding: 0px 5% 0px 5%;
    width: 100%;
    top: 40%;
    text-align: center;
}

.hs_cos_flex-slider .superimpose .caption {
    color: white;
    font-size: 3em;
    line-height: 1.1em;
    position: absolute;
    padding: 0px 5% 0px 5%;
    width: 90%;
    top: 40%;
    text-align: center;
    background-color: transparent;
}

@media all and (max-width: 400px) {
    .hs_cos_flex-slider .superimpose .caption {
        background-color: black;
        position: static;
        font-size: 2em;
        line-height: 1.1em;
        color: white;
        width: 90%;
        padding: 0px 5% 0px 5%;
        top: 40%;
        text-align: center;
    }
}

.hs_cos_flex-slider h1,
.hs_cos_flex-slider h2,
.hs_cos_flex-slider h3,
.hs_cos_flex-slider h4,
.hs_cos_flex-slider h5,
.hs_cos_flex-slider h6,
.hs_cos_flex-slider p {
    color: white;
}

/* Thumbnail only version of the gallery */
.hs-gallery-thumbnails li {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    margin-right:-4px;
}
.hs-gallery-thumbnails.fixed-height li img {
    max-height: 150px;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
}


/* responsive pre elements */

pre {
    overflow-x: auto;
}

/* responsive pre tables */

table pre {
    white-space: pre-wrap;
}

/* adding minimal spacing for blog comments */
.comment {
    margin: 10px 0 10px 0;
}

/* make sure lines with no whitespace don't interefere with layout */
.hs_cos_wrapper_type_rich_text,
.hs_cos_wrapper_type_text,
.hs_cos_wrapper_type_header,
.hs_cos_wrapper_type_section_header,
.hs_cos_wrapper_type_raw_html,
.hs_cos_wrapper_type_raw_jinja,
.hs_cos_wrapper_type_page_footer {
    word-wrap: break-word;
}

@media all and (max-width: 400px) {
/* beat recaptcha into being responsive, !importants and specificity are necessary */
#captcha_wrapper,
#recaptcha_area,
#recaptcha_area table#recaptcha_table,
#recaptcha_area table#recaptcha_table .recaptcha_r1_c1
{ width: auto !important; overflow: hidden; }
#recaptcha_area table#recaptcha_table .recaptcha_r4_c4
{ width: 67px !important; }
#recaptcha_area table#recaptcha_table #recaptcha_image
{ width:280px !important; }
}


iframe[name=google_conversion_frame] {
    position: absolute;
    width: 0;
    height: 0;
    z-index: -10000;
    overflow: hidden;
    pointer-events: none;
}

/* Custom CSS utility classes */
@media (min-width: 768px) {
    .equal-height-container > .row-fluid-wrapper > .row-fluid {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: stretch;
        -moz-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}



* {
    -webkit-tap-highlight-color: transparent;
}

.slick-slide{outline: 0;}


.align-center {
    text-align:center;
}

.align-left {
    text-align:left;
}

.align-right {
    text-align:right;
}


/* Sidr Theme */
.sidr {
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 260px;
  overflow-x: hidden;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.9px;
  background: #f3f4f5;
  color: #171738;
  padding: 0 10px;
}
@media(max-width: 767px){
  .sidr .sidr-inner:before{
    content: '';
    width: 150px;
    height: 50px;
    background-image: url(https://www.privy.com/hubfs/assets_aug_2019/global/privy-logo-footer.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    margin: 10px auto;
  }
}

.sidr .sidr-inner {
  padding: 0 0 15px;
}
.sidr .sidr-inner > p {
  margin-left: 15px;
  margin-right: 15px;
}
.sidr.right {
  left: auto;
  right: -260px;
}
.sidr.left {
  left: -260px;
  right: auto;
}
.sidr p {
  font-size: 13px;
  margin: 0 0 12px;
}
.sidr p a {
  color: #171738;
}
.sidr > p {
  margin-left: 15px;
  margin-right: 15px;
}
.sidr ul {
  display: block;
  margin: 0;
  padding: 0;
}
.sidr ul li,
.sidr .sidr-class-hs-cta-node{
  display: block;
  margin: 0;
  line-height: 48px;
  border-bottom: 1px solid #a7adba;
}
.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active {
  border-top: 0;
  line-height: 49px;
}
.sidr ul li a,
.sidr ul li span,
.sidr .sidr-class-hs-cta-node a{
  padding: 0 15px;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #64737e;
}
.sidr ul li ul {
  border-bottom: 0;
  margin: 0;
}
.sidr ul li ul li {
  line-height: 40px;
  font-size: 13px;
}
.sidr ul li ul li:last-child {
  border-bottom: 0;
}
.sidr ul li ul li:hover, .sidr ul li ul li.active, .sidr ul li ul li.sidr-class-active {
  border-top: 0;
  line-height: 41px;
}
.sidr ul li ul li:hover > a,
.sidr ul li ul li:hover > span, .sidr ul li ul li.active > a,
.sidr ul li ul li.active > span, .sidr ul li ul li.sidr-class-active > a,
.sidr ul li ul li.sidr-class-active > span {

}
.sidr ul li ul li a,
.sidr ul li ul li span {
  color: #171738;
}
.sidr-class-fa-search {
    max-width: 14px;
}
.sidr form {
  margin: 0 15px;
}
.sidr label {
  font-size: 13px;
}


/* Animations Available */
@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}