









.modal {
  display: none;      
}
.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  
  transition: opacity 0.2s;
  will-change: opacity;
  background-color: #000;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;      
}

.modal__header {
  /* Optional */
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.modal__close {
  /* Optional */
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='15px' height='16px' viewBox='0 0 15 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='2.-Menu' transform='translate(-15.000000, -13.000000)' stroke='%23000000'%3E%3Cg id='Group' transform='translate(15.000000, 13.521000)'%3E%3Cpath d='M0,0.479000129 L15,14.2971819' id='Path-3'%3E%3C/path%3E%3Cpath d='M0,14.7761821 L15,-1.24344979e-14' id='Path-3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 15px;
  height: 15px;
}

.modal__wrapper {
  width: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 0;

  max-width: 540px;
  max-height: 80vh;
  
  transition: transform 0.2s, opacity 0.2s;
  will-change: transform;
  background-color: #fff;
 
  display: flex;
  flex-direction: column; 

  -webkit-transform: translateY(5%);
  transform: translateY(5%);
  
  -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */

  /* Optional */
  box-shadow: 0 2px 6px #777;
  border-radius: 5px;    
  margin: 20px;  
}

.modal__content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  /* Optional */
  padding: 1.5rem;
}

.modal.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
}

.modal.is-visible .modal__wrapper {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.modal.is-visible .modal__overlay {
  opacity: 0.5;
}









/* 1a. Global Settings */
















  










  











  









/* 1b. Header Settings */















   




/* 1c. Typography */





































































































































  

















/* 1d. Buttons */




















































/* 1e. Forms */






































  








































/* 1f. Tables */


















 


/* 1g. Blog */



















    






















/* 1h. Footer */















/* Theme base styles */

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 28px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 28px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 28px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
.content-wrapper {
    margin: 0 auto;
    max-width: 1240px;
    max-width: 1110px;
    padding: 0 20px;
}

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

.dnd-section,
.content-wrapper--vertical-spacing {
    padding: 80px 20px;
    padding-top: 40px;
     padding-bottom: 40px;
}

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

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

@media (min-width: 768px) {
    .dnd-section {
        padding-top: 60px;
      padding-bottom: 60px;
    }
}

@media (min-width: 1025px) {
    .dnd-section {
        padding-top: 80px;
         padding-bottom: 80px;
    }
}

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

    .dnd-module .widget-type-linked_image img {
        margin-bottom: 10px;
    }
}

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

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

html {
  font-size: 16px;
}


@media(min-width: 768px) {
  html {
      font-size: 16px;
  } 
}


@media(min-width: 1025px) {
  html {
      font-size: 16px;
  }
}

body {
  color: #494A52;
  line-height: 1.4;
  line-height: 1.4;
  letter-spacing: 0px;
  word-break: normal;
  background-color: #FFFFFF;
  
    font-family:'Custom Font 1', Arial; font-weight:400;
  
}



img {
  max-width: 100%;
}

/* Paragraphs */

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

strong {
  font-weight: 700;
}

/* Anchors */

a {
  color: #0270E0;
  color: rgba(130, 130, 130, 1.0);
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus {
  color: rgba(220, 0, 40, 1.0);
}

a:active {
  color: rgba(220, 0, 40, 1.0);
}

a[data-hs-anchor]:empty {
    padding-top: 90px;
    display: inline-block;
    margin-top: -90px;
}

.tag-listing-link-wrapper {
  text-align: right;
}

.read-more {
  color: rgba(220, 0, 40, 1.0);
  font-size: 14px;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.14px;
  font-weight: 700;
  margin-top: 1rem;
}

.read-more:hover,
.read-more:focus {
  color: rgba(220, 0, 40, 1.0);
}

.read-more.link-small {
    display: flex;
}

.read-more.link-small .link-icon {
  padding-left: 5px;
}


@media(min-width: 768px) {
  .read-more {
    font-size: 14px;
  } 
}


@media(min-width: 1025px) {
  .read-more {
    font-size: 14px;
  }
}


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111111;
  font-family: 'Roboto', serif;
  font-weight: 900;
  margin: 0 0 1.4rem;
  font-family:'Custom Font 2', Arial; font-weight:700;
}

h1 {
  font-size: 2.1rem;
  font-size: 35px;
  line-height: 1.1;
  letter-spacing: 0px;
  
    font-family:'Custom Font 2', Arial; font-weight:700;
    color: #828282; 
  
}

h2 {
  font-size: 1.6rem;
  font-size: 30px;
  line-height: 1.21;
  letter-spacing: 0px;
  
    font-family:'Custom Font 2', Arial; font-weight:700;
    color: #828282; 
  
}

h3 {
  font-size: 1.25rem;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: 0px;
  
    font-family:'Custom Font 2', Arial; font-weight:700;
    color: #828282; 
  
}

h4 {
  font-size: 1.175rem;
  font-size: 20px;
  line-height: 1.36;
  letter-spacing: 0px;
  
    font-family:'Custom Font 2', Arial; font-weight:700;
    color: #828282; 
  
}

h5 {
  font-size: 1rem;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0px;
  
    font-family:'Custom Font 2', Arial; font-weight:700;
    color: #828282; 
  
}

h6 {
  font-size: 0.9rem;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.18px;
  text-transform: none;
  
    font-family:'Custom Font 2', Arial; font-weight:700;
    color: #333; 
  
}


@media(min-width: 768px) {
  h1 {
    font-size: 38px;
  } 
  h2 {
    font-size: 30px;
  } 
  h3 {
    font-size: 24px;
  } 
  h4 {
    font-size: 20px;
  } 
  h5 {
    font-size: 18px;
  } 
  h6 {
    font-size: 16px;
  } 
}


@media(min-width: 1025px) {
  h1 {
    font-size: 38px;
  } 
  h2 {
    font-size: 30px;
  } 
  h3 {
    font-size: 24px;
  } 
  h4 {
    font-size: 20px;
  } 
  h5 {
    font-size: 18px;
  } 
  h6 {
    font-size: 16px;
  } 
}

/* Lists */
ul,
ol {
  margin: 0 0 1.5rem;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  margin: 2rem 0;
}

blockquote,
blockquote p,
.hs-blog-post .blog-content-main-wrapper blockquote p {
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: 0px;
  border-left-color: #828282;
  
  
    font-family:'Custom Font 1', Arial; color:#333; font-weight:400;
  

}


@media(min-width: 768px) {
  blockquote,
  blockquote p,
  .hs-blog-post .blog-content-main-wrapper blockquote p {
    font-size: 24px;
  } 
}


@media(min-width: 1025px) {
  blockquote,
  blockquote p,
  .hs-blog-post .blog-content-main-wrapper blockquote p {
    font-size: 24px;
  } 
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}

/* Subscripts and superscripts */

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Focus styles */

:focus {
  outline: auto;
  outline-color: green;
}

.disable-focus-styles :focus {
  outline: none;
}
button,
.button,
.cta_button[title],
.cta_primary,
.cta_secondary {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  word-break: break-word;
}

button,
.button,
.cta_button[title],
.cta_primary {
  background-color: rgba(220, 0, 40, 1.0);
  border: 1px none #dc0028;
  border-radius: 0px;
  color: rgba(255, 255, 255, 1.0);
  padding: 8.5px 18px;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px
}

.button svg {
    fill: rgba(255, 255, 255, 1.0);
}

.button.button--icon-right svg {
  margin-right: 0;
  margin-left: 10px;
}

.button svg {
  margin-right: 5px;
}

button:disabled,
.button:disabled,
.cta_button[title]:disabled,
.cta_primary:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.cta_button[title]:hover,
.cta_button[title]:focus,
.cta_primary:hover,
.cta_primary:focus {
  background-color:rgba(220, 0, 40, 1.0);
  color: rgba(255, 255, 255, 1.0);
  border: 1px none #dc0028;
}

button:active,
.button:active,
.cta_button[title]:active,
.cta_primary:active{
  background-color: #71727A;
  border-color: #71727A;
  color: #FFF;
  text-decoration: none;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
button:active,
.button:active,
.cta_button[title]:hover,
.cta_button[title]:focus,
.cta_button[title]:active,
.cta_primary:hover,
.cta_primary:focus,
.cta_primary:active {
  background-color: rgba(220, 0, 40, 1.0);
  border: 1px none #dc0028;
  color: rgba(255, 255, 255, 1.0);
}

.button--icon-right {
  display: inline-flex;
  flex-direction: row-reverse;
}

/* Secondary Button */

.button.button--secondary,
.cta_button.cta_secondary,
.cta_secondary {
  background-color: rgba(255, 255, 255, 1.0);
  border: 1px none #828282;
  border-radius: 0px;
  color: rgba(51, 51, 51, 1.0);
  padding: 8.5px 18px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0px
}

.button.button--secondary svg,
.cta_button.cta_secondary svg,
.cta_secondary svg {
  fill: rgba(51, 51, 51, 1.0);
}

.button.button--secondary:hover,
.button.button--secondary:focus,
.button.button--secondary:active,
.cta_button.cta_secondary:hover,
.cta_button.cta_secondary:focus,
.cta_button.cta_secondary:active,
.cta_secondary:hover,
.cta_secondary:focus,
.cta_secondary:active {
  background-color: rgba(130, 130, 130, 1.0);
  border: 1px none #828282;
  color: rgba(255, 255, 255, 1.0);
}

/* Simple Button */
.button.button--simple,
.cta_button.cta_simple,
.cta_simple{
  color: rgba(220, 0, 40, 1.0);
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0px;
  background: none;
  padding: 0 !important;
  position: relative;
}

.button.button--simple svg,
.button--simple svg{
  fill: rgba(220, 0, 40, 1.0);
}



  .button.button--simple:after,
  .cta_button.cta_simple:after,
  .cta_simple:after{
    background-color: rgba(255, 255, 255, 1.0);
    bottom: -2px;
    content: '';
    height: 1px;
    position: absolute;
    width: 100%;
    left: 0;
  }



.button.button--simple:hover,
.button.button--simple:focus,
.button.button--simple:active,
.cta_button.cta_simple:hover,
.cta_button.cta_simple:focus,
.cta_button.cta_simple:active,
.cta_simple:hover,
.cta_simple:focus,
.cta_simple:active{
  border: none;
  color: rgba(220, 0, 40, 1.0);
}



  .button.button--simple:hover:after,
  .button.button--simple:focus:after,
  .button.button--simple:active:after,
  .cta_button.cta_simple:hover,
  .cta_button.cta_simple:focus,
  .cta_button.cta_simple:active,
  .cta_simple:hover,
  .cta_simple:focus,
  .cta_simple:active {
    background-color: rgba(220, 0, 40, 1.0);
  }



/* Button Sizing */
.button.button--small,
.cta_button.button--small {
  font-size: 14px;
  padding: 11px 20px;
}

.button.button--large,
.cta_button.button--large {
  font-size: 18px;
  padding: 25px 40px;
}
/* Form fields */

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

/* Form */

form {
  font-family: Lato, sans-serif;
  
    font-family: 'Custom Font 1', Arial;
  
  background-color: rgba(255, 255, 255, 0.0);
  border: 1px none #f6aa2d;
  border-radius: 0px;
  padding: 0px 0px;
}



fieldset.form-columns-1 .hs-input:not([type="checkbox"]):not([type="radio"]) {
  width: 100% !important;
}

/* Form Title */

.form-title {
  background-color: rgba(239, 242, 246, 1.0);
  border: 1px none #D0D0D0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #333;
  padding: 25px 0px;
  margin-bottom: 0;
}


/** special labels **/
.field {
    position: relative;
}

.field.text>label {
    position: absolute;
    top: 0;
    margin: 12px 12px;
    padding: 0;
    pointer-events: none;
    transition: .4s;
    left: 0;
    z-index: 2;
    padding: 0;
}

.field.text.active>label {
    margin-top: 5px;
    font-size: 13px;
}

.focus label,
.active label{
    font-size:13px;
}

/* animation to add space for label and reduce right before the send button */
.field.text {
    transition: .3s;
}

.field.text.active~button,
.field.text.active~input[type='submit'],
.field.text.active~.hs-button {
    margin-top: 1rem;
}


/* Form Title */

.form-title {
  background-color: rgba(239, 242, 246, 1.0);
  border: 1px none #D0D0D0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #333;
  padding: 25px 0px;
  margin-bottom: 0;
}

/* Labels */

form label,
.hs-form-field > label {
  color: #33475B;
  display: block;
  font-size: 0.875rem;
  padding-top: 0;
  margin-bottom: 0.35rem;
  text-align: left;
  width: auto;
  font-size: 16px;
  padding: 6px 0px;
  
    font-family:'Custom Font 1', Arial; font-weight:400;
    color: #333333;
  
  letter-spacing: 0px;
}


/* Help text - legends */

form legend,
.hs-form-field legend {
  color: #33475B;
  font-size: 0.875rem;
  color: #333333;
  font-size: 12px;
  line-height: 1.4;
}

/* Inputs */

.input {
  position: relative;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
select,
textarea {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 3px;
  color: #33475B;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  min-height: 45px; 
  
    font-family:'Custom Font 1', Arial; font-weight:400;
    color: #333333;
  

  background-color: rgba(255, 255, 255, 1.0);
  border: 1px none #111111;
  border-radius: 2px;
  font-size: 16px;
  padding: 12px 12px;
  padding-top:22px;
  letter-spacing: 0px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
select:focus,
textarea:focus {
  outline-color: rgba(82, 168, 236, 0.8);
}

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


::-webkit-input-placeholder {
  color: #333333;
}

::-moz-placeholder {
  color: #333333;
}

:-ms-input-placeholder {
  color: #333333;
}

:-moz-placeholder {
  color: #333333;
}

::placeholder {
  color: #333333;
}


/* Inputs - checkbox/radio */

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

.inputs-list > li {
  display: block;
  margin: 0.7rem 0;
  padding: 0;
  width: 100%;
}

.inputs-list>li label {
    padding-top: 0;
    padding-bottom: 0;
}

.inputs-list input,
.inputs-list span {
  font-size: 0.875rem;
  vertical-align: middle;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  border: none;
  cursor: pointer; 
  line-height: normal;
  margin: 0px 15px 3px 0px;
  padding: 0;
  width: auto;
  border-radius: 2px;
}

input[type=radio],
input[type=checkbox]{
    background-color: #FFFFFF;
    -webkit-appearance: none;
    width: 24px !important;
    height: 24px;
    margin-right: .9rem;
    margin-top: 2px;
    float: left;
}

input[type=radio]{
  border-radius: 50% !important;
  border: 6px solid #fff;
  color: transparent;
  border: none;
}

input[type=radio]:checked {
  background-color: #dc0028;
  box-shadow: 0px 0px 8px 0px #d2d2d2;
  -webkit-box-shadow: 0px 0px 8px 0px #d2d2d2;
  -moz-box-shadow: 0px 0px 8px 0px #d2d2d2;
  border: 6px solid #FFFFFF;
}

input[type=checkbox]:checked {
  background-color: #FFFFFF;
}

input[type=checkbox]:checked:before {
  content: "";
  display: block;
  margin: 3px auto;
  width: 8px;
  height: 13px;
  border: solid #dc0028;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.hs-fieldtype-radio > label,
.hs-fieldtype-checkbox > label {
    font-weight: bold;
    font-style: normal;
    margin-bottom: 10px;
    display: block;
    margin-top: 20px;
}


/* Inputs - datepicker */
.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  color: #33475B;
  content:'\01F4C5';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.fn-date-picker td.is-today .pika-button {
  color: #343A40;
}

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

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

/* Inputs - Datepicker */

.hs-datepicker .is-selected button.pika-button {
  background-color: #828282;
}

.hs-datepicker button.pika-button:hover {
  background-color: #dc0028 !important;
}


/* Inputs - file picker */

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

/* Headings and text */

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

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

form .header {
  background-color: transparent;
  border: none;
}

form .hs-richtext,
form .hs-richtext *,
form .hs-richtext p,
form .hs-richtext h1,
form .hs-richtext h2,
form .hs-richtext h3,
form .hs-richtext h4,
form .hs-richtext h5,
form .hs-richtext h6 {
  color: #333333;
  line-height: 1.67;
}

/* GDPR */

form .legal-consent-container, 
form .legal-consent-container .hs-richtext, 
form .legal-consent-container .hs-richtext p {
  color: #333333;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0px;
}

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


/* Validation */

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

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

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


.hs_error_rollup {
  display: none;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  background-color: #494A52;
  border: 1px solid #494A52;
  border-radius: 6px;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  font-weight: normal;
  height: auto;
  line-height: 1.1;
  margin: 0;
  padding: 15px 53px;
  position: relative;
  text-align: center;

  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;
  word-break: break-word;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background-color: #21222A;
  border-color: #21222A;

  color: #FFF;
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: #71727A;
  border-color: #71727A;

  color: #FFF;
}

/* Submit */



  form input[type=submit],
  form .hs-button {
    background-color: rgba(220, 0, 40, 1.0);
    border: 1px none #dc0028;
    border-radius: 0px;
    color: rgba(255, 255, 255, 1.0);
    padding: 8.5px 18px;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0px
  }

  form input[type=submit]:hover,
  form input[type=submit]:focus,
  form .hs-button:hover,
  form .hs-button:focus,
  form input[type=submit]:active,
  form .hs-button:active {
    background-color: rgba(220, 0, 40, 1.0);
    border: 1px none #dc0028;
    color: rgba(255, 255, 255, 1.0);
  }





  form input[type=submit],
  form .hs-button {
    font-size: 16px;
    padding: 8.5px 18px;
  }



/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}



@media(min-width: 768px) {
  form label,
  .hs-form-field > label,
  form .hs-richtext,
  form .hs-richtext p {
    font-size: 16px;
  } 

  input[type=text],
  input[type=email],
  input[type=password],
  input[type=tel],
  input[type=number],
  input[type=file],
  select,
  textarea {
    font-size: 16px;
  } 

}



@media (max-width: 480px) {
	.form-columns-2 .hs-form-field .hs-input { 
		width: 100% !important
	}
}
/* Table */

table {
  border: 1px solid #DEE2E6;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
  background-color: rgba(255, 255, 255, 1.0);
  border-color: 1px solid #333333;
}

tbody + tbody {
  border-top: 2px solid #DEE2E6;
  border-top-color: #333333;
}

/* Table Cells */

th,
td {
  border: 1px solid #DEE2E6;
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #333333;
  color: #333333;
  padding: 15px 15px;
}

/* Table Header */

thead th,
thead td {
  background-color: #343A40;
  border-bottom: 2px solid #DEE2E6;
  color: #FFF;
  vertical-align: bottom;
  background-color: rgba(220, 0, 40, 1.0);
  border-bottom-color: 2px none #333333;
  color: #FFFFFF;
}

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

/* Header container */
.header {
  background-color: #F8FAFC;
  background-color: rgba(255, 255, 255, 1.0);
  font-family:'Custom Font 2', Arial; font-weight:400;
  font-size: 18px;
  color: rgba(130, 130, 130, 1.0);
  position: relative;
  padding: 10px 20px;
  
}

.header.header-scroll {
  box-shadow: 0 2px 3px 0 rgb(0 0 0 / 5%);
}

.header.header-scroll .top-navigation,
.header.header-scroll ~ #hs_cos_wrapper_breadcrums_menu .cm-breadcrumbs {
    display: none;
}

.header__container {
  margin: 0 auto;
  max-width: 1110px;
}

.header__container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}

.header__row-1,
.header__row-2 {
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
justify-content: space-between;
width: 100%;
}

body.body-header__scroll [data-global-resource-path*=header], 
body.body-header__scroll header.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

body.body-header__scroll header.header.header-scroll ~ .display-breadcrumbs {
    display: none !important;
}

body [data-global-resource-path*=header_no_navigation], 
body [data-global-resource-path*=header_no_navigation] header {
    position: relative !important;
}


.header__search_cta_wrapper {
  display: flex;
  align-items: center;
}

/* Logo */

.header__logo {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: auto;
max-width: 200px;
overflow: hidden;
  margin-right: 20px;
}

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

.header__logo .logo-company-name {
font-size: 28px;
margin-top: 7px;
}

.header--no-navigation {
  padding-top: 20px;
  padding-bottom: 20px;
}

.header--no-navigation .header__logo {
margin: 0 auto;
}



/* Language switcher */

.header__language-switcher {
  cursor: pointer;
}

.top-navigation .header__container  {
  justify-content: flex-end;
}

.header__language-switcher .lang_switcher_class {
position: static;
}

.header__language-switcher .lang_list_class {
border: 2px solid #D1D6DC;
border-radius: 6px;
box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
color: #494A52;
display: block;
font-family: Lato, serif;
font-size: 0.8rem;
left: calc(100% - 33px);
opacity: 0;
min-width: 150px;
padding-top: 0;
text-align: left;
top: 120%;
transition: opacity 0.3s;
visibility: hidden;
}

.header__language-switcher:hover .lang_list_class {
opacity: 1;
transition: opacity 0.3s;
visibility: visible;
}

.header__language-switcher .lang_list_class:before {
border-bottom-color: #D1D6DC;
left: 70%;
top: -25px;
}

.header__language-switcher .lang_list_class:after {
left: 70%;
top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
border-bottom-color: #EBEFF3;
top: -22px;
transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
border: none;
font-size: 18px;
padding: 10px 15px;
}

.header__language-switcher .lang_list_class li:first-child {
border-radius: 6px 6px 0 0;
border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
border-bottom: none;
border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
background-color: #EBEFF3;
transition: background-color 0.3s;
}

.header__language-switcher .lang_list_class li a {
color: #494A52;
font-family: Lato, serif;
}

.header__language-switcher .lang_list_class li a:hover {
color: #494A52;
}

.header__language-switcher--label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;   
  justify-content: flex-end;
}

.header__language-switcher--label-current {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: inherit;
}

.header__language-switcher--label-current:after {
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 6px solid #494A52;
content: "";
display: block;
height: 0px;
margin-left: 10px;
margin-top: 3px;
width: 0px;
}

.header__language-switcher .globe_class {
  background-image: none;
}

/* Navigation */

#nav-toggle {
display: none;
}

.header__menu--flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}


@media(min-width: 1025px) {
  .header__column {
      width: 100%;
  }

  li.has-submenu:hover>.submenu,
  li.has-submenu.focus>.submenu {
      visibility: visible;
      opacity: 1;
      transition: visibility 0s,opacity .3s;
  }

  .submenu.level-2 {
      top: 75px;
      left: 50%;
      transform: translateX(-50%);
  } 

  .submenu .submenu {
      top: 0;
      left: 100%;
      transform: none;
      width: 200px;
      text-transform: none;
      border-radius: 6px;
      box-shadow: 0 2px 9px 0 rgba(0,0,0,0.2);
      transition: visibility 0s, opacity 0.3s;
  }

  body .submenu.level-2 .menu-item .menu-link {
      background-color: rgba(255, 255, 255, 1.0);
      color: rgba(130, 130, 130, 1.0);
  }

  body  .submenu.level-2 .menu-item .menu-link ~ .menu-arrow {
      color: rgba(130, 130, 130, 1.0);
  }

  body .submenu.level-2 .menu-item .menu-link:hover,
  body .submenu.level-2 .menu-item .menu-link:focus,
  body .submenu.level-2 .menu-item .menu-link:hover ~ .menu-arrow,
  body .submenu.level-2 .menu-item .menu-link:focus ~ .menu-arrow{
      color: rgba(130, 130, 130, 1.0);
  }
  
  .header__element-mobile {
      display: none;
  }

}


/* Mobile styles */

@media (max-width: 1024px) {
  
  /* header nav toggle */
    .header__navigation--toggle {
        width: 38px;
        height: 26px;
        right: 0;
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        position: absolute;
        cursor: pointer;
        z-index: 999;
        top: 15px;
    }

    .header__navigation--toggle span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: rgba(130, 130, 130, 1.0);
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    
    .header__navigation--toggle span:nth-child(1) {
        top: 0px;
    }

    .header__navigation--toggle span:nth-child(2),
    .header__navigation--toggle span:nth-child(3) {
        top: 10px;
    }

    .header__navigation--toggle span:nth-child(4) {
        top: 20px;
    }

    .header__navigation--toggle.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

    .header__navigation--toggle.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header__navigation--toggle.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .header__navigation--toggle.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

    .header__navigation__mobile_group {
        background-color: rgba(255, 255, 255, 1.0);
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        overflow-y: auto;
        min-width: 200px;
        width: 90%;
        max-width: 400px;
        display: inline-block;
        padding: 6rem 2rem 2rem;
        box-shadow: 0 0 1px rgb(39 39 39 / 50%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -o-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform .5s;
        transition: transform .5s;
        z-index: 99;
    }

    .header__navigation__mobile_group.open {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);

    }

    body .submenu.level-1 > li {
        border-bottom: 1px solid rgba(130, 130, 130, 1.0);
    }
  
    body .submenu.level-1 > li {
        padding: 0;
    }
  
    body .submenu.level-1 > li a {
        padding-top: 16px;
        padding-bottom: 16px;
    }
  
    body ul.level-2 li a {
        padding: 12px 20px !important;
    }
  
    body ul.level-3 li a {
        padding: 12px 40px !important;
    }
  
    body .submenu.level-2 .menu-item {
        border-top: 1px solid rgba(130, 130, 130, 1.0);
    }
  
    body .submenu.level-2 .has-submenu .menu-arrow {
        transform: none;
        right: 10px;
        top: 9px;
    }

    .header__search_cta_wrapper {
        margin-top: 2rem;
        display: block;
    }
  
    body .submenu.level-1>.has-submenu>.menu-arrow {
        top: 21px;
    }
  
    .submenu.level-2, 
    .submenu.level-3 {
        border: 0;
        box-shadow: none;
        opacity: 1 !important;
        position: static !important;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        visibility: visible !important;
        width: 100% !important;
        z-index: 2;
    }
  
  .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    /*flex-direction: column;
    padding: 20px 0 0;*/
    justify-content: space-between;
  }

  .header__container form {
    max-width: 100%;
  }
  
  .top-navigation .header__language-switcher {
      display: none !important;
  }
  
  .header__language-switcher .lang_list_class {
      right: -43px;
      left: initial;
      top: 200%;
  }


  .header__search.open {
    background-color: #F8FAFC;
    display: block;
    height: calc(100vh - 115px);
    left: 0;
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }




  .header__column {
    position: relative;
  }

  .header__row-2 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px;
  }


  .header__language-switcher--toggle {
   /* background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;*/
    height: 25px;
    width: 25px;
    top: 5px;
    position: relative;
    margin-right: 4rem;
  }


  .header__language-switcher--label-current {
    display: none;
  }

  .header__search--toggle {
    display: none !important;
  }
  
  .header__search {
      margin-bottom: 2rem;
  }
  
  .header__search .header__search-input {
      display: block;
      position: relative;
      top: 0;
      width: 100%;
  }

  .header__search .hs-search-field__input {
    padding-left: 15px;
  }

  .header__search .hs-search-field__suggestions li {
    padding: 10px 0;
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}

body .navigation-primary a,
.header__logo .logo-company-name,
.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
font-family:'Custom Font 2', Arial; font-weight:400;
color: rgba(130, 130, 130, 1.0);
text-transform: none;
letter-spacing: 0px;
line-height: 1.2;
font-size: 18px;
}

.hs-breadcrumb-menu-item a,
.hs-breadcrumb-menu-item { 
  
    font-family:'Custom Font 1', Arial; font-weight:400;
  
  
  
    font-family: 'Custom Font 2', Arial
  
}

.hide-breadcrumbs {
  display:none;
}
.display-breadcrumbs {
  display:block !important
}


body .navigation-primary a:hover,
body .navigation-primary a:focus,
body .navigation-primary a:hover ~ .menu-arrow,
body .navigation-primary a:focus ~ .menu-arrow,
.header__language-switcher-label-current:hover,
.header__language-switcher-label-current:focus,
.header__language-switcher .lang_list_class li:hover a,
.header__language-switcher .lang_list_class li a:focus, 
body .navigation-primary a:active,
body .header__language-switcher-label-current:active,
body .header__language-switcher .lang_list_class li a:active,
.hs-breadcrumb-menu-item a:hover,
li.hs-breadcrumb-menu-item.last-crumb {
color: rgba(130, 130, 130, 1.0);
}

body .navigation-primary .submenu.level-1 > li > a.active-item:after {
background-color: #dc0028;
}

/*body .submenu.level-2 .menu-item .menu-link,*/
body .header__language-switcher .lang_list_class,
body .submenu.level-2 > li:first-child:before {
background-color: rgba(255, 255, 255, 1.0);

}



body .submenu.level-2 .menu-item .menu-link:hover,
body .submenu.level-2 .menu-item .menu-link:focus,
body .header__language-switcher .lang_list_class li:hover,
body .submenu.level-2 > li:first-child:hover:before,
body .submenu.level-2 > li:first-child.focus:before {
background-color: rgba(255, 255, 255, 1.0);
}

.header__language-switcher .lang_list_class.first-active::after {
border-bottom-color: rgba(255, 255, 255, 1.0);
}



.header__language-switcher-label-current:after {
border-top-color: rgba(130, 130, 130, 1.0);
}

@media(max-width: 767px) {
.header__navigation {
  background-color: rgba(255, 255, 255, 1.0);
}

.header__navigation-toggle svg,
.menu-arrow svg {
  fill: rgba(130, 130, 130, 1.0);
}
}

.header-top .row-fluid [class*=span],
.header-bottom .row-fluid [class*=span]{
    min-height: 0;
}
.footer {
  background-color: rgba(255, 255, 255, 1.0);
}

.cta-container {
  margin: 0 auto;
} 

.cta-wrapper  {
  max-width: 603px;
  margin: 0 auto;
}

.footer__container {
  max-width: 1110px;
  margin: 0 auto;
}

.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #333;
  margin-bottom: 24px;
}

.footer,
.footer p,
.footer span,
.footer i {
  color: #828282;
}

.footer a:not(.cta_button):not(.cta-primary):not(.cta-secondary) {
  color: #828282;
}

.footer a:not(.cta_button):not(.cta-primary):not(.cta-secondary):hover,
.footer a:not(.cta_button):not(.cta-primary):not(.cta-secondary):focus {
  color: rgba(220, 0, 40, 1.0);
}

.footer hr {
  color: rgba(213, 213, 213, 1.0);
  background-color: rgba(213, 213, 213, 1.0);
}


.footer,
.footer p,
.footer span,
.footer li {
font-size: 16px;
}

.footer__copyright {
padding: 1rem 0;
}

.footer__copyright > div {
padding: .5rem 0;
}


body .footer-social-links .social-links__link {
    background: rgba(255, 255, 255, 1.0);
    height: 48px;
    width: 48px;
    border-radius: 50%;
    margin: 0 5px;
    position: relative;
}

body .footer-social-links .social-links__link:hover {
    background: rgba(255, 255, 255, 1.0);
}

body .footer-social-links .social-links__icon svg {
  fill: #dc0028;
}

body .footer-social-links .social-links__link:hover,
body .footer-social-links .social-links__link:hover svg {
  fill: rgba(220, 0, 40, 1.0);
}

.footer-single-content .social-media-content a {
  display: inline-block;
  width: 22.3px;
  height: 22.3px;
  text-align: center;
  background-color: rgba(255, 255, 255, 1.0);
  color: #dc0028;
  margin-right: 13px;
  border-radius: 2px;
}

.footer-single-content .social-media-content a span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.footer-single-content .social-media-content a svg {
  width: 15px;
  height: 15px;
  fill: #dc0028;
}

.footer-single-content .social-media-content a:hover,
.footer-single-content .social-media-content a:hover svg {
  background-color: rgba(255, 255, 255, 1.0);
  fill: rgba(220, 0, 40, 1.0);
}

.footer .hs-menu-wrapper .hs-menu-item {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.footer .hs-menu-wrapper .hs-menu-item:first-child {
  padding-top: 0;
}

.footer .hs-menu-wrapper .hs-menu-item a {
  padding-right: 0;
  padding-left: 0;
}

/* Footer LP */

.footer-landing .footer__container {
  padding:  1rem ;
      display: flex;
    justify-content: space-between;
    align-items: center;
}


/* test commit tes 2*/
@media(max-width: 767px) {
  .footer__content--column > div > div:first-child {
      margin-top: 2rem;
  }

  .footer {
      text-align: center;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
.tns-outer{padding:0 !important}.tns-outer [hidden]{display:none !important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}.tns-slider>.tns-item{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;-webkit-transition:transform 0s, opacity 0s;-moz-transition:transform 0s, opacity 0s;transition:transform 0s, opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto !important}.tns-gallery>.tns-moving{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;transition:all 0.25s}.tns-autowidth{display:inline-block}.tns-lazy-img{-webkit-transition:opacity 0.6s;-moz-transition:opacity 0.6s;transition:opacity 0.6s;opacity:0.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;filter:alpha(opacity=100);z-index:0}.tns-normal,.tns-fadeOut{opacity:0;filter:alpha(opacity=0);z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:-webkit-calc(100% * 70 / 3);width:-moz-calc(100% * 70 / 3);width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:-webkit-calc(100% / 70);width:-moz-calc(100% / 70);width:calc(100% / 70);height:10px;float:left}
/* tinysldier css */
.tns-controls {
    text-align: center;
    margin-bottom: 10px;
}

.tns-nav {
    text-align: center;
    margin: 10px 0;
}

.tns-nav > [aria-controls] {
    width: 9px;
    height: 9px;
    padding: 0;
    margin: 0 5px;
    border-radius: 50%;
    background: #ddd;
    border: 0;
}

.tns-nav > .tns-nav-active {
    background: #999;
}

.tns-outer [data-action] {
    display: none;
}

.tns-controls button[data-controls="prev"],
.tns-controls button[data-controls="next"] {
  border: none;
  background: none;
  display: block !important;
  width: 15px;
  height: auto;
  position: absolute;
  top: -1rem;
  bottom: 0;
  background: none;
}

.tns-controls button[data-controls="prev"] svg, 
.tns-controls button[data-controls="next"] svg {
    height: 30px;
    width: 30px;
}

.tns-controls button[data-controls="prev"] {
   margin-left: -3rem;
}

.tns-controls button[data-controls="next"] {
   right: -3rem;
}



@media(max-width: 1110px) {
  .testimonial-slider.with-nav {
      padding-right: 40px;
      padding-left: 40px;
  }
  
  .tns-controls button[data-controls="next"] {
      right: 0 !important;
  }
  
  .tns-controls button[data-controls="prev"] {
     margin-left: -2rem;
  }
}


.header__container.standard,
.footer__container.standard,
.cta-container {
    max-width: 1110px;
}

.header__container.full,
.footer__container.full {
   max-width: 100%;    
   padding-right: 2rem;
   padding-left: 2rem;
}
/* COMMON */

.blog-content-main-wrappper {
  background: #f7f8fa;
  padding: 70px 20px;
}


.hs-blog-post .blog-content-main-wrapper,
.hs-blog-post .blog-content-main-wrapper p{
  color: #333333;
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: 0px;
}

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


@media(min-width: 768px) {
  .hs-blog-post .blog-content-main-wrapper,
  .hs-blog-post .blog-content-main-wrapper p{
      font-size: 16px;
  }
}


@media(min-width: 1025px) {
  .hs-blog-post .blog-content-main-wrapper,
  .hs-blog-post .blog-content-main-wrapper p{
      font-size: 18px;
  }

}

/* Blog Hero Image */
.blog-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-header__inner {
  max-width: 1110px;
  margin: 0 auto;
  padding: 4.5rem 12px 1rem;
}

.blog-header__subtitle {
  margin: 1rem 0 2rem;
  max-width: 500px;
}

/* Blog Tag Header */
.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 Menu Topics */
.blog-index__topics {
  width: 100%;
  margin-bottom: 2rem;
}
.blog-index__topics__menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.blog-index__topics__menu li{
}
.blog-index__topics__menu li a {
  display: block;
  font-size: 13px;
  line-height: 1em;
  padding: 12px 0;
  letter-spacing: 0.52px;
  text-align: center;
  text-transform: uppercase;
  color: #333333;
  border-bottom: 3px solid transparent; 
  transition: .4s;
  margin: 0 20px;
  opacity: 0.3;
  font-weight: 600;
}

.blog-index__topics__menu li a.active{
  color: #dc0028;
  border-color: #dc0028;
  opacity: 1;
}
.blog-index__topics__menu li a:hover:not(.active){
  color: #dc0028;
  border-color: #dc0028;
}


/* Blog index */
.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
  justify-content: space-between;
}

.blog-index.no-topic-menu {
    padding-top: 0;
}

.blog-index:after {
  content: "";
  flex: auto;
}

.blog-index__post {
  position: relative;
  flex: 0 0 100%;
  padding: 0;
  margin-bottom: 30px;
  overflow: hidden;
  color: #333333;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 1.0);
  border-radius: 0px;
  
}

.blog-index__post p {
  font-size: 16px;
}

.blog-recent-posts__title-content {
  padding: 30px 25px;
}

.blog-index__post-size--large p,
.blog-index__post-size--large,
.blog-index__post-size--large .read-more  {
  font-size: initial;
}



.blog-index__post .blog-index__post-content {
  display: block;
}

.blog-index__post .blog-index__post-content img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}


.blog-index__post.block-subscribe {
  
  background-color: rgba(220, 0, 40, 1.0);
  padding: 30px 25px;
}

.blog-index__post.block-subscribe *,
.blog-index__post.block-subscribe form .legal-consent-container .hs-richtext, 
.blog-index__post.block-subscribe form .legal-consent-container .hs-richtext p {
   color: #ffffff;
}


.blog-index__post.block-subscribe .hs-input,
.blog-index__post.block-subscribe .field label span {
  color: #333333;
}

.blog-index__post.block-subscribe .form-title {
  display: none;
}

.blog-index__post.block-subscribe form input[type=submit] {
  font-weight: normal
}

@media screen and (min-width: 768px) {
  .blog-index {
      padding: 4rem 0;
  }
  .blog-index:after,
  .blog-index__post {
      flex-grow: 0;
      flex-shrink: 0;
      flex-basis: calc((100% - 28px)/2);
  }

  .blog-index__post {
      margin-bottom: 56px;
  }

}

@media screen and (min-width: 1000px) {
  .blog-index:after,
  .blog-index__post {
      flex-grow: 0;
      flex-shrink: 0;
      flex-basis: calc((100% - 56px)/3);
  }
}

/* Blog Related Posts, Recent Posts and Newsletter */

/* related */
.blog-related-posts {
  background-color: rgba(247, 248, 250, 1.0);
  color: #0d0a0a;
  margin-top: 3rem;
  padding: 4rem 0 2rem;
}

.blog-related-posts .related-posts-title * {
  color: #0d0a0a;
}

.blog-related-posts .related-posts-title {
  max-width: 630px;
}



.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0 0;
}

/* recent */
.blog-recent-posts {}
.blog-recent-posts__image{
  height: 182px;
  position: relative;
  overflow: hidden;
}
.blog-recent-posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-object-fit .blog-recent-posts__image img {
  height: auto;
}

@media(min-width: 800px){
  .blog-recent-posts__image {
      height: 182px;
      padding: 0;
  }
}

.blog-recent-posts__content {
     padding: 10px 0; 
}

.blog-index__post-content--large h3 a,
.blog-recent-posts__title a,
.blog-index__post-title a {
  color: #828282;
}

.blog-newsletter__wrapper, 
.blog-recent-posts__post {
  display: block;
  height: 100%;
}

.blog-newsletter__wrapper {
  height: auto;
}

.blog-index__widget--newsletter,
.blog-newsletter__wrapper {
  background-color: rgba(220, 0, 40, 1.0);
}

.blog-index__widget--newsletter .blog-newsletter-padding,
.blog-newsletter__wrapper .blog-newsletter-padding {
  padding: 30px 25px;
}

.blog-newsletter__wrapper,
.blog-newsletter__wrapper p,
.blog-newsletter__wrapper div,
.blog-newsletter__wrapper .blog-newsletter__title span,
.blog-newsletter__wrapper h2,
.blog-newsletter__wrapper h3,
.blog-newsletter__wrapper h4,
.blog-newsletter__wrapper h5,
.blog-newsletter__wrapper h6
.blog-newsletter__wrapper a,
.blog-newsletter__wrapper .legal-consent-container .hs-richtext p, 
.blog-newsletter__wrapper .legal-consent-container .hs-richtext a, 
.blog-newsletter__wrapper .legal-consent-container .hs-richtext{
  color: #ffffff;
}

.blog-newsletter__wrapper .form-title {
  display: none;
}

.blog-newsletter__bottomImage {
  max-width: 200px;
  margin: 2rem auto 0;
}

/* featured */
.blog-index__post-content {
}

.blog-index__post-image {
  display: block;
}

.blog-index__post-image img {
  max-width: 100%;
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

.blog-index__post.blog-index__post-size--large .blog-index__post-content {
  height: auto !important;
  padding: 3rem;
}

.blog-index__post.blog-index__post-size--large .blog-index__post-image {
   height: 100%;
}

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

  .blog-index__post.blog-index__post-size--large {
      flex: 1 0 100%;
      display: flex;
      flex-direction: row-reverse;
  }
  
  .blog-index__post.blog-index__post-size--large .blog-index__post-image-wrapper {
      flex: 1 1 48%;
      height: 520px;
  }

  .blog-index__post.blog-index__post-size--large .blog-index__post-content {
      flex: 1 1 48%;
      padding-left: 2rem;
  }
}

@media(max-width: 767px) {
  .blog-index__post.blog-index__post-size--large .blog-index__post-image-wrapper {
      height: 182px;
  }

  .blog-index__post.blog-index__post-size--large .blog-index__post-content {
    padding:30px 25px;
  }

}


/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 4.3rem;
}

.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .4rem;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  color: #333333;
  background-color: rgba(255, 255, 255, 1.0);
  transition: .4s;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}

.blog-pagination__link--active,
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
  background-color: rgba(220, 0, 40, 1.0);
  color: #ffffff
}

.blog-pagination__prev-link:hover svg,
.blog-pagination__next-link:hover svg {
  fill: #ffffff
}

.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
}

.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: #333333;
  margin: 0 3px;
}

.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #ccd7e3;
}

/* Blog index tag */
.blog-index-tag {
  padding-top: 2rem;
}

.blog-index-tag .blog-index__topics__menu {
  margin-top: 0;
}

/* Blog author */
.blog-index__author-details {
  margin-top: 1rem;
}

.blog-index__author-social-links {
  margin-bottom: 2em;
}

.blog-index__author-social-links a {
  display: inline-block;
  margin: 0 8px;
}

.blog-index__author-social-links svg {
  height: 18px;
  width: 18px;
}

/* blog post */
.blog-post h1 {
  text-align:center;
}

.blog-post__meta.author-wrap {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.blog-post .blog-header__author-avatar {
  padding-right: 14px;
}

.blog-post a:not(.blog-post__tag-link):not(.blog-header__author-name) {
  text-decoration: underline;
}

.blog-post__meta {
  margin: 1rem 0;
}

.blog-post__meta a {
  text-decoration: none;
  font-weight: 500;
  color: #828282;
}

.blog-post__timestamp{
  line-height: normal;
  color:#7c807d;
  font-size: 14px;
}

.blog-post {
  max-width: 920px;
  margin: 0 auto;
  padding: 3.3rem 0;
}

.blog-post-inner {
  max-width: 730px;
  margin: 0 auto;
}


.hs-blog-post .blog-post__body {
  margin-top: 2rem;
}

.hs-blog-post .blog-header__author-avatar:not(.blog-post_author_bottom-avatar) img {
  width: 56px;
  height: 56px;
  margin: 0 1rem 0 0;
  float: left;
  overflow: hidden;
  border-radius: 50%;
}

.blog-post_author {
  padding-top: 2rem;
}

.blog-post_author .blog-header__author-avatar {
  margin-bottom: 1rem;
}

.blog-post_author .blog-header__author-avatar img {
  border-radius: 50%;
      width: 80px;
    height: 80px;
    object-fit: cover;
}

.hs-blog-post .blog-content-main-wrapper .blog-post_author .blog-post_author-details,
.hs-blog-post .blog-content-main-wrapper .blog-post_author .blog-post_author-details p  {
    font-size: 90%;
    line-height: 1.5;
}

.hs-blog-post .blog-content-main-wrapper .blog-post_author .blog-post_author-details p.blog-header__author-name-wrapper  {
    margin-bottom: 5px;
    font-size: 1rem;
}

.blog-post_author .blog-post_author-details .blog-header__author-name-wrapper a {
    font-weight: bold;
}


@media(min-width: 768px){
  .blog-post_author {
      display: flex;
      flex-wrap: wrap;
  }

  .blog-post_author .blog-header__author-avatar {
      width: 100px;
      margin-right: 1rem;
  }

  .blog-post_author .blog-post_author-details {
      width: calc(100% - 120px);
  }

}

@media(min-width: 724px){
  .blog-post__body img.big {
      margin-left: -94px;
      margin-right: -94px;
      display: inline-block;
      max-width: calc(100% + 94px *2);
  }
}
@media(min-width: 912px){
  .blog-post__body img {
      max-width: 912px;
      margin: 1rem calc((-912px + 724px) / 2 ) 0;
  }
}

/* blog tags */

.blog-post__tags {
    margin-bottom: 10px;
    font-family: arial, helvetica, sans-serif
}

.blog-post__tags a:first-child {
  padding-left: 0;
}

.blog-post__tag-link {
  display: inline-block;
  color: #dc0028;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
  display: inline-block;
  margin-right: 3px;
}

.blog-post__tag-link:hover {
  color: #0d0a0a;
}

/* blog post read more */
.blog-post__recent-posts-readmore {
    margin-top: 4rem;
}

.blog-post__recent-posts-readmore ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.blog-post__recent-posts-readmore ul li {
    margin-bottom: 20px;
}

/* Blog Comments */

.blog-comments {
  max-width: 800px;
  margin: 0 auto;
}

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

.blog-comments form input[type=text],
.blog-comments form input[type=email], 
.blog-comments form select, 
.blog-comments form textarea
 {
  border: 1px solid #d5d5d5;
}

.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;
}


#comments-listing .comment-reply-to {
  color: rgba(130, 130, 130, 1.0);
}

#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
  color: rgba(130, 130, 130, 1.0);
}

#comments-listing .comment-reply-to:active {
  color: rgba(130, 130, 130, 1.0);
}

/** In content editor test **/
html.hs-inline-edit .blog-post__body {
  min-height: 200px;
}