/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 769px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Other
 Css stylesheet from old patch
*/



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


@import url(https://use.fontawesome.com/releases/v5.3.1/css/all.css);



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

/* HTML 5 Reset */

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

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

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

/* Support migrations from wordpress */

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

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

/* Responsive Google Maps */

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

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





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

   Index:         

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

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

  3. MAIN NAVIGATION
    - Custom Menu Primary
    - Mobile Menu

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

  5. COS COMPONENTS
    - Blog
    - Forms
    - Buttons

  6. DOMAIN SPECIFICS
  
  7. MISCELLANOUS

  8. MOBILE MEDIA QUERIES

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








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


   1. BASE STYLES                                             


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





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


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

/* Colors */
 






   
  
 
 







/* Typography */
 

 
 


/* Containers */
 





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


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

 

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




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


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

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

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
} 

/* Website background color and default font styles */
body {
  background: #fff;
  color: #2E475F;
  font-family: Raleway, sans-serif;
  font-size: 16px;
  line-height: 25px;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: #0056A7; }
a:hover, a:focus { color: #000; }

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




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


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

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

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

/* Headings */

h1, h2  {
    /*font-family: Sanchez, serif; Uncomment in case you're using a different font-family for the headings */
    text-transform: uppercase;
    color: #2B3E51;
    font-weight: 400;
}
h5, h6{
    text-transform: none;
    color: #283E52;
    margin-top: 0px;
    margin-bottom: 0px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    
}

h1 {
  font-size: 50px;
  line-height: 50px;
  margin-top: 0px;
  margin-bottom: 0px;
}
h2 {
  font-size: 34px;
  line-height: 50px;
  margin-top: 0px;
  margin-bottom: 0px;
}
h3 {
  /*font-family: Sanchez, serif; Uncomment in case you're using a different font-family for the headings */
  font-size: 23px;
  line-height: 25px;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 500;
}
h4 {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
}
h5{
    font-size: 14px;
    line-height: 25px;
    font-weight: 600;
}
h6{
    font-size: 12px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 600;
}
p, ul, ol, pre, table, blockquote {
  margin-top: 25px;
  margin-bottom: 25px;
}
/* Lists */
ul, ol {
    margin: 25px 0;
    padding: 0 0 0 47px;;
}
ul ul, ul ol, ol ol, ol ul {}
li {}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





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





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


   2. COS STRUCTURE                                            


   ========================================================================== */
.section{
    border-bottom: 1px solid #CCC;
}



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


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

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


@media (max-width: 767px) {
    .wrapper.nopad-phone {
        width: 100%;
    }
    .wrapper.nopad-phone .wrapper.padded {
        width: 94%;
    }
    .wrapper.nopad-phone .wrapper.padded .wrapper.padded {
        width: 100%;
    }
}


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


.header-container-wrapper {}
.header-container {}

/* Logo styling */
.header-container .hs_cos_wrapper_type_logo {}
.header-container .hs_cos_wrapper_type_logo a {}
.header-container .hs_cos_wrapper_type_logo a img {}




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


.body-container-wrapper {}
.body-container {}


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

/* Homepage */

/* Contact Us */

/* About Us */


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

/* Callouts */

/* Social Media Custom Icons */

/* Additional Menus aside from the Main Nav */




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


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








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


   3. MAIN NAVIGATION                                            


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





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


 /* Set ul background color */
 /* Set li background Color */
 /* Set link Color */
 /* Set link Hover Color */

/* Parent List */
.hs-menu-wrapper > ul{ 
  /*background:#ECEFF2;*/
  text-transform: uppercase;
  padding: 13px 0;
  width: 100%;
}
.hs-menu-wrapper > ul > li{
  background:;
  padding: 0 25px;
}
.hs-menu-wrapper > ul > li > a{
  color:;
}
.hs-menu-wrapper > ul > li > a:hover{
  color:;
}

/* Child List */
.hs-menu-wrapper > ul ul{}
.hs-menu-wrapper > ul ul li{
  background:;
}
.hs-menu-wrapper > ul ul li a{
  color:;
}
.hs-menu-wrapper > ul ul li a:hover{
  color:;
}

/* Override max width on menu links */
.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;
}

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:768px) {
      .custom-menu-primary .hs-menu-wrapper { 
          display:block !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; /* Hide button on Desktop */
}

@media (max-width: 767px){


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

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

  /* 
    * Menu Reset
    *
    * Remove styling from desktop version of custom-menu-primary. Place any 
    * additional CSS you want removed from the mobile menu in this reset 
    */

  .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:#ffffff;
  }


  /* 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: #ffffff; /* Background color */
    border: 1px solid #000000;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #000000; 
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:#ffffff;
    background-color: #000000; 
    border-color: transparent;
  }

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


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

  .mobile-trigger i{
    display: inline;
    position: relative;
    top: -4px;
  }
  .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: #000000; /* Icon color */
    display: inline-block;
  }
  .mobile-trigger i:before{
    top: -6px; /* Position top line */
  }
  .mobile-trigger i:after{
    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: #ffffff; /* Icon color */
  }


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

  .child-trigger{
    display: block !important; /* Hide button on Desktop */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important; /* Button width */
    min-width: 55px !important;
    height: 45px !important; /* Button height */  
    padding: 0 !important;
    border-left: 1px dotted rgba(255, 255, 255, .20);
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
  }
  .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:#ffffff; /* 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{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

    
  /* Menu Styles on Mobile Devices
     ========================================================================== */  
     
   .custom-menu-primary.js-enabled{
       position: relative;
       padding-top: 44px; /* Makes room for button */
       margin: 10px 0 10px 0;
   }

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

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !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:#000000; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }

   /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li{
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    font-size: 22px; /* Font size of top level list items */
    line-height: 45px;
    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:#ffffff; /* link color set by global mobile-aColor variable */
  }
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover{
    color:#ffffff; /* link hover color set by global mobile-aColorHover variable */
  }

  /* Level 2 and Higher Menu List Styles */
  .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 */
  }

  /* 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{}
.sidebar.right{}
.sidebar.left{}

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

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

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

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

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

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


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

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

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

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


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

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

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

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


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

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

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

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








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


   5. COS COMPONENTS                                        


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





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

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

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

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

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


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

.blog .blog-content {}

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

.blog .blog-sidebar {}

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


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




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


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

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

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

/* Labels */
body label { 
    font-weight: 500;
    font-size: .9em;
}
body .hs-form-field > label {display: block;}

/* 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: Raleway, sans-serif;
  font-size: 16px;
}

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

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

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

/* Multiple Selection Inputs */
body form.hs-form .hs-form-field ul.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 {
    border: 1px solid #FF1E00;
}

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


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

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

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

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

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

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

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

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

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


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

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

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

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

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

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


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

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

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

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


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

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

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


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

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

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

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

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

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




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


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

body .hs-button.primary,
body input[type="submit"],
body input[type="button"] {
  cursor: pointer;
  -webkit-appearance: none;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  text-decoration: none !important;
  border: none;
  height: 50px;
  padding: 0 40px;
  border-radius: 5px;
  background: #0056A7;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: normal; /* Required for iOS! */
  word-wrap: break-word;
}

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

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 Subscription Button
   ========================================================================== */
#hs_form_target_blog_subscription .hs-button.primary.large {}
#hs_form_target_blog_subscription .hs-button.primary.large:hover {}
#hs_form_target_blog_subscription .hs-button.primary.large:focus {}


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


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

/** 
 * Override global CTA styles by wrapping the CTA module in a module group 
 * that has an ID, and use that ID to prefix your CTA selector. Example shown below.
 *
 * All overriding properties require !important tags. 
*/
.cta_button {
    cursor: pointer;
    font-family: Raleway,Sans-Serif;
    font-size: 14px;
    text-decoration: none!important;
    border: none;
    padding: 18px 35px;
    border-radius: 5px;
    background: #0056A7;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
}
.cta_button.outlined{
    background: none !Important;
    color: #0056A7;
    border: 1px solid #0056A7;
}
#module-group-ID .cta_button:hover {}
#module-group-ID .cta_button:focus {}



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


   6. DOMAIN ESPECIFICS                                        


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





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


   7. MISCELLANOUS                                        


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





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








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


   7. MOBILE MEDIA QUERIES                              


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



   

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

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


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

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

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

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



/*** CompanyModules ***/


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

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

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

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

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

.hs-blog-social-share .hs-blog-social-share-list {
  margin: 0;
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item {
  height: 30px;
}
@media (max-width: 479px){
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item:nth-child(2) {
    float: none !important; /* Stack social icons into two rows on phones */
  }
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item .fb-like > span{
  vertical-align: top !important; /* Aligns Facebook icon with other social media icons */
}

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

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

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

/* Forms */

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

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

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

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

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

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

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

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


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

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

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

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

/* Space Module */
.widget-type-space {
    visibility: hidden;
}

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

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

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

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

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

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

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

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

.carousel li {margin-right: 5px}


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

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



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

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

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

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

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

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

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

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


/* responsive pre elements */

pre {
    overflow-x: auto;
}

/* responsive pre tables */

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

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

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

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


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

/* Custom CSS utility classes */
@media (min-width: 768px) {
    .equal-height-container > .row-fluid-wrapper > .row-fluid {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: stretch;
        -moz-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}
/* Images */
img {
    max-width: 100%;
    height: auto;
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: bottom; /* Suppress the space beneath the baseline */
}
img.alignRight, img.alignright{ margin: 0 0 5px 15px; }
img.alignLeft, img.alignleft{ margin: 0 15px 5px 0; }

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

/* Blog Social Sharing */
.hs-blog-social-share .hs-blog-social-share-list {
    margin: 0;
    list-style: none !important;
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item {
    height: 30px;
    list-style: none !important;
}
@media (max-width: 479px){
    .hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item:nth-child(2) {
        float: none !important; /* Stack social icons into two rows on phones */
    }
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item .fb-like > span{
    vertical-align: top !important; /* Aligns Facebook icon with other social media icons */
}

/* Captcha */
#recaptcha_response_field {
    width: auto !important;
    display: inline-block !important;
}

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

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

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

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

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

/* Forms */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"]
select {
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Fix radio button and check box fields in multi column forms*/
.hs-form fieldset[class*="form-columns"] input[type="checkbox"].hs-input,
.hs-form fieldset[class*="form-columns"] input[type="radio"].hs-input {
    width: auto;
}

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

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

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

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

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

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

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


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

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

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

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

/* Space Module */
.widget-type-space { visibility: hidden; }

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

/* Fix for CTA border box issue */
.hs-cta-wrapper a {
box-sizing: content-box;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
}

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

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

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

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

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

.carousel li {margin-right: 5px}

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

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


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

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



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

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

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

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

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

.hs_cos_flex-slider h1,
.hs_cos_flex-slider h2,
.hs_cos_flex-slider h3,
.hs_cos_flex-slider h4,
.hs_cos_flex-slider h5,
.hs_cos_flex-slider h6,
.hs_cos_flex-slider p {
    color: white;
}
/* Thumbnail only version of the gallery */
.hs-gallery-thumbnails li {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    margin-right:-4px;
}
.hs-gallery-thumbnails.fixed-height li img {
    max-height: 150px;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
}

/* responsive pre elements */
pre { overflow-x: auto; }

/* responsive pre tables */
table pre { white-space: pre-wrap; }

/* Corrects width issues in table elements created via the wysiwyg editor */
table tr td img { max-width: initial; }

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

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

/* HTML 5 Reset */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}
audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
audio:not([controls]) {
    display: none;
}

/* Support migrations from wordpress */
.wp-float-left {
    float: left;
    margin: 0 20px 20px 0;
}

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

/* Responsive Google Maps */
#map_canvas img, .google-maps img { max-width: none; }
/* @import url('http://example.com/example_style.css'); */


@font-face {
    font-family: 'Proxima Nova Soft Sb';
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Proxima_Nova_Soft_Semi_Bold/ProximaNovaSoft-Semibold.eot');
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Proxima_Nova_Soft_Semi_Bold/ProximaNovaSoft-Semibold.eot#iefix') format('embedded-opentype'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Proxima_Nova_Soft_Semi_Bold/ProximaNovaSoft-Semibold.woff2') format('woff2'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Proxima_Nova_Soft_Semi_Bold/ProximaNovaSoft-Semibold.woff') format('woff'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Proxima_Nova_Soft_Semi_Bold/ProximaNovaSoft-Semibold.svg#ProximaNovaSoft-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
}



@font-face {
    font-family: 'Proxima Nova Soft';
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.eot');
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.eot#iefix') format('embedded-opentype'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.woff2') format('woff2'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.woff') format('woff'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.svg#ProximaNovaSoft-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}



@font-face {
    font-family: 'Proxima Nova Soft';
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.eot');
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.eot#iefix') format('embedded-opentype'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.woff2') format('woff2'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.woff') format('woff'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.svg#ProximaNovaSoft-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}




@font-face {
    font-family: 'Calibri';
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-LightItalic/Calibri-LightItalic.eot');
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-LightItalic/Calibri-LightItalic.eot#iefix') format('embedded-opentype'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-LightItalic/Calibri-LightItalic.woff2') format('woff2'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-LightItalic/Calibri-LightItalic.woff') format('woff'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-LightItalic/Calibri-LightItalic.svg#Calibri-LightItalic') format('svg');
    font-weight: 300;
    font-style: italic;
}




@font-face {
    font-family: 'Calibri';
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-Light/Calibri-Light.eot');
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-Light/Calibri-Light.eot#iefix') format('embedded-opentype'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-Light/Calibri-Light.woff2') format('woff2'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-Light/Calibri-Light.woff') format('woff'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/Calibri-Light/Calibri-Light.svg#Calibri-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}




@font-face {
    font-family: 'Calibri';
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/CalibriRegular/Calibri.eot');
    src: url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/CalibriRegular/Calibri.eot#iefix') format('embedded-opentype'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/CalibriRegular/Calibri.woff2') format('woff2'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/CalibriRegular/Calibri.woff') format('woff'),
        url('//2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/Blog_Assets_Dec_17/CalibriRegular/Calibri.svg#Calibri') format('svg');
    font-weight: normal;
    font-style: normal;
}

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

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  
    background-color: #fff;
}
.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{
    font-family: Nunito,sans-serif;
}

.custom-header{
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.06);
    background:#ffffff;
}

.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{
    color: #404040; 
}

.custom-header .custom-logo .ossia-logo path,
.mobile-open .custom-header .custom-logo .ossia-logo path,
body.error-template .custom-header .custom-logo .ossia-logo path,
body.password-template .custom-header .custom-logo .ossia-logo path,
body.subscription-template .custom-header .custom-logo .ossia-logo path{
    fill:#404040;
}

.mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    color:#000000;
}


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

.custom-footer-link ul li a{
    font-family: Nunito,sans-serif;
}



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

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

body{
    font-size: 18px;
    margin:0;
    position: relative;
    font-weight: 300;
    color:#000;
    font-family: 'Calibri';
    background: #fff;
    margin: 0 auto;
    -moz-osx-font-smoothing: grayscale;
    overflow-x:hidden;
}
li.hs-menu-item {
    font-family: Nunito,Helvetica,Arial,sans-serif;
}

.blog-layout .body-container-wrapper{
    padding-top: 105px;
}

h1{
    font-size: 42px;
    line-height: 48px;
    margin: 0 0 10px;
    color: #000000;
    font-weight: 700;
    text-transform: none;
     font-family: 'Proxima Nova Soft Sb';
    text-align: center;
}

h2{
    font-size: 32px;
    line-height: 42px;
    margin:0 0 10px;
    font-weight: 600;
    color: #000000;
    font-family: 'Proxima Nova Soft Sb';
}

h3{
    font-size: 20px;
    line-height: 27px;
    margin: 0;
    font-weight: 600;
     font-family: 'Proxima Nova Soft Sb';
}

h4{
    font-size: 18px;
    line-height: 21px; 
    margin: 0 0 10px;
    font-weight: 700;
}

h5{
    font-size: 16px;
    line-height: 23px;
    margin:0 0 10px;
}

p{
    margin: 0 0 10px;
    line-height: 25px;
}

h3{
}

h2, h3, h4, h5{
    text-transform: none;
}

a, a:hover{
    color:#6FBA33;
    text-decoration: none;
}

*:focus{
    outline: none;
}

ul{
    margin: 0;
    padding: 0 0 0 22px;
}

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

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

.white-bg{
    background: #fff;
}

body {
    line-height: 25px;
}


body .body-container .post-body a{
    text-decoration:none;
    margin-bottom:0px;
}

.body-container{
    padding:0px;
}

/*==============Blog Listing Styling==============*/

.blog-body-container{
    padding-top:80px;
}

.hs-blog-listing .author-img img{
    width:41px;
    height: 40px;
    border-radius: 5px;
}

.hs-blog-listing .listing-body {
    padding: 17px 20px 30px 70px;
    position: relative;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    margin-bottom: 30px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background: #fff;
    min-height: 200px;
}

.hs-blog-listing .listing-body:hover{
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.2);
    background: #fff;
}

.hs-blog-listing .author-img img {
    width: 41px;
    height: 40px;
    border-radius: 5px;
}

.hs-blog-listing .author-img {
    position: absolute;
    top: 20px;
    left:20px;
}

.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
    margin:0;
    max-height: 150px;
}

.hs-blog-listing .author-name{
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    font-family: "Proxima Nova Soft";
    color: #000000;
}

body.hs-blog-listing .body-container .author-name a{
    color: #000000;
    font-weight: bold;
    font-family: "Proxima Nova Soft";
    text-decoration: none;
}

.hs-blog-listing .author-name, .hs-blog-listing .post-date{
    width: 50%;
    float:left;
    margin:0;
    padding-bottom:37px;
    padding-top: 2px;
}

.hs-blog-listing .post-date{
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    text-align: right;
}

.hs-blog-listing .post-body{
    width: 65.3%;
    float: left;
    padding-top:0px;
    padding-bottom:0px;
}

.hs-blog-listing .featured-img{
    width: 33.3%;
    float: left;
    padding-left: 10px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 20px 0 10px;

}

/*.hs-blog-listing .featured-img img{
    max-width: 218px;
}*/

.hs-blog-listing .post-body h3 a {
    color: #000000;
    padding-bottom: 13px;
    font-size: 25px;
    line-height: 35px;
    display: block;
    float:left;
    text-decoration: none;
}

.hs-blog-listing .blog-section h1{
  text-align: left;
}

.hs-blog-listing p{
    font-size: 16px;
    line-height: 23px;
    color: #373A40;
    margin-bottom:15px;
}


.hs-blog-listing a.more-link {
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    width: 100%;
    overflow: hidden;
    display: block;
    text-transform:uppercase;
}

.blog-left-col{
    padding-top: 30px;
}

.hs-blog-listing .listing-body:hover h3 a{
    color: #6FBA33;
}

.hs-blog-listing .about-post p{
    overflow: hidden;
    width: 100%;
}


.hs-blog-listing .hs-author-profile .hs-author-bio{
    font-size: 16px;
    line-height: 26px;
    padding: 20px 0 10px;
    color: #000000;
}

.hs-blog-listing .hs-author-profile .hs-author-social-section{
    font-size: 16px;
    line-height: 26px;
    padding: 0px 0 10px;
    color: #000000;
}

.hs-blog-listing .hs-author-profile h2.hs-author-name, .hs-blog-listing h3.hs-author-listing-header{
    color: #000000;
    
}

@media(min-width: 768px){
    
    
    .hs-blog-listing .listing-body .hs-featured-image{
        -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }
    
    .hs-blog-listing .listing-body:hover .hs-featured-image{
        -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
        filter: grayscale(0%);
    }

    
}

@media(max-width: 1024px){
    
    .blog-left-col {
        padding-top: 21px;
    }
    
    .hs-blog-listing .listing-body {
        padding: 10px 10px 21px 50px;
        min-height: auto;
    }
    
    .hs-blog-listing .author-img img {
        width: 30px;
        height: 30px;
        border-radius: 4px;
    }
    
    .hs-blog-listing .author-img {
        top: 10px;
        left: 10px;
    }
    
    .hs-blog-listing .author-name {
        font-size: 12px;
        line-height: 15px;
    }
    
    
    .hs-blog-listing h3{
        font-size: 13px;
        line-height: 18px;
    }
    
    .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
      //  max-width: 129px;
    }
    
    .hs-blog-listing .post-date {
        font-size: 12px;
        line-height: 15px;
    }
    
    .hs-blog-listing p {
        font-size: 12px;
        line-height: 15px;
        letter-spacing: -0.1px;
        
    }
    
    .hs-blog-listing .author-name, .hs-blog-listing .post-date {
        padding-bottom: 21px;
    }
    
    .hs-blog-listing .post-body h3 a {
        padding-bottom: 6px;
        
    }
    
    .hs-blog-listing p{
        margin-bottom: 10px;
    }
    
    .hs-blog-listing .post-body{
        width: 63%;
    }
    
    .hs-blog-listing .featured-img {
        width: 34.3%;
        padding: 10px 10px 0 0;
    }
    
    .hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
        max-height: 100px;
    }


}


@media(min-width:768px){
    
.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link .hs-featured-image{
   float: none;
   width:100%;
   max-width:100%;
   margin:0px;
   height:157px;
}    

.hs-blog-listing .hs-featured-image-wrapper{
    margin-top:65px;
}

.hs-blog-listing .listing-body{
    padding: 20px 43px 21px 75px;
    min-height:330px;
}

    
}


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

.hs-blog-listing .post-body h3 a{
    font-size: 13px;
    line-height: 15px;
}  

.hs-blog-listing .hs-featured-image-wrapper{
    margin-top:51px;
}
    
}



@media(max-width: 767px){
    
body.hs-blog-listing .blog-left-col {
    width: 100%;
}

body.hs-blog-listing .hs-featured-image {
    float: none;
    margin: 0px;
    max-width: 100%;
    height: auto;
}


.hs-blog-listing .post-body {
    width: 100%;
    float: none;
    display: flex;
    display: -webkit-fllex;
    display: -ms-flex;
    flex-direction: column;
}

.hs-blog-listing .featured-img {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
    order: 2;
    text-align: center;
}

body.hs-blog-listing .row-fluid .listing-body {
    padding: 10px 0 19px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 10px;
    float: none;
}

.hs-blog-listing .author-name, .hs-blog-listing .post-date {
    padding: 5px 0;
}

.hs-blog-listing .author-name {
    width: 60%;
    padding-left: 60px;
}

.hs-blog-listing .post-date {
    width: 40%;
    padding-right: 10px;
}

.hs-blog-listing .author-img img {
    width: 25px;
    height: 25px;
    border-radius: 3px;
}

.hs-blog-listing .about-author{
    order:1;
    padding-bottom: 30px;
}

.hs-blog-listing .about-post{
    order:3;
    padding: 20px 20px 0;
}

.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
    float: none;
    max-width: 100%;
    width:100%;
}

.hs-blog-listing .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
    max-height: none;
}

.hs-blog-listing .post-body h3 a{
    font-size:18px;
    line-height:21px;
}

.hs-blog-listing p{
    font-size:14px;
    line-height:17px;
}
    
}

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

.blog-pagination{
    padding: 40px 0 74px;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

body .blog-pagination a {
    font-size: 16px;
    line-height: 23px;
    font-weight: bold;
    padding: 10px 41px;
    display: inline-block;
    border-radius: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.blog-pagination a:hover{
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}

a.previous-posts-link{
    margin-right: 0px;
}

a.all-posts-link {
    display: none;
    margin:0px 1%;
}

@media(max-width: 1024px){
    
    .blog-pagination {
        padding: 4px 0 32px;
    }
    
}


@media(max-width: 767px){
    
    .blog-pagination {
        padding: 10px 0 20px;
        width:100%;
        max-width: 320px;
        margin:0 auto;
        text-align: left;
    }
    
    a.previous-posts-link {
        margin-right: 0;
    }
    
    a.next-posts-link{
        float: none;
    }
    
    body .blog-pagination a{
        padding: 10px 25px;
        margin:0 1px;
    }
    
    body .blog-pagination{
        padding: 10px 0 20px;
        width: 100%;
        max-width: 281px;
        margin: 0 auto;
        text-align: center;
        float: none;
        display: block;
    }
    
}

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

.blog-right-col{
    background: #f4f4f4;
    position: relative;
}

.blog-right-col .widget-type-blog_subscribe{
    background-color:#000000;
    position:relative;
}


.blog-right-col h3{
    letter-spacing: 0;
    color: #000000;
    padding: 0 0 20px;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Proxima Nova Soft Sb';
    position:relative;
}


.blog-right-col .categories h3:after,
.blog-right-col .recent-posts h3:after{
    background-color:#474B51;
    content:'';
    position:absolute;
    left:-50px;
    top:0;
    width:4px;
    height:20px;
}

.blog-right-col .recent-posts h3:after{
    left:-26px;
}

.blog-right-col h3 span{
    color: #6FBA33;
    padding-right:5px;
}

.blog-subscription{
    background: #252525;
    padding: 25px 0 30px 50px;
    position: relative;
    color: #fff;
}

.blog-subscription p {
    color: #ffffff;
    font-weight: 600;
}

.blog-subscription h3.form-title{
    color: #f1f1f1;
    position:relative;
}

.blog-subscription h3.form-title:after{
    content:'';
    position:absolute;
    left:-50px;
    top:0;
    background-color:#FFFFFF;
    width:4px;
    height:20px;
}

.blog-subscription form{
    width: 100%;
    max-width: 384px;
    margin: 0 auto;
    position: relative;
}

.blog-subscription form input{
    border:0;
    border-radius: 25px;
    height: 49px;
    font-size: 15px;
    padding: 10px 140px 10px 17px;
}

.blog-subscription form .hs_submit{
    position: absolute;
    top: 5px;
    right: 5px;
}

.blog-subscription form .hs-form-required{
    display:none;
}

.blog-subscription form .hs_submit input{
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 1px;
    background: #80C342;
    border-radius: 5px;
    height: 39px;
    width: 128px;
    padding: 0;
    margin-bottom: 25px;
    font-weight:400;
    border-radius:20px;
    text-transform: uppercase;
    font-family: "Proxima Nova Soft";
}

.blog-subscription form ul.hs-error-msgs{
    position: relative;
    margin:0;
}

.blog-subscription form ul.hs-error-msgs label{
    margin: 0;
    text-align: left;
   // position: absolute;
    top: 0px;
    color: #fff;
    display: block;
    line-height: 14px;
    font-size: 14px;
    font-weight:300;
}

.blog-subscription .copy-right{
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 0 15px;
}

.blog-subscription .copy-right p{
    margin: 0;
    
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    padding-top: 14px;
}


/* Download CTA */

.blog-right-col .download-cta {
    padding: 40px 0 0 50px;
}

.blog-right-col .download-cta a.cta_button {
    border: 3px #80C342 solid;
    border-radius: 50px;
    margin: 0;
    background-color: transparent;
    color: #8fcd2a;
    font-size: 18px;
    padding: 14px 15px;
    transition: all ease-in-out .3s;
    font-size: 18px;
    line-height: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "Proxima Nova Soft";
    display: inline-block;
    transition: all ease-in-out .3s;
}

.blog-right-col .download-cta a.cta_button:hover{
    background-color: #80C342;
    color: #fff;
}


/* Placeholder Text */
.blog-subscription ::-webkit-input-placeholder { /* Webkit Browsers */
   font-size: 15px;
   line-height: 29px;
   letter-spacing: 0.2px;
   text-indent:0px;
    font-weight: 300;
   opacity: 1;
  
   
}
.blog-subscription :-moz-placeholder { /* Firefox 18- */
   font-size: 15px;
   line-height: 29px;
   letter-spacing: 0.2px;
   text-indent:0px;
    font-weight: 300;
   opacity: 1;
    
   
}
.blog-subscription ::-moz-placeholder { /* Firefox 19+ */
   font-size: 15px;
   line-height: 29px;
   letter-spacing: 0.2px;
   text-indent:0px;
    font-weight: 300;
   opacity: 1;
    
   
}
.blog-subscription :-ms-input-placeholder { /* IE10 */
   font-size: 15px;
   line-height: 29px;
   letter-spacing: 0.2px;
    text-indent:0px; 
    font-weight: 300;
   opacity: 1;
}

.hs_error_rollup{
    display:none!important;
}

p.thankyou {
    color: #fff;
}


@media(min-width: 768px){
    
    .blog-right-col:after{
        content:"";
        background: #f4f4f4;
        width: 900%;
        height:100%;
        position: absolute;
        left:100%;
        top:0;
        bottom:0;
    }
    
    .blog-subscription:after{
        content:"";
        background: #252525;
        width: 900%;
        height:100%;
        position: absolute;
        left:100%;
        top:0;
        bottom:0;
        z-index:1;
    }
    
    .blog-right-col .widget-type-blog_subscribe:after{
        content: '';
        background: #000000;
        width: 900%;
        height: 100%;
        position: absolute;
        left: 100%;
        top: 0;
        bottom: 0;
        z-index:1;
    }
    
    body .row-fluid .blog-subscription{
        min-height: 183px;
    }
    
}

@media(min-width:768px) and (max-width: 1024px){
    
    body.hs-blog-listing .container-fluid .row-fluid .blog-body-container .wrapper{
        padding: 0 0 0 40px;
        overflow:hidden;
    }
    
    body.hs-blog-listing .blog-right-col{
        width: 34.291713%;
        margin-left: 2.062431%;
    }
    
    body.hs-blog-listing .blog-left-col{
        width: 63.745856%;
    }
    
   
    
}

@media(max-width: 1024px){
    
    body .blog-subscription {
        padding: 29px 20px 20px;
    }
    
    .blog-subscription form input {
       // height: 94px;
       // padding: 10px 10px 44px;
       // text-align: center;
        //margin:0;
    }
    
    body .blog-subscription form .hs_submit input{
        width:100%;
        margin:0;
        padding:10px;
    }
    
    .blog-subscription form .hs_submit {
      /*  position: absolute;
        top: 51px;
        right: 5px;
        left: 5px;*/
    }
    
    .blog-subscription form ul.hs-error-msgs label{
        top:1px;
    }
    
     .blog-right-col .categories h3:after, .blog-right-col .recent-posts h3:after{
        left:-27px;
    }
    
    .blog-subscription h3.form-title:after{
        left:-20px;
    }
    
    .blog-right-col .recent-posts h3:after{
        left:-18px;
    }
    
    .blog-right-col .download-cta {
        padding: 30px 0 0 20px;
    }
    
    
}

@media(max-width: 767px){
    .blog-right-col{
       overflow:hidden;
    }
    
    .blog-subscription form{
        max-width: 100%;
    }
    
    body .blog-subscription {
        padding: 23px 20px;
    }
    
    body.hs-blog-listing .container-fluid .row-fluid .blog-body-container .wrapper{
        padding:0;
    }
    
    body.hs-blog-listing .blog-left-col{
        padding: 10px 10px 0;
    }
    
    .blog-subscription form, .blog-subscription h3.form-title{
        width: 100%;
       // max-width: 384px;
       max-width:100%;
        float: none;
        margin: 0px auto;
    }
    
    .blog-right-col .categories h3:after, .blog-right-col .recent-posts h3:after{
        left:-20px;
    }
    
}

/*=============Category Styling============*/

.categories{
    padding: 42px 0 27px 50px;
    border-bottom: 1px dotted #e1e1e1;
    position: relative;
}

.categories:after{
    content: "";
    width: 900%;
    background: #e1e1e1;
    position: absolute;
    left: 100%;
    bottom: -1px;
    height: 1px;
    display: block;
    z-index: 1;
}

.categories h3{
    padding-bottom: 23px;
}

.categories ul, .categories ul li{
    margin:0;
    padding:0px;
    list-style:none;
    
}

.categories ul li{
    display:none;
}

.hs-blog-listing .blog-sidebar .categories ul li{
    display:block;
}

.categories li a {
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 600;
    padding-bottom: 15px;
    text-transform: capitalize;
}

.categories li a .filter-link-count{
    font-weight:normal;
}

.categories .filter-expand-link{
    font-weight:600;
}

.categories li a:hover{
    color: #80C342;
}

.hs-blog-listing .blog-sidebar .no-events-to-show{
		padding: 40px 55px;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}

.hs-blog-listing .blog-sidebar span.event-date {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

@media(max-width: 1024px){
    
    body .categories{
        padding: 32px 40px 21px 28px;
    }
  
  .hs-blog-listing .blog-sidebar .no-events-to-show {
    padding: 40px 30px;
  }
    
}

@media(max-width: 767px){
    
    body .categories {
        padding: 30px 20px 25px;
    }
  
   .hs-blog-listing .blog-sidebar .no-events-to-show {
      padding: 40px 20px;
    }
    
}

/*==============Recent posts============*/

.recent-posts{
    padding: 40px 5px 0 27px;
}

.recent-posts h3{
    padding-bottom: 11px;
    padding-left: 23px;
}

.recent-posts ul, .recent-posts ul li{
    margin:0;
}

.recent-posts .post{
    padding: 17px 40px 18px 23px;
    margin-bottom: 5px;
    border-radius: 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.recent-posts a{
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    font-weight:600;
    display: inline-block;
    padding-bottom: 5px;
}

.recent-posts a.post-name{
}

.recent-posts a.author-link{
    color: #000000;
    padding:0;
    letter-spacing: 0;
}

.recent-posts .post{
    
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
}

.recent-posts .post:hover{
    box-shadow: 0 2px 20px 0 rgba(0,0,0,0.1);
}

.recent-posts .post:hover a.post-name{
    color:#6FBA33;
}

@media(max-width: 1024px){
    
    .recent-posts {
        padding: 30px 40px 0 18px;
    }
    
    .recent-posts .post {
        padding: 10px 11px 10px;
        margin-bottom: 9px;
        
    }
    
    .recent-posts h3 {
        padding-bottom: 20px;
        padding-left: 11px;
    }
    
    .recent-posts a.author-link{
        line-height: 20px;
    }

}

@media(min-width: 768px) and (max-width: 1024px){
    
    .recent-posts a {
        font-size: 12px;
        line-height: 17px;
        padding-bottom: 2px;
    }
    
    .recent-posts .post {
        font-size: 12px;
        line-height: 17px;
    }

    
}


@media(max-width: 767px){
    
    .recent-posts {
        padding: 40px 20px 27px;
    }
    
    .recent-posts .post {
        padding: 17px 0;
        margin-bottom: 5px;
    }
    
    .recent-posts .post:hover{
        padding: 17px 10px;
    }
    
    .recent-posts h3 {
        padding-bottom: 3px;
        padding-left: 0px;
    }


    
}


/*==============Blog Post Styling================*/

body.hs-blog-post .container-fluid .row-fluid .blog-body-container .wrapper{
    max-width: 790px;
}

body.hs-blog-post .row-fluid .blog-left-col{
    width: 100%;
}

body.hs-blog-post .blog-right-col{
    display: none;
}

body.hs-blog-post h1{
    text-align: left;
}

body.hs-blog-post .section.post-header h1 p em {
    font-family: 'Calibri';
    font-weight: 300;
}

.post-header h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  font-family: 'Proxima Nova Soft';
}

body.hs-blog-post .date p{
    line-height: 21px;
    margin-bottom: 18px;
}

body.hs-blog-post .blog-left-col ul{
    margin: 20px 0;
    padding: 0 0 0 47px;
    list-style-position: inherit!important;
}

body.hs-blog-post .blog-left-col li{
    font-size: 18px;
    line-height: 25px;
    /*list-style: none;*/
    position: relative;
    /*padding-left: 14px;*/
}

/*body.hs-blog-post .blog-left-col li:before{
    content: "•";
    position: absolute;
    left: 9px;
    top: 1px;
    font-size: 19px;*/
}

body.hs-blog-post h4{
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 25px;
}

body.hs-blog-post p{
    margin-bottom: 20px;
}

body.hs-blog-post .section {
    border-bottom: 0;
}

body.hs-blog-post .blog-left-col {
    padding-top: 53px;
    padding-bottom: 30px;
}

body.hs-blog-post .blog-body-container img{
    margin-bottom: 20px;
}

body.hs-blog-post .author-name .author-link{
    color: #000000;
    font-weight: bold;
    font-family: "Proxima Nova Soft";
    text-decoration: none;
}

body.hs-blog-post .blog-left-col ul{
    /*padding-left:20px;*/
}

body a.next-posts-link, body a.previous-posts-link, body a.no-link{
    border:1px solid #ffffff;
}

body a.next-posts-link{
    margin: 0px 50px 0px 0px;
}

@media(max-width: 1024px){
    
    body.hs-blog-post .blog-left-col {
        padding-top: 41px;
    }
}

@media(max-width: 767px){
    
    body.hs-blog-post .blog-left-col {
    padding-top: 21px;
}

body.hs-blog-post h1 {
    font-size: 30px;
    line-height: 41px;
    margin-bottom: 20px;
}

/*
body.hs-blog-post .row-fluid .blog-body-container h1, 
body.hs-blog-post .row-fluid .blog-body-container h2, 
body.hs-blog-post .row-fluid .blog-body-container h3, 
body.hs-blog-post .row-fluid .blog-body-container p, 
body.hs-blog-post .row-fluid .blog-body-container h4, 
body.hs-blog-post .row-fluid .blog-body-container h5,
body.hs-blog-post .row-fluid .blog-body-container h6, 
body.hs-blog-post .row-fluid .blog-body-container ul {
    padding-left: 20px;
    padding-right: 20px;
} */

body.hs-blog-post .container-fluid .row-fluid .blog-body-container .wrapper{
    padding:0;
}

body.hs-blog-post .blog-body-container img{
    margin-bottom: 20px;
    float: none!important;
    padding:0!important;
}

body.hs-blog-post .section.post-header{
    padding:0px 20px;
}


}

/*==============Related Posts Styling============*/

body.hs-blog-listing .related-posts{
   display: none; 
}

body.hs-blog-post .container-fluid .row-fluid .related-posts .wrapper{
    max-width: 990px;
}

body.hs-blog-post .section{
    clear:both;
}
.section.post-body {
    padding: 20px 10px;
}

body.hs-blog-post .post-header .span12{
    margin:0px;
}


body.hs-blog-post .date p{
    font-size: 16px;
    font-weight: 300;
    color: #636461;
    text-align: right;
}

.related-posts{
    padding: 102px 0 163px;
    background: #f4f4f4;
}

.related-posts h2{
    text-align: center;
    padding-bottom: 46px;
    margin:0;
}

.row-fluid .related-posts .span4 {
    width: 27.903932%;
    margin-left: 7.164103%;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 20px 20px 68px;
    position: relative;
    background-color: #ffff;
}

.row-fluid .related-posts .hs-featured-image{
    height:175px;
    margin-left:0px;
    float: none;
    width: 100%;
    display: block;
    max-width: 100%;
}

.row-fluid .related-posts .span4:first-child {
    margin-left: 0;
}

.related-posts .featured-image,
.related-posts .hs-featured-image{
    display: block;
    height: 175px;
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.related-posts .about-author{
    width:100%;
}

.related-posts .about-author img {
    width: 41px;
    height: 40px;
    border-radius: 100%;
    float:left;
}

.related-posts .about-author p{
    margin: 0;
    float: left;
    padding-left: 10px;
    font-size: 14px;
    line-height: 17px;
}

.related-posts .about-author p a{
    
    font-weight: 700;
    color: #000000;
}

.related-posts h3{
    padding: 16px 0;
}

.related-posts h3 a{
    color: #000000;
}


.related-posts .about-author{
    position: absolute;
    left: 20px;
    bottom: 28px;
}

.row-fluid .related-posts .span4:hover {
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.2);
    background: #fff;
}

.row-fluid .related-posts .span4:hover .featured-image{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.row-fluid .related-posts .span4:hover h3 a{
    color: #6FBA33;
}


@media(min-width: 768px){
    
.realted-container{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
    
}

@media(max-width: 1024px){
    
    .related-posts {
        padding: 40px 0 105px;
    }
    
    .row-fluid .related-posts .span4 {
        width: 31.403932%;
        margin-left: 2.864103%;
        padding: 16px 16px 55px;
    }
    
    .related-posts .about-author{
        bottom: 14px;
    }
    
    .related-posts h3 {
        padding: 13px 0 11px;
        font-size: 16px;
        line-height: 22px;
    }
    
}

@media(max-width: 767px){
    
    .related-posts {
        padding: 40px 0 10px;
    }
    
    body.hs-blog-post .date,
    body.hs-blog-post .author-name{
        width:48%;        
        float:left;
    }
    
    .related-posts h2{
        padding-bottom:30px;
    }
    
    body .container-fluid .row-fluid .related-posts .span4{
        width:100%;
        padding: 0px 0px 55px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 10px;
    }
    
    .related-posts h3 {
        padding: 20px 20px 21px;
    }
    
    .related-posts .featured-image{
        border-radius: 6px 6px 0 0;
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
    
}

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

body.hs-blog-listing .footer-sticky{
    display: none;
}

.footer-sticky{
    border-top:1px solid #e1e1e1;
}

.footer-sticky .blog-pagination{
    padding: 10px;
}

.footer-sticky a.previous-posts-link{
    margin:0;
}

.footer-sticky .social-icons{
    padding: 36px 0 32px;
}

.footer-sticky .social-icons ul{
    margin:0;
    padding:0;
    text-align: center;
}

.footer-sticky .social-icons li{
    list-style: none;
    display: inline-block;
    padding: 0 3px;
    margin-left:0;
    
}

.footer-sticky .social-icons li a{
    position: relative;
    display: inline-block;
}

.footer-sticky .social-icons li .hover-icon{
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    bottom:0;
    opacity:0;
}

.footer-sticky .social-icons li:hover .hover-icon{
    opacity:1;
}

.footer-sticky .social-icons li:hover .icon{
    opacity:0;
}

.footer-sticky .social-icons p{
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    margin-bottom: 6px;
}



.footer-sticky .col{
    border-left: 1px solid #e1e1e1;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-direction: column;
    justify-content: center;
    margin:0;
    height:90px;
}

.footer-sticky .col.prev{
    border-left:0;
}

.footer-sticky .prev .blog-pagination{
    text-align: right;
}

body .footer-sticky .blog-pagination a{
    padding:10px 35px;
}


.footer-sticky .next .blog-pagination{
    text-align: right;
}

body .row-fluid .footer-sticky .col{
    margin-left:0;
}


body .row-fluid .footer-sticky .col.social-icons{
    width: 15.429915%;
}

body .row-fluid .footer-sticky .col.author{
    width: 24.829915%;
}

body .row-fluid .footer-sticky .col.topics{
    width: 33.533932%;
}

.footer-sticky .topic-link{
    display:none;
}

.footer-sticky .topic-seq-1,
.footer-sticky .topic-seq-2,
.footer-sticky .topic-seq-3,
.footer-sticky .topic-seq-4,
.footer-sticky .topic-seq-5{
    display:inline-block;
}

@media(min-width:1025px){

body .row-fluid .footer-sticky .col.topics{
    width:38%;
}    
    
}


body .row-fluid .footer-sticky .col.next{
    width: 11.609915%;
}

.footer-sticky .about-author img {
    width: 41px;
    height: 40px;
    border-radius: 6px;
    float: left;
}

.footer-sticky .about-author p {
    margin: 0;
    float: left;
    padding-left: 10px;
    font-size: 14px;
    line-height: 17px;
}

.footer-sticky .about-author p a {
    
    font-weight: 700;
    color: #000000;
}

.footer-sticky .about-author, .footer-sticky .date {
    width: 100%;
    max-width: 166px;
    margin: 0 auto;
}

.footer-sticky .about-author{
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
}

body .footer-sticky .date p{
    font-size: 16px;
    line-height: 23px;
    margin: 12px 0 0;
    
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
/*Remove DATE for now*/
body .footer-sticky .date p
{
    display:none;
}

/*
.footer-sticky{
    display: none;
    opacity:0;
}
*/
.footer-sticky.sticky {
    position: fixed;
    bottom: 0;
    //background: #fff;
    background: #f4f4f4;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 1;
    display: block;
    z-index:100;
}

.footer-sticky .topics li a {
    color: #000000;
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 12px;
    margin: 0 3px;
    text-transform: capitalize;
}

body .footer-sticky  .blog-pagination a{
    line-height:17px;
}

.footer-sticky .topics li {
    list-style: none;
    float: left;
    margin: 0 0 5px;
}

.footer-sticky .topics li:hover a{
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
}

body .sticky.push-up{
  /*  display: none; */
  bottom: 0;
}

.footer-sticky.sticky {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 700ms ease;
    -moz-transition: -moz-transform 700ms ease;
    -ms-transition: -ms-transform 700ms ease;
    -o-transition: -o-transform 700ms ease;
    transition: transform 700ms ease;
}

.footer-sticky, .footer-sticky.sticky.push-up {
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 700ms ease;
    -moz-transition: -moz-transform 700ms ease;
    -ms-transition: -ms-transform 700ms ease;
    -o-transition: -o-transform 700ms ease;
    transition: transform 700ms ease;
}

@media(min-width:1025px){
    body .row-fluid .footer-sticky .col.topics>.cell-wrapper{
        height:96px;
        overflow: hidden;
    }
}

@media(max-width:1024px){
    
    body .footer-sticky a.previous-posts-link,
    body .footer-sticky a.next-posts-link{
        padding: 8px 20px;
    }
    
    body .container-fluid .row-fluid .footer-sticky .wrapper{
        padding: 0 10px;
    }
    
    .footer-sticky .about-author p{
        display: none;
    }
    
    body .row-fluid .footer-sticky .col.author {
        width: 13.729915%;
        padding: 0 21px 0 21px;
        text-align: center;
    }
    
    body .row-fluid .footer-sticky .col.prev{
        width: 14.064641%;
    }
    
    .footer-sticky .about-author img {
        float: none;
    }
    
    body .row-fluid .footer-sticky .col.next {
        width: 13.509915%;
    }
    
    body .row-fluid .footer-sticky .col.social-icons {
        width: 19.429915%;
    }
    
    body .row-fluid .footer-sticky .col.topics {
        width: 39.533932%;
    }
    
    .footer-sticky .social-icons li a {
        width: 32px;
        height: 32px;
    }
    
    .footer-sticky .social-icons li {
        padding: 0 2.5px;
    }
    
    .footer-sticky .social-icons p {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 24px;
    }
    
    .footer-sticky .social-icons {
        padding: 30px 0;
    }
    
    body .footer-sticky .date p {
        font-size: 13px;
        line-height: 17px;
        margin: 9px 0 0;
    }
    
    .footer-sticky .topics li a{
        font-size: 10px;
        line-height: 23px;
        padding: 4px 10px;
    }
    
    body .row-fluid .footer-sticky .col.topics>.cell-wrapper{
        height:84px;
        overflow: hidden;
    }


}

@media(max-width: 767px){
    
    body .row-fluid .footer-sticky {
        display: none;
    }
    
    body.hs-blog-post .row-fluid .footer-sticky {
        display: block;
    }
    
    body.hs-blog-post .row-fluid .footer-sticky .col.prev{
        display: none;
    }
    
    body.hs-blog-post .row-fluid .footer-sticky .col.author{
        display: none;
    }
    
    body.hs-blog-post .row-fluid .footer-sticky .col.topics{
        display: none;
    }
    
    body.hs-blog-post .row-fluid .footer-sticky .col.next{
        display: none;
    }
    
    body.hs-blog-post .row-fluid .footer-sticky .col.social-icons{
        width: 100%;
        display: block;
        border-left: 0px;
        height: auto;
        padding: 20px 0 10px;
    }
    
    body.hs-blog-post .row-fluid .footer-sticky .social-icons p{
        margin-bottom: 10px;
    }
    
    
    
}





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

.footer-section .hs-form-required{
    display:none;
}

.footer-section{
    background: #252525;
    padding: 58px 0 0;
/*     text-align: center; commented out by HubSpot support 10/1 */
}

.footer-section h3.form-title{
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.7px;
    color: #ffffff;
    font-family: "Proxima Nova Soft";
    padding: 0 0 10px;
    font-weight: 300;
}

.footer-section form{
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 50px;
}

.footer-section form input{
    border:0;
    border-radius: 25px;
    height: 49px;
    font-family: "Proxima Nova Soft";
    font-size: 15px;
    padding: 10px 140px 10px 17px;
}

.footer-section form .hs_submit{
    position: absolute;
    top: 5px;
    right: 5px;
}

.footer-section form .hs_submit input{
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform:uppercase;
    font-weight: 400;
    background: #6FBA33;
    border-radius: 20px;
    height: 39px;
    width: 128px;
    padding: 0;
    margin-bottom: 25px;
}

.footer-section form ul.hs-error-msgs{
    position: relative;
    margin:0;
}

.footer-section form ul.hs-error-msgs label{
    margin: 0;
    text-align: left;
    padding: 0;
    font-size: 12px;
    position: absolute;
    top: 0px;
    color: #fff;
    left:0;
    right:0;
}

.footer-section .copy-right{
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 0 15px;
}

.footer-section .copy-right p{
    margin: 0;
   
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    padding-top: 14px;
}


/* Placeholder Text */
.footer-section ::-webkit-input-placeholder { /* Webkit Browsers */
   font-size: 15px;
   line-height: 29px;
   letter-spacing: 0.2px;
   color: #6FBA33;
   text-indent:0px;
   
   opacity: 1;
}
.footer-section :-moz-placeholder { /* Firefox 18- */
   font-size: 15px;
   line-height: 29px;
   letter-spacing: 0.2px;
   color: #6FBA33;
  
   opacity: 1;
   text-indent:0px;
}
.footer-section ::-moz-placeholder { /* Firefox 19+ */
   font-size: 15px;
   line-height: 29px;
   letter-spacing: 0.2px;
   color: #6FBA33;
  
   opacity: 1;
   text-indent:0px;
}
.footer-section :-ms-input-placeholder { /* IE10 */
   font-size: 15px;
   line-height: 29px;
   letter-spacing: 0.2px;
   color: #6FBA33;
   
   opacity: 1;
   text-indent:0px;
}

.footer-section .widget-type-blog_subscribe .hs-form-field{
    color:#fff;
    padding-bottom:20px;
}

.footer-section .legal-consent-container *:not(a){ 
  color: #EEE;
}

@media(max-width: 1024px){
    
    .footer-section .copy-right p{
        letter-spacing:0;
    }
    
}




@media(max-width: 767px){
    
   /* body .footer-section form input {
        height: 95px;
        padding: 10px 10px 45px 10px;
        text-align: center;
    }*/
    
    .footer-section form .hs_submit input{
        width:100%;
        padding:10px;
    }
    
   /* .footer-section form .hs_submit {
        position: absolute;
        top: 51px;
        right: 5px;
        left: 5px;
    }*/
    
    .footer-section {
        padding: 30px 0 0;
    }
    
    .footer-section form {
        padding-bottom: 13px;
    }
    
    .footer-section form ul.hs-error-msgs label{
        position:inherit;
    }

    
}




/*=============News==================*/

.hs-blog-listing .news-body-container .listing-body{
    padding: 17px 20px 30px 20px;
}


body.hs-blog-post .center-heading .post-header *{
    text-align: center;
}



/* Updates for the footer */
.row-fluid .blog-subscription-form-section{
    display:none;
}
.footer-connect-title{
/*     visibility: hidden; */
  color: #EEE;
}

.edison-awards{
  margin: 20px 0;
  float: left;
  clear: both;
}
.edison-awards img{
  max-width: 240px; 
}
.edison-awards p{
  text-align: center;
  margin: 5px 0 0 0;
  color: #FFF;
  font-weight: bold;
}

.span12.widget-span.widget-type-cell.custom-footer {
    background-color: #252525;
}

.custom-sign-up-form form {
    margin: 0 0 0 auto;
/*     max-width: 225px; */
}

.grecaptcha-badge, .grecaptcha-badge *{
  box-shadow: none !important;
}

.custom-sign-up-form h3.form-title {
    display: inline-block;
    float: left;
    margin-left:0;
}
.custom-footer-link ul li a,
.custom-copyright p{
        color: #ebe9e9;
}
.custom-footer-link ul li a:hover {
    background-color: hsla(0,0%,100%,0);
    color: #b4b2b2;
}
.hs-menu-wrapper>ul {
    padding: 10px 0;
}
@import url('https://fonts.googleapis.com/css?family=Nunito:200,300,400,600,700');

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

@font-face {
    font-family: 'Calibri';
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-BoldItalic.eot');
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-BoldItalic.eot#iefix') format('embedded-opentype'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-BoldItalic.woff2') format('woff2'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-BoldItalic.woff') format('woff'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Calibri';
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Light.eot');
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Light.eot#iefix') format('embedded-opentype'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Light.woff2') format('woff2'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Light.woff') format('woff'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Italic.eot');
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Italic.eot#iefix') format('embedded-opentype'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Italic.woff2') format('woff2'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Italic.woff') format('woff'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Calibri';
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-LightItalic.eot');
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-LightItalic.eot#iefix') format('embedded-opentype'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-LightItalic.woff2') format('woff2'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-LightItalic.woff') format('woff'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Calibri';
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Bold.eot');
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Bold.eot#iefix') format('embedded-opentype'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Bold.woff2') format('woff2'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Bold.woff') format('woff'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri.eot');
    src: url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri.eot#iefix') format('embedded-opentype'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri.woff2') format('woff2'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri.woff') format('woff'),
        url('https://2870932.fs1.hubspotusercontent-na1.net/hubfs/2870932/IL%20-%20Pillar%20Page%20Sep%202018/fonts/Calibri.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}




/*****************************************/
/* Start your style declarations here    */
/*****************************************/

body.il-pillar-page {
	font-family: 'Nunito', Helvetica, Arial, sans-serif;
}

.il-pillar-page .page-center .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
	text-transform: none;
  letter-spacing: normal;
}

.il-pillar-page .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	padding: 0;
}

.il-pillar-page .mobile-trigger i, 
.il-pillar-page .mobile-trigger i:before, 
.il-pillar-page .mobile-trigger i:after {
	background: black;
}

.il-pillar-page.mobile-open .mobile-trigger {
	background-color: transparent;
}

a {
	color: #80c342;
}

body.il-pillar-page .wrapper {
	max-width: 776px !important;
  padding: 35px 0 !important;
}

body.il-pillar-page .wrapper .section {
	padding: 35px 20px;
  border: none;
  font-family: Calibri;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.78;
  letter-spacing: normal;
  color: #000000;
}

body.il-pillar-page .wrapper .section p {
	line-height: 1.78;
  margin: 0 0 15px 0;
}

body.il-pillar-page .wrapper .section a {
	color: #5b9cd4;
}

body.il-pillar-page .wrapper .section a:hover {
	text-decoration: none;
}

body.il-pillar-page .wrapper .section h2 {
	font-size: 44px;
  font-weight: 200;
  line-height: 1.23;
  letter-spacing: -0.4px;
  color: #000000;
  text-transform: none;
  margin-bottom: 25px;
  font-family: 'Nunito';
}

body.il-pillar-page .wrapper .section h2 .highlight {
	color: #80c342;
  font-weight: normal;
}

body.il-pillar-page .wrapper .section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

body.il-pillar-page .wrapper .section ul.two-col-list li {
  width: 49%;
  display: inline-block;
  vertical-align: top;
}

body.il-pillar-page .wrapper .section li {
  padding-left: 15px; 
  text-indent: 0;
  margin-bottom: 5px;
  font-weight: normal;
}

body.il-pillar-page .wrapper .section li::before {
  content: "•";
  color: #5b9cd4;
  padding-right: 15px;
}

body.il-pillar-page .wrapper .section .lp-callout {
	background: #80c342;
  color: white;
  display: inline-block;
  text-align: center;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.52;
  letter-spacing: normal;
  color: #ffffff;
  padding: 27px 42px;
}
body.il-pillar-page .body-container-wrapper {
  -webkit-transition: all .25s;
  -moz-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
  margin-top: -1px;
  padding-top: 74px;
}
body.il-pillar-page header .logo-container {
	display: none;
}


@media (max-width: 767px) {
  body.il-pillar-page .wrapper .section {
  	padding: 20px;
  }
  body.il-pillar-page .wrapper .section img {
    margin-top: 25px !important;
  }
  body.il-pillar-page .wrapper .section h2 {
  	font-size: 37px;
    line-height: 1.19;
  }
  body.il-pillar-page.sidebar .body-container-wrapper,
  body.il-pillar-page.sidebar header .logo-container {
    -webkit-transform: translateX(320px);
    -ms-transform: translateX(320px);
    transform: translateX(320px);
  }
  body.il-pillar-page .wrapper .section .lp-callout {
  	padding: 18px 20px;
    display: block;
  }
  body.il-pillar-page .body-container-wrapper {
  	padding-top: 55px;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  body.il-pillar-page .wrapper .section {
  	padding: 35px 40px;
  }
  body.il-pillar-page.sidebar .body-container-wrapper,
  body.il-pillar-page.sidebar header .logo-container {
    -webkit-transform: translateX(366px);
    -ms-transform: translateX(366px);
    transform: translateX(366px);
  }
  body.il-pillar-page .body-container-wrapper {
  	padding-top: 74px;
  }
}


/* FCC Pillar Page */

.fcc-headers {
  font-family: Nunito;
  font-size: 34px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.59;
  letter-spacing: -0.31px; 
  color: #404040;
}

.fcc-awards-desktop {
    text-align: center;
}

.fcc-awards-mobile {
    text-align: center;
}

@media (min-width: 321px) {
.span12.widget-span.widget-type-custom_widget.fcc-awards-mobile {
    display:none;
}
}

@media (max-width: 320px) {
.span12.widget-span.widget-type-custom_widget.fcc-awards-desktop {
    display:none;
}
}
@media (max-width: 767px) {
.fcc-headers {
  font-size: 24px;
  font-weight: 200;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.42;
  letter-spacing: -0.22px;
}
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* line 14, ../sass/1-tools/bootstrap/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}
/* line 19, ../sass/1-tools/bootstrap/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, ../sass/1-tools/bootstrap/bootstrap/_grid.scss */
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  /* line 10, ../sass/1-tools/bootstrap/bootstrap/_grid.scss */
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  /* line 10, ../sass/1-tools/bootstrap/bootstrap/_grid.scss */
  .container {
    width: 1170px;
  }
}

/* line 30, ../sass/1-tools/bootstrap/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
/* line 14, ../sass/1-tools/bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
/* line 19, ../sass/1-tools/bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 39, ../sass/1-tools/bootstrap/bootstrap/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
}
/* line 14, ../sass/1-tools/bootstrap/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}
/* line 19, ../sass/1-tools/bootstrap/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 11, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 27, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.33333%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.66667%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.33333%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.66667%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.33333%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.66667%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.33333%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.66667%;
}

/* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.33333%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.66667%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.33333%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.66667%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.33333%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.66667%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.33333%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.66667%;
}

/* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.33333%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.66667%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.33333%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.66667%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.33333%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.66667%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.33333%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.66667%;
}

/* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}

/* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 55, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 45, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 27, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 55, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 45, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  /* line 27, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.33333%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.66667%;
  }

  /* line 35, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 55, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }

  /* line 50, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 45, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }

  /* line 40, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, ../sass/1-tools/bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
body.il-pillar-page .body-container-wrapper {
    padding-top: 0;
    margin-top: 0;
}
a.fcc-btn-primary {
    display: inline-block;
    background-color: #8FBF56;
    color: #fff;
    padding: 15px 35px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}

.fcc-cta {
    margin-top: 20px;
}

a.fcc-btn-primary:hover {
    opacity: .8;
}

.text-section {
    position: relative;
    padding: 150px 20px;
}

.text-container {
    position: relative;
    max-width: 740px;
    margin: 0 auto;
}

h2.lp-heading {
    font-size: 61px;
    font-weight: 300;
    font-family: 'Nunito';
    line-height: 1.2;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.lp-heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 42%;
    width: 106px;
    height: 2px;
    background-color: #8FBF56;
}
img.lazy-bg {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.tcf-content.tcf-left {
    position: relative;
    overflow: hidden;
}

.tcf-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 50% 50%;
}

.tcf-content.tcf-right {
    position: relative;
    padding: 20px;
    padding-left: 90px;
    padding-top: 15%;
    min-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tcf-text {
    max-width: 455px;
}
.swap .tcf-content.tcf-left {
    order: 2;
}

.swap .tcf-content.tcf-right {
    padding: 20px 90px 20px 20px;
    justify-content: flex-end;
}
.tcf-text>h2 {
    font-size: 49px;
    font-family: Nunito;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 32px;
}

.tcf-text>p {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 15px;
}
section.tcf-section {
    margin-bottom: 10px;
}

.image-container {
    text-align: center;
}
.tcf-text>h3 {
    font-size: 49px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-family: 'Nunito';
    font-weight: 300;
    line-height: 1.3;
}

h3.lp-heading:after {
    left: 0;
}
.v2 .tcf-content.tcf-right {
    display: block;
}

.v2 .tcf-left .tcf-text {
    margin-left: auto;
}

.v2 .tcf-left {
    padding-right: 90px;
    padding-left: 90px;
}
.v2 .tcf-content.tcf-right {
    padding-right: 90px;
}
.v2 .tcf-content {
    padding-top: 15%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.v2 .tcf-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.v2 .tcf-text {
    position: relative;
    z-index: 2;
}

.v2 .tcf-wrapper {
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
    padding: 0 10px 10px 10px;
}
.v2 .tcf-content {
    min-height: 980px;
}
section.tcf-form-section {
    background-color: #475468;
    padding: 160px 40px;
}

.tcf-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tcf-form-content>div {
    max-width: 492px;
    margin-left: auto;
}

.tcf-form-content {
    padding-right: 100px;
}

.tcf-form-content h3 {
    font-size: 49px;
    line-height: 1.3;
    font-family:'Nunito';
    font-weight:300;
    margin-bottom: 30px;
}
.tcf-form>div {
    max-width: 720px;
}

.tcf-form {
    padding-left: 64px;
}
.tcf-form .hs-form input, .tcf-form .hs-form select,.tcf-form .hs-form textarea {
    background-color: transparent!important;
    border: 0;
    border-radius: 0;
    color: #E5E5E1;
    font-size: 16px;
    font-family: 'Nunito';
    font-weight: 100;
    padding: 12px 23px !important;
    border-bottom: 2px solid #e5e5e18f;
}

.tcf-form .hs-form input::placeholder,.tcf-form .hs-form textarea::placeholder {
    color: #E5E5E1!important;
}

.tcf-form .hs-form select {
    -webkit-appearance: none !important;
    background: none;
}

.tcf-form .hs-form input[type="submit"] {
    background-color: #8fbf56!important;
    border-radius: 100px!important;
    color: #fff!important;
    display: inline-block!important;
    font-size: 20px!important;
    font-weight: 600!important;
    padding: 15px 35px!important;
    transition: all .2s ease-in-out!important;
    width: auto!important;
    text-transform: unset!important;
    line-height: 1!important;
    border: 0;
}

.tcf-form .hs-form input[type="submit"]:hover {
    opacity: .8;
}

.tcf-form .hs-form input:focus,.tcf-form .hs-form input:focus-within {
    outline: none;
    border: 0;
    border-bottom: 2px solid #e5e5e18f;
}

.tcf-form .hs-error-msgs label {
    color: #e5e5e1;
    font-family: 'Nunito';
}

.tcf-form .hs-form textarea {
    height: 195px;
}
.tcf-form .hs-richtext.hs-main-font-element>p {
    font-family: Nunito;
    color: #E5E5E1;
    text-align: left;
    line-height: 1.3;
    font-weight: 100;
    padding: 0 10px;
    margin-bottom: 30px;
}
.hs-menu-wrapper.hs-menu-flow-horizontal>ul li a sup {
    top: -5px;
    right: 3px;
    font-size: 12px;
}
.tcf-form .hs-form select option {
    background-color: #475468;
    padding: 5px 0!important;
    border-color: #e5e5e18f;
}






/* RESPONSIVE */
@media (max-width: 1023px) {
.tcf-content.tcf-right {
    padding-left: 40px;
}
.swap .tcf-content.tcf-right {
    padding-right: 40px;
}
.v2 .tcf-content {
    padding: 50px 40px!important;
    min-height: auto;
}
}

@media (max-width: 1023px) {
.tcf-form-wrapper {
    display: block;
}

.tcf-form-content>div {
    max-width: 100%;
}

.tcf-form-content {
    padding-right: 0;
    margin-bottom: 50px;
}

.tcf-form>div {
    max-width: 100%;
}

.tcf-form {
    padding-left: 0;
}

section.tcf-form-section {
    padding: 120px 50px;
}
}

@media (max-width: 767px) {
.tcf-wrapper {
    display: block;
}

img.lazy-bg {
    position: relative;
    object-fit: unset;
}

.tcf-content.tcf-right {
    min-height: auto;
    padding: 50px 30px;
    display: block;
}

.tcf-text {
    max-width: 100%;
}

section.tcf-section {
    margin-bottom: 70px;
}

.swap .tcf-content.tcf-right {
    padding: 50px 30px;
}
h2.lp-heading {
    font-size: 50px;
}

.text-section {
    padding: 100px 20px;
}
.tcf-text>h3 {
    font-size: 38px;
}
.v2 .tcf-content.tcf-left {
    margin-bottom: 10px;
}
section.tcf-section.v2 {
    margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal>ul li a sup {
    display: inline!important;
}
}


@media (max-width: 480px) {
.tcf-text>h2 {
    font-size: 35px;
    margin-bottom: 20px;
}
h2.lp-heading {
    font-size: 38px;
    padding-bottom: 0;
    margin-bottom: 20px;
}
h2.lp-heading:after {
    display: none;
}
.text-section {
    padding: 50px 20px;
}
section.tcf-form-section {
    padding: 60px 40px;
}

.tcf-form-content h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.tcf-form .hs-form input[type=submit] {
    font-size: 15px!important;
    padding: 13px 25px!important;
    height: auto;
}
}
div#tour {
    margin-top: -60px;
}
body.il-pillar-page .wrapper .section li {
    font-weight: 300!important;
}
  img.fcc-image {
    margin-top: 30px;
    margin-bottom: 20px;
}
  body.il-pillar-page .wrapper .section h2 {
    font-size: 44px;
    font-weight: 200;
    line-height: 1.23;
    letter-spacing: -0.4px;
    color: #000;
    text-transform: none;
    font-family: 'Nunito';
    margin: 30px 0 30px 0;
}
.hs-error-msgs label {
    color: #fffefe;
    display: inline-block;
    padding: 0 0 10px 0;
    vertical-align: middle;
    margin-top: 5px;
}

        .hs-button-reset,
        .hs-form .hs-button {
  cursor: pointer!important;
    width: 258px!important;
    border-radius: 6px!important;
    background-color: #80c342!important;
    background: #80c342!important;
    color: white!important;
    text-decoration: none!important;
    font-family: 'Nunito'!important;
    font-size: 16px!important;
    font-weight: bold!important;
    font-style: normal!important;
    font-stretch: normal!important;
    line-height: normal!important;
    letter-spacing: 0.5px!important;
    text-align: center!important;
    color: #ffffff!important;
    text-transform: uppercase!important;
    padding: 12px 18px!important;
        }
  select {
    height: 50px!important;
    background-color: #FFF!important;
    padding: 0 20px!important;
}

  .hs-form input[type="text"]:focus,
.hs-form input[type="password"]:focus, 
.hs-form input[type="datetime"]:focus, 
.hs-form input[type="datetime-local"]:focus, 
.hs-form input[type="date"]:focus, 
.hs-form input[type="month"]:focus, 
.hs-form input[type="time"]:focus, 
.hs-form input[type="week"]:focus, 
.hs-form input[type="number"]:focus, 
.hs-form input[type="email"]:focus, 
.hs-form input[type="url"]:focus, 
.hs-form input[type="search"]:focus, 
.hs-form input[type="tel"]:focus, 
.hs-form input[type="color"]:focus,
.hs-form input[type="file"]:focus,
.hs-form textarea:focus,
.hs-form select:focus {
    padding-left: 20px!important;
}
  .hs-form input[type="text"],
.hs-form input[type="password"], 
.hs-form input[type="datetime"], 
.hs-form input[type="datetime-local"], 
.hs-form input[type="date"], 
.hs-form input[type="month"], 
.hs-form input[type="time"], 
.hs-form input[type="week"], 
.hs-form input[type="number"], 
.hs-form input[type="email"], 
.hs-form input[type="url"], 
.hs-form input[type="search"], 
.hs-form input[type="tel"], 
.hs-form input[type="color"],
.hs-form input[type="file"],
.hs-form textarea,
.hs-form select {
    padding-left: 20px!important;
}
    .hs-input:-moz-placeholder {
    color: #000!important;
    padding-left:0px!important;
}

.hs-input::-webkit-input-placeholder {
   color: #000!important;
   padding-left:0px!important;
}
@media (max-width: 767px){
.hs-form-field .hs-input {
width: 100%!important;
}
.hs-button-reset, .hs-form .hs-button {
    width: 100%!important;
	}
  body.il-pillar-page .wrapper .section {
    font-size: 16px;
     font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 2;
  letter-spacing: normal;
  }
  body.il-pillar-page .wrapper .section h2 {
  font-size: 24px;
  font-weight: 200;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.42;
  letter-spacing: -0.22px;
}
}
</style>
<style>
		body.home-2021 {
		   overflow-x: hidden;
			background: #fff;
		}
		@media (min-width: 0px) {
			.home-2021 .site-content {
				margin-top: 0px;
				overflow: hidden;
			}
		}

		.home-2021 .site-header .header-container .border:after {
			content: none;
		}

		.home-2021 .site-header .header-container .menu-container .main-navigation ul li a {
			color: #000;
			font-weight: 600;
		}

		.home-2021 #primary-menu li:last-child {
			float: right;
		}

		.home-2021 #intro_home {
			background-position: top center !important;
		}

		#intro_home_text {
			color: #fff;
			padding: 1em;
			position: absolute;
			top: 50%;
			-ms-transform: translateY(-50%);
			transform: translateY(-50%);
			margin: 0 auto;
			left: 0;
			right: 0;
		}

		#intro_home_text h1 {
			font-size: 45px;
			margin-bottom: .5em;
		}

		#intro_home_text a, a.btn.btn-main {
			color: #fff;
			background: #80C342;
			padding: 10px 30px;
			border-radius: 50px;
			font-weight: 600;
      
		}

		#intro_home_text a:hover, a.btn.btn-main:hover {
			background: #ade46b;
		}
    a.btn.btn-main {
    display:inline-block;
    }
		.image-text-wrap {
			position: relative;
			border: 3px solid #fff;
			transition: 1s;
		}

		.text-white {
			color: #fff;
			position: absolute;
			bottom: 1em;
			max-width: 400px;
			padding: 3em 1em 1em 1em;
			z-index: 2;
			transition: opacity .5s ease-in-out;
			overflow: hidden;
			transform: translateY(52%);
			transition: transform ease-out 0.5s;
			/* opacity: 0; */
		}

		.text-white h3 {
			position: relative;
			margin-bottom: 20px;
			font-size: 20px;
      font-weight: 200;
      font-family: 'Nunito';
		}

		.text-white h3:after {
			content: "";
			position: absolute;
			bottom: -4px;
			left: 0;
			height: 3px;
			background: #8fcd2a;
			width: 50px;
		}

		.text-white .siteorigin-widget-tinymce p {
			/*display: none;*/
			opacity: 0;
		}

		.text-white .siteorigin-widget-tinymce p:nth-child(2) {
			display: inline-block;
			color: #fff;
			font-size: 28px;
			line-height: 1.2;
			opacity: 1;
		}

		.text-blue {
			/*display: none;*/
			color: #fff;
			background: #475468;
			padding: 2em 2em 2em 18em;
			max-width: 800px;
			position: absolute;
			bottom: 1em;
			margin-left: 0em;
			transition: .5s;
			opacity: 0;
			animation: .5s;
		}

		.showing .text-blue {
			display: block;
			margin-left: 2em;
			opacity: 1;
		}

		.showing .text-white {
			background: #fff;
			color: #000;
			margin-bottom: 2em;
			opacity: 1;
			transform: translateY(0);
			pointer-events: none;
		}

		.showing .text-white p {
			display:block;
		}

		.showing .text-white .siteorigin-widget-tinymce p:nth-child(2) {
			color: #000;
			transform: translateY(0);
		}

		.showing .text-white .siteorigin-widget-tinymce p {
			opacity: 1;
		}

		.home-2021 h2 {
			font-size: 30px;
			position: relative;
			margin-bottom: 2em;
		}

		.home-2021 h2:after {
			content: "";
			position: absolute;
			bottom: -20px;
			left: 0;
			right: 0;
			height: 3px;
			background: #8fcd2a;
			width: 90px;
			margin: 0 auto;
		}

		.container-small {
			max-width: 800px;
			margin: 0 auto;
			padding: 1em;
		}

		.page-template-cota.home-2021 .animation-container {
			margin-top: 0;
			margin-bottom: 0;
		}

		.container {
			max-width: 100%;
		}

		.two-column-home .image-text-wrap>div {
			display: inline-block;
			max-width: 100%;
			border: 7px solid #fff;
			min-height: 70vh;
			vertical-align: top;
			border-bottom: 0;
		}

		.two-column-home .image-text-wrap>div:first-child {
			border-right: 5px solid #fff;
		}

		.two-column-home .image-text-wrap>div .container {
			display: inline-block;
			flex-wrap: nowrap;
		}

		.text-blue ul {
			margin-left: 0;
			padding-left: 0;
      margin-bottom: 30px;
		}

		.text-blue ul li {
			list-style: none;
			position: relative;
			padding-left: 30px;
			margin-bottom: 15px;
		}

		.text-blue ul li:before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 18px;
			height: 26px;
			background: url('https://info.ossia.com/hubfs/Assets%202023/Images/Features-Icon.png') no-repeat center;
		}

		.image-text-wrap {
				min-height: 90vh;
		}

		.latest-news-home {
			overflow: hidden;
		}

		@media (min-width: 768px) {
			.home-2021 #primary-menu {
			text-align: center;
			width: 90% !important;
			margin: 0 auto;
			}
		}
		@media (min-width: 1024px) {

			.home-2021 .site-header .container {
			width: 90%;
			}

			#intro_home_text h1 {
				font-size: 50px;
			}

			#intro_home_text p {
				font-size: 22px;
			}

			#intro_home_text a, a.btn.btn-main {
				font-size: 16px;
			}

			.home-2021 h2 {
				font-size: 40px;
			}

			.text-white h3 {
				font-size: 22px;
			}

			.text-white .siteorigin-widget-tinymce p:nth-child(2) {
				font-size: 40px;
				margin-bottom: .9em;
			}

			.text-white {
				max-width: 550px;
				padding: 3em 2em 2em 2em;
			}

			.text-blue {
				max-width: 950px;
				padding: 2em 2em 2em 31em;
			}

			.showing.image-text-wrap {
					min-height: 110vh;
			}
		}

		@media (min-width: 1600px) {

			#intro_home_text h1 {
				font-size: 76px;
			}

			#intro_home_text p {
				font-size: 39px;
			}

			#intro_home_text a, a.btn.btn-main {
				font-size: 20px;
			}

			.home-2021 h2 {
				font-size: 62px;
			}

			.home-2021 p {
				font-size: 20px;
			}

			.text-white h3 {
				font-size: 25px;
			}

			.text-white .siteorigin-widget-tinymce p:nth-child(2) {
				font-size: 39px;
				margin-bottom: .9em;
			}
		}

		@media (min-width: 1900px) {
			.text-white .siteorigin-widget-tinymce p:nth-child(2) {
				font-size: 49px;
			}
			.home-2021 #primary-menu {
				width: 83% !important;
			}
		}
		
		.home-2021 .cota-image {
			background-repeat: no-repeat;
			background-position: center bottom 71%;
			background-size: 258% !important;
		}

		.home-2021 .cota-image img {
			width: 64%;
		}

		@media (min-width: 768px) {
			.home-2021 .cota-image {
				background-position: center bottom 45%;
				background-size: 150% !important;
			}

			.home-2021 .cota-image img {
				width: auto;
			}
		}

		@media (min-width: 1025px) {
			.home-2021 .cota-image {
				background-position: center bottom 45%;
				background-size: 100% !important;
			}

			.home-2021 .cota-image img {
				width: auto;
			}
			
			.align-self-end {
				float: right;
				padding-left: 30px;
			}

			.home-2021 .cota-image {
				background-position: center bottom 11em;
			}

		}
		
		.mobile-toggle-container {
			margin-left: 1.5em;
			margin-top: .4em;
		}


		/*! Flickity v2.2.2
		https://flickity.metafizzy.co
		---------------------------------------------- */

		.flickity-enabled {
		  position: relative;
		}

		.flickity-enabled:focus { outline: none; }

		.flickity-viewport {
		  overflow: hidden;
		  position: relative;
		  height: 100%;
		}

		.flickity-slider {
		  position: absolute;
		  width: 100%;
		  height: 100%;
		}

		/* draggable */

		.flickity-enabled.is-draggable {
		  -webkit-tap-highlight-color: transparent;
		  -webkit-user-select: none;
			 -moz-user-select: none;
			  -ms-user-select: none;
				  user-select: none;
		}

		.flickity-enabled.is-draggable .flickity-viewport {
		  cursor: move;
		  cursor: -webkit-grab;
		  cursor: grab;
			overflow: visible;
		}

		.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
		  cursor: -webkit-grabbing;
		  cursor: grabbing;
		}

		/* ---- flickity-button ---- */

		.flickity-button {
		  position: absolute;
		  background: hsla(0, 0%, 100%, 0.75);
		  border: none;
		  color: #333;
		}

		.flickity-button:hover {
		  background: white;
		  cursor: pointer;
		}

		.flickity-button:focus {
		  outline: none;
		  box-shadow: 0 0 0 5px #19F;
		}

		.flickity-button:active {
		  opacity: 0.6;
		}

		.flickity-button:disabled {
		  opacity: 0.3;
		  cursor: auto;
		  /* prevent disabled button from capturing pointer up event. #716 */
		  pointer-events: none;
		}

		.flickity-button-icon {
		  fill: currentColor;
		}

		/* ---- previous/next buttons ---- */

		.flickity-prev-next-button {
		  top: 50%;
		  width: 44px;
		  height: 44px;
		  border-radius: 50%;
		  /* vertically center */
		  transform: translateY(-50%);
		}

		.flickity-prev-next-button.previous { left: 10px; }
		.flickity-prev-next-button.next { right: 10px; }
		/* right to left */
		.flickity-rtl .flickity-prev-next-button.previous {
		  left: auto;
		  right: 10px;
		}
		.flickity-rtl .flickity-prev-next-button.next {
		  right: auto;
		  left: 10px;
		}

		.flickity-prev-next-button .flickity-button-icon {
		  position: absolute;
		  left: 20%;
		  top: 20%;
		  width: 60%;
		  height: 60%;
		}

		/* ---- page dots ---- */

		.flickity-page-dots {
		  position: absolute;
		  width: 100%;
		  bottom: -25px;
		  padding: 0;
		  margin: 0;
		  list-style: none;
		  text-align: center;
		  line-height: 1;
		}

		.flickity-rtl .flickity-page-dots { direction: rtl; }

		.flickity-page-dots .dot {
		  display: inline-block;
		  width: 10px;
		  height: 10px;
		  margin: 0 8px;
		  background: #fff;
		  border-radius: 50%;
		  cursor: pointer;
		}

		.flickity-page-dots .dot.is-selected {
		  opacity: 1;
			background: #8fcd2a;
		}

			.latest-news-home {
			max-width: 1200px;
			margin: 0 auto;
		}


		.latest-news-home .col-md-4 {
			font-size: 20px;
			line-height: 1.2em;
			transition: .5s;
		}

		.latest-news-home .col-md-4>article {
			border-radius: 5px;
			background: #fff;
			box-shadow: 0px 0px 64px rgba(0, 0, 0, 0.5);
		}

		@media (max-width: 992px) {
			.latest-news-home .col-md-4 {
				width: 90%;
			}
		}

		@media (min-width: 992px) {
			.flickity-page-dots {
				display: none;
			}
		}

		.two-column-home .image-text-wrap>div {
			position: relative;
		}

		.two-column-home .text-white {
			transform: translateY(10%);
		}

		.latest-news-home .col-md-4:hover {
			margin-top: -1em;
			opacity: 1;
		}

		.latest-news-home .col-md-4 img {
			width: 100%;
			  border-top-left-radius: 5px;
			border-top-right-radius: 5px;
		}

		.latest-news-home .col-md-4 a {
			color: #333;
			font-size: 20px;
			line-height: 1.2em;
		}

		.latest-news-home .col-md-4 h3 {
			padding: 0 1em .5em;
		}

		.latest-news-home .hs-blog-image-block {
			margin: 0;
		}

		.latest-news-home h2 {
			color: #fff;
			text-align: center;
		}

		.latest-news-home p {
			margin: 0;
		}

		.latest-news-home .col-md-4:hover .post-content, .latest-news-home .col-md-4:hover .hs-read-more {
			display: inline-block;
			opacity: 1;
		}

		p:empty, .latest-news-home .col-md-4:hover p:empty { 
			display: none;
		}

		.latest-news-home .col-md-4 .hs-read-more {
			border: 1px solid #80C342;
			padding: 8px 18px 6px;
			margin-bottom: 1em;
			font-size: 14px;
			margin: 1.3em;
			border-radius: 20em;
			width: auto;
			text-align: center;
			color: #80C342;
				display: inline-block;
		}

		.latest-news-home .col-md-4 .hs-read-more:hover {
			background: #80C342;
			color: #fff;
		}

		.latest-news-home .post-content, .latest-news-home .hs-read-more {
				padding: 0 1.2em 1em;
				margin: 0;
				transition: .5s;
		}
		@media (min-width: 768px) {
			.latest-news-home .col-md-4 .hs-read-more {
				display: none;
			}
			.latest-news-home .col-md-4 {
				opacity: .5;
			}

			.latest-news-home .post-content, .latest-news-home .hs-read-more {
				display: none;
				opacity: 0;
			}

			.latest-news-home .col-md-4 h3 {
			min-height: 130px;
			}
		}

		.home-2021.page-template-cota .power-obstacle .target-img {
			background-image: url("https://www.ossia.com/wp-content/themes/ossia/img/animation-assets/man-overhead.png");
		}

		.home-2021.page-template-cota .animation-container {
		  background-image: url("https://www.ossia.com/wp-content/themes/ossia/img/animation-assets/path-to-power-plain-light.jpg");
		}

		.home-2021.page-template-cota .overlay {
			background: transparent;
		}

		.showing .features-close {
			display:inline-block;
			position: absolute;
			right: 1em;
			top: 1em;
			cursor: pointer;
			background: url("https://info.ossia.com/hubfs/Assets%202023/Images/features-close-1.png") no-repeat;
			width: 22px;
			height: 22px;
			  pointer-events: all;
		}

		.text-white .siteorigin-widget-tinymce p:nth-child(2) a {
			color: #fff;
			text-decoration: none;
		}

		.showing .text-white .siteorigin-widget-tinymce p:nth-child(2) a {
			color: #000;
			cursor: default;
		}

		.two-column-home .text-white {
			pointer-events: auto;
		}

		.scroll-down {
			position: absolute;
			bottom: 3em;
			left: 1em;
			right: 1em;
				cursor: pointer;
		}
		.home-2021 .hidden-xs #primary-menu>li:last-child a {
			background: #fff;
			color: #1A1919;
		}
		.home-2021  .solid  .hidden-xs #primary-menu>li:last-child a {
			background: #80C342;
			color: #fff !important;
		}
		.home-2021 .site-header .header-container .site-branding .ossia-logo path {
			fill: #000;
		}
		.home-2021 #pg-w60d0d039c1433-0> .panel-row-style {
			background-position: top center;
		}
		.hs-blog-image-block {
			max-height: 130px;;
		}
		@media (max-width: 700px) {
			.home-2021 .Cota-for-Smart-Buildings {
				background-image: url('https://www.ossia.com/wp-content/uploads/2021/06/Cota-for-Logistics-m.jpg') !important;
			}

			.home-2021 .Cota-for-Retail {
				background-image: url('https://www.ossia.com/wp-content/uploads/2021/06/Cota-for-Retail-m.jpg') !important;
			}

			.home-2021 .Cota-for-Logistics {
				background-image: url('https://www.ossia.com/wp-content/uploads/2021/06/Cota-for-Logistics-m.jpg') !important;
			}
			
			.home-2021 .Cota-for-Smart-Buildings {
				background-image: url('https://www.ossia.com/wp-content/uploads/2021/06/Cota-for-Smart-Buildings-m.jpg') !important;
			}

			#scroll-from-hero.text-center, .text-center-not-mobile {
				text-align: left;
			}

			.home-2021 #scroll-from-hero.text-center h2:after {
				margin: 0;
			}
			
			.hs-blog-image-block {
				max-height: initial;
			}
		}