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











































/********* CSS **************/

.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index:99999999999999;
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 5px 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: rgba(33, 33, 33, 0.97);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: rgba(33, 33, 33, 0.97);
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: rgba(33, 33, 33, 0.97);
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: rgba(33, 33, 33, 0.97);
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: rgba(33, 33, 33, 0.97);
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: rgba(33, 33, 33, 0.97);
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: rgba(33, 33, 33, 0.97);
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: rgba(33, 33, 33, 0.97);
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: rgba(33, 33, 33, 0.97);
}
/* ******************************************************************************
*********************************************************************************
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: hidden;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

dnd-section {
  padding: 80px 20px;
}
.banner-area .dnd-section {
  padding: 0;
}

main.body-container-wrapper .dnd-section > .row-fluid, .content-wrapper {
  width: 100%;
  padding: 30px 30px;
  margin: 0 auto 0 auto;
  position: relative;
}

@media screen and (min-width: 1681px){
  main.body-container-wrapper .dnd-section > .row-fluid, .content-wrapper{
    width:80%;
  }
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

.dnd-section[class*="-force-full-width-section"]>.row-fluid {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right:0 !important;
  width:100% !important;
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
  main.body-container-wrapper .dnd-section > .row-fluid, .content-wrapper{
    width:100%;
  }
}
@media screen and (max-width: 500px){
  main.body-container-wrapper .dnd-section > .row-fluid, .content-wrapper
  {
    padding: 30px 15px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */



@font-face {
  font-family: "fontello";
  src: url("https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/Dfi_March2021/fonts/fontello.eot") format("embedded-opentype"),
    url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/fonts/fontello.ttf) format("truetype"),
    url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/fonts/fontello.svg) format("svg");
  font-style: normal;
  font-weight: normal;
}


@font-face {
 font-family: "fontello2";
  src: url("https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/Dfi_March2021/fonts/fontello2.eot") format("embedded-opentype"),
    url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/fonts/fontello2.ttf) format("truetype"),
    url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/fonts/fontello2.svg) format("svg");
  font-style: normal; font-weight: normal;
}












html {
  font-size: 100%;
}

body {
  font-family: Lato, serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;

}

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

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

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

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

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

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

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

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

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

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



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

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

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

/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

@media (max-width: 767px) {
  html {
    font-size: 18.0px
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14.399999999999999px
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 100%;
  font-family: 'Arial';
}

.hs-button {
  background: #fff;
  color: #009ba4;
  display: inline-block;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
  transition: background-color .25s ease-out,color .25s ease-out;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  border: 1px #009ba4 solid;
  border-radius: 5px;
  min-width: 150px;
  font-size: 13px !important;
  
  text-decoration: none;
}
[class^="icon2-"]:before, [class*=" icon2-"]:before {
  font-family: "fontello2";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
i.icon2-right-small{
  font-style: italic;
  line-height: inherit;
}
.icon2-right-small:before {
  content: '';
}
i.icon2-right-small:before {
  font-size: 22px;
  line-height: 25px;
}
@media screen and (min-width: 1681px)
{
  .hs-button {
    font-size: 13px !important; 
  }
  .hs-form label{
    font-size: 14px;
  }
  .hs-input{
    font-size: 14px;
  }
  .hs-error-msgs label{
    font-size: 14px;
  }
}
.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
}

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


.hs-form label {

  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif ;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  line-height: 21px;
  padding-top: 0;
  margin-bottom: 4px;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: #f00!important;
  font-family: 'Arial';
  font-weight: 400;
  line-height: 1.5;
}

.hs-input,
#hs-pwd-widget-password{
  box-shadow: #e5e5e5 0 0 6px inset;
  border-radius: 5px;
  border: 1px solid #cacaca;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: .5rem;
  margin: 0 0 1rem;
  color: #0a0a0a;
  background-color: #fefefe;
  transition: all .5s,border-color .25s ease-in-out;

  line-height: normal;
  font-family: 'Arial';
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: 20px!important;
  height: 20px!important;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  vertical-align: middle;
      background: #fff;
    box-shadow: none;
}

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

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

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

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {

  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  outline: none;
  box-shadow: 0 0 5px #cacaca;
  transition: all .5s,border-color .25s ease-in-out;
}

textarea.hs-input {
  height: auto;
}

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

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

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

.actions {
  padding: 0;
}

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

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

.field {
  margin-bottom: 18px;
}

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

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

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

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

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

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */

@-webkit-keyframes down_more {
  0% {
    -webkit-opacity: 0;
    top: 0
  }

  50% {
    -webkit-opacity: 1;
    top: 10px
  }

  100% {
    -webkit-opacity: 0;
    top: 15px
  }
}

@keyframes down_more {
  0% {
    opacity: 0;
    top: 0
  }

  50% {
    opacity: 1;
    top: 10px
  }

  100% {
    opacity: 0;
    top: 15px
  }
}


@media screen and (max-width: 1099px) and (min-width: 850px){
  .post-listing{
    max-width: 850px;
    margin: 0 auto;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */
header{
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif ;
}

.sticky-header{
  min-height: 60px;
}

header.main_menu.fix {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  -moz-box-shadow: 0 0 10px rgba(0,0,0,.5);
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  z-index: 9910;
  background-color: #fff;
  display: block;
  margin-top: 0;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.main_menu {
  width: 100%;
  height: 85px;
  position: relative;
  background-color: #fff;
  display: block;
  z-index: 9000;
  margin-top: 0;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -moz-box-shadow:unset ;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.header_container {
  width: 100%;
  max-width: 1558px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  display: block;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
  color: #828282;
  margin: 0 auto 0 auto;
}
.header_logo {
  width: 132px;
  height: 100%;
  position: relative;
  padding-left: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.header_logo img{
  border: 0px;
  max-width: inherit;
  width: 100%!important;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
}
.navigation-primary ul.submenu.level-2{
  height: auto;
  padding-top: 20px;
  border-top: rgba(0,0,0,.15) 1px solid;
  max-height: 80vh;
  overflow-y: auto;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 85px;
  max-width: inherit;
  left: 0;
  z-index: 1000;
  opacity:0;
  visibility:hidden;
  box-shadow: 0 3px 4px rgb(0 0 0 / 30%);
  overflow-y: auto;
  padding-bottom: 40px;
}


.navigation-primary>ul> li.open_child ul.submenu.level-2{
  visibility: visible;
  opacity: 1;
}
.navigation-primary ul.submenu.level-2 .menuContainer>li>a{
  margin-bottom: 20px;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  line-height: 1.4;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif ;
  letter-spacing: 1px;
  font-size: 16px !important;
  display:block;
}

ul.submenu.level-3>li{
  line-height: 1.6;

}
ul.submenu.level-3>li>a{
  color: #6b6d6e;
  font-size: .875rem;
  padding: 5px 0;
  display: block;
  width: 100%;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  letter-spacing: 1px;
}
.header_nav .hs_cos_wrapper .navigation-primary >ul{

  overflow: inherit;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  width:auto;
  padding:0px;
  margin:0px;
  list-style:none;
}
.header_nav .hs_cos_wrapper .navigation-primary> ul>li>a{
  width: auto;
  padding: 0 39px 0 39px;
  display: block;
  line-height: 100%;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif ;
}
.navigation-primary>ul>li>ul .secMenuContainer 
{
  max-width: 1500px;
  padding-bottom: 40px;
  margin-right: auto;
  margin-left: auto;
  align-items: stretch;
}
.navigation-primary>ul>li>ul .secMenuContainer .menuContainer
{
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 80%;
  float: left;
  display: -webkit-flex;
  display: flex;

  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.header_container .header_right_section {
  width: 170px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 30px;
  opacity: 1;
  height: 100%;
}



.navigation-primary>ul>li:first-child>ul .secMenuContainer .menuContainer> li{
  min-width: 25%;
  padding: 0 15px 25px 15px;
}
.main_menu .navigation-primary ul{
  margin:0px;
  padding:0px;
  list-style:none;
}

.navigation-primary>ul>li:nth-child(2) .secMenuContainer {

  padding-bottom: 40px;
  margin-right: auto;
  margin-left: auto;
  align-items: stretch;
  max-width: 1500px;
}

.navigation-primary>ul>li:nth-child(2) ul.submenu.level-2 .menuContainer>li>a{
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0;
  margin:0;
  display: block;
  width: 100%;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .5s;
  -o-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  letter-spacing: 1px;
  line-height: 1.6;
}


.animall {
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.live_btn_wrapper,
.btnSearch{
  display: block;
  width: 20px;
  height: 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  position: relative;
}

.live_btn_wrapper img{
  transform: scale(1.3);
  margin-right: 5px;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}



.header_right_section form{
  -webkit-flex-grow: 0;
  flex-grow: 0;
}

.header_right_section form input{
  width: 0;
  padding: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  margin-bottom: 0;
  box-shadow: #e5e5e5 0 0 6px inset;
  border-radius: 5px;
  border: 1px solid #cacaca;
  display: block;
  box-sizing: border-box;
  height: 2.4375rem;
  margin: 0 ;
  color: #0a0a0a;
  background-color: #fefefe;
  transition: all .5s,border-color .25s ease-in-out;
}

.btnSearch img{
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}
.btnSearch img:first-child{
  display: block;
  position: absolute;
  z-index: 100;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.btnSearch img:last-child{
  display: block;
  position: absolute;
  z-index: 200;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.btnSearch a:hover img:first-child{
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.btnSearch a:hover img:last-child{
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.cart_options{
  width: 0;
  background-color: #ececec;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.cart_options a{
  display: inline-block;
  width: auto;
  height: 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  position: relative;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-delay: .3s;
  -o-transition-delay: .3s;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}
.cart_options a:hover{
  color: #019faa;
}
.cart_options .hs_cos_wrapper_type_rich_text span{
  width: 1px;
  height: 10px;
  background-color: #b5b5b5;
  display: inline-block;
  margin: 0 1px ;
}

.eStoreActive .cart_options a{
  font-size: .875rem;
  color: #6d6e6f;
  display: inline-block;
}

.header_container .LanguageSelect{
  width: 0;
  background-color: #ececec;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  height: 0px;
}


.LanguageSelect a{
  font-size: 0;
  color: #6d6e6f;
  width: auto;
  display: inline-block;
  height: 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  position: relative;
}

.language_trigger_wrapper{
  width: 25px;
  height: 25px;
  font-size: 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  position: relative;
}
.language_trigger_wrapper a{
  display:block;
  width: 25px;
  height: 25px;
  font-size: 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  position: relative;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif ;
}

.partner_post,
.partner_post a{
  display: block;
  width: 20px;
  height: 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  position: relative;
}
.partner_post a img{
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.partner_post a img:first-child{
  display: block;
  position: absolute;
  z-index: 100;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.partner_post a img:last-child{
  display: block;
  position: absolute;
  z-index: 200;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}


a.btneStore {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  position: relative;
}

a.btneStore .img1,
.btnSearch .img1{
  display: block;
  position: absolute;
  z-index: 100;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
a.btneStore .img2,
.btnSearch .img2{
  display: block;
  position: absolute;
  z-index: 200;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}



.open_search .header_right_section{
  width: 200px;
  height: 100%;
  opacity: 1;
}

.open_search .header_right_section form{
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.open_search .header_right_section form input{
  height: 30px;
  width: 130px;
  padding: inherit;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: #e5e5e5 0 0 6px inset;
  -webkit-box-shadow: #e5e5e5 0 0 6px inset;
  box-shadow: #e5e5e5 0 0 6px inset;
  font-size: .9375rem;
  text-indent: 10px;
  color: #c4c4c4;
  margin-right: 5px;
}

.open_search .live_btn_wrapper,
.open_search .btnSearch{
  width: 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.open_search .btnSearch img:first-child{
  opacity:1;
}
.open_search .btnSearch img:last-child{
  opacity:0;
}

.open_search a.btneStore{
  -webkit-flex-grow: 0;
  flex-grow: 0;
  width: 0;
  opacity:0;
  visibility: hidden;
}

.open_search .partner_post{
  -webkit-flex-grow: 0;
  flex-grow: 0;
  width: 0;
  opacity:0;
  visibility: hidden;
}

.open_search .language_trigger_wrapper{
  -webkit-flex-grow: 0;
  flex-grow: 0;
  width: 0;
}
.open_search .btnSearch img:first-child{
  width:18px;
  height:18px;
}

.eStoreActive .header_container .cart_options {
  width: 150px;
  background-color: #f8f8f8;
  overflow: hidden;
  padding: 10px;
  margin-right: 10px;
  text-align: center;
  height: auto;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.eStoreActive .header_right_section{
  width: 200px;
  padding-right: 10px;
}


.hamburger_1{
  display:none;
}


.animall_little_delay {
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-delay: .3s;
  -o-transition-delay: .3s;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.grayCover {
  width: 100vw;
  height: 1vh;
  position: fixed;
  z-index: 999;
  background-color: rgba(0,0,0,.8);
  top: 0;
  left: -100vw;
 
  background-color: rgba(0,0,0,.3);
  
}

.mobileMenu {
  width: 93vw;
  height: 1vh;
  background-color: #fff;
  top: 0;
  z-index: 9999;
  position: fixed;
  overflow: scroll;
  left: -93vw;
  
  
}

/* .header_right_section .cart_options,
.header_right_section .LanguageSelect,
.header_right_section .language_trigger_wrapper{
display: none;
} */



.mobile_menu_wrapper{
display: none;
}
.mobbileMenuOpen .mobile_menu_wrapper{
display: block;
}
.mobbileMenuOpen .grayCover {
  left: 0;
  background-color: rgba(0,0,0,.3);
  height: 100vh;
}

.mobbileMenuOpen .mobileMenu {
  left: -0;
  height: 100vh;
}

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

.mobileMenu .closeContainer {
  position: relative;
  width: 45px;
  height: 45px;
  margin-top: 15px;
  margin-right: 5px;
  margin-left: auto;
}

.hamburger_2{
  width: 45px;
  height: 45px;
  float: right;
  margin-right: 10px;
  margin-top: 5px;
  opacity: 1;
  -moz-transform:scale(1);
  -ms-transform:scale(1);
  -webkit-transform:scale(1);
     transform: scale(1);
}

.hamburger_2 #nav-icon2{
  width: 35px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(
    0deg
  );
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(
    0deg
  );
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.hamburger_2 #nav-icon2 span{
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #019faa;
  -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;
}

.hamburger_2 #nav-icon2 span:nth-child(1){
  -webkit-transform: rotate(
    45deg
  );
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(
    45deg
  );
  left: 5px;
  top: 15px;
}
.hamburger_2 #nav-icon2 span:nth-child(2){
  -webkit-transform: rotate(
    -45deg
  );
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(
    -45deg
  );
  left: calc(50% - 5px);
  top: 15px;
}

.hamburger_2 #nav-icon2 span:nth-child(3){
  left: -50%;
  opacity: 0;
  top: 18px;
}

.hamburger_2 #nav-icon2 span:nth-child(4){
  top: 18px;
  left: 100%;
  opacity: 0;
}

.hamburger_2 #nav-icon2 span:nth-child(5){
  -webkit-transform: rotate(
    -45deg
  );
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(
    -45deg
  );
  left: 5px;
  top: 23px;
}
.hamburger_2 #nav-icon2 span:nth-child(6){
  left: calc(50% - 5px);
  top: 23px;
  -webkit-transform: rotate(
    45deg
  );
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(
    45deg
  );
}

.LanguageActive .header_container .LanguageSelect{
  width: 190px;
  background-color: #f8f8f8;
  overflow: hidden;
  padding: 10px;
  margin-right: 10px;
  text-align: center;
  height: auto;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  transform: scale(1);
  height: auto;
}
.LanguageActive .header_container .LanguageSelect a{
  font-size: .9375rem;
  color: #6d6e6f;
  display: inline-block;
  margin: 0 3px;
  width: auto;
  transform: scale(.8);
}
.LanguageActive .header_container .LanguageSelect a:hover{
  color: #019faa;
}
.LanguageActive .header_right_section{
  width: 300px;
}
.LanguageActive .header_container .live_btn_wrapper,
.LanguageActive .header_container .btnSearch,
.LanguageActive .header_container .btneStore,
.LanguageActive .header_container .partner_post{
  width: 0;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  opacity: 0;
  visibility: hidden;
}

.sticky .inside-header {
  position: fixed ;
  width: 100%;
  left: 0;
  top: 0px;
  min-height: 60px;
  z-index: 701;
  opacity: .97;
  -moz-box-shadow: rgba(0,0,0,.4) 0 2px 6px;
  -webkit-box-shadow: rgb(0 0 0 / 40%) 0 2px 6px;
  box-shadow: rgb(0 0 0 / 40%) 0 2px 6px;
}

.sticky .inside-header{
  -webkit-animation: slide-down .6s;
  -moz-animation: slide-down .6s;
  animation: slide-down .6s;
}
@-webkit-keyframes  slide-down {
  0% {
    top: -60px;
  }
  100% {
    top: 0;
  }
}
@-moz-keyframes  slide-down{
  0% {
    top: -60px;
  }
  100% {
    top: 0;
  }
}
@keyframes  slide-down {
  0% {
    top: -60px;
  }
  100% {
    top: 0;
  }
}

.navigation-primary>ul>li:nth-child(3) ul .menuContainer li a,
.navigation-primary>ul>li:nth-child(4) ul .menuContainer li a,
.navigation-primary>ul>li:nth-child(5) ul .menuContainer li a{
  margin-bottom: 0 !important;
  padding: 5px 0;
  display: block;
  width: 100%;
  line-height: 1.6 !important;
}

.custom-menu-primary .navigation-primary>ul ul li a{
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif ;
}

.hs-blog-listing .sticky-header{
  min-height:auto !important;
}

.navigation-primary>ul>li:nth-child(2)>ul .secMenuContainer .menuContainer>li,
  .navigation-primary>ul>li:nth-child(3)>ul .secMenuContainer .menuContainer>li,
  .navigation-primary>ul>li:nth-child(4)>ul .secMenuContainer .menuContainer>li,
  .navigation-primary>ul>li:nth-child(5)>ul .secMenuContainer .menuContainer>li{
    width: 100%;
    padding: 0 0 0 0px;
  }

@media screen and (min-width: 40em){
  .navigation-primary>ul>li:nth-child(2)>ul .secMenuContainer .menuContainer{
    padding-left: .9375rem;
    padding-right: .9375rem;
  }
}

@media screen and (min-width: 64.0625em){
  .navigation-primary>ul>li:nth-child(2)>ul .secMenuContainer .menuContainer{
    width: 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;

  }
}

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

  .header_nav .hs_cos_wrapper .navigation-primary ul>li>a{
    font-size: 16px;
  }

  .navigation-primary ul.submenu.level-2 {   
    top: 60px;
  }
  ul.submenu.level-3>li>a{
    font-size:14px!important;
  }
  .main_menu {
    height: 60px;
  }
  .navigation-primary>ul>li:nth-child(2)>ul .secMenuContainer .menuContainer{
    width: 750px;
    max-width: inherit;
    margin-left: auto;
    margin-right: auto;
  }
  .navigation-primary>ul>li .secMenuContainer {
    max-width: 750px;
    max-width: inherit;
  }
  
  .navigation-primary>ul>li:nth-child(1) .secMenuContainer {
    max-width: 1500px;
    padding-bottom: 40px;
    margin-right: auto;
    margin-left: auto;
  }
  .header_logo{
    width: 100px;
  }
  .partner_post,
  .language_trigger_wrapper,
  .LanguageSelect,
  .btnSearch,
  .live_btn_wrapper,
  a.btneStore,
  .cart_options a{
    transform: scale(.8);
  }
  .header_right_section form input{
    font-size: 14px;
  }

}

@media screen and (max-width: 1680px) and (min-width: 1355px){
  .header_right_section a {
    transform: scale(.8);
  }
  .header_nav .hs_cos_wrapper .navigation-primary>ul>li>a,
  .navigation-primary ul.submenu.level-2 .menuContainer>li>a{
    font-size: 14px !important;
  }
  .header_logo{
    width: 85px;
  }

  .header_container .LanguageSelect,
  .header_container .btnSearch,
  .header_container  .live_btn_wrapper,
  .header_container  a.btneStore,
  .header_container .cart_options a{
    transform: scale(.8);
  }
  .main_menu{
    height: 60px;
  }
  .navigation-primary ul.submenu.level-2{
    top: 60px;
  }
  ul.submenu.level-3>li>a{
    font-size: 13px;
  }
}







@media screen and (max-width: 1354px) and (min-width: 900px) {
  .main_menu{
    height: 80px;
  }
  .header_logo{
    width: 85px;
  }
  .header_nav .hs_cos_wrapper .navigation-primary>ul>li>a{
    font-size: 14px !important;
  }
  .LanguageSelect,
  .btnSearch,
  .live_btn_wrapper,
  a.btneStore,
  .cart_options a,
  .language_trigger_wrapper a,
  .partner_post a{
    transform: scale(.8);
  }
  .navigation-primary ul.submenu.level-2 .menuContainer>li>a{
    font-size: 14px !important;
  }
  ul.submenu.level-3>li>a{
    font-size: 13px;
  }
  .navigation-primary ul.submenu.level-2{
    top: 60px;
  }
}

@media (min-width:1025px){
  .live_btn_wrapper img:first-child{
    display: block;
    position: absolute;
    z-index: 100;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  .live_btn_wrapper img:last-child{
    display: block;
    position: absolute;
    z-index: 200;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  .live_btn_wrapper a:hover img:first-child{
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  .live_btn_wrapper a:hover img:last-child{
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  a.btneStore:hover .img1,
  .btnSearch:hover .img1{
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  a.btneStore:hover .img2,
  .btnSearch:hover .img2{
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  .partner_post a:hover img:first-child{
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  .partner_post a:hover img:last-child{
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  .eStoreActive .live_btn_wrapper,
  .eStoreActive .btnSearch,
  .eStoreActive .partner_post{
    width: 0;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    opacity: 0;
    visibility: hidden;
  }
  .header_right_section a:hover{
    color: #009fa8!important;
  }
  .language_trigger_wrapper a:hover{
    color: #009fa8!important;
  }

  .eStoreActive .language_trigger_wrapper{
    width: 0;
    -webkit-flex-grow: 0;
    flex-grow: 0;
  }

  .eStoreActive a.btneStore{
    width: 20px;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .sticky .inside-header {
    position: fixed ;
    width: 100%;
    left: 0;
    top: 0px;
    min-height: 60px;
    z-index: 701;
    opacity: .97;
    -moz-box-shadow: rgba(0,0,0,.4) 0 2px 6px;
    -webkit-box-shadow: rgb(0 0 0 / 40%) 0 2px 6px;
    box-shadow: rgb(0 0 0 / 40%) 0 2px 6px;
  }
  .sticky .inside-header{
    -webkit-animation: slide-down .6s;
    -moz-animation: slide-down .6s;
    animation: slide-down .6s;
  }
  @-webkit-keyframes  slide-down {
    0% {
      top: -60px;
    }
    100% {
      top: 0;
    }
  }
  @-moz-keyframes  slide-down{
    0% {
      top: -60px;
    }
    100% {
      top: 0;
    }
  }
  @keyframes  slide-down {
    0% {
      top: -60px;
    }
    100% {
      top: 0;
    }
  }
}

@media screen and (max-width: 96.875em){
  .navigation-primary>ul>li>ul .secMenuContainer{
    padding: 0 15px 15px 15px;
  }
}


@media (max-width:1024px){
  .header_nav,
  .header_container .header_right_section{
    display: none;
  }
  .hamburger_1{
    width: 45px;
    height: 45px;
    float: right;
    margin-right: 10px;
    margin-top: 5px;
    opacity: 1;
    display: block;
  }
  .hamburger_1 #nav-icon2{
    width: 35px;
    height: 45px;
    position: relative;
    -webkit-transform: rotate(
      0deg
    );
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(
      0deg
    );
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  .sticky-header .header_logo{
        width: 100px;
  }
  .hamburger_1 #nav-icon2 span{
    display: block;
    position: absolute;
    height: 4px;
    width: 50%;
    background: #019faa;
    opacity: 1;
    -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;
  }
  .hamburger_1 #nav-icon2 span:nth-child(1), 
  .hamburger_1 #nav-icon2 span:nth-child(2){
    top: 5px;
  }
  .hamburger_1 #nav-icon2 span:nth-child(odd){
    left: 0;
  }
  .hamburger_1 #nav-icon2 span:nth-child(3), 
  .hamburger_1 #nav-icon2 span:nth-child(4){
    top: 18px;
  }
  .hamburger_1 #nav-icon2 span:nth-child(3), 
  .hamburger_1 #nav-icon2 span:nth-child(4) {
    top: 18px;
  }
  .hamburger_1 #nav-icon2 span:nth-child(even) {
    left: 50%;
  }
  .hamburger_1 #nav-icon2 span:nth-child(3),  
  .hamburger_1 #nav-icon2 span:nth-child(4),  {
    top: 18px;
  }
  .hamburger_1 #nav-icon2 span:nth-child(5),  
  .hamburger_1 #nav-icon2 span:nth-child(6) {
    top: 31px;
  }
  .hamburger_1 #nav-icon2 span:nth-child(odd) {
    left: 0;
  }
  .hamburger_1 #nav-icon2 span:nth-child(even) {
    left: 50%;
  }
  .hamburger_1 #nav-icon2 span:nth-child(5),  
  .hamburger_1 #nav-icon2 span:nth-child(6) {
    top: 31px;
  }

  .mobile_menu_wrapper .hs-menu-wrapper>ul{
    font-size: 13px ;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .mobile_menu_wrapper .hs-menu-wrapper ul li,
  .mobile_menu_wrapper .hs-menu-wrapper ul{
    background-color: #fff;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li{
    padding: 15px;
    position: relative;
    font-size: 13px;

  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>a{
    color: #009fa8;
    font-size: 1.846153846153846em;
    line-height:inherit;
    font-weight: 400;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul ul{
    display:none;
    margin-left: 10px;

  }
  .mobile_open_child .mobile_menu_wrapper .hs-menu-wrapper>ul ul{
    overflow:  visible !important;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>ul>li{
    display: block;
    position: relative;
    list-style: none;
    padding: 10px 0;
    font-size: 13px;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>ul>li:first-child{
    padding-top: 20px;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>ul>li>a{
    color: #333;
    font-size: 1rem;
    position: relative;
    display: block;
    line-height: inherit;
    font-weight:400;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>ul>li>a:before{
    display: block;
    content: '';
    width: 5px;
    height: 2px;
    background-color: #818181;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    opacity: .6;
    position: absolute;
    top: 13px;
    left: -15px;
  }

  .mobile_menu_wrapper .hs-menu-wrapper>ul>li:first-child>ul>li>a{
    color: #333;
    font-size: 18px!important;
    line-height: inherit;
    font-weight: 400;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li:first-child>ul>li>a:before{
    display:none;
  }

  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>ul>li.open_child>a{
    color: #009fa8;
  }
  [class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .icon-secMenuMobile {
    position: relative;
    color: #019faa;
    margin-left: 10px;
  }
  .icon-right-open:before {
    content: '';
  }
  .icon-secMenuMobile:after {
    content: '';
    position: absolute;
    top: calc(50% - 22px/2);
    left: calc(50% - 21px/2);
    width: 20px;
    height: 20px;
    border: 1px solid;
    border-radius: 50%;
    color: #019faa;
  }

  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>ul ul li{
    padding: 10px 0;
    position: relative;
    line-height:1.6;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>ul ul li:first-child{
    padding-top: 20px;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul .mobile_open_child ul{
    overflow: visible !important;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>ul ul li a{
    color: #818181;
    font-size: 16px!important;
    position: relative;
    display: block;
    line-height: inherit;
    font-weight: 400;
  }
  .mobile_menu_wrapper .hs-menu-wrapper>ul>li>ul ul li a:before{
    display: block;
    content: '';
    width: 5px;
    height: 2px;
    background-color: #818181;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    opacity: .6;
    position: absolute;
    top: 13px;
    left: -15px;
  }
  .mobileVicCtrl {
    padding: 15px;
  }
  .search_container {
    font-size: 13px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
  }
  .search_container .zoomGlass {
    margin-left: 10px;
    display: inline-flex;
  }
  .search_container .searchMobile {
    width: 100%;
    margin: 0;
    background-color: #fff;
    color: #b7b7b7;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    box-shadow: #e5e5e5 0 0 6px inset;
    border: 1px solid #cacaca;
    transition: all .5s,border-color .25s ease-in-out;
    height: 2.4375rem;
    padding: .5rem;
    display: block;
    box-sizing: border-box;
  }
  .header_right_section{
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 80% !important;
    text-align: left;
    padding: 20px 15px;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 5px;
  }

  .live_btn_wrapper img{
    width: 35px;
    transform: scale(1);
    margin-right: 0;
  }

  .partner_post,
  .language_trigger_wrapper,
  a.btneStore,
  .live_btn_wrapper{
    display: block;
    text-align: center;
    height: 35px;
    vertical-align: middle;
    width: auto;
    margin-right: 20px;
    flex-grow: initial;
  }

  .LanguageSelect,
  .btnSearch,
  .live_btn_wrapper,
  a.btneStore,
  .cart_options a,
  .language_trigger_wrapper a,
  .partner_post a{
    transform: scale(1);
  }

  .language_trigger_wrapper a{
    font-size: 28px;
    padding-top: 1px;
  }
  .header_right_section a{
    width:auto;
  }
  .cart_options{
    padding: 0;
    background-color: #f9f9f9;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
    min-height: 35px;
    margin-right: 0;
    width: 0;
    overflow: hidden;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    opacity: 1;
    visibility: visible;
  }
  .eStoreActive .cart_options{
    width: 185px;
    padding: 0 15px;
    margin-right: 10px;
    flex-grow: inherit;
    padding-bottom: 8px;
  }
  .eStoreActive .header_right_section{
    padding-right: 15px;
  }
  .eStoreActive .cart_options a{
    text-align: center;
    vertical-align: middle;
    width: auto;
    color: #6d6e6f;
    font-size: .9375rem;
    display: inline-block;
    margin-top: 0;
    padding-top: 0;
    margin-right: 1px;
    margin-left: 1px;
    margin-bottom: 0;
    line-height: 35px;
    height: 35px;
  }
  a.btneStore{
    margin-right: 55px;
  }
  .LanguageSelect{
    padding: 0;
    background-color: #f9f9f9;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    text-align: left;
    height: 35px;
    margin-right: 0;
    width: 0;
    overflow: hidden;
    -webkit-flex-grow: 0;
    flex-grow: 0;
  }
  .LanguageActive .LanguageSelect{
    padding: 0 15px;
    width: auto;
    margin-right: 10px;
  }
  .LanguageActive .LanguageSelect a{
    color: #6d6e6f;
    font-size: .9375rem;
    display: inline-block;
    margin-top: 0;
    padding-top: 0;
    margin-right: 5px;
    margin-left: 5px;
    line-height: 35px;
    height: 35px;
  }
  .mobbileMenuOpen .hamburger_1 #nav-icon2 span:nth-child(1){
    left: 5px;
    top: 15px;
    -webkit-transform: rotate( 
      45deg
    );
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate( 
      45deg
    );
  }
  .mobbileMenuOpen .hamburger_1 #nav-icon2 span:nth-child(2){
    left: calc(50% - 5px);
    top: 15px;
    -webkit-transform: rotate( 
      -45deg
    );
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate( 
      -45deg
    );
  }
  .mobbileMenuOpen .hamburger_1 #nav-icon2 span:nth-child(3){
    left: -50%;
    opacity: 0;
  }
  .mobbileMenuOpen .hamburger_1 #nav-icon2 span:nth-child(4){
    left: 100%;
    opacity: 0;
  }
  .mobbileMenuOpen .hamburger_1 #nav-icon2 span:nth-child(5){
    left: 5px;
    top: 23px;
    -webkit-transform: rotate( 
      -45deg
    );
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate( 
      -45deg
    );
  }
  .mobbileMenuOpen .hamburger_1 #nav-icon2 span:nth-child(6){
    left: calc(50% - 5px);
    top: 23px;
    -webkit-transform: rotate( 
      45deg
    );
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate( 
      45deg
    );
  }
  .main_menu{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
  .sticky-header{
    min-height: 80px;
  }
}

@media screen and (max-width: 1025px) and (min-width: 960px){
  .search_container .searchMobile {
    width: 100%;
  }
}

@media (max-width:899px) and (min-width:721px){
  .header_logo img{
    width: 100% !important;
  }
  .main_menu{
    height: 80px;
  }

}

@media screen and (max-width: 720px) and (min-width: 451px){
  .header_logo{
    width: 85px;
  }
  .main_menu{
    height: 80px;
  }
}

@media (max-width:450px){
  .main_menu{
    height: 80px;
  }
}

@media screen and (max-width: 31.25em){
  .header_logo{
    width: 80px;
    height: 100%;
    padding-left: 10px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px
  }
 
  .main_menu{
    height: 48px;
  }
 .sticky-header .header_logo img{
       width: 100%;
  }
}

@media screen and (max-width: 28.125em){
  .hamburger_1{
    width: 35px;
    height: 40px;
    margin-top:0;
    margin-right: 20px;
  }
  .hamburger_1 #nav-icon2 span:nth-child(1),
  .hamburger_1 #nav-icon2 span:nth-child(2){
    top: 3px;
  }
  .hamburger_1 #nav-icon2 span:nth-child(3),
  .hamburger_1 #nav-icon2 span:nth-child(4){
    top: 15px;
  }
  .hamburger_1 #nav-icon2 span:nth-child(5),
  .hamburger_1 #nav-icon2 span:nth-child(6){
    top: 28px;
  }
}


@media (min-width: 1025px){
  .mobileMenu{
  display: none;
  }
  .grayCover{
  display: none;
  }
}




#hs_cos_wrapper_language_option_,
#hs_cos_wrapper_language_option {
  height: 0;
}
.LanguageActive #hs_cos_wrapper_language_option_,
.LanguageActive #hs_cos_wrapper_language_option {
  height: auto;
}


#hs_cos_wrapper_cart_options,
#hs_cos_wrapper_cart_options_{
    height: 0;
}

.eStoreActive #hs_cos_wrapper_cart_options,
.eStoreActive #hs_cos_wrapper_cart_options_{
    height: auto;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */


footer.footer {
  background-color: #484848;
  padding-top: 10px;
}

.footer_container {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto 0 auto;
}
.footer_row {
  padding-bottom: 10px;
  max-width: 1300px ;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: row wrap;
}
.footer_row::before, .footer_row::after {
  content: ' ';
  display: table;
  flex-basis: 0;
  order: 1;
}
.footer_row a{
  color: #6de8ef;
  padding: 20px;
  font-size: 1.125rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.bottom_des a:hover {
  color: #1585cf!important;
  opacity: .5;
}
.bottom_des a {
  color: #009fa8;
  opacity: .5;
}
.footer_row .hs_cos_wrapper {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.footer_row .hs_cos_wrapper img{
  margin-right: 20px;
  border: 0;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
}
.footer_row a:hover{
  text-decoration:none;
}
.colums {
  padding: 45px 30px 40px 30px;
  letter-spacing: 1px;
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;

}
.footer_main_container {
  width: 100%;
  background-color: #484848;
}
.footer_main_row {
  max-width: 1300px !important;
  border-top: #5b5b5b 1px solid;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: row wrap;
}
.footer_main_row::before, .footer_main_row::after {
  content: ' ';
  display: table;
  flex-basis: 0;
  order: 1;
} 

.footer_row a p {
  margin: 0;
  margin: 0;
  padding: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  line-height: 1.6;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
  color: #6de8ef;
}
.title_conainer h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'Roboto';
}
.arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/images/slider_arrow_115.png);
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg );
  transform: rotate(-90deg );
  opacity: .3;
  display: none;
  z-index: 200;
}
.item_container  a{
  display: inline-block;
  width: 100%;
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  margin-bottom: 5px;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;

}
.colums .hs_cos_wrapper>p{
  font-size: .9375rem;
  line-height: 1.625rem;
  color: #fff;
  vertical-align: text-top;
  height: auto;
  margin-bottom: 10px;
  text-rendering: optimizeLegibility;
  font-family: 'Roboto';
  letter-spacing: 1px;
}
.bottom_des{
  font-size: .9375rem;
  line-height: 1.625rem;
  color: #fff;
  vertical-align: text-top;
  height: auto;
  margin-bottom: 10px !important;
  font-family: 'Roboto';
  letter-spacing: 1px;
}
.bottom_des a{
  color: #009fa8;
}
.share_items {
  position: relative;
  height: auto;
  width: 100%;
  text-align: center;
  z-index: 300;
  padding: 0 0 30px 0;
  font-size: 16px;
}
.share_items a {
  width: auto;
  height: 29px;
  display: inline-block;
  margin-left: 25px;
  vertical-align: middle;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  opacity: .6;
}
.share_items a img{
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
  border: 0;
}
.share_items a:nth-child(1) {
  margin-left: 0;
}
.share_items a:hover {
  opacity: .9;
}
.copyright {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 56px;
  background-color: #1a1a1a;
  text-align: center;
  letter-spacing: 1px;
}
.footer_copyrights {
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  text-align: center;
  letter-spacing: 1px;
  font-family: 'Roboto';
}
.footer-no-nav .footer_copyrights{
  padding-top: 45px;
  margin-bottom:0;
}
.footer_copyrights a {
  color: #fff;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}


.footer_form_wrapper .hs-input{
  background-color: #606060;
  border: 0;
  height: 35px;
  margin-top: 10px;
  width: 85%;
  text-indent: 10px;
  color:#fff;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  line-height: normal;
  font-family: 'Roboto';
  margin-bottom: 0px;
  border: 0;
  box-shadow: unset!important;
  border-radius: 0!important;
  margin-top: 21px;
  text-align: left;
  padding-left: 3px;
  padding-right: 3px;
  margin-top: 10px;
}
.footer_form_wrapper .hs-input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);

}

.footer_form_wrapper .hs-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);


}
.title_conainer h3{
  color: #fff;
}
.footer_form_wrapper  input.hs-button.primary.large {
  display: none;
}
.active_footer .item_container{
  display:block;
}
.active_footer .arrow  {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: .5;
}



@media screen and (min-width: 40em){
  .footer_row a{
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    width: 33.33333%;
  } 
  .colums{
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hide-for-medium {
    display: none !important;
  }
}
@media screen and (min-width: 1681px){
  .title_conainer h3 {
    color: #fff;
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: .4s;
    -o-transition-duration: .4s;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    font-weight: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
    margin-top: 0;
    line-height: 1.4;
  }
  .item_container a{
    font-size: 16px;
  }
  .copyright {
    padding: 0;
  }
  .footer_copyrights{
    font-size: 12px;
    margin: 0;
    padding: 15px 0;
    padding-bottom: 45px;

  }
  .footer_form_wrapper .field {
    margin-bottom: 0px;
  }

  .footer_form_wrapper .hs-input{
    font-size: 13px; 
  }
  .footer_row a p {
    font-size: 16px;
  }
  .title_conainer h3 {
    font-size: 16px ;
    margin-bottom: 20px;
    font-family: 'Roboto';
  }
}
@media screen and (max-width: 1680px) and (min-width: 1355px){
  .footer_row a p {
    font-size: 15px;
  }
  .title_conainer h3 {
    font-size: 15px ;
    margin-bottom: 20px;
  }
  .item_container a{
    font-size: 15px;
  }
  .colums .field {
    margin-bottom: 0px;
  }
  .copyright{
    padding-bottom: 40px;
    padding-top: 12px;
  }
  .footer_copyrights{
    font-size: 12px;
    margin: 0;
  }
  .footer_form_wrapper .hs-input{
    font-size: 12px;
  }
}

@media screen and (max-width: 1354px) and (min-width: 900px){
  .item_container a{
    font-size: 15px;
  }
  .copyright {
    padding: 0;
  }
  .footer_copyrights {
    font-size: 12px;
    margin: 0;
    padding: 12px 0;
    padding-bottom: 42px;
  } 
  .footer_row a p{
    font-size: 15px;
  }
  .footer_form_wrapper .field {
    margin-bottom: 0px;
  }
  .footer_form_wrapper .hs-input{
    font-size: 12px;
  }
  .title_conainer h3{
    font-size: 15px ;
    margin-bottom: 20px;
    font-family: 'Roboto';
    font-weight: 400;
  }
  .item_container a{
    font-size: 15px;
  }
}


@media screen and (max-width: 50em){
  .colums{
    padding: 45px 20px 40px 20px;
  }
}
@media screen and (max-width: 720px) and (min-width: 451px){
  .footer_row a p{
    font-size: 15px;
  }
  .title_conainer h3{
    font-size: 15px ;
    margin-bottom: 20px;
    font-family: 'Roboto';
    font-weight:400;
  }
  .item_container a{
    font-size: 15px;
  }
  .copyright {
    padding: 0;
  }
  .footer_copyrights {
    font-size: 12px;
    margin: 0;
    padding: 12px 0;
    padding-bottom:42px

  }
  .colums .hs_cos_wrapper>p{
    font-size: 15px;
    line-height: 26px;
  }
  .footer_form_wrapper .hs-input{
    font-size: 12px;
  }
  .footer_form_wrapper .field {
    margin-bottom: 0px;
  }
  .bottom_des {
    font-size: 15px;
    line-height: 26px;
  }
}
@media screen and (max-width: 31.25em){
  .colums{
    padding: 25px 20px 5px 20px;
  }
  .title_conainer h3{
    margin-bottom: 10px;
    font-size:20px!important;
    line-height:28px;
    font-family: 'Roboto';
    font-weight:400;
  }
  .item_container {
    display: none;
  }
  .arrow {
    display: block;
  }
  .title_conainer {
    position: relative;
  }
  .footer_form_wrapper .field {
    margin-bottom: 0px;
  }
  .colums:nth-child(4) {
    padding: 25px 20px 25px 20px;
  }
  .copyright {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 40px;
  }
  .footer_copyrights {
    line-height: 1.6;
    margin-bottom: 1rem;
    text-rendering: optimizeLegibility;
  }
  .bottom_des,  .colums .hs_cos_wrapper>p{
    font-size: 15px;
    line-height: 26px;
  }
  .footer_form_wrapper .hs-input{
    width: 100%;
  }
  .colums.active .arrow {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: .5;
  }
  .footer_main_row .colums.active .item_container {
    display: block;
  }
  .copyright.footer-no-nav{
    padding-bottom:0;
  }
  .footer_form_wrapper .hs-input{
    font-size: 16px;
  }

  .footer-no-nav.copyright {
    padding-top: 20px;
  }
  .footer-no-nav .footer_copyrights{
    padding-bottom: 45px;
  }
}


@media screen and (max-width: 28.125em){
  .footer_row a{
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 10px;
  }
  .footer_row a p{
    font-size:18px;
    line-height:28.8px;
    font-family: 'Roboto';
    font-weight:400;
  }
}
@media screen and (max-width: 21.875em){
  .share_items a{
    margin-left: 15px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.blog_banner{
  background-image: url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/images/press_room_bn.jpg);
  display: block;
  position: relative;
  width: 100%;
  height: 443px;
  background-position: center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-align-items: center;
  align-items: center;
}
.comment-date {
    display: block !important;
}

.path {
  display: flex;
  flex-wrap: wrap;
}
.blog_container{
  padding-top: 148px;
  position: relative;
  text-align: center
}
h1.category_index_title {
  text-align: center;
  color: #009fa8;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: .5rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
}
.blog_heading{
  text-align: center;
  letter-spacing: 1px;
  line-height: 26px;
  display: inline-block;
  color: #5e5e5e;
  max-width: 700px;
  width: auto;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
}
.blog_listing_wrapper {
  width: 100%;
  height: auto;
}
.flex_box {
  position: relative;
  height: 76px;
  border-top: none;
  border-bottom: none;
  background: #efefef;
  background: -moz-linear-gradient(top,#efefef 0%,#f8f8f8 100%);
  background: -webkit-linear-gradient(top,#efefef 0%,#f8f8f8 100%);
  background: linear-gradient(to bottom,#efefef 0%,#f8f8f8 100%);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.blog_content {
  display: block;
  max-width: 1350px;
  margin: 50px auto;
  width: auto;
  padding: 0;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
}
.post-listing {
  -webkit-justify-content: flex-start;
  -moz-justify-content: infinite;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -moz-align-items: infinite;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: infinite;
  flex-wrap: wrap;
  padding: 0 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex_box_item{
  -webkit-justify-content: flex-start;
  -moz-justify-content: infinite;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -moz-align-items: infinite;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: infinite;
  flex-wrap: wrap;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
a.blog_item {
  width: calc((100%/3) - 10px);
  margin: 0 5px;
  border-bottom: 0;
  font-size: 1em !important;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: stretch;
  max-width: 460px;
  padding: 20px;
}
.cover {
  height: 237px;
  width: 100%;
  position: relative;
}
.cover_line {
  background: none #000;
  opacity: .5;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .5s;
}
.cover img{
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
  border: 0;
}
.content {
  min-height: calc(100% - 242px);
  width: 100%;
  border-bottom: 1px dotted #626262;
  padding: 0 10px;
  overflow: hidden;
}
.date {
  padding-top: 1em;
  color: #767676;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
  font-size: 12px;
}
.cover:after {
  content: "";
  width: 0;
  height: 100%;
  background: #009fa8;
  position: absolute;
  right: 0;
  top: 0;
  transition: width .5s;
}
.items.active {
  height: 100px;
  background-color: #009fa8;
  margin-top: -12px;
  color: #fff;
  line-height: 76px;
}
.items {
  position: relative;
  height: 76px;
  line-height: 76px;
  text-align: center;
  color: #767676;
  font-size: 1.5rem;
  padding: 0 75px;
  display: block;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}
.title {
  margin: 1.5em 0;
  color: #828282;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-style: normal;
}
.cover_line:hover {
  opacity: 0;
}
.blog_item:hover .content {
  background: #f8f8f8;
}
.blog_item:hover .cover:after {
  width: 10px;
}
.blog-index__post-inner-card_wrapper.no-image {
  width: 100%;
}
.items.active i {
  display: block;
}
.items i {
  display: none;
  position: absolute;
  bottom: 10px;
  font-size: 1rem;
  height: 20px;
  width: 20px;
  left: calc(50% - 10px);
  line-height: 0;
  font-style: italic;
}
.icon-down-open-big:before {
  content: '';
}
.items:hover {
  height: 100px;
  background-color: #009fa8;
  margin-top: -12px;
  color: #fff;
  line-height: 76px;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.load_more::before, .load_more::after {
  content: ' ';
  display: table;
  flex-basis: 0;
  order: 1;
}
.load_more:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.more_down {
  position: relative;
  margin: 3em auto;
  top: 0;
  background: url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/images/arrow_down.png);
  width: 46px;
  height: 21px;
  display: block;
  cursor: pointer;
  animation: down_more 1.6s linear infinite;
}
.path a {
  color: #a2a2a2;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
}
.icon-right-open-big:before {
  content: '';
}
.path a:hover, .path .now {
  color: #6d6e6f !important;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
}
.press_room_atitle {
  margin-top: .8em;
  margin-bottom: 1.5em;
  color: #292929;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
}
.article_data {
  margin-bottom: 1em;
  overflow: hidden;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  font-size: 16px;
  line-height: 24px;

}
.sub_title {
  margin-top: 1em;
  padding: 10px 25px;
  background: #019fa8;
  color: #fff;
  display: inline-block;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
  font-weight: 400;
  line-height: 1.5;
  font-size:16px;



}
.article_data div:nth-of-type(1) {
  float: left;
  width: calc(100% - 150px);
}
.article_data .article_share {
  margin: 0;
  float: right;
  max-width: 150px;
  width: 20%;
  min-width: 140px;
  overflow: hidden;
  text-align: right;
  list-style: none;
  display: inline-flex;
  justify-content: flex-end;
}
.post_content {
  width: 100%;
  padding: 30px 30px;
  max-width: 1558px;
  margin: 0 auto 0 auto;
  position: relative;
  color: #828282;
}
.article_share li {
  margin-right: 15px;
  width: 24px;
  height: 24px;
  display: inline-block;
  cursor: pointer;
  list-style: none;
  margin-left: 0;
}
.article_share li:nth-of-type(1) {
  background-image: url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/images/social_icon_01.png);
  background-size: 100% 100%;
}
.article_share li:nth-of-type(3) {
  background-image: url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/images/social_icon_03.png);
  background-size: 100% 100%;
}

.article_share li:last-child{
  margin-right:0;
}
.flex_box ul li:first-child a {
    display: block;
}
@media screen and (min-width: 1681px){
  h1.category_index_title {
    font-size: 50px;
  }
  .date{
    font-size: 13px;
  }
  .blog_heading{
    font-size: 14px;
  }
  ul, li {
    font-size: 14px !important;
  }
  .press_room_list .date {
    font-size: 13px;
  }
  .press_room_atitle{
    font-size: 18px !important;
  }
  .title {
    font-size: 16px !important;
  }
  .items {
    font-size: 18px !important;
  }
  .path {
    font-size: 13px;
  }
  .flex_box ul li{
    font-size: 18px ;
  }
}
@media screen and (max-width: 1354px) and (min-width: 900px){
  h1.category_index_title{
    font-size: 36px;
  }
  .path {
    font-size: 12px;
  }
  .press_room_atitle{
    font-size: 18px !important;
  }
}
@media screen and (max-width: 1354px) and (min-width: 451px){
  .blog_heading {
    font-size: 13px;
  }

}
@media screen and (max-width: 624.9375em){
  .blog_listing_heading{
    display:none;
  }

  .flex_box ul>li:last-child {
    display: block;
}
 
}

@media (max-width: 767px){
  h1.category_index_title{
    font-size:56px;
    line-height:78.4px;
  }
}

.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

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

.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

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

@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}





.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-post img {
  max-width: 100%;
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
}
.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}
.blog-index__post-content p {
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
}
.blog-index__post-content a {
  color: #494a52;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}


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

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

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

.blog-post__tags {
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

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

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


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

/*             Blog Listing with Sidebar            */

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

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
.content_container {
  width: 100%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
}
.article_content {
  padding: 0;
  margin: 2em 0;
  width: 100%;
}
.pic_wrapper {
  width: 43%;
  overflow: hidden;
}
.blog-text_wrapper {
  padding-left: 3%;
  width: 57%;
}
.flex_box_wrappper{
  display: flex;
  flex-wrap: wrap;
  width: 100%; 
}
.blog-post__body, .blog-post__body p{
  line-height: 1.625rem;
  color: #575757;
  font-size: 14px;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility;
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
  font-weight:400;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

/*             Blog Grid Listing            */

.blog-index__post.blog-index__post--small {
  display: flex;
}

.blog-index__post-inner-card {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  border-radius: 5px;
  background: #fff;
}

.blog-index__post-image {
  border-radius: 5px 5px 0 0;
}

.blog-index__post-inner-card .blog-index__post-content {
  display: flex;
  flex-direction: column;
  padding: 24px 30px 30px 30px;
  height: 100%;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01rem;
}

.blog-post__tag-link:hover{
  text-decoration: none;
}

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

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

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

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

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

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

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

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

/*             Blog Grid Listing with Sidebar            */

.blog-index.sidebar {
  display:flex;
}

@media screen and (min-width: 1000px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/2);
  }
}

@media screen and (max-width: 999px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mobile Blog Sidebar */

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

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

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

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

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

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

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

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

/* Blog Subscription Section */

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

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}

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

/*             Blog Post Layout          */

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

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

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

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

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

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

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

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

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

/* Blog Comments */

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

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

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

.article_share li:nth-of-type(1):hover {
  background-image: url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/images/social_icon_01_r.png);
  background-size: 100% 100%;
}
.article_share li:nth-of-type(3):hover {
  background-image: url(https://8330016.fs1.hubspotusercontent-na1.net/hubfs/8330016/raw_assets/public/Dfi_March2021/images/social_icon_03_r.png);
  background-size: 100% 100%;
}
/* Related Articles */

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

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

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

a.next-posts-link.load-more.p-hide {
  display: none !important;
}


.flex_box h3{
  display:none;     
}

.flex_box ul{
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex_box ul li a{
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  position: relative;
  height: 76px;
  line-height: 76px;
  text-align: center;
  color: #767676;
  font-size: 1.5rem;
  padding: 0 75px;
  display: block;
}



.flex_box ul li a i{
  display: none;
  position: absolute;
  bottom: 10px;
  font-size: 1rem;
  height: 20px;
  width: 20px;
  left: calc(50% - 10px);
  line-height: 0;
}

.filter-link-count{
  display:none;
}
a.blog_item:hover .title{
  color: #353535;
}
a.blog_item:hover .date{
  color: #353535;
}

@media screen and (min-width: 1681px){
  .flex_box ul li a{
    font-size: 18px ;
  }
}
@media (min-width:1026px){
  .flex_box ul li a:hover,
  .flex_box ul li.active a{
    height: 100px;
    background-color: #009fa8;
    margin-top: -12px;
    color: #fff;
    line-height: 76px;
  }
  .flex_box ul li a:hover i,
  .flex_box ul li.active a i{
    display:block;
  }
}

@media screen and (max-width: 1680px) and (min-width: 1355px){
  .items{
    font-size: 18px !important;
  }
  .press_room_atitle{
    font-size: 18px;
  }
  .date {
    font-size: 12px;
  }
  .blog_heading{
    font-size: 13px !important;
  }
  h1.category_index_title {
    font-size: 36px;
  }
  .path {
    font-size: 12px;
  }
  h3.title {
    font-size: 15px !important;
  }
}

@media screen and (max-width: 1354px) and (min-width: 900px){
  h1.category_index_title {
    font-size: 36px;
  } 
  .date {
    font-size: 12px;
  }
  h3.title {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 1200px) and (min-width: 1100px){
  .cover {
    height: 185px;
  }
}

@media screen and (max-width: 1354px) and (min-width: 451px){
  .blog_heading {
    font-size: 13px;
  } 
}
@media screen and (max-width: 959px) and (min-width: 451px){
  .country_container{
    margin: 50px 0 0 0;
  }
  a.blog_item{
    margin: 0 5px 30px 5px;
    width: calc((100%/2) - 10px);
  }
  .cover {
    height: auto;
  }
}
@media (max-width:1025px){
  .blog_listing_wrapper .flex_box{
    text-align: center;
    background: #019faa;
    height: 85px;
    line-height: 85px;
  }
  .flex_box ul li a i{
    display:none;
  }
  .flex_box ul li a br{
    display:none;
  }
  .flex_box ul li a{
    height: 85px;
    line-height: 85px;
    color:#fff;
  }
}
@media screen and (max-width: 1024px){
  .blog_container {
    padding-top: 178px;
  }
  .cover_line{
    opacity: 0;
  }
  .cover img{
    width:100%
  }
  .blog_container {
    padding-top: 178px;
  }
  .cover{
    height:auto;
  }
  .flex_box ul li:first-child a {
    display: none;
}
}


@media screen and (max-width: 899px){
  span.now{

    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .path{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .date {
    font-size: 1.230769230769231em;
    line-height:1.5

  }
  .title {
    font-size: 1.6em ;
    line-height:1.4 
  }
}
@media screen and (max-width: 800px){
  .post_content{
    overflow: hidden;
  }
  .pic_wrapper{
    width:100%;
  }
  .blog-text_wrapper{
    width:100%;
    padding-left:0px;
  }
}
@media screen and (max-width: 768px){
  a.blog_item{
    padding: 0 5px;
  }


  .article_share {
    width: 100%;
    text-align: left;
  }
  .article_data .article_share {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 500px){
  a.blog_item {
    margin-top: 30px;
    max-width: 100% !important;
    width: 100% !important;
  } 
  .article_content {
    margin: 0;
  }
  .flex_box_wrappper
  {
    margin-bottom: 25px;
  }
  .pic_wrapper {
    width: 100%;
    -webkit-order: -2;
    order: -2;
  }
  .blog-text_wrapper
  {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
  .blog_banner{
    height: 300px;
  }
  .blog_container{
    padding-top: 80px;
  }
  h1.category_index_title{
    font-size:30px;
    line-height:42px;
  }
  .pic_wrapper img{
    width:100%;
    height: auto;
  }
  .blog_heading {
    font-size: 16px!important;
    padding: 0 10px 0 10px;
  }
}
@media screen and (max-width: 450px){
  .country_container {
    margin: 50px 0 0 0;
  }
  .cover:after {
    opacity: 0;
  }
  a.blog_item{
    margin: 0 5px 30px 5px;
  }
}

@media screen and (max-width: 31.25em){
  .blog_banner{
    margin-top: 40px;
  }
  .flex_box ul li a,
  .blog_listing_wrapper .flex_box{
    height: 70px;
    line-height: 70px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 8rem 0;
  text-align: center;
  position: relative;
      z-index: 1;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #edeff2;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 0px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  padding: 10px 20px;
  font-size: 14px;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

.systems-page .widget-type-email_simple_subscription .hs-input{
  width: 100% !important;
}

.systems-page form{
  max-width:750px;
  width:100%;
}

.systems-page ul.no-list{
  padding:0;
}



#hs-pwd-widget-password{
  height:auto !important;
}


@media (max-width:767px){
  .systems-page h2{
    font-size: 35px;
  }
  .systems-page h1{
    font-size: 40px;
  }
}

@media (max-width:480px){
  .systems-page h2{
    font-size: 25px;
  }
  .systems-page h1{
    font-size: 28px;
  }
}

h1 .cht {
font-family: 'Noto Sans TC', sans-serif;

}
*{
  font-family: 'Roboto',Arial,Verdana,'Microsoft YaHei','Microsoft JhengHei',sans-serif !important;
}