/* 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;
}

.banner-area .dnd-section {
    padding: 0;
}
/*! 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: 768px) {
    .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));
    }
    
}

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

    
    .blog-content-wrapper .content-wrapper .row-fluid .span1 {
        width: calc(var(--column-width-multiplier) * 1% * 1 - -16.87% * (11 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span2 {
        width: calc(var(--column-width-multiplier) * 1% * 2 - -16.87% * (10 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span3 {
        width: calc(var(--column-width-multiplier) * 1% * 3 - -16.87% * (9 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span4 {
        width: calc(var(--column-width-multiplier) * 1% * 4 - -16.87% * (8 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span5 {
        width: calc(var(--column-width-multiplier) * 1% * 5 - -16.87% * (7 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span6 {
        width: calc(var(--column-width-multiplier) * 1% * 6 - -16.87% * (6 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span7 {
        width: calc(var(--column-width-multiplier) * 1% * 7 - -16.87% * (5 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span8 {
        width: calc(var(--column-width-multiplier) * 1% * 8 - -16.87% * (4 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span9 {
        width: calc(var(--column-width-multiplier) * 1% * 9 - -16.87% * (3 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span10 {
        width: calc(var(--column-width-multiplier) * 1% * 10 - -16.87% * (2 * var(--column-width-multiplier) / 100));
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span11 {
        width: calc(var(--column-width-multiplier) * 1% * 11 - -16.87% * (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.)
*/

@font-face {
    font-family: 'FranklinGothicATF';
    src: local('Franklin Gothic'),
        url('https://21061330.fs1.hubspotusercontent-na1.net/hubfs/21061330/monetize_360_theme2023/fonts/Franklin%20Gothic%20Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'FranklinGothicATF';
    src: local('Franklin Gothic'),
        url('https://21061330.fs1.hubspotusercontent-na1.net/hubfs/21061330/monetize_360_theme2023/fonts/Franklin%20Gothic%20Medium%20Regular%20%281%29.woff2') format('woff2');
    font-weight:500;
    font-style: normal;
}


@font-face {
    font-family: 'Arial MT';
    src: local('ArialMT'),
        url('https://21061330.fs1.hubspotusercontent-na1.net/hubfs/21061330/monetize_360_theme2023/fonts/Arial-BoldMT.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Arial MT';
    src: local('ArialMT'),
        url('https://21061330.fs1.hubspotusercontent-na1.net/hubfs/21061330/monetize_360_theme2023/fonts/arialmt%20%281%29.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face { font-family: eicons; src:  
    url("https://21061330.fs1.hubspotusercontent-na1.net/hubfs/21061330/monetize_360_theme2023/fonts/eicons%282%29.woff2") format("woff2");
}

@font-face { font-family: "Font Awesome 5 Free"; src:
    url("https://21061330.fs1.hubspotusercontent-na1.net/hubfs/21061330/monetize_360_theme2023/fonts/fa-solid-900%2816%29.woff2") format("woff2"); font-style: normal; font-weight: 900; font-display: block; }

body {
    line-height: 1.6em;
    overflow-wrap: break-word;
    overflow-x: hidden;
}

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

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Paragraphs */

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

/* Anchors */

a {
    cursor: pointer;
    text-decoration:none;
}

/* Headings */

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

/* 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,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-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: 20px;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* 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;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

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

.header__container {
    margin: 0 auto;
    align-items: center;
    max-width: 1630px;
    display:flex;
    justify-content:space-between;
    min-height:52px;
}

header.header.sticky {
    background-color: #232323!important;
    position: fixed;
}
header.header.sticky .custom-menu-primary .hs-menu-wrapper>ul>li>a {
/*     font-size: 16px; */
/*     font-weight: 700; */
}
header.header.sticky .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
/*     background-color: #FFF;
    color: #33373d; */
/*     font-weight: 700; */
}
header.header.sticky .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a:hover {
    background-color: none;
    color: #28AE60;
}

header.header {
    background-color: transparent!important;
    position: absolute;
    width: 100%;
    z-index: 1;
    padding: 32px 20px;
}

header.lp-header {
    position: fixed;
    width: 100%;
    z-index: 3;
}


.header-logo a {
    display: inline-block;
}
.header-logo a img{
    vertical-align: middle;
    display: inline-block;
}

.body-wrapper {
    background-color: #232323;
}

.custom-menu-primary .hs-menu-wrapper>ul{
    align-items: center;
}


.custom-menu-primary .hs-menu-wrapper>ul::after {
    content: " ";
    display: block;
    height: 0;
    font: 0/0 serif;
    clear: both;
    visibility: hidden;
    overflow: hidden;
}


.custom-menu-primary .hs-menu-wrapper>ul>li>a {
    font-size: 16px;
    color: #fff;
    font-family: "FranklinGothicATF", sans-serif;
    font-weight: 400;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    transition: .4s;
    position: relative;
    line-height:20px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li.active>a,
.custom-menu-primary .hs-menu-wrapper>ul>li:hover>a{
    color: #28AE60;
}

span.sub-arrow {
    line-height: 1;
    padding: 10px 0 10px 10px;
    margin-top: -10px;
    margin-bottom: -10px;
    display: flex;
    align-items: center;
}

.fa-caret-down:before {
    content: "\f0d7";
}

.fa, .fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa, .fab, .fad, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.custom-menu-primary .hs-menu-wrapper>ul>li:last-child>a {
    border: 2px solid #fff;
    border-radius: 40px;
    padding: 0 32px;
    margin-left: 12px;
    line-height: 20px;
    height: 55px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li{
    position:relative;
    line-height: normal;
    display: flex;
    height: 55px;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul{
    padding:0;
    list-style:none;
    margin:0;
    position:absolute;
    min-width: 10em;
    max-width: 1000px;
    left:0;
    top:100%;
    display:none;
    padding-top: 18px !important;
    /*     background: #232323; */
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 16px;
    background-color:#232323;
    padding-bottom: 16px;
    white-space: nowrap;
    text-shadow: none;
    border-left: 8px solid transparent;
    transition: .4s;
    line-height: 20px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    font-family: "FranklinGothicATF", Sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:hover>a{
    color: #28AE60;
    background-color: #FFFFFF;
}

.menu-mobile-toggle{
    display:none;
}

.toggle-button-wrap {
    margin-left: auto;
}

.menu-toggle__icon--close {
    display: none!important;
    color: #28AE60;
}

.open .menu-toggle__icon--close {
    display: inline-block!important;
    color: #fff;
}

.open span.menu-toggle__icon--open {
    display: none;
}

[class*=" eicon-"], [class^=eicon] {
    display: inline-block;
    font-family: eicons;
    font-size: inherit;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.eicon-close:before {
    content: "\e87f";
}

@media  (min-width: 981px){
    .custom-menu-primary .hs-menu-wrapper>ul>li:hover>ul{
        display:block;
    }
    .custom-menu-primary.mobile{
        display:none !important;
    }
}

@media (max-width: 1400px) and (min-width: 981px){
    .header__container {
        flex-direction: column;
    }
    .header-logo {
        margin-top: -12px;
        margin-bottom: 26px;
        width: 100% !important;
        text-align: center;
    }
    .footer-menu-wrap {
        width: 100% !important;
    }
    .custom-menu-primary .hs-menu-wrapper>ul {
        align-items: center;
        margin: 0px !important;
        width: 100%;
        justify-content: space-between !important;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>a{
        padding-right:0;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li:last-child>a {
        border: 0;
        padding: 0 0 0 32px;
        margin: 0;
        height:auto;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li {
        height: auto;
        /*         padding-bottom: 20px; */
    }
    header.header {
        padding-top: 22px;
    }
}

@media (max-width:980px){
    .custom-menu-primary.mobile{
        display:none;
    }
    header.header {
        background: #232323 !important;
        position: fixed;
    }
    .custom-menu-primary.desktop {
        display:none;
    }
    .menu-mobile-toggle{
        display: flex;
        margin-top:2.5px;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        margin-left: auto;
        font-size:30px;
        padding: 7.5px;
        cursor: pointer;
        border: 0 solid;
        border-radius: 3px;
        /*         background-color: rgba(0,0,0,.05); */
    }

    span.menu-toggle__icon--open svg {
        width: 30px;
        height: auto;
        fill: #fff;
    }

    span.menu-toggle__icon--open {
        line-height: 30px;
    }

    .toggle-button-wrap {
        display: inline-block;
    }

    .menu-mobile-toggle a img {
        vertical-align: middle;
    }

    .custom-menu-primary .hs-menu-wrapper>ul {
        display: block;
        /*         height: 61.2vh; */
        overflow-y: auto;
        position: relative;
    }

    .custom-menu-primary {
        background: #232323;
        width: 100%;
        position: fixed;
        top: 117px;
        left: 0px;
    }

    .custom-menu-primary .hs-menu-wrapper>ul>li {
        padding: 0;
        height:auto;
    }

    .custom-menu-primary .hs-menu-wrapper>ul>li>a {
        display: inline-block;
        font-family: "FranklinGothicATF", sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        padding: 16px 18px;
        line-height: 20px;
        display: flex;
        align-items: center;
        position: relative;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>a:focus {
        background-color: #fff;
        color: #28AE60;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li:last-child>a {
        padding: 16px 18px;
        border: 0;
        margin-left:0;
        height:auto;
    }

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

    .custom-menu-primary .hs-menu-wrapper>ul>li{
        display:block;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
        padding: 0;
        list-style: none;
        margin: 0;
        position: relative;
        background-color: #fff;
        min-width: auto;
        max-width: 100%;
        left: 0;
        top: 100%;
        display: none;
        padding-top:0 !important;
    }


}

@media (max-width: 1024px) and (min-width: 768px){
    .header-logo {
        width: 30%;
    }
    .footer-menu-wrap {
        width: 70%;
    }
}

@media (max-width: 767px){
    header.header {
        padding: 13px 12px;
    }
    .header {
        padding: 12px 12px 12px 12px;
    }
    .header-logo {
        width: 54.5%;
    }
    .footer-menu-wrap {
        width: 46%;
    }
    .custom-menu-primary {
        top: 79px;
        margin-top: -3px;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>a {
        font-size: 17px;
        padding: 14px 18px;
    }
    .menu-mobile-toggle{
        font-size:26px;
        padding: 7.5px 6.5px 9.5px;
    }

    span.menu-toggle__icon--open svg {
        width: 26px;
    }

    span.menu-toggle__icon--open {
        line-height: 26px;
    }
    .header-logo a img{
        /*         padding-bottom: 4px; */
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
        background: #232323;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a{
        font-size: 17px;
        padding-top: 14px;
        padding-bottom: 14px;
    }
    header.header.sticky .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
        background-color: #232321;
        color: #fff;
        font-weight: 400;
    }
    header.header.sticky .custom-menu-primary .hs-menu-wrapper>ul>li>a {
        font-size: 17px;
        font-weight: 400;
    }
    .open .menu-toggle__icon--close {
        color: #28AE60;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li:last-child>a{
        padding: 14px 18px;
    }
}

@media (max-width: 440px){
    .header-logo a img{
        padding-bottom: 4px;
    }
}
.footer-container {
    margin: 0 auto;
    max-width: 1640px;
    padding: 0;
    display:flex;
}

.footer-lp {
    padding: 67px 20px 57px;
    border-top: 10px solid #25AD5F;
    background: #0E0E0E 0% 0% no-repeat padding-box;
}

.footer-lp p{
    color: #808080!important;
}

.footer-lp .footer-social-share {
    width: 100%;
    padding-top: 0;
}

.footer-lp .footer-container {
    align-items: center;
}

.footer-lp .footer-copyright p{
    margin-bottom:0!important;
}

.footer{
    border-top: 0px solid #25AD5F;
    padding: 148px 0;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding: 80px 20px 90px 20px;
    background-image: url('//21061330.fs1.hubspotusercontent-na1.net/hubfs/21061330/raw_assets/public/monetize_360_theme2023/images/footer-bg.svg');
        }

.footer-copyright {
    height: 138px;
}

.footer-logo p.address {
    color: #fff;
    font-family: Arial MT,Sans-serif;
    font-size: 18px;
    margin-bottom: 0px;
    max-width: 252px;
    line-height: 32px;
    padding: 0;
    text-transform: uppercase;
    height: 64px;
}


.footer-copyright p {
    margin: 0;
    color: #808080!important;
    font-family: "Arial MT", Sans-serif;
    font-size: 16px;
    padding-bottom: 15px;
    line-height: 32px;
}

.footer-copyright p:last-child {
    padding-bottom: 0px;
    line-height: 24px;
}

.footer-logo img {
    margin-bottom: 26px;
}

.footer-social a img {
    vertical-align: middle;
    max-width: 47px !important;
    min-height: 47px !important;
    width: 100%;
}

.footer-social a svg {
    vertical-align: middle;
    max-width: 40px !important;
    min-height: 40px !important;
    width: 100%;
}

.footer-copyright p a,
.footer-copyright p:last-child{
    color: #25AD5F;
}

.footer-column {
    width: 57.528%;
}

.footer-menu{
    width: 17.512%;
}

.footer-social-share {
    text-align: end;
    width: 24.514%;
    padding-top: 79px;
}

.footer-copyright p:first-child {
    line-height: 32px;
    margin-bottom: 18px;
    padding: 0;
}

.footer-menu .hs-menu-wrapper>ul{
    display:block;
    padding: 74px 0px 0px 40px;
}

.footer-menu .hs-menu-wrapper>ul>li:first-child>a {
    text-transform: uppercase;
}


.footer-menu .hs-menu-wrapper>ul>li>a {
    color: #fff;
    font-family: ArialMT,Sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 13px 0;
    display: flex;
    line-height: 20px;
    align-items: center;
}

.footer-social {
    font-size: 0;
}

.footer-menu .hs-menu-wrapper>ul>li:first-child>a{
    padding:0;
    margin-bottom:12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}

.footer-social a {
    display: inline-block;
    margin-right: 14px;
}

.footer-social a:last-child {
    margin-right: 0;
}

.footer-email{
    margin-top:16px;
}

.footer-email a {
    /*     border: 2px solid #25ad5f;
    border-radius: 30px;
    color: #25ad5f;
    display: inline-block;
    font-family: FranklinGothicATF,Sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding: 13px 30px;
    text-align: center;
    white-space: nowrap;
    min-width: 229px; */
}

.footer-email a img {
    vertical-align: middle;
    margin-right: 0px;
    max-width: 192px !important;
    width: 100% !important;
    min-height: 50.3px;
}
.footer-email a:hover{
    font-family: "FranklinGothicATF", Sans-serif;
    color:#25ad5f;
    font-weight: 700;
}
.footer-logo img{
    max-width:100%;
}
.footer-logo img{
    margin-bottom: 26px;
    max-width: 301px !important;
    width: 100% !important;
    min-height: 42.05px !important;
}
.footer-copyright p img {
    width: 75px;
    height: 75px;
    margin-right: 31px;
}


@media (max-width: 1400px) and (min-width: 981px){
    .footer-social-share {
        padding-top: 78px;
    }
}

@media (max-width:980px){
    .footer {
        background-position: bottom right;
        background-size: contain;
        padding: 60px 20px;
        background-color: #0D0D0D;
    }
    .footer-column.right {
        flex-wrap:wrap;
    }
    .footer-column,.footer-menu{
        width:50%;
    }
    .footer-social-share {
        width: 100%;
        padding-top: 22px;
        text-align: center;
    }
    .footer-social a img {
        width: 32px;
    }
    .footer-menu .hs-menu-wrapper>ul {
        display: block;
        padding: 74px 0px 0px 120px;
    }
    .footer-email a {
        font-size: 16px;
        min-width: auto;
        padding: 9.2px 31px;
    }
    .footer-email a img {
        width: 152px;
    }
    .footer-container {
        flex-wrap: wrap;
    }
    .footer-menu .hs-menu-wrapper>ul>li>a{
        font-size: 20px;
    }
    .footer-social a svg {
        max-width: 32px !important;
        min-height: 32px !important;
        width: 100%;
    }
    .footer-email a img {
        margin-right: 0px;
        max-width: 180.2px !important;
        width: 100% !important;
        min-height: 48px;
    }
    .footer-email {
        margin-top: 12px;
    }
}

@media (max-width:767px){
    .footer-logo p.address {
        height: auto;
    }
    .footer-logo img {
        max-width: 100%;
        width: 200px !important;
        margin-bottom: 19px;
    }
    .footer-column, .footer-menu, .footer-social-share {
        width: 100%;
    }
    .footer-menu .hs-menu-wrapper>ul>li:first-child>a {
        font-size: 22px;
    }
    .footer-logo,
    .footer-copyright{
        text-align: center;
    }
    .footer-logo p.address {
        font-size: 18px;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .footer-copyright p:first-child{
        font-size: 18px;
        line-height: 22px;
    }
    .footer-copyright p:last-child{
        font-size: 18px;
    }
    .footer-menu .hs-menu-wrapper>ul {
        padding: 10px 0px 0px 0px;
    }
    .footer-menu .hs-menu-wrapper>ul>li>a {
        justify-content: center;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 18px;
    }
    .footer-social a img {
        width: 36px;
    }
    .footer-social-share {
        padding-top: 34px;
    }
    .footer-social a svg {
        max-width: 36px !important;
        min-height: 36px !important;
        width: 100%;
    }
    .footer-copyright {
        height: 180px;
    }
    .footer-email a img {
        margin-right: 0px;
        max-width: 152.2px !important;
        width: 100% !important;
        min-height: 40px;
    }
    .footer-email {
        margin-top: 14px;
    }
    .footer-copyright p img {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }
    .footer-copyright p img:last-child {
        margin-right: 0px;
    }
    .footer-copyright p:nth-child(2){
        display: flex;
        justify-content: center;
        padding-bottom: 25.5px;
    }
}

@media (max-width:440px){
    .footer-copyright {
        height: 223px;
    }
    .footer-email a img {
        margin-right: 0px;
        max-width: 152px !important;
        width: 100% !important;
        min-height: 40px;
    }
    .footer-logo img {
        margin-bottom: 18px;
    }
    .footer-copyright p:first-child {
        margin-bottom: 18px;
    }
    .footer-copyright p:nth-child(2) {
        padding-bottom: 26.5px;
    }
    .footer-menu .hs-menu-wrapper>ul {
        padding: 11px 0px 0px 0px;
    }
}
/* 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%;
}
.hs-blog-post .blog-bgcontainer {
    padding-top: 100px;
}

.hs-blog-listing .dnd-section .dnd-column {
    padding: 0;
}

.hs-blog-listing #main-content,
.hs-blog-post #main-content{
    padding: 0!important;
}

/* .body-wrapper.hs-blog-listing,
.body-wrapper.hs-blog-post{
background-size: cover;
background-repeat: no-repeat;
background-position: 58% 100%;
background-image:url('//21061330.fs1.hubspotusercontent-na1.net/hubfs/21061330/raw_assets/public/monetize_360_theme2023/images/Artboard%201%20%E2%80%93%202.png');
} */

.blog-content-wrapper .content-wrapper{
    max-width: 1333px!important;
    padding:0 15px;
    padding-top: 68px;
}

.blog-index__post-image img {
    height: 350px;
    object-fit: cover;
}

.blog-post-featured-img img {
    width: 100%;
}

/* .blog-bgcontainer{
position:relative;
} */

.hs-blog-listing #main-content, .hs-blog-post #main-content{
    background-position: 46% 20%;
    background-repeat: no-repeat;
    background-size: 94% auto;
    background-image:url('//21061330.fs1.hubspotusercontent-na1.net/hubfs/21061330/raw_assets/public/monetize_360_theme2023/images/Artboard%201%203.png');   
        }

.hs-blog-listing .blog-tag-filter,
.hs-blog-post .blog-tag-filter{
    margin-top: -17%;
}

.blog-index {
    display: flex;
    flex-wrap: wrap;
    min-width: 100%;
    margin-right: -47px;
    /*     column-gap:40px;
    row-gap:50px; */
}

.blog-index-post{
    padding: 0;
    width: calc(49.8% - 40px);
    margin-bottom: 50px;
    margin-right: 40px;
    background: #F2F2F2 0% 0% no-repeat padding-box;
    box-shadow: 4px 11px 12px #231F2059;
    border-radius: 35px;
    display: flex;
    align-items: stretch;
}

.blog-index__post-inner-card {
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    position: relative;
}

.blog-index__post-image img{
    width:100%;
    vertical-align: middle;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
}


.blog-index__post-content h2 a {
    color: #333333;
    text-decoration: none;
    font-weight:700;
}

.blog-index__post-content h2{
    color: #333333;
    min-height: 93.19px;
    font-size: 22px;
    font-family: ArialMT,Sans-serif;
    word-wrap: initial;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-index__post-content{
    display: flex;
    font-family: ArialMT,Sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 31px 31px;
    flex-direction: column;
    flex: 1 1 auto;
}

.blog-index__post-content p{
    font-family: ArialMT,Sans-serif;
    font-size: 18px;
    font-weight: 400;
}



.post_date {
    color: #808080;
    font-size: 14px;
    margin-bottom: 15px;
}

/* .blog-index-post{
display:none;
} */

.blog-post__read-more a {
    font-weight: 700;
    color: #25AD5F;
    font-family: "FranklinGothicATF", Sans-serif;
    font-size: 18px;
}

.blog-post__read-more a:hover{
    color: #25AD5F;
}

.blog-post__read-more{
    text-align:right;
}

.blog-post__read-more a img{
    margin-left:9px;
    vertical-align: middle;
}

.blog-sidebar.span3 {
    padding-left: 40px;
}

.podcast-column-content {
    text-align: center;
}

.blog-post__meta-section {
    align-self: flex-start;
    text-align: right;
    width: 100%;
    margin-top: auto;
    display: inline-block;
}

.blog-post__timestamp span {
    padding: 0 4px;
    display: inline-block;
    vertical-align: middle;
}


@media (max-width:1267px){
    .blog-index {
        column-gap: 20px;
    }
}

@media (max-width: 992px) {
    .blog-content-wrapper .content-wrapper .row-fluid{
        flex-wrap: wrap;
        justify-content: space-between;
    }

    
    .blog-content-wrapper .content-wrapper .row-fluid .span1 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span2 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span3 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span4 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span5 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span6 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span7 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span8 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span9 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span10 {
        width: 100%;
    }
    
    .blog-content-wrapper .content-wrapper .row-fluid .span11 {
        width: 100%;
    }
    
    .blog-index-post {
        width: 100%;
    }
    .blog-index {
        margin-right: 0;
    }
}

@media (max-width:1024px){
    .blog-tag-filter {
        padding-top: 68px;
    }
}

@media (max-width:900px){
    .blog-filter-inner {
        padding: 60px 15px 0;
    }
}

@media (max-width:992px){
    .blog-sidebar.span3 {
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width:992px){
    .hs-blog-post .blog-bgcontainer {
        padding-top: 60px;
    }
}

@media (max-width:767px){
    .blog-index__post-content{
        height:auto;
    }
    .blog-sidebar.span3 {
        padding-left: 0;       
        padding-top: 40px;
    }
    .blog-index__post-content {
        display: block;
    }
    .blog-index-post {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .blog-content-wrapper .content-wrapper{
        padding: 68px 20px 0;
    }
    .blog-index {
        justify-content: center;
        align-items: center;
        justify-items: center;
    }
}



/* blog post */

.blog-post-wrap {
    background: #F2F2F2 0% 0% no-repeat padding-box;
    border-radius: 35px;
    padding: 42px 47px;
}

.blog-post__timestamp {
    font-weight: 400;
    color: #808080;
    font-size: 14px;
    font-family: ArialMT,Sans-serif;
    margin-bottom: 10px;
}

.blog-post_author a{
    font-weight: 400;
    color: #808080;
    font-size: 14px;
    font-family: ArialMT,Sans-serif;
}

.blog-post_author a img{
    vertical-align:middle;   
}

.blog-post-wrap h3{
    font-weight: 700;
    color: #333333;
    font-size: 26px;
    font-family: ArialMT,Sans-serif;
    margin-bottom: 10px;
}

.blog-post_author {
    margin-bottom: 10px;
}

.blog-post__body p{
    color: #808080;
    font-family: ArialMT,Sans-serif;
    font-size: 20px;
    font-weight: 400;
}
.blog-post-social-share {
    border-top: 1px solid #808080;
    border-bottom: 1px solid #808080;
    padding: 32px 0;
    font-size:0;
}



.blog-post-social-share #hs_cos_wrapper_my_social_sharing{
    display:block;
    height:100%;
}

.blog-post__body a {
    color: #25AD5F;
}

.blog-post-social-share a {
    display: inline-block;
    margin-right: 36px;
}

.blog-post-social-share a img {
    vertical-align: middle;
}

.hs-blog-post .bottom-contact-column {
    margin-top: 20px;
}

p.post-coment {
    margin-top: 1.4rem;
}

.back-to-blog{
    text-align:right;
}

.back-to-blog a {
    color: #25AD5F;
    font-weight: 700;
    font-size: 18px;
    font-family: "FranklinGothicATF", Sans-serif,serif;
}

.back-to-blog a:hover {
    color: #25AD5F;
}

p.description {
    min-height: 72px;
    line-height: 24px;
}

#copyLink
position:relative;
}

@media (max-width:992px){
    .blog-post-featured-img img {
        width: 100%;
    }
}

@media (max-width:767px){
    .blog-post-wrap {
        border-radius: 0;
        padding: 37px 20px;
    }
}

@media (max-width:479px){
    .back-to-blog a {
        font-size: 15px;
    }
    .hs-blog-post .blog-bgcontainer {
        padding-top: 40px;
    }
}

/* 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;
  }
}