.elo-banner-background {
  width: 100%; height: 498px; overflow: hidden; text-align: center; position: relative;
  flex-wrap: wrap; justify-content: center; align-items: center;
  display: -webkit-box; 
  display: -moz-box; 
  display: -ms-flexbox; 
  display: -webkit-flex; 
  display: flex;  
  background: #00ACCB;
}
  .elo-banner-image-desktop {
    display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: #000 url('https://www.worldvisionphilanthropy.org/hubfs/ELO_2021/elo-banner-image_70.jpg') no-repeat center top; 
    background-size: cover;
  }
  .elo-banner-image-mobile  {
    display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: #000 url('https://www.worldvisionphilanthropy.org/hubfs/ELO_2021/elo-banner-image_mobile_70.jpg') no-repeat center top;
    background-size: cover;
  }

    .elo-banner-text {
    color: #fff;
    font-family: Lato,sans-serif;
    font-size: inherit;
    font-weight: 400;
      padding-left:50px;
      position: relative;
    top: 221px;
    margin: 0px auto;
/*     margin-top: 200px;
    margin-left: 150px; */
    text-align: left;
    width: 100%;
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url(//fonts.googleapis.com/css?family=Montserrat:400,700);
/* @import url('http://example.com/example_style.css'); */

/**
 * CSS @imports must be at the top of the file.
 * Add them above this section.
 */



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

/* This responsive framework is required for all styles. */
{% include "hubspot/styles/responsive/required_base.css" %}
{% include "hubspot_default/shared/responsive/theme-foundation-v1-0.css" %}
{% include "hubspot/styles/responsive/hubtheme-modules.css" %}

/* These includes are optional, but helpful. */
{% include "hubspot/styles/patches/recommended.css" %}


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

   Index:

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

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

  3. MAIN NAVIGATION
    - Custom Menu Primary
    - Mobile Menu

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

  5. COS COMPONENTS
    - Blog
    - Forms
    - Buttons

  6. MISCELLANOUS

  7. MOBILE MEDIA QUERIES

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



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

   1. BASE STYLES

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


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

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

/* Colors */
{% set baseColor      = "#333333" %}    /* {# Dark Gray  |  Used on 'body' in 'Base'  |  Ex. "color: ;" #} */
{% set accentColor1   = "#006699" %}
{% set accentColor2   = "#ff6b00" %}    /* {# Orange  |  Ex. "color: ;" #} */
{% set accentColor3   = "#ddd" %}    /* {# Lightest Gray  |  Ex. "color: ;" #} */

/* Typography */
{% set baseFontFamily    = "'Lato',sans-serif;" %}            /* {# Used on 'body' in 'Base'  |  Ex. "font-family: ;" #} */
{% set baseFontSize      = "18px" %}                         /* {# Used on 'body' in 'Base'  |  Ex. "font-size: ;" #} */
{% set baseLineHeight    = "1.25" %}                          /* {# Used on 'body' in 'Base'  |  Ex. "line-height: ;" #} */
{% set webfont1          = "'Lato' %} /* {# Ex. "font-family: ;" #} */
{% set stdshadow    = "1px 1px 1px rgba(0,0,0,.5)" %}  /* {# Ex. "text-shadow: ;" #} */
{% set stdshadowLgt    = "0 1px 1px rgba(0, 0, 0, 0.2)" %}  /* {# Ex. "text-shadow: ;" #} */

/* Well Colors */
{% set primary   = "#428bca" %}
{% set success   = "#5cb85c" %}
{% set info      = "#5bc0de" %}
{% set danger    = "#a94442" %}
{% set plain     = "#f5f5f5" %}

/* Containers */
{% set maxWidth = "1080px" %} /* Used on '.page-center' in 'Base' and in the 'Portrait tablet to landscape and desktop' media query */


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

/**
  * Create jinja macros for CSS3 properties that need browser prefixes.
  *
  * Apply the style as shown below.  Ignore the jinja comment tags.
  *
  * {#    #}
  */


/* Transition */
{% macro transition(value) -%}
    -webkit-transition: ;
    -moz-transition: ;
    -o-transition: ;
    -ms-transition: ;
    transition: ;
{%- endmacro %}

/* Animation Delay */
{% macro animationDelay(value) -%}
    animation-delay: ;
    -moz-animation-delay: ;
    -webkit-animation-delay: ;
    -o-animation-delay: ;
    transition-delay: ;
    -webkit-transition-delay: ;
    -moz-transition-delay: ;
    -o-transition-delay: ;
{%- endmacro %}

/* Box Shadow */
{% macro boxshadow(value) -%}
    -webkit-box-shadow: ;
    -moz-box-shadow: ;
    -o-box-shadow: ;
    -ms-box-shadow: ;
    box-shadow: ;
{%- endmacro %}

/* Background Size */
{% macro backgroundsize(value) -%}
    -webkit-background-size: ;
    -moz-background-size: ;
    -o-background-size: ;
    background-size: ;
{%- endmacro %}

/* Border Radius */
{% macro borderradius(value) -%}
    -webkit-border-radius: ;
    -moz-border-radius: ;
    -o-border-radius: ;
    -ms-border-radius: ;
    border-radius: ;
{%- endmacro %}

/* User Select */
{% macro userselect(value) -%}
    -webkit-user-select: ;
    -moz-user-select: ;
    -ms-user-select: ;
    user-select: ;
{%- endmacro %}

/* Opacity*/
{% macro opacity(value) -%}
    -webkit-opacity: ;
    -moz-opacity: ;
    opacity: ;
{%- endmacro %}




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


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

*, *:before, *:after {
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
}

/* Website background color and default font styles */
body {
    background: #fff;
    color: ;
    font-family: ;
    font-size: ;
    font-weight:400;
    line-height: ;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

hr{
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);}

img {
       -ms-interpolation-mode: bicubic;
}
/**
 * Page Center
 *
 * Apply .page-center to full-width modules.
 */

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

a {
    text-decoration: none;
    outline : none;
    color: ;
}
a:hover {
 text-shadow: 0.8px 0.8px 0.8px rgba(0,0,0,.4);
 text-decoration: none;
}
a:focus {
     outline: none;
}

input:focus, textarea:focus {
    outline: none;
}

a img {
    border: 0;
    outline : none;
     
}


img {border : 0;}


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




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


/* Basic text */
p { margin: 10px 0; }

small {}
strong {}
em {}
cite {}
code {}
pre {}

p white {
    color:#ffffff;
}

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

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: ;
    margin: 10px 0;
    text-rendering: optimizelegibility;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}

h1 {font-size: 21px;text-align:center; padding-top:25px; padding-bottom:16px; color: ;  }
h2 { font-size: 30px; font-weight: 700; }
h3 { font-size: 19px; text-transform:uppercase; font-weight: extra bold; text-align:center;  color: ;  }
h3 a{ font-size: 19px; text-transform:uppercase; text-align:center;  color: ;  }
h4 { font-size: 24px; color:#ffffff; }
h5 { font-size: 22px; font-weight: 500 }
h6 {font-size:18px; font-weight:bold};


/* Lists */
ul, ol {}
ul ul, ul ol, ol ol, ol ul {}
li {}

ul.unstyled, ol.unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Quotes */
blockquote {}
blockquote p {}
blockquote small {}
blockquote small:before {}

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

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

.orange_text {
   
    font-weight: normal;
    text-transform: uppercase;
    font-size: 14px;
    font-family: ;
 
}

.orange_text a{
   
    font-weight: normal;
    font-size: 14px;
    font-family: ;
    color: ;
 
}

.orange_text a:hover{
   
text-decoration:none;
 
}

.footer_links {
    
    padding: 10px 5px;
    margin-left:0px;
    padding-left:0px;
    border-top:none;
    border-bottom: none;
    
    min-width: 150px;
    text-transform: none;
    font-size: 12px;
    font-family: ;
    line-height:20px;

}

.wrap_footer-menu {
    width:530px;
}

.footer_links a:hover{
text-decoration:none;
    }

.title {
    font-size:34px;
    font-weight:bold;
    
}

.bookmarks_wrapper {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    background-color:#f78e1e;
    
    
}

.bookmarks { 
    font-size: 18px; 
    text-transform:uppercase; 
      color: #ffffff; 
      padding-top:15px;  
      float:left;
      padding-right:28px;
      padding-left:28px;
      }
      
      
.bookmarks a{ 
    font-size: 18px; 
    text-transform:uppercase; 
    text-align:center;  
    color: #ffffff;  
    }
    
    
    .bookmarks a:hover{
        text-decoration: underline;
    }


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


   2. COS STRUCTURE


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


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


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

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


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

.header-container-wrapper .row-fluid .span2 {
    width: auto;
}

.header-container-wrapper .row-fluid .span1 {
    width: auto;
}

.header-container-wrapper .row-fluid .span7 {
    width: auto;
}

.header-container-wrapper .row-fluid .span4 {
    width: auto;
}
.header-container-wrapper .row-fluid .span8 {
    width: auto;
}


.header-container-wrapper {
    position: fixed;
    width: 100%;
    z-index: 9999;
    border-bottom: 1px solid rgba(155, 155, 155, 0.8);
    -moz-box-shadow: 0 0 5px #888;
    -webkit-box-shadow: 0 0 5px#888;
    box-shadow: 0 0 5px #888;
    padding-bottom:0px;
    background-color:#ffffff;
}
.header-container {
    padding: 10px 0;
    background: #fff;
    z-index: 9999;
}
.header-cta{
    margin-top: 20px;
}

.header-left {
  width:100%; 
}

.wrap_logo {
  max-height:50px;
}

.wrap_menu {}

.wrap_search  {
  width:15%;
  float:right;
  padding-top:23px;
}


/* Logo styling */
.header-container .hs_cos_wrapper_type_logo a img {
    /*background: ;*/
    max-height: 74px;
    width: auto;
    margin-top: 12px;
    padding-right:10px;
}

@media screen and (max-width: 1130px) {
  .wrap_logo  {
padding-left:20px;
  }
}


  .wrap_menu {
        width:100%;
    }

@media screen and (max-width: 977px) {

.wrap_logo {
  width:30%;
}
  
  .wrap_search  {
 width:15%;
  float:right;
  padding-top:12px;
}
  
  .header-container {
    padding: 11px 0;
    background: #fff;
    z-index: 9999;
}
  
}

@media screen and (max-width: 875px) {

  .wrap_search  {
 width:15%;
  padding-top:11px;
}
  
  .header-container {
    padding: 12px 0;
}
  
}
 

@media screen and (max-width: 830px) {
  .wrap_search  {
 width:11%;
  padding-top:8px;
}
  
  .header-container {
    padding: 14px 0;
}
  
}


@media screen and (max-width: 768px) {
  
  .wrap_search  {
display:none;  
}
  
  .header-left {
  margin-bottom:0px;
}
  
    .header-container-wrapper{
        position: relative;
        height:auto;
        padding-bottom:0px;
        margin-bottom:0px;
      padding-top:10px; 
    }
  
  .wrap_logo {
        width:35%;
        padding-left:20px;
    padding-bottom:10px;
        
    }
  
  .wrap_menu {
    padding-left:0px;
  }
      
    .header-container{
        padding-bottom: 0px;
      padding-top:0px;
    }

    .header-container-wrapper .container-fluid .row-fluid .page-center{
        padding: 0;
    }

    .header-container .hs_cos_wrapper_type_logo a img {
        max-width: 170px;
        margin: 0px 0 5px 10px;
    }
    
    .row-fluid [class*="span"].header-cta{
        display: none !important;
    }
    
  
}


@media screen and (max-width: 695px) {

 .wrap_logo {
        width:50%;
        padding-left:20px;
    padding-bottom:10px;
        
  }
}

/* Header Small */
.small-header .header-container { padding: 5px 0; }
.small-header .header-container .hs_cos_wrapper_type_logo a img { max-width: 200px; }
.small-header .custom-menu-primary .hs-menu-wrapper>ul { padding-top: 0; }
.small-header .header-cta { margin-top: 5px; }

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


.body-container-wrapper { margin-top: 67px; }
.body-container {}


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

/* Homepage */


/* Comment or uncomment which color to use */
#alert-bar {
    background-color:#00ACCA;    /* wv-blue */
    background-color:#46bb95;    /* wv-green */
    background-color:#00ACCA;   /* wv-purple */
    ; 
    min-height:50px;
    
}

#alert-cta {
    padding-top:40px; 
    text-align:right; 
    padding-right:20px; 
  
}

@media screen and (max-width: 1066px) {
  #alert-bar {
 margin-top:30px; 
}
}

#visionary-background-image{
    position: relative;
    background-repeat: no-repeat;
  
    background-position: center top;
    
    min-height: 434px;
}

@media screen and (min-width: 1343px) {
    .hero-text {
    float: right;
    width: 350px;
    position: relative;
    top: 200px;
    margin-right: 50px;
    line-height: 1.1;}
}

@media screen and (max-width: 1342px) {
.hero-text {
  width: 350px;
  margin: 0 auto;
  line-height: 1.1;
  text-align: center;
}
}

@media screen and (max-width: 574px) {
.hero-text {
display:none;
}
}

/*  .wrap_si {
     background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/si_background8.jpg"); 
     background-repeat: no-repeat; 
     min-height: 515px; 
     min-width:100%; 
     padding-left:10px;
     padding-right:10px;
     padding-top:15px;
     padding-bottom:15px;
     margin: 0 auto;
     max-height:auto;
background-position: left bottom 40%;
    ;
    background-color: #f0e7db;
    height:auto;
 }
 */
.si_home, .si_home2, .si_home3, .si_home4, .si_home5, .si_home6, .si_home7 {
    width:115px;
    float:left;
    padding-left:5px;
    padding-right:5px;
  text-align:center;
  margin:auto !important;
   background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/spacer.png"); 
  background-size:115x;
  background-repeat:repeat-x;
  min-width:115px;
}

.wrap_si_left {
    width:10% !important;
 }
  
  .wrap_si_center {
    border:1px solid #ffffff; 
    padding:20px; 
    margin-left:auto; 
    margin-right:auto; 
    width:80% !important;
 
 }
  .wrap_si_right {
    width:10% !important;
 }

.wrap_si_bottom {
  padding-top:10px; 
  text-align:center;
}


@media screen and (max-width: 1260px) {
.wrap_si { 
     height: auto; 
     width:100%; 
     padding:15px;
     background-position: left top 62%;
 }
}

@media screen and (max-width: 1160px) {
.wrap_si {
     height: auto; 
     width:100%; 
     padding:15px;
     background-position: left top 65%;
 }
}


@media screen and (max-width: 1106px) {
.wrap_si_left {
    width:5% !important;
 }
  
  .wrap_si_center{
    width:90% !important;
    padding-left:5%;
 }
  .wrap_si_right {
    width:5% !important;
 }
  
}


@media screen and (max-width: 1019px) {
.wrap_si_left {
    width:5% !important;
 }
  
  .wrap_si_center{
    width:90% !important;
    padding-left:2%;
 }
  .wrap_si_right {
    width:5% !important;
 }
  
  .wrap_si { 
     background-position: left top 71%;
 }
  
}

@media screen and (max-width: 988px) {
.wrap_si_left {
    width:2% !important;
 }
  
  .wrap_si_center{
    width:94% !important;
    padding-left:2%;
 }
  .wrap_si_right {
    width:2% !important;
 }
  
  .wrap_si {
     background-position: left top 71%;
  height:auto;
 }
  
}


@media screen and (max-width: 955px) {
.wrap_si_left {
    width:1% !important;
 }
  
  .wrap_si_center{
    width:98% !important;
    padding-left:3%;
 }
  .wrap_si_right {
    width:1% !important;
 }
  
  .wrap_si {
     background-position: left top 83%;
    height:auto;
    min-height:550px;
 }
  
}
@media screen and (max-width: 916px) {
.wrap_si_left {
    width:0% !important;
 }
  
  .wrap_si_center{
    width:100% !important;
    padding-left:2%;
 }
  .wrap_si_right {
    width:0% !important;
 }
  
  .wrap_si {
     background-position: left top 90%;
    height:auto;
 }
  
}


@media screen and (max-width: 891px) {
.wrap_si_left {
    width:20% !important;
 }
  
  .wrap_si_center{
    width:60% !important;
    padding-left:1%;
 }
  .wrap_si_right {
    width:20% !important;
 }
  
  .wrap_si_bottom {
    text-align:left !important;
    padding-left:18px;
  }
  
  .wrap_si {
       
     background-position: left bottom ;
    height:auto;
    min-height:700px;
 }
  
}

@media screen and (max-width: 863px) {
.wrap_si_left {
    width:17% !important;
 }
  
  .wrap_si_center{
    width:66% !important;
    padding-left:3%;
 }
  .wrap_si_right {
    width:17% !important;
 }
  
  .wrap_si_bottom {
    text-align:left !important;
    padding-left:18px;
  }
  
  .wrap_si {
       
     background-position: left bottom ;
    height:auto;
    min-height:700px;
 }
  
}

@media screen and (max-width: 816px) {
 .wrap_si_center{
    width:66% !important;
    padding-left:0%;
 }
  
}

@media screen and (max-width: 779px) {
.wrap_si_left {
    width:15% !important;
 }
  
  .wrap_si_center{
    width:70% !important;
    padding-left:0%;
 }
  .wrap_si_right {
    width:15% !important;
 }
  
   .wrap_si {
       
     background-position: left bottom ;
    height:auto;
    min-height:730px;
 }
}

@media screen and (max-width: 767px) {
.si_home, .si_home2, .si_home3, .si_home4, .si_home5, .si_home6, .si_home7 {
    width:100%;
    float:left;
    padding-left:5px;
    padding-right:5px;
  padding-bottom:6px;
}

.wrap_si {
    
     background-repeat: no-repeat; 
     background-color: #f0e7db;
     height: auto; 
     width:100%; 
     padding:15px;
     background-position: left bottom;
 }
  .wrap_si_left {
    width:0% !important;
 }
  
  .wrap_si_center{
    width:100% !important;
    padding-left:0%;
    margin-top:-20px;
 }
  .wrap_si_right {
    width:0% !important;
 }
  
  .wrap_si_bottom {
    text-align:center !important;
    padding-left:0px;
  }
  
}

.community-group {
   display: inline-block;   
  min-width:22%; 
  border-radius:10px; 
  line-height:2em;
  padding-left:20px;
  padding-right:20px;
  min-height:95px !important;
  vertical-align:middle;
}

.community-group2 {
   display: inline-block;   
  min-width:22%; 
  border-radius:10px; 
  line-height:2em;
  padding-left:10px;
  padding-right:10px;
  min-height:95px !important;
  vertical-align:middle;
}

.community-group3 {
   display: inline-block;   
  min-width:22%; 
  border-radius:10px; 
  line-height:75px;
  padding-left:10px;
  padding-right:10px;
  min-height:95px !important;
  vertical-align:middle;
}

@media screen and (max-width: 896px) {
  .community-group  {
  display: inline-block;
    min-width:100%;
  margin:0px 10px 20px 0px !important;
    line-height:2em;
    min-height:50px !important;

  
}

    .community-group2  {
  display: inline-block;
    min-width:100%;
  margin:0px 10px 20px 0px !important;
    line-height:2em;
        min-height:50px !important;

  
}

    .community-group3  {
  display: inline-block;
    min-width:100%;
  margin:0px 10px 20px 0px !important;
    line-height:2em;
        min-height:50px !important;

  
}
}

@media screen and (max-width: 767px) {
  .community-group {
    line-height:3em;
  }
  .community-group2 {
    line-height:3em;
  }
  .community-group3 {
    line-height:3em;
  }
}

.three-across1 h2, .three-across2 h2, .three-across3 h2 {
  color: #fff;
  /* border: 1px solid #fff; */
  font-size: 44px;
  font-weight: normal !important;
  margin-top: 0px;
  margin-left: -22px;
  margin-right: -22px;
  padding-top: 10px;
  padding-bottom: 16px;
}

.three-across1 p, .three-across2 p, .three-across3 p {
  color: #000;
  background-color: #fff;
}

.three-across1 h2 {
  background: #00ACCA;
}

.three-across2 h2 {
  background: #9054A1;
}

.three-across3 h2 {
  background: #46BB95;
}

.three-across1 {
  border: 2px solid #00ACCA;
}

.three-across2 {
  border: 2px solid #9054A1;
}

.three-across3 {
  border: 2px solid #46BB95;
}

.three-across1 a {
  color: #00ACCA;
}

.three-across2 a {
  color: #9054A1;
}

.three-across3 a {
  color: #46BB95;
}

.three-across1, .three-across2, .three-across3 {
 display: inline-block;   
 width: 336px !important; 
 line-height:2em;
 padding-left:20px;
 padding-right:20px;
 vertical-align:middle;
 min-height: 414px !important;
}

.three-across1 h2 {
  background-color:#00ACCA;
}

@media screen and (max-width: 896px) {
 .three-across1 {
 display: inline-block;
   min-width:100%;
 margin:0px 10px 20px 0px !important;
   line-height:2em;
   min-height:50px !important;

 
}

   .three-across2 {
 display: inline-block;
   min-width:100%;
 margin:0px 10px 20px 0px !important;
   line-height:2em;
       min-height:50px !important;

 
}

   .three-across3  {
 display: inline-block;
   min-width:100%;
 margin:0px 10px 20px 0px !important;
   line-height:2em;
       min-height:50px !important;

 
}
}

@media screen and (max-width: 767px) {
.three-across1  {
   line-height:3em;
 }
 .three-across2 {
   line-height:3em;
 }
 .three-across3 {
   line-height:3em;
 }
}

.why-world-vision, .why-world-vision2, .why-world-vision3 {
  background-color: #ffffff;
  display: inline-block;   
 min-width:22%; 
 border-radius:10px; 
 line-height:1.5em;
 padding-left:20px;
 padding-right:20px;
  padding-bottom: 20px;
 min-height:95px !important;
 vertical-align:middle;
}

@media screen and (max-width: 896px) {
 .why-world-vision  {
 display: inline-block;
   min-width:100%;
 margin:0px 10px 20px 0px !important;
   line-height:2em;
   min-height:50px !important;

 
}

   .why-world-vision2  {
 display: inline-block;
   min-width:100%;
 margin:0px 10px 20px 0px !important;
   line-height:2em;
       min-height:50px !important;

 
}

   .why-world-vision3  {
 display: inline-block;
   min-width:100%;
 margin:0px 10px 20px 0px !important;
   line-height:2em;
       min-height:50px !important;

 
}
}

@media screen and (max-width: 767px) {
 .why-world-vision {
   line-height:3em;
 }
 .why-world-vision2 {
   line-height:3em;
 }
 .why-world-vision3 {
   line-height:3em;
 }
}

.visionary1   {
    padding: 0px 0px 0px 0px;
    margin: 0px 30px 20px 0px ;
    box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.12);
    float:left;
    width:31%;
    background-color:#ffffff;

}

.visionary2   {
  padding: 0px 0px 0px 0px;
  margin: 0px 30px 20px 0px ;
  box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.12);
  float:left;
  width:31%;
  background-color:#ffffff;

}

.visionary3   {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 20px 0px ;
  box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.12);
  float:left;
  width:31%;
  background-color:#ffffff;

}

.visionary4 {
  padding: 0px 0px 0px 0px;
  margin: 0px 30px 20px 0px ;
  box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.12);
  float:left;
  width:31%;
  background-color:#ffffff;

}

.visionary5   {
  padding: 0px 0px 0px 0px;
  margin: 0px 30px 20px 0px ;
  box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.12);
  float:left;
  width:31%;
  background-color:#ffffff;

}


.visionary6   {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 20px 0px ;
  box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.12);
  float:left;
  width:31%;
  background-color:#ffffff;

}

@media screen and (max-width: 914px) {
  .visionary1, .visionary2, .visionary3, .visionary4, .visionary5, .visionary6  {
padding:20px 20px 0px 20px;
    width: 100%;
    margin-bottom:30px;
  }
}
.card1, .card2, .card3, .card4, .card5  {
  float:left;
  box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.12);
  width: 18%;
  padding: 0px 0px 0px 0px;
  margin: 0px 10px;
  

}

.card6 {
  width:0%;
}

.card_button a {
  background-repeat:repeat-x;
  color:#ffffff; 
  text-decoration:none; 
  padding:5px 10px 5px 10px;
border-radius: 5px;
  background-color: #999999; 
  font-size:14px; 
  text-align:center;
  margin-top:5px;
  margin-bottom:20px;
}

@media screen and (max-width: 1018px) {
  .card1, .card2, .card3, .card4, .card5  {
    width: 100%;
   margin-bottom:20px;
    margin-left:0px;
  }
}


@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card1, .card2, .card3, .card4, .card5 {
    align-items: stretch;
    text-align: center;
  }
  

}

.feature_image {
padding:20px 0px 20px 20px; 
  width:30%;
  float:left;
}
.feature_copy {
padding:20px; 
  width:70%;
  float:left;
  
}
.row-fluid .feature_image .span4 {
    width: auto;
}
.row-fluid .feature_image .span8 {
    width: auto;
}


@media screen and (max-width: 769px) {
  .feature_image  {
padding:20px 20px 0px 20px;
    width: 100%;
  }
  
  .feature_copy  {
    width: 100%;
   margin-bottom:20px;
  }
}

.impact_image {
 
     background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/water_impact_wide_new-1.png"); 
     background-repeat: no-repeat; 
    background-size:contain; 
     width:100%; 
background-position: center center;
    background-color: #e9e9e9;
    height:auto;
  min-height:185px;
  
 }


@media screen and (max-width:916px) {
 
.impact_image {
 
     background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/water_impact_narrow_new.png"); 
     background-repeat: no-repeat; 
    background-size:contain; 
     width:100%; 
background-position: center center;
    background-color: #e9e9e9;
    height:auto;
  min-height:400px;
  
 }  
  
}
  
@media screen and (max-width:716px) {
 
.impact_image {
 
     background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/water_impact_narrow_new.png"); 
     background-repeat: no-repeat; 
    background-size:contain; 
     width:100%; 
background-position: center center;
    background-color: #e9e9e9;
    height:auto;
  min-height:395px;
  
 }  
  
}

@media screen and (max-width:500px) {
 
.impact_image {
 
     background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/water_impact_narrow_new.png"); 
     background-repeat: no-repeat; 
    background-size:contain; 
     width:100%; 
background-position: center center;
    background-color: #e9e9e9;
    height:auto;
  min-height:320px;
  
 }  
  
}
  
.impact_image2 {
 
     background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/mch_impact_wide_new.png"); 
     background-repeat: no-repeat; 
    background-size:contain; 
     width:100%; 
background-position: center center;
    background-color: #e9e9e9;
    height:auto;
  min-height:185px;
  
 }


@media screen and (max-width:916px) {
 
.impact_image2 {
 
     background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/mch_impact_narrow_new-2.png"); 
     background-repeat: no-repeat; 
    background-size:contain; 
     width:100%; 
background-position: center center;
    background-color: #e9e9e9;
    height:auto;
  min-height:400px;
  
 }  
  
}
  
@media screen and (max-width:716px) {
 
.impact_image2 {
 
     background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/mch_impact_narrow_new-2.png"); 
     background-repeat: no-repeat; 
    background-size:contain; 
     width:100%; 
background-position: center center;
    background-color: #e9e9e9;
    height:auto;
  min-height:395px;
 }  
  
}

@media screen and (max-width:500px) {
 
.impact_image2 {
 
     background-image: url("https://www.worldvisionphilanthropy.org/hubfs/home%20/mch_impact_narrow_new-2.png"); 
     background-repeat: no-repeat; 
    background-size:contain; 
     width:100%; 
background-position: center center;
    background-color: #e9e9e9;
    height:auto;
  min-height:320px;
  
 }  
  
}

 
}
.wrap_donate {
    color: #ffffff; 
    padding:20px; 
    background-image: url("http://cdn2.hubspot.net/hubfs/1786753/donate.jpg"); 
    height: 434px; 
    width: 49%; 
    background-repeat:no-repeat;
    float: left;

}

.wrap_visionary {
    color: #ffffff; 
    padding:20px; 
    background-image: url("http://cdn2.hubspot.net/hubfs/1786753/visionary.jpg"); 
    height: 434px; 
    width: 49%; 
    background-repeat:no-repeat;
    text-align:right;
    float: right;
}





.homepage .subscribe-form {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    padding-bottom: 70px;
    color: #fff;
    position: absolute;
    bottom: 0;
}
.homepage .subscribe-form .title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}
.homepage .subscribe-form input[type="email"] {
    max-width: 400px;
    height: 37px;
}
.homepage .subscribe-form .hs_email {
    display: inline-block;
    width: 354px;
    margin-right: 5px;
    vertical-align: top;
}
.homepage .subscribe-form .hs_submit {
    display: inline-block;
    
}
.homepage .subscribe-form .hs-button.primary {
    border-style: solid;
    border-width: 2px;
    color: #FFF;
    margin: 0;
    border-color: ;
    background: ;
}
.homepage .subscribe-form .hs-button.primary:hover {
    background: #fff;
    border-style: solid;
    border-width: 2px;
    border-color: ;
    color: ;
}


.anchor{
  display: block;
  height: 85px; /*same height as header*/
  margin-top: -85px; /*same height as header*/
  visibility: hidden;
}




.social-media {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0px;
}
.social-media:before {
    
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: ;
    z-index: 1;
}
.social-media > .page-center {
    position: relative;
    z-index: 2;
}
.social-media a{
    padding-right: 5px;
}
.social-tagline {
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.6);
    font-weight: 700;
    font-size: 13px;
    text-align: right;
}
.logo-bar-background{
    background: #f5f5f5;
    height: 100px;
}


.twitter-timeline a{
    color:#ffffff;
    font-size:13px;
}

a.twitter-timeline {
    color:#ffffff;
    font-size:13px;
}


.SandboxRoot {
    color:#ffffff;
}

#offer-background-image{
    position: relative;
    background-color: #444;
    background-repeat: no-repeat;
    background-position: center center;
    
    min-height: 450px;
}
#offer-background-image h1 {
    color: #fff;
    text-shadow: ;
    max-width: 720px;
    margin-bottom: 0px;
    margin-top: 30px;
    background: rgba(0,0,0, 0.2);
    padding: 5px 5px 5px 10px;
}
#offer-background-image h3 {
    color: #fff;
    font-size: 22px;
    max-width: 680px;
    margin-bottom: 15px;
    font-family: ;
    font-weight: normal;
    text-shadow: ;
    background: rgba(0,0,0, 0.2);
    padding: 5px 5px 5px 10px;
}
.offer-image { display: none !important; }

#offer-background-image .hs-form-field>label{
    color: #fff;
}
#offer-background-image .offer-form h3{
    background: none;
}
.homepage .main-content h2 { margin: 0px; }
.homepage .main-content .sub-headline { font-size: 18px; }
.faq-background { background: #f5f5f5; }

.homepage .fb_iframe_widget {
    top: -2px;
}
.homepage .fb_iframe_widget > span,
.homepage .linked-in-share {
    vertical-align: top !important;
}
.homepage #twitter-widget-0 {
    width: 80px !important;
}
.homepage .social-share-data {
    position: relative;
    top: 3px;
}



/*Twitter Widget */
blockquote.twitter-tweet {
  display: inline-block;
  font-family: ;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.25;
  border-color: #eee #ddd #bbb;
  border-radius: 0px;
  border-style: none;
  border-width: 0px;
  box-shadow: 0px 0px 0px 0px;
  margin: 0px 0px;

  background-color:transparent;
  color:#ffffff;
}
 
blockquote.twitter-tweet p {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.25;

}
 
blockquote.twitter-tweet a {
  color: inherit;
  font-weight: normal;
  text-decoration: none;
  outline: 0 none;

}
 
blockquote.twitter-tweet a:hover,
blockquote.twitter-tweet a:focus {
  text-decoration: underline;
}


/* Reusable Components
   ========================================================================== */




/* FAQ Module */
.accordion { margin-bottom: 20px; }
.accordion_group {
    margin-bottom: 2px;
    border: 1px solid ;
    
    background: #f0f0f0;
    padding: 5px 10px;
}
.accordion_header {
    cursor: pointer;
    font-size: 18px;
    line-height: 16px;
    width: 100%;
    padding: 10px 15px;
}
.accordion_icon{
    color: ;
    padding-right: 10px;
}
.accordion_content { padding: 10px 15px; }


/* Page Title Background */
.title-background{
    background: #f5f5f5;
}
.title-background h1, .title-background h2{
    margin-bottom: 0px;
}


/* Blog Subscribe Module */
.subscribe-form {
    background: #f5f5f5;
}
.subscribe-form .widget-type-blog_subscribe input[type="email"] {
    max-width: 250px;
    height: 36px;
    width: 100%;
    margin-top: -2px;
 
}
.subscribe-form .hs_email {
    display: inline-block;
    width: 250px;
    margin-right: 5px;
    vertical-align: top;
}
.subscribe-form .hs_submit {
    display: inline-block;
}
.subscribe-form .hs-button.primary {
    border-style: solid;
    border-width: 2px;
    border-color: ;
    margin: 0;

}
.subscribe-form .hs-button.primary:hover {
    background: #fff;
    border-style: solid;
    color: ;
    border-color: ;
    background: ;
    border-width: 2px;
}
/* Hide blog subscribe label */
.widget-type-blog_subscribe label {
    display: none !important;
}

/* Team member Module */
.team-member-headshot img{
    
    max-width: 150px;
    max-height: 150px;
    border-style: solid;
    border-width: 5px;
    display: inline-block;
    width: 100%;
    border-color: ;
    height: auto;
}
.team-member-social a{
    color: ;
    font-size: 30px;
}
.three-column .team-member-social a {
    display: block;
}
.three-column .team-member-social i {
    padding: 0;
}
.team-member-social i{
    padding-right: 5px;
}
.team-member-social a:last-child i{
    padding-right: 0px;
}
.team-member-social a:hover,
.hs-author-social-links a.hs-author-social-link:hover {
    color: ;
}
.team-member-name{
    margin: 0px;
    font-weight: 100;
}
.team-member-title{
    margin: 0px;
    color: ;
    font-weight: 100;
}


/* Well Module */
#well{
    min-height: 20px;
    margin-bottom: 20px;
    
    color: #fff;
}
#well .default{
    
    border-style: solid;
    border-width: 1px;
    background: ;
    border-color: ;
}
#well .primary{
    
    background: ;
    border: 1px solid ;
}
#well .success{
    
    background: ;
    border: 1px solid ;
}
#well .danger{
    
    background: ;
    border: 1px solid ;
}
#well .info{
    
    background: ;
    border: 1px solid ;
}
#well .plain{
    
    background:;
    color: ;
    border: 1px solid ;
}
#well .small{
    padding: 20px;
}
#well .medium{
    padding: 24px;
}
#well .large{
    padding: 28px;
}

#well .close{
    float: right;
    padding: 3px 10px 0px 0px;
    cursor: pointer;
    color: ;
}

/* Pricing Module */
.pricing-table h3.heading {
    color: #fff;
    margin: 0px;
    text-align: center;
    padding: 5px 0px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    background: ;
    border-top-right-radius: 4px;
    }
.pricing-table .label{
    padding: 5px 10px;
    right: 15px;
    font-size: 12px;
    color: #fff;
    
    margin-left: 10px;
    vertical-align: middle;
    background: ;
}
.pricing-table .content {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    }
.pricing-table .content ul{
    list-style: none;
    padding-left: 0px;

    }
.pricing-table .content ul li{
    padding: 10px 0px;
    }
.pricing-table .number{
    font-size: 60px;
    font-weight: 700;
    }
.pricing-table .currency{
    font-size: 24px;
    position: relative;
    top: -25px;
    }
.pricing-table .unit{
    font-size: 12px;
    color: #ccc;
    }
.pricing-table .content a{
    padding: 10px 25px;
}
.icon-width i {
    color: ;
}

/* Rich Editor Checkmark Lists */
.hs_cos_wrapper_type_rich_text ul {
    padding-left: 20px;
}
.hs_cos_wrapper_type_rich_text ul li {
    list-style: none;
}
.hs_cos_wrapper_type_rich_text ul li:before {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f058";
    margin-right: 8px;
    color: ;
    font-size: 18px;
}

/* Tabber Module */
.body-container .tabber-tabs {
    border-bottom: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 0 0 -2px;
}
.tabber-tabs > li {
    float: left;
}
.tabber-tabs > li > a {
    padding-right: 12px;
    padding-left: 12px;
    margin-right: 2px;
    line-height: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 20px;
    border: 1px solid transparent;
    
    text-decoration: none;
    display: block;
}
.tabber-tabs > .active > a,
.tabber-tabs > .active > a:hover,
.tabber-tabs > .active > a:focus {
    color: #555555;
    cursor: default;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}
.tabber-content {
    background: #fff;
    padding: 8px;
    border: 1px solid #ddd;
    
}
.body-container .tabber-content ul {
    padding: 0;
    margin: 0;
}
.tabber-content .block h3 {
    display: none;
}
.blog-tabber .hs-rss-item.hs-with-featured-image .hs-rss-featured-image {
    float: left;
    width: 40%;
    
}
.blog-tabber .hs-rss-item.hs-with-featured-image .hs-rss-item-text {
    float: right;
    width: 60%;
    padding: 0 0 0 15px;
}
.blog-tabber .hs-rss-item:last-child {
    margin-bottom: 10px;
}

.hs-rss-item.hs-with-featured-image .hs-rss-item-image-wrapper {
display: block;
width: auto;
}

.blog-tabber .hs-rss-item.hs-with-featured-image .hs-rss-featured-image {
float: left;
width: 40%;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
}

/* Testimonial */
.quote-box {
    background: #e9e9e9;
    padding: 30px;
    padding-bottom: 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: relative;
    margin-bottom: 30px;
}
.quote-box:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #f5f5f5;
    position: absolute;
    bottom: -20px;
    margin-left: -20px;
    left: 50%;
}
.quote {
    border: none;
    padding: 0;
    font-size: 14px;
    color: #666666;
    margin: 0px;
}
.details {
    font-size: 13px;
}
.name {
    display: block;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
}
.quote-box .title {
    display: block;
    color: #b3b3b3;
    margin-bottom: 0;
    font-weight: normal;
    font-size: 13px;
}
.quote-box .fa{
    font-size: 18px;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.img-rounded {
    border-radius: 6px;
}

.testimonial-headshot img{
    border-radius: 50%;
    max-width: 150px;
    max-height: 150px;
    margin-top: -10px;
    border: 0px solid #f5f5f5;
}

/* Flex Slider */
.hs_cos_flex-slider .caption {
    background: ;
}


/* Modular Selectors
   ========================================================================== */

/* Colors */
.accentColor1 { color: ; }
.accentColor2 { color: ; }
.accentColor3 { color: ; }

/* Delays */
.delayp1 {  }
.delayp2 {  }
.delayp3 {  }
.delayp4 {  }
.delayp5 {  }
.delayp6 {  }
.delayp7 {  }
.delayp8 {  }
.delayp9 {  }
.delay1s {  }
.delay2s {  }

/* Paddings */
.padding10tb { padding: 10px 0px; }
.padding20tb { padding: 20px 0px; }
.padding40tb { padding: 40px 0px; }
.padding60tb { padding: 60px 0px; }
.padding80tb { padding: 80px 0px; }
.padding100tb { padding: 100px 0px; }


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


.footer-container-wrapper {
    padding-top:40px;
}
.footer-container {}

.footer-background,
.footer-background a,
.footer-copyright a,
.footer-container-wrapper .more-links a,
.footer-container-wrapper .contact-us a,
.footer-container-wrapper .about-us a {
    color: ;
}
.footer-background,
.footer-background a {
    background: ;
}
.footer-container-wrapper .more-links a:hover,
.footer-container-wrapper .contact-us a:hover,
.footer-container-wrapper .about-us a:hover {
    color: #FFF;
}
.footer-container-wrapper .more-links a {
    margin: 10px 0px;
}
.footer-container-wrapper .footer-copyright{
    background: ;
    color: ;
    padding: 10px 0px;
    font-size: 12px;
}
.footer-container-wrapper .social-icons .fa{
    font-size: 20px;
    padding-right: 5px;
}

/* Back to Top */
.container-fluid .row-fluid .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    font-size: 13px;
    padding: 1px 8px 4px;
    border-radius: 4px;
    background: ;
    cursor: pointer;
    text-align:center;
}
.back-to-top a {
    color: #ffffff;
}







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


   3. MAIN NAVIGATION


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





/* ==========================================================================
   Custom Menu Primary
   ========================================================================== */


{% set ulColor       = "" %} /* Set ul background color */
{% set liColor       = "" %} /* Set li background Color */
{% set aColor        = "" %} /* Set link Color */
{% set aColorHover   = "" %} /* Set link Hover Color */

/* Parent List */

.wrap_footer-menu .hs-menu-children-wrapper{
    display: block !important;
  }
  
  .wrap_footer-menu .hs-menu-children-wrapper > ul li ul {
    display: block !important;
  }

  .wrap_footer-menu .hs-menu-children-wrapper > ul li ul a {
    display: block !important;
  }



.custom-menu-primary .hs-menu-wrapper > ul{
    background:;
    padding-top: 10px;
  margin-left:20px;
    float: left;
}

@media screen and (max-width: 977px) {
.custom-menu-primary .hs-menu-wrapper > ul{
  
    padding-top: 11px;
  margin-left:20px;
    float: left;
}
  
}

@media screen and (max-width: 875px) {
.custom-menu-primary .hs-menu-wrapper > ul{
  
    padding-top: 11px;
  margin-left:5px;
    float: left;
}
  
}

@media screen and (max-width: 830px) {
.custom-menu-primary .hs-menu-wrapper > ul{
  
    padding-top: 7px;
  margin-left:8px;
    float: left;
}
  
}

.custom-menu-primary .hs-menu-wrapper > ul > li{
    background:
    font-weight: normal;
    font-size: 14px;
    margin-right: 5px;
    font-family: ;
 
}


.footer-menu .hs-menu-wrapper > ul > li{
    background:
    font-weight: normal;
    font-size: 14px;
    margin-right:23px;
    font-family: ;
    color: ;
  
}

@media screen and (max-width: 1135px) {
.footer-menu .hs-menu-wrapper {
  padding-left:20px;
  }
  
  .footer-menu .hs-menu-wrapper > ul > li{
  margin-right:5px;
  }
  
  .footer-menu2 {
    margin-left:0px !important;
  }
  
  .footer_legal_right {
    width:100%;
  }
  
}

@media screen and (max-width: 883px) {

  
  .footer_legal_right .row-fluid .span3 {
    width:100%;
    float:left;
  }
  
}


@media screen and (max-width: 852px) {

  .footer_legal_right  {
   display:none;
  }
  

  
}

.footer-menu .hs-menu-wrapper > ul > li > a{
    background:
    font-weight: normal;
    font-size: 14px;
    margin-right: 5px;
    font-family: ;
    color: ;
}

.footer-menu .hs-menu-wrapper > ul > li > a:hover{
   text-decoration: none;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a{
    padding: 10px 15px;
    position: relative;
    color: ;
    display: block;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
    background-color:;
    color: #ffffff;
    
}

/* Child List */
.custom-menu-primary .hs-menu-wrapper > ul ul{
    left: 0px!important;
    background: #fff;
    padding: 10px 5px;
    border-top: 3px solid ;
    border-bottom: 3px solid ;
    
    min-width: 150px;
    font-size: 12px;
    font-family: ;
    line-height:20px;
    }
    
.footer-menu .hs-menu-wrapper > ul ul {
    left: 0px!important;
    background: #fff;
    padding: 10px 5px;
    margin-left:0px;
    padding-left:0px;
    border-top:none;
    border-bottom: none;
    
    min-width: 150px;
    text-transform: none;
    font-size: 12px;
    font-family: ;
    line-height:20px;
    color: ;

}

.footer-menu .hs-menu-wrapper > ul ul li a:hover{
text-decoration:none;
    }
    
    
    
    
.custom-menu-primary .hs-menu-wrapper > ul ul li:hover {
    text-decoration:none;
    text-transform: none;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > ul:before {
    display: inline-block;
    font-family: ;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    padding-left: 0px;
    text-shadow: 0px -1px 0px #ccc;
    text-transform: none;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li{
    background:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a{
    color:;
    padding: 3px 10px;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover{
    
}

/* Override max width on menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
}

/* Carret after Menu items with dropdown */
.hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children > a:after {
    content: "\f0d7";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 7px;
    font-size: 13px;
}
.hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:after  {
    border-top-color: ;
}

/* Show menu and remove background color on desktop after toggling mobile menu */
@media screen and (min-width:769px) {
  .custom-menu-primary .hs-menu-wrapper {
      display:block !important;
      background: transparent !important;
  }
}

/* Force header to trigger mobile layout on iPads */
@media (max-width: 768px){
  .header-container-wrapper .container-fluid  .row-fluid [class*="span"] {
    display: block;
    float: none !important;
    width: auto !important;
    margin-left: 0 !important;
  }
}



/* ==========================================================================
   Mobile Menu - Hubspot Standard Toggle Menu
   ========================================================================== */


/**
 * Special Note
 *
 * When the menu is open, a class of .mobile-open is applied to the body. You can
 * use this for custom styling on any element when the menu is in the open position.
 */

.mobile-trigger, .child-trigger{
    display: none !important; /* Hide button on Desktop */
}

@media (max-width: 768px){

.child-trigger{
    display: none !important;
  }
  /* Variables
     ========================================================================== */

  {% set menuColorMobile = "#333333" %}   /* Set Mobile Menu Background Color */
  {% set aColorMobile = "#ffffff" %}      /* Set Link Color */
  {% set aColorHoverMobile = "#ffffff" %} /* 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
    */

  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    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:;
  }


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

  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: 0px;          /* Position Button at right of screen  */
    right: 10px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    background: #666666; /* Background color */
    border: 1px solid ;
    z-index: 99999999999; /* Z-index to keep button on top of other layers */
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #ffffff; 
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:;
    background-color: ; 
    border-color: transparent;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:;
    background-color: ; 
    border-color: transparent;
  }


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

  .mobile-trigger i{
    display: inline;
    position: relative;
    top: -5px;
  }
  .mobile-trigger i:before, .mobile-trigger i:after{
    position: absolute;
    content: '';
  }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 22px; /* Icon line width */
    height: 2px; /* Icon line height */
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: ; /* Icon color */
    display: inline-block;
  }
  .mobile-trigger i:before{
    margin-top: -6px; /* Position top line */
  }
  .mobile-trigger i:after{
    margin-top: 6px; /* Position bottom line */
  }

   .mobile-trigger:hover i, .mobile-trigger:hover i:before, .mobile-trigger:hover i:after,  
  .mobile-open .mobile-trigger i, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
      background-color: ; /* Icon color */
  }

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

  .child-trigger{
    display: none !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 dotted rgba(255, 255, 255, .20);
  }
  .child-trigger:hover{
    text-decoration: none;
  }


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

  .child-trigger i{
display:none !important;
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color:; /* Icon color */
    display: block;
  }
  .child-trigger i:after{
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .child-trigger.child-open i:after{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .child-trigger.child-open i{
  
  }


  /* Menu Styles on Mobile Devices
     ========================================================================== */

  
  
  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }
  
  .wrap_footer-menu .hs-menu-children-wrapper{
    display: block !important;
  }
  
  .wrap_footer-menu .hs-menu-children-wrapper > ul li ul {
    display: block !important;
  }

  .wrap_footer-menu .hs-menu-children-wrapper > ul li ul a {
    display: block !important;
  }
  
  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: hidden !important;

    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Mobile Menu Styles */
.custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative; /**************************************************************/
    top: 0;             /* Positions the menu to drop from the very top of the screen */
    left: 0;          /**************************************************************/
    padding: 0;
  }
 .custom-menu-primary .hs-menu-wrapper{
    background-color:; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
   z-index: 8888;
  }

   /* Level 1 Menu List Styles */
   .custom-menu-primary .hs-menu-wrapper > ul {
    background: #666666;
     padding-left:10px;
   }
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    font-size: 18px; /* Font size of top level list items */
    line-height: 40px;
    overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    border-top: 1px dotted rgba(255, 255, 255, .35); /* Adds transparent dark highlights to top of top level list items */
  }

  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    padding: 0 10px;
    color: !important; /* link color set by global mobile-aColor variable */
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover{
    color: !important; /* link hover color set by global mobile-aColorHover variable */
  }
 .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children > a:after {
      display: none;
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul{
    background: transparent;
    border: 0px;
    padding: 0px;
    display:none !important;
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li{
    background-color: rgba(255, 255, 255, .08);
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    text-indent: 10px; /* Indent Child lists */
    font-size: 16px; /* Font size of child lists */
    z
  }
 

  /* Level 3 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul ul li a{
    text-indent: 30px; /* Indent Child lists */
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul ul ul li a{
    text-indent: 50px; /* Indent Child lists */
  }

}


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


   4. TEMPLATE MODULE SELECTORS


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




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

body.one-column {}
body.two-column {}
body.three-column {}
.content-wrapper {}
.main-content {}
.sidebar{}
.blog-sidebar ul, .sidebar ul{
    padding-left: 10px;
    list-style: none;
}

.sidebar.right{}
.sidebar.left{}

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

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

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

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

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

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


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

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

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

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


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

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

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

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


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

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

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

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








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


   5. COS COMPONENTS


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





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


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

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

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

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


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

.blog .blog-content {
    line-height:1.5;
}

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

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

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

/* Blog Post Title */
.post-header h2  {
    margin-bottom: 0;
}

.post-header p{
    font-size: 13px;
}
/* Blog Author and Avatar */
#hubspot-author_data {
    float: left;
}
#hubspot-author_data a.author-link {}
.hs-author-avatar {}
.hs-author-avatar img {}

p.custom_listing_comments{
    float: right;
}

.hs-blog-social-share{
    float: left;
}

/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item {
    padding-bottom: 60px;
}
.blog-listing-wrapper .post-listing .post-item .post-body {}
.blog-post-wrapper .post-body {}

/* Post Featured Image on Listings Page */
.hs-featured-image-wrapper {}
.hs-featured-image-wrapper .hs-featured-image-link { display: block; }
.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
    border-width: 0;
    max-height: 200px;
    max-width: 100%;
    display: inline-block !important;
    float: none!important;
    margin: 10px 0px 10px 0px;
}

/* Read More Link */
a.more-link {
 background-image: url("http://cdn2.hubspot.net/hubfs/1786753/button.png");
    background-repeat:repeat-x;
    border-style: none;
    border-width: 0px;
    
    font-family: ;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    
    
    text-decoration: none;
    color: #ffffff;
    -webkit-appearance: none;
    text-shadow: ;
    font-family: ;   
}

a:hover.more-link {
     border: 0px solid #FFF;
    background-image: url("http://cdn2.hubspot.net/hubfs/1786753/button_hover.png");
    background-repeat: repeat-x;
    color: #FFF;
}

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

/**
 * Blog Social Sharing icons
 *
 * Overrides defaults to better align icons and prevent overlapping
 */
.social-sharing-wrapper {
    clear: both;
}
.hs-blog-social-share {
    padding: 10px 0 0 0;
    height: auto;
}


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

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

/* Pagination */
.blog-pagination {
    border-top:1px solid #e9e9e9;
    border-bottom:1px solid #e9e9e9;
    text-align: center;
    font-weight:bold;
    padding-top:10px;
    color: #a3a2a0;
    padding-bottom:10px;
}
.blog-pagination a {
    color: #a3a2a0;
}

.blog-pagination a:hover {
    color: #747372;
}
.blog-pagination .previous-posts-link {
    float: left;
}
.blog-pagination .all-posts-link {}
.blog-pagination .next-posts-link {
    float: right;
}

/* Blog Author Page */
.hs-author-social-label {
    display: inline-block;
    margin-right: 8px;
    font-weight: bold;
    vertical-align: middle;
}
.hs-author-social-links a.hs-author-social-link {
    font-size: 30px;
    display: inline-block;
    padding-right: 5px !important;
    background: none !important;
    vertical-align: middle;
}



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

.blog .blog-sidebar {}

.blog-sidebar-filter-list li {
    padding: 2px 0;
}

/* Blog Modules */

.blog .blog-sidebar .widget-span {
    padding: 0px 0px 40px 0px;
}


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


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

/* Form Field */
body .hs-form-field { margin-bottom: 15px; }

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

/* Labels */
body label {
    margin-bottom: 0px;
    font-weight: normal;
}
body .hs-form-field > label {}

/* One Line Inputs */
body input[type="text"],
body input[type="password"],
body input[type="datetime"],
body input[type="datetime-local"],
body input[type="date"],
body input[type="month"],
body input[type="time"],
body input[type="week"],
body input[type="number"],
body input[type="email"],
body input[type="url"],
body input[type="search"],
body input[type="tel"],
body input[type="color"],
body input[type="file"],
body textarea,
body select {
    width: 100%;
    font-family: ;
    font-size: ;
    display: block;
    height: 34px;
    padding: 6px 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    
    

}

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

/* Separate Styles for Multiple Line Inputs */
body textarea {
    min-height: 200px;
}
body textarea:focus {}

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

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

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

body input:focus:required:invalid:focus,
body textarea:focus:required:invalid:focus,
body select:focus:required:invalid:focus {}

/* Placeholder Text */
::-webkit-input-placeholder { /* Webkit Browsers */
   /* color: #555;
   opacity: 1; */
   color: #8b8a8a;
}
:-moz-placeholder { /* Firefox 18- */
   /* color: #555;
   opacity: 1; */
   color: #8b8a8a;
}
::-moz-placeholder { /* Firefox 19+ */
   /* color: #555;
   opacity: 1; */
   color: #8b8a8a;
}
:-ms-input-placeholder { /* IE10 */
   /* color: #555;
   opacity: 1; */
   color: #8b8a8a;
}


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

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

/* Descriptions */

.hs_cos_wrapper_type_form .hs-field-desc {
}

.insider_form {
    font-size: 16px;
    margin-bottom: 10px;

}

.insider_form .hs-richtext {
  margin-top:-10px;
  margin-bottom:20px;

}

.insider_form  .hs_cos_wrapper_type_form input[type="text"] {
    
     
     margin-top:-27px;
    margin-left:80px;

    font-family: ;
    font-size: 16px;
    display: block;
    height: 34px;
    padding: 6px 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
     border-top:0px;
    border-left:0px;
    border-right:0px;
    border-bottom: 1px solid #999999;
    background-color:transparent;
    
    
    

    

}

.insider_form .hs_lastname label {
  padding-left:20px;
  display:block;
  margin-right:10px;
}

.insider_form .hs_firstname  {
  margin-left:0px;
  padding-right:20px;
}

.insider_form .hs_lastname input[type="text"] {
  margin-left:100px;
  padding-left:10px;
  width:80% !important;
}

.insider_form .hs_firstname input[type="text"] {
  margin-right:50px;
  width:80% !important;
}

.insider_form .hs_cos_wrapper_type_form input[type="email"] {
    
    margin-top:-25px;
  margin-right:20px;
    margin-left:80px;
    border-top:0px;
    border-left:0px;
    border-right:0px;
    border-bottom: 1px solid #999999;
    background-color:transparent;
    
    
  width:92% !important;


}

@media screen and (max-width:925px) {
.insider_form .hs_lastname input[type="text"] {
  margin-left:100px;
  padding-left:10px;
  width:76% !important;
}

.insider_form .hs_firstname input[type="text"] {
  margin-right:50px;
  width:76% !important;
}
  
  .insider_form .hs_cos_wrapper_type_form input[type="email"] {
    
    margin-top:-25px;
  margin-right:20px;
    margin-left:80px;
    border-top:0px;
    border-left:0px;
    border-right:0px;
    border-bottom: 1px solid #999999;
    background-color:transparent;
    
    
  width:90% !important;


}
  
  
  
}

@media screen and (max-width:828px) {

  .insider_form .hs_lastname input[type="text"] {
  margin-left:100px;
  padding-left:10px;
  width:74% !important;
}

.insider_form .hs_firstname input[type="text"] {
  margin-right:50px;
  width:74% !important;
}
  
  .insider_form .hs_cos_wrapper_type_form input[type="email"] {
    
  width:90% !important;

} 
}

@media screen and (max-width:768px) {

  .insider_form .hs_lastname input[type="text"] {
  margin-left:100px;
  padding-left:5px;
  width:72% !important;
}

.insider_form .hs_firstname input[type="text"] {
  margin-right:50px;
  width:72% !important;
}
  
  .insider_form .hs_cos_wrapper_type_form input[type="email"] {
    
  width:89% !important;

}  
  
}


@media screen and (max-width:680px) {

  
  .insider_form .hs_lastname input[type="text"] {
  width:68% !important;
}

.insider_form .hs_firstname input[type="text"] {
  width:68% !important;
}
  
  .insider_form .hs_cos_wrapper_type_form input[type="email"] {
  width:87% !important;
}
  
}


@media screen and (max-width:600px) {


  
  .insider_form .hs_lastname input[type="text"] {
  width:60% !important;
}

.insider_form .hs_firstname input[type="text"] {
  width:63% !important;
}
  
  .insider_form .hs_cos_wrapper_type_form input[type="email"] {
  width:85% !important;
}
  
}


@media screen and (max-width:479px) {

.insider_form .hs_lastname label {
  padding-left:0px;
  display:block;
  margin-right:0px;
}
  
  .insider_form .hs_lastname input[type="text"] {
  width:80% !important;
      margin-left:80px;
  padding-left:5px;
}

.insider_form .hs_firstname input[type="text"] {
  width:80% !important;
}
  
  .insider_form .hs_cos_wrapper_type_form input[type="email"] {
  width:80% !important;
}
  
}


.si_form .hs_cos_wrapper_type_form .hs-field-desc {
    color: #8b8a8a;
    font-size:11px;
    font-style:italic;
    margin-top:12px;
    margin-left:165px;
}

.wrap_email {
    margin-top:-40px;
    margin-left:238px;
}
/* Labels */
.hs_cos_wrapper_type_form label {}
.hs_cos_wrapper_type_form .hs-form-field > label {}

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

.si_form .hs_cos_wrapper_type_form input[type="text"] {
    
     width: 150px;
     margin-top:-25px;
    margin-left:35px;
    font-family: ;
    font-size: ;
    display: block;
    height: 34px;
    padding: 6px 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
     border-top:0px;
    border-left:0px;
    border-right:0px;
    border-bottom: 1px solid #333;
    background-color:transparent;
    
    
    

    

}

.si_form .hs_cos_wrapper_type_form input[type="text"]:focus {

    

}

.si_form .hs_cos_wrapper_type_form input[type="email"] {
    
    margin-top:-25px;
    margin-left:95px;
    border-top:0px;
    border-left:0px;
    border-right:0px;
    border-bottom: 1px solid #333;
    background-color:transparent;
    
    


}
}


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

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

/* Separate Styles for Drop Downs */
.hs_cos_wrapper_type_form select {
     width:200px;
}
.hs_cos_wrapper_type_form select:focus {}

.si_form .hs_cos_wrapper_type_form select {
    width:200px;
    margin-top:-48px;
    margin-left:165px;
    border-bottom: 1px solid #333;
    background-color:transparent;
    border-top:0px;
    border-right:0px;
    border-left:0px;
    
    

}
}

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


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

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

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

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

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

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


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

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

/* Inputs */
#hs_form_target_blog_subscription input[type="email"], .widget-type-blog_subscribe input[type="email"]{
    width: 70%;
    float: left;
    margin-top: 0px;
    height: 33px;
}
.blog-sidebar #hs_form_target_blog_subscription input[type="email"] {}

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

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


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

/* Label */




}
.widget-type-google_search label {
    font-size: 14px;
    font-weight: 700;
    font-family: ;
    display: none;
    text-rendering: optimizelegibility;
}

/* Input */
.widget-type-google_search input[type="text"] {
    width: 130px;
    float: left;
    height: 30px;
}



.widget-type-google_search input[type="focus"] {}

.widget-type-google_search .hs-button.primary {
    float: left;
    margin-left: 2px;
    height: 30px;
	background-image:url("http://cdn2.hubspot.net/hubfs/1786753/search.png");
	  ;
      width: 25px;
	
}

.widget-type-google_search .hs-button.primary:hover {
    float: left;
    margin-left: 2px;
    height: 30px;
	background-image:url("http://cdn2.hubspot.net/hubfs/1786753/search.png");
	  ;
	  
	
}

@media screen and (max-width:1080px) {
  
  .widget-type-google_search input[type="text"] {
    width: 120px;

}

}

@media screen and (max-width:997px) {
  
  .widget-type-google_search input[type="text"] {
    width: 100px;
   
}

}


@media screen and (max-width:875px) {
  
  .widget-type-google_search input[type="text"] {
    width: 95px;

}

}

@media screen and (max-width:830px) {
  
  .widget-type-google_search input[type="text"] {
    width: 60px;

}

}


@media screen and (max-width: 810px) {


  .widget-type-google_search input[type="text"] {
    width: 40px;

}

}
  @media screen and (max-width: 768px) {


  .widget-type-google_search input[type="text"] {
    width: 100px;

}
  
}

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

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

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

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

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

.si_form body form.hs-form fieldset[class*="form-columns"] .hs-input { width: 50%; }

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

/* Form Error Selectors
   ========================================================================== */
.hsformerror{
    font-size: 12px!important;
    border: 0 !important;
    color: #FFF!important;
    background-image: none!important;
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    box-shadow: none!important;
    z-index: 99999 !important;
    border-color:  !important;
    background:  !important;
}
.hsformerror .close-form-error {
    color: ;
}
.hsformerror em {
    border-color:  transparent transparent !important;
}




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


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

body .hs-button.primary,
body input[type="submit"],
body input[type="button"] {
    background-image: url("http://cdn2.hubspot.net/hubfs/1786753/button.png");
	background-repeat:repeat-x;
    border-style: none;
    border-width: 0px;

    font-family: ;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    
    
    text-decoration: none;
    color: #ffffff;
    -webkit-appearance: none;
    text-shadow: ;
    font-family: ;
}

body .hs-button.primary:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {
    border: 0px solid #FFF;
    background-image: url("http://cdn2.hubspot.net/hubfs/1786753/button_hover.png");
	background-repeat: repeat-x;
    color: #FFF;
}

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


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

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


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

/* Blog comment "reply to" section */
.comment-reply-to{
    color: !important;
    background: none!important;
    padding-left: 0px!important;
}
.comment-reply-to:before{
    content: "\f112";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 7px;
    font-size: 15px;
    color: ;
    vertical-align: top;
}
/* Blog Subscription Button
   ========================================================================== */
#hs_form_target_blog_subscription .hs-button.primary.large {}
#hs_form_target_blog_subscription .hs-button.primary.large:hover {}
#hs_form_target_blog_subscription .hs-button.primary.large:focus {}


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


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

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

/* CTA button with border */
.cta_border_button {
    background: #fff;
    border-style: solid;
    border-width: 2px;

    font-family: ;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    
    
    text-decoration: none;
    color: ;
    border-color: ;
    -webkit-appearance: none;
}
.cta_border_button:hover {
    border: 2px solid #FFF;
    color: ;
    border-color: ;
    background: ;
    color: #FFF;
    background-image: url("http://cdn2.hubspot.net/hubfs/1786753/button_hover.png");
    
}

/* CTA button with Solid Background */
.cta_solid_button {
    background-image: url("http://cdn2.hubspot.net/hubfs/1786753/button.png");
    background-repeat:repeat-x;
    border-style: none;
    border-width: 0px;

    font-family: ;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    
    
    text-decoration: none;
    color: #ffffff;
    -webkit-appearance: none;
    text-shadow: ;
    font-family: ;
}
.cta_solid_button:hover {
    border: 0px solid #FFF;
    background-image: url("http://cdn2.hubspot.net/hubfs/1786753/button_hover.png");
    background-repeat: repeat-x;
    color: #FFF;
}








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


   6. MISCELLANOUS


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





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








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


   7. MOBILE MEDIA QUERIES


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





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

@media (max-width: ) {
    .container-fluid .row-fluid .page-center {
        padding: 10px;
    }
    .container-fluid .footer-copyright .row-fluid .page-center {
        padding: 0 10px;
    }
    
    .header-container-wrapper{
        padding-bottom:0px;
       
    }
}
  
    
    
@media (max-width: 1079px) {

    
    .container-fluid .row-fluid .page-center {
        padding: 00px;
    }

}
    

 
    }
    
      @media (max-width: 959px){
          .footer_links {
               display: inline-block;
        width: auto;
        min-width:100%;
          }

      }
      
    
   
    
    


   @media (max-width: 873px) {
    
    
    
    .container-fluid .row-fluid .page-center {
        padding: 00px;
        
    }
    
    .clear { clear:both; display:block; overflow:hidden; visibility:hidden; height:0px;}
    

    
 
  
   
    
}
 


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



@media (max-width: 768px) {
  
    



   .body-container-wrapper{
        margin-top:0px;
    }
     

#alert-bar {
  
    ; 
    min-height:50px;
    text-align:center;
    margin-top:0px;
    line-height: 34px;

}

#alert-cta {
  
    padding-top:0px; 
    text-align:left; 
    padding-right:00px; 
    padding-bottom:20px;
    padding-left:20px;
    display:block;
  
}


    

    
    /* General */
    .body-container-wrapper {
        padding-top: 0;
    }
    .padding40tb {
        padding: 25px 0;
    }
    .sidebar.right,
    .main-content,
    .blog-sidebar {
        margin: 25px 0;
    }



    /* Team Member Social */
    .three-column .team-member-social a {
        display: inline-block;
    }
    .three-column .team-member-social i {
        padding-right: 5px;
    }
    .three-column .team-member-social a:last-child i {
        padding-right: 0;
    }
    .team-member-name,
    .team-member-title {
        text-align: center;
    }

    /* Footer */
    .footer-container-wrapper .more-links a i {
        display: inline-block;
        width: auto;
    }
    .footer-container .about-us,
    .footer-container .more-links {
        margin-bottom: 25px;
    }
    
    .footer-menu {
        text-align:center;
    }
    
     .footer-menu2 {
        text-align:center;
        padding-bottom:25px;
    }

.footer_legal {
    padding: 0px 20px 0px 20px;
}

.wrap_footer-menu {
    width:100%;
    padding:0px;
    margin:0px;
}

  .wrap_footer-menu .hs-menu-children-wrapper {
    display:block;
  }
  
    .wrap_footer-menu .hs-menu-children-wrapper ul {
    display:block;
  }
  
.footer_legal2 {
    padding: 0px 20px 0px 20px;
}

.footer_legal3 {
    padding: 0px 20px 0px 20px;
}

 .footer_legal_right {
               
       display:block;
          }
    /* Homepage */
    .service-group h4,
    .service-group-icon,
    #offer-background-image h1,
 
    .homepage .subscribe-form {
        padding-top: 0px;
    }
  

    .homepage .subscribe-form .hs_email {
        width: auto;
    }


    .homepage .subscribe-form {
        width: 100%;
    }
    .social-tagline {
        text-align: center;
        margin-bottom: 15px;
    }

    /* Blog */
    #comment-form {
        margin-bottom: 25px;
    }
}


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

@media (max-width: 630px) {


/* Separate Styles for Drop Downs */
.hs_cos_wrapper_type_form select {
     width:200px;
}



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

    

.wrap_hero {
    min-width:100%;
    background: rgba(154,139,125, 0.5);
    height:relative;
    position:absolute;
    bottom:0;
    margin-bottom:0px;
    padding-bottom:0px;
    color:#ffffff;
    padding-left:20px; padding-right:10px;
    left:0;
}


}


    
    
    @media (max-width: 445px) {
    
 
    .widget-type-google_search input[type="text"] {
    width: 60%;
    float: left;
    margin-top: 0px;
    height: 30px;
}




.widget-type-google_search .hs-button.primary {
    float: left;
    margin-left: 2px;
    height: 30px;
    background-image:url("http://cdn2.hubspot.net/hubfs/1786753/search.png");
	  ;
      width: 25%;
      background-repeat:no-repeat;
	
}

.widget-type-google_search .hs-button.primary:hover {
    float: left;
    margin-left: 2px;
    height: 30px;
    background-image:url("http://cdn2.hubspot.net/hubfs/1786753/search.png");
      ;
      width: 25%;
      background-repeat:no-repeat;
	  
	
}
    }
    
    
    @media (max-width: 567px) {
.hero-text {
    float: right;
    width: 350px;
    position: relative;
    top: 331px;
    margin-right: 50px;
    line-height: 1.1;
    border: 1px solid white;
    padding: 10px;
}

}
        

/* ------------------------------------------------------------------------------------------------------------------ */
/* EVERY LAST ONE - 2021                                                                                              */
/* ------------------------------------------------------------------------------------------------------------------ */


.elo {background-color: #fff; color: #000; font-family: 'Lato', Helvetica, Arial, sans-serif; margin: 0; padding: 0;}
.elo .content-max-width      {max-width: 1080px; width: 100%; display: block; margin: 0 auto; position: relative;}
.elo .wide-content-max-width {max-width: 1230px; width: 100%; display: block; margin: 0 auto; position: relative;}
@media (max-width: 1290px) {.elo .wide-content-max-width {padding-left: 5%; padding-right: 5%;}}
@media (max-width: 1160px) {.elo .content-max-width {padding-left: 5%; padding-right: 5%;}}

.elo img {max-width: 100%;}

/* orange button */
.elo-orange-button, 
.hs-button.primary, body input[type="submit"], body input[type="button"] {
  background-color: #ff6b00 !important; color: #fff !important; padding: 13px 30px 15px 30px !important; text-align: center; font-size: 16px !important; 
  line-height: 1em !important; font-weight: bold !important; border-radius: 8px !important; background-image: none !important; display: inline-block; 
  text-decoration: none; cursor: pointer; text-shadow: none !important; border: 0 !important;
}
.elo-orange-button:hover, .elo-orange-button:focus,
.hs-button.primary:hover, body input[type="submit"]:hover, body input[type="button"]:hover, 
.hs-button.primary:focus, body input[type="submit"]:focus, body input[type="button"]:focus {background-color: #ff6b00 !important; color: #fff !important; text-decoration: none;}

/* gray button */

  background-color: #999999 !important; color: #fff !important; padding: 13px 30px 15px 30px !important; text-align: center; font-size: 16px !important; 
  line-height: 1em !important; font-weight: bold !important; border-radius: 8px !important; background-image: none !important; display: inline-block; 
  text-decoration: none; cursor: pointer; text-shadow: none !important; border: 0 !important;0; margin: 0;}
.elo-home-h1 h1 {
  font-size: 34px !imp, .elo-gray-button:focus {background-color: #F08E48 !important; color: #fff !important; text-decoration: none;}x p .elo-gray-hover-box-normal {
    opacity: 1; visibility: visible; display: block; width: 100%; background-color: #FFFFFF; padding: 20px 0; box-shadow: none; transition: visibility 0s, opacity 0.5s linear;
    position: relative; cursor: pointer;
  }
  .elo-home-gray-hover-box p .elo-gray-hover-box-hover {
    opacity: 0; visibility: hidden; display: block; width: 100%; background-color: #FFFFFF; padding: 20px 0; box-shadow: none; transition: visibility 0s, opacity 0.5s linear;
    position: absolute; cursor: pointer; top: 0px; left: 0; 
  }
    .elo-home-gray-hover-box p:hover .elo-gray-hover-box-normal, 
    .elo-home-gray-hover-box p:focus .elo-gray-hover-box-normal {visibility: hidden; opacity: 0; transition: visibility 0s, opacity 0.5s linear;}
    .elo-home-gray-hover-box p:hover .elo-gray-hover-box-hover,
    .elo-home-gray-hover-box p:focus .elo-gray-hover-box-hover {visibility: visible; opacity: 1; transition: visibility 0s, opacity 0.5s linear;}

@media (max-width: 767px) {
  .elo-home-intro {padding: 30px 0 20px 0;}
  .elo-home-h1 h1 {font-size: 26px !important; margin: 0 0 20px 0 !important;}
  .elo-logo-icon-bar img {height: 34px !important; width: auto; max-width: 100%;}
  .elo-home-intro, .elo-home-intro p, .elo-home-intro ul, .elo-home-intro ol {font-size: 20px;}
  .elo-home-gray-hover-box p .elo-gray-hover-box-hover {padding: 20px; top: 5px;}
}
@media (max-width: 450px) {
  .elo-home-gray-hover-box p .elo-gray-hover-box-hover {padding: 30px; top: 10px;}
}

/* HOME - Three Boxes --------------------------------------------------------*/

.elo-home-three-boxes {text-align: center;}
.elo-home-three-boxes-left   {border: 2px solid #00ACCA; background-color: #fff; margin-bottom: 25px;}
.elo-home-three-boxes-middle {border: 2px solid #9054A1; background-color: #fff; margin-bottom: 25px;}
.elo-home-three-boxes-right  {border: 2px solid #46BB95; background-color: #fff; margin-bottom: 25px;}

.elo-icon-word-life {background-color: #00ACCA; /* blue */ color: #fff; text-align: center; width: 100% !important; padding: 25px; border-bottom: 15px solid #33bdd5;} 
.elo-icon-word-hope {background-color: #9054A1; /* purple */ color: #fff; text-align: center; width: 100% !important; padding: 25px; border-bottom: 15px solid #a676b4;}
.elo-icon-word-future {background-color: #46BB95; /* green */ color: #fff; text-align: center; width: 100% !important; padding: 25px; border-bottom: 15px solid #6bc9aa;}
.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 94px; width: auto; max-width: 100%; margin: 0 auto;}

@media (max-width: 1290px) {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 80px !important;}}
@media (max-width: 1230px) {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 75px !important;}}
@media (max-width: 1170px) {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 70px !important;}}
@media (max-width: 1110px) {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 65px !important;}}
@media (max-width: 1050px) {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 60px !important;}}
@media (max-width: 990px)  {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 55px !important;}}
@media (max-width: 930px)  {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 50px !important;}}
@media (max-width: 870px)  {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 46px !important;}}
@media (max-width: 810px)  {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 44px !important;}}
@media (max-width: 767px)  {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 65px !important;}}
@media (max-width: 430px)  {.elo-icon-word-life img, .elo-icon-word-hope img, .elo-icon-word-future img {height: 45px !important;}}

.elo-home-three-boxes-text {padding: 25px;} 
.elo-home-three-boxes-text p, .elo-home-three-boxes-text ul, .elo-home-three-boxes-text ol {
  font-size: 16px; line-height: 1.5em; color: #000; font-weight: 400; text-align: left; margin: 0 0 24px 0;
}
.elo-home-three-boxes-text ul, .elo-home-three-boxes-text ol, .elo-home-three-boxes-text li {margin: 0; padding: 0; list-style: none; font-weight: 700; display: flex; align-items: center; width: 100%; flex-wrap: wrap;}
.elo-home-three-boxes-text li {margin: 0 0 10px 0;}
.elo-home-three-boxes-text ul img {width: 37px; height: auto; display: inline-block; margin-right: 3px; border: 0;}
.elo .hs_cos_wrapper_type_rich_text ul li:before {display: none !important;}

.elo-home-three-boxes .wide-content-max-width .span12 .row-fluid-wrapper .row-fluid {display: flex; justify-content: space-between; flex-wrap: wrap; align-items: stretch;}
.elo-home-three-boxes-left, .elo-home-three-boxes-middle, .elo-home-three-boxes-right {display: inline-block;}
.elo-home-three-boxes-left ul, .elo-home-three-boxes-left ol, .elo-home-three-boxes-left li, .elo-home-three-boxes-left a {color: #00ACCA;}
.elo-home-three-boxes-middle ul, .elo-home-three-boxes-middle ol, .elo-home-three-boxes-middle li, .elo-home-three-boxes-middle a {color: #9054A1;}
.elo-home-three-boxes-right ul, .elo-home-three-boxes-right ol, .elo-home-three-boxes-right li, .elo-home-three-boxes-right a {color: #46BB95;}

.elo-home-three-boxes a {text-decoration: none; text-shadow: none;}
.elo-home-three-boxes a:hover, .elo-home-three-boxes a:focus {text-decoration: underline; text-shadow: none;}

/* HOME - Below Three Boxes ------------------------------------------------ */
.elo-home-below-three-boxes {
    padding: 0;
    background: #fff url('https://www.worldvisionphilanthropy.org/hubfs/home%20/Home_Middle.jpg');
    background-repeat: no-repeat;
    background-position: 60% !important;
    background-size: cover;
}


.hs_cos_wrapper_module_1618669668009343 {
    display: block !important;
    margin-top: 0px !important; */
    padding-left: 0px !important;
}
.elo-home-three-boxes-bottom {border: 2px solid #FF6B00; text-align: center;} 
.elo-home-three-boxes-bottom .elo-home-three-boxes-text ul, .elo-home-three-boxes-bottom .elo-home-three-boxes-text ol, .elo-home-three-boxes-bottom .elo-home-three-boxes-text li {
  color: #333333; font-weight: 400; margin: 0; text-align: center; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
}
.elo-home-three-boxes-bottom ul, .elo-home-three-boxes-bottom ol, .elo-home-three-boxes-bottom li, .elo-home-three-boxes-bottom a {color: #333; text-shadow: none;}
.elo-home-three-boxes-bottom a:hover, .elo-home-three-boxes-bottom a:focus {text-decoration: underline; text-shadow: none;}

.elo-home-below-three-boxes-text {padding: 300px 0 230px 0;}
.elo-home-below-three-boxes-text, .elo-home-below-three-boxes-text p, .elo-home-below-three-boxes-text ul, .elo-home-below-three-boxes-text ol, .elo-home-below-three-boxes-text li {
  font-size: 30px; line-height: 1.4em; color: #333; font-weight: 500; font-family: 'Gill Sans Nova W01', Helvetica, Arial, sans-serif; margin: 0; 
}
.elo-home-below-three-boxes-text a, .elo-home-below-three-boxes-text p a {color: #FF6B00; font-weight: bold; text-decoration: underline; text-shadow: none;}
.elo-home-below-three-boxes-text a:hover, .elo-home-below-three-boxes-text p a:hover,
.elo-home-below-three-boxes-text a:focus, .elo-home-below-three-boxes-text p a:focus {color: #333; font-weight: bold; text-decoration: underline; text-shadow: none;}

@media (max-width: 2895px) {.elo-home-below-three-boxes-text {padding: 150px 0 190px 0;}}
@media (max-width: 1590px) {.elo-home-below-three-boxes-text {padding: 150px 0 190px 0;}}
@media (max-width: 1490px) {.elo-home-below-three-boxes-text {padding: 140px 0 180px 0;}}
@media (max-width: 1420px) {.elo-home-below-three-boxes-text {padding: 130px 0 170px 0;}}
@media (max-width: 1350px) {.elo-home-below-three-boxes-text {padding: 120px 0 160px 0;}}
@media (max-width: 1270px) {.elo-home-below-three-boxes-text {padding: 120px 0 140px 0;}}
@media (max-width: 1200px)  
  .elo-home-below-three-boxes-text {padding: 110px 0 130px 0;}
  .elo-home-below-three-boxes-text, .elo-home-below-three-boxes-text p, 
  .elo-home-below-three-boxes-text ul, .elo-home-below-three-boxes-text ol, .elo-home-below-three-boxes-text li {font-size: 28px;}
}
@media (max-width: 1163px) {.elo-home-below-three-boxes-text}
@media (max-width: 1070px) {.elo-home-below-three-boxes-text {padding:  90px 0 110px 0;}}
@media (max-width: 1000px) {
  .elo-home-below-three-boxes-text {padding:  85px 0 105px 0;}
  .elo-home-below-three-boxes-text, .elo-home-below-three-boxes-text p, 
  .elo-home-below-three-boxes-text ul, .elo-home-below-three-boxes-text ol, .elo-home-below-three-boxes-text li {font-size: 24px;}
}
@media (max-width: 998px) {
  .elo-home-below-three-boxes-text {padding:  60px 0 0px 60px;}
  .elo-home-below-three-boxes-text, .elo-home-below-three-boxes-text p, 
  .elo-home-below-three-boxes-text ul, .elo-home-below-three-boxes-text ol, .elo-home-below-three-boxes-text li {font-size: 23px;}
}
@media (max-width: 850px)  {
  .elo-home-below-three-boxes-text {padding: 70px 0 90px 0;}
  .elo-home-below-three-boxes-text, .elo-home-below-three-boxes-text p, 
  .elo-home-below-three-boxes-text ul, .elo-home-below-three-boxes-text ol, .elo-home-below-three-boxes-text li {font-size: 22px;}
}
@media (max-width: 790px)  {
  .elo-home-below-three-boxes-text {padding: 50px 0 90px 0;}
  .elo-home-below-three-boxes-text, .elo-home-below-three-boxes-text p, 
  .elo-home-below-three-boxes-text ul, .elo-home-below-three-boxes-text ol, .elo-home-below-three-boxes-text li {font-size: 22px;padding-right: 0px;margin-top: 30px;}
.elo-home-below-three-boxes {
    padding: 0;
    background: #fff url('https://www.worldvisionphilanthropy.org/hubfs/home%20/Home_Middle.jpg');
    background-repeat: no-repeat;
    background-position: 40% !important;
    background-size: cover;
}
}
@media (max-width: 768px)  {.elo-home-below-three-boxes-text {padding: 30px 0 230px 0;}}
@media (max-width: 650px)  {.elo-home-below-three-boxes-text {padding: 30px 0 200px 0;}}
@media (max-width: 550px)  
  .elo-home-below-three-boxes
  .elo-home-below-three-boxes-text {padding: 0px 0 0px 0;}
}
@media (max-width: 500px)  {.elo-home-below-three-boxes-text {padding: 0px 0 0px 0;}}
@media (max-width: 430px)  {
  .elo-home-below-three-boxes-text 
  {padding: 30px 0 0px 0;}}

@media (max-width: 390px)
{.elo-home-below-three-boxes-text {
    padding: 0;
    font-size: 10px;
}
}
@media (max-width: 380px)  {
  .elo-home-below-three-boxes-text {
    padding: 0px 0 0px 0; 
    position: absolute;
  }
  
  .elo-home-below-three-boxes {
    padding: 0;
    background: #fff url('https://www.worldvisionphilanthropy.org/hubfs/home%20/Home_Middle.jpg');
    background-repeat: no-repeat;
    background-position: 20% !important;
    background-size: cover;
}
}
@media (max-width: 350px)  {
  .elo-home-below-three-boxes-text {padding: 0px 0 0px 0;}}

@media (max-width: 415px)  {
  .elo img[src="https://www.worldvisionphilanthropy.org/hubfs/ELO_2021/elo_campaign_logo.svg"] {
    max-width: 100%;
    display: none;
} {padding: 0px 0 0px 0;}}

@media (max-width: 790px) {
.elo-home-below-three-boxes-text, .elo-home-below-three-boxes-text , .elo-home-below-three-boxes-text , .elo-home-below-three-boxes-text , .elo-home-below-three-boxes-text  {
    font-size: 14px;
    padding-right: 0px;
    margin-top: 30px;
    margin-right: 100px;
}
}
/* HOME - Donor Section ---------------------------------------------------- */
.elo-home-donor-section {padding: 40px 0; text-align: center; background-color: #fff;}
.elo-home-donor-section p, .elo-home-donor-section ul, .elo-home-donor-section ol {font-size: 20px; line-height: 1.4em; color: #000; font-weight: 500; margin: 0 0 40px 0;}
.elo-home-donor-section-h2 h2 {font-size: 34px; line-height: 1.4em; color: #333; font-weight: 500; margin: 0 0 5px 0; font-family: 'Gill Sans Nova W01', Helvetica, Arial, sans-serif;}

@media (max-width: 800px)  {
  .elo-home-donor-section p, .elo-home-donor-section ul, .elo-home-donor-section ol, .elo-home-donor-section li {font-size: 18px;}
  .elo-home-donor-section-h2 h2 {font-size: 30px;}
}
@media (max-width: 767px)  {
  .elo-home-donor-section p, .elo-home-donor-section ul, .elo-home-donor-section ol, .elo-home-donor-section li {font-size: 16px;}
  .elo-home-donor-section-h2 h2 {font-size: 26px;}
}

/* HOME - Why Section ------------------------------------------------------ */
.elo-home-why-section {padding: 40px 0; text-align: center; background-color: #F5F5F5;}
.elo-home-why-section p, .elo-home-why-section ul, .elo-home-why-section ol {font-size: 20px; line-height: 1.4em; color: #000; font-weight: 500; margin: 0 0 20px 0;}
.elo-home-why-section-h2 h2 {font-size: 34px; line-height: 1.4em; color: #333; font-weight: 500; margin: 0 0 70px 0; font-family: 'Gill Sans Nova W01', Helvetica, Arial, sans-serif;}
.elo-home-why-columns .row-fluid-wrapper .row-fluid {display: flex; flex-wrap: wrap; justify-content: space-between;}
.elo-home-why-columns .elo-home-why-col {display: inline-block; padding: 20px 2%; margin-bottom: 40px; background-color: #fff; box-shadow: 0px 4px 4px rgba(204, 204, 204, 0.25); border-radius: 8px;}
.elo-home-why-col p, .elo-home-why-col ul, .elo-home-why-col ol {font-size: 16px; line-height: 1.5em; color: #000; font-weight: 400; margin: 0;}
.elo-home-why-section-h3 h3 {font-size: 20px; line-height: 1.3em; color: #333; font-weight: 600; text-transform: none !important; margin: 15px 0 10px 0;}
.elo-home-why-icon-1 {margin-top: -70px; min-height: 135px !important;}
.elo-home-why-icon-2 {margin-top: -70px; min-height: 135px !important; padding-top: 20px;}
.elo-home-why-icon-3 {margin-top: -70px; min-height: 135px !important;}
.elo-home-why-icon-4 {margin-top: -70px; min-height: 135px !important;}

@media (max-width: 767px)  {
  .elo-home-why-section p, .elo-home-why-section ul, .elo-home-why-section ol {font-size: 16px; margin: 0 0 10px 0;}
  .elo-home-why-section-h2 h2 {font-size: 30px; margin: 0 0 75px 0;}
  .elo-home-why-columns .row-fluid-wrapper .row-fluid {display: block;}
  .elo-home-why-columns .elo-home-why-col {display: block; padding: 20px 4%; margin-bottom: 70px;}
  .elo-home-why-columns .elo-home-why-col:last-of-type {margin-bottom: 30px;}
  .elo-home-why-icon-1 {margin-top: -70px; min-height: 114px !important;}
  .elo-home-why-icon-2 {margin-top: -70px; min-height: 96px !important; padding-top: 20px;}
  .elo-home-why-icon-3 {margin-top: -70px; min-height: 135px !important;}
  .elo-home-why-icon-4 {margin-top: -70px; min-height: 115px !important;}
}

/* HOME - Featured Blocks Section ------------------------------------------------------ */
.elo-home-featured-blocks {background-color: #fff; padding: 40px 0;}
.elo-spotlight-investment-block {display: block; text-align: center; padding: 0 4% 190px 4%; margin-bottom: 35px;}
.elo-home-featured-double-blocks .row-fluid-wrapper .row-fluid {display: flex; flex-wrap: wrap; justify-content: space-between;}
.elo-featured-story-block, .elo-special-announcement-block {display: inline-block; text-align: center; border: 1px solid #ccc; margin-bottom: 35px;}
.elo-featured-story-block img, .elo-special-announcement-block img {width: 100%; height: auto; max-width: 100%;}
.elo-featured-story-text, .elo-special-announcement-text {padding: 30px 4%;}
.elo-spotlight-investment-block h3, .elo-featured-story-block h3, .elo-special-announcement-block h3 {
  font-size: 20px; line-height: 1.4em; font-style: italic; font-weight: normal; color: #333; text-transform: none;
  padding: 0 15px 15px 15px; border-bottom: 4px solid #00ACCA; margin: 0 0 5px 0; display: inline-block;
}
.elo-spotlight-investment-block h2 {
  font-size: 40px; line-height: 1.2em; font-style: normal; font-weight: 500; color: #000; margin: 0 0 13px 0; 
  font-family: 'Gill Sans Nova W01',Helvetica,Arial,sans-serif; display: block; text-transform: none;
}
.elo-spotlight-investment-block p, .elo-featured-story-block p, .elo-special-announcement-block p {
  font-size: 20px; line-height: 1.4em; font-style: normal; font-weight: normal; color: #333; margin: 0 0 23px 0; 
}
.elo-featured-story-text :last-child, .elo-special-announcement-text :last-child {margin-bottom: 0;}

@media (max-width: 767px)  {
  .elo-spotlight-investment-block {padding: 0 4% 250px 4%;}
  .elo-spotlight-investment-block h3, .elo-featured-story-block h3, .elo-special-announcement-block h3 {font-size: 16px;}
  .elo-spotlight-investment-block h2 {font-size: 26px;}
  .elo-spotlight-investment-block p, .elo-featured-story-block p, .elo-special-announcement-block p {font-size: 16px;}
  .elo-home-featured-double-blocks .row-fluid-wrapper .row-fluid {display: block;}
  .elo-featured-story-block, .elo-special-announcement-block {display: block;} 
}

/* HOME - Form Section ------------------------------------------------------ */
.elo-home-form-section {padding: 40px 0; text-align: center; background-color: #F5F5F5;}
.elo-home-form-section .hs-form { 
  border-color: #ff6b00 !important; border-radius: 10px !important; border-style: solid !important; border-width: 3px !important; display: block !important; 
  margin-bottom: 0px !important; margin-top: 20px !important; padding: 25px 22px !important; text-align: left; 
}
.elo-home-form-section .hs-form p {font-size: 16px; line-height: 1.4em; color: #333; font-weight: normal; padding: 0; margin: 0 0 15px 0;}
.elo-home-form-section .hs-form p a {font-size: 16px; line-height: 1.4em; color: #296695; font-weight: normal; padding: 0; margin: 0 0 25px 0; text-decoration: none;}
.elo-home-form-section .hs-form p a:hover, .elo-home-form-section .hs-form p a:focus {color: #F08E48; text-decoration: none; text-shadow: none !important;}
.elo-home-form-section .hs-form .hs-form-field {display: flex; justify-content: space-between;}
.elo-home-form-section .hs-form .hs-firstname {padding-right: 5%;}
.elo-home-form-section .hs-form .hs-submit {margin-top: 15px;}
.elo-home-form-section .hs-form label {font-size: 16px !important; line-height: 2em !important; color: #333; display: inline-block; white-space: nowrap; padding-right: 10px;}
.elo-home-form-section .hs-form .input {font-size: 16px; line-height: 1em; color: #333; display: inline-block; width: 95%;}
.elo-home-form-section .hs-form input[type="text"], .elo-home-form-section .hs-form input[type="email"] {
  background-color: transparent !important; border: 0 !important; border-bottom: 1px solid #000 !important; width: 100% !important;
  -webkit-border-radius: 0px; -moz-border-radius: 0px; -o-border-radius: 0px; -ms-border-radius: 0px; border-radius: 0px;
  -webkit-box-shadow: none; -moz-box-shadow: none; -o-box-shadow: none; -ms-box-shadow: none; box-shadow: none;
}

@media (max-width: 767px)  {
  .elo-home-form-section .hs-form .hs-form-field {width: 100% !important; float: none !important; padding: 0 !important;}
}



    }


@media screen and (max-width: 450px) {
  .elo-banner-background {height: 400px;}
  .elo-banner-image-desktop {display: none;}
  .elo-banner-image-mobile  {display: block;}
  .elo-banner-text-position {align-items: flex-end;}
  .elo-banner-text, .elo-banner-text {color: white;
    position: relative;
/*     left: -107px; */
    text-align: left;
    font-size:16px;
    width: 300px;

    }
  .elo-banner-text img {max-width: 243px; height: auto; margin: 0 auto;}
}

@media screen and (max-width: 420px) {
  .elo-banner-background {height: 450px;}
  .elo-banner-text img {max-width: 223px;}
}
@media screen and (max-width: 380px) {
  .elo-banner-background {height: 450px;}
  .elo-banner-text img {max-width: 203px;}
}
@media screen and (max-width: 320px) {
  .elo-banner-background {height: 450px;}
  .elo-banner-text img {max-width: 180px;}
}