/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

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

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

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

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

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

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

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

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
/*   min-height: 1px; */
  width: 100%;
}

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

.dnd-section > .row-fluid {
  margin: 0 auto;
}

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

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

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


/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

html{
    font-size: 62.5%;
}

body {
    overflow-wrap: break-word;
    overflow-x: hidden;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
    font-size: px;
    margin: 0 0 10px;
}

/* Anchors */

a {
    cursor: pointer;
    text-decoration: none;
    color: #232323;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
    overflow: auto;
}

code {
    vertical-align: bottom;
}

/* Blockquotes */

blockquote {
    border-left: 2px solid;
    margin: 0 0 1.4rem;
    padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
    border: none;
    border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
    font-size: 0.583rem;
    word-break: normal;
}

.body div#hubspot-messages-iframe-container{
    display: block !important;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

form label {
    display: block;
    font-size: 18px;
    margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
    font-size: 15px;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
    display: inline-block;
    font-size: 16px;
    padding: 15px 12px;
    min-height: 50px;
    width: 100%;
    border: 1px solid #cecece;
    outline: none;
}

form textarea {
    resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
    display: block;
    margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
    vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
    cursor: pointer;
    margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
    position: relative;
}

.hs-dateinput:before {
    content:'\01F4C5';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

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

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

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

/* Inputs - file picker */

form input[type=file] {
    background-color: transparent;
    border: initial;
    padding: initial;
}

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

.hs-form-required {
    color: #EF6B51;
}

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

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

/* Submit button */

form input[type=submit],
form .hs-button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.15s linear;
    white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
    margin: 0 auto;
}


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

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

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

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

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

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* header.header {
background: none;
min-height: 90px;
}
*/
div#hubspot-messages-iframe-container {
    display: none !important;
}
.sil-header {
    position: absolute;
    z-index: 999;
    top: 0;
    width: 100%;
    vertical-align: middle;
    /*     background: #fff; */
    height: 90px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

header.header .sil-header-inner {
    /*     background-color: #fff; */
    box-shadow: 0 10px 40px 0 rgba(0,0,0,.07);
}

header.header .container {
    vertical-align: middle;
}

header.header .sil-header-logo {
    float: none;
    height: 100%;
    vertical-align: middle;
    display: flex!important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 0 40px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

header.header .sil-header-logo a{
    position: relative;
    display: inline-block;
    max-width: 100%;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    justify-content: center;
    text-align: center;    
}

header.header .sil-header-logo img{
    max-width: 100%;
    display: block;
    vertical-align: middle;
    height: 37px !important;
    width: 100% !important;
}

header.header .sli-toggler{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: #101828;
    overflow: hidden;
    width: 42px;
    height: 42px;
    top: 23px;
    float: right;
    border-radius: 50%;
    margin-right: 30px;
    margin-left: 5px;
    background: #f5f7f8;
    cursor: pointer;
}

header.header .sli-lines{
    width: 50%;
    overflow: hidden;
    opacity: 1;
    top: 35%;
    right: 11px;
    position: absolute;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    opacity: 1;
    transform: scale(1) translate3d(0,0,0);
    transition: opacity 1s cubic-bezier(.215, .61, .355, 1) .6s,transform 1s cubic-bezier(.215, .61, .355, 1) .6s;
}




header.header .sli-toggler span.sli-line-1 {
    height: 2px;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 24px;
    transform: translate3d(0,3px,0);
    margin: 0;
    right: -5px;
}

header.header .sli-toggler span.sli-line-2 {
    height: 2px;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 30px;
    transform: translate3d(0,8px,0);
    margin: 0;
}

header.header .sli-toggler span.sli-line-2:before, header.header .sli-toggler span.sli-line-1:before {
    background: #6a7c92;
    transform: translate3d(-100%,0,0);
    content: ' ';
    position: absolute;
    height: 2px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    width: 100%;
}

header.header .sli-toggler span.sli-line-2:after, header.header .sli-toggler span.sli-line-1:after {
    transform: translate3d(0,0,0);
    background: #6a7c92;
    content: ' ';
    position: absolute;
    height: 2px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    width: 100%;
}


header.header .sli-toggler:hover span.sli-line-1:before {
    transform: translate3d(0,0,0);
    opacity: 1;
    transition: transform .8s cubic-bezier(.215, .61, .355, 1) 460ms,opacity .8s cubic-bezier(.215, .61, .355, 1) 460ms;
}

header.header .sli-toggler:hover span.sli-line-2:before{
    transform: translate3d(0,0,0);
    opacity: 1;
    transition: transform .8s cubic-bezier(.215, .61, .355, 1) 620ms,opacity .8s cubic-bezier(.215, .61, .355, 1) 620ms;
}

header.header .sli-toggler:hover span.sli-line-1:after{
    transform: translate3d(36px,0,0);
    opacity: 0;
    transition: transform .6s cubic-bezier(.165, .84, .44, 1) 0s,opacity .6s cubic-bezier(.165, .84, .44, 1) 0s;
}

header.header .sli-toggler:hover span.sli-line-2:after{
    transform: translate3d(36px,0,0);
    opacity: 0;
    transition: transform .6s cubic-bezier(.165, .84, .44, 1) 160ms,opacity .6s cubic-bezier(.165, .84, .44, 1) 160ms;
}

header.header .sli-menu-others{
    position: relative;
    float: right;
    height: 100%;
    padding-left: 20px;
}

header.header .sli-menu-others .cont-us-sec{
    float: right;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25px;
    margin-right: 20px;
}
header.header .sli-menu-others .cont-us-sec svg{
    padding: 11px;
    font-size: 17px;
    color: #111;
    float: left;
    width: 40px;
    height: 40px;
    top: 23px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 50%;
    margin-right: 10px;
    font-weight: 400;
    /*     -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-family: "Font Awesome 6 Free"; */
}

header.header .sli-menu-others .cont-us-sec span{
    font-size: 13px;
    line-height: 1;
    opacity: .7;
    text-align: left;
    float: left;
}

header.header .sli-menu-others .cont-us-sec a{
    color: #232323;
    cursor: pointer;
    display: block;
    font-weight: 600;
    line-height: 30px;
    text-decoration: none;
    white-space: nowrap;
    margin-top: -10px;
}
header.header .sli-menu-others .cont-us-sec a:first-child {
    display: inline;
}

header.header .sli-header-menu {
    height: 100%;
    vertical-align: middle;
    display: flex!important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    justify-content: center;
    align-items: flex-start;
}

header.header .sli-header-menu .hs-menu-wrapper{
    height: 100%;
}

header.header .sli-header-menu .hs-menu-wrapper > ul{
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

header.header .sli-header-menu .hs-menu-wrapper>ul>li a{
    position: relative;
    height: auto;
    overflow: hidden;
}

header.header .sli-header-menu .hs-menu-wrapper>ul>li>a{
    line-height: 28px;
    letter-spacing: 0px;
    font-weight: normal;
    font-style: normal;
    /*     color: #14133b; */
    font-size: 15px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.24s ease-in-out;
    -moz-transition: opacity 0.24s ease-in-out;
    transition: opacity 0.24s ease-in-out;
    display: inline-flex;
    white-space: nowrap;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    margin: 0 5px;
}

header.header .sli-header-menu .hs-menu-wrapper>ul:hover li a{
    opacity: 0.3;
}

header.header .sli-header-menu .hs-menu-wrapper>ul li a:before {
    top: 100%;
    width: 100%;
    left: 0;
    content: attr(data-hover);
    -webkit-transition: -webkit-transform .2s;
    transition: transform .2s;
    transform: translate3d(0,0,0) scale3d(1,1,1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg,0deg);
    transform-style: preserve-3d;
    position: absolute;
}

header.header .sli-header-menu .hs-menu-wrapper>ul:hover li:hover a {
    opacity: 1;
}

header.header .sli-header-menu .hs-menu-wrapper>ul>li span.l-dropdown-icon {
    position: relative;
    display: inline-block !important;
    width: 5px;
    color: #ff0000;
    right: 0;
}

header.header .sli-header-menu .hs-menu-wrapper>ul>li.hs-menu-item.hs-menu-depth-1.hs-item-has-children span.l-dropdown-icon:after{
    opacity: 0.8;
}
header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul>li {
    padding: 5px 15px;
    line-height: 20px;
}
header.header .sli-header-menu .hs-menu-wrapper>ul>li:hover>ul>li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
header.header .sli-header-menu .hs-menu-wrapper>ul>li> ul >li > a {
    min-width: 150px;
    font-family: Roboto;
    line-height: 23px;
    letter-spacing: 0px;
    font-weight: 400;
    font-style: normal;
    color: #14133b;
    font-size: 14px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.24s ease-in-out;
    -moz-transition: opacity 0.24s ease-in-out;
    transition: opacity 0.24s ease-in-out;
    text-decoration: none;
}

header.header .sli-bg-header-icon {
    display: none;  
}

header.header .sli-header-icon {
    top: 40px;
    right: 50px;
    display: none;
    position: relative;
    padding: 0;
    float: right;
    background-color: transparent;
    border: 0;
    width: 20px;
    height: 14px;
    cursor: pointer;
    z-index: 999;
    overflow: hidden;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

header.header .sli-header-icon {
    top: 50%;
    margin-left: 20px;
    right: 33px;
}

header.header .sli-header-icon span {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background: #fff;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

header.header .sli-header-icon:before {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background: #fff;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
}

header.header .sli-header-icon:after {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background: #fff;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    top: auto;
    bottom: 0;
}

.menu_open header.header .sli-header-icon:before {
    top: 6px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu_open header.header .sli-header-icon:after {
    bottom: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu_open header.header .sli-header-icon span {
    display: none;
}

header.header .sli-header-menu .hs-menu-wrapper>ul>li span.l-dropdown-icon {
    display: block;
}
header.header .sli-header-menu .hs-menu-wrapper > ul ul {
    display: none;
}

.header--searchs {
    float: none;
    display: block;
    height: 100%;
}

.header--searchs .hs-search-field {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 100%;
    z-index: 9999;
    transition: width 0.3s ease;
    overflow: hidden;
}

.header--searchs .hs-search-field form {
    height: 100%;
}

.header--searchs .hs-search-field form input {
    min-height: 100%;
    border: none;
    outline: none;
}
.header--searchs .hs-search-field--open .hs-search-field__suggestions {
    background: #fff;
    padding: 20px;
    padding-top: 0;
    list-style: none;
    text-align: left;
}
.header--searchs .hs-search-field .hs-search-field__bar {
    height: 100% !important;
}

.header--searchs .search-icon {
    position: relative;
    cursor: pointer;
    padding: 0 13px;
}

.header--searchs .search-icon:before {
    background-color: hsla(0, 0%, 100%, .2);
    content: "";
    height: 30px;
    position: absolute;
    right: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    left: 0;
}
.header--searchs.search_open .hs-search-field {
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    overflow: unset;
}
.header--searchs .close-btn {
    position: absolute;
    z-index: 99999;
    right: 30px;
    font-size: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.5s ease;
    transition-delay: 0.4s;
}

.header--searchs.search_open .close-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.active-dark .header--searchs .hs-search-field form input {
    background: rgba(16, 24, 40, 1.0);
    color: #fff;
}

.active-dark .header--searchs .hs-search-field form input::placeholder {
    color: #fff;
}
@media (min-width: 992px){
    header.header .sli-header-menu .hs-menu-wrapper>ul>li span.l-dropdown-icon:before{
        content: "\f107";
        font-family: FontAwesome;
        font-size: 12px;
    }
    header.header .sil-header-inner {
        vertical-align: middle;
        height: 100%;
    }
    header.header .container {
        height: 100%
    }
    header.header .sli-header-menu .hs-menu-wrapper > ul{
        margin-bottom: 0;
        padding: 0;
        height: 90px!important;
        line-height: 90px!important;
    }
    header.header .sli-header-menu .hs-menu-wrapper>ul>li{
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        list-style: none;
        display: inline-flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        margin: 0 10px;
        position: relative;
    }
    header.header .sli-header-menu .hs-menu-wrapper>ul>li.active>a{
        color: #f23801
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li span.l-dropdown-icon {
        display: block;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul ul li span.l-dropdown-icon {
        float: right;
        transform: rotate(-90deg);
        position: relative;
        top: 5px;
        right: 10px;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        text-align: left;
        margin-top: -1px;
        padding: 20px 0;
        z-index: -1;
    }
    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul{
        left: 0;
    }
    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul{
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        transition: all .4s ease;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -o-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        -o-transform-origin: 0 0 0;
        transform-origin: 0 0 0;
        opacity: 0;
        position: absolute;
        margin: 0 5px;
        -moz-box-shadow: 11px 10px 38px 0 rgba(0,0,0,.1);
        -webkit-box-shadow: 11px 10px 38px 0 rgba(0,0,0,.1);
        box-shadow: 11px 10px 38px 0 rgba(0,0,0,.1);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        display: block;
        top: -1.9rem;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul{
        top: 100%;
        z-index: -1;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li:hover>ul{
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -o-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        opacity: 1;
        display: block;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul>li {
        margin: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
        -webkit-transition: all .2s cubic-bezier(.4, .28, .31, 1.28) 0s;
        transition: all .2s cubic-bezier(.4, .28, .31, 1.28) 0s;
        position: relative;
        list-style: none;
    }
    header.header .sli-header-menu .hs-menu-wrapper>ul>li> ul >li > a {
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        display: inline-block;
        position: relative;
        margin: 3px 15px;
    }
    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul>li>ul {
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        transition: all .4s ease;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -o-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        -o-transform-origin: 0 0 0;
        transform-origin: 0 0 0;
        opacity: 0;
        position: absolute;
        margin: 0 5px;
        -moz-box-shadow: 11px 10px 38px 0 rgba(0, 0, 0, .1);
        -webkit-box-shadow: 11px 10px 38px 0 rgba(0,0,0,.1);
        box-shadow: 11px 10px 38px 0 rgba(0,0,0,.1);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        display: block;
        top: -19px !important;
        left: 100% !important;
        min-width: 220px;
        text-align: left;
        padding: 20px 0;
        z-index: -1;
        -webkit-box-shadow: 0 10px 30px rgba(0,0,0,.1);
        -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
        box-shadow: 0 10px 30px rgba(0,0,0,.1);
        background: #fff;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul>li>ul>li {
        list-style: none;
        position: relative;
        padding: 5px 15px;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul>li>ul>li>a {
        font-family: Roboto;
        line-height: 23px;
        letter-spacing: 0px;
        font-weight: 400;
        font-style: normal;
        color: #14133b;
        font-size: 14px;
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.24s ease-in-out;
        -moz-transition: opacity 0.24s ease-in-out;
        transition: opacity 0.24s ease-in-out;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul>li:hover>ul {
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -o-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        opacity: 1;
        display: block;
    }
}

@media screen and (max-width: 1024px){
    header.header .sli-bg-header-icon {
        position: relative;
        height: 100%;
        width: 80px;
        float: right;
        z-index: 9999;
    }
    header.header .sli-bg-header-icon:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .sli-bg-header-icon {
        display: block !important;
    }
    header.header .sli-header-menu .hs-menu-wrapper {
        display: none!important;
    }
}
@media screen and (max-width: 991px){
    .sil-header {
        height: auto;
        background-color: rgba(255,255,255,.946);
    }
    .header_menu-section .sli-p-menu-list .hs-menu-wrapper>ul>li>a .dropdown-arrow, .sidemenu_wrap .nav_area .hs-menu-wrapper > ul > li.active > a .dropdown-arrow {
        display: none;
    }
    header.header .container {
        height: 70px;
    }
    header.header .sli-bg-header-icon {
        height: 70px;
        width: 70px;
    }
    header.header .sli-header-icon {
        display: block;
        right: 25px;
    }
    header.header .sli-menu-others .cont-us-sec {
        padding-top: 18px;
    }

    header.header .sli-toggler {
        top: 15px;
    }
    header.header .sli-header-menu .hs-menu-wrapper {
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        min-width: 320px;
        background: #fff;
        width: 100%;
        margin: 0;
        position: absolute;
        top: 70px;
        right: 0;
        z-index: 999;
        -webkit-animation: fadeInUp .4s both;
        -moz-animation: fadeInUp .4s both;
        -o-animation: fadeInUp .4s both;
        animation: fadeInUp .4s both;
        -webkit-box-shadow: 0 34px 90px 0 rgba(0,0,0,.07);
        -moz-box-shadow: 0 34px 90px 0 rgba(0,0,0,.07);
        box-shadow: 0 34px 90px 0 rgba(0,0,0,.07);
        height: auto;
    }
    .menu_open header.header .sli-header-menu .hs-menu-wrapper {
        display: block !important;
    }

    header.header .sli-header-menu .hs-menu-wrapper> ul {
        display: block;
        text-align: left;
        margin: 0;
        padding: 15px 0 20px;
    }
    header.header .sli-header-menu .hs-menu-wrapper>ul>li>ul {
        display: none;
        background: 0 0!important;
        padding: 0;
        margin-right: 10px;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li {
        position: relative;
        padding: 5px 30px;
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        list-style: none;
        opacity: 1!important;
        line-height: 30px;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li>a {
        /* display: block; */
        line-height: 26.4px!important;
        white-space: nowrap;
        transition: all .3s ease-in-out!important;
        font-weight: normal;
    }
    header.header .sli-header-menu .hs-menu-wrapper>ul>li.hs-menu-item.hs-item-has-children span.l-dropdown-icon:after{
        content: "\f107";
        font-family: FontAwesome;
        font-size: 12px;
    }

    header.header .sli-header-menu .hs-menu-wrapper > ul ul {
        display: none;
    }
    .header--searchs .close-btn {
        font-size: 20px;
        right: 14px;
    }

    .header-wrapper-v3 .header_hover {
        padding: 0 10px;
    }

    .header--searchs .search-icon {
        padding-right: 23px;
        top: 0;
        padding-left: 0;
    }

    .header--searchs .search-icon:before {
        display: none;
    }
}

@media screen and (max-width: 767px){
    header.header .sli-header-menu .hs-menu-wrapper{
        display: none !important;
    }
    header.header .sli-bg-header-icon {
        display: block;
    }
    header.header .sli-menu-others .cont-us-sec{
        display: none;
    }

    header.header .sli-header-menu .hs-menu-wrapper>ul>li ul>li span.l-dropdown-icon{
        float: right;
        top: -22px;
    }
}

@keyframes fadeInUp{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
    height: auto;
    max-width: 100%;
}
body.cursor-default {
    overflow-x: hidden;
}

.mouse-cursor.style4 {
    background: #f23801;
    z-index: 99999999;
    pointer-events: none;
    position: absolute;
    top: -2px;
    left: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.mouse-cursor.style4:before {
    position: absolute;
    top: -18px;
    left: -18px;
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #9c9c9c;
    border-radius: 50%;
    opacity: .2;
    box-sizing: border-box;
    z-index: 99999997;
    -webkit-transition: width .3s ease-in-out,height .3s ease-in-out,margin .3s ease-in-out,opacity .3s ease-in-out;
    transition: width .3s ease-in-out,height .3s ease-in-out,margin .3s ease-in-out,opacity .3s ease-in-out;
}

/* .mouse-cursor.bigCursor.style4 {
-webkit-transform: scale(3.3);
-moz-transform: scale(3.3);
-ms-transform: scale(3.3);
-o-transform: scale(3.3);
transform: scale(3.3);
mix-blend-mode: difference;
-webkit-backdrop-filter: invert(100%);
backdrop-filter: invert(100%);
--transform-scale-x: 0;
--transform-scale-y: 0;
transition-duration: .2s;
transition-timing-function: cubic-bezier(0,0,0.2,1);
}
*/
.button {
    display: inline-flex;
    position: relative;
    overflow: hidden;
    margin: 0 0 10px 0;
    vertical-align: middle;
    background: #101828;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    min-height: 50px;
    letter-spacing: .5px;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    -ms-transition: all .3s linear;
    transition: all .3s linear;
}


.blog-sidebar .dnd-section {
    padding: 0;
}

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

.cm-blog-list-sidebar .container {
    width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

figure {
    margin: 0;
    position: relative;
    display: inline-grid;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.cm-blog-list-sidebar {
    padding-top: 70px;
    padding-bottom: 100px;
}

.bloglist {
    padding: 0 10px;
    width: 66.666%;
}

.blog-index__post .grid-post {
    margin-bottom: 30px;
    float: left;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.blog-index__post .featured--image {
    position: relative;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    float: left;
    clear: none;
    box-shadow: none;
    overflow: hidden;
    margin-right: 45px;
}

.blog-index__post .featured--image img.attachment-siloh {
    min-height: 250px;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    object-fit: cover;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    width: 100%;
    /* height: 250px !important; */
    vertical-align: middle;
}

.blog-index__post .featured--image a.cat-name {
    position: absolute;
    left: 25px;
    top: 25px;
    font-weight: 600;
    font-size: 12px !important;
    line-height: 23px !important;
    text-transform: uppercase;
    z-index: 4;
    overflow: hidden;
    line-height: 1.5 !important;
    padding: 2px 13px 2px 14px;
    margin: auto;
    display: block;
    width: fit-content;
    color: #fff;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.post-content {
    float: left;
    clear: none;
    box-shadow: none;
    overflow: hidden;
    margin-right: 45px;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.post-content .meta-post {
    padding: 0;
    margin-left: 0;
    margin: 0;
}

.post-content .meta-post li {
    margin-top: 0;
    position: relative;
    display: inline-block;
    margin-top: 10px;
    color: #6a7c92 !important;
    letter-spacing: .04em;
    color: inherit;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.post-content .meta-post li:not(:last-child):after {
    content: "";
    margin: 0 5px 0 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid currentcolor;
    line-height: 30px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
}

.post-content h3.post-title {
    margin-bottom: 15px;
    clear: both;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.24s ease-in-out;
    -moz-transition: opacity 0.24s ease-in-out;
    transition: opacity 0.24s ease-in-out;
    color: #14133b;
    font-family: 'Fira Sans';
}

.post-content p.content {
    font-size: 15px;
    line-height: 25px;
    transition: all .25s cubic-bezier(.25, .8, .25, 1);
}

.post-content a.btn-arrow svg {
    width: 100%;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
    will-change: transform;
    margin-left: -15px;
}

.sidebar-wrapper {
    width: 1240px !important;
    max-width: 100%;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.blog-sidebar {
    width: 33.333%;
    display: flex;
    position: relative;
    min-height: 1px;
    padding: 0px 0px 0px 50px;
    flex-wrap: wrap;
    flex-direction: column;
}

.blog-sidebar > div {
    width: 100%;
}

.mo-thumb {
    display: inline-block;
    float: left;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: visible;
    position: relative;
    margin: -12px 27px 12px 0;
}

.cm-rec-post ul {
    padding-left: 0;
    overflow: visible;
    counter-reset: headings 0;
    box-shadow: none;
    list-style: none;
    margin-bottom: 10px;
}

.cm-rec-post ul li {
    margin: 0;
    position: relative;
    list-style: none;
    margin-top: 1.65em;
}

.mo-meta {
    font-size: 12px;
}

h6.mo-title.mo-text-ellipsis {
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 500;
    /* margin-bottom: 5px; */
    font-size: 16px;
    line-height: 24px;
}

h6.mo-title.mo-text-ellipsis a {
    background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
    background-position: 0 calc(100% - .1em);
    background-size: 0 2px;
    transition: background-size .25s cubic-bezier(.785, .135, .15, .86) 0s;
    padding: 3px 0;
    display: inline;
    background-repeat: no-repeat;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 23px;
    font-weight: 600;
    font-family: 'Fira Sans' !important;
}

.mo-thumb:before {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 34px;
    counter-increment: headings 1;
    content: counter(headings, decimal);
    font-weight: 600;
    font-size: 15px;
    line-height: 33px;
    text-indent: 0;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    color: #fff;
    background: #101828;
}

.cm-recent-post-title h3 {
    font-size: 20px;
    line-height: 25px;
}


/* Our service */

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}