/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
.body-container-wrapper ul,.body-container-wrapper ol{
      -webkit-font-smoothing: subpixel-antialiased;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! 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;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * 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
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* 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 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: hidden;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

dnd-section {
  padding: 80px 20px;
}
.banner-section .dnd-section,
.banner-section .dnd-section>.row-fluid{
  padding: 0;
  width:100%;
  max-width:100%;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.dnd-section > .row-fluid,
.content-wrapper,
.footer__container,
.header__container {
  width:95%;
}

@media(min-width:1000px){
  .dnd-section > .row-fluid,
  .content-wrapper{
    width: 95%;
    margin: 0 auto;
    padding: 0 90px;;
    position: relative;
  }
  
  .banner-area {
    margin-top:68px;
  }
}
@media only screen and (min-width: 690px) and (max-width: 1000px){
  .dnd-section > .row-fluid,
  .content-wrapper {
    max-width: 600px !important;
    margin: 0 auto;
    position: relative;
  }
}
@media only screen and (max-width: 690px){
  .dnd-section > .row-fluid,
  .content-wrapper{
    max-width: 320px!important;
    margin: 0 auto;
    position: relative;
  }
}
@media only screen and (min-width: 480px) and (max-width: 690px){
  .dnd-section > .row-fluid,
  .content-wrapper{
    max-width: 420px!important;
    margin: 0 auto;
    position: relative;  
  }
}


@media only screen and (max-width: 321px){
  .dnd-section > .row-fluid,
  .content-wrapper{
    max-width: 300px!important;
    margin: 0 auto;
    position: relative;
  }
}
@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */
@font-face { font-family: "FontAwesome"; 
  src: url("https://19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/Probar-Happydonia_June2021/fonts/fontawesome-webfont.eot") format("embedded-opentype"),
    url(//19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/raw_assets/public/Probar_Happydonia_June2021/fonts/fontawesome-webfont.woff2) format("woff2"),
    url(//19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/raw_assets/public/Probar_Happydonia_June2021/fonts/fontawesome-webfont.woff) format("woff"),
    url(//19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/raw_assets/public/Probar_Happydonia_June2021/fonts/fontawesome-webfont.ttf) format("truetype"),
    url(//19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/raw_assets/public/Probar_Happydonia_June2021/fonts/fontawesome-webfont.svg) format("svg"); 
  font-style: normal;
  font-weight: normal;
}

@font-face { 
  font-family: "icomoon"; 
  src: url("https://19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/Probar-Happydonia_June2021/fonts/icomoon-1.eot") format("embedded-opentype"), 
    url("//19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/raw_assets/public/Probar_Happydonia_June2021/fonts/icomoon-1.woff") format("woff"), 
      url("//19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/raw_assets/public/Probar_Happydonia_June2021/fonts/icomoon-1.ttf") format("truetype"), 
        url("//19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/raw_assets/public/Probar_Happydonia_June2021/fonts/icomoon-1.svg") format("svg"); 
          font-style: normal; 
          font-weight: 400; 
          }



html {
}

body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #494a52;
  line-height:1.44444444444;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Lato, serif;
  -webkit-font-smoothing: subpixel-antialiased;

}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.04918032787;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.10416666667;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height:1.14285714286;
}

h5 {
  font-size: 1rem;
  line-height:1.44444444444;
}

h6 {
  font-size: .9rem;
  line-height:1.44444444444;
}

strong {
  font-weight: 700;
}

.bold, strong, b {
  font-family: Fira Sans;
  font-weight: 600;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}


ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}



.disable-focus-styles :focus {
  outline: none;
}

@media only screen and (max-width: 1300px) and (min-width: 1000px){
  body {
    font-size: 18px;
    line-height: 1.45;
  }
}
@media only screen and (max-width: 690px){
  body {
    font-size: 16px !important;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 100%;
  font-family: Lato, sans-serif;
}

.hs-button {
  margin:15px 0;
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: center;
  transition: all .15s linear;
  background-color: #494a52;
  border-color: #494a52;
  color: #fff;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  padding: 15px 53px;
  text-decoration: none !important;
  font-size: 18px;
  line-height: 18px;
  font-family: Fira Sans Condensed;
  font-weight: 700;
  white-space: pre-wrap;
}

.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}


.hs-form label {
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  font-weight: 500;
  text-align: left;
  line-height: 20px;
  padding-top: 0;
  margin-bottom: 4px;
  font-family: Fira Sans Condensed;
  font-size: 11px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: #f2545b;
}
h3.form-title {
  font-family: Fira Sans;
  text-transform: initial;
  letter-spacing: 0;
  font-size: 40px;
  line-height: 42px;
  font-weight: 300;
  margin:0 0 20px;
}
#hs-pwd-widget-password,
.hs-input {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
  background-color: #fff;
  border: 2px solid #d1d6dc;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 0 15px;
  min-height: 40px;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  display: inline-block;
  min-height: auto;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #c87872;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 18px;
  font-size: 11px;
  color: #333333;
}

.grecaptcha-badge {
  margin:8px ;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
header.header a,
header.header a:hover {
  text-decoration: none;
} 
header.header ul{
  margin:0;
  padding:0;
  list-style:none;
}

header.header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  padding: 28px 0 0;
  z-index: 9999;
  padding-top: 1px;
}
.inner_header{
  position: relative;
  z-index: 9998;
  width: 100%;
  padding: .5rem 0;
}

.header__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 90px;
}

.header_row {
  padding-right: 4%;
  padding-left: 4%;
  position: relative;
}

.header__logo {
  position: relative;
  display: block;
  float: left;
  width: auto;
}
.header__logo a {
  width: auto;
  max-width: none;
  display: block;
  line-height: 22px;
  font-size: 22px;
  letter-spacing: -1.5px;
  color: #444;
  font-family: 'Open Sans';
  font-weight: 600;
}
.header__logo a img {
  text-indent: -9999px;
  max-width: none;
  width: auto !important;
  margin-bottom: 0;
  display: block;
  transition: opacity .4s ease;
  height:50px;
}
.custom-menu-primary {
  float: right;
  width: auto;
}
.custom-menu-primary .navigation-primary>ul {
  z-index: 10;
  float: right;
  overflow: visible;
  transition: padding .8s ease,margin .25s ease;
  min-height: 1px;
}

.custom-menu-primary .navigation-primary>ul>li {
  font-size: 12px;
  position: relative;
  float: left;
}

.custom-menu-primary .navigation-primary>ul>li>a {
  font-family: Fira Sans;
  text-transform: initial;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  margin-right: 9px;
  margin-left: 9px;
  padding-bottom: 15px;
  padding-top: 14px;
  display: block;
  position: relative;
}

.custom-menu-primary .navigation-primary>ul>li>a:after,
.custom-menu-primary ul ul li a:after{
  -ms-transition: -webkit-transform .3s ease-out,border-color .3s ease-out;
  -webkit-transition: -webkit-transform .3s ease-out,border-color .3s ease-out;
  transition: transform .3s ease-out,border-color .3s ease-out;
  position: absolute;
  display: block;
  bottom: -6px;
  left: 0;
  width: 100%;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  border-top: 2px solid #000;
  content: '';
  padding-bottom: inherit;
}
.custom-menu-primary .navigation-primary>ul>li:hover>a:after,
.custom-menu-primary ul ul li a:hover:after{
  backface-visibility: hidden;
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  border-color:#d62598;
}
.custom-menu-primary ul ul {
  position: absolute;
  top: auto;
  width: auto;
  left: 0;
  right: 0;
  box-shadow: 0px 5px 5px #ccc;
  visibility: hidden;
  opacity: 0;
  padding:10px;
}
.custom-menu-primary .navigation-primary>ul>li:hover ul {
  visibility: visible;
  opacity: 1;
}
.custom-menu-primary .navigation-primary>ul>li:nth-child(7)>a:after{
  display: none;
}
.custom-menu-primary .navigation-primary>ul>li:nth-child(7)>a {
  padding-bottom: 15px;
  padding-top: 14px;
  opacity: 1!important;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 9px;
  margin-left: 9px; 
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
  font-family: Fira Sans;
  text-transform: initial;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  display: block;
  position: relative;
}
.custom-menu-primary .navigation-primary>ul>li:last-child>a {
  margin-right: 0;
}
.custom-menu-primary .navigation-primary>ul>li:hover:nth-child(7)>a:before{
  opacity: .85;
}
.custom-menu-primary .navigation-primary>ul>li:nth-child(7)>a:before {
  transition: opacity .45s cubic-bezier(.25,1,.33,1),
    transform .45s cubic-bezier(.25,1,.33,1),border-color .45s cubic-bezier(.25,1,.33,1),
    color .45s cubic-bezier(.25,1,.33,1),
    background-color .45s cubic-bezier(.25,1,.33,1),
    box-shadow .45s cubic-bezier(.25,1,.33,1);
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  height: 37px;
  display: block;
  position: absolute;
  left: 0;
  padding-bottom: 10px;
  transform: translateY(-7px);
  -webkit-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  width: 100%;
  content: ' ';
  z-index: -1;
  bottom: 0;
  top: 14px;
}
.custom-menu-primary ul ul li {
  font-size: 12px;
  position: relative;
}

.custom-menu-primary ul ul li a {
  font-family: Fira Sans;
  text-transform: initial;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  margin-bottom: 5px;
  padding: 5px 0;
  display: block;
}
.mobile_menu {
  display: none;
}

@media (min-width: 690px) {
  .header__logo {
    margin-right: 2%;
  }

}
@media (max-width: 1349px) {
  .custom-menu-primary .navigation-primary>ul>li:first-child>a{
    margin-left: 9px;
  }
  .custom-menu-primary .navigation-primary>ul>li>a,
  .custom-menu-primary .navigation-primary>ul>li:nth-child(7)>a{
    margin-right: 5px;
    margin-left: 5px;
  }

}

@media only screen and (min-width: 1001px) and (max-width: 1280px){

  .slide-out-widget-area-toggle {
    display: block!important;
    padding-top: 15px;
    transition: padding .2s ease;
    position: absolute;
    top: 0;
    float: right;
    margin: 0!important;
    z-index: 10000;
    right: 0;
  }
  a#toggle-nav {
    position: relative;
    right: 0;
  }
  .slide-out-widget-area-toggle a>span {
    transform-origin: center;
    display: block;
    height: 20px;
    transition: -webkit-transform .33s 0s ease;
    transition: transform .33s 0s ease;
  }
  .lines-button {
    transition: .3s;
    cursor: pointer;
    line-height: 0!important;
    top: 10px;
    position: relative;
    font-size: 0px!important;
    user-select: none;
    display: block;
  }
  .slide-out-widget-area-toggle a>span i {
    width: 18px;
    background-color: transparent!important;
    transition: color .3s ease;
    -webkit-transition: color .3s ease;
    color: #666;
  }
  i.lines {
    font-size: 16px;
    line-height: 34px;
    display: block;
    position: relative;
  }

  i.lines:before{
    background-color: #666 !important;
    transition: -webkit-transform .45s ease,background-color .2s ease,opacity .2s ease;
    transition: transform .45s ease,background-color .2s ease,opacity .2s ease;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    height: 2px!important;
    width: 22px!important;
    top: 6px;
    background: #ecf0f1;
    position: absolute;
    left: 0;
    content: '';
    display: block;
  }
  i.lines:after {
    height: 2px!important;
    width: 22px!important;
    top: -6px;
    position: absolute;
    left: 0;
    content: '';
    display: block;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: -webkit-transform .45s ease,background-color .2s ease,opacity .2s ease;
    transition: transform .45s ease,background-color .2s ease,opacity .2s ease;
    background-color: #666!important;
  }
  i.lines-button:after {
    height: 2px!important;
    width: 22px!important;
    display: inline-block;
    -webkit-transition: -webkit-transform .45s ease,opacity .2s ease,background-color .2s ease;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    transform: scale(1,1);
    -webkit-transform: scale(1,1);
    background-color: #666!important;
  }
  .custom-menu-primary .navigation-primary>ul {
    display: none;
  }

  .mobile_menu{
    z-index: 1000;
    background-color: #d62598;
    position: relative;
    width: 100%;
    left: 0;
    top: 58px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
  }
  .mobile_menu ul li {
    line-height: 1.5em;
    font-weight: 400;
    padding: .15em 0;
  }

  .mobile_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
    margin-top: 20px;
  }

  .mobile_menu ul li:first-child {
    padding-top: 10px;
  }
  .container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 90px;
    position: relative;
  }
  .mobile_menu ul li {
    line-height: 1.5em;
    font-weight: 400;
    padding: .15em 0;
  }





  .mobile_menu ul li a:hover {
    text-decoration: none;
  }
  .mobile_menu ul li a {
    font-size: 18px;
    padding: 5px 0 !important;
    font-weight: 400;
    color: #fff;
    display: block;
    position: relative;
  }
  .mobile_menu ul ul {
    padding-left: 15px;
  }
  .menu_open i.lines-button {
    -webkit-transform: scale3d(.8,.8,.8);
    transform: scale3d(.8,.8,.8);
  }
  .menu_open i.lines:before {
    -webkit-transform: translateY(-6px) rotateZ( 
      -45deg
    );
    -ms-transform: translateY(-6px) rotateZ(-45deg);
    transform: translateY(-6px) rotateZ( 
      -45deg
    );
  }
  .menu_open i.lines:after {
    -webkit-transform: translateY(6px) rotateZ( 
      45deg
    );
    -ms-transform: translateY(6px) rotateZ(45deg);
    transform: translateY(6px) rotateZ( 
      45deg
    );
  }
  .menu_open i.lines-button:after {
    transform: scale(0,1);
    -webkit-transform: scale(0,1);
  }
  .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: 40px !important;
    padding: 0 !important;
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color: #fff; /* 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);
  }
}  
@media only screen and (min-width: 1px) and (max-width: 1000px) {

  .header.lp {
    min-height: 104px;
  }

  header.header {
    position: relative!important;
    padding-top: 12px!important;
    margin-bottom: 0;
  }
  .inner_header {
    height: auto;
  }
  .header__logo {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 85%!important;
  }
  .header__logo a {
    margin-top: 7px!important;
  }
  .header__logo a img {
    height: 24px!important;
    margin-top: -3px!important;
    top: 3px;
    position: relative;
    height: 50px!important;
  }

}
@media only screen and (min-width: 690px) and (max-width: 1000px){

  .header__container {
    max-width: 600px !important;
    padding: 0;
  }
  .container{
    max-width: 600px !important;
    padding: 0;
    margin: 0 auto;
    position: relative;
  }
  .header__logo {
    margin-bottom: 25px;
    margin-left: 0;
  }
  .slide-out-widget-area-toggle {
    display: block !important;
    padding-top: 15px;
    transition: padding .2s ease;
    position: absolute;
    top: 8px;
    float: right;
    margin: 0 !important;
    z-index: 10000;
    right: 4px;
  }
  a#toggle-nav {
    position: relative;
    right: 0;
  }
  .slide-out-widget-area-toggle a>span {
    transform-origin: center;
    display: block;
    height: 20px;
    transition: -webkit-transform .33s 0s ease;
    transition: transform .33s 0s ease;
  }
  .lines-button {
    transition: .3s;
    cursor: pointer;
    line-height: 0!important;
    top: 10px;
    position: relative;
    font-size: 0px!important;
    user-select: none;
    display: block;
  }
  .slide-out-widget-area-toggle a>span i {
    width: 18px;
    background-color: transparent!important;
    transition: color .3s ease;
    -webkit-transition: color .3s ease;
    color: #666;
  }
  i.lines {
    font-size: 16px;
    line-height: 34px;
    display: block;
    position: relative;
  }

  i.lines:before{
    background-color: #666!important;
    transition: -webkit-transform .45s ease,background-color .2s ease,opacity .2s ease;
    transition: transform .45s ease,background-color .2s ease,opacity .2s ease;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    height: 2px!important;
    width: 22px!important;
    top: 6px;
    background: #ecf0f1;
    position: absolute;
    left: 0;
    content: '';
    display: block;
  }
  i.lines:after {
    height: 2px!important;
    width: 22px!important;
    top: -6px;
    position: absolute;
    left: 0;
    content: '';
    display: block;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: -webkit-transform .45s ease,background-color .2s ease,opacity .2s ease;
    transition: transform .45s ease,background-color .2s ease,opacity .2s ease;
    background-color: #666!important;
  }
  i.lines-button:after {
    height: 2px!important;
    width: 22px!important;
    display: inline-block;
    -webkit-transition: -webkit-transform .45s ease,opacity .2s ease,background-color .2s ease;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    transform: scale(1,1);
    -webkit-transform: scale(1,1);
    background-color:#666!important;
  }
  .custom-menu-primary .navigation-primary>ul {
    display: none;
  }

  .mobile_menu{
    z-index: 1000;
    background-color: #d62598;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
  }
  .mobile_menu ul li {
    line-height: 1.5em;
    font-weight: 400;
    padding: .15em 0;
  }

  .mobile_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
  }

  .mobile_menu ul li:first-child {
    padding-top: 10px;
  }

  .mobile_menu ul li {
    line-height: 1.5em;
    font-weight: 400;
    padding: .15em 0;
  }





  .mobile_menu ul li a:hover {
    text-decoration: none;
  }
  .mobile_menu ul li a {
    font-size: 18px;
    padding: 5px 0 !important;
    font-weight: 400;
    color: #fff;
    display: block;
    position: relative;
  }
  .mobile_menu ul ul {
    padding-left: 15px;
  }
  .menu_open i.lines-button {
    -webkit-transform: scale3d(.8,.8,.8);
    transform: scale3d(.8,.8,.8);
  }
  .menu_open i.lines:before {
    -webkit-transform: translateY(-6px) rotateZ( 
      -45deg
    );
    -ms-transform: translateY(-6px) rotateZ(-45deg);
    transform: translateY(-6px) rotateZ( 
      -45deg
    );
  }
  .menu_open i.lines:after {
    -webkit-transform: translateY(6px) rotateZ( 
      45deg
    );
    -ms-transform: translateY(6px) rotateZ(45deg);
    transform: translateY(6px) rotateZ( 
      45deg
    );
  }
  .menu_open i.lines-button:after {
    transform: scale(0,1);
    -webkit-transform: scale(0,1);
  }
  .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: 40px !important;
    padding: 0 !important;
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color: #fff; /* 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);
  }

}
@media only screen and (max-width: 1000px) and (min-width: 690px) {
  .mobile_menu {
    font-size: 16px;
    line-height: 23px;
  }
}

@media only screen and (max-width: 1000px) {
  .custom-menu-primary {
    float: right;
    width: auto;
    min-height: 76px;
    line-height: 54px;
  }
}
@media(max-width:690px){
  .header__container {
    max-width: 320px!important;
    padding: 0;
  }
  .container{
    max-width: 320px!important;
    padding: 0;
    margin: 0 auto;
    position: relative;
  }
  .header__logo {
    margin-bottom: 25px;
    margin-left: 0;
  }
  .slide-out-widget-area-toggle {
    display: block !important;
    padding-top: 15px;
    transition: padding .2s ease;
    position: absolute;
    top: 8px;
    float: right;
    margin: 0 !important;
    z-index: 10000;
    right: 4px;
  }
  a#toggle-nav {
    position: relative;
    right: 0;
  }
  .slide-out-widget-area-toggle a>span {
    transform-origin: center;
    display: block;
    height: 20px;
    transition: -webkit-transform .33s 0s ease;
    transition: transform .33s 0s ease;
  }
  .lines-button {
    transition: .3s;
    cursor: pointer;
    line-height: 0!important;
    top: 10px;
    position: relative;
    font-size: 0px!important;
    user-select: none;
    display: block;
  }
  .slide-out-widget-area-toggle a>span i {
    width: 18px;
    background-color: transparent!important;
    transition: color .3s ease;
    -webkit-transition: color .3s ease;
    color: #666;
  }
  i.lines {
    font-size: 16px;
    line-height: 34px;
    display: block;
    position: relative;
  }

  i.lines:before{
    background-color: #666!important;
    transition: -webkit-transform .45s ease,background-color .2s ease,opacity .2s ease;
    transition: transform .45s ease,background-color .2s ease,opacity .2s ease;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    height: 2px!important;
    width: 22px!important;
    top: 6px;
    background: #ecf0f1;
    position: absolute;
    left: 0;
    content: '';
    display: block;
  }
  i.lines:after {
    height: 2px!important;
    width: 22px!important;
    top: -6px;
    position: absolute;
    left: 0;
    content: '';
    display: block;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: -webkit-transform .45s ease,background-color .2s ease,opacity .2s ease;
    transition: transform .45s ease,background-color .2s ease,opacity .2s ease;
    background-color:  #666!important;
  }
  i.lines-button:after {
    height: 2px!important;
    width: 22px!important;
    display: inline-block;
    -webkit-transition: -webkit-transform .45s ease,opacity .2s ease,background-color .2s ease;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    transform: scale(1,1);
    -webkit-transform: scale(1,1);
    background-color:  #666!important;
  }
  .custom-menu-primary .navigation-primary>ul {
    display: none;
  }

  .mobile_menu{
    z-index: 1000;
    background-color: #d62598;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
  }
  .mobile_menu ul li {
    line-height: 1.5em;
    font-weight: 400;
    padding: .15em 0;
  }

  .mobile_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
  }

  .mobile_menu ul li:first-child {
    padding-top: 10px;
  }

  .mobile_menu ul li {
    line-height: 1.5em;
    font-weight: 400;
    padding: .15em 0;
  }





  .mobile_menu ul li a:hover {
    text-decoration: none;
  }
  .mobile_menu ul li a {
    font-size: 18px;
    padding: 5px 0 !important;
    font-weight: 400;
    color: #fff;
    display: block;
    position: relative;
  }
  .mobile_menu ul ul {
    padding-left: 15px;
  }
  .menu_open i.lines-button {
    -webkit-transform: scale3d(.8,.8,.8);
    transform: scale3d(.8,.8,.8);
  }
  .menu_open i.lines:before {
    -webkit-transform: translateY(-6px) rotateZ( 
      -45deg
    );
    -ms-transform: translateY(-6px) rotateZ(-45deg);
    transform: translateY(-6px) rotateZ( 
      -45deg
    );
  }
  .menu_open i.lines:after {
    -webkit-transform: translateY(6px) rotateZ( 
      45deg
    );
    -ms-transform: translateY(6px) rotateZ(45deg);
    transform: translateY(6px) rotateZ( 
      45deg
    );
  }
  .menu_open i.lines-button:after {
    transform: scale(0,1);
    -webkit-transform: scale(0,1);
  }
  .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: 40px !important;
    padding: 0 !important;
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color: #fff; /* 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);
  }

}
@media only screen and (min-width: 480px) and (max-width: 690px){
  .header__container {
    max-width: 420px!important;
    padding: 0;
  }
  .container{
    max-width: 420px!important;
    padding: 0;
    margin: 0 auto;
    position: relative;
  }
  .header__logo {
    margin-bottom: 25px;
    margin-left: 0;
  }
  .slide-out-widget-area-toggle {
    display: block !important;
    padding-top: 15px;
    transition: padding .2s ease;
    position: absolute;
    top: 8px;
    float: right;
    margin: 0 !important;
    z-index: 10000;
    right: 4px;
  }
  a#toggle-nav {
    position: relative;
    right: 0;
  }
  .slide-out-widget-area-toggle a>span {
    transform-origin: center;
    display: block;
    height: 20px;
    transition: -webkit-transform .33s 0s ease;
    transition: transform .33s 0s ease;
  }
  .lines-button {
    transition: .3s;
    cursor: pointer;
    line-height: 0!important;
    top: 10px;
    position: relative;
    font-size: 0px!important;
    user-select: none;
    display: block;
  }
  .slide-out-widget-area-toggle a>span i {
    width: 18px;
    background-color: transparent!important;
    transition: color .3s ease;
    -webkit-transition: color .3s ease;
    color: #666;
  }
  i.lines {
    font-size: 16px;
    line-height: 34px;
    display: block;
    position: relative;
  }

  i.lines:before{
    background-color:  #666!important;
    transition: -webkit-transform .45s ease,background-color .2s ease,opacity .2s ease;
    transition: transform .45s ease,background-color .2s ease,opacity .2s ease;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    height: 2px!important;
    width: 22px!important;
    top: 6px;
    background: #ecf0f1;
    position: absolute;
    left: 0;
    content: '';
    display: block;
  }
  i.lines:after {
    height: 2px!important;
    width: 22px!important;
    top: -6px;
    position: absolute;
    left: 0;
    content: '';
    display: block;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: -webkit-transform .45s ease,background-color .2s ease,opacity .2s ease;
    transition: transform .45s ease,background-color .2s ease,opacity .2s ease;
    background-color:  #666!important;
  }
  i.lines-button:after {
    height: 2px!important;
    width: 22px!important;
    display: inline-block;
    -webkit-transition: -webkit-transform .45s ease,opacity .2s ease,background-color .2s ease;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    transform: scale(1,1);
    -webkit-transform: scale(1,1);
    background-color:  #666!important;
  }
  .custom-menu-primary .navigation-primary>ul {
    display: none;
  }

  .mobile_menu{
    z-index: 1000;
    background-color: #d62598;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
  }
  .mobile_menu ul li {
    line-height: 1.5em;
    font-weight: 400;
    padding: .15em 0;
  }

  .mobile_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
  }

  .mobile_menu ul li:first-child {
    padding-top: 10px;
  }

  .mobile_menu ul li {
    line-height: 1.5em;
    font-weight: 400;
    padding: .15em 0;
  }





  .mobile_menu ul li a:hover {
    text-decoration: none;
  }
  .mobile_menu ul li a {
    font-size: 18px;
    padding: 5px 0 !important;
    font-weight: 400;
    color: #fff;
    display: block;
    position: relative;
  }
  .mobile_menu ul ul {
    padding-left: 15px;
  }
  .menu_open i.lines-button {
    -webkit-transform: scale3d(.8,.8,.8);
    transform: scale3d(.8,.8,.8);
  }
  .menu_open i.lines:before {
    -webkit-transform: translateY(-6px) rotateZ( 
      -45deg
    );
    -ms-transform: translateY(-6px) rotateZ(-45deg);
    transform: translateY(-6px) rotateZ( 
      -45deg
    );
  }
  .menu_open i.lines:after {
    -webkit-transform: translateY(6px) rotateZ( 
      45deg
    );
    -ms-transform: translateY(6px) rotateZ(45deg);
    transform: translateY(6px) rotateZ( 
      45deg
    );
  }
  .menu_open i.lines-button:after {
    transform: scale(0,1);
    -webkit-transform: scale(0,1);
  }
  .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: 40px !important;
    padding: 0 !important;
  }
  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color: #fff; /* 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);
  }

}
@media (max-width: 348px){
  .header__container {
    padding: 0 15px;
  }}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */
footer.footer a,
footer.footer a:hover {
  text-decoration: none;
}
footer.footer {
  position: relative;
  z-index: 10;
}
.footer__container {
  width: 95%;
  margin: 0 auto;
  padding: 0 90px;
}
.footer__row {
  padding: 55px 0;
  margin-bottom: 0;
  position: relative;
}
.footer__col{
  z-index: 10;
  min-height: 1px;
  position: relative;
  display: block;
  float: left;
  width: 100%;
}
.footer_logo,
.footer_text,
.widget_text{
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
}
.footer__col .hs-menu-wrapper ul ul li:last-child,
.custom_widget_text_top p{
  margin-bottom: 30px;
}
.footer_logo a img {
  width: auto !important;
  max-width: 100%;
  height: auto;
}
.footer_text h5 {
  font-family: Fira Sans;
  text-transform: initial;
  font-size: 22px;
  line-height: 30px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0px;
  text-align: left;
}
.custom-html-widget {
  padding: .5rem 0;
  width: max-content;
  border-radius: .5rem;
  display: flex;
  align-items: center;
}
.copyright p {
  margin: 0;
  -webkit-font-smoothing: subpixel-antialiased;
}
.custom_widget_text_middle a img {
  width: auto !important;
}
.copyright {
  font-size: 14px;
  line-height: 24px;
}
.custom-html-widget a img {
  display: block;
  width: max-content !Important;
  margin: 0;
  max-width: 100%;
  height: auto;
}
.footer__col .hs-menu-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__col .hs-menu-wrapper>ul>li>a {
  font-family: Fira Sans;
  font-size: 18px!important;
  line-height: 18px;
  font-weight: 500!important;
  margin-bottom: 12px;
  text-transform: capitalize!important;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  display: block;
}
.footer__col .hs-menu-wrapper ul ul li{
  font-size: 14px;
  line-height: 24px;
}
.footer__col .hs-menu-wrapper ul ul li a {
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
  font-weight:400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.custom_widget_text_top h4,
.custom_widget_text_bottom h4,
.custom_widget_text_middle h4{
  margin-bottom: 12px;
  font-family: Fira Sans;
  font-size: 18px!important;
  line-height: 18px;
  font-weight: 500!important;
  text-transform: capitalize!important;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.custom_widget_text_middle h4{
  margin-bottom: 20px;
}
.custom_widget_text_top a {
  line-height: 24px;
  font-size: 14px;
  font-weight: 400;
}

.custom_widget_text_top p b {
  font-family: Fira Sans;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}
.custom_widget_text_top p {
  margin-bottom: 2px;
  line-height: 24px;
  font-size: 14px;
}
.custom_widget_text_middle {
  padding: .5rem 0;
  width: max-content;
  border-radius: .5rem;
}

.custom_widget_text_middle p {
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.custom_widget_text_middle p a img {
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
  width: auto;
}
.custom_widget_text_middle {
  padding: .5rem 0;
  width: max-content;
  border-radius: .5rem;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;
}
.custom-html-widget span.hs_cos_wrapper {
  display: flex;
  align-items: center;
}
.custom_widget_text_bottom {
  font-size: 14px;
  line-height: 24px;
}
.divider {
  height: 4px;
}
.custom_social_share a img {
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
  float: left;
  margin-right: 15px;
  width: 25px!important;
}
@media(min-width:690px){
  .footer__col {
    margin-right: 2%;
    width: 23.5%;
  }
  .col_four {
    margin-right: 0;
  }
}
@media(min-width:1000px){

  .footer__col {
    width: 19.5%;
  }
  .col_one {
    width: 35%;
  }
}
@media(min-width:1101px){
  .footer_logo,
  .footer_text,
  .widget_text,
  .footer__col .hs-menu-wrapper ul ul li:last-child,
  .custom_widget_text_middle{
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 690px) and (max-width: 1000px){
  .footer__col{
    width: 48%!important;
    margin-bottom: 2%;
    margin-right: 15px;
    margin-left: 0!important;
    padding: 15px;
    float: left;
  }
  .footer__col.col_two,
  .footer__col.col_four{
    margin-right: 0;
  }
  .footer__col.col_four,
  .footer__col.col_three{
    margin-bottom: 0;
  }
  .footer__container {
    max-width: 600px!important;
    padding: 0;
  }
  .custom_widget_text_top p {
    margin-bottom: 22px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 1000px){
  .footer__col {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1200px){
  .custom-html-widget a img {
    max-width: 90px;
  }
} 
@media only screen and (max-width: 690px){
  .footer__container {
    max-width: 320px!important;
    padding: 0;
  }
  .footer_text h5 {
    font-size: 16.5px;
    line-height: 22.5px;
  }
  .footer__col.col_four{
    margin-bottom: 0;
  }
  .custom_widget_text_top p {
    margin-bottom: 22px;
  }
  .footer__col .hs-menu-wrapper ul ul li:last-child {
    margin-bottom: 0;
  }


  .footer__col .hs-menu-wrapper>ul>li:last-child>a {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1000px) and (min-width: 690px){
  .footer_text h5 {
    font-size: 18.7px;
    line-height: 25.5px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 690px){
  .footer__container {
    max-width: 420px!important;
    padding: 0;
  }
}

@media (max-width:689px) {
  .custom-html-widget a img {
    max-width:100%;
  }
}

@media only screen and (max-width: 400px){
  .custom-html-widget a img {
    max-width: 90px;
  }
}
@media only screen and (max-width: 321px){
  .footer__container {
    max-width: 300px!important;
    padding: 0;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
img {
  width: 100%!important;
  height: auto;
}

.blog-page .content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 90px;
}

.blog-header {
  background-color: #F8FAFC;
  text-align: center;
}


.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}
.blog-index__post-inner-card.no-image {
  border-top: 4px solid #d62598;
}

@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
  .blog-index__post{
    width: calc(50% - 1rem);
  }

}

.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}



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


.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}
.blog-index__post-content p {
  font-family: Lato, sans-serif;
}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: none;
  height: auto;
  width: 100%;
  display: block;
}


.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #494a52;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px!important;
  width: 200px!important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #494a52;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #494a52;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: Lato, sans-serif;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: #F8FAFC;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #494a52;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}

/*             Blog Listing with Sidebar            */

.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

/*             Blog Grid Listing            */




.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  transition: all .5s;
}

.blog-post__meta-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  position: relative;
  top: 3px;
  padding-left: 10px;
}

.blog-post__read-more svg {
  width: 15px;
  height: auto;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media screen and (max-width: 767px) {
  .blog-index.sidebar {
    padding: 1rem 0;
    padding-bottom: 3.3rem;
  }
}

/*             Blog Grid Listing with Sidebar            */

.blog-index.sidebar {
  display:flex;
}
.newsletter {
  margin-bottom: 50px;
  padding: 1.25rem;
  border-top: .25rem solid #c14ba3;
  border-radius: 0 0 .25rem .25rem;
  background: #fff;
  box-shadow: 0 3px 9px -3px rgb(0 0 0 / 25%);
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/2);
  }
}   
@media(max-width:1300px){
  .content-wrapper {
    padding-top: 70px;
  }
  .single.single-post .section-title h1 {
    max-width: 800px !important;
  }
  .single.single-post .section-title h1 {
    max-width: 800px !important;
  }
  .col_inner {
    padding-top: 68px!important;
  }
}
@media(max-width:1000px){
  .content-wrapper {
    padding-top: 0px;
  }   
  .col_inner {
    padding-top: 0!important;
  }
}
@media screen and (max-width: 999px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/1);     
  }
}

.blog-sidebar {
  padding-top: 3.9rem;
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem;
    padding-bottom: 0;
  }
}

.blog-sidebar h3 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
}

.blog-sidebar ul {
  padding: 30px;
  margin: 0 0 40px 0;
  list-style: none;
  border-radius: 5px;
  background: #fff;
}

.blog-sidebar ul li {
  padding: 10px 0;
  border-top: 1px solid #dfddd9;
  font-weight: 600;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  padding-left: 2.3em;
  line-height: 24px;
  text-indent: -2.3em;
}

.blog-sidebar-post-listing li:before {
  position: relative;
  width: 22px;
  float: left;
  content: counter(list-item);
  margin-right: 25px;
  font-size: 36px;
  font-weight: 600;
}

.blog-sidebar-post-listing li a {
  position: relative;
  top: -3px;
}

.blog-pagination.span12 {
  display: flex;
  margin-left: 0;
}

/* Mobile Blog Sidebar */

@media(max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: flex;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    order: 1;
  }

  .hs-blog-listing .span9 {
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    visibility: hidden;
    opacity: 0;
    transition: all 5s;
    display: none;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    visibility: visible;
    transition: all 1s;
    opacity: 1;
  }
}

/* Blog Subscription Section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  width: 40%;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}
@media (max-width: 690px) {
  div#single-below-header {
    display: none;
}
}

.subscription-form label {
  text-align: center;
}

/*             Blog Post Layout          */

.post-featured-image {
  margin-bottom: -110px;
  min-height: 300px;
  background-size: cover;
  border-radius: 5px;
  margin-top: 40px;
  background-position: center center;
}

.blog-post {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 84px 100px 80px 100px;
  background: #fff;
  border-radius: 5px;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__links {
  display: block;
  padding: 26px 0;
  margin-top: 20px;
}

.blog-post__back-to-blog {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  position: relative;
  top: 6px;
  margin-right: 10px;
  width: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 767px) {
  .blog-post {
    width: 90%;
    padding: 30px;
  }
}

/* Blog Comments */

.blog-comments {
  max-width: 100%;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments form {
  margin-top: 2em;
  padding-top: 2em;
}

/* Related Articles */

.blog-recent-posts__list {
  flex-wrap: wrap;
}

.blog-recent-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-recent-posts .blog-post__meta-section {
  justify-content: flex-end;
}

.container_blog_banner {
  position: relative;
}
.blog-header__inner {
  border: 0;
  background: #f7f7f7;
  padding: 2rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 4rem;
}
.col_inner {
  padding: 0 180px;
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

h1.blog-header__title {
  color: #d62598;
  margin-bottom: 2rem ;
  font-size: 51px ;
  line-height: 51px ;
  position: relative;
  top: 3px;
  max-width: 800px;
  font-weight: 400;
  font-family: Fira Sans;
}

div#single-below-header {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 11px;
  color: #888;
}

#single-below-header>span {
  padding: 0 10px;
  line-height: 16px;
  font-size: 12px;
  display: block;
  float: left;
}

span.meta-date.date.updated {
  color: #000;
  font-weight: 600;
} 
.blog_header_space {
  height: 68px;
}
.blog-index_sidebar {
  position: relative;
  min-height: 1px;
}
.hs-blog-listing .blog-sidebar_wrapper {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  display: block;
}
.blog_row_space {
  margin-bottom: 35px;
  position: relative;
}

.blog_row {
  position: relative;
  padding-bottom: 40px;
}
span.meta-category a:hover {
  color: #d62598;
}
span.continue-reading:hover {
  color: #d62598 ;
}
.post-header h2:hover {
  color: #333;
}
.column-bg-overlay {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: ' ';
  display: block;
  opacity: 0;
  transition: background-color .45s cubic-bezier(.25,1,.33,1),opacity .45s cubic-bezier(.25,1,.33,1);
  -webkit-transition: background-color .45s cubic-bezier(.25,1,.33,1),opacity .45s cubic-bezier(.25,1,.33,1);
}
.blog-pagination {
  padding-left: 95px;
  position: relative;
  margin-bottom: 10px;
  height: 32px;
  width: 100%;
}
.blog-pagination a.active {
  -webkit-box-shadow: 0px 6px 15px rgb(0 0 0 / 16%);
  box-shadow: 0px 6px 15px rgb(0 0 0 / 16%);
  margin: 0 8px;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 14px;
  font-size: 12px!important;
  background-color: #d62598!important;
  font-family: Fira Sans;
  text-transform: capitalize!important;
  letter-spacing: 0;
  font-weight: 400;
  display: inline-block;
  color: #fff !important;
  padding: 11px 13px 10px 13px!important;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  pointer-events: none;
}
.blog-pagination a {
  padding: 11px 13px 10px 13px!important;
  background-position: -21px center;
  position: relative;
  text-transform: capitalize;
  display: inline-block;
  font-size: 12px!important;
  background-color: transparent!important;
  font-family: "Fira Sans";
  color: #888 !important;
  line-height: 11px;
  font-weight: 700;
}

.blog-pagination a:hover{
  color: #d62598!important;
  background-color: transparent!important;
}

.post-area-col {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 4px;
}
article.twonews.feature-article {
  overflow: hidden;
  border-radius: 0 0 .5rem .5rem !important;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px -4px rgb(0 0 0 / 30%) !important;
  display: flex;
  flex-flow: column;
}
span.post-featured-img {
  display: block;
  border-top: 4px solid #d62598;
}
.article-content-wrap {
  padding: 1rem;
}
.post-header {
  font-size: 11px;
  color: #888;
  line-height: 26px;
  font-weight: 400;
}
span.meta-category a {
  color: #000;
  font-weight: 400;
}

.blog-index__post-inner-card span.meta-category a{
  color:#888888;
}

.blog-index__post-inner-card span.meta-category a:hover{
  color: #d62598;
}

.post-header h2 {
  font-family: Fira Sans;
  text-transform: initial;
  letter-spacing: 0;
  font-size: 23px;
  line-height: 30px;
  font-weight: 400;
  color: #d62598!important;
  margin-top: 0;
}

.post-header h2 a {
  color: #d62598!important;
}

.post-header h2 a:hover {
  color: #333!important;
}
.excerpt p {
  margin: 0;
}
a.more-link {
  display: block;
  margin-top: 25px;
  font-weight: 400;
}

span.continue-reading {
  transition: all .45s cubic-bezier(.25,1,.33,1);
  -webkit-transition: all .45s cubic-bezier(.25,1,.33,1);
  width: auto;
  display: inline-block;
  padding: 0 !important;
  background: 0 0 !important;
  color: #2dccd3 !important;
  font-size: 1rem !important;
  line-height: 26px;
  font-weight: 400;
}

span.continue-reading:hover {
  color: #d62598 !important;
}
span.meta-category {
  order: 2;
  padding-bottom: 1rem !important;
}

.hs-blog-post span.meta-category{
  padding-bottom: 0 !important;
}

.blog-index__post {
  overflow: hidden;
  border-radius: 0 0 .5rem .5rem !important;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px -4px rgb(0 0 0 / 30%) !important;
  display: flex;
  flex-flow: column;
}
.main-post-search {
  margin-bottom: 50px;
}
.main-post-search h4 {
  font-family: Fira Sans;
  font-size: 18px!important;
  line-height: 18px;
  font-weight: 500!important;
  margin-bottom: 12px;
  color: #999;
}

.main-post-search .hs-search-field__suggestions ul li a{
  padding: 5px 10px;
}

.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
  background-color: transparent;
  border: 1px solid #ccc;
  box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  padding: 10px;
  padding-right: 45px!important;
  margin: 0!important;
  font-family: inherit;
  line-height: 24px;
  color: #555;
  font-size: 16px;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
}
.hs-blog-listing .hs-search-field__bar button,
.hs-blog-post .hs-search-field__bar button{
  width: auto;
  position: absolute;
  top: 0px;
  right: 0;
  border: none;
  background-color: transparent!important;
  padding: 15px 22px!important;
  font-family: Fira Sans;
  text-transform: capitalize!important;
  letter-spacing: 0;
  font-size: 23px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
}
.hs-search-field__bar button svg {
  display: none;
}
.Blog_form label {
  font-family: Fira Sans;
  font-weight: 400;
  color: #333333 !important;
  text-align: center;
  margin: 0;
  line-height: 24px;
}

.Blog_form .field{
  margin-bottom:0;
}


.Blog_form input.hs-button {
  width: 100%;
  margin-top: 1rem;
  background-color: #2dccd3 ;
  padding: 10px 18px ;
  line-height: normal;
  border-color: #2dccd3 ;
  font-weight: 400;
  margin-bottom:0;
  text-transform: capitalize!important;
  font-family: Fira Sans;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 400;
}

.Blog_form input.hs-button:hover {
  opacity: .85;
  box-shadow: 0 20px 38px rgba(0,0,0,.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}

.blog-sidebar-topic-filter .block {
  margin-bottom: 50px;
}
.blog-sidebar-recent_post ul,
.blog-sidebar-topic-filter ul {
  margin: 0;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}
.blog-sidebar-recent_post ul li,
.blog-sidebar-topic-filter  ul li {
  padding: 4px 0!important;
  line-height: 1.5em;
  font-weight: 400;
}
.blog-sidebar-recent_post h4,
.blog-sidebar-topic-filter  h3 {
  font-family: Fira Sans;
  font-size: 18px!important;
  line-height: 18px;
  font-weight: 500!important;
  margin-bottom: 12px;
  color: #999;
}
span.filter-link-count {
  display: none;
}
.Blog_form .hs-input {
  padding: 10px;
  width: 100%;
  margin-top: .25rem;
  color: #555;
  background-color: transparent;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
  line-height: 24px;
}

.Blog_form .hs-input::placeholder{
  color: rgb(117, 117, 117) !important;
}

.Blog_form img {
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
  width: auto;
}
.Blog_form h2 {
  font-family: Fira Sans;
  text-transform: initial;
  letter-spacing: 0;
  font-size: 40px;
  line-height: 42px;
  font-weight: 300;
  color: #333;
  margin-bottom: 7px;
}
.Blog_form {
  margin-bottom: 50px;
  padding: 1.25rem;
  border-top: .25rem solid rgb(214, 37, 152);
  border-radius: 0 0 .25rem .25rem;
  background: #fff;
  box-shadow: 0 3px 9px -3px rgb(0 0 0 / 25%);
  text-align: center;
}
.hs-blog-listing button:before,
.hs-blog-post button:before{
  content: "\e906";
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
} 

.hs-blog-post{
  overflow-x: hidden;
}

span.meta-category a{

}

.post_content_left {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  padding-right: 20px;
  margin-top: 4px;
}

.hs-blog-post .blog-sidebar_wrapper {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin-right: 0;
}

.post-content-inner {
  padding-bottom: 50px;
  margin-bottom: 50px;
  position: relative;
  padding-right: 3%;
}

span.post_featured_img img {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-top: 4px solid #d62598;
}

.author_thumb, .autho_name, .author_bio {
  padding-bottom: 10px;
  margin: 0;
}

.author_thumb img {
  margin-bottom: 15px;
  max-width: 200px!important;
  height: auto;
}

p.autho_name {
  padding-bottom: 10px;
}

p.autho_name a {
  color: #333;
  line-height: 26px;
  font-weight: 600;
}

p.autho_name a:hover {
  color: #333;
}

.blog_related_posts_wrapper {
  position: relative;
  -webkit-box-sizing: content-box!important;
  width: 100%;
  margin-bottom: -40px;
  visibility: visible;
  margin-top: 80px;
}

.related-bg-wrap {
  overflow: hidden;
  height: 100%;
  position: absolute;
  top: 0;
  margin-left: -50vw;
  left: 50%;
  width: 100vw;
}

.related-bg-wrap .row-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-color: rgba(0,0,0,.04);
}

h3.related-title {
  margin-bottom: 7px;
  font-size: 23px;
  line-height: 1.3;
  color: #333;
  font-family: Fira Sans;
  padding: 3rem 0;
  font-weight: 400;
  text-align: center;
}

.related-posts {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.related_item {
  line-height: 26px;
  position: relative;
  float: left;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 30px;
}

.related_item:nth-child(3n+3){
  margin-right: 0!important;
}

.related_inner-wrap {
  display: flex;
  flex-flow: column;
  width: 100%;
  background: #fff;
  overflow: hidden;
  border-radius: 0 0 .5rem .5rem !important;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px -4px rgb(0 0 0 / 30%) !important;
}

.related_item span.post-featured-img {
  overflow: hidden;
}

.related_item span.post-featured-img img {
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all .7s;
  -webkit-transition: all .7s;
  max-width: 100%;
  height: auto;
}

.related_inner-wrap:hover span.post-featured-img img {
  transform: scale(1.07);
  -webkit-transform: scale(1.07);
}

.related-posts span.meta-category {
  line-height: 26px;
  color: #333;
  order: 2;
  display: block;
  position: relative;
  z-index: 110;
  padding: 0 16px 16px !important;
}

.related-posts span.meta-category a {
  line-height: 19px;
  position: relative;
  display: inline-block;
  font-family: Fira Sans;
  font-weight: 400;
  color: #888;
  font-size: 11px;
}

.related-posts span.meta-category a:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.related-posts span.meta-category a:hover {
  color: #888;
}

.related-posts span.meta-category a:before {
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: left;
  -webkit-transform: scaleX(0);
  transform-origin: left;
  -webkit-transition: transform .37s cubic-bezier(.52,.01,.16,1);
  transition: transform .37s cubic-bezier(.52,.01,.16,1);
  background-color: #d62598;
}

.related-posts a.entire-meta-link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 101;
  height: 100%;
}

.related_item .article-content-wrap {
  clear: both;
  padding: 16px 16px 0;
}

.related_item .article-content-wrap h3 {
  line-height: 1.3;
  margin-bottom: 8px;
  font-size: 20px;
  color: #d62598;
  font-family: "Fira Sans";
  font-weight: 400;
  letter-spacing: 0;
}


.comments-section {
  margin-top: 80px;
  font-size: 23px;
  line-height: 1.3;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
  font-family: Fira Sans;
  text-transform: initial;
  letter-spacing: 0;
  font-weight: 300;
}

.comments-section h3{
  font-size: 23px ;
  line-height: 1.3 ;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
  font-family: Fira Sans;
  font-weight: 300;
}

.blog_comment_form label {
  line-height: 26px;
  color: #333 !important;
  font-family: Fira Sans;
  font-weight: 400;
  margin: 0;
}

.blog_comment_form .hs-input {
  line-height: 24px;
  color: #555;
  font-family: "Fira Sans";
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
  background-color: transparent;
  border: 1px solid #ccc;
  -webkit-box-shadow: none;
  font-size: 16px;
  -o-box-shadow: none;
  padding: 16px;
}

.comment-date {
  display: block !important;
  margin: 10px 0;
}

.blog-sidebar_wrapper .hs-search-field__bar form button{
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: Fira Sans;
  text-transform: capitalize !important;
  letter-spacing: 0;
  font-size: 23px;
  font-weight: 400;
  position: absolute;
  right: 0;
  background-color: transparent !important;
  -webkit-border-radius: 4px !important;
  box-shadow: none;
  top: 0;
  line-height: 0 !important;
  height: 100%;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 61px;
}
.blog-sidebar_wrapper .hs-search-field__bar form button:before{
  display:none;
}

.blog-sidebar_wrapper .hs-search-field__bar form button svg{
  display:none;
}

.blog-sidebar_wrapper .hs-search-field__bar form button span{
  margin-top: 1px;
  display: block;
  font-size: 17px;
  color: #d62598 !important;
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  padding: 0 !important;
  top: 0;
}

.blog-sidebar_wrapper .hs-search-field__bar form button span:before{
  content: "\e906";
}

.blog_comment_form .hs-button{
  font-family: Fira Sans;
  font-weight: 400;
  background-color: #d62598!important;
}

.blog_comment_form .hs-button:hover{
  opacity: .85;
  box-shadow: 0 20px 38px rgba(0,0,0,.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -webkit-transition: opacity .45s cubic-bezier(.25,1,.33,1),transform .45s cubic-bezier(.25,1,.33,1),border-color .45s cubic-bezier(.25,1,.33,1),color .45s cubic-bezier(.25,1,.33,1),background-color .45s cubic-bezier(.25,1,.33,1),box-shadow .45s cubic-bezier(.25,1,.33,1);
  transition: opacity .45s cubic-bezier(.25,1,.33,1),transform .45s cubic-bezier(.25,1,.33,1),border-color .45s cubic-bezier(.25,1,.33,1),color .45s cubic-bezier(.25,1,.33,1),background-color .45s cubic-bezier(.25,1,.33,1),box-shadow .45s cubic-bezier(.25,1,.33,1);
}

.sidebar_image_wrapper img {
  margin-bottom: 15px;
  max-width: 100%;
  height: auto;
}

.tag-header-bg-image {
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  background-color: #f7f7f7;
}

.tag_bg_wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(//19832843.fs1.hubspotusercontent-na1.net/hubfs/19832843/raw_assets/public/Probar_Happydonia_June2021/images/partners-happydonia.jpg);
}

.tag_bg_wrapper:before {
  background-color: rgba(255,255,255,.65);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: ' ';
  z-index: 1;
  display: block;
}

.tag-header-bg-image h1 {
  -webkit-font-smoothing: antialiased;
  margin-bottom: 8px;
  display: block;
  z-index: 101;
  color: #000;
  font-family: Fira Sans;
  font-size: 60px;
  line-height: 60px;
  font-weight: 400;
  transform: rotateX(
    0deg
  ) translate(0px, 0px);
  opacity: 1;
}

.tag-header-bg-image .content-wrapper {
  position: relative;
  z-index: 10;
}





@media(min-width:690px){
  .blog-index_sidebar {
    width: 74.468085099%;
    float: left;
  }
}
@media (min-width: 768px){
  .post-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .blog-index__post:nth-child(n+2) {
    width: calc(50% - 1rem);
  }
}
@media(min-width:1000px){
  .container_blog_banner {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 90px;
  } 
  .hs-blog-listing .blog-sidebar_wrapper {
    width: 23.404255317%;
    float: left;
  }

}

@media (min-width: 690px){
  .post_content_left{
    margin-right: 2%;
    width: 74.5%;
  }
  .hs-blog-post .blog-sidebar_wrapper{
    width: 23.5%;
  }
  .related_item{
    width: 32%;
  }

}

@media only screen and (min-width: 690px) and (max-width: 1000px){
  .post-header h2 {
    font-size: 23px;
    line-height: 30px;
  }
  span.continue-reading {
    font-size: 16px!important;
    line-height: 23px;
  }
  /*   .blog-index__post-content a {
  line-height: 23px;
  font-size: 16px;
} */
  .Blog_form label {
    font-size: 16px;
    line-height: 23px;
  }
  .excerpt {
    font-size: 16px;
    line-height: 23px;
  }
  .blog-page .content-wrapper {
    max-width: 600px !important;
    padding: 0;
  }
  .blog_header_space {
    height: auto;
  }
  .blog-index_sidebar {
    width: 100%;
    margin-right: 0!important;
    margin-left: 0;
    position: relative;
    min-height: 1px;
    margin-bottom: 25px;
    float:none;
  }
  .post_content_left{
    width: 100% ;
    margin-left: 0 ;
  }
  .hs-blog-post .blog-sidebar_wrapper{
    width: 100%;
    margin-left: 0;
  }
  .hs-blog-post .container_blog_banner{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .related_item{
    width: 100%;
    margin-left: 0;
  }
  .tag-header-bg-image h1{
    font-size: 42px;
    line-height: 46px;
  }
}



@media (min-width: 1000px){
  .related_item{
    width: 31.2%;
    margin-right: 3%;
  }

}

@media only screen and (min-width: 480px) and (max-width: 690px){
  .blog-page .content-wrapper {
    padding: 0;
    max-width: 420px!important;
  }
  .hs-blog-post .container_blog_banner{
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width:999px) {
  .blog-page .content-wrapper {
    padding:0;
  }
}

@media only screen and (max-width:767px){
  .replying {
    padding: 0;
  }
}

@media (max-width:690px){
  h1.blog-header__title{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 4px;
  }
  .hs-blog-post #single-below-header>span{
    display:none;
  }
  .related_item{
    width: 100%;
  }
  .related_item span.post-featured-img img{
    width:100%;
  }
  .blog-pagination{
    padding-left: 0;
    margin-bottom: 40px
  }
  .blog-index_sidebar{
    padding-bottom: 25px;
  }
  .tag-header-bg-image h1{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 4px;
  }
  .blog-header__inner .col_inner{
    padding:0 ;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}

@media(max-width:479px){
  .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    width: 100%;
    display: inline-block;
    max-width: 300px;
    overflow: auto;
    overflow-y: hidden !important;
    margin:0;
  }

  .grecaptcha-badge {
    margin-bottom:0;
  }

}

@media (max-width:1300px){
  .blog_header_space{
    display:none;
  }
}

@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .Blog_form h2{
    font-size: 28px;
    line-height: 29.4px;
  }
}

@media (max-width:1000px){
  .tag-header-bg-image{
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .blog_row_space{
    display:none;
  }
  .hs-blog-listing .listing_main_wrapper{
    padding-top: 4.1em;
  }
  .listing_main_wrapper .post-area-col{
    margin-top:0;
  }
  .tag-header-bg-image .content-wrapper{
    min-height: 40px;
  }
}

@media (max-width:999px){
  .Blog_form{
    max-width:446px;
    width:100%;
  }
}

@media (max-width:500px){
  .hs-blog-post .blog-header__inner  .col_inner{
    padding: 0 15px;
  }
}

@media (max-width:479px){
  .hs-blog-listing .content-wrapper{
    max-width: 320px!important;
    padding:0 !important;
  }
  .blog_header_space{
    display:none;
  }
  .hs-blog-post .container_blog_banner{
    max-width: 320px!important;
    margin-left:auto;
    margin-right:auto;
  }
  .hs-blog-listing .listing_main_wrapper {
    padding-top: 4.1em !important;
  }
  .blog-header__inner .col_inner{
    padding:0 ;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .blog_related_posts_wrapper .blog-page .content-wrapper{
    padding: 0 0px;
  }

}

@media (max-width:375px){
  .hs-blog-listing .content-wrapper{
    padding-right:5px!important;
    padding-left:5px!important;
  }

  .hs-blog-post .container_blog_banner,
  .hs-blog-listing .content-wrapper,
  .blog-header__inner .col_inner,
  .blog_related_posts_wrapper .blog-page .content-wrapper,
  .blog-page .content-wrapper{
    padding-right:5px!important;
    padding-left:5px!important;
  }

  .blog-header__inner{
    padding: 2rem 8px;
  }

}
::marker {
    unicode-bidi: isolate;
    color: #d62598
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */
.error-page {
  padding: 15rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #EDEFF2;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}
.systems-page {
  padding:10rem 0px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  padding: 10px 20px;
  font-size: 14px;
}
.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}
.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}
.systems-page .widget-type-email_simple_subscription .hs-input{
  width: 100% !important;
}
.systems-page form{
  max-width:750px;
  width:100%;
}
.systems-page ul.no-list{
  padding:0;
}
.systems-page .hs-input{
  margin-bottom:18px;
}
#hs-pwd-widget-password{
  height:auto !important;
}

@media (max-width:1280px) {
  .systems-page {
    padding: 3rem 0px;
  }
}

@media (max-width:980px){
  .error-page {
    padding: 10rem 0;
  }
}
@media (max-width:767px){
  .systems-page h2{
    font-size: 35px;
  }
  .systems-page h1{
    font-size: 40px;
  }
}
@media (max-width:480px){
  .systems-page h2{
    font-size: 25px;
  }
  .systems-page h1{
    font-size: 28px;
  }
}