/* ******************************************************************************
*********************************************************************************
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;
}
/* ******************************************************************************
*********************************************************************************
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: visible;
  }
  
  /**
   * 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-area .dnd-section {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper, 
.dnd-section > .row-fluid {
  padding-right: 30px;
  padding-left: 30px;
}
.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1199px) {
  .content-wrapper, 
  .dnd-section > .row-fluid {
    max-width: 960px !important;
  }
}

@media (max-width: 991px) {
  .content-wrapper, 
  .dnd-section > .row-fluid {
    max-width: 760px !important;
  }
  .content-wrapper, 
  .dnd-section > .row-fluid {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 575px) {
  .content-wrapper, 
  .dnd-section > .row-fluid {
    max-width: 100% !important;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */
/* Graphik Font Regular*/
@font-face {
  font-family: 'Graphik';
  src: url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Custom_Fonts/Graphik/GraphikRegular.eot') format('eot'),
       url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Custom_Fonts/Graphik/GraphikRegular.woff') format('woff'),
       url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Custom_Fonts/Graphik/GraphikRegular.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Custom_Fonts/Graphik/GraphikMedium.eot') format('eot'),
       url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Custom_Fonts/Graphik/GraphikMedium.woff') format('woff'),
       url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Custom_Fonts/Graphik/GraphikMedium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Custom_Fonts/Graphik/GraphikBold.eot') format('eot'),
       url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Custom_Fonts/Graphik/GraphikBold.woff') format('woff'),
       url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Custom_Fonts/Graphik/GraphikBold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'OpenSans';
  src: local("OpenSans"), 
    local("OpenSans"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-Regular.html") format("woff2"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-Regular.woff") format("woff"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OpenSans';
  src: local("OpenSans Italic"), 
    local("OpenSans-Italic"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-Italic.html") format("woff2"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-Italic.woff") format("woff"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'OpenSans';
  src: local("OpenSans SemiBold"), 
    local("OpenSans-SemiBold"),
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-SemiBold.html") format("woff2"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-SemiBold.woff") format("woff"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OpenSans';
  src: local("OpenSans Bold"), 
    local("OpenSans-Bold"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-Bold.html") format("woff2"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-Bold.woff") format("woff"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'gilroy';
  src: url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Medium.eot');
  src: url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Medium.eot#iefix') format('embedded-opentype'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Medium.html') format('woff2'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Medium.woff') format('woff'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Medium.ttf') format('truetype'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Medium.svg#gilroymedium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'gilroy';
  src: url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Semibold.eot');
  src: url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Semibold.eot#iefix') format('embedded-opentype'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Semibold.woff') format('woff'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Semibold.ttf') format('truetype'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Semibold.svg#proxima_novaregular') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'gilroy';
  src: url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Bold.eot');
  src: url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Bold.eot#iefix') format('embedded-opentype'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Bold.html') format('woff2'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Bold.woff') format('woff'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Bold.ttf') format('truetype'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Gilroy-Bold.svg#gilroybold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'proxima_novaregular';
  src: url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/ProximaNova-Regular.eot');
  src: url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/ProximaNova-Regular.eot#iefix') format('embedded-opentype'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/ProximaNova-Regular.woff') format('woff'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/ProximaNova-Regular.ttf') format('truetype'),
    url('//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/ProximaNova-Regular.svg#proxima_novaregular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sailec';
  src: local("Sailec Medium"), 
    local("Sailec-Medium"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-Medium.html") format("woff2"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-Medium.woff") format("woff"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  font-display: swap;
}

@font-face {
  font-family: 'AvenirNext';
  src: local("//f.hubspotusercontent10.net/hubfs/6097063/Anfix_September2020/Fonts/AvenirNext-Bold"), 
    local("//f.hubspotusercontent10.net/hubfs/6097063/Anfix_September2020/Fonts/AvenirNext-Bold"), 
    url("//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/AvenirNext-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sailec Medium';
  src: url(//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-Medium-1.eot);
  src: local('â˜º'),
    url(//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-Medium-1.woff) format('woff'),
    url(//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-Medium-1.ttf) format('truetype'),
    url(//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-Medium-1.svg) format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sailec Medium Italic';
  src: url(//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-MediumItalic.eot);
  src: local('â˜º'),
    url(//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-MediumItalic.woff) format('woff'),
    url(//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-MediumItalic.ttf) format('truetype'),
    url(//6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_September2020/Fonts/Sailec-MediumItalic.svg) format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.fix .header_main {
  background-color: rgba(250, 250, 250, 1.0);
}

@media (max-width: 1399.98px) {
  .hs-blog-post .header__container {
    max-width: 1120px;
  }
  .hs-blog-listing .header__container {
    max-width: 1340px;
  }
}
@media (max-width: 1199px) {
  .hs-blog-listing .header__container, 
  .hs-blog-post .header__container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .hs-blog-listing .header__container, 
  .hs-blog-post .header__container {
    max-width: 760px;
  }
}
/* ******************************************************************************
*********************************************************************************
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;
}

.newsletter-post table,
.newsletter-post th,
.newsletter-post td {
  border: none !important;
}
html, body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

html {
  font-family: sans-serif;
}

body {
  color: #191919;
  line-height: 1.58;
}

p {
  margin-top: 0;
  margin-bottom: 3.2rem;
}

.blog-post__body p:last-child {
  margin-bottom: 4rem;
}

/* Anchor Links */
a {
  text-decoration: underline;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
a:hover, a:focus {
  text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #203134;
  word-break: break-word;
}

h1 {
  line-height: 1.3;
}

.blog-post__body h2 {
  margin: 4rem 0 2.4rem 0;
  line-height: 1.2;
}

h3 {
  line-height: 1.4;
}

h4 {
  font-weight: normal;
  line-height: 1.4;
}

h5 {
  line-height: 1.4;
}

h6 {
  line-height: 1.4;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 600;
}

strong {
  font-weight: 500;
}

code {
  vertical-align: bottom;
}

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

.blog-post ul li,
.blog-post ol li {
  margin: 1rem 0;
}

.blog-post ul li:last-child,
.blog-post ol li:last-child {
  margin-bottom: 3.2rem;
}

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

blockquote {
border-left: 5px solid;
background-color: #fdfdfe;
margin: 0 0 3.2rem;
padding: 2.4rem;
}

.blog-post__body blockquote p:last-child {
  margin-bottom: 0;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: none;
}

.disable-focus-styles :focus {
  outline: none;
}
img {
  max-width:100%;
  vertical-align: middle;
}

/* Containers */
.hs-blog-post .body-container--blog-post{
  padding-top: 200px;
}
@media (max-width: 1199.98px) {
  .hs-blog-post .body-container--blog-post{
    padding-top: 150px;
  }
}
@media (max-width: 991.98px) {
  .hs-blog-post .body-container--blog-post{
    padding-top: 150px;
  }
}
.hs-blog-listing .body-container {
  padding-top: 150px;
}
.content-wrapper {
  margin: 0 auto;
}
.post_sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-left: 3rem;
  padding-bottom: 4rem;
  padding-top: 167px;
}
@media (max-width: 991.98px) {
  .post_sidebar {
    max-width: 100%;
    padding: 4rem 0;
  }
}
.side-box-content img.hs-cta-img {
  height: auto;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  .row {
    display: block;
  }
}
/* Top section */
.post-breadcrumbs {
  margin-bottom: 24px;
  font-size: 1.6rem;
}
.post-breadcrumbs a {
  text-decoration: none;
}
.blog-post h1 {
  margin-bottom: 3.2rem;
}
@media (max-width: 767.98px) {
  .blog-post h1 {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}
.blog-post-excerp {
  margin-bottom: 4rem;
  font-family: Graphik;
  font-size: 2.6rem;
  color: #191919;
}
@media (max-width: 767.98px) {
  .blog-post-excerp {
    font-size: 2rem;
  }
}
.latest-post-img {
  margin-bottom: 3.2rem;
}
.blog-post-user {
  display: flex;
  align-items: center;
  margin-bottom: 2.8rem;
}
.post-user-img {
  border-radius: 50px;
  height: 88px;
  margin-right: 1.6rem;
  overflow: hidden;
  min-width: 88px;
}
.post-user-name,
.post-user-name a {
  text-decoration: none;
  transition: none;
  font-family: Gilroy;
  font-weight: 600;
}
.post-user-name,
.post-date{
  margin-bottom: 0.8rem;
}
.post-social-sharing .post-divisor,
.author-listing-header .post-divisor {
  padding: 1.3rem 0;
}
.post-social-sharing {
  display: inline-block;
}
.post-date {
  font-family: Graphik;
  color: #6b7a8c;
  font-size: 16px;
  line-height: 1.4;
}
.post-social-sharing ul li {
  margin: 0;
}

.post-social-sharing ul li:last-child {
  margin-bottom: 0;
}

/* Author's bio section */
.author-listing-header .post-divisor {
  max-width: 24px;
  margin: 0 auto;
}
.post-user {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 991.98px) {
  .post-user {
    display: block;
  }
}
.post-info-block-footer .post-user-img {
  height: 77px;
  min-width: 77px;
  max-width: fit-content;
}
@media (max-width: 991.98px) {
  .post-info-block-footer .post-user-img {
    margin-bottom: 0.8rem;
  }
}
p.post-user-bio {
  font-family: Graphik;
  font-size: 16px;
  color: #6b7a8c;
  margin-bottom: 0;
}
.author-listing-img {
  margin-bottom: 3.2rem;
}
.author-listing-img img {
  border-radius: 80px;
  overflow: hidden;
}
.author-listing-bio {
  font-size: 1.8rem;
  max-width: 890px;
  margin: 0 auto 4rem;
  text-align: left;
  display: flex;
  gap: 20px; /* Espacio entre columnas */
}
.author-listing-social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.author-listing-social-links .social li a {
  color: #1d2120;
}
.author-listing-bio .column {
  flex: 1;
}
.author-listing-display-name p {
  margin-bottom: 0;
}
/* Blog index */
.hs-blog-listing .content-wrapper {
  max-width: 1340px;
}
.blog-index-title {
  text-align: center;
}
.blog-index-rec-post {
  display: flex;
}
@media (max-width: 1199.98px) {
  .blog-index-rec-post {
    flex-direction: column-reverse;
  }
  .blog-index-title {
    text-align: left;
  }
}
.rec_featured-image {
  min-width: fit-content;
}
.rec_featured-image img {
  height: auto;
}
.rec-meta {
  display: flex;
  flex-direction: column;
  margin-left: 4rem;
  position: relative;
}
@media (max-width: 1199.98px) {
.rec-meta {
    margin-left: 0;
    margin-bottom: 4rem;
  }
}
.rec-meta-tag,
.blog-index-post-tag {
  text-decoration: none;
  text-transform: uppercase;
  font-family: Gilroy;
  font-weight: 600;
}
.rec-meta-tag {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
}
.rec-meta-excerpt {
  font-size: 2.6rem;
  line-height: 1.36;
}
.rec-meta-date {
  color: #6b7a8c;
  font-size: 2rem;
  position: absolute;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .rec-meta-excerpt {
    font-size: 2rem;
  }
  .rec-meta-date {
    font-size: 1.6rem;
  }
}
@media (max-width: 1199.98px) {
  .rec-meta-date {
    position: relative;
  }
}

.rec-meta-date a {
  text-decoration: none;
}
.blog-index-post-tag {
  font-size: 1.4rem;
}
.rec-meta h2 {
  font-size: 4.2rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 767.98px) {
  .rec-meta h2 {
  font-size: 3rem;
  }
}

.rec-meta h2 a {
  color: #203134;
  text-decoration: none;
}
.rec-meta h2 a:hover {
  text-decoration: underline;
}
.blog-index-latest {
  text-align: center;
  font-size: 4.2rem;
  margin-top: 8rem;
  margin-bottom: 4rem;
}
@media (max-width: 991.98px) {
  .blog-index-latest {
    margin: 4rem 0 2rem;
  }
}
.blog-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 4rem;
  grid-row-gap: 5.6rem;
}
.blog-index-post-box {
  height: 100%;
  position: relative;
}
.blog-index-post-date {
  position: absolute;
  bottom: 0;
}

.blog-index-post-img {
  margin-bottom: 2.6rem;
  height: 222px;
  overflow: hidden;
}
.blog-index-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 991.98px) {
  .blog-index {
    display: flex;
    flex-wrap: wrap;
  }
  .blog-index-post {
    max-width: 326px;
  }
}
@media (max-width: 767.98px) {
  .blog-index-post {
    max-width: 100%;
  }
  .blog-index-post-img {
    height: 320px;
  }
  .accountex-page .blog-index-post-img {
    height: auto;
  }
}
.blog-index-post-title {
  font-family: gilroy, Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.blog-index-post-title,
.blog-index-post h3 {
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}
.blog-index-post h3 a,
.blog-index-post-title a {
  color: #18283b;
  text-decoration: none;
}
.blog-index-post-title a:hover,
.blog-index-post h3 a:hover {
  color: #18283b;
  text-decoration: underline;
}
.blog-index-post-date p {
  color: #6b7a8c;
  font-size: 1.6rem;
  margin-bottom: 0;
}
.blog-index-post-date a {
  text-decoration: none;
}
.blog-index-post-extract {
  font-size: 1.6rem;
}
.text-center {
  text-align: center;
}

/* Content */
.blog-post__body img {
  height: auto;
}
.side-box-content {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
}

/*  Related section */
.newsletter-subcription-content-title,
.blog-related-posts-title-section {
  margin-bottom: 3.2rem;
  font-size: 3.2rem;
  font-family: "gilroy", Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}

/* Newsletter */
@media (max-width: 767.98px) {
  .span5.widget-span.widget-type-cell.cell_1650542158416-vertical-alignment.cell_1650542158416-padding.dnd-column {
    display: none;
  }
}

/* Links with arrow */
.cta-white-arrow:after {
  content: url('https://6097063.fs1.hubspotusercontent-na1.net/hubfs/6097063/Anfix_January2021/images/white-arrow-right.svg');
  margin-left: 9px;
}
/* @import url('http://example.com/example_style.css'); */

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

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

.newsletter-post .content-wrapper {
  max-width: 700px;
}
.newsletter-index-header {
  padding-top: 150px;
  background-color: #fbfbfb;
}

.newsletter-index-listing h2 {
  margin-bottom: 40px;
  text-align: center;
}
.newsletter-post h1 {
  margin-bottom: 3.2rem;
}
@media (max-width: 767.98px) {
  .newsletter-post h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2.4rem;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("https://www.anfix.com/hubfs/Anfix_January2021/fonts/icomoon.eot") format("embedded-opentype"),
	 url("https://www.anfix.com/hubfs/Anfix_January2021/fonts/icomoon.woff") format("woff"), 
	 url("https://www.anfix.com/hubfs/Anfix_January2021/fonts/icomoon.ttf") format("ttf"),
	 url("https://www.anfix.com/hubfs/Anfix_January2021/fonts/icomoon.svg") format("svg");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

.icon-calculator:before {
  content: "\e91e";
}
.icon-suitcase:before {
  content: "\e91b";
}
.icon-office:before {
  content: "\e903";
}
.icon-aeat:before {
  content: "\e919";
}
.icon-asesor:before {
  content: "\e91a";
}
.icon-banco:before {
  content: "\e91b";
}
.icon-consumindor:before {
  content: "\e91c";
}
.icon-freelance:before {
  content: "\e91d";
}
.icon-check-circle:before {
  content: "\e918";
}
.icon-adapted:before {
  content: "\e900";
}
.icon-administration:before {
  content: "\e901";
}
.icon-balance:before {
  content: "\e902";
}
.icon-arrow-left:before {
  content: "\e903";
}
.icon-arrow-right:before {
  content: "\e904";
}
.icon-arrow-up:before {
  content: "\e905";
}
.icon-business:before {
  content: "\e906";
}
.icon-check:before {
  content: "\e907";
}
.icon-close-circle:before {
  content: "\e908";
}
.icon-cloud-technology:before {
  content: "\e909";
}
.icon-desktop:before {
  content: "\e90a";
}
.icon-down:before {
  content: "\e90b";
}
.icon-greater-control:before {
  content: "\e90d";
}
.icon-hand:before {
  content: "\e90e";
}
.icon-phone:before {
  content: "\e913";
}
.icon-rotate:before {
  content: "\e914";
}
.icon-settings:before {
  content: "\e915";
}
.icon-share:before {
  content: "\e916";
}
.icon-facebook:before {
  content: "\e90d";
}
.icon-linkedin:before {
  content: "\e912";
}
.icon-twitter:before {
  content: "\e917";
}
.icon-x:before {
  content: "\e91f";
}
.icon-insta:before {
  content: "\e910";
}
.icon-support:before {
  content: "\e900";
}
.icon-book:before {
  content: "\e90f";
}
.icon-tiktok:before {
  content: "\e921" 
}
.icon-youtube:before {
  content: "\ea9d" 
}
.icon-calculadora:before {
  content: "\e923";
}
.icon-clock:before {
  content: "\e94e"
}
.icon-plantillas:before {
  content: "\e924"
}
.icon-plus:before {
  content: "\e922"
}
.icon-smile:before {
  content: "\e9e1";
}
.icon-link:before {
  content: "\e920"
}