/*
Contents:
 -1.  Variables
  0.  Imports & Includes
  1.  Fonts
  2.  Base Styles
  3.  Headings
  4.  Hubspot Form
  5.  Slider
  6.  Blog
  7.  Header Navigation
  8.  Footer Navigation
  9.  2 Column (Group Styles)
 10.  2 Column - Image Left
 11.  2 Column - Image Right
 12.  2 Column - Image Right-Left
 13.  3 Column - Icon
 14.  3 Column - No Icon
 15.  4 Column - Icon
 16.  4 Column - No Icon
 17.  4 Column - Icon 100x100
 18.  Body Text - Single Column
 19.  Body Text - 2 Column
 20.  CTA Major
 21.  CTA - Newsletter 
 22.  CTA - Small
 23.  Hero - 2 Column
 24.  Hero Global Classes 
 25.  Hero - Case Study
 26.  Hero - Centered
 27.  Hero - Home
 28.  Hero - Left Justified
 29.  Hero - Product
 30.  Hero - Secondary
 31.  Hero Left Justified - Skinny
 32.  Hero Product Wide
 33.  Icon 2 Column
 34.  Logo Block
 35.  Resources - 3 Column
 36.  Resources - 2 Column
 37.  Section Header
 38.  Small Secondary CTA
 39.  Spacer
 40.  Testimonial - Image
 41.  Testimonial - No Image
 42.  Title H2 Module
 43.  White Borders CTA
 44.  Global Media Queries
*/

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

:root {
  --white: rgb(255, 255, 255);

  --gray-0: rgb(52, 52, 51);
  --gray-1: rgb(128, 129, 129);
  --gray-2: rgb(178, 178, 178);
  --gray-3: rgb(200, 200, 200);
  --gray-4: rgb(230, 230, 230);

  --tan-0: rgb(170, 170, 163);
  --tan-1: rgb(204, 204, 200);
  --tan-2: rgb(233, 232, 225);
  --tan-3: rgb(244, 243, 240);
  --tan-4: rgb(249, 249, 248);

  --gold-0: #AA915B;
  --gold-1: rgb(226, 193, 121);
  --gold-2: rgb(237, 215, 169);
  --gold-3: rgb(241, 225, 191);
  --gold-4: rgb(249, 243, 228);

  --red-0: rgb(179, 95, 106);
  --red-1: rgb(240, 96, 117);
  --red-2: rgb(248, 160, 172);
  --red-3: rgb(248, 204, 209);
  --red-4: rgb(252, 229, 232);

  --green-0: rgb(79, 151, 98);
  --green-1: rgb(105, 201, 130);
  --green-2: rgb(140, 225, 165);
  --green-3: rgb(197, 240, 210);
  --green-4: rgb(226, 248, 232);

  --purple-0: rgb(122, 122, 163);
  --purple-1: rgb(162, 163, 218);
  --purple-2: rgb(181, 181, 225);
  --purple-3: rgb(210, 211, 237);
  --purple-4: rgb(233, 233, 246);

  --lime-0: rgb(176, 177, 105);
  --lime-1: rgb(235, 236, 140);
  --lime-2: rgb(239, 240, 163);
  --lime-3: rgb(247, 247, 209);
  --lime-4: rgb(251, 251, 232);

  --magenta-0: rgb(175, 122, 178);
  --magenta-1: rgb(233, 162, 237);
  --magenta-2: rgb(237, 181, 241);
  --magenta-3: rgb(246, 218, 248);
  --magenta-4: rgb(251, 236, 251);

  --cyan-0: rgb(95, 146, 170);
  --cyan-1: rgb(126, 195, 226);
  --cyan-2: rgb(152, 207, 232);
  --cyan-3: rgb(193, 236, 241);
  --cyan-4: rgb(229, 243, 249);

  --plum-0: rgb(80, 58, 76);
  --plum-1: rgb(115, 98, 113);
  --plum-2: rgb(149, 136, 148);
  --plum-3: rgb(184, 175, 182);
  --plum-4: rgb(220, 214, 218);
}


/* ========================================================= */
/* ================== Imports & Includes =================== */
/* ========================================================= */

/* Images */

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

/* Videos */

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

/* Embed Container (iFrame, Object, Embed) */

.hs-responsive-embed {
    position: relative;
    height: auto;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.hs-responsive-embed iframe, .hs-responsive-embed object, .hs-responsive-embed embed {
    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: 2%;
}

.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 */

textarea,
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"],
select {
    padding: 6px;
    display: inline-block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Menus */

.hs-menu-wrapper ul {
    padding: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
    list-style: none;
    margin: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    display: inline-block;
    margin-bottom: 20px;
}

.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;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
    display: inline-block;
    padding: 10px 20px;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
    position: relative;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > 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-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    display: block;
    white-space: nowrap;
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 180px;
    top: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > 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;
    margin-bottom: 20px;
    min-height: 7em;
}

.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;
    padding: 10px 20px;
    white-space: nowrap;
    max-width: 140px;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical {
    width: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical ul {
    list-style: none;
    margin: 0;
}

.hs-menu-wrapper.hs-menu-flow-vertical li a {
    display: block;
    white-space: nowrap;
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul {
    margin-bottom: 20px;
}

.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 a {
    padding: 10px 20px;
    text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children {
    position: relative;
}

.hs-menu-wrapper.hs-menu-flow-vertical > 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;
    top: 0;
    left: 180px;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li a {
    min-width: 140px;
    width: auto;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul {
    max-width: 100%;
    overflow: hidden;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    display: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper {
    display: block;
    visibility: visible;
    opacity: 1;
    position: static;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-2 > a {
    padding-left: 4em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-3 > a {
    padding-left: 6em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-4 > a {
    padding-left: 8em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-5 > a {
    padding-left: 140px;
}

.hs-menu-wrapper.hs-menu-not-show-active-branch li.hs-menu-depth-1 ul {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
}

@media (max-width: 568px) {
    .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;
        max-width: 100%;
        width: 100%;
    }
}

.hs-menu-wrapper.hs-menu-flow-vertical.no-flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-horizontal.no-flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: visible;
    opacity: 1;
}

/* Space Module */

.widget-type-space {
    visibility: hidden;
}

/* Blog Author Section */

.hs-author-listing-header {
    margin: 0 0 .75em 0;
}

.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(//static.hsappstatic.net/content_shared_assets/static-1.3935/img/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(//static.hsappstatic.net/content_shared_assets/static-1.3935/img/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: rgba(0,0,0,0.5);
    position: absolute;
    font-size: 2em;
    line-height: 1.1em;
    color: white;
    padding: 0px 5% 0px 5%;
    width: 100%;
    bottom: 0;
    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;
    }

    /* beat recaptcha into being responsive, !importants and specificity are necessary */
    #recaptcha_area table#recaptcha_table {width: 300px !important;}
    #recaptcha_area table#recaptcha_table .recaptcha_r1_c1 {width: 300px !important;}
    #recaptcha_area table#recaptcha_table .recaptcha_r4_c4 { width: 67px !important;}
    #recaptcha_area table#recaptcha_table #recaptcha_image {width:280px !important;}
}

.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;
}




/* HTML 5 Reset */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}

audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

audio:not([controls]) {
    display: none;
}

/* Support migrations from wordpress */

.wp-float-left {
    float: left;
    margin: 0 20px 20px 0;
}

.wp-float-right {
    float: right;
    margin: 0 0 20px 20px;
}

/* Responsive Google Maps */

#map_canvas img, .google-maps img {
    max-width: none;
}

/* line height fix for reCaptcha theme */
#recaptcha_table td {line-height: 0;}
.recaptchatable #recaptcha_response_field {min-height: 0;line-height: 12px;}



/* ========================================================= */
/* ========================= Fonts ========================= */
/* ========================================================= */



@font-face {
    font-family: 'Antenna-Thin';
    src: url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Thin.eot');
    src: url('Antenna-Thin.eot?#iefix') format('embedded-opentype'),
         url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Thin.woff2') format('woff2'),
         url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Thin.woff') format('woff'),
         url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Thin.ttf') format('truetype'),
         url('Antenna-Thin.svg#Antenna-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
}

@font-face {
  font-family: 'Antenna-Regular';
  src: url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Regular.eot?#iefix') format('embedded-opentype'),
    	 url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Regular.otf')  format('opentype'),
	     url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Regular.woff') format('woff'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Regular.ttf')  format('truetype'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Regular.svg') format('svg');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Antenna-Bold';
  src: url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Bold.eot?#iefix') format('embedded-opentype'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Bold.otf')  format('opentype'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Bold.woff') format('woff'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Bold.ttf')  format('truetype'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Antenna-Bold.svg#Antenna-Bold') format('svg');
  font-weight: 700;
  font-style: bold;
}

@font-face {
  font-family: "AntennaCompr-BoldItalic";
  src: url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/AntennaCompr-BoldItalic.woff2') format('woff2'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/AntennaCompr-BoldItalic.woff') format('woff'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/AntennaCompr-BoldItalic.ttf')  format('truetype');
}


@font-face {
  font-family: 'Arkos-BoldSC';
  src: url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Arkos-BoldSC.eot?#iefix') format('embedded-opentype'),  
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Arkos-BoldSC.otf')  format('opentype'),
	     url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Arkos-BoldSC.woff') format('woff'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Arkos-BoldSC.ttf')  format('truetype'),
       url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/Arkos-BoldSC.svg#Arkos-BoldSC') format('svg');
  font-weight: 700;
  font-style: bold;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/fontawesome-webfont.eot?v=4.7.0');
    src: url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
         url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
         url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/fontawesome-webfont.woff?v=4.7.0') format('woff'),
         url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
         url('https://cdn2.hubspot.net/hubfs/4781779/Custora/Font/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}










/* ========================================================= */
/* ====================== Base Styles ====================== */
/* ========================================================= */
*, *:before , *:after { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box }
body { margin:0; padding:0; font-family: 'Antenna-Regular', Verdana, sans-serif; font-size: 16px; line-height: 1.5em; color:#808181; overflow-x:hidden }
body > img {
    display: none;
}
img { border:0; vertical-align: top; height:auto; max-width:100%; }

hr { border:none; outline:none; float:left; width:100%; height:1px; background:#f2f2f2; clear:both; margin:30px 0; } 

.clear { clear:both; }
.wrapper { max-width: 1170px; margin: 0 auto !important; float: none !important; padding: 0 15px; }
.no-margins { margin: 0; }
.padding-top { padding-top: 100px; } /* top section padding */
.padding-bottom { padding-bottom: 100px; } /* bottom section padding */
.ta-center { text-align: center; }

.padding_top { padding-top: 100px; } /* delete later */
.padding_btm { padding-bottom: 100px; } /* delete later */

p { padding: 15px 0; margin: 0; }
p:first-child { padding-top: 0; }
p:last-child { padding-bottom: 0; }
.colom-text { color: #808181; }
.col-text { color: #808181; }
.col-img { margin: 20px; }


/* ====================== Text Color ====================== */
.c-white { color: rgb(255, 255, 255); }

.c-gray-0 { color: rgb(52, 52, 51); }
.c-gray-1 { color: rgb(128, 129, 129); }
.c-gray-2 { color: rgb(178, 178, 178); }
.c-gray-3 { color: rgb(200, 200, 200); }
.c-gray-4 { color: rgb(230, 230, 230); }

.c-tan-0 { color: rgb(170, 170, 163); }
.c-tan-1 { color: rgb(204, 204, 200); }
.c-tan-2 { color: rgb(233, 232, 225); }
.c-tan-3 { color: rgb(244, 243, 240); }
.c-tan-4 { color: rgb(249, 249, 248); }

.c-gold-0: { color: rgb(170, 170, 163); }
.c-gold-1: { color: rgb(226, 193, 121); }
.c-gold-2: { color: rgb(237, 215, 169); }
.c-gold-3: { color: rgb(241, 225, 191); }
.c-gold-4: { color: rgb(249, 243, 228); }

.c-red-0: { color: rgb(179, 95, 106); }
.c-red-1: { color: rgb(240, 96, 117); }
.c-red-2: { color: rgb(248, 160, 172); }
.c-red-3: { color: rgb(248, 204, 209); }
.c-red-4: { color: rgb(252, 229, 232); }

.c-green-0: { color: rgb(79, 151, 98); }
.c-green-1: { color: rgb(105, 201, 130); }
.c-green-2: { color: rgb(140, 225, 165); }
.c-green-3: { color: rgb(197, 240, 210); }
.c-green-4: { color: rgb(226, 248, 232); }

.c-purple-0: { color: rgb(122, 122, 163); }
.c-purple-1: { color: rgb(162, 163, 218); }
.c-purple-2: { color: rgb(181, 181, 225); }
.c-purple-3: { color: rgb(210, 211, 237); }
.c-purple-4: { color: rgb(233, 233, 246); }

.c-lime-0: { color: rgb(176, 177, 105); }
.c-lime-1: { color: rgb(235, 236, 140); }
.c-lime-2: { color: rgb(239, 240, 163); }
.c-lime-3: { color: rgb(247, 247, 209); }
.c-lime-4: { color: rgb(251, 251, 232); }

.c-magenta-0: { color: rgb(175, 122, 178); }
.c-magenta-1: { color: rgb(233, 162, 237); }
.c-magenta-2: { color: rgb(237, 181, 241); }
.c-magenta-3: { color: rgb(246, 218, 248); }
.c-magenta-4: { color: rgb(251, 236, 251); }

.c-cyan-0: { color: rgb(95, 146, 170); }
.c-cyan-1: { color: rgb(126, 195, 226); }
.c-cyan-2: { color: rgb(152, 207, 232); }
.c-cyan-3: { color: rgb(193, 236, 241); }
.c-cyan-4: { color: rgb(229, 243, 249); }

.c-plum-0: { color: rgb(80, 58, 76); }
.c-plum-1: { color: rgb(115, 98, 113); }
.c-plum-2: { color: rgb(149, 136, 148); }
.c-plum-3: { color: rgb(184, 175, 182); }
.c-plum-4: { color: rgb(220, 214, 218); }
 

/* ====================== Background Color ====================== */
.bg-white { background-color: rgb(255, 255, 255); }

.bg-gray-0 { background-color: rgb(52, 52, 51); }
.bg-gray-1 { background-color: rgb(128, 129, 129); }
.bg-gray-2 { background-color: rgb(178, 178, 178); }
.bg-gray-3 { background-color: rgb(200, 200, 200); }
.bg-gray-4 { background-color: rgb(230, 230, 230); }

.bg-tan-0 { background-color: rgb(170, 170, 163); }
.bg-tan-1 { background-color: rgb(204, 204, 200); }
.bg-tan-2 { background-color: rgb(233, 232, 225); }
.bg-tan-3 { background-color: rgb(244, 243, 240); }
.bg-tan-4 { background-color: rgb(249, 249, 248); }

.bg-gold-0: { background-color: rgb(170, 170, 163); }
.bg-gold-1: { background-color: rgb(226, 193, 121); }
.bg-gold-2: { background-color: rgb(237, 215, 169); }
.bg-gold-3: { background-color: rgb(241, 225, 191); }
.bg-gold-4: { background-color: rgb(249, 243, 228); }

.bg-red-0: { background-color: rgb(179, 95, 106); }
.bg-red-1: { background-color: rgb(240, 96, 117); }
.bg-red-2: { background-color: rgb(248, 160, 172); }
.bg-red-3: { background-color: rgb(248, 204, 209); }
.bg-red-4: { background-color: rgb(252, 229, 232); }

.bg-green-0: { background-color: rgb(79, 151, 98); }
.bg-green-1: { background-color: rgb(105, 201, 130); }
.bg-green-2: { background-color: rgb(140, 225, 165); }
.bg-green-3: { background-color: rgb(197, 240, 210); }
.bg-green-4: { background-color: rgb(226, 248, 232); }

.bg-purple-0: { background-color: rgb(122, 122, 163); }
.bg-purple-1: { background-color: rgb(162, 163, 218); }
.bg-purple-2: { background-color: rgb(181, 181, 225); }
.bg-purple-3: { background-color: rgb(210, 211, 237); }
.bg-purple-4: { background-color: rgb(233, 233, 246); }

.bg-lime-0: { background-color: rgb(176, 177, 105); }
.bg-lime-1: { background-color: rgb(235, 236, 140); }
.bg-lime-2: { background-color: rgb(239, 240, 163); }
.bg-lime-3: { background-color: rgb(247, 247, 209); }
.bg-lime-4: { background-color: rgb(251, 251, 232); }

.bg-magenta-0: { background-color: rgb(175, 122, 178); }
.bg-magenta-1: { background-color: rgb(233, 162, 237); }
.bg-magenta-2: { background-color: rgb(237, 181, 241); }
.bg-magenta-3: { background-color: rgb(246, 218, 248); }
.bg-magenta-4: { background-color: rgb(251, 236, 251); }

.bg-cyan-0: { background-color: rgb(95, 146, 170); }
.bg-cyan-1: { background-color: rgb(126, 195, 226); }
.bg-cyan-2: { background-color: rgb(152, 207, 232); }
.bg-cyan-3: { background-color: rgb(193, 236, 241); }
.bg-cyan-4: { background-color: rgb(229, 243, 249); }

.bg-plum-0: { background-color: rgb(80, 58, 76); }
.bg-plum-1: { background-color: rgb(115, 98, 113); }
.bg-plum-2: { background-color: rgb(149, 136, 148); }
.bg-plum-3: { background-color: rgb(184, 175, 182); }
.bg-plum-4: { background-color: rgb(220, 214, 218); }

.table { display: table; }
.table-cell { display: table-cell; }
.va-middle { vertical-align: middle; }
.va-top { vertical-align: top; }


/* ========================================================= */
/* ======================== Headings ======================= */
/* ========================================================= */
h1 { color:#4A4A4A; font-family: 'AntennaCompr-BoldItalic', 'Antenna-Bold', Verdana; font-size: 90px; line-height: 1em; text-transform: uppercase; margin:0; padding:15px 0 10px; letter-spacing:2px; clear:both; }
h2 { color:#4A4A4A; font-family: 'Antenna-Bold', Verdana; font-size: 32px; line-height: 1.25em; margin:0; padding:10px 0 10px; clear:both }
h3 { color:#4A4A4A; font-family: 'Antenna-Bold', Verdana; font-size: 30px; line-height: 1.2em; margin:0; padding:10px 0 10px; clear:both }
h4 { color:#4A4A4A; font-family: 'Antenna-Bold', Verdana; font-size: 28px; line-height: 1.214em; margin:0; padding:10px 0 10px; clear:both }
h5 { color:#4A4A4A; font-family: 'Arkos-BoldSC', Verdana; font-size: 18px; line-height: 1.2em; letter-spacing: 2px; margin: 0; text-transform: uppercase;}
h6 { color:#4A4A4A; font-family: 'Antenna-Bold', Verdana; font-size: 20px; line-height: 1.18em; margin:0; padding:10px 0;  clear:both }
strong { font-family: 'Antenna-Bold', Verdana; font-weight: bold; color:#4A4A4A; }

.comp { font-family: 'AntennaCompr-BoldItalic'; }

a { text-decoration:none; outline:none; color: inherit; transition: ease-in-out all 0.2s; }
a.cta_button { font-family: 'Antenna-Regular', Verdana, sans-serif; -moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box !important; }
input:not([type=checkbox]):not([type=radio]):not([type=submit]), 
button, 
textarea, 
select, { outline:none; border:1px solid #ccc; background:#fff; height:50px; padding:0 20px; font-family:'Opan Sans', Arial, Helvetica, sans-serif; font-size:16px; width:100%; }
input[type=checkbox] , input[type=radio] { width:auto; height:auto; } 
textarea { padding:15px 20px; height:100px; }
input[type=submit] , button { width:auto; border:none; cursor:pointer; background:url(https://cdn2.hubspot.net/hubfs/4781779/Custora/images/blank1.png) no-repeat left top #01adf1; font-size:17px; line-height:24px; font-weight:700; padding:8px 20px; color:#fff; display:inline-block; -webkit-transition: all  0.4s ease-in-out;
    -moz-transition: all  0.4s ease-in-out;
    -o-transition: all  0.4s ease-in-out;
    -ms-transition: all  0.4s ease-in-out;
    transition: all  0.4s ease-in-out;; }
input[type=submit]:hover , button:hover { background-color:#00658b; }

blockquote { border-left:4px solid #4A90E2; margin:15px 0 25px; padding:30px 25px; font-size:16px; font-style:italic; background: rgba(0,0,0,0.05); }
blockquote em { display:block; opacity:0.8; }

/* ========================================================= */
/* ====================== HubSpot Form ===================== */
/* ========================================================= */
ul.hs-error-msgs { margin:0; padding:0; list-style:none; float:left; width:100%; }
.hs-form .input { margin:0; }
.hs-form .hs-form-field { padding:0 0 15px; }
.hs-form fieldset.form-columns-2 .input , 
.quizcontact-form .hs-form fieldset.form-columns-1 .input { margin-right:0 }
.hs-form fieldset.form-columns-2 .field { padding:0 0 10px 10px }
.hs-form fieldset.form-columns-2 .field:first-child { padding:0 10px 10px 0; }
.hs-form fieldset.form-columns-3 .field { padding:0 0 10px 10px }
.hs-form fieldset.form-columns-3 .field:first-child { padding:0 10px 10px 0; }
.hs-form fieldset.form-columns-3 .field:first-child + .field { padding:0 5px 10px; }
.hs-form fieldset .hs-input { width:100% !important; }
.hs-form fieldset { max-width:none; }
.hs-form fieldset input[type="checkbox"], .hs-form fieldset input[type="radio"] { width:auto !important; }
ul.inputs-list { margin:0; padding:5px 0; list-style:none; }

.inputs-list .hs-form-checkbox-display, 
.inputs-list .hs-form-booleancheckbox, 
.inputs-list li.hs-form-radio { display:block; padding:0 0 8px 25px; position:relative; }
.inputs-list input[type="checkbox"], .inputs-list input[type="radio"] { position:absolute; left:0; margin:0; top:0; opacity: 0; width: 20px; height: 20px; }
.inputs-list input[type="radio"] { top:3px; }
.inputs-list input[type="checkbox"] + span { line-height: 22px; position:relative; display: block; }
.inputs-list input[type="checkbox"] + span:before  { position:absolute; left:-25px; top:0;  content:''; width:20px; height:20px; border:1px solid #dadada; color:#fafafa; background:#fafafa; }
.inputs-list input[type="checkbox"]:checked + span:before { background:#333; color:#ffff; border-color:#333; }
.inputs-list input[type="checkbox"]:checked + span:after { font-family: 'FontAwesome'!important; text-align:center; color:#fff; position:absolute; left:-25px; top:0;  content: "\f00c"; width: 20px; line-height: 20px; }

.inputs-list input[type="radio"] + span:before { position:absolute; left:-2px; top:2px;  content:''; width:20px; height:20px; border:1px solid #dadada;  background:#fafafa; border-radius:100%; }
.inputs-list input[type="radio"]:checked + span:after { position:absolute; left:2px; top:6px;  content:''; width:12px; height:12px; border-color:#333; background:#3333;  border-radius:100%; }

@media (max-width: 400px), (max-device-width: 480px) and (min-device-width: 320px) {
  .hs-form fieldset.form-columns-2 .field { padding:0 0 10px 0 }
  .hs-form fieldset.form-columns-2 .field:first-child { padding:0 0 10px 0 }
  .hs-form fieldset.form-columns-3 .field { padding:0 0 10px  }
  .hs-form fieldset.form-columns-3 .field:first-child { padding:0 0 10px 0; }
  .hs-form fieldset.form-columns-3 .field:first-child + .field { padding:0 0 10px; }
  
}


.hs-menu-wrapper.hs-menu-flow-horizontal ul li a:link, 
.hs-menu-wrapper.hs-menu-flow-horizontal ul li a:visited { max-width: none; text-overflow: inherit; vertical-align:top; }
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a { width:100%; }
.hs-menu-wrapper.hs-menu-flow-horizontal ul { vertical-align:top; }

[class*="span"] { min-height:1px; }
.header-container-wrapper [class*="span"] { min-height:0; }

.bgimg-main { background-size:cover; background-repeat:no-repeat; background-position:center center; }
.bg-img { display:none; }

/*Text Option*/
.text-uppercase, 
.title-uppercase h1, 
.title-uppercase h2, 
.title-uppercase h3, 
.title-uppercase h4, 
.title-uppercase h5, 
.title-uppercase h6 { text-transform:uppercase; }
.text-center { text-align:center; }
.text-left { text-align:left; }
.text-right { text-align:right; }
.text-white, 
.text-white h1, 
.text-white h2, 
.text-white h3, 
.text-white h4, 
.text-white h5, 
.text-white h6 { color:#fff; }
.text-italic { font-style:italic; }


/* ========================================================= */
/* ======================== Slider ========================= */
/* ========================================================= */
.slick-slider { position: relative; display: block; box-sizing: border-box; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -khtml-user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; }
.slick-list { outline:none; position: relative; display: block; overflow: hidden; margin: 0; padding: 0; }
.slick-list:focus { outline: none; }
.slick-list.dragging { cursor: pointer; cursor: hand; }
.slick-slider .slick-track, 
.slick-slider .slick-list { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.slick-track { position: relative; top: 0; left: 0; display: block; }
.slick-track:before, .slick-track:after { display: table; content: ''; }
.slick-track:after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }
.slick-slide { display: none; float: left; height: 100%; min-height: 1px; outline:none; }
[dir='rtl'] .slick-slide { float: right; } 
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; }
.slick-arrow.slick-hidden { display: none; }

.slick-arrow { cursor:pointer; z-index:5; position:absolute; top:50%; margin-top:-17.5px; display:inline-block; color:#fff; background:#333; width:35px; height:35px; font-size:0; text-index:-9999; cursor:pointer; }
.slick-arrow:before { font-family:'FontAwesome'; font-size:14px; }
.slick-arrow:hover { background:#fff; color:#343433;  }
.slick-arrow.slick-prev { left:5px; }
.slick-arrow.slick-prev:before { content: "\f104"; }
.slick-arrow.slick-next { right:5px; }
.slick-arrow.slick-next:before { content: "\f105"; }
.slick-arrow.slick-disabled { display:none; }

ul.slick-dots { margin:0; padding:0; list-style:none; float:left; width:100%;}
ul.slick-dots { text-align:center; padding:10px 0 0; }
ul.slick-dots li { display:inline-block; padding:0 5px; }
ul.slick-dots li button { display:inline-block; background:#a1a1a1;  width:15px; height:15px; border-radius:100%; font-size:0; text-index:-9999; cursor:pointer; }
ul.slick-dots li button:hover , ul.slick-dots li.slick-active button { background:#fbb314; }


/* ========================================================= */
/* ========================= Blog ========================== */
/* ========================================================= */
.dropcap,
.section.post-body p:nth-child(2):first-letter {
  float: left;
  font-size: 8rem;
  line-height: 4rem;
  margin: .5rem 1.3rem 1.3rem 0;
  padding: 1.1rem .9rem 1.5rem;
	font-family: 'Arkos-BoldSC';
  color: var(--gray-0);
  background: var(--tan-4);
  font-style: normal!important;
}

.section.post-body a { text-decoration:none; outline:none; color: inherit; border-bottom: 2px solid var(--purple-1); transition: ease-in-out all 0.2s; }
.section.post-body a:hover { border-bottom: 2px solid var(--purple-0); }

.hs-blog-listing, .hs-blog-post { background:#F9F9F8; }
.first-post { padding:36px 0 50px; }
.featured-title { font-family: 'AntennaCompr-BoldItalic'; font-size: 25px; text-transform: uppercase; letter-spacing: 1.5px; }
.blog-main-title {color:rgb(74, 74, 74); font-family:Antenna-Bold; text-transform:none; letter-spacing:0;}
.post-header {background: white;}

.post-first { padding:0; background:#fff; border:1px solid var(--gray-4); box-shadow: 1px 3px 6px rgba(0,0,0,0.1); }
.post-first .hs-featured-image-wrapper { height:350px; background-size:cover !important; background-position:center center !important; }
.post-text a { position:relative; z-index:1; }
.post-first .post-header { padding:40px; }  
.post-first .post-header h1 { padding:0 0 15px; font-size:32px; line-height:44px; }
.post-first .post-header h1 a { color:rgb(74, 74, 74); font-family:Antenna-Bold; text-transform:none; letter-spacing: 0;}
.post-first .post-header h1 a:hover { color:var(--purple-1); }
.post-first .post-header a.more-link { 
    color: var(--purple-1);
    font-size: 15px;
    line-height: 22px;
    font-family: Antenna;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--purple-1);
    padding: 11px 22px;
  	margin-top: 10px;
  	display: inline-block;
}  
.post-first .post-header a.more-link:hover { color:var(--purple-0);   border: 2px solid var(--purple-0); }

.topic-sec { padding:20px; background:#fff; border:1px solid var(--gray-4); box-shadow: 1px 3px 6px rgba(0,0,0,0.1); }
.topic-sec h4 { padding:0; font-size:18px; line-height:22px; font-family:Antenna-Regular; }
.featured-title { font-family: 'AntennaCompr-BoldItalic'!important; font-size: 30px!important; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;}
.topic-col { font-size:14px; line-height:22px; padding:15px 0; border-bottom:1px solid #EEEEEE; }
.topic-col:last-child { border-bottom:none }
.topic-col a.topic-link { margin:0 0 7px; display:inline-block; width:100%; color:var(--gold-0); font-size:12px; line-height:20px; font-family:Antenna-Regular; }
.topic-col .post-title a { color:#4A4A4A; display:inline-block; font-family:Antenna-Bold; }
.topic-col .post-title a:hover { color:var(--purple-1); }

.topic-col a.topic-link { float:left; width:auto; padding-right:1px; position:relative; display:none; }
.topic-col a.topic-link:not(:first-of-type):before { content: ","; color:var(--gold-0); margin-right:5px; }
.topic-col a.topic-link:first-child { display:block; }
 
.blogtopic_info { width:100%; float:left; font-size: 18px; line-height: 24px; color: #9B9B9B; text-align:center; }
.blogtopic_info .blogtopic_title  { color: var(--purple-1); font-family: 'Arkos-BoldSC', Verdana; font-size: 30px; line-height: 1.2em; letter-spacing: 2px; margin: 0; text-transform: uppercase; width:auto; float:none; display:inline-block; padding-right: 6px; font-size: 30px; }
.blogtopic_info #hubspot-topic_data  { width:auto; float:none; display:inline-block; }

#bp_container ~ img { display:none; }
.ub-emb-container  ~ img { display:none; } 

.topics-list { padding:20px 0; background:#fff; border-top:1px solid #eee; border-bottom:1px solid #eee; }
.topics .block h3 { display:none; }
.topics { padding:14px 0; }
.topics ul { margin:0; padding:0; list-style-type:none; }
.topics ul li { margin:0; padding:0; display:inline-block; }
.topics ul li a { padding:2px 7px; font-size:16px; line-height:22px; color:#616161; font-family:Antenna-Regular; font-weight:300; }
.topics ul li a:hover { color:var(--purple-1); }
.topics ul li a span.filter-link-count { display:none; }

.search-box .search-frm { position:relative; }
.search-box .search-frm .blog_search { padding:15px; background-color:#FFF; color:var(--gray-1); box-shadow: 1px 3px 6px rgba(0,0,0,0.1); border: 1px solid var(--gray-4); font-family: 'Antenna-Regular'; font-size: 16px; }
.search-box .blog_search_btn { padding:0; width:70px; position:absolute; top:0; right:0; background:url('https://cdn2.hubspot.net/hubfs/4781779/Custora/images/magnifying-glass%20%281%29.png') no-repeat; font-size: 0; line-height: 0; background-position: center; background-size: 24px; }
.search-box .blog_search_btn:hover{ background:url('https://cdn2.hubspot.net/hubfs/4781779/Custora/images/magnifying-glass-wt.png') no-repeat; background-color:var(--purple-1); font-size: 0; line-height: 0; background-position: center; background-size: 24px; }

.blog-sec { padding:40px 0; }
.blog-sec .post-listing { margin:0 -15px; }
.post-item { padding:15px; width:33.33%; float:left; font-size:14px; line-height:20px; font-family:'Antenna-Regular'; }
.post-item .hs-featured-image-wrapper { height:178px; background-size:cover !important; background-position:center center !important; }
.post-inside { border:1px solid var(--gray-4); box-shadow: 1px 3px 6px rgba(0,0,0,0.1); background:#fff; position:relative; -webkit-transition: all  0.4s ease-in-out;
    -moz-transition: all  0.4s ease-in-out;
    -o-transition: all  0.4s ease-in-out;
    -ms-transition: all  0.4s ease-in-out;
    transition: all  0.4s ease-in-out;; }

.post-text { padding:25px 15px 20px;  }
.post-text a.topic-link:first-child { display:block; }
.post-text a.topic-link { margin:0 0 7px; display:none; width:auto; color:var(--purple-0); font-size:12px; line-height:16px; font-family:Antenna-Regular; letter-spacing: 0.5px; }
.post-text a.topic-link:not(:first-of-type):before { content: ","; color: #333; margin-right:5px; }

.post-text h2 { font-size:20px; line-height:30px; }
.post-text h2 a { color:#4A4A4A; font-family:Antenna-Bold; display:inline-block; }
.post-text h2 a:hover { color:var(--purple-1); }
.post-text .post-body { padding:0 0 10px; }
.post-text .more-link { 
  color: var(--purple-1);
  font-size: 12px;
  line-height: 22px;
  font-family: Antenna;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--purple-1);
  padding: 8px 15px;
  margin-top: 10px;
  display: inline-block;
}
.post-text .more-link:hover { color:var(--purple-0);   border: 2px solid var(--purple-0); }
.blog-pagination { padding:70px 0 40px; width:100%; float:left; text-align:center; }
.blog-pagination a { margin:5px 10px; font-size:16px; line-height:20px; color:#4A4A4A; font-weight:700; text-transform:uppercase; font-family:Antenna-Bold; letter-spacing: 0.7px; pointer-events: none; }
.blog-pagination a.previous-posts-link:before { content:"<"; display:inline-block; vertical-align: middle; font-size: 20px; margin-top: -2px; margin-right: 5px; font-family:Antenna-Regular; }
.blog-pagination a.next-posts-link:after { content:">"; display:inline-block; vertical-align: middle; font-size: 20px; margin-top: -2px; margin-left: 5px; font-family:Antenna-Regular; }
.blog-pagination a.active { color:var(--purple-1); pointer-events:initial; }
body.search-result .blog_insec { display:none; }
.hs-blog-listing .blog_searchblog { display:none; }
body.search-result .blog_searchblog { display:block; }
.bolg-boxlink { width:100%; height:100%; position:absolute; top:0; left:0; }

.blog-innerpage { padding:50px 0 0; }
.blog-innertitle { margin:0 auto 30px; text-align:center; }
.blog-innertitle a.topic-link { font-size:18px; line-height:24px; color:#9B9B9B; } 
.blog-innertitle a.topic-link:hover { color:var(--purple-1); }
.blog-innertitle a.topic-link:not(:first-of-type):before{ content: ","; color: #333; margin-right: 5px; }
.blog-innertitle h1 { font-size:48px; line-height:54px; color:#4A4A4A; }
.blog-featured_image img { width:100% !important; }
.post-inner_con { margin:-100px auto 0; padding:40px 60px; max-width:870px; font-weight:300; background:#fff; font-size:18px; line-height:30px; position:relative; }
.post-inner_con ul { margin:0; padding:10px 0 10px 20px; list-style-type:none; }
.post-inner_con ul li { margin:0; padding:0 0 0 20px; display:block; position:relative; }
.post-inner_con ul li:before { font-family: 'FontAwesome'!important; content:"\f101"; color:var(--purple-1); position:absolute; top:0; left:0; }
.post-inner_con .topic-link { color:var(--purple-0); text-decoration:underline; }
.post-inner_con .topic-link:hover { color:var(--purple-1); }

.post-inner_con .topic-link:not(:first-of-type):before{ content: ","; color: #333; margin-right: 5px; }

.related-post { padding:60px 0 70px; }
.related-post-title { margin:0 auto 40px !important; max-width:460px; float: none !important; width:100%; float:none; display:block; text-align:center; }
.related-post-title h3 { font-size:32px; line-height:44px; }
.topic-bolgs { padding:20px 0; }
.topic-bolgs span { font-family:Antenna-Bold; }
.atss.atss-right,
.atss.atss-bottom { position:absolute !important; display: none !important; }

.hs-blog-listing .blog-formsec { display:none; }
.hs-blog-post .blog-formsec { display: none; }

.blog-formsec { margin:0 auto !important; padding:20px 60px 40px; max-width:870px; background:#fff; font-size:14px; line-height:20px; position:relative; float:none; }
.blog-formsec h2 { padding:10px 0 30px; font-size:30px; line-height:36px; }
.blog-form .hs-form-field > label { margin-bottom:10px; display:inline-block; width:100%; }
.blog-form .hs-fieldtype-textarea .input { margin-right:0 !important; }
.blog-form .hs-input { background:#F9F9F8; border:none; border-bottom:1px solid rgba(0,0,0,0.1); }


/* ========================================================= */
/* ==================== Header Navigation ================== */
/* ========================================================= */
.cta_button { 
  border-radius: 1px!important; 
  background: var(--purple-1); 
  color: var(--white); 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  font-size: 12px; 
  padding: 15px 40px;
}
.cta_button:hover { background: var(--purple-0); color: var(--white); transition:all .1s ease;}
.header_section { width:100%; float:left; background:var( --tan-3); }
.header_section .wrapper > div > div { display:flex; align-items:center; }
.header_section .logo a { float:left; width:100%; background:transparent !important; }
.header_section.fixed { position: fixed; top: 0; left: 0; z-index:999; background: var(--tan-3); width: 100%; }


/* ========================================================= */
/* ==================== Footer Navigation ================== */
/* ========================================================= */
.footer_section { width:100%; float:left; padding:50px 0 0; background:#343433; }
.footer_section .footer_cover { width:100%; float:left; padding-bottom:30px; }
.footer_section .footer_box { width:16.60%; margin-left:0; float:left; padding-right:30px; }
.footer_section .footer_box h4 { color:#fff; font-size:16px; line-height:24px; margin-bottom:0; }
.footer_section .footer_text { width:100%; float:left; color:var(--gray-1); font-size:12px; line-height:24px; }
 
.footer_section .footer_text ul { width:100%; float:left; list-style:none; padding:0; margin:0; }
.footer_section .footer_text ul li { width:100%; float:left; line-height:0; }
.footer_section .footer_text ul li a { width:100%; float:left; color:#777; font-family: 'Antenna-Regular', Verdana, sans-serif; font-weight:100; font-size:12px; line-height:18px; padding:6px 0 !important;  }
.footer_section .footer_text ul li a:hover { background:transparent; color:#fff !important; }
.footer_section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a { color:var(--gray-1); font-family: 'Antenna-Regular'; }
.footer_section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover { color:var(--purple-1); }

.footer_image {  width:100%; margin:30px 0 0; float:left; height:280px; background-repeat:no-repeat; background-size:cover !important; }
.footer_copyright { width:100%; float:left; background:#343433; padding:25px 0; margin-top:180px; }
.footer_copyright .copyright_text1 { width:50%; float:left; color:var(--gray-1); font-size:14px; }
.footer_copyright .copyright_text2 { width:50%; margin-left:0;  float:right; text-align:right; color:var(--gray-1); font-size:14px; }
.footer_copyright a { padding-left:10px; color:var(--gray-1); }
.footer_copyright a:hover { background:transparent; color:var(--purple-1); }

.footer_section a:hover { color: var(--purple-1); }
.footer-nav ul { width: 100%; }
.footer_section li.hs-menu-item.hs-menu-depth-1 { float: left; width: calc(100%/6); margin-left: 0; float: left; padding-right: 30px; }
.footer_section li.hs-menu-item.hs-menu-depth-1 > a { color: #fff; font-weight:100; font-size: 16px; line-height: 24px; margin: 0; padding: 10px 0 10px; }
.footer_section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper { visibility: visible; opacity: 1; position: relative; left: auto; }
.footer_section li.hs-menu-item.hs-menu-depth-2 a { width: 100%; float: left; color: #fff; font-size: 12px; line-height: 18px; font-weight:100; padding: 6px 0 !important; }


/* ========================================================= */
/* ================= 2 Column (Group Styles) =============== */
/* ========================================================= */
.col-section { width:100%; float:left; padding: 60px 0; background-color:#f1f1f1; }
.col-box { width:100%; float:left; text-align:center; font-size:14px; line-height:26px; color:#343433; }
.col-right .colom_text { width:100%; float:left; color: #808181;}
.col-right ul { padding-left: 18px; float:left; width:100%; }
.col-left { width:48%; float:none; display:inline-block; vertical-align:middle; margin:0 -2px; height:345px; background-size: contain !important; background-position: center !important;  background-repeat: no-repeat !important; }
.col-right { width:52%; float:none; display:inline-block; vertical-align:middle; margin:0 -2px; padding-left:70px; text-align:left;  }

.col-section.padding_top { padding-top: 100px; }
.col-section.padding_btm { padding-bottom: 100px; }

.col-section.padding-top { padding-top: 100px; }
.col-section.padding-bottom { padding-bottom: 100px; }

@media (max-width:768px){
  .col-box h3 { font-size: 26px; }
  .col-section { padding: 60px 0; }
  .col-right { width: 100%; padding: 0 0 30px 0; text-align: center; }
  .col-left { width: 500px; max-width: 100%; height: 250px; margin-bottom: 20px; }
}

/* ========================================================= */
/* ================= 2 Column - Image Left ================= */
/* ========================================================= */
.column2imgbox .col-for-left .inner { max-width: 475px; }
.col-right.image-left-text .inner { max-width: 475px; }
.image-left-text { width: 47%; color: #808181; }
.col-for-left .wrapper { max-width: 1390px; }

@media screen and (max-width: 768px){
  .image-left-text { width: 100%; text-align: left; }
  .col-right.image-left-text .inner { max-width: none; }
}
/* end of "2 Column - Image Left" */


/* ========================================================= */
/* ================ 2 Column - Image Right ================= */
/* ========================================================= */
.colummnright_img .inner { max-width: 475px; text-align: left; display: inline-block }
.colummnright_img .wrapper {
    max-width: 1390px;
}
.colummnright_img .image-right-text { text-align: right; }
.col-for-right.col-right { padding-left: 0px; padding-right: 70px; }
.image-right-text { width: 47%; color: #808181;}

@media screen and (max-width:768px){
  .image-right-text { width: 100%;  }
  .col-for-right.col-right { padding-left: 0px; padding-right: 0;}
}
/* end of "2 Column - Image Right" */


/* ========================================================= */
/* ============== 2 Column - Image Right-Left ============== */
/* ========================================================= */
.two-col-rl { width: 100%; float: left; }
.two-col-rl .image { background-size: cover; background-position: center center; }
.two-col-rl .text { padding: 150px 60px; }


@media (min-width:769px){
  .two-col-rl .text { text-align: right; }
  .two-col-rl.image-left .text { text-align: left; }
  .two-col-rl .grid { display: grid; width: 100%; grid-template-columns: 50% 50%; grid-gap: 0; justify-items: stretch; align-items: stretch; }
  .two-col-rl.image-left .image { grid-column: 1/2; grid-row: 1; }
  .two-col-rl.image-left .text { grid-column: 2/3; grid-row: 1; }
  .two-col-rl.image-right .image { grid-column: 2/3; grid-row: 1; }
  .two-col-rl.image-right .text { grid-column: 1/2; grid-row: 1; }
  .two-col-rl .inner {
    max-width: 495px;
    display: inline-block;
    text-align: left;
  }
}

@media screen and (max-width:991px){
  .two-col-rl .text { padding: 50px 30px; }
}
@media screen and (max-width:768px){
  .two-col-rl .image { width: 100%; display: block; height: 50vw; }
  .two-col-rl .text { width: 100%; display: block; padding: 50px 20px; }
}
/* end of "2 Column - Image Right-Left" */


/* ========================================================= */
/* ==================== 3 Column - Icon ==================== */
/* ========================================================= */
.col-section.three-col .col-part { width:33.33%; float:none; display:inline-block; margin:0 -2px; padding:0 15px; vertical-align:top; text-align:center; }
.col-section.three-col .col-img { margin-top: 0; width:100px; height:100px; float:none; display:inline-block; vertical-align:top; background-size: contain; background-position: center; background-repeat: no-repeat; }
.col-section.three-col .col-text { width:100%; max-width:320px; float:none; display:inline-block; vertical-align:top;}

@media (max-width:768px){
  .three-col.col-section  { padding:50px 0; }
  .col-section.three-col .col-part { width:100%; margin-bottom:40px; max-width:400px;  }
  .col-section.three-col .col-box { text-align:center; }
  .col-section.three-col .col-text { max-width:100%; }
}
/* end of "3 Column - Icon" */


/* ========================================================= */
/* =================== 3 Column - No Icon ================== */
/* ========================================================= */
/* Note: Uses some classes from "3 Column - Icon" */
.col-box .col-text.align-left { text-align: left; margin-top: 0; max-width: 328px; }
/* end of "3 Column - No Icon" */


/* ========================================================= */
/* ==================== 4 Column - Icon ==================== */
/* ========================================================= */
.col-part.four-col { width:25%; float:none; display:inline-block; margin:0 -2px 30px; padding:0 15px; vertical-align:top; text-align:center; }
.col-section.four-col .col-img { width: 125px; height: 125px; float:none; display:inline-block; vertical-align:top; background-size: contain; background-position: center; background-repeat: no-repeat; }

@media (max-width:991px){
  .col-part.four-col { width:50%; }
}
@media (max-width:768px){
  .col-section.three-col.column4_icon { padding:50px 0; }
  .col-part.four-col { width:100%; }
}
/* end of "4 Column - Icon" */


/* ========================================================= */
/* ================ 4 Column - Icon 100x100 ================ */
/* ========================================================= */
.hundred_tenhow .col-img { width:100px; height:100px; }
/* end of "4 Column - Icon 100x100 */


/* ========================================================= */
/* ================ Body Text - Single Column ============== */
/* ========================================================= */
.text-col.text-col-full { width:100%; max-width: 100%; float: none; display: inline-block; text-align:left; font-size:18px; line-height:30px; color:#343433; padding:0 20px; }
.bodutext_column1 .col-box {float: none; max-width:70%; margin: 0 auto; }

@media (max-width:991px){
  .text-col.text-col-full { padding:20px; }
}
@media (max-width:768px){
  .text-col.text-col-full  { width:100%; padding:20px 0; font-size:14px; line-height:22px; }
}
@media screen and (max-width: 768px){
  .bodutext_column1 .col-box { max-width: 100%; }
}
/* end of Body Text - Single Column */


/* =============================================================== */
/* ================ Body Text - Single Column Wide =============== */
/* ============================================================== */
.bodutext_column1.wide .col-box { max-width: 100%; }
.bodutext_column1.wide .text-col.text-col-full { padding: 0; }


/* ========================================================= */
/* ================== Body Text - 2 Column ================= */
/* ========================================================= */
.col-section.col-pad-50 { width: 100%; float: left; background-color: #f1f1f1; }
.bodytext_column2 .text-col { width: 50%; float: left; text-align: left; color: #343433; padding: 0 20px; }
.bodytext_column2 .col-box { float: none; max-width: 70%; margin: 0 auto; }

@media screen and (max-width:991px){
  .bodytext_column2 .text-col { padding: 20px; }
}
@media screen and (max-width: 768px){
  .bodytext_column2 .col-box { max-width: 100%; }
}
@media screen and (max-width: 480px){
  .bodytext_column2 .text-col { width: 100%; }
} 
/* end of Body Text - 2 Column */

/* ============================================================== */
/* ================== Body Text - 2 Column Wide ================= */
/* ============================================================== */
.bodytext_column2.wide .col-box { max-width: 100%; margin: 0 -10px; }


/* ========================================================= */
/* ======================= CTA - Major ===================== */
/* ========================================================= */
.major.hero-section { width:100%; float:left; text-align:center; padding:100px 0; background-size: cover; background-position: center; }
.majorhero-title { width:100%; float:left; }
.major .hero-box h2 { font-size: 32px; color: #fff; line-height: 42px; margin:0; font-family: 'Antenna-Bold'; width:100%; max-width:420px; float:none; display:inline-block;  }
.hero-cta { width:100%; float:left; }
.major .hero-textm { max-width: 540px; float:none; display:inline-block; padding:10px 0 20px; }

.pad-150 { padding:0 200px; }
@media (max-width:991px){
  .pad-150 { padding:0 70px; }
}
@media (max-width:768px){
  .pad-150 { padding:0 0px; }
}
/* end of "CTA - Major" */


/* ========================================================= */
/* ==================== CTA - Newsletter =================== */
/* ========================================================= */
.newsletter-formtitle { width:100%; float:left; padding:10px 0; }  
.newsletter-section {  text-align:center; }
.padd_50 { max-width:545px; float:none; display:inline-block; }

.newsletter-form { width:500px; float:none; display:inline-block; max-width:100%; margin-top:15px;  }
.newsletter-form input[type="text"] { border:1px solid #979797; background:#fff; font-size:14px; padding:15px; width:100%; float:left; margin-bottom:10px; }
.newsletter-form input[type="submit"] {  width:100%; float:left; background:#AE8FA8;  border:1px solid #AE8FA8; font-size:20px; color:#fff;  padding:10px 10px;   }
.newsletter-form input[type="submit"]:hover { background:#675363; color:#fff; }
/* end of "CTA - Newsletter" */


/* ========================================================= */
/* ======================= CTA - Small ===================== */
/* ========================================================= */
.small-cta { float: left; width: 100%; }
.cta-2 { margin-top:0; }
/* end of "CTA - Small" */


/* ========================================================= */
/* ===================== Hero - 2 Column =================== */
/* ========================================================= */
.hero-two-col { width: 100%; float: left; }
.hero-two-col.image-right { text-align: right; }
.hero-two-col .image { background-size: cover; background-position: center center; }
.hero-two-col .text .inner { max-width: 500px; display: inline-block; text-align: left; }

@media screen and (min-width: 769px){ /* Resolutions larger than portrait tablet */
  .hero-two-col .grid { display: grid; width: 100%; grid-template-columns: 50% 50%; grid-gap: 0; justify-items: stretch; align-items: stretch; }
  .hero-two-col .text { padding: 100px 60px; }
  .hero-two-col.image-left .image { grid-column: 1/2; grid-row: 1; }
  .hero-two-col.image-left .text { grid-column: 2/3; grid-row: 1; }
  .hero-two-col.image-right .image { grid-column: 2/3; grid-row: 1; }
  .hero-two-col.image-right .text { grid-column: 1/2; grid-row: 1; }
}

@media screen and (max-width: 768px){ /* Portrait tablet and smaller */
  .hero-two-col .image { width: 100%; display: block; height: 50vw; }
  .hero-two-col .text { width: 100%; display: block; padding: 50px 20px; }
}
/* end of "Hero - 2 Column" */


/* ========================================================= */
/* =================== Hero Global Classes ================= */
/* ========================================================= */
.hero-section { width:100%; float:left; padding:189px 0; background-color:var(--gray-4); background-size: cover !important; background-position: center !important;  background-repeat: no-repeat !important;  }


/* ========================================================= */
/* =================== Hero - Case Study =================== */
/* ========================================================= */
.pull-quote-section { width: 100%; float: left; padding: 140px 0; min-height: 700px; background-size: cover; background-position: center; }
.pull-quote-box h1 { letter-spacing: 2px; font-size: 58px; line-height: 1.2em; display: inline-block; max-width: 700px; }
.pull-quote-box.pull-quote-case-study { background-color: #ffffff; padding: 60px 100px; max-width: 1000px; float: none; display: inline-block; }
.pull-quote-box .pull_quote_text { display: block; max-width: 630px; margin: 0 auto; }

@media screen and (max-width:768px){
  .pull-quote-section { padding:100px 0; min-height: auto;}
  .pull-quote-box.pull-quote-case-study { padding: 50px 15px; }
}
/* end of "Hero - Case Study" */


/* ========================================================= */
/* ==================== Hero - Centered ==================== */
/* ========================================================= */
.hero-box-centered { width:100%; float:left; text-align: center; color:#fff; }
.hero-box-centered .hero-btn { margin-top: 30px; }
.hero-box-centered h1 { color: #ffffff; max-width: 700px; float:none; margin: 0 auto; }
.hero-box-centered p { max-width: 550px; float:none; margin: 0 auto; }
.hero-btn { width: 100%; float:left; }
/* end of "Hero - Centered" */


/* ========================================================= */
/* ====================== Hero - Home ====================== */
/* ========================================================= */
.hero-box { width: 100%; float: left; display: inline-block; text-align: center; line-height: 1.625em; color: #fff; }
.hero-box p { max-width: 550px; float:none; margin: 0 auto; }
.hero-box h1 { color: #ffffff; max-width: 700px; float: none; margin: 0 auto; }
.hero_btn { width: 100%; float: left; }     
/* end of "Hero - Home" */


/* ========================================================= */
/* ================= Hero - Left Justified ================= */
/* ========================================================= */
.hero-box.hero-left { text-align: left; width: 700px; max-width: 100%; }
/* end of "Hero - Left Justified" */


/* ========================================================= */
/* ===================== Hero - Product ==================== */
/* ========================================================= */
.hero-product { padding:105px 0 0 0; }
.hero-product a { margin-bottom: 65px; }
.hero-product .hero-box .hero-text { max-width:500px; float:none; display: inline-block; width:100%; color: #333333; }
.product-box { width:100%; float:left; line-height:0; }
.product-img { width:743px; height:416px; float:none; display:inline-block; max-width:100%; background-size: cover; background-position: center; }

@media (max-width:768px){
  .product-img { height:300px; }
}
/* end of "Hero - Product" */


/* ========================================================= */
/* ==================== Hero - Secondary =================== */
/* ========================================================= */
.titleh1_secondary { width:100%; float:left; padding:60px 0; background-size: cover; }

@media (min-width: 992px) and (max-width: 1200px){
	.titleh1_secondary h1 { font-size: 52px; line-height: 62px; padding-left:0; }
} 
@media (min-width: 768px) and (max-width: 991px){
 .titleh1_secondary { padding: 50px 0; }	 
 .titleh1_secondary h1 { font-size: 46px; line-height: 52px; padding-left:0; }
}
@media (min-width: 30px) and (max-width: 767px){
  .titleh1_secondary { padding: 40px 0; }
  .titleh1_secondary h1 { font-size: 24px; line-height: 34px; padding-left:0; }
} 
/* end of "Hero - Secondary" */


/* ========================================================= */
/* ============= Hero Left Justified - Skinny ============== */
/* ========================================================= */
.hero-left-skinny { width: 100%; float:left; padding: 60px 0; background-size: cover; background-position: center center; }
.hero-left-skinny h1 { padding-bottom: 0; }

@media screen and (max-width: 991px){
	.hero-left-skinny { padding: 50px 0; }	 
}

@media screen (max-width: 768px){
  .hero-left-skinny { padding: 40px 0; text-align: center; }
}
/* end of "Hero Left Justified - Skinny" */


/* ========================================================= */
/* ==================== Hero Product Wide ================== */
/* ========================================================= */
.hero-product.wide { padding: 105px 0 0 0; }
.hero-product.wide a { margin-bottom: 65px; }
.hero-product.wide .hero-box .hero-text { color: #ffffff; }
.hero-product.wide .product-img { width: 100%; max-width: 900px; height:416px; background-size: cover; background-position: center; }

@media (max-width:768px){
  .hero-product.wide { padding: 100px 0; }
  .hero-product.wide .product-img { height: 300px; }
}
/* end of "Hero Product Wide" */


/* ========================================================= */
/* ==================== Icon 2 Column ====================== */
/* ========================================================= */
.two-col-small-icon { width:100%; float:left; }
.two-col-small-icon .column-container { width:100%; margin: 0 auto;  display: flex; align-items: center; justify-content: center; }
.two-col-small-icon .col-item { width:45%; padding: 0 30px; }
.two-col-small-icon .image { width: 65px; height: 65px; float: left;  }
.two-col-small-icon .image img { width: 100%; height: auto; }
.two-col-small-icon .text { width:calc(100% - 65px); padding-left:30px; float: left; }

@media screen and (max-width: 768px){
  .two-col-small-icon .column-container { display: block; }
  .two-col-small-icon .col-item { width:100%;  padding:0; margin-bottom:30px; text-align:center; }
  .two-col-small-icon .col-item:last-child { margin-bottom:0; }
  .two-col-small-icon .image { float:none; display:inline-block; } 
  .two-col-small-icon .text { float: none; width:100%; padding-left:0; padding-top:15px; }
}
/* end of "Icon 2 Column" */


/* ========================================================= */
/* ======================= Logo Block ====================== */
/* ========================================================= */
.logo-section { width:100%; float:left; padding:35px 0; }
.logo-box { width:100%; float:left; text-align:center; font-size:16px; line-height:26px; color:#fff; }
.logo-part { width:16.66%; float:none; display:inline-block; padding:15px; vertical-align:middle; margin:0 -2px;   }
.logo-part-inner { width:100%; float:left;  min-height:50px; display:flex; align-items:center; }
.logo-part-inner img { max-width:130px; margin: 0 auto;}
 
@media screen and (max-width:991px){
  .logo-part { width:25%; }
}

@media screen and (max-width:768px){
  .logo-part { width:33.33%; }  
}

@media screen and (max-width:500px){
  .logo-part { width:33.33%; padding-left:5px; padding-right:5px; }
  .logo-part img { max-width:100%; }
  .logo-part-inner { min-height:30px; }
}
/* end of "Logo Block" */

/* ========================================================= */
/* ================== Resources - 4 Column ================= */
/* ========================================================= */
.resources-col-4 .col-box .col-img { min-height: 125px; }
.resources-col-4 .col-box .col-part { width: calc(100%/4); }
.resources-col-4.res-col .col-box .col-text { padding-top: 10px; }
.resources-col-4 .fig-info-sub { font-size: 14px; }
.resources-col-4 .fig-info-title { font-size: 16px; }
.resources-col-4 span.button {
  display: block;
  margin-top: 15px;
  color: var(--gray-1);
  border: 3px solid var(--purple-1);
  padding: 10px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  transition: ease-in-out all 0.3s;
  font-size: 14px;
}
.resources-col-4 span.button:hover {
  background: var(--purple-1);
  color: var(--white);
}
  
@media screen and (max-width: 980px){
  .resources-col-4 .col-box .col-part { width: calc(100%/2); }
  .resources-col-4 .col-box .col-img { min-height: 170px; }
}

@media screen and (max-width: 480px){
  .resources-col-4 .col-box .col-part { width: 100%; }
  .resources-col-4 .col-box .col-img { min-height: 195px; }
}

/* ========================================================= */
/* ================== Resources - 3 Column ================= */
/* ========================================================= */
.res-col .col-img { margin: 0; }
.res-col .col-box {  width:100%; float:left; text-align:center; }
.res-col .col-part { width:33.33%; float:left; display:inline-block; margin:0 -2px 50px; padding:0 15px; vertical-align:top; text-align:left; }
.res-col .col-img { width:100%; min-height: 185px; float:none; display:inline-block; vertical-align:top; background-size: contain; background-position: top center; background-repeat: no-repeat; }
.res-col .col-img img { display:none; }
.res-col .col-box .col-text { width:100%; position:relative; max-width:100%; float:left; text-align:left; font-size:14px; line-height:24px; color:var(--gray-1);  padding:0px 15px ; margin: 0 0 20px 0!important; }

.resources-col-3 .col-box .col-text h3 { font-size: 18px; color: #4A4A4A; line-height: 1.66em; margin:0; letter-spacing:0; padding: 4px 0; }
.resources-col-3 .col-box .col-text h5 { font-size: 13px; color: var(--purple-1); }

.resources-col-3.res-col .summary {  width:100%; float:left; padding-bottom:0; }
.resources-col-3.res-col .col-box .col-text .button { color:#A2A3DA; float:left; width:100%; position:absolute; left:0; bottom:0; padding:0 15px; transition: ease-in-out 0.3s all; }
.resources-col-3.res-col .col-box .col-text .button { 
  color:var(--gray-1); 
	border: 3px solid var(--purple-1);
  padding: 10px;
  width:90%; 
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 5%;
  text-align: center;
}
.resources-col-3.res-col .col-box .col-text .button:hover {
	background: var(--purple-1);
  color: var(--white);
}

.resources-col-3.res-col .col-box a:hover { background: transparent; color:#000; }
.resources-col-3.res-col .col-box a{ color:var(--purple-1); }
.fig-info { margin-top: 10px; }
.fig-info-text { margin-bottom: 120px; }
.res-inner-part { width:100%; float:left; border:1px solid var(--gray-); /*box-shadow: 0px 3px 5px rgba(0,0,0,0.1);*/ background:#fff; }

@media screen and (max-width: 991px){
  .col-img { width: 100%;}
  .res-col .col-part { width:50%; }
}
@media screen and (max-width:768px){
  .resources-col-3.col-box .col-text h3 { font-size: 18px; line-height: 25px; }
  .col-box .col-text { font-size: 14px; line-height: 22px; margin-top: 15px; }
  .col-section.col-pad-50 { padding:50px 0; }
  .res-col .col-part { width:100%; padding:15px 0; }
  .res-col .col-img { width: 100%; }
}
/* end of "Resources - 3 Column" */


/* ========================================================= */
/* ================== Resources - 2 Column ================= */
/* ========================================================= */
.res-col-2.col-section.col-pad-50 { width:100%; float:left; background-color:#f1f1f1; }
.res-col-2 .col-box {  width:100%; float:left; text-align:center; font-size: 0; }
.res-col-2 .col-part { width:50%; float:left; display:inline-block; margin:0 -2px 50px; padding:0 15px; vertical-align:top; text-align:left; }
.res-col-2 .col-img { margin: 0!important; width:100%; height:270px !important; float:none; display:inline-block; vertical-align:top; background-size: contain; background-position: top center !important;  background-repeat: no-repeat !important;   }
.res-col-2 .col-box .col-text { width:100%; float:left;  max-width:100%; text-align:left; font-size:14px; line-height:24px; color:#343433; position:relative;  padding: 5px 15px 0; margin: 20px 0; }
.res-col-2 .fig-info-title { font-family: 'Antenna-Bold'; font-size: 18px; line-height: 30px; margin:0; letter-spacing:0; width:100%; float:left; padding: 0 0; }
.res-col-2 .fig-info-sub { font-size: 13px; padding-top:0; padding-bottom:0; color: var(--purple-1); line-height: 20px; font-family: 'Arkos-BoldSC'; letter-spacing:2px; margin:0 0 5px ; width:100%; float:left; text-transform: uppercase;}
.res-col-2 .fig-info-title { margin-bottom:0; }
.res-col-2 .fig-info-text { margin-bottom: 80px; }
.resourcescolumn2 .res-col .col-img img { display:none; }
.resourcescolumn2 .col-box a { width:100%; float:left; }

.res-col-2 .summary { width:100%; float:left; padding-bottom:0; }
.res-col-2 .col-box .col-text .button { 
  color: var(--gray-1);
  border: 3px solid var(--purple-1);
  padding: 10px;
  width: 95%;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 2.5%;
  text-align: center;
  display: inline-block;
  transition: ease-in-out all 0.2s;
}

.res-col-2 .col-box .col-text .button:hover { background:var(--purple-1); color: var(--white); }
.res-col-2 .col-box a:hover { background: transparent; color:#000; }
.res-col-2 .col-box a { color:var(--purple-1); }
.res-col-2 { max-width: 100%; }
.max.res-col-2 .col-img { width:100% }

.res-inner-part {  width:100%; float:left; border:1px solid var(--gray-4); /*box-shadow: 0px 3px 5px rgba(0,0,0,0.1);*/ background:#fff; }
.resourcescolumn2.res-col .col-box .col-text { margin-top: 20px; }
.res-col-2 .summary { width:100%; float:left; }

@media (max-width:991px){
  .res-col-2.col-img { width: 100%; }
  .res-col-2 .col-part { width:50%; }
}
@media (max-width:768px){
  .res-col-2.col-pad-50  { padding: 50px 0; }
  .res-col-2 .col-part { width:100%; padding:15px 0; }
  .res-col-2 .col-img { width:100%; height: auto !important; background-size: cover; }
}
/* end of "Resources - 2 Column" */


/* ========================================================= */
/* ===================== Section Header ==================== */
/* ========================================================= */
.header-section.main p { padding:0; }
.header-section { width:100%; float:left; font-weight:100;}
.header-box { width:100%; text-align:center; font-size:16px; color:var(--gray-1); max-width: 710px; margin: 0 auto; }
.header-section .copy { float:none; display:inline-block; margin-top: 20px; }
.header-section .copy p { line-height: 28px; }

.tile_widthfull { max-width:800px; margin: 0 auto; }

@media (max-width:768px){
  .header-box h2 { font-size:24px; }
  .header-box { font-size:14px; line-height:22px; }
}
/* end of "Section Header" */


/* ========================================================= */
/* =================== Small Secondary CTA ================= */
/* ========================================================= */
.smaller-borders { width:100%; float:left; padding:60px 0; text-align:center; }
/* end of "Small Secondary CTA" */


/* ========================================================= */
/* ========================= Spacer ======================== */
/* ========================================================= */
.col-section.only-space { width:100%; float:left; padding:70px 0; min-height:600px; font-family: 'Antenna-Regular'; background-color:#f1f1f1; background-size: cover !important; background-position: center !important;  background-repeat: no-repeat !important;    }

@media (max-width:991px){
  .col-section.only-space { min-height:400px; }
}
@media (max-width:768px){
  .col-section.only-space { min-height:250px; }
}
/* end of "Spacer" */


/* ========================================================= */
/* ================== Testimonial - Image ================== */
/* ========================================================= */
.col-section.testimonial-imgcol { padding:60px 0; background-size: cover; }
.col-section.testimonial-imgcol p { padding:0; }
.col-box.testy-box { width:100%; float:left; }
.testy-box .testy-col { width:80%; float:left; max-width: 820px; text-align:left; font-size:28px; line-height:40px; color:#4A4A4A; padding:0 0px; }

.col-box.testy-box { font-style: italic; }

.testy-part1 { width:100%; float:left; background:#fff; padding:30px 40px 40px 40px; }
.testy-part2 { width:100%; float:left; background:#F1F1F1; padding:20px 40px; }
.testy-part2 .testy-detail { width:50%; float:none; display:inline-block; vertical-align:middle; margin:0-2px;}
.testy-img { width:70px; height:70px; border-radius:100%; float:none; display:inline-block; vertical-align:middle; background-size: cover; background-position: center center; }
.testy-name { padding-left:15px; float:none; display:inline-block; vertical-align:middle; text-align:left;  }
.testy-name h5 { font-family: 'Antenna-Bold'; }
.testy-name h6 { font-size:14px; line-height:1.7em; color:#4A4A4A;  margin:0; font-weight:100; padding:0; font-family: 'Antenna-Regular'; }
.testy-logo { width:50%;  float:none; display:inline-block; vertical-align:middle;  margin-bottom: 35px;; }

@media (max-width:991px){
  .testy-col { padding:0; }
  .testy-part2 .testy-name { padding:20px 0 0 0; text-align:center; }
  .testy-part2 .testy-detail { text-align:center; }
}
@media (max-width:768px){
  .testy-box .testy-col { font-size:20px; line-height:1.3em; }
  .testy-name { text-align: center; width: 100%; padding: 15px 0 0 0; }
  .testy-part2 .testy-detail { margin:20px 0; }
  .testy-part2, 
  .testy-box .testy-col { text-align:center; }
  .testy-box .testy-col, 
  .testy-logo, 
  .testy-part2 .testy-detail { width: 100%; }
  .testy-part1, .testy-part2 { padding:20px; }
}
/* end of "Testimonial - Image" */


/* ========================================================= */
/* ================= Testimonial - No Image ================ */
/* ========================================================= */
/*.col-section.testimonial-noimgcol {padding:60px 0; }*/
.col-section.testimonial-noimgcol p { padding:0; }
.testy-col { width:100%; float:left; text-align:center; font-size:28px; line-height:40px; color:#4A4A4A; padding:0 150px; }
.testy-col p:first-child { margin-top:0 }

.testy-detail { width:100%; float:left; margin:50px 0; }
.testy-img { width:70px; height:70px; border-radius:100%; float:none; display:inline-block; vertical-align:middle; background-size: cover !important; background-position: center !important;  background-repeat: no-repeat !important;  }
.noimgtesti .testy-name { text-align:center }
.testy-name { padding-left:15px; float:none; display:inline-block; vertical-align:middle; text-align:left;  }
.testy-name h5 { font-size:18px; line-height:24px; color:#4A4A4A; margin:0!important; font-weight:700; font-family: 'Antenna-Bold'; }
.testy-name h6 { font-size:14px; line-height:24px; color:#4A4A4A; margin:0!important; padding:0; font-weight:100; font-family: 'Antenna-Regular'; }
.testy-logo { float:none; display:inline-block; vertical-align:middle; line-height:0; }

@media (max-width:991px){
  .testy-col { padding:0; }
}
@media (max-width:768px){
  .testy-col  { font-size:20px; line-height:26px; }
  .testy-name { text-align: center; width: 100%; padding: 15px 0 0 0; }
  .testy-detail { margin:20px 0; }
}
/* end of "Testimonial - No Image" */


/* ========================================================= */
/* ==================== Title H2 Module ==================== */
/* ========================================================= */
.title-h2-section { width:100%; float:left; padding:60px 0 10px; }
.title-h2-section h2 { width:auto; float:left; margin:0; padding:5px 0 0 15px; }
.title-h2-section a { font-size:12px; text-decoration:none; padding-left:5px;  color:#5892DC; }
.title-h2-section a:hover { color:#000; }

@media (min-width: 768px) and (max-width: 991px){
 .title-h2-section { padding:50px 0; }	 
}
@media (min-width: 30px) and (max-width: 767px){
  .title-h2-section { padding:40px 0; }
  .title-h2-section h2 { font-size: 24px; line-height: 34px; padding-left:0; }
}
/* end of "Title H2 Module" */


/* ========================================================= */
/* =================== White Borders CTA =================== */
/* ========================================================= */
.white-borders { width:100%; float:left; padding:60px 0; text-align:center;    font-family: 'Antenna'; }
/* .white-borders a.cta_button:hover {     background: #fff !important; color: #000 !important; opacity: 1 !important;} */
/* end of "White Borders CTA" */


/* ========================================================= */
/* ======================== 404 Page ======================= */
/* ========================================================= */
.error-404 .bg-img {
  display: none;
}
.error-404 .error404-section {
  min-height: 80vh;
  position: relative;
}
.error-404 .errortext-box {
  position: absolute;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
  left: 0;
  right: 0;
  padding: 0 15px;
  font-size: 24px;
}
.error-404 .errortext-box span.small { font-size: 16px; display: block; }


/* ========================================================= */
/* ================== Global Media Queries ================= */
/* ========================================================= */

/* ================= Resolution above 1200px ================= */
@media screen and (min-width: 1200px){ 
  .hero-section { padding: 140px 0; }
} /* end of (min-width: 1200px) */


/* ================= Resolution 1200px & below ================= */
@media screen and (max-width: 1200px){ 
  .wrapper { max-width: 970px; }
  h1 { font-size: 52px; }
} /* end of (max-width: 1200px) */


/* ================= Tablet landscape & below ================= */
@media screen and (max-width: 1024px){ 
  .wrapper { max-width:750px; }
  h1 { font-size: 48px; }
  .hero-section { padding: 140px 0; } 
  
  .footer_copyright { margin-top: 100px;  }
  .footer_section li.hs-menu-item.hs-menu-depth-1  { width: calc(100%/6); padding-right: 10px; }
  .footer_section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a { white-space: normal; width: 100% !important; }
  .footer_section .footer_box { width:100%; margin-bottom:30px;}
  .footer_section {  padding:30px 0 0 ;   }
  .footer_copyright { margin-top: 50px; }
  .footer_copyright .copyright_text1 { width:100%; text-align:center; padding-bottom:10px; } 
  .footer_copyright .copyright_text2 { width:100%; text-align:center; } 
  .footer_section .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 { float: left; width: 50%; margin-bottom: 10px;  }
   
  .header_section .logo { max-width: 110px; }
  
  .first-postleft { width:100%; }
  .first-postright { margin:30px 0 0; width:100%; }
  .post-first .post-header h1 { font-size:22px; line-height:32px; } 
  .post-item { width:50%; }
  .post-text h2 { font-size:18px; line-height:26px; }
  
  .blog-pagination { padding:30px 0 0; }
  .blog-innerpage { padding:10px 0 0; }
  .blog-innertitle h1 { font-size:36px; line-height:48px; }
  .blog-innertitle { margin:0 auto 0; }
  
  .related-post .post-item { width:33.33%; }
  .post-inner_con { padding:20px 30px; max-width:600px; font-size:15px; }
  .blog-formsec { padding:10px 30px 30px; max-width:600px; }
} /* end of (max-width: 1024px) */


/* ================= Tablet portrait & below ================= */
@media screen and (max-width: 768px){ 
  .wrapper { width:100%; }
  h1 { font-size: 36px; }
  .hero-section { padding: 100px 0; }
  .footer_section li.hs-menu-item.hs-menu-depth-1 { width: calc(100%/3); }

  .topics { padding:0 0 20px; text-align:center; }
  .related-post { padding:40px 0 60px; }
  .blog-innertitle h1 { font-size:30px; line-height:42px; } 
  .related-post-title { margin:0 auto 10px !important; }
  .related-post .post-item { width:100%; }
  .related-post-title h3 { font-size:26px; line-height:34px; }
  .blog-sec .post-listing { margin:0; }
  .post-item { margin:0 auto; padding:10px 0; max-width:440px; width:100%; float:none; }
  .post-item .hs-featured-image-wrapper { height:219px; }
  .blog-innertitle h1 { font-size:24px; line-height:34px; }
  .post-inner_con { margin:0; max-width:100%; }
  .blog-formsec { max-width:100%; }
  
  .hs-blog-post .related-post { padding:40px 0 10px; }
} /* end of (max-width: 768px) */

/* ====================== Phone portrait ===================== */
@media screen and (max-width: 480px){ 
  .footer_section li.hs-menu-item.hs-menu-depth-1 { width: 100%; }
  
  .post-first .hs-featured-image-wrapper { height:240px; }
  .post-first .post-header { padding:15px; }
  .post-inner_con { padding:5px 20px; }
  .blog-formsec { padding:10px 20px 30px; }
  .post-item { max-width:310px; }
  .post-item .hs-featured-image-wrapper { height:149px; }
} /* end of (max-width: 480px) */


/* ====================== Desktop Menu ===================== */
@media screen and (min-width: 1025px){
  a.mobile-trigger, a.child-triggerm { display: none !important; /* Hide button on Desktop */ }
  .mainmenu .hs-menu-wrapper .active a { outline: 3px solid var(--white); outline-offset: -3px; }
	.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a { outline: none!important; }
  .mainmenu .hs-menu-wrapper {  display: block !important; background: var(--tan-3);}
  .mainmenu .hs-menu-wrapper > ul { float:right; list-style:none; padding:0; margin:0; }
  .mainmenu .hs-menu-wrapper ul { list-style:none; padding:0; margin:0; }
  .mainmenu .hs-menu-wrapper ul li { float:left; position:relative;}
  .mainmenu .hs-menu-wrapper ul li a { width:100%; color:#343433; float:left; font-size: 14px!important; line-height:20px; font-family: 'Antenna-Regular';}
  .header_section.fixed .mainmenu .hs-menu-wrapper > ul > li > a { font-size: 14px!important;}
  .mainmenu .hs-menu-wrapper ul li:hover a { color:#343433!important; background: var(--white) } 
  .mainmenu .hs-menu-wrapper ul li > ul li { width:100%; }
  .mainmenu .hs-menu-wrapper ul > li > ul.hs-menu-children-wrapper { position:absolute; z-index:999; left:0; top:100%; width:auto; min-width:260px; background:#F1F1F1; padding:0 0 0;     visibility: hidden;   opacity: 0; transition:all .1s ease; }
  .mainmenu .hs-menu-wrapper ul > li:hover > ul.hs-menu-children-wrapper { visibility: visible;   opacity: 1; transition:all .1s ease; }
  .mainmenu .hs-menu-wrapper ul li > ul > li { line-height:0; } 
  .mainmenu .hs-menu-wrapper ul li > ul > li:hover { background: var(--white) }
  .mainmenu .hs-menu-wrapper ul li > ul > li:last-child { border-bottom:0; }
  .mainmenu .hs-menu-wrapper ul li > ul > li > a { color:#343433; font-size:14px; font-weight:500; text-transform:none; padding:10px 20px; line-height:22px; white-space:normal !important; }
  .mainmenu .hs-menu-wrapper ul li > ul > li:hover > a { color:#343433; background:#503A4C }
  .mainmenu .hs-menu-wrapper ul li > ul > li  a:hover { color:#fff !important;  }
  .mainmenu .hs-menu-wrapper ul li > ul > li:hover >  a { color:#fff !important;  }  
  .mainmenu .hs-menu-wrapper ul li > ul > li > ul.hs-menu-children-wrapper { position:absolute; z-index:999; left:0; top:100%; width:auto; min-width:260px; background:#F1F1F1; padding:10px 0 10px;     visibility: hidden;   opacity: 0; transition:all .1s ease; }
  .mainmenu .hs-menu-wrapper ul li > ul > li:hover > ul.hs-menu-children-wrapper { visibility: visible;   opacity: 1; transition:all .1s ease; }
  .mainmenu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper { left:100%; padding:0; }   
  .mainmenu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children > a { position:relative; }
  .mainmenu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children > a:after { font-family: 'FontAwesome'!important; position:relative;  padding-left: 5px; content:"\f067"; font-size:12px; line-height: 20px; right:0; top:0; color:var(--tan-1)!important; }  
  .mainmenu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul li.hs-item-has-children a:after {  float:right; line-height: 21px;  transform: rotate(-90deg);  padding: 0 !important; } 
} /* end of (min-width: 1025px) */


/* ====================== Mobile Menu ===================== */
@media screen and (max-width: 1024px){
    .header_section  { padding: 15px 0; }
    .header_section.fixed .mainmenu .hs-menu-wrapper > ul > li > a { padding: 10px 15px; } 
 
  /* Variables
     ========================================================================== */

     /* Set Mobile Menu Background Color */
        /* Set Link Color */
   /* Set Link Hover Color */


  /* Menu Reset - Remove styling from desktop version of custom-menu-primary */
  /* Place any additional CSS you want removed from the mobile menu in this reset */
  .mainmenu, .mainmenu *{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color: #fff;
  }


  /* Toggle Button
     ========================================================================== */

  a.mobile-trigger {
    display: inline-block !important; /* Hide button on Desktop */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: 20px;          /* Position Button at top right of screen  */
    right: 15px;        /*******************************************/
    width: 44px; /* Button width */
    height: 44px; /* Button height */      
    padding: 12px 10px;
    background: transparent !important; /* Background color */
    z-index: 99999999999; /* Z-index to keep button on top of other layers */
    -webkit-transition: background-color 0.2s linear; /* Button color transition effect */
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    border-radius: 6px;
    -webkit-transition:color .2s ease-in; 
    -moz-transition:color .2s ease-in;
    transition:color .2s ease-in;
  }

  a.mobile-trigger:hover {
    text-decoration: none; /* Removes link text underline on button */
    color: #fff;
  }

  a.mobile-trigger span{
    display: inline;
  }

  a.mobile-trigger span:before{
    position: absolute;
    content: 'Menu'; /* Change the text on the closed toggle button */
  }

  a.mobile-trigger span:after{
    position: relative;
    right: 2px;
    content: 'Close'; /* Change the text on the open toggle button */
    background-color:#343433;
    opacity: 0;
    transition: opacity .4s ease-in-out;
    -moz-transition: opacity .4s ease-in-out;
    -webkit-transition: opacity .4s ease-in-out; 
  }

  /* Change button when menu is open */
  .mobile-open a.mobile-trigger{
    -webkit-transition:background-color 0.2s linear; /* Button color transition effect */
    -moz-transition:background-color 0.2s linear; /* Button color transition effect */
    transition:background-color 0.2s linear; /* Button color transition effect */
    background: transparent; /* Changes button background to be slightly darker than open menu color */  
  }

  .mobile-open a.mobile-trigger span:after{
    opacity: 1; 
  }


  /* Toggle Button Icon & Animations
  ========================================================================== */

  a.mobile-trigger i {
    display: inline;
    position: relative;
    top: -2px;
    margin-left: 0;
    -webkit-transition-duration: 0s;
    -webkit-transition-delay: .2s;
    -moz-transition-duration: 0s;
    -moz-transition-delay: .2s;
    transition-duration: 0s;
    transition-delay: .2s;
  }
  a.mobile-trigger  i:before, a.mobile-trigger i:after {
    position: absolute;
    content: '';
  }
  a.mobile-trigger  i, a.mobile-trigger  i:before, a.mobile-trigger  i:after {
    width: 24px; /* Icon line width */
    height: 3px; /* Icon line height */
    background-color: #000; /* Icon color */
    display: inline-block;
  }
  a.mobile-trigger  i:before {
    margin-top: -8px; /* Position top line */
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: .2s;
    -webkit-transition-delay: .2s, 0;
  }
  a.mobile-trigger  i:after {
    margin-top: 8px; /* Position bottom line */
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: .2s;
    -webkit-transition-delay: .2s, 0;
  }
  .mobile-open a.mobile-trigger i {
    background-color: rgba(0,0,0,0.0);
    -webkit-transition-delay: .2s;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
    -moz-box-shadow:    0px 1px 1px rgba(0, 0, 0, 0);
    box-shadow:         0px 1px 1px rgba(0, 0, 0, 0);
  }
  .mobile-open a.mobile-trigger i:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0, .2s;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
    -moz-box-shadow:    0px 1px 1px rgba(0, 0, 0, 0);
    box-shadow:         0px 1px 1px rgba(0, 0, 0, 0);
  }
  .mobile-open a.mobile-trigger i:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0, .2s;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
    -moz-box-shadow:    0px 1px 1px rgba(0, 0, 0, 0);
    box-shadow:         0px 1px 1px rgba(0, 0, 0, 0);
  }

  /* Child Toggle Button
  ========================================================================== */

  a.child-triggerm {
    display: block !important; /* Hide button on Desktop */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important; /* Button width */
    min-width: 55px !important;
    height: 45px !important; /* Button height */  
    padding: 0 !important;
    border-left: 1px solid rgba(0, 0, 0, .20);
  }
  a.child-triggerm:hover {
    text-decoration: none;
  }


  /* Child Toggle Button Icon & Animations
  ========================================================================== */

  a.child-triggerm span {
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    transition-duration: .2s;
  }
  a.child-triggerm span:after {
    position: absolute;
    content: '';
  }
  a.child-triggerm span, a.child-triggerm span:after {
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color:#343433; /* Icon color */
    display: block;
  }

  /*   .mainmenu .hs-menu-flow-horizontal > ul > li:hover a.child-triggerm span, .mainmenu .hs-menu-flow-horizontal > ul > li:hover a.child-triggerm span:after { background-color: #fff; } */

  a.child-triggerm span:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    transition-duration: .2s;
  }
  a.child-triggerm.child-open span:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    transition-duration: .2s;
  }
  a.child-triggerm.child-open span {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    transition-duration: .2s;
  }


  /* Hide menu on mobile */
  .mainmenu.js-enabled .hs-menu-flow-horizontal,
  .mainmenu.js-enabled .hs-menu-children-wrapper{ display: none; }  

  /* Make child lists appear below parent items */
  .mainmenu ul.hs-menu-children-wrapper { visibility: visible !important; opacity: 1 !important; position: static !important; display: none; }

  /* Mobile Menu Styles */
  .mainmenu.js-enabled .hs-menu-flow-horizontal{
    position: absolute; /**************************************************************/
    top: 75px;             /* Positions the menu to drop from the very top of the screen */
    left: 0px;          /**************************************************************/                                              
    width: 100%;   
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.65);
    -moz-box-shadow:    0px 5px 5px 0px rgba(0, 0, 0, 0.65);
    box-shadow:         0px 5px 5px 0px rgba(0, 0, 0, 0.65); 
  }
  .mainmenu .hs-menu-flow-horizontal{
    padding: 0 0 0; /* Padding to add room for close button */
    background-color: #F1F1F1; /* Menu background color set off global mobile-menuColor variable */
    width: 100%; /* Full screen width */
    z-index: 8888;
  }

  /* Level 1 Menu List Styles */
  .mainmenu .hs-menu-flow-horizontal > ul > li{ position: relative; }

  /* Font size of top level list items */
  .mainmenu .hs-menu-flow-horizontal > ul > li a{ font-size: 16px;  line-height: 24px; overflow: visible; }

  /* Level 1 and Higher Menu List Styles */
  .mainmenu .hs-menu-flow-horizontal ul li{ border-top: 1px solid rgba(0, 0, 0, .35); /* Adds transparent dark highlights to top of top level list items */ }
  .mainmenu .hs-menu-flow-horizontal ul li a{ padding: 10px; color:#343433; }
  .mainmenu .hs-menu-flow-horizontal ul li a:hover{ color: #000; /* link hover color set by global mobile-aColorHover variable */ }

  /* Level 2 and Higher Menu List Styles */
  .mainmenu .hs-menu-flow-horizontal > ul ul li{ background-color: rgba(0, 0, 0, .08); }
  .mainmenu .hs-menu-flow-horizontal > ul ul li a{ text-indent: 10px; /* Indent Child lists */ font-size: 16px; /* Font size of child lists */ }

  /* Level 3 and Higher Menu List Styles */
  .mainmenu .hs-menu-flow-horizontal > ul ul ul li a{ text-indent: 30px; /* Indent Child lists */ }
  .mainmenu .hs-menu-flow-horizontal > ul ul ul ul li a{ text-indent: 50px; /* Indent Child lists */ }
} /* end of (max-width: 1024px) */


