/* Counter Widget CSS */
.hfe-counter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Default alignments that will be overridden by controls */
.hfe-counter-wrapper[style*="flex-direction: column"] {
    align-items: center; /* horizontal alignment for column layouts */
    justify-content: center; /* vertical alignment for column layouts */
}

.hfe-counter-wrapper[style*="flex-direction: row"] {
    justify-content: center; /* horizontal alignment for row layouts */
    align-items: center; /* vertical alignment for row layouts */
}

.hfe-counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
}


.hfe-counter-number {
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
}

.hfe-counter-title {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.hfe-counter-prefix,
.hfe-counter-suffix {
    font-size: inherit;
    line-height: inherit;
}



/* Title styling - flex enabled for alignment controls */
.hfe-counter-title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Ensure counter content doesn't shrink */
.hfe-counter-content {
    flex-shrink: 0;
}

/* Equal width distribution for horizontal layouts */
.hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-title,
.hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

.hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-title,
.hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

/* Alternative approach - apply to all potential horizontal layouts */
.hfe-counter-wrapper:not([style*="column"]) .hfe-counter-title,
.hfe-counter-wrapper:not([style*="column"]) .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

/* Ensure counter content maintains flex display in all layouts */
.hfe-counter-content {
    display: flex !important;
    align-items: center;
    justify-content: center;
}


/* Responsive equal width distribution */
@media (max-width: 1024px) {
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
        flex: 1;
        min-width: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hfe-counter-number {
        font-size: 36px;
    }
    
    .hfe-counter-title {
        font-size: 16px;
    }
}

/* Navigation Menu CSS */

ul.hfe-nav-menu,
.hfe-nav-menu li,
.hfe-nav-menu ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.hfe-nav-menu li.menu-item {
    position: relative;
}

.hfe-flyout-container .hfe-nav-menu li.menu-item {
    position: relative;
    background: unset;
}

.hfe-nav-menu .sub-menu li.menu-item {
    position: relative;
    background: inherit;
}
.hfe-nav-menu__theme-icon-yes button.sub-menu-toggle {
    display: none;
}

div.hfe-nav-menu,
.elementor-widget-hfe-nav-menu .elementor-widget-container{
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hfe-nav-menu__layout-horizontal,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.hfe-nav-menu .parent-has-no-child .hfe-menu-toggle {
    display: none;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu,
.hfe-submenu-action-hover .hfe-layout-vertical .hfe-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 16;
    visibility: hidden;
    opacity: 0;
    text-align: left;
    -webkit-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
    visibility: visible;
    opacity: 1;
}

.hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
    visibility: hidden;
    opacity: 0;
}

.hfe-nav-menu .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
}

.hfe-flyout-container .hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 0;
}

.hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 100%;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.hfe-nav-menu:before,
.hfe-nav-menu:after {
    content: '';
    display: table;
    clear: both;
}

/* Alignemnt CSS */
.hfe-nav-menu__align-right .hfe-nav-menu {
  margin-left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          -webkit-justify-content: flex-end;
          -moz-box-pack: end;
          justify-content: flex-end; }

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          -webkit-justify-content: flex-end;
          -moz-box-pack: end;
          justify-content: flex-end; }

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: right;
}
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: left;
}
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: center;
}
.hfe-nav-menu__align-left .hfe-nav-menu {
  margin-right: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -moz-box-pack: start;
          justify-content: flex-start; }

.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -moz-box-pack: start;
          justify-content: flex-start; }

.hfe-nav-menu__align-center .hfe-nav-menu {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-pack: center;
          justify-content: center; }

.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-pack: center;
          justify-content: center; }

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
}
.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    width: 100%; 
}
  .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.menu-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            -webkit-flex-grow: 1;
            -moz-box-flex: 1;
            flex-grow: 1; }
    .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              -webkit-justify-content: center;
              -moz-box-pack: center;
              justify-content: center; }

/* Alignment CSS ends */

.hfe-active-menu + nav li:not(:last-child) a.hfe-menu-item,
.hfe-active-menu + nav li:not(:last-child) a.hfe-sub-menu-item {
    border-bottom-width: 0;
}

/*  Horizontal Menu */

.hfe-nav-menu a.hfe-menu-item,
.hfe-nav-menu a.hfe-sub-menu-item {
    line-height: 1;
    text-decoration: none;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.hfe-nav-menu a.hfe-menu-item:hover,
.hfe-nav-menu a.hfe-sub-menu-item:hover {
    text-decoration: none;
}

.hfe-nav-menu .sub-menu {
    min-width: 220px;
    margin: 0;
    z-index: 9999;
}

.hfe-nav-menu__layout-horizontal {
    font-size: 0;
}

.hfe-nav-menu__layout-horizontal li.menu-item,
.hfe-nav-menu__layout-horizontal > li.menu-item {
    font-size: medium;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu{
    -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
}

/* Icons CSS */
.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: '+'; 
}
.hfe-submenu-icon-none .hfe-nav-menu .parent-has-child .sub-arrow {
    display: none; 
}

.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before,.hfe-link-redirect-self_link.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: '-'; 
}
.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: ''; 
}

.rtl .hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.rtl .hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}
/* Icon CSS ends */

.hfe-nav-menu-icon {
    padding: 0.35em;
    border: 0 solid;
}

.hfe-nav-menu-icon svg {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 25px;
}

.hfe-nav-menu-icon i:focus {
    outline: 0;
}

.hfe-has-submenu-container a.hfe-menu-item:focus,
.hfe-has-submenu-container a.hfe-sub-menu-item:focus {
    outline: 0;
}
/* Submenus */

.hfe-nav-menu .menu-item-has-children:focus,
.hfe-nav-menu .menu-item-has-children .sub-menu:focus,
.hfe-nav-menu .menu-item-has-children-container:focus {
    outline: 0;
}
.hfe-nav-menu .menu-item-has-children-container {
    position: relative;
}

.hfe-nav-menu__layout-expandible .sub-menu,
.hfe-nav-menu__layout-vertical .sub-menu,
.hfe-flyout-wrapper .sub-menu {
    position: relative;
    height: 0;
}

.hfe-nav-menu__submenu-arrow .hfe-menu-toggle:before,
.hfe-nav-menu__submenu-plus .hfe-menu-toggle:before,
.hfe-nav-menu__submenu-classic .hfe-menu-toggle:before {
    font-family: 'Font Awesome 5 Free';
    z-index: 1;
    font-size: inherit;
    font-weight: inherit;
    line-height: 0;
}

.hfe-menu-item-center .hfe-nav-menu li a.hfe-menu-item,
.hfe-menu-item-center .hfe-nav-menu li a.hfe-sub-menu-item {
    margin-right: 0px;
}

.hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-menu-item,
.hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-sub-menu-item {
    margin-right: 0px;
}

.hfe-nav-menu__toggle-icon:before {
    content: '\f0c9';
    font-family: 'fontAwesome';
    z-index: 1;
    font-size: 24px;
    font-weight: inherit;
    font-style: normal;
    line-height: 0;
}

.hfe-active-menu .hfe-nav-menu__toggle-icon:before {
    content: '\f00d';
}

.hfe-nav-menu__layout-expandible {
    -webkit-transition-property: display;
    transition-property: display;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
    transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
}

.hfe-nav-menu__layout-expandible {
    visibility: hidden;
    opacity: 0; 
}

.hfe-nav-menu__layout-expandible .sub-menu {
    visibility: hidden;
    opacity: 0; 
}

.hfe-active-menu + .hfe-nav-menu__layout-expandible {
    visibility: visible;
    opacity: 1; 
    height: auto;
}

.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-expandible,
.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
    position: absolute;
    top: 100%;
}

.hfe-nav-menu__layout-expandible .menu-item-has-children .menu-item-has-children .sub-menu,
.hfe-nav-menu__layout-vertical .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 0;
}

.hfe-layout-expandible nav {
    height: 0;
}

.hfe-nav-sub-menu-icon, .hfe-nav-menu__icon {
    display: inline-block;
    line-height: 1;
}

.hfe-nav-menu__toggle {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
    cursor: pointer;
    border: 0 solid;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #494c4f;
    position: relative;
    line-height: 1;
}

.hfe-nav-menu__toggle-icon {
    display: inline-block;
    font-size: inherit;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hfe-nav-menu .sub-arrow {
    font-size: 14px;
    line-height: 1;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    margin-top: -10px;
    margin-bottom: -10px;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
    margin-left: 10px;
}

.hfe-nav-menu__layout-vertical .hfe-nav-menu .sub-arrow,
.hfe-layout-expandible .sub-arrow,
.hfe-flyout-wrapper .sub-arrow
{
    padding: 10px;
}

.hfe-nav-menu .child-item,
.hfe-nav-menu__layout-vertical .hfe-nav-menu .child-item {
    font-size: 14px;
    line-height: 1;
    padding: 10px 0 10px 10px;
    margin-top: -10px;
    margin-bottom: -10px;
    position: absolute;
    right: 0;
    margin-right: 20px;
}

.hfe-layout-horizontal .hfe-nav-menu__toggle,
.hfe-layout-vertical .hfe-nav-menu__toggle {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.hfe-nav-menu-icon {
    display: inline-block;
    line-height: 1;
    text-align: center;
}

.hfe-nav-menu__layout-expandible .saved-content,
.hfe-nav-menu__layout-expandible .sub-menu,
.hfe-nav-menu__layout-expandible .child,
.hfe-nav-menu__layout-vertical .saved-content,
.hfe-nav-menu__layout-vertical .sub-menu,
.hfe-nav-menu__layout-vertical .child,
.hfe-flyout-container .saved-content,
.hfe-flyout-container .sub-menu,
.hfe-flyout-container .child {
    left: 0 !important;
    width: 100% !important; 
}

.hfe-flyout-container .hfe-nav-menu .sub-menu {
    background: unset;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle:hover,
.hfe-nav-menu__layout-expandible .hfe-menu-toggle:hover,
.hfe-flyout-wrapper .hfe-menu-toggle:hover {
    border:1px dotted;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle,
.hfe-nav-menu__layout-expandible .hfe-menu-toggle,
.hfe-flyout-wrapper .hfe-menu-toggle {
    border:1px dotted transparent;
}

/* Common Animation CSS */

.hfe-nav-menu .menu-item a:before,
.hfe-nav-menu .menu-item a:after {
  display: block;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
          transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1); }

.hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
  opacity: 0; }

.hfe-nav-menu .menu-item a.hfe-menu-item:hover:before,
.hfe-nav-menu .menu-item a.hfe-menu-item:hover:after,
.hfe-nav-menu .menu-item a.hfe-menu-item:focus:before,
.hfe-nav-menu .menu-item a.hfe-menu-item:focus:after,
.hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:before,
.hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:after,
.hfe-nav-menu .current-menu-item:before,
.hfe-nav-menu .current-menu-item:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* Double Line / Underline / Overline Style */

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:after {
    height: 3px;
    width: 100%;
    left: 0;
    background-color: #55595c;
    z-index: 2;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    height: 0;
    width: 0;
    left: 50%;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: -10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: -10px;
}

.hfe-pointer__double-line.hfe-animation__none, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__underline.hfe-animation__none, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__overline.hfe-animation__none, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__double-line.hfe-animation__none:before, .hfe-pointer__double-line.hfe-animation__none:after, .hfe-pointer__double-line.hfe-animation__none:hover, .hfe-pointer__double-line.hfe-animation__none:focus, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__underline.hfe-animation__none:before, .hfe-pointer__underline.hfe-animation__none:after, .hfe-pointer__underline.hfe-animation__none:hover, .hfe-pointer__underline.hfe-animation__none:focus, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__overline.hfe-animation__none:before, .hfe-pointer__overline.hfe-animation__none:after, .hfe-pointer__overline.hfe-animation__none:hover, .hfe-pointer__overline.hfe-animation__none:focus, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before {
    content: '';
    top: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    width: 10px;
    left: -20px;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after {
    content: '';
    bottom: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    width: 10px;
    left: -webkit-calc( 100% + 20px);
    left: calc( 100% + 20px);
}


/* Framed Style */

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after {
    background: transparent;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 3px solid #55595c;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before {
    content: '';
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

.hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:before {
    -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.2s, transform 0.4s;
    transition: opacity 0.2s, transform 0.4s, -webkit-transform 0.4s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
    width: 3px;
    height: 3px;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before {
    border-width: 0 0 3px 3px;
    -webkit-transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
    transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 3px 3px 0 0;
    -webkit-transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
    transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
    width: 100%;
    height: 100%;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before {
    -webkit-transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
    transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
    -webkit-transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
    transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
    width: 3px;
    height: 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before {
    border-width: 3px 0 0 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 0 3px 3px 0;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:after {
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.002s, width 0.4s, height 0.4s;
    transition: opacity 0.002s, width 0.4s, height 0.4s;
}

.hfe-pointer__framed.hfe-animation__none, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__framed.hfe-animation__none:before, .hfe-pointer__framed.hfe-animation__none:after, .hfe-pointer__framed.hfe-animation__none:hover, .hfe-pointer__framed.hfe-animation__none:focus, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/* Background Style */

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:after {
    content: '';
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #55595c;
    z-index: -1;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__background .menu-item.parent a.hfe-menu-item.highlighted, .hfe-pointer__background .current-menu-item {
    color: #fff;
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__grow .current-menu-item:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shrink .current-menu-item:before {
    -webkit-transition: opacity 0.15s, -webkit-transform 0.4s;
    transition: opacity 0.15s, -webkit-transform 0.4s;
    transition: opacity 0.15s, transform 0.4s;
    transition: opacity 0.15s, transform 0.4s, -webkit-transform 0.4s;
}

.hfe-pointer__background.hfe-animation__sweep-left .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    left: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-right .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    right: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-up .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-down .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-out-vertical .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    bottom: 50%;
    top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-out-horizontal .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    right: 50%;
    left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #55595c;
    z-index: -1;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:before {
    top: 0;
    bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after {
    top: 100%;
    bottom: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:before {
    bottom: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:after {
    top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:before {
    right: 0;
    left: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
    right: 100%;
    left: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:before {
    left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:after {
    right: 50%;
}

.hfe-pointer__background.hfe-animation__none, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__background.hfe-animation__none:before, .hfe-pointer__background.hfe-animation__none:after, .hfe-pointer__background.hfe-animation__none:hover, .hfe-pointer__background.hfe-animation__none:focus, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/* Text Style */

.hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: skew(-8deg);
    -ms-transform: skew(-8deg);
    transform: skew(-8deg);
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
}

.hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    transform: rotate(6deg);
}

.hfe-pointer__text.hfe-animation__none, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__text.hfe-animation__none:before, .hfe-pointer__text.hfe-animation__none:after, .hfe-pointer__text.hfe-animation__none:hover, .hfe-pointer__text.hfe-animation__none:focus, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-flyout-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999998;
    background: rgba(0,0,0,.6);
    cursor: pointer;
    -webkit-backface-visibility: hidden;
}

/* No link hover effect to last menu item */

.hfe-pointer__underline .menu-item.parent a.hfe-menu-item.elementor-button:after,
.hfe-pointer__overline .menu-item.parent a.hfe-menu-item.elementor-button:before,
.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:after,
.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:before {
    height: 0px;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:before,
.hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:after{
    border-width: 0px;
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:hover,
.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:focus
{
    -webkit-transform: none;
    transform: none;
}

.hfe-flyout-close,
.hfe-flyout-close svg {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
    width: 23px;
    height: 23px;
    line-height: 23px;
    font-size: 23px;
    display: block;
    cursor: pointer;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
    top: 0;
    bottom: 0;
    left: -100%;
    right: auto;
    height: 100%;
    /*height: 100vh;*/
    width: 300px;
    max-width: 100%;
    max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side {
    display: none;
    position: fixed;
    z-index: 999999;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-show {
    display: block;
}

.hfe-flyout-content.push {
    color: #ffffff;
}

.hfe-flyout-content ul li {
    color: #ffffff;
}

/* ===========================================================
 *  Flyout Location
 * ======================================================== */

.hfe-flyout-wrapper .hfe-side.hfe-flyout-right {
    top: 0;
    bottom: 0;
    left: auto;
    right: -100%; /* default */
    height: 100%;
    /*height: 100vh;*/
    width: 300px; /* default */
    max-width: 100%;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
    top: 0;
    bottom: 0;
    left: -100%; /* default */
    right: auto;
    height: 100%;
    /*height: 100vh;*/
    width: 300px; /* default */
    max-width: 100%;
    max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side.top {
    top: -100%; /* default */
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    width: 100vw;
    height: 300px; /* default */
    max-height: 100%;
}

.hfe-flyout-wrapper .hfe-side.bottom {
    top: auto;
    bottom: -100%; /* default */
    left: 0;
    right: 0;
    width: 100%;
    width: 100vw;
    height: 300px; /* default */
    max-height: 100%;
}

/* ===========================================================
 *  Flyout Container
 * ======================================================== */

.hfe-flyout-content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.4em;
    color: #fff;
}
/* iOS fix */
@media (max-width:1024px) {
    .hfe-flyout-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.hfe-flyout-content::-webkit-scrollbar {
    display: none;
}

.admin-bar .hfe-side {
    margin-top: 32px;
}

/* Dropdown animation CSS */

.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {  
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:first-child,
.hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:last-child {
    overflow: visible !important;
}

.elementor-widget-navigation-menu:not(.hfe-nav-menu__align-justify):not(.hfe-menu-item-space-between) a.hfe-menu-item.elementor-button {
    display: inline-flex;
} 

.hfe-nav-menu li.hfe-button-wrapper {
    align-self: center;
}

/* Tablet */
@media only screen and ( max-width: 1024px ) {

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal li,
    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu{
        width: 100%;
        margin-right:0px;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle {
        display: block;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-vertical {
        visibility: visible;
        opacity: 1;
        height: auto;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        position: relative;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
        position: absolute;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
        top: 0;
        left: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle
    {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: none;
        transition: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle:hover {
        border:1px dotted;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle {
        border:1px dotted transparent;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
        top: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .saved-content,
    .hfe-nav-menu__breakpoint-tablet .sub-menu,
    .hfe-nav-menu__breakpoint-tablet .child {
        left: 0 !important;
        width:auto !important;  
    }

    .hfe-nav-menu .sub-menu {
        min-width: auto;
        margin: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
        padding: 10px;
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: '-'; 
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu .sub-menu{
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''
    }

    /* Effect 1: Fade in and scale up */
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    
    /*.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu ul.sub-menu ul.sub-menu li a{
        border-left: 16px solid transparent;
    }*/

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
         background-color: unset!important; 
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
        border: 0px!important;
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus{
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item,
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; 
    }
}

/* Mobile */
@media only screen and ( max-width: 767px ) {

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item 
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper { 
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal li.menu-item,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu {
        width: 100%
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle {
        display: inline-block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
        top: 0;
    }

    .hfe-nav-menu .sub-menu {
        min-width: auto;
        margin: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: none;
        transition: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle.hfe-active-menu {
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;  
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-mobile .hfe-layout-vertical .hfe-nav-menu__toggle
    {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-vertical {
        visibility: visible;
        opacity: 1;
        height: auto;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        position: relative;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
        position: absolute;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
        top: 0;
        left: 0;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: '-'; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle:hover{
        border:1px dotted;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle{
        border:1px dotted transparent;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu .sub-menu{
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* Effect 1: Fade in and scale up */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-1 .hfe-nav-menu {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
        padding: 10px;
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-1 .hfe-nav-menu {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    /* Effect 2: Slide from the right */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-2 .hfe-nav-menu {
        -webkit-transform: translateX(20%);
        -ms-transform: translateX(20%);
        transform: translateX(20%);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-2 .hfe-nav-menu {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    /* Effect 3: Slide from the bottom */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-3 .hfe-nav-menu {
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        transform: translateY(20%);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-3 .hfe-nav-menu {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    .hfe-nav-menu__breakpoint-mobile .saved-content,
    .hfe-nav-menu__breakpoint-mobile .sub-menu,
    .hfe-nav-menu__breakpoint-mobile .child,
    .hfe-nav-menu__breakpoint-tablet .saved-content,
    .hfe-nav-menu__breakpoint-tablet .sub-menu,
    .hfe-nav-menu__breakpoint-tablet .child{
        left: 0 !important;
        width: auto !important; 
    }

    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }   

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
        background-color: unset!important; 
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
        border: 0px!important;
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text .menu-item.parent a.hfe-menu-item:focus {
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
    }
}

.hfe-toggle-no .hfe-layout-expandible .hfe-nav-menu__toggle {
    display: none;
}

/* Icon common CSS */

.hfe-icon {
    display: inline-block;
    vertical-align: middle; /* Alignment of icon */
}

/* Icon Svg */
.hfe-icon svg {
    width: 1em;
    height: 1em;
}

/* Menu Cart CSS */

.hfe-cart-menu-wrap-custom {
    display: inline-block;
    line-height: 1;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count, 
.hfe-cart-menu-wrap-custom .hfe-cart-count:after {
    border-color: #75c32c;
    color: #75c32c;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count {
    font-weight: bold;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: 2.1em;
    min-height: 2.1em;
    font-size: 0.860em;
    line-height: 1.8;
    border-radius: 0.3em 0.3em 0.3em 0.3em;
    border-width: 2px;
    border-style: solid;
    padding: 12px 24px;
}

/* Default skin for cart*/
.hfe-cart-menu-wrap-default {
    display: inline-block;
    line-height: 1;
}

.hfe-cart-menu-wrap-default .hfe-cart-count, 
.hfe-cart-menu-wrap-default .hfe-cart-count:after {
    border-color: #75c32c;
    color: #75c32c;
}

.hfe-cart-menu-wrap-default .hfe-cart-count {
    font-weight: bold;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: 2.1em;
    min-height: 2.1em;
    font-size: 0.860em;
    line-height: 1.8;
    border-radius: 0em 0em 0.3em 0.3em;
    border-width: 2px;
    border-style: solid;
    padding: 0 .4em;
}

.hfe-cart-menu-wrap-default .hfe-cart-count:after {
    bottom: 100%;
    margin-bottom: 0;
    height: .8em;
    width: .8em;
    left: 50%;
    transform: translateX(-50%);
    top: -.6em;
    content: ' ';
    position: absolute;
    pointer-events: none;
    border-width: 2px;
    border-style: solid;
    border-top-left-radius: 10em;
    border-top-right-radius: 10em;
    border-bottom: 0;
}

.elementor-widget-hfe-cart:not(.hfe-menu-cart--show-subtotal-yes) .hfe-menu-cart__toggle .elementor-button-text {
    display: none; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-light .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e3'; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-medium .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e4'; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-solid .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e5'; 
}

.hfe-menu-cart__toggle .elementor-button {
    background: transparent;
    border-radius: 0;
    color: #818a91;
    border: 1px solid;
    border-color: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
}

.hfe-menu-cart__toggle .elementor-button-text {
    margin-right: 0.3em; 
}

.hfe-menu-cart__toggle .elementor-button-icon {
    position: relative;
    -webkit-transition: color 0.1s;
    -o-transition: color 0.1s;
    transition: color 0.1s; 
}

.hfe-menu-cart--items-indicator-bubble .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
    content: attr(data-counter);
    display: block;
    position: absolute;
    min-width: 1.6em;
    height: 1.6em;
    line-height: 1.5em;
    top: -0.7em;
    right: -0.7em;
    border-radius: 100%;
    color: #fff;
    background-color: #d9534f;
    text-align: center;
    font-size: 10px; 
}

.hfe-menu-cart--items-indicator-plain .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
    content: attr(data-counter);
    display: inline-block;
    font-weight: normal; 
}

.hfe-menu-cart--empty-indicator-hide .hfe-menu-cart__toggle .elementor-button .elementor-button-icon[data-counter="0"]:before {
    content: none;
    display: none; 
}

.hfe-menu-cart__toggle .elementor-button-icon {
    -webkit-box-ordinal-group: 16;
    -webkit-order: 15;
    -ms-flex-order: 15;
    order: 15;
}

.hfe-menu-cart__toggle.hfe-button-wrapper .elementor-button {
    color:#4d4848;
}

/*Search Box CSS*/

.hfe-search-button-wrapper {
    display: block;
    cursor: pointer;
    vertical-align: middle;
    text-align: right;
}

.hfe-search-form__container {
    display: flex;
    overflow: hidden;
}

.hfe-search-form__input {
    flex-basis: 100%;
}

.hfe-search-icon-toggle i.fa-search {
    display: inline-block;
    position: absolute;
    width: 20px;
    box-sizing: content-box;
    padding: 10px;
}

.hfe-search-icon-toggle i:before {
    vertical-align: middle;
}
/*search icon toggle css*/

.hfe-search-button-wrapper input[type=search] {
    border: 0;
    padding: 10px;
    cursor: pointer;
    border-radius: 0;
    transition: all .5s;
    box-sizing: border-box;
    outline: none;
}

.hfe-search-button-wrapper button {
    border: none;
    border-radius: 0;
    padding: 0;
}

.hfe-search-button-wrapper input[type=search]:focus {
    cursor: auto;
    border: none;
    box-shadow: none;
}

.hfe-search-icon-toggle input:-moz-placeholder,
.hfe-search-icon-toggle input::-webkit-input-placeholder {
    color: transparent;
}

.hfe-search-layout-icon .hfe-search-icon-toggle .hfe-search-form__input {
    background-color: unset;
    height: 100%;
}

.hfe-search-button-wrapper.hfe-input-focus {
    display: flex;
}

.hfe-search-form__container .hfe-search-submit {
    min-width: 3%;
    position:relative;
}

.hfe-search-form__container button#clear,
.hfe-search-icon-toggle button#clear {
    visibility: hidden;
    position: absolute;
    right:0; 
    top:0;
    padding: 0 8px;
    font-style: normal;
    user-select: none;
    cursor: pointer;
    bottom:0;
    margin-right:10px;
    background-color: transparent;
}

.hfe-search-button-wrapper input[type="search"]::-webkit-search-decoration,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-cancel-button,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-results-button,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-results-decoration { 
    display: none; 
}

.hfe-search-form__container button#clear-with-button{
    visibility: hidden;
    position: absolute;
    top: 0;
    padding: 0 8px;
    font-style: normal;
    font-size: 1.2em;
    user-select: none;
    cursor: pointer;
    bottom:0;
    background-color: transparent;
}

.hfe-search-button-wrapper, 
.hfe-search-form__container,
.hfe-search-icon-toggle,
.hfe-search-button-wrapper .hfe-search-icon-toggle i,
.hfe-search-button-wrapper .hfe-search-icon-toggle i:before {
    position: relative;
}

.hfe-search-button-wrapper .hfe-search-icon-toggle .hfe-search-form__input {
    position: absolute;
    width: 0;
    right: 0;
    background-color: transparent;
}

.hfe-search-icon-toggle {
    width: 100%!important;
}

.hfe-search-button-wrapper.hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{
    position: absolute;
    width: 250px;
    right: 0;
}

.hfe-search-layout-text .hfe-search-form__container,
.hfe-search-layout-icon_text .hfe-search-form__container,
.hfe-search-layout-text .hfe-search-form__container .hfe-search-form__input,
.hfe-search-layout-icon_text .hfe-search-form__container .hfe-search-form__input {
    width: 100%;
}

.hfe-search-icon-toggle {
    line-height: 1.5;
}

/*-------Navigation menu active parent---------*/
.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
 .hfe-pointer__overline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before  {
    width: 100%;
    left: 0;
    opacity:1;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: 0px;
    opacity:1;
}
.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 0px;
    opacity: 1;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    height: 3px;
    width: 100%;
    left: 0;
    opacity: 1;
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hfe-pointer__framed.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    opacity:1;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, 
.hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
.hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, 
.hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    border-width:3px;
    width:100%;
    opacity:1;
    height:100%;
}

/* Scroll to top CSS */
.hfe-scroll-to-top-wrap.hfe-scroll-to-top-hide {
    display: none;
}

.hfe-scroll-to-top-wrap.edit-mode,
.hfe-scroll-to-top-wrap.single-page-off {
    display: none !important;
}

.hfe-scroll-to-top-button {
    position:fixed;
    right:15px;
    bottom:15px;
    z-index:9999;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    align-items:center;
    -ms-flex-align:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    -webkit-justify-content:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50px;
    background-color:#000000;
    color:#fff;
    text-align:center;
    opacity:1;
    cursor:pointer;
    -webkit-transition:all .3s;
    transition:all .3s;
}

.hfe-scroll-to-top-button i {
    color:#fff;
    font-size:16px;
}
/* Breadcrumbs CSS */

ul.hfe-breadcrumbs {
    display:block;
    margin:0;
    padding:0;
    list-style:none
}

ul.hfe-breadcrumbs li {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

ul.hfe-breadcrumbs li:last-child {
    margin:0;
}

ul.hfe-breadcrumbs li a,
ul.hfe-breadcrumbs li span.hfe-breadcrumbs-separator-icon,
ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
    display:block;
}

ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
    -webkit-transition:all .4s;
    transition:all .4s;
}

span.hfe-breadcrumbs-home-icon{
    margin-right:10px;
    align-content: center;
}

.hfe-breadcrumbs-first a {
    align-content: center;
}

.hfe-breadcrumbs-separator-icon i, 
.hfe-breadcrumbs-separator-icon svg,
.hfe-breadcrumbs-home-icon i,
.hfe-breadcrumbs-home-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}

ul.hfe-breadcrumbs-show-home li.hfe-breadcrumbs-first {
    display: inline-flex;
}

/* Post Info CSS */

ul.hfe-post-info-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.hfe-post-info-inline.hfe-post-info-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

li.hfe-post-info-item {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

li.hfe-post-info-item,
li.hfe-post-info-item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
}

.hfe-post-info-inline.hfe-post-info-items .hfe-post-info-item {
    margin-right: 8px;
    margin-left: 8px;
}

.hfe-post-info-inline .hfe-post-info-item:not(:last-child):after {
    position: relative;
    right: -8px;
}

.hfe-post-info-inline.hfe-post-info-items {
    margin-right: -8px;
    margin-left: -8px;
}

.hfe-post-info-icon svg {
    display: block;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child):after {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child) {
    position: relative;
}


/* Info Card CSS */
.hfe-icon-wrap .hfe-icon svg {
    height: 100%;
    width: 100%;
}
body .elementor .hfe-button-wrapper a {
    text-decoration: none;
}
.hfe-button-wrapper {
    border-radius: 3px;
}


.hfe-reading-progress-bar{
    height: 4px;
}

/* Basic Posts Widget CSS - Only essential structure, no styling */
.hfe-posts-grid {
    display: grid;
}

.hfe-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hfe-post-title a {
    text-decoration: none;
}
.hfe-post-title {
    margin-top: 0px;
}
.hfe-read-more {
    text-decoration: none;
}
.hfe-post-meta {
    font-size: 12px;
    line-height: 1.3em;
}
.hfe-post-title {
    font-size: 20px;
}
.footer-width-fixer {
    width: 100%;
}

/* Container fix for genesis themes */

.ehf-template-genesis.ehf-header .site-header .wrap,
.ehf-template-genesis.ehf-footer .site-footer .wrap,
.ehf-template-generatepress.ehf-header .site-header .inside-header {
    width: 100%;
    padding: 0;
    max-width: 100%;
}

/* Container fix for generatepress theme */

.ehf-template-generatepress.ehf-header .site-header,
.ehf-template-generatepress.ehf-footer .site-footer {
    width: 100%;
    padding: 0;
    max-width: 100%;
    background-color: transparent !important; /* override generatepress default white color for header */
}

.bhf-hidden {
    display: none
}

/* Fix: Header hidden below the page content */
.ehf-header #masthead {
	z-index: 99;
    position: relative;
}
/*! elementor-icons - v5.47.0 - 19-01-2026 */
@font-face{font-family:eicons;src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.47.0);src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.47.0#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.47.0) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.47.0) format("woff"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.47.0) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.47.0#eicon) format("svg");font-weight:400;font-style:normal}[class*=" eicon-"],[class^=eicon]{display:inline-block;font-family:eicons;font-size:inherit;font-weight:400;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:a 2s infinite linear}.eicon-editor-link:before{content:"\e800"}.eicon-editor-unlink:before{content:"\e801"}.eicon-editor-external-link:before{content:"\e802"}.eicon-editor-close:before{content:"\e803"}.eicon-editor-list-ol:before{content:"\e804"}.eicon-editor-list-ul:before{content:"\e805"}.eicon-editor-bold:before{content:"\e806"}.eicon-editor-italic:before{content:"\e807"}.eicon-editor-underline:before{content:"\e808"}.eicon-editor-paragraph:before{content:"\e809"}.eicon-editor-h1:before{content:"\e80a"}.eicon-editor-h2:before{content:"\e80b"}.eicon-editor-h3:before{content:"\e80c"}.eicon-editor-h4:before{content:"\e80d"}.eicon-editor-h5:before{content:"\e80e"}.eicon-editor-h6:before{content:"\e80f"}.eicon-editor-quote:before{content:"\e810"}.eicon-editor-code:before{content:"\e811"}.eicon-elementor:before{content:"\e812"}.eicon-elementor-circle:before{content:"\e813"}.eicon-pojome:before{content:"\e814"}.eicon-plus:before{content:"\e815"}.eicon-menu-bar:before{content:"\e816"}.eicon-apps:before{content:"\e817"}.eicon-accordion:before{content:"\e818"}.eicon-alert:before{content:"\e819"}.eicon-animation-text:before{content:"\e81a"}.eicon-animation:before{content:"\e81b"}.eicon-banner:before{content:"\e81c"}.eicon-blockquote:before{content:"\e81d"}.eicon-button:before{content:"\e81e"}.eicon-call-to-action:before{content:"\e81f"}.eicon-captcha:before{content:"\e820"}.eicon-carousel:before{content:"\e821"}.eicon-checkbox:before{content:"\e822"}.eicon-columns:before{content:"\e823"}.eicon-countdown:before{content:"\e824"}.eicon-counter:before{content:"\e825"}.eicon-date:before{content:"\e826"}.eicon-divider-shape:before{content:"\e827"}.eicon-divider:before{content:"\e828"}.eicon-download-button:before{content:"\e829"}.eicon-dual-button:before{content:"\e82a"}.eicon-email-field:before{content:"\e82b"}.eicon-facebook-comments:before{content:"\e82c"}.eicon-facebook-like-box:before{content:"\e82d"}.eicon-form-horizontal:before{content:"\e82e"}.eicon-form-vertical:before{content:"\e82f"}.eicon-gallery-grid:before{content:"\e830"}.eicon-gallery-group:before{content:"\e831"}.eicon-gallery-justified:before{content:"\e832"}.eicon-gallery-masonry:before{content:"\e833"}.eicon-icon-box:before{content:"\e834"}.eicon-image-before-after:before{content:"\e835"}.eicon-image-box:before{content:"\e836"}.eicon-image-hotspot:before{content:"\e837"}.eicon-image-rollover:before{content:"\e838"}.eicon-info-box:before{content:"\e839"}.eicon-inner-section:before{content:"\e83a"}.eicon-mailchimp:before{content:"\e83b"}.eicon-menu-card:before{content:"\e83c"}.eicon-navigation-horizontal:before{content:"\e83d"}.eicon-nav-menu:before{content:"\e83e"}.eicon-navigation-vertical:before{content:"\e83f"}.eicon-number-field:before{content:"\e840"}.eicon-parallax:before{content:"\e841"}.eicon-php7:before{content:"\e842"}.eicon-post-list:before{content:"\e843"}.eicon-post-slider:before{content:"\e844"}.eicon-post:before{content:"\e845"}.eicon-posts-carousel:before{content:"\e846"}.eicon-posts-grid:before{content:"\e847"}.eicon-posts-group:before{content:"\e848"}.eicon-posts-justified:before{content:"\e849"}.eicon-posts-masonry:before{content:"\e84a"}.eicon-posts-ticker:before{content:"\e84b"}.eicon-price-list:before{content:"\e84c"}.eicon-price-table:before{content:"\e84d"}.eicon-radio:before{content:"\e84e"}.eicon-rtl:before{content:"\e84f"}.eicon-scroll:before{content:"\e850"}.eicon-search:before{content:"\e851"}.eicon-select:before{content:"\e852"}.eicon-share:before{content:"\e853"}.eicon-sidebar:before{content:"\e854"}.eicon-skill-bar:before{content:"\e855"}.eicon-slider-3d:before{content:"\e856"}.eicon-slider-album:before{content:"\e857"}.eicon-slider-device:before{content:"\e858"}.eicon-slider-full-screen:before{content:"\e859"}.eicon-slider-push:before{content:"\e85a"}.eicon-slider-vertical:before{content:"\e85b"}.eicon-slider-video:before{content:"\e85c"}.eicon-slides:before{content:"\e85d"}.eicon-social-icons:before{content:"\e85e"}.eicon-spacer:before{content:"\e85f"}.eicon-table:before{content:"\e860"}.eicon-tabs:before{content:"\e861"}.eicon-tel-field:before{content:"\e862"}.eicon-text-area:before{content:"\e863"}.eicon-text-field:before{content:"\e864"}.eicon-thumbnails-down:before{content:"\e865"}.eicon-thumbnails-half:before{content:"\e866"}.eicon-thumbnails-right:before{content:"\e867"}.eicon-time-line:before{content:"\e868"}.eicon-toggle:before{content:"\e869"}.eicon-url:before{content:"\e86a"}.eicon-t-letter:before{content:"\e86b"}.eicon-wordpress:before{content:"\e86c"}.eicon-text:before{content:"\e86d"}.eicon-anchor:before{content:"\e86e"}.eicon-bullet-list:before{content:"\e86f"}.eicon-code:before{content:"\e870"}.eicon-favorite:before{content:"\e871"}.eicon-google-maps:before{content:"\e872"}.eicon-image:before{content:"\e873"}.eicon-photo-library:before{content:"\e874"}.eicon-woocommerce:before{content:"\e875"}.eicon-youtube:before{content:"\e876"}.eicon-flip-box:before{content:"\e877"}.eicon-settings:before{content:"\e878"}.eicon-headphones:before{content:"\e879"}.eicon-testimonial:before{content:"\e87a"}.eicon-counter-circle:before{content:"\e87b"}.eicon-person:before{content:"\e87c"}.eicon-chevron-right:before{content:"\e87d"}.eicon-chevron-left:before{content:"\e87e"}.eicon-close:before{content:"\e87f"}.eicon-file-download:before{content:"\e880"}.eicon-save:before{content:"\e881"}.eicon-zoom-in:before{content:"\e882"}.eicon-shortcode:before{content:"\e883"}.eicon-nerd:before{content:"\e884"}.eicon-device-desktop:before{content:"\e885"}.eicon-device-tablet:before{content:"\e886"}.eicon-device-mobile:before{content:"\e887"}.eicon-document-file:before{content:"\e888"}.eicon-folder-o:before{content:"\e889"}.eicon-hypster:before{content:"\e88a"}.eicon-h-align-left:before{content:"\e88b"}.eicon-h-align-right:before{content:"\e88c"}.eicon-h-align-center:before{content:"\e88d"}.eicon-h-align-stretch:before{content:"\e88e"}.eicon-v-align-top:before{content:"\e88f"}.eicon-v-align-bottom:before{content:"\e890"}.eicon-v-align-middle:before{content:"\e891"}.eicon-v-align-stretch:before{content:"\e892"}.eicon-pro-icon:before{content:"\e893"}.eicon-mail:before{content:"\e894"}.eicon-lock-user:before{content:"\e895"}.eicon-testimonial-carousel:before{content:"\e896"}.eicon-media-carousel:before{content:"\e897"}.eicon-section:before{content:"\e898"}.eicon-column:before{content:"\e899"}.eicon-edit:before{content:"\e89a"}.eicon-clone:before{content:"\e89b"}.eicon-trash:before{content:"\e89c"}.eicon-play:before{content:"\e89d"}.eicon-angle-right:before{content:"\e89e"}.eicon-angle-left:before{content:"\e89f"}.eicon-animated-headline:before{content:"\e8a0"}.eicon-menu-toggle:before{content:"\e8a1"}.eicon-fb-embed:before{content:"\e8a2"}.eicon-fb-feed:before{content:"\e8a3"}.eicon-twitter-embed:before{content:"\e8a4"}.eicon-twitter-feed:before{content:"\e8a5"}.eicon-sync:before{content:"\e8a6"}.eicon-import-export:before{content:"\e8a7"}.eicon-check-circle:before{content:"\e8a8"}.eicon-library-save:before{content:"\e8a9"}.eicon-library-download:before{content:"\e9dd"}.eicon-insert:before{content:"\e8ab"}.eicon-preview-medium:before{content:"\e8ac"}.eicon-sort-down:before{content:"\e8ad"}.eicon-sort-up:before{content:"\e8ae"}.eicon-heading:before{content:"\e8af"}.eicon-logo:before{content:"\e8b0"}.eicon-meta-data:before{content:"\e8b1"}.eicon-post-content:before{content:"\e8b2"}.eicon-post-excerpt:before{content:"\e8b3"}.eicon-post-navigation:before{content:"\e8b4"}.eicon-yoast:before{content:"\e8b5"}.eicon-nerd-chuckle:before{content:"\e8b6"}.eicon-nerd-wink:before{content:"\e8b7"}.eicon-comments:before{content:"\e8b8"}.eicon-download-circle-o:before{content:"\e8b9"}.eicon-library-upload:before{content:"\e8ba"}.eicon-save-o:before{content:"\e8bb"}.eicon-upload-circle-o:before{content:"\e8bc"}.eicon-ellipsis-h:before{content:"\e8bd"}.eicon-ellipsis-v:before{content:"\e8be"}.eicon-arrow-left:before{content:"\e8bf"}.eicon-arrow-right:before{content:"\e8c0"}.eicon-arrow-up:before{content:"\e8c1"}.eicon-arrow-down:before{content:"\e8c2"}.eicon-play-o:before{content:"\e8c3"}.eicon-archive-posts:before{content:"\e8c4"}.eicon-archive-title:before{content:"\e8c5"}.eicon-featured-image:before{content:"\e8c6"}.eicon-post-info:before{content:"\e8c7"}.eicon-post-title:before{content:"\e8c8"}.eicon-site-logo:before{content:"\e8c9"}.eicon-site-search:before{content:"\e8ca"}.eicon-site-title:before{content:"\e8cb"}.eicon-plus-square:before{content:"\e8cc"}.eicon-minus-square:before{content:"\e8cd"}.eicon-cloud-check:before{content:"\e8ce"}.eicon-drag-n-drop:before{content:"\e8cf"}.eicon-welcome:before{content:"\e8d0"}.eicon-handle:before{content:"\e8d1"}.eicon-cart:before{content:"\e8d2"}.eicon-product-add-to-cart:before{content:"\e8d3"}.eicon-product-breadcrumbs:before{content:"\e8d4"}.eicon-product-categories:before{content:"\e8d5"}.eicon-product-description:before{content:"\e8d6"}.eicon-product-images:before{content:"\e8d7"}.eicon-product-info:before{content:"\e8d8"}.eicon-product-meta:before{content:"\e8d9"}.eicon-product-pages:before{content:"\e8da"}.eicon-product-price:before{content:"\e8db"}.eicon-product-rating:before{content:"\e8dc"}.eicon-product-related:before{content:"\e8dd"}.eicon-product-stock:before{content:"\e8de"}.eicon-product-tabs:before{content:"\e8df"}.eicon-product-title:before{content:"\e8e0"}.eicon-product-upsell:before{content:"\e8e1"}.eicon-products:before{content:"\e8e2"}.eicon-bag-light:before{content:"\e8e3"}.eicon-bag-medium:before{content:"\e8e4"}.eicon-bag-solid:before{content:"\e8e5"}.eicon-basket-light:before{content:"\e8e6"}.eicon-basket-medium:before{content:"\e8e7"}.eicon-basket-solid:before{content:"\e8e8"}.eicon-cart-light:before{content:"\e8e9"}.eicon-cart-medium:before{content:"\e8ea"}.eicon-cart-solid:before{content:"\e8eb"}.eicon-exchange:before{content:"\e8ec"}.eicon-preview-thin:before{content:"\e8ed"}.eicon-device-laptop:before{content:"\e8ee"}.eicon-collapse:before{content:"\e8ef"}.eicon-expand:before{content:"\e8f0"}.eicon-navigator:before{content:"\e8f1"}.eicon-plug:before{content:"\e8f2"}.eicon-dashboard:before{content:"\e8f3"}.eicon-typography:before{content:"\e8f4"}.eicon-info-circle-o:before{content:"\e8f5"}.eicon-integration:before{content:"\e8f6"}.eicon-plus-circle-o:before{content:"\e8f7"}.eicon-rating:before{content:"\e8f8"}.eicon-review:before{content:"\e8f9"}.eicon-tools:before{content:"\e8fa"}.eicon-loading:before{content:"\e8fb"}.eicon-sitemap:before{content:"\e8fc"}.eicon-click:before{content:"\e8fd"}.eicon-clock:before{content:"\e8fe"}.eicon-library-open:before{content:"\e8ff"}.eicon-warning:before{content:"\e900"}.eicon-flow:before{content:"\e901"}.eicon-cursor-move:before{content:"\e902"}.eicon-arrow-circle-left:before{content:"\e903"}.eicon-flash:before{content:"\e904"}.eicon-redo:before{content:"\e905"}.eicon-ban:before{content:"\e906"}.eicon-barcode:before{content:"\e907"}.eicon-calendar:before{content:"\e908"}.eicon-caret-left:before{content:"\e909"}.eicon-caret-right:before{content:"\e90a"}.eicon-caret-up:before{content:"\e90b"}.eicon-chain-broken:before{content:"\e90c"}.eicon-check-circle-o:before{content:"\e90d"}.eicon-check:before{content:"\e90e"}.eicon-chevron-double-left:before{content:"\e90f"}.eicon-chevron-double-right:before{content:"\e910"}.eicon-undo:before{content:"\e911"}.eicon-filter:before{content:"\e912"}.eicon-circle-o:before{content:"\e913"}.eicon-circle:before{content:"\e914"}.eicon-clock-o:before{content:"\e915"}.eicon-cog:before{content:"\e916"}.eicon-cogs:before{content:"\e917"}.eicon-commenting-o:before{content:"\e918"}.eicon-copy:before{content:"\e919"}.eicon-database:before{content:"\e91a"}.eicon-dot-circle-o:before{content:"\e91b"}.eicon-envelope:before{content:"\e91c"}.eicon-external-link-square:before{content:"\e91d"}.eicon-eyedropper:before{content:"\e91e"}.eicon-folder:before{content:"\e91f"}.eicon-font:before{content:"\e920"}.eicon-adjust:before{content:"\e921"}.eicon-lightbox:before{content:"\e922"}.eicon-heart-o:before{content:"\e923"}.eicon-history:before{content:"\e924"}.eicon-image-bold:before{content:"\e925"}.eicon-info-circle:before{content:"\e926"}.eicon-link:before{content:"\e927"}.eicon-long-arrow-left:before{content:"\e928"}.eicon-long-arrow-right:before{content:"\e929"}.eicon-caret-down:before{content:"\e92a"}.eicon-paint-brush:before{content:"\e92b"}.eicon-pencil:before{content:"\e92c"}.eicon-plus-circle:before{content:"\e92d"}.eicon-zoom-in-bold:before{content:"\e92e"}.eicon-sort-amount-desc:before{content:"\e92f"}.eicon-sign-out:before{content:"\e930"}.eicon-spinner:before{content:"\e931"}.eicon-square:before{content:"\e932"}.eicon-star-o:before{content:"\e933"}.eicon-star:before{content:"\e934"}.eicon-text-align-justify:before{content:"\e935"}.eicon-text-align-center:before{content:"\e936"}.eicon-tags:before{content:"\e937"}.eicon-text-align-left:before{content:"\e938"}.eicon-text-align-right:before{content:"\e939"}.eicon-close-circle:before{content:"\e93a"}.eicon-trash-o:before{content:"\e93b"}.eicon-font-awesome:before{content:"\e93c"}.eicon-user-circle-o:before{content:"\e93d"}.eicon-video-camera:before{content:"\e93e"}.eicon-heart:before{content:"\e93f"}.eicon-wrench:before{content:"\e940"}.eicon-help:before{content:"\e941"}.eicon-help-o:before{content:"\e942"}.eicon-zoom-out-bold:before{content:"\e943"}.eicon-plus-square-o:before{content:"\e944"}.eicon-minus-square-o:before{content:"\e945"}.eicon-minus-circle:before{content:"\e946"}.eicon-minus-circle-o:before{content:"\e947"}.eicon-code-bold:before{content:"\e948"}.eicon-cloud-upload:before{content:"\e949"}.eicon-search-bold:before{content:"\e94a"}.eicon-map-pin:before{content:"\e94b"}.eicon-meetup:before{content:"\e94c"}.eicon-slideshow:before{content:"\e94d"}.eicon-t-letter-bold:before{content:"\e94e"}.eicon-preferences:before{content:"\e94f"}.eicon-table-of-contents:before{content:"\e950"}.eicon-tv:before{content:"\e951"}.eicon-upload:before{content:"\e952"}.eicon-instagram-comments:before{content:"\e953"}.eicon-instagram-nested-gallery:before{content:"\e954"}.eicon-instagram-post:before{content:"\e955"}.eicon-instagram-video:before{content:"\e956"}.eicon-instagram-gallery:before{content:"\e957"}.eicon-instagram-likes:before{content:"\e958"}.eicon-facebook:before{content:"\e959"}.eicon-twitter:before{content:"\e95a"}.eicon-pinterest:before{content:"\e95b"}.eicon-frame-expand:before{content:"\e95c"}.eicon-frame-minimize:before{content:"\e95d"}.eicon-archive:before{content:"\e95e"}.eicon-colors-typography:before{content:"\e95f"}.eicon-custom:before{content:"\e960"}.eicon-footer:before{content:"\e961"}.eicon-header:before{content:"\e962"}.eicon-layout-settings:before{content:"\e963"}.eicon-lightbox-expand:before{content:"\e964"}.eicon-error-404:before{content:"\e965"}.eicon-theme-style:before{content:"\e966"}.eicon-search-results:before{content:"\e967"}.eicon-single-post:before{content:"\e968"}.eicon-site-identity:before{content:"\e969"}.eicon-theme-builder:before{content:"\e96a"}.eicon-download-bold:before{content:"\e96b"}.eicon-share-arrow:before{content:"\e96c"}.eicon-global-settings:before{content:"\e96d"}.eicon-user-preferences:before{content:"\e96e"}.eicon-lock:before{content:"\e96f"}.eicon-export-kit:before{content:"\e970"}.eicon-import-kit:before{content:"\e971"}.eicon-lottie:before{content:"\e972"}.eicon-products-archive:before{content:"\e973"}.eicon-single-product:before{content:"\e974"}.eicon-disable-trash-o:before{content:"\e975"}.eicon-single-page:before{content:"\e976"}.eicon-wordpress-light:before{content:"\e977"}.eicon-cogs-check:before{content:"\e978"}.eicon-custom-css:before{content:"\e979"}.eicon-global-colors:before{content:"\e97a"}.eicon-globe:before{content:"\e97b"}.eicon-typography-1:before{content:"\e97c"}.eicon-background:before{content:"\e97d"}.eicon-device-responsive:before{content:"\e97e"}.eicon-device-wide:before{content:"\e97f"}.eicon-code-highlight:before{content:"\e980"}.eicon-video-playlist:before{content:"\e981"}.eicon-download-kit:before{content:"\e982"}.eicon-kit-details:before{content:"\e983"}.eicon-kit-parts:before{content:"\e984"}.eicon-kit-upload:before{content:"\e985"}.eicon-kit-plugins:before{content:"\e986"}.eicon-kit-upload-alt:before{content:"\e987"}.eicon-hotspot:before{content:"\e988"}.eicon-paypal-button:before{content:"\e989"}.eicon-shape:before{content:"\e98a"}.eicon-wordart:before{content:"\e98b"}.eicon-checkout:before{content:"\e98c"}.eicon-container:before{content:"\e98d"}.eicon-flip:before{content:"\e98e"}.eicon-info:before{content:"\e98f"}.eicon-my-account:before{content:"\e990"}.eicon-purchase-summary:before{content:"\e991"}.eicon-page-transition:before{content:"\e992"}.eicon-spotify:before{content:"\e993"}.eicon-stripe-button:before{content:"\e994"}.eicon-woo-settings:before{content:"\e995"}.eicon-woo-cart:before{content:"\e996"}.eicon-grow:before{content:"\e997"}.eicon-order-end:before{content:"\e998"}.eicon-nowrap:before{content:"\e999"}.eicon-order-start:before{content:"\e99a"}.eicon-progress-tracker:before{content:"\e99b"}.eicon-shrink:before{content:"\e99c"}.eicon-wrap:before{content:"\e99d"}.eicon-align-center-h:before{content:"\e99e"}.eicon-align-center-v:before{content:"\e99f"}.eicon-align-end-h:before{content:"\e9a0"}.eicon-align-end-v:before{content:"\e9a1"}.eicon-align-start-h:before{content:"\e9a2"}.eicon-align-start-v:before{content:"\e9a3"}.eicon-align-stretch-h:before{content:"\e9a4"}.eicon-align-stretch-v:before{content:"\e9a5"}.eicon-justify-center-h:before{content:"\e9a6"}.eicon-justify-center-v:before{content:"\e9a7"}.eicon-justify-end-h:before{content:"\e9a8"}.eicon-justify-end-v:before{content:"\e9a9"}.eicon-justify-space-around-h:before{content:"\e9aa"}.eicon-justify-space-around-v:before{content:"\e9ab"}.eicon-justify-space-between-h:before{content:"\e9ac"}.eicon-justify-space-between-v:before{content:"\e9ad"}.eicon-justify-space-evenly-h:before{content:"\e9ae"}.eicon-justify-space-evenly-v:before{content:"\e9af"}.eicon-justify-start-h:before{content:"\e9b0"}.eicon-justify-start-v:before{content:"\e9b1"}.eicon-woocommerce-cross-sells:before{content:"\e9b2"}.eicon-woocommerce-notices:before{content:"\e9b3"}.eicon-inner-container:before{content:"\e9b4"}.eicon-warning-full:before{content:"\e9b5"}.eicon-exit:before{content:"\e9b6"}.eicon-loop-builder:before{content:"\e9b7"}.eicon-notes:before{content:"\e9b8"}.eicon-read:before{content:"\e9b9"}.eicon-unread:before{content:"\e9ba"}.eicon-carousel-loop:before{content:"\e9bb"}.eicon-mega-menu:before{content:"\eb78"}.eicon-nested-carousel:before{content:"\e9bd"}.eicon-ai:before{content:"\e9be"}.eicon-taxonomy-filter:before{content:"\eb7d"}.eicon-container-grid:before{content:"\ef02"}.eicon-upgrade:before{content:"\e9c1"}.eicon-advanced:before{content:"\eb84"}.eicon-div-block:before{content:"\eb9b"}.eicon-notification:before{content:"\e9c3"}.eicon-light-mode:before{content:"\e9c4"}.eicon-dark-mode:before{content:"\e9c5"}.eicon-upgrade-crown:before{content:"\e9c6"}.eicon-off-canvas:before{content:"\e9c7"}.eicon-speakerphone:before{content:"\e9c9"}.eicon-ehp-cta:before{content:"\e9cb"}.eicon-ehp-forms:before{content:"\e9bc"}.eicon-ehp-hero:before{content:"\e9ca"}.eicon-ehp-zigzag:before{content:"\e9cc"}.eicon-e-button:before{content:"\e9ce"}.eicon-flexbox:before{content:"\e9d0"}.eicon-paragraph:before{content:"\e9d1"}.eicon-icon:before{content:"\e9d2"}.eicon-e-image:before{content:"\e9d3"}.eicon-video:before{content:"\e9d4"}.eicon-svg:before{content:"\e9d5"}.eicon-e-divider:before{content:"\e9d6"}.eicon-e-heading:before{content:"\e9d7"}.eicon-atomic:before{content:"\ebae"}.eicon-library-delete:before{content:"\e9d8"}.eicon-library-copy:before{content:"\e9d9"}.eicon-library-folder-empty:before{content:"\e9da"}.eicon-library-move:before{content:"\e9db"}.eicon-library-edit:before{content:"\e9dc"}.eicon-library-subscription-upgrade:before{content:"\e9de"}.eicon-library-folder-view:before{content:"\e9df"}.eicon-library-grid:before{content:"\e9e1"}.eicon-library-cloud-connect:before{content:"\e9e2"}.eicon-library-import:before{content:"\e9e3"}.eicon-library-list:before{content:"\e9e4"}.eicon-library-cloud-empty:before{content:"\e9e5"}.eicon-folder-plus:before{content:"\e8aa"}.eicon-library-folder:before{content:"\e9e6"}.eicon-accessibility:before{content:"\e9bf"}.eicon-lock-outline:before{content:"\e9e7"}.eicon-e-youtube:before{content:"\e9e8"}.eicon-contact:before{content:"\ebd2"}.eicon-layout:before{content:"\ebd8"}.eicon-components:before{content:"\ebd9"}.eicon-tab-content:before{content:"\ebda"}.eicon-tab-menu:before{content:"\ebdb"}.eicon-atomic-label:before{content:"\e9ee"}.eicon-atomic-form:before{content:"\e9ef"}.eicon-atomic-submit-button:before{content:"\e9f0"}.eicon-atomic-input:before{content:"\e9f1"}.eicon-atomic-text-area:before{content:"\e9f2"}.eicon-eye:before{content:"\e8ac"}.eicon-elementor-square:before{content:"\e813"}:root{--direction-multiplier:1}body.rtl,html[dir=rtl]{--direction-multiplier:-1}.elementor-hidden{display:none}.elementor-visibility-hidden{visibility:hidden}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0}.elementor-clearfix:after{clear:both;content:"";display:block;height:0;width:0}.e-logo-wrapper{display:inline-block;line-height:1}.e-logo-wrapper i{color:var(--e-a-color-circle-logo);font-size:2.5em}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor hr{background-color:transparent;margin:0}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0}.elementor embed,.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%}.elementor .elementor-background,.elementor .elementor-background-holder,.elementor .elementor-background-video-container{direction:ltr;inset:0;overflow:hidden;position:absolute;z-index:0}.elementor .elementor-background-video-container{pointer-events:none;transition:opacity 1s}.elementor .elementor-background-video-container.elementor-loading{opacity:0}.elementor .elementor-background-video,.elementor .elementor-background-video-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(-50%,-50%)}.elementor .elementor-background-video-hosted{-o-object-fit:cover;object-fit:cover}.elementor .elementor-background-overlay{inset:0;position:absolute}.elementor .elementor-background-slideshow{inset:0;position:absolute;z-index:0}.elementor .elementor-background-slideshow__slide__image{background-position:50%;background-size:cover;height:100%;width:100%}.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute,.elementor-widget-wrap>.elementor-element.elementor-absolute{position:absolute}.e-con-inner>.elementor-element.elementor-fixed,.e-con>.elementor-element.elementor-fixed,.elementor-widget-wrap>.elementor-element.elementor-fixed{position:fixed}.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}@media (max-width:1024px){.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial{max-width:100%}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order)}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content)}.elementor-invisible{visibility:hidden}.elementor-custom-embed-play{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(calc(-50% * var(--direction-multiplier)),-50%)}.elementor-custom-embed-play i{color:#fff;font-size:100px;text-shadow:1px 0 6px rgba(0,0,0,.3)}.elementor-custom-embed-play svg{fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3));height:100px;width:100px}.elementor-custom-embed-play i,.elementor-custom-embed-play svg{opacity:.8;transition:all .5s}.elementor-custom-embed-play.elementor-playing i{font-family:eicons}.elementor-custom-embed-play.elementor-playing i:before{content:"\e8fb"}.elementor-custom-embed-play.elementor-playing i,.elementor-custom-embed-play.elementor-playing svg{animation:eicon-spin 2s linear infinite}.elementor-tag{display:inline-flex}.elementor-ken-burns{transition-duration:10s;transition-property:transform;transition-timing-function:linear}.elementor-ken-burns--out{transform:scale(1.3)}.elementor-ken-burns--active{transition-duration:20s}.elementor-ken-burns--active.elementor-ken-burns--out{transform:scale(1)}.elementor-ken-burns--active.elementor-ken-burns--in{transform:scale(1.3)}.elementor-align-center{text-align:center}.elementor-align-right{text-align:right}.elementor-align-left{text-align:left}.elementor-align-center .elementor-button,.elementor-align-left .elementor-button,.elementor-align-right .elementor-button{width:auto}.elementor-align-justify .elementor-button{width:100%}@media (min-width:-1){.elementor-widescreen-align-center{text-align:center}.elementor-widescreen-align-right{text-align:right}.elementor-widescreen-align-left{text-align:left}.elementor-widescreen-align-center .elementor-button,.elementor-widescreen-align-left .elementor-button,.elementor-widescreen-align-right .elementor-button{width:auto}.elementor-widescreen-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-laptop-align-center{text-align:center}.elementor-laptop-align-right{text-align:right}.elementor-laptop-align-left{text-align:left}.elementor-laptop-align-center .elementor-button,.elementor-laptop-align-left .elementor-button,.elementor-laptop-align-right .elementor-button{width:auto}.elementor-laptop-align-justify .elementor-button{width:100%}.elementor-tablet_extra-align-center{text-align:center}.elementor-tablet_extra-align-right{text-align:right}.elementor-tablet_extra-align-left{text-align:left}.elementor-tablet_extra-align-center .elementor-button,.elementor-tablet_extra-align-left .elementor-button,.elementor-tablet_extra-align-right .elementor-button{width:auto}.elementor-tablet_extra-align-justify .elementor-button{width:100%}}@media (max-width:1024px){.elementor-tablet-align-center{text-align:center}.elementor-tablet-align-right{text-align:right}.elementor-tablet-align-left{text-align:left}.elementor-tablet-align-center .elementor-button,.elementor-tablet-align-left .elementor-button,.elementor-tablet-align-right .elementor-button{width:auto}.elementor-tablet-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-mobile_extra-align-center{text-align:center}.elementor-mobile_extra-align-right{text-align:right}.elementor-mobile_extra-align-left{text-align:left}.elementor-mobile_extra-align-center .elementor-button,.elementor-mobile_extra-align-left .elementor-button,.elementor-mobile_extra-align-right .elementor-button{width:auto}.elementor-mobile_extra-align-justify .elementor-button{width:100%}}@media (max-width:767px){.elementor-mobile-align-center{text-align:center}.elementor-mobile-align-right{text-align:right}.elementor-mobile-align-left{text-align:left}.elementor-mobile-align-center .elementor-button,.elementor-mobile-align-left .elementor-button,.elementor-mobile-align-right .elementor-button{width:auto}.elementor-mobile-align-justify .elementor-button{width:100%}}:root{--page-title-display:block}.elementor-page-title,h1.entry-title{display:var(--page-title-display)}@keyframes eicon-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:eicon-spin 2s linear infinite}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-inline:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-stretched{position:relative;width:100%}.elementor-section.elementor-section-items-top>.elementor-container{align-items:flex-start}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}.elementor-section.elementor-section-items-bottom>.elementor-container{align-items:flex-end}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-start}.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:center}.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-end}.elementor-widget-wrap{align-content:flex-start;flex-wrap:wrap;position:relative;width:100%}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-block-end:var(--kit-widget-spacing,20px)}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-block-end:0}.elementor-column{display:flex;min-height:1px;position:relative}.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated{padding:5px}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}.elementor-column-gap-extended>.elementor-column>.elementor-element-populated{padding:15px}.elementor-column-gap-wide>.elementor-column>.elementor-element-populated{padding:20px}.elementor-column-gap-wider>.elementor-column>.elementor-element-populated{padding:30px}.elementor-inner-section .elementor-column-gap-no .elementor-element-populated{padding:0}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%}}@media (max-width:479px){.elementor-column.elementor-xs-10{width:10%}.elementor-column.elementor-xs-11{width:11.111%}.elementor-column.elementor-xs-12{width:12.5%}.elementor-column.elementor-xs-14{width:14.285%}.elementor-column.elementor-xs-16{width:16.666%}.elementor-column.elementor-xs-20{width:20%}.elementor-column.elementor-xs-25{width:25%}.elementor-column.elementor-xs-30{width:30%}.elementor-column.elementor-xs-33{width:33.333%}.elementor-column.elementor-xs-40{width:40%}.elementor-column.elementor-xs-50{width:50%}.elementor-column.elementor-xs-60{width:60%}.elementor-column.elementor-xs-66{width:66.666%}.elementor-column.elementor-xs-70{width:70%}.elementor-column.elementor-xs-75{width:75%}.elementor-column.elementor-xs-80{width:80%}.elementor-column.elementor-xs-83{width:83.333%}.elementor-column.elementor-xs-90{width:90%}.elementor-column.elementor-xs-100{width:100%}}@media (max-width:767px){.elementor-column.elementor-sm-10{width:10%}.elementor-column.elementor-sm-11{width:11.111%}.elementor-column.elementor-sm-12{width:12.5%}.elementor-column.elementor-sm-14{width:14.285%}.elementor-column.elementor-sm-16{width:16.666%}.elementor-column.elementor-sm-20{width:20%}.elementor-column.elementor-sm-25{width:25%}.elementor-column.elementor-sm-30{width:30%}.elementor-column.elementor-sm-33{width:33.333%}.elementor-column.elementor-sm-40{width:40%}.elementor-column.elementor-sm-50{width:50%}.elementor-column.elementor-sm-60{width:60%}.elementor-column.elementor-sm-66{width:66.666%}.elementor-column.elementor-sm-70{width:70%}.elementor-column.elementor-sm-75{width:75%}.elementor-column.elementor-sm-80{width:80%}.elementor-column.elementor-sm-83{width:83.333%}.elementor-column.elementor-sm-90{width:90%}.elementor-column.elementor-sm-100{width:100%}}@media (min-width:768px) and (max-width:1024px){.elementor-column.elementor-md-10{width:10%}.elementor-column.elementor-md-11{width:11.111%}.elementor-column.elementor-md-12{width:12.5%}.elementor-column.elementor-md-14{width:14.285%}.elementor-column.elementor-md-16{width:16.666%}.elementor-column.elementor-md-20{width:20%}.elementor-column.elementor-md-25{width:25%}.elementor-column.elementor-md-30{width:30%}.elementor-column.elementor-md-33{width:33.333%}.elementor-column.elementor-md-40{width:40%}.elementor-column.elementor-md-50{width:50%}.elementor-column.elementor-md-60{width:60%}.elementor-column.elementor-md-66{width:66.666%}.elementor-column.elementor-md-70{width:70%}.elementor-column.elementor-md-75{width:75%}.elementor-column.elementor-md-80{width:80%}.elementor-column.elementor-md-83{width:83.333%}.elementor-column.elementor-md-90{width:90%}.elementor-column.elementor-md-100{width:100%}}@media (min-width:-1){.elementor-reverse-widescreen>.elementor-container>:first-child{order:10}.elementor-reverse-widescreen>.elementor-container>:nth-child(2){order:9}.elementor-reverse-widescreen>.elementor-container>:nth-child(3){order:8}.elementor-reverse-widescreen>.elementor-container>:nth-child(4){order:7}.elementor-reverse-widescreen>.elementor-container>:nth-child(5){order:6}.elementor-reverse-widescreen>.elementor-container>:nth-child(6){order:5}.elementor-reverse-widescreen>.elementor-container>:nth-child(7){order:4}.elementor-reverse-widescreen>.elementor-container>:nth-child(8){order:3}.elementor-reverse-widescreen>.elementor-container>:nth-child(9){order:2}.elementor-reverse-widescreen>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child,.elementor-reverse-laptop>.elementor-container>:nth-child(10),.elementor-reverse-laptop>.elementor-container>:nth-child(2),.elementor-reverse-laptop>.elementor-container>:nth-child(3),.elementor-reverse-laptop>.elementor-container>:nth-child(4),.elementor-reverse-laptop>.elementor-container>:nth-child(5),.elementor-reverse-laptop>.elementor-container>:nth-child(6),.elementor-reverse-laptop>.elementor-container>:nth-child(7),.elementor-reverse-laptop>.elementor-container>:nth-child(8),.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:0}.elementor-reverse-tablet_extra>.elementor-container>:first-child{order:10}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:-1){.elementor-reverse-tablet>.elementor-container>:first-child,.elementor-reverse-tablet>.elementor-container>:nth-child(10),.elementor-reverse-tablet>.elementor-container>:nth-child(2),.elementor-reverse-tablet>.elementor-container>:nth-child(3),.elementor-reverse-tablet>.elementor-container>:nth-child(4),.elementor-reverse-tablet>.elementor-container>:nth-child(5),.elementor-reverse-tablet>.elementor-container>:nth-child(6),.elementor-reverse-tablet>.elementor-container>:nth-child(7),.elementor-reverse-tablet>.elementor-container>:nth-child(8),.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:0}.elementor-reverse-mobile_extra>.elementor-container>:first-child{order:10}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10){order:1}}@media (max-width:767px){.elementor-reverse-mobile>.elementor-container>:first-child{order:10}.elementor-reverse-mobile>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile>.elementor-container>:nth-child(10){order:1}.elementor-column{width:100%}}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap)}.elementor-grid .elementor-grid-item{min-width:0}.elementor-grid-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}@media (min-width:-1){.elementor-grid-widescreen-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-widescreen-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-widescreen-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-widescreen-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-widescreen-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-widescreen-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-widescreen-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-widescreen-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-widescreen-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-widescreen-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-widescreen-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-widescreen-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-widescreen-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-laptop-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-laptop-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-laptop-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-laptop-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-laptop-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-laptop-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-laptop-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-laptop-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-laptop-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-laptop-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-laptop-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-laptop-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-laptop-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}.elementor-grid-tablet_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1024px){.elementor-grid-tablet-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-mobile_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:767px){.elementor-grid-mobile-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile"}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap}.e-con:where(:not(.e-div-block-base)){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width)}body.rtl .e-con{--padding-inline-start:var(--padding-right);--padding-inline-end:var(--padding-left);--margin-inline-start:var(--margin-right);--margin-inline-end:var(--margin-left);--border-inline-start-width:var(--border-right-width);--border-inline-end-width:var(--border-left-width)}.e-con{margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start)}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis)}.e-con-full,.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align)}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row}.e-con.e-grid,.e-con.e-grid>.e-con-inner{align-content:var(--grid-align-content);align-items:var(--align-items);grid-auto-flow:var(--grid-auto-flow);grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);justify-items:var(--justify-items)}.e-con-boxed.e-flex{align-content:normal;align-items:normal;flex-direction:column;flex-wrap:nowrap;justify-content:normal}.e-con-boxed.e-grid{grid-template-columns:1fr;grid-template-rows:1fr;justify-items:legacy}.e-con-boxed{gap:initial;text-align:initial}.e-con.e-flex>.e-con-inner{align-content:var(--align-content);align-items:var(--align-items);align-self:auto;flex-basis:auto;flex-grow:1;flex-shrink:1;flex-wrap:var(--flex-wrap);justify-content:var(--justify-content)}.e-con.e-grid>.e-con-inner{align-items:var(--align-items);justify-items:var(--justify-items)}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width))}:is([data-widget_type="e-component.default"],[data-widget_type="e-component.default"]>.elementor-section-wrap)>.e-con{--margin-right:0px;--margin-left:0px}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));top:calc(0px - var(--border-top-width));width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile{display:none}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget-empty,.e-con .elementor-widget-google_maps,.e-con .elementor-widget-video,.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:var(--flex-wrap-mobile)}.e-con.e-flex .elementor-widget-archive-posts{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea{flex-basis:100%;max-width:100%}.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input{flex-grow:1}.elementor-field-group{align-items:center;flex-wrap:wrap}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{background-color:transparent;border:1px solid #69727d;color:#1f2124;flex-grow:1;max-width:100%;vertical-align:middle;width:100%}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;flex-basis:100%;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding-inline-end:20px;text-transform:inherit}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;inset-block-start:50%;inset-inline-end:10px;pointer-events:none;position:absolute;text-shadow:0 0 3px rgba(0,0,0,.3);transform:translateY(-50%)}.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before{content:""}.elementor-field-subgroup{display:flex;flex-wrap:wrap}.elementor-field-subgroup .elementor-field-option label{display:inline-block}.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option{padding-inline-end:10px}.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option{flex-basis:100%}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label{display:inline}.elementor-field-label{cursor:pointer}.elementor-mark-required .elementor-field-label:after{color:red;content:"*";padding-inline-start:.2em}.elementor-field-textual{border-radius:3px;font-size:15px;line-height:1.4;min-height:40px;padding:5px 14px}.elementor-field-textual.elementor-size-xs{border-radius:2px;font-size:13px;min-height:33px;padding:4px 12px}.elementor-field-textual.elementor-size-md{border-radius:4px;font-size:16px;min-height:47px;padding:6px 16px}.elementor-field-textual.elementor-size-lg{border-radius:5px;font-size:18px;min-height:59px;padding:7px 20px}.elementor-field-textual.elementor-size-xl{border-radius:6px;font-size:20px;min-height:72px;padding:8px 24px}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-button-align-center .e-form__buttons,.elementor-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-button-align-start .e-form__buttons,.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-end .e-form__buttons,.elementor-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-button-align-start .e-form__buttons,[dir=rtl] .elementor-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-button-align-end .e-form__buttons,[dir=rtl] .elementor-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-center .e-form__buttons__wrapper__button,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper__button,.elementor-button-align-start .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}@media screen and (max-width:1024px){.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-tablet-button-align-center .e-form__buttons,.elementor-tablet-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-tablet-button-align-start .e-form__buttons,.elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-end .e-form__buttons,.elementor-tablet-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-tablet-button-align-start .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-tablet-button-align-end .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-center .e-form__buttons__wrapper__button,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper__button,.elementor-tablet-button-align-start .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}@media screen and (max-width:767px){.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-mobile-button-align-center .e-form__buttons,.elementor-mobile-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-mobile-button-align-start .e-form__buttons,.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-end .e-form__buttons,.elementor-mobile-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-mobile-button-align-start .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-mobile-button-align-end .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-center .e-form__buttons__wrapper__button,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper__button,.elementor-mobile-button-align-start .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}.elementor-error .elementor-field{border-color:#d9534f}.elementor-error .help-inline{color:#d9534f;font-size:.9em}.elementor-message{font-size:1em;line-height:1;margin:10px 0}.elementor-message:before{content:"\e90e";display:inline-block;font-family:eicons;font-style:normal;font-weight:400;margin-inline-end:5px;vertical-align:middle}.elementor-message.elementor-message-danger{color:#d9534f}.elementor-message.elementor-message-danger:before{content:"\e87f"}.elementor-message.form-message-success{color:#5cb85c}.elementor-form .elementor-button{border:none;padding-block-end:0;padding-block-start:0}.elementor-form .elementor-button-content-wrapper,.elementor-form .elementor-button>span{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-form .elementor-button.elementor-size-xs{min-height:33px}.elementor-form .elementor-button.elementor-size-sm{min-height:40px}.elementor-form .elementor-button.elementor-size-md{min-height:47px}.elementor-form .elementor-button.elementor-size-lg{min-height:59px}.elementor-form .elementor-button.elementor-size-xl{min-height:72px}.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-heading-title{line-height:1;margin:0;padding:0}.elementor-button{background-color:#69727d;border-radius:3px;color:#fff;display:inline-block;fill:#fff;font-size:15px;line-height:1;padding:12px 24px;text-align:center;transition:all .3s}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff}.elementor-button-content-wrapper{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-button-icon{align-items:center;display:flex}.elementor-button-icon svg{height:auto;width:1em}.elementor-button-icon .e-font-icon-svg{height:1em}.elementor-button-text{display:inline-block}.elementor-button.elementor-size-xs{border-radius:2px;font-size:13px;padding:10px 20px}.elementor-button.elementor-size-md{border-radius:4px;font-size:16px;padding:15px 30px}.elementor-button.elementor-size-lg{border-radius:5px;font-size:18px;padding:20px 40px}.elementor-button.elementor-size-xl{border-radius:6px;font-size:20px;padding:25px 50px}.elementor-button span{text-decoration:inherit}.elementor-element.elementor-button-info .elementor-button{background-color:#5bc0de}.elementor-element.elementor-button-success .elementor-button{background-color:#5cb85c}.elementor-element.elementor-button-warning .elementor-button{background-color:#f0ad4e}.elementor-element.elementor-button-danger .elementor-button{background-color:#d9534f}.elementor-widget-button .elementor-button .elementor-button-info{background-color:#5bc0de}.elementor-widget-button .elementor-button .elementor-button-success{background-color:#5cb85c}.elementor-widget-button .elementor-button .elementor-button-warning{background-color:#f0ad4e}.elementor-widget-button .elementor-button .elementor-button-danger{background-color:#d9534f}.elementor-view-stacked .elementor-icon{background-color:#69727d;color:#fff;fill:#fff;padding:.5em}.elementor-view-framed .elementor-icon{background-color:transparent;border:3px solid #69727d;color:#69727d;padding:.5em}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%)}.elementor-icon i.fad{width:auto}.elementor-shape-square .elementor-icon{border-radius:0}.elementor-shape-rounded .elementor-icon{border-radius:10%}.elementor-shape-circle .elementor-icon{border-radius:50%}.e-transform .elementor-widget-container,.e-transform:not(:has(.elementor-widget-container)){transform:perspective(var(--e-transform-perspective,0)) rotate(var(--e-transform-rotateZ,0)) rotateX(var(--e-transform-rotateX,0)) rotateY(var(--e-transform-rotateY,0)) translate(var(--e-transform-translate,0)) translateX(var(--e-transform-translateX,0)) translateY(var(--e-transform-translateY,0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX,0)) skewY(var(--e-transform-skewY,0));transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}.e-con.e-transform{transform:perspective(var(--e-con-transform-perspective,0)) rotate(var(--e-con-transform-rotateZ,0)) rotateX(var(--e-con-transform-rotateX,0)) rotateY(var(--e-con-transform-rotateY,0)) translate(var(--e-con-transform-translate,0)) translateX(var(--e-con-transform-translateX,0)) translateY(var(--e-con-transform-translateY,0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX,0)) skewY(var(--e-con-transform-skewY,0));transform-origin:var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)}.animated{animation-duration:1.25s}.animated.animated-slow{animation-duration:2s}.animated.animated-fast{animation-duration:.75s}.animated.infinite{animation-iteration-count:infinite}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none!important}html *{transition-delay:0s!important;transition-duration:0s!important}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-laptop,.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}.elementor-kit-2534{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-9bba728:#FE0102;--e-global-color-2e01b65:#FFFFFF;--e-global-color-1bb7bfd:#000000;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container,.elementor-widget:not(:has(.elementor-widget-container)) .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{display:flex;flex-wrap:wrap;margin-inline:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-inline-item{word-break:break-word}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{border-width:0;border-inline-start-width:1px;border-style:solid;height:100%;inset-inline-end:-8px;inset-inline-start:auto;position:relative;width:auto}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{inset-block-end:0;position:absolute;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{align-items:var(--icon-vertical-align,center);display:flex;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{align-self:center;padding-inline-start:5px}.elementor-widget .elementor-icon-list-icon{display:flex;inset-block-start:var(--icon-vertical-offset,initial);position:relative}.elementor-widget .elementor-icon-list-icon svg{height:var(--e-icon-list-icon-size,1em);width:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{font-size:var(--e-icon-list-icon-size);width:1.25em}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-align-start .elementor-icon-list-item,.elementor-widget.elementor-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-align-end .elementor-icon-list-item,.elementor-widget.elementor-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-align-start) .elementor-icon-list-item:after{inset-inline-end:0}@media (min-width:-1){.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-widescreen-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-widescreen-align-start .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-widescreen-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-widescreen-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-widescreen-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-laptop-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-laptop-align-start .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-laptop-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-laptop-align-end .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-laptop-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-laptop-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-laptop-align-start) .elementor-icon-list-item:after{inset-inline-end:0}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet_extra-align-start .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-tablet_extra-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-tablet_extra-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet_extra-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet-align-start .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-tablet-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-tablet-align-end .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-tablet-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-tablet-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile_extra-align-start .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-mobile_extra-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-mobile_extra-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile_extra-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile-align-start .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-mobile-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-mobile-align-end .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-mobile-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-mobile-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}#left-area ul.elementor-icon-list-items,.elementor .elementor-element ul.elementor-icon-list-items,.elementor-edit-area .elementor-element ul.elementor-icon-list-items{padding:0}.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{flex-shrink:0;margin:0 var(--divider-element-spacing)}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{direction:ltr;display:flex;margin:0}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{border-block-end:0;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color);content:"";display:block;flex-grow:1}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url);-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;min-height:var(--divider-pattern-height);width:100%}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var( --container-widget-flex-grow )}.elementor-13113 .elementor-element.elementor-element-714aafdb{--display:flex;--min-height:20vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--overlay-opacity:0.1;--padding-top:50px;--padding-bottom:50px;--padding-left:50px;--padding-right:50px;}.elementor-13113 .elementor-element.elementor-element-714aafdb:not(.elementor-motion-effects-element-type-background), .elementor-13113 .elementor-element.elementor-element-714aafdb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-1bb7bfd );}.elementor-13113 .elementor-element.elementor-element-714aafdb::before, .elementor-13113 .elementor-element.elementor-element-714aafdb > .elementor-background-video-container::before, .elementor-13113 .elementor-element.elementor-element-714aafdb > .e-con-inner > .elementor-background-video-container::before, .elementor-13113 .elementor-element.elementor-element-714aafdb > .elementor-background-slideshow::before, .elementor-13113 .elementor-element.elementor-element-714aafdb > .e-con-inner > .elementor-background-slideshow::before, .elementor-13113 .elementor-element.elementor-element-714aafdb > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-image:url("https://hiptv.tv/wp-content/uploads/2025/09/Back-Head1.png");--background-overlay:'';background-position:top center;background-size:contain;}.elementor-13113 .elementor-element.elementor-element-3e1304be .jlcus_sec_title{--sect-t-algin:left;--sect-line-space:0px;--sect-t-size:40px;--sect-t-color:#FFFFFF;--ac-line-color:#000;}.elementor-13113 .elementor-element.elementor-element-3e1304be .jlcus_sec_title .jl_sct_bt{top:0px;}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-3e1304be .jlcus_sec_title{--sect-t-color:#fff;--ac-line-color:#fff;}.elementor-13113 .elementor-element.elementor-element-184ad489{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-icon-list .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-icon-list .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-item > .elementor-icon-list-text, .elementor-widget-icon-list .elementor-icon-list-item > a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-icon-list .elementor-icon-list-text{color:var( --e-global-color-secondary );}.elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(10px/2);}.elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(10px/2);}.elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(10px/2);}.elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-10px/2);}.elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-10px/2);}.elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-icon i{color:var( --e-global-color-2e01b65 );transition:color 0.3s;}.elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-icon svg{fill:var( --e-global-color-2e01b65 );transition:fill 0.3s;}.elementor-13113 .elementor-element.elementor-element-15091c12{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-text{color:#FC0700;transition:color 0.3s;}.elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-item:hover .elementor-icon-list-text{color:var( --e-global-color-2e01b65 );}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-icon i{color:#ffffff;}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-icon svg{fill:#ffffff;}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-text{color:var( --e-global-color-9bba728 );}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-15091c12 .elementor-icon-list-item:hover .elementor-icon-list-text{color:var( --e-global-color-2e01b65 );}.elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(10px/2);}.elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(10px/2);}.elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(10px/2);}.elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-10px/2);}.elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-10px/2);}.elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-icon i{color:var( --e-global-color-2e01b65 );transition:color 0.3s;}.elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-icon svg{fill:var( --e-global-color-2e01b65 );transition:fill 0.3s;}.elementor-13113 .elementor-element.elementor-element-4ba676f1{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-text{color:#FC0700;transition:color 0.3s;}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-icon i{color:#ffffff;}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-icon svg{fill:#ffffff;}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-text{color:var( --e-global-color-9bba728 );}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-4ba676f1 .elementor-icon-list-item:hover .elementor-icon-list-text{color:var( --e-global-color-2e01b65 );}.elementor-13113 .elementor-element.elementor-element-00ccabf{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:50px 50px;--row-gap:50px;--column-gap:50px;--padding-top:50px;--padding-bottom:50px;--padding-left:50px;--padding-right:50px;}.elementor-13113 .elementor-element.elementor-element-f9a7781{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-31a32a5 *{color:#ffffff;}.elementor-13113 .elementor-element.elementor-element-dd9064f{--display:flex;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--padding-top:15px;--padding-bottom:15px;--padding-left:15px;--padding-right:15px;}.elementor-13113 .elementor-element.elementor-element-dd9064f:not(.elementor-motion-effects-element-type-background), .elementor-13113 .elementor-element.elementor-element-dd9064f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F1F1F1;}.elementor-13113 .elementor-element.elementor-element-e240cb6 .jlcus_sec_title{--sect-t-algin:left;--sect-line-space:0px;--sect-t-size:23px;--sect-t-color:#000;--ac-line-color:#000;}.elementor-13113 .elementor-element.elementor-element-e240cb6 .jlcus_sec_title .jl_sct_bt{top:0px;}.options_dark_skin .elementor-13113 .elementor-element.elementor-element-e240cb6 .jlcus_sec_title{--sect-t-color:var( --e-global-color-1bb7bfd );--ac-line-color:var( --e-global-color-9bba728 );}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-13113 .elementor-element.elementor-element-cf4c0cd{--divider-border-style:solid;--divider-color:#000;--divider-border-width:1px;}.elementor-13113 .elementor-element.elementor-element-cf4c0cd .elementor-divider-separator{width:100%;}.elementor-13113 .elementor-element.elementor-element-cf4c0cd .elementor-divider{padding-block-start:5px;padding-block-end:5px;}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item.elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item.elementor-button:hover{background-color:var( --e-global-color-accent );}.elementor-widget-navigation-menu a.hfe-menu-item, .elementor-widget-navigation-menu a.hfe-sub-menu-item{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item, .elementor-widget-navigation-menu .sub-menu a.hfe-sub-menu-item{color:var( --e-global-color-text );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item:hover,
								.elementor-widget-navigation-menu .sub-menu a.hfe-sub-menu-item:hover,
								.elementor-widget-navigation-menu .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-widget-navigation-menu .menu-item a.hfe-menu-item.highlighted,
								.elementor-widget-navigation-menu .menu-item a.hfe-menu-item:focus{color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before,
								.elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after{background-color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent .sub-menu .hfe-has-submenu-container a:after{background-color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before,
								.elementor-widget-navigation-menu .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after{border-color:var( --e-global-color-accent );}
							.elementor-widget-navigation-menu .sub-menu li a.hfe-sub-menu-item,
							.elementor-widget-navigation-menu nav.hfe-dropdown li a.hfe-sub-menu-item,
							.elementor-widget-navigation-menu nav.hfe-dropdown li a.hfe-menu-item,
							.elementor-widget-navigation-menu nav.hfe-dropdown-expandible li a.hfe-menu-item,
							.elementor-widget-navigation-menu nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item a.hfe-menu-item{padding-left:10px;padding-right:10px;}.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item a.hfe-sub-menu-item{padding-left:calc( 10px + 20px );padding-right:10px;}.elementor-13113 .elementor-element.elementor-element-4aeef40 .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 40px );padding-right:10px;}.elementor-13113 .elementor-element.elementor-element-4aeef40 .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 60px );padding-right:10px;}.elementor-13113 .elementor-element.elementor-element-4aeef40 .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 80px );padding-right:10px;}.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item a.hfe-menu-item, .elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-13113 .elementor-element.elementor-element-4aeef40 .sub-menu a.hfe-sub-menu-item,
						 .elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown li a.hfe-menu-item,
						 .elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown li a.hfe-sub-menu-item,
						 .elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown-expandible li a.hfe-menu-item,
						 .elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-13113 .elementor-element.elementor-element-4aeef40 a.hfe-menu-item, .elementor-13113 .elementor-element.elementor-element-4aeef40 a.hfe-sub-menu-item{font-weight:400;}.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item a.hfe-menu-item, .elementor-13113 .elementor-element.elementor-element-4aeef40 .sub-menu a.hfe-sub-menu-item{color:var( --e-global-color-1bb7bfd );}.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item a.hfe-menu-item:hover,
								.elementor-13113 .elementor-element.elementor-element-4aeef40 .sub-menu a.hfe-sub-menu-item:hover,
								.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item a.hfe-menu-item.highlighted,
								.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item a.hfe-menu-item:focus{color:var( --e-global-color-2e01b65 );background-color:var( --e-global-color-9bba728 );}.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-13113 .elementor-element.elementor-element-4aeef40 .menu-item.current-menu-ancestor a.hfe-menu-item{color:var( --e-global-color-2e01b65 );background-color:var( --e-global-color-9bba728 );}.elementor-13113 .elementor-element.elementor-element-4aeef40 .sub-menu,
								.elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown,
								.elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown-expandible,
								.elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown .menu-item a.hfe-menu-item,
								.elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-13113 .elementor-element.elementor-element-4aeef40 .sub-menu li.menu-item:not(:last-child),
						.elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown li.menu-item:not(:last-child),
						.elementor-13113 .elementor-element.elementor-element-4aeef40 nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}@media(min-width:768px){.elementor-13113 .elementor-element.elementor-element-714aafdb{--content-width:1200px;}.elementor-13113 .elementor-element.elementor-element-f9a7781{--width:70%;}.elementor-13113 .elementor-element.elementor-element-dd9064f{--width:30%;}}@media(max-width:1024px) and (min-width:768px){.elementor-13113 .elementor-element.elementor-element-f9a7781{--width:653.094px;}.elementor-13113 .elementor-element.elementor-element-dd9064f{--width:653.094px;}}@media(max-width:1024px){.elementor-13113 .elementor-element.elementor-element-00ccabf{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:20px 20px;--row-gap:20px;--column-gap:20px;}}@media(max-width:767px){.elementor-13113 .elementor-element.elementor-element-714aafdb{--padding-top:50px;--padding-bottom:50px;--padding-left:15px;--padding-right:15px;}.elementor-13113 .elementor-element.elementor-element-3e1304be .jlcus_sec_title{--sect-t-size:30px;}.elementor-13113 .elementor-element.elementor-element-00ccabf{--padding-top:50px;--padding-bottom:50px;--padding-left:15px;--padding-right:15px;}.elementor-13113 .elementor-element.elementor-element-e240cb6 .jlcus_sec_title{--sect-t-size:18px;}}.elementor-11900 .elementor-element.elementor-element-a0543a0{--display:flex;--min-height:5vh;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:50px;--padding-right:50px;}.elementor-11900 .elementor-element.elementor-element-a0543a0:not(.elementor-motion-effects-element-type-background), .elementor-11900 .elementor-element.elementor-element-a0543a0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-9bba728 );}.elementor-11900 .elementor-element.elementor-element-361b5a6{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-start;--align-items:center;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-icon.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-primary );}.elementor-11900 .elementor-element.elementor-element-917c303 > .elementor-widget-container{margin:0px 0px -5px 0px;padding:0px 0px 0px 0px;}.elementor-11900 .elementor-element.elementor-element-917c303 .elementor-icon-wrapper{text-align:center;}.elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-2e01b65 );}.elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-framed .elementor-icon, .elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-default .elementor-icon{color:var( --e-global-color-2e01b65 );border-color:var( --e-global-color-2e01b65 );}.elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-framed .elementor-icon, .elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-2e01b65 );}.elementor-11900 .elementor-element.elementor-element-917c303 .elementor-icon{font-size:15px;}.elementor-11900 .elementor-element.elementor-element-917c303 .elementor-icon svg{height:15px;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-stacked .elementor-icon{background-color:#ffffff;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-framed .elementor-icon, .options_dark_skin .elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-default .elementor-icon{color:#ffffff;border-color:#ffffff;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-framed .elementor-icon, .options_dark_skin .elementor-11900 .elementor-element.elementor-element-917c303.elementor-view-default .elementor-icon svg{fill:#ffffff;}.elementor-11900 .elementor-element.elementor-element-1f729bc .jl_cur_date{color:var( --e-global-color-2e01b65 );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-1f729bc .jl_cur_date{color:#FFF !important;}.elementor-11900 .elementor-element.elementor-element-694cb5f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-icon-list .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-icon-list .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-item > .elementor-icon-list-text, .elementor-widget-icon-list .elementor-icon-list-item > a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-icon-list .elementor-icon-list-text{color:var( --e-global-color-secondary );}.elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(10px/2);}.elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(10px/2);}.elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(10px/2);}.elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-10px/2);}.elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-10px/2);}.elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-11900 .elementor-element.elementor-element-e46b0fb{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-item > a{font-family:"Inter Tight", Sans-serif;font-weight:500;}.elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-text{color:var( --e-global-color-2e01b65 );transition:color 0.3s;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-icon i{color:#ffffff;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-icon svg{fill:#ffffff;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-e46b0fb .elementor-icon-list-text{color:#ffffff;}.elementor-11900 .elementor-element.elementor-element-a0cd1a5{--display:flex;--min-height:8vh;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:20px 20px;--row-gap:20px;--column-gap:20px;--overflow:hidden;box-shadow:0px 3px 7px 0px rgba(0, 0, 0, 0.17);--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:5px;--padding-bottom:5px;--padding-left:50px;--padding-right:50px;}.elementor-11900 .elementor-element.elementor-element-a0cd1a5:not(.elementor-motion-effects-element-type-background), .elementor-11900 .elementor-element.elementor-element-a0cd1a5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F8F8F8;}.elementor-11900 .elementor-element.elementor-element-2f1c73b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11900 .elementor-element.elementor-element-81563bc .logo_small_wrapper_table .logo_small_wrapper .logo_link img{max-width:80px !important;}.elementor-11900 .elementor-element.elementor-element-81563bc .logo_small_wrapper_table{justify-content:left;}.elementor-11900 .elementor-element.elementor-element-1b439d2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper{justify-content:center;height:50px;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .menu-item > a{letter-spacing:0.01em;padding:0px 0px 0px 0px;color:#000;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper > div{height:100%;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .menu-item{margin-right:25px;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .menu-item:hover > a .jl_mblt{background-size:100% 2px !important;border-color:#000000 !important;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .current-menu-ancestor > a .jl_mblt{background-size:100% 2px !important;border-color:#000000 !important;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .current-menu-item > a .jl_mblt{background-size:100% 2px !important;border-color:#000000 !important;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .is-current-sub > a .jl_mblt{background-size:100% 2px !important;border-color:#000000 !important;}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .menu-item > a .jl_mblt{background-size:0 2px;background-image:linear-gradient(90deg,#000000 0,#000000 94%);}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .menu-item > a .jl_mblt{background-image:var( --e-global-color-1bb7bfd );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .menu-item:hover > a .jl_mblt{border-color:var( --e-global-color-1bb7bfd );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .current-menu-ancestor > a .jl_mblt{border-color:var( --e-global-color-1bb7bfd );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .current-menu-item > a .jl_mblt{border-color:var( --e-global-color-1bb7bfd );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .is-current-sub > a .jl_mblt{border-color:var( --e-global-color-1bb7bfd );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-cb6f2c0 .navigation_wrapper .jl_main_menu > .menu-item > a{color:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-cb6f2c0 .jl_main_menu .menu-item:hover > a{color:#000;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-cb6f2c0 .jl_main_menu .menu-item:hover > a{color:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-57d4bcc{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-end;--align-items:center;--gap:5px 5px;--row-gap:5px;--column-gap:5px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-065db7e.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-065db7e.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-065db7e.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-cd23b18.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-cd23b18.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-cd23b18.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-0a2beaa.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-0a2beaa.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-0a2beaa.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-5769f51.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-5769f51.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-5769f51.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-4d37e28.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-4d37e28.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-repeater-item-4d37e28.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-5adb6ae{--grid-template-columns:repeat(0, auto);--icon-size:22px;--grid-column-gap:0px;--grid-row-gap:0px;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-widget-container{text-align:right;}.elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-social-icon{--icon-padding:0.4em;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-social-icon{background-color:#00000000;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-social-icon i{color:var( --e-global-color-1bb7bfd );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-social-icon svg{fill:var( --e-global-color-1bb7bfd );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-social-icon:hover i{color:var( --e-global-color-9bba728 );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-5adb6ae .elementor-social-icon:hover svg{fill:var( --e-global-color-9bba728 );}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-11900 .elementor-element.elementor-element-3bd71b6{--divider-border-style:solid;--divider-color:var( --e-global-color-9bba728 );--divider-border-width:20px;width:var( --container-widget-width, 5% );max-width:5%;--container-widget-width:5%;--container-widget-flex-grow:0;}.elementor-11900 .elementor-element.elementor-element-3bd71b6 .elementor-divider-separator{width:15%;margin:0 auto;margin-center:0;}.elementor-11900 .elementor-element.elementor-element-3bd71b6 .elementor-divider{text-align:center;padding-block-start:2px;padding-block-end:2px;}.elementor-11900 .elementor-element.elementor-element-8dd1b71{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;box-shadow:0px 3px 5px 0px rgba(0, 0, 0, 0.45);}.elementor-11900 .elementor-element.elementor-element-8dd1b71:not(.elementor-motion-effects-element-type-background), .elementor-11900 .elementor-element.elementor-element-8dd1b71 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F8F8F8;}.elementor-11900 .elementor-element.elementor-element-7a3d234{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11900 .elementor-element.elementor-element-40b20f8.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-11900 .elementor-element.elementor-element-40b20f8 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{max-width:80px !important;}.elementor-11900 .elementor-element.elementor-element-40b20f8 .logo_small_wrapper_table{justify-content:left;}.elementor-11900 .elementor-element.elementor-element-2cdabdb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-065db7e.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-065db7e.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-065db7e.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-cd23b18.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-cd23b18.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-cd23b18.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-0a2beaa.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-0a2beaa.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-0a2beaa.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-5769f51.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-5769f51.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-5769f51.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-4d37e28.elementor-social-icon{background-color:#02010100;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-4d37e28.elementor-social-icon i{color:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-repeater-item-4d37e28.elementor-social-icon svg{fill:#000000;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7{--grid-template-columns:repeat(0, auto);--icon-size:22px;--grid-column-gap:0px;--grid-row-gap:0px;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-widget-container{text-align:right;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-social-icon{--icon-padding:0.4em;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-social-icon{background-color:#00000000;}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-social-icon i{color:var( --e-global-color-1bb7bfd );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-social-icon svg{fill:var( --e-global-color-1bb7bfd );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-social-icon:hover i{color:var( --e-global-color-9bba728 );}.options_dark_skin .elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-social-icon:hover svg{fill:var( --e-global-color-9bba728 );}.elementor-11900 .elementor-element.elementor-element-67ee1e3{--divider-border-style:solid;--divider-color:var( --e-global-color-9bba728 );--divider-border-width:20px;width:var( --container-widget-width, 5% );max-width:5%;--container-widget-width:5%;--container-widget-flex-grow:0;}.elementor-11900 .elementor-element.elementor-element-67ee1e3 .elementor-divider-separator{width:15%;margin:0 auto;margin-center:0;}.elementor-11900 .elementor-element.elementor-element-67ee1e3 .elementor-divider{text-align:center;padding-block-start:2px;padding-block-end:2px;}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item.elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item.elementor-button:hover{background-color:var( --e-global-color-accent );}.elementor-widget-navigation-menu a.hfe-menu-item, .elementor-widget-navigation-menu a.hfe-sub-menu-item{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item, .elementor-widget-navigation-menu .sub-menu a.hfe-sub-menu-item{color:var( --e-global-color-text );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item:hover,
								.elementor-widget-navigation-menu .sub-menu a.hfe-sub-menu-item:hover,
								.elementor-widget-navigation-menu .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-widget-navigation-menu .menu-item a.hfe-menu-item.highlighted,
								.elementor-widget-navigation-menu .menu-item a.hfe-menu-item:focus{color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before,
								.elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after{background-color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent .sub-menu .hfe-has-submenu-container a:after{background-color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before,
								.elementor-widget-navigation-menu .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after{border-color:var( --e-global-color-accent );}
							.elementor-widget-navigation-menu .sub-menu li a.hfe-sub-menu-item,
							.elementor-widget-navigation-menu nav.hfe-dropdown li a.hfe-sub-menu-item,
							.elementor-widget-navigation-menu nav.hfe-dropdown li a.hfe-menu-item,
							.elementor-widget-navigation-menu nav.hfe-dropdown-expandible li a.hfe-menu-item,
							.elementor-widget-navigation-menu nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu__toggle,
						.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu-icon{margin:0 auto;justify-content:center;}.elementor-11900 .elementor-element.elementor-element-b3a4711 li.menu-item a{justify-content:space-between;}.elementor-11900 .elementor-element.elementor-element-b3a4711 li.hfe-button-wrapper{text-align:space-between;}.elementor-11900 .elementor-element.elementor-element-b3a4711.hfe-menu-item-flex-end li.hfe-button-wrapper{text-align:right;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-wrapper .hfe-side{width:300px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-open.left{left:-300px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-open.right{right:-300px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-content{padding:30px;background-color:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item a.hfe-menu-item{padding-left:15px;padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item a.hfe-sub-menu-item{padding-left:calc( 15px + 20px );padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 40px );padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 60px );padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 80px );padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item a.hfe-menu-item, .elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .sub-menu a.hfe-sub-menu-item,
						 .elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown li a.hfe-menu-item,
						 .elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown li a.hfe-sub-menu-item,
						 .elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown-expandible li a.hfe-menu-item,
						 .elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item a.hfe-menu-item, .elementor-11900 .elementor-element.elementor-element-b3a4711 .sub-menu a.hfe-sub-menu-item{color:var( --e-global-color-2e01b65 );}.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item a.hfe-menu-item:hover,
								.elementor-11900 .elementor-element.elementor-element-b3a4711 .sub-menu a.hfe-sub-menu-item:hover,
								.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item a.hfe-menu-item.highlighted,
								.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item a.hfe-menu-item:focus{color:var( --e-global-color-9bba728 );}.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-11900 .elementor-element.elementor-element-b3a4711 .menu-item.current-menu-ancestor a.hfe-menu-item{color:var( --e-global-color-9bba728 );}.elementor-11900 .elementor-element.elementor-element-b3a4711 .sub-menu,
								.elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown,
								.elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown-expandible,
								.elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown .menu-item a.hfe-menu-item,
								.elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .sub-menu li.menu-item:not(:last-child),
						.elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown li.menu-item:not(:last-child),
						.elementor-11900 .elementor-element.elementor-element-b3a4711 nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 div.hfe-nav-menu-icon{color:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-b3a4711 div.hfe-nav-menu-icon svg{fill:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-b3a4711 div.hfe-nav-menu-icon:hover{color:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-b3a4711 div.hfe-nav-menu-icon:hover svg{fill:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-close{color:#7A7A7A;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-close svg{fill:#7A7A7A;}.elementor-11900 .elementor-element.elementor-element-d0c3cc1{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;box-shadow:0px 3px 7px 0px rgba(0, 0, 0, 0.17);}.elementor-11900 .elementor-element.elementor-element-d0c3cc1:not(.elementor-motion-effects-element-type-background), .elementor-11900 .elementor-element.elementor-element-d0c3cc1 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F8F8F8;}.elementor-11900 .elementor-element.elementor-element-47ac504{--display:flex;}.elementor-11900 .elementor-element.elementor-element-47ac504.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-11900 .elementor-element.elementor-element-219a616.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-11900 .elementor-element.elementor-element-219a616 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{max-width:80px !important;}.elementor-11900 .elementor-element.elementor-element-219a616 .logo_small_wrapper_table{justify-content:left;}.elementor-11900 .elementor-element.elementor-element-6283320{--display:flex;}.elementor-11900 .elementor-element.elementor-element-6283320.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-11900 .elementor-element.elementor-element-c7f54fb{--divider-border-style:solid;--divider-color:var( --e-global-color-9bba728 );--divider-border-width:20px;width:var( --container-widget-width, 5% );max-width:5%;--container-widget-width:5%;--container-widget-flex-grow:0;}.elementor-11900 .elementor-element.elementor-element-c7f54fb .elementor-divider-separator{width:15%;margin:0 auto;margin-center:0;}.elementor-11900 .elementor-element.elementor-element-c7f54fb .elementor-divider{text-align:center;padding-block-start:2px;padding-block-end:2px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-nav-menu__toggle,
						.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-nav-menu-icon{margin:0 auto;justify-content:center;}.elementor-11900 .elementor-element.elementor-element-baa9968 li.menu-item a{justify-content:space-between;}.elementor-11900 .elementor-element.elementor-element-baa9968 li.hfe-button-wrapper{text-align:space-between;}.elementor-11900 .elementor-element.elementor-element-baa9968.hfe-menu-item-flex-end li.hfe-button-wrapper{text-align:right;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-wrapper .hfe-side{width:300px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-open.left{left:-300px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-open.right{right:-300px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-content{padding:30px;background-color:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item a.hfe-menu-item{padding-left:15px;padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item a.hfe-sub-menu-item{padding-left:calc( 15px + 20px );padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 40px );padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 60px );padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 80px );padding-right:15px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item a.hfe-menu-item, .elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .sub-menu a.hfe-sub-menu-item,
						 .elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown li a.hfe-menu-item,
						 .elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown li a.hfe-sub-menu-item,
						 .elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown-expandible li a.hfe-menu-item,
						 .elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-11900 .elementor-element.elementor-element-baa9968.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item a.hfe-menu-item, .elementor-11900 .elementor-element.elementor-element-baa9968 .sub-menu a.hfe-sub-menu-item{color:var( --e-global-color-2e01b65 );}.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item a.hfe-menu-item:hover,
								.elementor-11900 .elementor-element.elementor-element-baa9968 .sub-menu a.hfe-sub-menu-item:hover,
								.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item a.hfe-menu-item.highlighted,
								.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item a.hfe-menu-item:focus{color:var( --e-global-color-9bba728 );}.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-11900 .elementor-element.elementor-element-baa9968 .menu-item.current-menu-ancestor a.hfe-menu-item{color:var( --e-global-color-9bba728 );}.elementor-11900 .elementor-element.elementor-element-baa9968 .sub-menu,
								.elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown,
								.elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown-expandible,
								.elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown .menu-item a.hfe-menu-item,
								.elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-11900 .elementor-element.elementor-element-baa9968 .sub-menu li.menu-item:not(:last-child),
						.elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown li.menu-item:not(:last-child),
						.elementor-11900 .elementor-element.elementor-element-baa9968 nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-11900 .elementor-element.elementor-element-baa9968 div.hfe-nav-menu-icon{color:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-baa9968 div.hfe-nav-menu-icon svg{fill:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-baa9968 div.hfe-nav-menu-icon:hover{color:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-baa9968 div.hfe-nav-menu-icon:hover svg{fill:var( --e-global-color-1bb7bfd );}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-close{color:#7A7A7A;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-close svg{fill:#7A7A7A;}@media(min-width:768px){.elementor-11900 .elementor-element.elementor-element-a0543a0{--content-width:1200px;}.elementor-11900 .elementor-element.elementor-element-361b5a6{--width:50%;}.elementor-11900 .elementor-element.elementor-element-694cb5f{--width:50%;}.elementor-11900 .elementor-element.elementor-element-a0cd1a5{--content-width:1200px;}.elementor-11900 .elementor-element.elementor-element-2f1c73b{--width:15%;}.elementor-11900 .elementor-element.elementor-element-1b439d2{--width:60%;}.elementor-11900 .elementor-element.elementor-element-57d4bcc{--width:25%;}.elementor-11900 .elementor-element.elementor-element-7a3d234{--width:33.3333%;}.elementor-11900 .elementor-element.elementor-element-2cdabdb{--width:66.6666%;}.elementor-11900 .elementor-element.elementor-element-d0c3cc1{--content-width:1200px;}}@media(max-width:1024px){.elementor-11900 .elementor-element.elementor-element-8dd1b71{--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:05px;--padding-bottom:5px;--padding-left:25px;--padding-right:25px;}.elementor-11900 .elementor-element.elementor-element-7a3d234{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11900 .elementor-element.elementor-element-40b20f8{width:var( --container-widget-width, 159.778px );max-width:159.778px;--container-widget-width:159.778px;--container-widget-flex-grow:0;}.elementor-11900 .elementor-element.elementor-element-40b20f8 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{max-width:70px !important;}.elementor-11900 .elementor-element.elementor-element-2cdabdb{--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-end;--align-items:center;--gap:15px 15px;--row-gap:15px;--column-gap:15px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7{--icon-size:18px;}.elementor-11900 .elementor-element.elementor-element-d8ca9d7 .elementor-social-icon{--icon-padding:0.6em;}.elementor-11900 .elementor-element.elementor-element-67ee1e3 .elementor-divider-separator{width:12%;margin:0 auto;margin-center:0;}.elementor-11900 .elementor-element.elementor-element-67ee1e3 .elementor-divider{text-align:center;padding-block-start:0px;padding-block-end:0px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu-icon{font-size:28px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu-icon svg{font-size:28px;line-height:28px;height:28px;width:28px;}.elementor-11900 .elementor-element.elementor-element-d0c3cc1{--padding-top:0px;--padding-bottom:0px;--padding-left:25px;--padding-right:25px;}.elementor-11900 .elementor-element.elementor-element-47ac504{--justify-content:center;}.elementor-11900 .elementor-element.elementor-element-219a616{width:var( --container-widget-width, 159.778px );max-width:159.778px;--container-widget-width:159.778px;--container-widget-flex-grow:0;}.elementor-11900 .elementor-element.elementor-element-6283320{--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-end;--align-items:center;}}@media(max-width:767px){.elementor-11900 .elementor-element.elementor-element-40b20f8 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{max-width:60px !important;}.elementor-11900 .elementor-element.elementor-element-67ee1e3 .elementor-divider-separator{width:20%;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu__toggle,
						.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu-icon{margin:0 auto;justify-content:center;}.elementor-11900 .elementor-element.elementor-element-b3a4711 li.menu-item a{justify-content:flex-start;}.elementor-11900 .elementor-element.elementor-element-b3a4711 li.hfe-button-wrapper{text-align:flex-start;}.elementor-11900 .elementor-element.elementor-element-b3a4711.hfe-menu-item-flex-end li.hfe-button-wrapper{text-align:right;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-content{padding:15px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-wrapper .hfe-nav-menu > li.menu-item:first-child{margin-top:15px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu-icon{font-size:28px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-nav-menu-icon svg{font-size:28px;line-height:28px;height:28px;width:28px;}.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-close,
					.elementor-11900 .elementor-element.elementor-element-b3a4711 .hfe-flyout-close svg{height:22px;width:22px;font-size:22px;line-height:22px;}.elementor-11900 .elementor-element.elementor-element-d0c3cc1{--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11900 .elementor-element.elementor-element-47ac504{--width:75.997px;}.elementor-11900 .elementor-element.elementor-element-219a616{width:var( --container-widget-width, 53.984px );max-width:53.984px;--container-widget-width:53.984px;--container-widget-flex-grow:0;}.elementor-11900 .elementor-element.elementor-element-219a616 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{max-width:60px !important;}.elementor-11900 .elementor-element.elementor-element-6283320{--width:223px;--justify-content:flex-end;--gap:10px 10px;--row-gap:10px;--column-gap:10px;}.elementor-11900 .elementor-element.elementor-element-c7f54fb .elementor-divider-separator{width:20%;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-nav-menu__toggle,
						.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-nav-menu-icon{margin-left:auto;margin-right:0;justify-content:flex-end;}.elementor-11900 .elementor-element.elementor-element-baa9968 li.menu-item a{justify-content:center;}.elementor-11900 .elementor-element.elementor-element-baa9968 li.hfe-button-wrapper{text-align:center;}.elementor-11900 .elementor-element.elementor-element-baa9968.hfe-menu-item-flex-end li.hfe-button-wrapper{text-align:right;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-content{padding:15px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-wrapper .hfe-nav-menu > li.menu-item:first-child{margin-top:15px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-nav-menu-icon{font-size:28px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-nav-menu-icon svg{font-size:28px;line-height:28px;height:28px;width:28px;}.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-close,
					.elementor-11900 .elementor-element.elementor-element-baa9968 .hfe-flyout-close svg{height:22px;width:22px;font-size:22px;line-height:22px;}.elementor-11900 .elementor-element.elementor-element-baa9968{width:var( --container-widget-width, 43.226px );max-width:43.226px;--container-widget-width:43.226px;--container-widget-flex-grow:0;}}.elementor-11972 .elementor-element.elementor-element-f9d52e1{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:50px 50px;--row-gap:50px;--column-gap:50px;--overlay-opacity:0.23;--padding-top:50px;--padding-bottom:50px;--padding-left:50px;--padding-right:50px;}.elementor-11972 .elementor-element.elementor-element-f9d52e1:not(.elementor-motion-effects-element-type-background), .elementor-11972 .elementor-element.elementor-element-f9d52e1 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-9bba728 );}.elementor-11972 .elementor-element.elementor-element-f9d52e1::before, .elementor-11972 .elementor-element.elementor-element-f9d52e1 > .elementor-background-video-container::before, .elementor-11972 .elementor-element.elementor-element-f9d52e1 > .e-con-inner > .elementor-background-video-container::before, .elementor-11972 .elementor-element.elementor-element-f9d52e1 > .elementor-background-slideshow::before, .elementor-11972 .elementor-element.elementor-element-f9d52e1 > .e-con-inner > .elementor-background-slideshow::before, .elementor-11972 .elementor-element.elementor-element-f9d52e1 > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-image:url("https://hiptv.tv/space/2025/09/Back-Head1.png");--background-overlay:'';background-position:bottom center;background-size:contain;}.elementor-11972 .elementor-element.elementor-element-0f3b2b6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11972 .elementor-element.elementor-element-0f3b2b6.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-11972 .elementor-element.elementor-element-c5eeac5 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{max-width:150px !important;}.elementor-11972 .elementor-element.elementor-element-c5eeac5 .logo_small_wrapper_table{justify-content:left;}.elementor-widget-icon-list .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-icon-list .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-item > .elementor-icon-list-text, .elementor-widget-icon-list .elementor-icon-list-item > a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-icon-list .elementor-icon-list-text{color:var( --e-global-color-secondary );}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(25px/2);}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(25px/2);}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(25px/2);}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-25px/2);}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-25px/2);}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-item:not(:last-child):after{content:"";border-color:#FFFFFF7A;}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child):after{border-block-start-style:solid;border-block-start-width:1px;}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:not(:last-child):after{border-inline-start-style:solid;}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-inline-items .elementor-icon-list-item:not(:last-child):after{border-inline-start-width:1px;}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-11972 .elementor-element.elementor-element-1e25d42{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-item > a{font-weight:500;}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-text{color:var( --e-global-color-2e01b65 );transition:color 0.3s;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-icon i{color:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-icon svg{fill:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-text{color:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-item:not(:last-child):after{border-color:#cccccc;}.elementor-11972 .elementor-element.elementor-element-35a1f18{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:15px 15px;--row-gap:15px;--column-gap:15px;}.elementor-11972 .elementor-element.elementor-element-bdbeedb .jlcus_sec_title{--sect-t-algin:left;--sect-line-space:0px;--sect-t-size:18px;--sect-t-space:0.03em !important;--sect-t-color:var( --e-global-color-2e01b65 );--ac-line-color:#000;}.elementor-11972 .elementor-element.elementor-element-bdbeedb .jlcus_sec_title .jl_sct_bt{top:0px;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-bdbeedb .jlcus_sec_title{--sect-t-color:#fff;--ac-line-color:#fff;}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-11972 .elementor-element.elementor-element-868c1a1{--divider-border-style:solid;--divider-color:var( --e-global-color-2e01b65 );--divider-border-width:3px;}.elementor-11972 .elementor-element.elementor-element-868c1a1 .elementor-divider-separator{width:20%;}.elementor-11972 .elementor-element.elementor-element-868c1a1 .elementor-divider{padding-block-start:2px;padding-block-end:2px;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(25px/2);}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(25px/2);}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(25px/2);}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-25px/2);}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-25px/2);}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-item:not(:last-child):after{content:"";border-color:#FFFFFF7A;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child):after{border-block-start-style:solid;border-block-start-width:1px;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:not(:last-child):after{border-inline-start-style:solid;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-inline-items .elementor-icon-list-item:not(:last-child):after{border-inline-start-width:1px;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-11972 .elementor-element.elementor-element-794558d{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-item > a{font-weight:500;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-text{color:var( --e-global-color-2e01b65 );transition:color 0.3s;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-icon i{color:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-icon svg{fill:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-text{color:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-item:not(:last-child):after{border-color:#cccccc;}.elementor-11972 .elementor-element.elementor-element-d58fbba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:15px 15px;--row-gap:15px;--column-gap:15px;}.elementor-11972 .elementor-element.elementor-element-d166564 .jlcus_sec_title{--sect-t-algin:left;--sect-line-space:0px;--sect-t-size:18px;--sect-t-space:0.03em !important;--sect-t-color:var( --e-global-color-2e01b65 );--ac-line-color:#000;}.elementor-11972 .elementor-element.elementor-element-d166564 .jlcus_sec_title .jl_sct_bt{top:0px;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-d166564 .jlcus_sec_title{--sect-t-color:#fff;--ac-line-color:#fff;}.elementor-11972 .elementor-element.elementor-element-cb27d59{--divider-border-style:solid;--divider-color:var( --e-global-color-2e01b65 );--divider-border-width:3px;}.elementor-11972 .elementor-element.elementor-element-cb27d59 .elementor-divider-separator{width:20%;}.elementor-11972 .elementor-element.elementor-element-cb27d59 .elementor-divider{padding-block-start:2px;padding-block-end:2px;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(25px/2);}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(25px/2);}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(25px/2);}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-25px/2);}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-25px/2);}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-item:not(:last-child):after{content:"";border-color:#FFFFFF7A;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child):after{border-block-start-style:solid;border-block-start-width:1px;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:not(:last-child):after{border-inline-start-style:solid;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-inline-items .elementor-icon-list-item:not(:last-child):after{border-inline-start-width:1px;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-11972 .elementor-element.elementor-element-3b663d0{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-item > a{font-weight:500;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-text{color:var( --e-global-color-2e01b65 );transition:color 0.3s;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-icon i{color:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-icon svg{fill:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-text{color:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-item:not(:last-child):after{border-color:#cccccc;}.elementor-11972 .elementor-element.elementor-element-5dd2ea5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:15px 15px;--row-gap:15px;--column-gap:15px;}.elementor-11972 .elementor-element.elementor-element-150cf17 .jlcus_sec_title{--sect-t-algin:left;--sect-line-space:0px;--sect-t-size:18px;--sect-t-space:0.03em !important;--sect-t-color:var( --e-global-color-2e01b65 );--ac-line-color:#000;}.elementor-11972 .elementor-element.elementor-element-150cf17 .jlcus_sec_title .jl_sct_bt{top:0px;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-150cf17 .jlcus_sec_title{--sect-t-color:#fff;--ac-line-color:#fff;}.elementor-11972 .elementor-element.elementor-element-21eb34d{--divider-border-style:solid;--divider-color:var( --e-global-color-2e01b65 );--divider-border-width:3px;}.elementor-11972 .elementor-element.elementor-element-21eb34d .elementor-divider-separator{width:10%;}.elementor-11972 .elementor-element.elementor-element-21eb34d .elementor-divider{padding-block-start:2px;padding-block-end:2px;}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(15px/2);}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(15px/2);}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(15px/2);}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-15px/2);}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-15px/2);}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-icon i{color:var( --e-global-color-2e01b65 );transition:color 0.3s;}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-icon svg{fill:var( --e-global-color-2e01b65 );transition:fill 0.3s;}.elementor-11972 .elementor-element.elementor-element-492fadc{--e-icon-list-icon-size:20px;--icon-vertical-offset:0px;}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-icon{padding-inline-end:0px;}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-item > a{font-weight:500;}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-text{color:var( --e-global-color-2e01b65 );transition:color 0.3s;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-icon i{color:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-icon svg{fill:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-text{color:#ffffff;}.elementor-11972 .elementor-element.elementor-element-ff5505f{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--gap:5px 5px;--row-gap:5px;--column-gap:5px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-block-end:calc(15px/2);}.elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-block-start:calc(15px/2);}.elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:calc(15px/2);}.elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-items.elementor-inline-items{margin-inline:calc(-15px/2);}.elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{inset-inline-end:calc(-15px/2);}.elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-11972 .elementor-element.elementor-element-e428a49{--e-icon-list-icon-size:14px;--icon-vertical-offset:0px;}.elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-item > a{font-family:"Roboto", Sans-serif;font-weight:500;}.elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-text{color:var( --e-global-color-2e01b65 );transition:color 0.3s;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-icon i{color:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-icon svg{fill:#ffffff;}.options_dark_skin .elementor-11972 .elementor-element.elementor-element-e428a49 .elementor-icon-list-text{color:#ffffff;}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-065db7e.elementor-social-icon{background-color:#02010100;}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-065db7e.elementor-social-icon i{color:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-065db7e.elementor-social-icon svg{fill:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-cd23b18.elementor-social-icon{background-color:#02010100;}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-cd23b18.elementor-social-icon i{color:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-cd23b18.elementor-social-icon svg{fill:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-0ab2957.elementor-social-icon{background-color:#02010100;}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-0ab2957.elementor-social-icon i{color:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-0ab2957.elementor-social-icon svg{fill:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-0a2beaa.elementor-social-icon{background-color:#02010100;}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-0a2beaa.elementor-social-icon i{color:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-0a2beaa.elementor-social-icon svg{fill:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-4d37e28.elementor-social-icon{background-color:#02010100;}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-4d37e28.elementor-social-icon i{color:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-repeater-item-4d37e28.elementor-social-icon svg{fill:var( --e-global-color-2e01b65 );}.elementor-11972 .elementor-element.elementor-element-78132d1{--grid-template-columns:repeat(0, auto);--icon-size:20px;--grid-column-gap:0em;--grid-row-gap:0px;}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-widget-container{text-align:right;}.elementor-11972 .elementor-element.elementor-element-78132d1 .elementor-social-icon{--icon-padding:0.4em;}.elementor-11972 .elementor-element.elementor-element-2b9eae6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:10px;--padding-bottom:10px;--padding-left:50px;--padding-right:50px;}.elementor-11972 .elementor-element.elementor-element-2b9eae6:not(.elementor-motion-effects-element-type-background), .elementor-11972 .elementor-element.elementor-element-2b9eae6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-9bba728 );}.elementor-11972 .elementor-element.elementor-element-1a9739c{--divider-border-style:solid;--divider-color:var( --e-global-color-2e01b65 );--divider-border-width:1px;}.elementor-11972 .elementor-element.elementor-element-1a9739c .elementor-divider-separator{width:100%;}.elementor-11972 .elementor-element.elementor-element-1a9739c .elementor-divider{padding-block-start:1px;padding-block-end:1px;}.elementor-11972 .elementor-element.elementor-element-5b26fde{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--gap:10px 10px;--row-gap:10px;--column-gap:10px;}.elementor-widget-copyright .hfe-copyright-wrapper a, .elementor-widget-copyright .hfe-copyright-wrapper{color:var( --e-global-color-text );}.elementor-widget-copyright .hfe-copyright-wrapper, .elementor-widget-copyright .hfe-copyright-wrapper a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-11972 .elementor-element.elementor-element-0a40c82 .hfe-copyright-wrapper{text-align:center;}.elementor-11972 .elementor-element.elementor-element-0a40c82 .hfe-copyright-wrapper a, .elementor-11972 .elementor-element.elementor-element-0a40c82 .hfe-copyright-wrapper{color:var( --e-global-color-1bb7bfd );}.elementor-11972 .elementor-element.elementor-element-0a40c82 .hfe-copyright-wrapper, .elementor-11972 .elementor-element.elementor-element-0a40c82 .hfe-copyright-wrapper a{font-family:"Roboto", Sans-serif;font-weight:600;}@media(max-width:1024px){.elementor-11972 .elementor-element.elementor-element-f9d52e1{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:20px 20px;--row-gap:20px;--column-gap:20px;--overlay-opacity:0.15;}.elementor-11972 .elementor-element.elementor-element-c5eeac5 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{max-width:1500px !important;}.elementor-11972 .elementor-element.elementor-element-c5eeac5 .logo_small_wrapper_table{justify-content:center;}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-item > a{font-size:18px;}.elementor-11972 .elementor-element.elementor-element-35a1f18{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-11972 .elementor-element.elementor-element-bdbeedb .jlcus_sec_title{--sect-t-size:20px;}.elementor-11972 .elementor-element.elementor-element-868c1a1 .elementor-divider-separator{width:10%;margin:0 auto;margin-center:0;}.elementor-11972 .elementor-element.elementor-element-868c1a1 .elementor-divider{text-align:center;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-item > a{font-size:18px;}.elementor-11972 .elementor-element.elementor-element-d58fbba{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-11972 .elementor-element.elementor-element-d166564 .jlcus_sec_title{--sect-t-size:20px;}.elementor-11972 .elementor-element.elementor-element-cb27d59 .elementor-divider-separator{width:10%;margin:0 auto;margin-center:0;}.elementor-11972 .elementor-element.elementor-element-cb27d59 .elementor-divider{text-align:center;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-item > a{font-size:18px;}.elementor-11972 .elementor-element.elementor-element-5dd2ea5{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-11972 .elementor-element.elementor-element-150cf17 .jlcus_sec_title{--sect-t-size:20px;}.elementor-11972 .elementor-element.elementor-element-21eb34d .elementor-divider{text-align:center;}.elementor-11972 .elementor-element.elementor-element-21eb34d .elementor-divider-separator{margin:0 auto;margin-center:0;}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-item > a{font-size:18px;}.elementor-11972 .elementor-element.elementor-element-ff5505f{--justify-content:center;}}@media(max-width:767px){.elementor-11972 .elementor-element.elementor-element-f9d52e1{--overlay-opacity:0.15;--padding-top:30px;--padding-bottom:30px;--padding-left:15px;--padding-right:15px;}.elementor-11972 .elementor-element.elementor-element-c5eeac5 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{max-width:150px !important;}.elementor-11972 .elementor-element.elementor-element-c5eeac5 .logo_small_wrapper_table{justify-content:center;}.elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-1e25d42 .elementor-icon-list-item > a{font-size:16px;}.elementor-11972 .elementor-element.elementor-element-35a1f18{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-11972 .elementor-element.elementor-element-bdbeedb .jlcus_sec_title{--sect-t-size:18px;}.elementor-11972 .elementor-element.elementor-element-868c1a1 .elementor-divider-separator{width:20%;margin:0 auto;margin-center:0;}.elementor-11972 .elementor-element.elementor-element-868c1a1 .elementor-divider{text-align:center;}.elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-794558d .elementor-icon-list-item > a{font-size:16px;}.elementor-11972 .elementor-element.elementor-element-d58fbba{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-11972 .elementor-element.elementor-element-d166564 .jlcus_sec_title{--sect-t-size:18px;}.elementor-11972 .elementor-element.elementor-element-cb27d59 .elementor-divider-separator{width:20%;margin:0 auto;margin-center:0;}.elementor-11972 .elementor-element.elementor-element-cb27d59 .elementor-divider{text-align:center;}.elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-3b663d0 .elementor-icon-list-item > a{font-size:16px;}.elementor-11972 .elementor-element.elementor-element-5dd2ea5{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-11972 .elementor-element.elementor-element-150cf17 .jlcus_sec_title{--sect-t-size:18px;}.elementor-11972 .elementor-element.elementor-element-21eb34d .elementor-divider-separator{width:20%;margin:0 auto;margin-center:0;}.elementor-11972 .elementor-element.elementor-element-21eb34d .elementor-divider{text-align:center;}.elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-item > .elementor-icon-list-text, .elementor-11972 .elementor-element.elementor-element-492fadc .elementor-icon-list-item > a{font-size:16px;}.elementor-11972 .elementor-element.elementor-element-ff5505f{--justify-content:center;}.elementor-11972 .elementor-element.elementor-element-2b9eae6{--padding-top:10px;--padding-bottom:10px;--padding-left:10px;--padding-right:10px;}}@media(min-width:768px){.elementor-11972 .elementor-element.elementor-element-f9d52e1{--content-width:1200px;}.elementor-11972 .elementor-element.elementor-element-0f3b2b6{--width:25%;}.elementor-11972 .elementor-element.elementor-element-35a1f18{--width:20%;}.elementor-11972 .elementor-element.elementor-element-d58fbba{--width:20%;}.elementor-11972 .elementor-element.elementor-element-5dd2ea5{--width:35%;}.elementor-11972 .elementor-element.elementor-element-2b9eae6{--content-width:1200px;}}@media(max-width:1024px) and (min-width:768px){.elementor-11972 .elementor-element.elementor-element-0f3b2b6{--width:633.25px;}.elementor-11972 .elementor-element.elementor-element-35a1f18{--width:633.25px;}.elementor-11972 .elementor-element.elementor-element-d58fbba{--width:633.25px;}.elementor-11972 .elementor-element.elementor-element-5dd2ea5{--width:633.25px;}}*,::after,::before{box-sizing:border-box }html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent }article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block }body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff }[tabindex="-1"]:focus:not(:focus-visible){outline:0!important }hr{box-sizing:content-box;height:0;overflow:visible }h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem }p{margin-top:0;margin-bottom:1rem }abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none }address{margin-bottom:1rem;font-style:normal;line-height:inherit }dl,ol,ul{margin-top:0;margin-bottom:1rem }ol ol,ol ul,ul ol,ul ul{margin-bottom:0 }dt{font-weight:700 }dd{margin-bottom:.5rem;margin-left:0 }blockquote{margin:0 0 1rem }b,strong{font-weight:bolder }small{font-size:80% }sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline }sub{bottom:-.25em }sup{top:-.5em }a{color:#007bff;text-decoration:none;background-color:transparent }a:hover{color:#0056b3;text-decoration:underline }a:not([href]){color:inherit;text-decoration:none }a:not([href]):hover{color:inherit;text-decoration:none }code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em }pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar }figure{margin:0 0 1rem }img{vertical-align:middle;border-style:none }svg{overflow:hidden;vertical-align:middle }table{border-collapse:collapse }caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom }th{text-align:inherit }label{display:inline-block;margin-bottom:.5rem }button{border-radius:0 }button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color }button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit }button,input{overflow:visible }button,select{text-transform:none }[role=button]{cursor:pointer }select{word-wrap:normal }[type=button],[type=reset],[type=submit],button{-webkit-appearance:button }[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer }[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none }input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0 }textarea{overflow:auto;resize:vertical }fieldset{min-width:0;padding:0;margin:0;border:0 }legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal }progress{vertical-align:baseline }[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto }[type=search]{outline-offset:-2px;-webkit-appearance:none }[type=search]::-webkit-search-decoration{-webkit-appearance:none }::-webkit-file-upload-button{font:inherit;-webkit-appearance:button }output{display:inline-block }summary{display:list-item;cursor:pointer }template{display:none }[hidden]{display:none!important }code{font-size:87.5%;color:#e83e8c;word-wrap:break-word }a>code{color:inherit }kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem }kbd kbd{padding:0;font-size:100%;font-weight:700 }pre{display:block;font-size:87.5%;color:#212529 }pre code{font-size:inherit;color:inherit;word-break:normal }.jlc-container{;width: 100%;padding-right: 20px;padding-left: 20px;margin-right: auto;margin-left: auto;}@media (min-width: 576px) {.jlc-container {max-width: 540px;}}@media (min-width: 768px) {.jlc-container {max-width: 720px;}}@media (min-width: 992px) {.jlc-container {max-width: 960px;}}@media (min-width: 1200px) {.jlc-container {max-width: 1140px;}}@media (min-width: 1400px) {.jlc-container {max-width: 1320px;}}.jlc-row {display: flex;flex-wrap: wrap;margin-top: 0px;margin-right: -20px;margin-left: -20px;}.jlc-row > * {box-sizing: border-box;flex-shrink: 0;width: 100%;max-width: 100%;padding-right: 20px;padding-left: 20px;margin-top: 0px;}@media (min-width: 768px) {.jlc-col-md {flex: 1 0 0%;}.jlc-col-md-auto {flex: 0 0 auto;width: auto;}.jlc-col-md-1 {flex: 0 0 auto;width: 8.33333333%;}.jlc-col-md-2 {flex: 0 0 auto;width: 16.66666667%;}.jlc-col-md-3 {flex: 0 0 auto;width: 25%;}.jlc-col-md-4 {flex: 0 0 auto;width: 33.33333333%;}.jlc-col-md-5 {flex: 0 0 auto;width: 41.66666667%;}.jlc-col-md-6 {flex: 0 0 auto;width: 50%;}.jlc-col-md-7 {flex: 0 0 auto;width: 58.33333333%;}.jlc-col-md-8 {flex: 0 0 auto;width: 66.66666667%;}.jlc-col-md-9 {flex: 0 0 auto;width: 75%;}.jlc-col-md-10 {flex: 0 0 auto;width: 83.33333333%;}.jlc-col-md-11 {flex: 0 0 auto;width: 91.66666667%;}.jlc-col-md-12 {flex: 0 0 auto;width: 100%;}}@font-face{font-family:jl_font;src:url('/wp-content/themes/wesper/css/fonts/jl_font.eot?3ra3lr');src:url('/wp-content/themes/wesper/css/fonts/jl_font.eot?3ra3lr#iefix') format('embedded-opentype'),url('/wp-content/themes/wesper/css/fonts/jl_font.ttf?3ra3lr') format('truetype'),url('/wp-content/themes/wesper/css/fonts/jl_font.woff?3ra3lr') format('woff'),url('/wp-content/themes/wesper/css/fonts/jl_font.svg?3ra3lr#jl_font') format('svg');font-weight:400;font-style:normal;font-display:block}[class*=" jli-"],[class^=jli-]{font-family:jl_font!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.jli-image:before{content:"\e900"}.jli-bell:before{content:"\e901"}.jli-shuffle:before{content:"\e902"}.jli-wechat:before{content:"\e903"}.jli-date:before{content:"\e904"}.jli-comment:before{content:"\e905"}.jli-close:before{content:"\e906"}.jli-check:before{content:"\e907"}.jli-dribble:before{content:"\e908"}.jli-pause:before{content:"\e909"}.jli-music:before{content:"\e90a"}.jli-user:before{content:"\e90b"}.jli-view:before{content:"\e90c"}.jli-mail:before{content:"\e90d"}.jli-instagram:before{content:"\e90e"}.jli-linkedin:before{content:"\e90f"}.jli-link:before{content:"\e910"}.jli-vimeo:before{content:"\e911"}.jli-whatsapp:before{content:"\e912"}.jli-globe:before{content:"\e913"}.jli-quote-right:before{content:"\e914"}.jli-quote:before{content:"\e915"}.jli-quote-alt-right:before{content:"\e916"}.jli-apple:before{content:"\e917"}.jli-book:before{content:"\e918"}.jli-down-chevron:before{content:"\e919"}.jli-fire-o:before{content:"\e91a"}.jli-fire:before{content:"\e91b"}.jli-left-chevron:before{content:"\e91c"}.jli-love-full:before{content:"\e91d"}.jli-play:before{content:"\e91e"}.jli-plus:before{content:"\e91f"}.jli-right-chevron:before{content:"\e920"}.jli-setting:before{content:"\e921"}.jli-spotify:before{content:"\e922"}.jli-star-full:before{content:"\e923"}.jli-star:before{content:"\e924"}.jli-tiktok:before{content:"\e925"}.jli-up-chevron:before{content:"\e926"}.jli-bag:before{content:"\e927"}.jli-cart:before{content:"\e928"}.jli-compress:before{content:"\e929"}.jli-crossroads:before{content:"\e92a"}.jli-down-chevron-1:before{content:"\e92b"}.jli-left-arrow:before{content:"\e92c"}.jli-left-chevron-1:before{content:"\e92d"}.jli-love:before{content:"\e92e"}.jli-moon:before{content:"\e92f"}.jli-right-arrow:before{content:"\e930"}.jli-right-chevron-1:before{content:"\e931"}.jli-search:before{content:"\e932"}.jli-sun:before{content:"\e933"}.jli-time:before{content:"\e934"}.jli-up-chevron-1:before{content:"\e935"}.jli-wordpress:before{content:"\e936"}.jli-xing:before{content:"\e937"}.jli-yahoo:before{content:"\e938"}.jli-yandex:before{content:"\e939"}.jli-youtube:before{content:"\e93a"}.jli-zerply:before{content:"\e93b"}.jli-ebay:before{content:"\e93c"}.jli-evernote:before{content:"\e93d"}.jli-facebook:before{content:"\e93e"}.jli-flickr:before{content:"\e93f"}.jli-forrst:before{content:"\e940"}.jli-foursquare:before{content:"\e941"}.jli-grooveshark:before{content:"\e942"}.jli-kickstarter:before{content:"\e943"}.jli-lastfm:before{content:"\e944"}.jli-livejournal:before{content:"\e945"}.jli-myspace:before{content:"\e946"}.jli-opera:before{content:"\e947"}.jli-paypal:before{content:"\e948"}.jli-picasa:before{content:"\e949"}.jli-pinterest:before{content:"\e94a"}.jli-rss:before{content:"\e94b"}.jli-sharethis:before{content:"\e94c"}.jli-skype:before{content:"\e94d"}.jli-soundcloud:before{content:"\e94e"}.jli-stumbleupon:before{content:"\e94f"}.jli-technorati:before{content:"\e950"}.jli-telegram:before{content:"\e951"}.jli-tumblr:before{content:"\e952"}.jli-twitter:before{content:"\e953"}.jli-viber:before{content:"\e954"}.jli-vk:before{content:"\e955"}.jli-wikipedia:before{content:"\e956"}.jli-bebo:before{content:"\e957"}.jli-behance:before{content:"\e958"}.jli-bing:before{content:"\e959"}.jli-blogger:before{content:"\e95a"}.jli-delicious:before{content:"\e95b"}.jli-deviantart:before{content:"\e95c"}.jli-digg:before{content:"\e95d"}.jli-dropbox:before{content:"\e95e"}.jli-amazon:before{content:"\e95f"}/*
Theme Name: Wesper
Theme URI: https://jellywp.com/wp/wesper_preview/
Description: WordPress Theme for Blogs & Magazines
Author: Jellywp
Author URI: http://themeforest.net/user/jellywp
Version: 1.1.7
License: GNU General Public License
License URI: license.txt
Tags: two-columns, left-sidebar, right-sidebar, custom-colors, editor-style, theme-options, featured-images, custom-menu, post-formats, sticky-post, translation-ready
Text Domain: wesper
*/

/*-------------------------------------------------------------------------------------
    + CSS Reset
    + Header slider and carousel post
    + Menu and megamenu
    + Header (Mobile Menu, Top-search, Main Menu Menu)
    + Blog large layout with sidebar (Feature-two-column, Three columns, Tab, Image feature, Pagination, widget)
    + woocommerce
    + Audio player
    + Share Post
    + Animation CSS
    + Go to top
    + Footer
    + Responsive
-------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------
CSS Reset
-------------------------------------------------------------------------------------*/
* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    overflow-x: hidden;
    width: 100%;
    background: var(--jl-bg-color);
}
body,
p {
    font-family: var(--jl-body-font);
    font-weight: var(--jl-body-font-weight);
    font-size: var(--jl-body-font-size);
    line-height: var(--jl-body-line-height);
    color: var(--jl-txt-color);
    -moz-osx-font-smoothing: grayscale;
}
p {
    margin: 0px 0px 25px;
}
p iframe {
    margin-bottom: 0px;
}
iframe {
    margin-bottom: 30px;
}
a {
    color: var(--jl-txt-color);
    outline: none;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a:hover {
    color: var(--jl-main-color);
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    text-decoration: none !important;
    color: var(--jl-main-color);
}
h1 {
    font-size: 40px;
    margin-bottom: 10px;
}
h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
h3 {
    font-size: 28px;
    margin-bottom: 10px;
}
h4 {
    font-size: 24px;
    margin-bottom: 10px;
}
h5 {
    font-size: 20px;
    margin-bottom: 10px;
}
h6 {
    font-size: 16px;
    margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0;
}
.mejs-container {
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.embed_wrapper {
    margin: 30px 0px !important;
}
blockquote.quote_content {
    margin: 20px 0px !important;
    float: left;
    width: 100%;
}
hr,
address {
    clear: both;
    margin-bottom: 30px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
    color: var(--jl-txt-color);
    margin-top: 0px;
    margin-bottom: 23px;
    clear: both;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.jlc-container {
    max-width: 1200px;
    width: 100%;
}
::selection {
    background-color: var(--jl-main-color);
    color: #FFF;
}
blockquote.quote_content {
    border-left: 3px solid;
    border-color: #ddd;
    padding: 0 18px;
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    color: #888;
}
blockquote {
    position: relative;
    margin-bottom: 30px;
    padding: 30px 30px 30px 70px !important;
    text-align: left;
    background: var(--jl-author-bg);
    border: 0px !important;
}
blockquote:before {
    content: "\e914";
    font-family: 'jl_font';
    font-size: 16px;
    position: absolute;
    top: 35px;
    left: 30px;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
blockquote.has-text-align-right {
    padding: 30px 70px 30px 30px !important;
}
.jl_radius blockquote {
    border-radius: 0px;
}
blockquote p {
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
    font-size: 22px !important;
    margin-bottom: 0px;
}
blockquote cite {
    margin-top: 15px;
    font-style: normal;
    font-size: 12px !important;
    line-height: 1.2;
    display: block;
    text-transform: capitalize !important;
    font-family: var(--jl-body-font);
    font-weight: var(--jl-body-font-weight);
}
table {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #d9d9d9;
}
table table{
    margin: 0px;
}
table > tbody > tr > td{
	padding: 5px;
}
table td,
table th {
    padding: 9px 20px;
    border-bottom: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}
pre {
    display: block;
    padding: 20px !important;
    margin: 0 0 25px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border-width: 0px !important;
    border-radius: 4px;
}
.dropcap_style {
    font-size: 60px;
    line-height: 73px;
    float: left;
    padding: 5px 10px;
    text-align: center;
    display: block;
    background-color: #0D1217;
    color: #fff;
    margin: 8px 15px 0 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
p img {
    margin-bottom: 0px !important;
}
img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}
/** input */

textarea {
    display: block;
    padding: 13px;
    max-width: 100%;
    width: 100%;
    outline: none;
    font-size: 14px;
    border: 1px solid var(--jl-post-line-color);
    color: var(--jl-txt-color);
    background: transparent;
    border-radius: 0px !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    font-weight: 400;
    line-height: 20px;
}
button,
input,
optgroup,
select,
textarea {
    border-radius: 0px;
}
input[type='text'],
input[type='tel'],
input[type='password'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='number'] {
    padding: 13px;
    max-width: 100%;
    border: 1px solid var(--jl-post-line-color);
    color: var(--jl-txt-color);
    background: transparent;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    white-space: nowrap;
    font-weight: 400;
    font-size: 14px;
    border-radius: var(--jl-button-radius);
}
input[type='submit'],
button {
    font-family: var(--jl-menu-font);
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    display: block;
    background-color: var(--jl-main-color);
    color: #fff !important;
    display: flex;
    height: 48px;
    padding: 0px 30px;
    margin-top: 0px;
    -o-transition: .25s;
    -ms-transition: .25s;
    -moz-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    border: 0px;
    outline: none;
    border-radius: var(--jl-button-radius);
}
input[type='submit']:hover,
button:hover{
    background-color: var(--jl-btn-bg) !important;
}
body:not(.jl-has-sidebar) .jl_smmain_side {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
body:not(.jl-has-sidebar) .jl_smmain_con{
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;    
    margin: 0 auto;
}
body:not(.jl-has-sidebar) .jl_smmain_side{
    display: none;
}
body:not(.jl-has-sidebar) .jl_main_achv{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.admin-bar .menu_sticky.stick {
    top: 32px !important;
}
.jl_smmain_side select {
    width: 100%;
}
.wp-caption.alignnone {
    max-width: 100%;
}
.wp-caption {
    max-width: 100%;
    margin-bottom: 30px !important;
    padding: 0px;
    background: none;
    color: #000;
    font-style: italic;
}
.wp-caption p {
    margin-bottom: 0px;
}
.wp-caption.alignleft {
    margin: 5px 30px 30px 0%;
}
.wp-caption.alignright {
    margin: 5px 0% 30px 30px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-style: normal;
    letter-spacing: -0.03em;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 17px;
    margin: 8px 0 0;
}
.wp-caption-text {
    margin-top: 5px;
    font-style: italic;
    font-size: 0.923em;
    text-align: center;
    color: #b4b4b4;
}
.gallery-caption {
    visibility: visible;
    opacity: 1;
}
.bypostauthor {
    visibility: visible;
    opacity: 1;
}
a img.alignright {
    float: right;
    margin: 10px 0 30px 30px;
}
a img.alignnone {
    margin: 0px;
}
a img.alignleft {
    float: left;
    margin: 10px 30px 30px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.alignleft {
    display: block;
    float: left;
    margin: 5px 30px 30px 0 !important;
}
.alignright {
    display: block;
    float: right !important;
    margin: 5px 0 20px 20px !important;
}
.aligncenter {
    display: block;
    margin: auto;
}
.jlc-text-inner{
    display: inline-block;
}
.jlc-text-inner .jl-custom-text{
    margin-bottom: 0px;
}
.jl_img > a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.gallery-caption,
.entry-caption {
    font-style: italic;
    font-size: 12px;
    font-size: 0.857142857rem;
    line-height: 2;
    color: #757575;
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
.jl_search_none.jl_page_error{
    text-align: left;
}
.jl_search_none.jl_page_error h1{
    margin: 20px 0px 0px 0px;
    font-size: 25px;
}
.jl_search_none.jl_page_error .jl_error_desc{
    margin: 15px 0px 0px 0px;
}
.jl_search_none.jl_page_error .search_btn{
    padding: 0px 20px;
}
.jl_search_none.jl_page_error .button{
    width: 60px;
}
.jl_search_none.jl_page_error .searchform_theme{
    margin: 0px;
    max-width: 530px;
}

.jl_page_error {
    text-align: center;
}
.jl_page_error .link_home404 {
    font-family: var(--jl-menu-font);
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 50px;
    color: #FFF;
    background: var(--jl-main-color);
    cursor: pointer;
    border: 0px;
    margin-top: 30px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    border-radius: var(--jl-button-radius);
}
.jl_page_error .link_home404:hover {
    text-decoration: none !important;
    color: #fff !important;
    background: var(--jl-btn-bg);
}
.jl_page_error h1 {
    font-size: 40px;
    max-width: 750px;
    margin: 0px auto;
}
.jl_page_error .jl_error_desc{
    max-width: 600px;
    margin: 25px auto 0px auto;
}
.searchform_theme{
    display: flex;
    align-items: center;
    margin: 20px auto 0 auto;
    justify-content: center;
    max-width: 470px;
    border: 1px solid var(--jl-post-line-color);
    background: transparent;
    border-radius: var(--jl-button-radius);
}
.searchform_theme .search_btn{
    flex: 1;
    height: 48px;
    background: transparent;
    font-size: 15px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    border: 0px !important;
}
.searchform_theme .button{
    border-radius: 0px;
    height: 48px;
    width: 60px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: var(--jl-txt-color) !important;
    padding: 0px !important;    
}
.searchform_theme .button i{
    font-weight: bold;
}
.widget_search .searchform_theme .search_btn, .widget_search .searchform_theme .button{
    height: 40px;
}
.widget_search .searchform_theme .search_btn{
    padding: 0px 14px;
}
.widget_search .searchform_theme .button{
    width: 46px;
}
/*-------------------------------------------------------------------------------------
Design Sections
-------------------------------------------------------------------------------------*/
.options_layout_wrapper, .options_layout_container{
    width: 100%;
    display: block;
}
.lazyload,
.lazyloading {
    background-color: #ced4da;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    -webkit-transition: .25s -webkit-filter linear;
    transition: .25s -webkit-filter linear;
    transition: .25s filter linear;
    transition: .25s filter linear, .25s -webkit-filter linear;
}
.slick-cloned .lazyload, .slick-cloned .lazyloading{
    -webkit-filter: blur(0px);
    filter: blur(0px);
}
.lazyload.loaded {
    opacity: 1;
    -webkit-transition: opacity .25s cubic-bezier(0.25, 0.8, 0.25, 1);
    -moz-transition: opacity .25s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: opacity .25s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: opacity .25s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
}
.jl_tline .jl_txt_2row, .jl_tcolor .jl_txt_2row a{
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*-------------------------------------------------------------------------------------
gdpr
-------------------------------------------------------------------------------------*/
.jl-gdpr {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 998;
    display: none;
    visibility: hidden;
    width: auto;
    opacity: 0;
    -webkit-transition: all .5s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: all .5s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: all .5s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: all .5s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: all .5s cubic-bezier(0.32, 0.74, 0.57, 1);
    pointer-events: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.jl-gdpr .jl-gdpr-inner{
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px 8px 6px 14px;
    height: auto;
    background-color: #fff;
    border-radius: 26px;
    pointer-events: visible;
    box-shadow: 0 5px 15px -3px rgb(0 0 0 / 20%);
}
.jl-gdpr .jl-gdpr-inner svg{
    width: 19px;
    height: 19px;
    margin-right: 10px;
    fill: #000;

}
.jl-gdpr p a,
.jl-gdpr p a:hover {
    text-decoration: underline !important;
    color: var(--jl-main-color);
}
.jl-gdpr p {
    font-size: var(--jl-cookie-des-size);
    line-height: 1.34;
    margin-bottom: 0px;
    margin-right: 10px;
    color: #000;
}
.jl-gdpr .jl-gdpr-accept {
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-cookie-btn-transform);
    letter-spacing: var(--jl-cookie-btn-space);
    width: 100%;
    height: 26px;
    line-height: 26px;
    text-align: center;
    display: block;
    color: #fff;
    background: #000;
    margin-top: 15px;
    font-size: var(--jl-cookie-btn-size);
    text-decoration: none !important;
    margin: 0px;
    padding: 0px 10px;
    border-radius: 100px;
}
.jl-gdpr .jl-gdpr-accept:hover {
    color: #fff !important;
    background: var(--jl-main-color);
    border-color: transparent;
}
.jl-gdpr.jl-display {
    visibility: visible;
    opacity: 1;
    pointer-events: auto !important;
}
/*-------------------------------------------------------------------------------------
Navigation
-------------------------------------------------------------------------------------*/
.navigation_wrapper{
    -webkit-font-smoothing: subpixel-antialiased;
    position: static;
    z-index: 999;
    display: flex;
    height: 100%;
}
.navigation_wrapper .jl_main_menu{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.navigation_wrapper ul {
    list-style: none;
    position: static;
    padding: 0px !important;
    margin: 0px !important;
}
.navigation_wrapper .jl_main_menu a:hover {
    text-decoration: none !important;
}
.navigation_wrapper ul .menu-item {
    float: none;
    vertical-align: top;
}
.navigation_wrapper .jl_main_menu .menu-item > a {
    float: left;
    padding: 0;
    color: inherit;
    font-family: var(--jl-menu-font);
}
.navigation_wrapper .jl_main_menu > li.menu-item-has-children{
    position: relative;
}
.navigation_wrapper .jl_main_menu > .menu-item{
    margin-right: var(--jl-spacing-menu);
    height: 100%;
}
.navigation_wrapper .jl_main_menu > .menu-item:last-child{
    margin-right: 0px !important;
}
.navigation_wrapper .jl_main_menu > .menu-item > a {
    padding: 0;
    height: 100%;
    font-size: var(--jl-menu-font-size);
    font-weight: var(--jl-menu-font-weight);
    text-transform: var(--jl-menu-transform);
    letter-spacing: var(--jl-menu-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}
.navigation_wrapper .jl_main_menu .menu-item > a .jl_mblt{
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg,currentColor 0,currentColor 94%);
    transition: background-size .35s cubic-bezier(.215,.61,.355,1);
    background-position: 100% 94%;
    background-size: 0 1px;
}
.navigation_wrapper .jl_main_menu .menu-item:hover > a .jl_mblt,
.navigation_wrapper .jl_main_menu .current-menu-ancestor > a .jl_mblt,
.navigation_wrapper .jl_main_menu .current-menu-item > a .jl_mblt,
.navigation_wrapper .jl_main_menu .is-current-sub > a .jl_mblt{
    background-position:0 94%;
    background-size: 100% 1px;
}
.navigation_wrapper .menu-item-has-children > a:after,
.navigation_wrapper .menupost > a:after {
    display: inline-block;
    content: "\e92b";
    margin-left: 5px;
    font-family: "jl_font";
    font-style: normal;
    font-weight: bold;
    font-size: 35%;
    line-height: 0.9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.navigation_wrapper .jl_main_menu > .menu-item > .sub-menu{
    top: 100%;
    margin-left: -22px !important;
    margin-top: -1px;
}
.navigation_wrapper .jl_main_menu .menu-item .sub-menu{
    background: var(--jl-sub-bg-color);
}
.navigation_wrapper .jl_main_menu > .menu-item:not(.menupost) > .sub-menu.jlc-right-menu{
    right: 0;
    margin-left: 0px !important;
    margin-right: -33px !important;
}
.navigation_wrapper .jl_main_menu > .menu-item:not(.menupost) > .sub-menu.jlc-right-menu .menu-item a{
    text-align: right;
}
.navigation_wrapper .jl_main_menu > .menu-item:not(.menupost) > .sub-menu.jlc-right-menu .sub-menu{
    right: 100%;
    left: auto;
}
.navigation_wrapper .jl_main_menu > .menu-item:not(.menupost) > .sub-menu.jlc-right-menu .menu-item a:after{
    right: auto;
    left: 33px;
    transform: scaleX(-1);
}
.navigation_wrapper .jl_main_menu .sub-menu {
    position: absolute;
    overflow: visible;
    visibility: hidden;
    display: block;
    opacity: 0;
    padding: 19px 0 !important;
    z-index: 100;
    background: #fff;
    box-shadow: 0px 32px 64px -16px rgb(0 0 0 / 16%);
    line-height: 1.8666;
    -webkit-transition: all .1s;
    transition: all .1s;
    pointer-events: none;    
}
.navigation_wrapper .jl_main_menu .menu-item:hover .sub-menu{
    -webkit-transition: all .3s;
    transition: all .3s;
}
.navigation_wrapper .jl_main_menu .menu-item .menu-item {
    display: block;
}
.navigation_wrapper .jl_main_menu .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    margin-left: 0;
}
.navigation_wrapper .jl_main_menu .jl_menu_tl .sub-menu {
    left: auto !important;
    right: 100% !important;
}
.navigation_wrapper .jl_main_menu .menu-item .menu-item {
    display: block;
}
.navigation_wrapper .jl_main_menu .sub-menu .menu-item:last-child {
    border-bottom: 0px;
}
.navigation_wrapper .jl_main_menu > .menu-item .menu-item a {
    float: none;
    text-align: left;
    display: block;
    text-decoration: none;
    padding: 6px 25px;
    border-top: 0px solid #e9ecef;
    pointer-events: none;
    line-height: 1.2;
    font-size: var(--jl-submenu-font-size);
    font-weight: var(--jl-submenu-font-weight);
    text-transform: var(--jl-submenu-transform);
    letter-spacing: var(--jl-submenu-space);
}
.navigation_wrapper .jl_main_menu > .menu-item:hover .menu-item a {
    pointer-events: auto;
}
.navigation_wrapper .jl_main_menu .sub-menu .menu-item {
    float: none;
    min-width: 230px;
    max-width: 350px;
    border-top: 0;
    padding: 0;
    position: relative;
}
.navigation_wrapper .jl_main_menu > .menu-item .menu-item:first-child > a {
    border-top: 0;
    box-shadow: none;
}
.navigation_wrapper .sub-menu .menu-item > .sub-menu {
    margin-top: -19px !important;
}
.navigation_wrapper .jl_main_menu ul .menu-item-has-children > a:after {
    line-height: 1;
    content: "\e931";
    font-size: 60%;
    position: absolute;
    top: 50%;
    right: 25px;
    color: currentColor;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
}
.navigation_wrapper .jl_main_menu ul .sub-menu {
    left: 100%;
    top: -18px;
    margin-left: 0;
}
.navigation_wrapper .menu-item:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.navigation_wrapper .jl_main_menu > .menu-item > a,
.jl_main_menu .menu-item:hover > a{
    color: var(--jl-menu-color);
}
.navigation_wrapper .jl_main_menu .sub-menu .menu-item a{
    color: var(--jl-sub-menu-color);
}
.navigation_wrapper .jl_main_menu .menu-item .menu-item:hover > a,
.navigation_wrapper .jl_main_menu .menu-item .menu-item.current-menu-item > a {
    background: transparent !important;
}
.navigation_wrapper .jl_main_menu > .menu-item.menupost{
    position: static;
}
.elementor-section .navigation_wrapper .jl_main_menu > .menu-item.menupost {
    position: relative;
}
.navigation_wrapper .jl_main_menu > .menu-item > .jl-cus-mega-menu.sub-menu{
    width: 100vw;
    right: auto;
    margin-left: auto !important;
    padding: 0px !important;
}
.navigation_wrapper .jl_main_menu > .mega-category-menu.menu-item.menu-item-has-children > .jl-cus-mega-menu.sub-menu .jl_mega_c_wrap{
    padding-left: 30px;
    border-left: 1px solid var(--jl-sub-line-color);
}
.navigation_wrapper .jl_main_menu > .mega-category-menu.menu-item > .jl-cus-mega-menu.sub-menu .jl_mega_c_wrap{
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 365px;
}
.navigation_wrapper .jl_main_menu > .mega-category-menu.menu-item > .jl-cus-mega-menu.sub-menu .jl_mega_c_wrap .pagination-nextprev{
    text-align: left;
    margin-top: 30px;
}
.navigation_wrapper .jl_main_menu > .mega-category-menu.menu-item .jl-cus-mega-menu .jl_mega_inner > .jl_mega_contents + ul.sub-menu li{
    border-bottom: 1px solid var(--jl-sub-line-color);
    min-width: 200px;
}
.navigation_wrapper .jl_main_menu > .mega-category-menu.menu-item .jl-cus-mega-menu .jl_mega_inner > .jl_mega_contents + ul.sub-menu li:last-child{
    border: 0px;
}
.navigation_wrapper .jl_main_menu > .mega-category-menu.menu-item .jl-cus-mega-menu .jl_mega_inner > .jl_mega_contents + ul.sub-menu li a{
    padding: 13px 0px;
}
.navigation_wrapper .jl_main_menu > .mega-category-menu.menu-item > .jl-cus-mega-menu.sub-menu .jl_mega_inner{
    max-width: var(--jl-main-width);
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    gap: 30px;
}
.navigation_wrapper .jl_main_menu > .mega-category-menu.menu-item .jl_mega_contents{
    order: 2;
    width: 100%;
}
.navigation_wrapper .jl_main_menu > .mega-category-menu.menu-item .jl-cus-mega-menu .jl_mega_inner > .jl_mega_contents + ul.sub-menu{
    margin: 0px !important;
    background: transparent !important;
    box-shadow: none;
    padding-top: 30px !important;
    padding-bottom: 0px !important;
    position: static;
    order: 1;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
}
.jl_mega_post_2 .jl_contain,
.jl_mega_post_3 .jl_contain,
.jl_mega_post_4 .jl_contain,
.jl_mega_post_5 .jl_contain,
.jl_mega_post_6 .jl_contain{
    width: 100%;
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
.jl_mega_post_2 .jl_contain{
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.jl_mega_post_3 .jl_contain{
    grid-template-columns: repeat(3,minmax(0,1fr));
}
.jl_mega_post_4 .jl_contain{
    grid-template-columns: repeat(4,minmax(0,1fr));
}
.jl_mega_post_5 .jl_contain{
    grid-template-columns: repeat(5,minmax(0,1fr));
}
.jl_mega_post_6 .jl_contain{
    grid-template-columns: repeat(6,minmax(0,1fr));
}
.jl_main_menu .menupost ul.sub-menu{
    -webkit-transition: all 0s !important;
    transition: all 0s !important;        
}
.jl_main_menu .menupost:hover ul.sub-menu{
    -webkit-transition: all .55s !important;
    transition: all .55s !important;
}
.jl_main_menu .menupost .jl_mega_c_wrap .jl_el_nav_w{
    justify-content: left;
    margin-top: 0px;
}
.sub-menu.menu_post_feature{
    overflow: hidden;
}
.jl_main_menu .menupost:hover .menu_post_feature .jl_mega_c_wrap .jl-roww .jl_mega_cols,
.jl_main_menu .menupost:hover .menu_post_feature .jl_megal_bu .elementor-container .elementor-widget-wrap > .elementor-element{
    opacity: 0;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-name: jlmdown;
    animation-name: jlmdown;
}
@-webkit-keyframes jlmdown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-15px);
        transform: translatey(-15px);
    }
    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes jlmdown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-15px);
        transform: translatey(-15px);
    }
    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        transform: translatey(0);
    }
}
.jl_imgw{
    position: relative;
    border-radius: 0px;
    -webkit-clip-path: inset(0 0 0 0 round 0px);
    clip-path: inset(0 0 0 0 round 0px);
    overflow: hidden;
    padding-bottom: 66.66667%;
}
.jl_radus_e{
    border-radius: var(--jl-border-rounded);
    overflow: hidden;
}
.jl_imgw .jl_imgl{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;    
}
.jl_imgl, .jl_cat_img_link, .jl_box_link, .jl_cap_ov{
    font-size: 0px !important;
}
.jl_imgw .jl_imgin{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.jl_imgw .jl_imgin img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: transform 1s ease,opacity .5s ease;
    transform: scale(1.01);
}
.jl_imgw:hover .jl_imgin img, .jl_ov_el:hover .jl_imgin img, .jl_box_info:hover .jl_box_bg img{
    transform: scale(1.051);
}
/*-------------------------------------------------------------------------------------
Mega post grid
-------------------------------------------------------------------------------------*/
.jl_mega_gl .jl_mega_text .jl_fr_ptxt{
    font-size: 16px;
}
.navigation_wrapper .mega-category-menu .jl_f_cat .jl_cat_txt{
    color: var(--jl-sub-menu-color)
}
.navigation_wrapper .mega-category-menu.menu-item .sub-menu .jl_mega_gl .jl_fe_title a,
.navigation_wrapper .mega-category-menu.menu-item .sub-menu .jl_mega_sml .jl_fe_title a,
.navigation_wrapper .mega-category-menu.menu-item .jl_mega_gl .jl_post_meta span,
.navigation_wrapper .mega-category-menu.menu-item .jl_mega_gl .jl_post_meta span a,
.navigation_wrapper .mega-category-menu.menu-item .jl_mega_sml .jl_post_meta span,
.navigation_wrapper .mega-category-menu.menu-item .jl_mega_sml .jl_post_meta span a{
    color: var(--jl-sub-menu-color) !important;
}
.navigation_wrapper .mega-category-menu.menu-item .pagination-nextprev .jl-foot-nav{
    color: var(--jl-sub-menu-color);
    border-color: var(--jl-sub-line-color) !important;
}
.navigation_wrapper .mega-category-menu.menu-item .pagination-nextprev .jl-foot-nav:hover{
    border-color: transparent !important;
}
.jl_mega_gl .jl_imgw{
    margin-bottom: 20px;
}
.jl_mega_gl .jl_imgw .jl-donut-front, .jl_mega_go .jl_imgw .jl-donut-front{
    transform: scale(.85);
}
/*-------------------------------------------------------------------------------------
Mega post grid overlay
-------------------------------------------------------------------------------------*/
.jl_mega_go{
    position: relative;
    padding-bottom: 86%;
}
.jl_mega_go:before, .jl_mega_go .jl_imgl{
    background: rgba(0,0,0,.25);
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.jl_mega_go .jl_imgw{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.jl_mega_go .jl_mega_text{
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 20px;
    text-align: left;
    z-index: 3;
}
.jl_mega_go .jl_mega_text .jl_fr_ptxt{
    font-size: 16px;
}
.jl_mega_go .jl_mega_text .jl_lb1 .jl_cat_txt{
    color: #fff !important;
}
.jl_mega_go .jl_mega_text .jl_fr_ptxt a, .jl_mega_go .jl_mega_text .jl_fr_ptxt a:hover, .jl_mega_go .jl_mega_text .jl_fr_ptxt, .jl_mega_go .jl_mega_text .jl_fr_ptxt:hover{
    color: #fff !important;
}
.jl_mega_go .jl_mega_text .jl_post_meta span,
.jl_mega_go .jl_mega_text .jl_post_meta a,
.jl_mega_go .jl_mega_text .jl_post_meta a:hover {
    color: #FFF !important;
}
/*-------------------------------------------------------------------------------------
Mega post small list
-------------------------------------------------------------------------------------*/
.mega_small_list.jl_mega_c_wrap{
    min-height: auto !important;
}
.jl_mega_sml{
    display: flex;
    align-items: center;
}
.jl_mega_sml .jl_imgw{
    align-self: flex-start;
    display: block;
    -webkit-flex: 0 0 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    padding: 0px;
}
.jl_mega_sml .jl_mega_text .jl_fr_ptxt{
    font-size: 15px;
}

/*menu label*/
.jl_main_menu li:hover > a .jl_menu_lb {
    left: auto;
}
.jl_menu_lb {
    left: auto;
    position: relative !important;
    bottom: auto !important;
    color: #FFF;
    line-height: 18px;
    height: 18px !important;
    font-size: 75%;
    padding: 0px 6px;
    letter-spacing: 0px !important;
    width: unset !important;
    display: inline-flex;
    margin: auto auto auto 6px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    vertical-align: baseline;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: transparent !important;
    z-index: 1;
}
.jl_menu_lb .jl_lb_ar{
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: -1;
}
/*-------------------------------------------------------------------------------------
Mobile Menu
-------------------------------------------------------------------------------------*/
  .menu_mobile_icons_wrap{
      display: flex;
  }
  .menu_mobile_icons i, .menu_mobile_icons svg{
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
  }
  .jlm_w{
      display: flex;
      min-width: 20px;
      min-height: 15px;
      align-items: center;
      transition: none;
      vertical-align: middle;
      position: relative;
      flex-direction: column;
      justify-content: space-between;
  }
  .jlm_w span {
      width: 100%;
      height: 1.5px;
      background: var(--jl-menu-color);
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
}
/*-------------------------------------------------------------------------------------
search and menu
-------------------------------------------------------------------------------------*/
.active_search_box{
    overflow: hidden;
}
.search_header_menu{
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    position: relative;
    z-index: 999;
}
.search_header_menu > *{
    margin-left: 14px;
}
.search_header_menu > *:first-child{
    margin-left: 0px;
}
.search_header_wrapper.jlce-seach.search_form_menu_personal_click{
    margin-left: 10px;
}
.search_header_wrapper.jlce-seach.search_form_menu_personal_click i{
    font-size: 17px;
}
.search_header_wrapper.search_form_menu_personal_click *{
      cursor: pointer;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
  }
.search_header_wrapper.search_form_menu_personal_click .jli-search {
    font-size: 17px;
    font-weight: 500;
    color: var(--jl-menu-color) !important;
}
.search_header_wrapper.search_form_menu_personal_click {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}
.search_form_menu_personal .searchform_theme {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0px 30px;
    margin: 0px;
    max-width: 660px;
    width: 100%;
    height: auto;
    overflow: hidden;
    float: none;
    border: 0px;
    background: transparent;
}
.searchform_theme .search_btn {
    font-family: var(--jl-menu-font);
    border-radius: var(--jl-border-rounded);
}
.search_form_menu_personal .searchform_theme .search_btn {
    background: none;
    border: 0;
    border-bottom: 2px solid var(--sh-top-color) !important;
    color: var(--sh-top-color);
    float: left;
    font-size: 30px;
    font-weight: 400;
    line-height: 100%;
    padding: 20px 0;
    width: 100%;
    height: 70px;
}
.options_dark_skin .search_form_menu_personal{
    --sh-top-color: #FFF;
}
.search_form_menu_personal{
    --sh-top-color: #000;
}
.search_form_menu_personal .searchform_theme .search_btn::-webkit-input-placeholder{
    color: var(--sh-top-color) !important;
}
.search_form_menu_personal .searchform_theme .search_btn::-moz-placeholder{
    color: var(--sh-top-color) !important;
}
.search_form_menu_personal .searchform_theme .search_btn:-ms-input-placeholder{
    color: var(--sh-top-color) !important;
}
.search_form_menu_personal .searchform_theme .search_btn:-moz-placeholder{
    color: var(--sh-top-color) !important;
}
.search_form_menu_personal .searchform_theme .button {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0px;
    height: 70px;
    right: 13px;
    background: transparent;
    color: var(--jl-txt-color) !important;
    font-size: 22px;
    padding: 0px;
    outline: none;
}
.search_header_menu .search_header_wrapper i:hover {
    color: #000;
}
.menu_mobile_icons {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}
.menu_mobile_icons.jl_tog_mob{
    display: none;
}
.menu_mobile_icons.jl_tog_mob.jl_desk_show{
    display: flex;
}
.search_header_menu .menu_mobile_icons i {
    margin: 0px;
    cursor: pointer;
    font-size: 17px;
}
.search_header_menu .menu_mobile_icons i:hover {
    color: #000;
}
.options_dark_skin .search_form_menu_personal {
    background: rgba(0, 0, 0, .97);
}
.search_form_menu_personal {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: rgba(255, 255, 255, .97);
    opacity: 0;
    position: fixed;
    top: 0 !important;
    left: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 100%;
    height: 100%;
    z-index: 999999;
    visibility: hidden;
}
.search_form_menu_personal_active {
    opacity: 1 !important;
    visibility: visible !important;
}
.menu_mobile_large_close {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
    z-index: 9999;
}
.jl_close_wapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    transform: rotate(0);
    transition: transform .3s ease;
}
.menu_mobile_large_close:hover .jl_close_wapper, .menu_mobile_icons:hover .jl_close_wapper{
    transform: rotate(90deg);
}
.options_dark_skin .jl_close_wapper .jl_close_1,
.options_dark_skin .jl_close_wapper .jl_close_2{
    background-color: #fff;
}
.jl_close_wapper .jl_close_1,
.jl_close_wapper .jl_close_2 {
    position: absolute;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #000;
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    transform: rotate(25deg);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.jl_close_wapper .jl_close_1 {
    left: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.jl_close_wapper .jl_close_2 {
    left: 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.menu_mobile_large {
    cursor: pointer;
    height: 90px;
    line-height: 90px !important;
    display: inherit;
    float: right;
    font-size: 20px !important;
    margin-left: 18px;
    position: relative;
    width: 30px;
}
.search_close_btn_pop {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    display: block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin: 0px !important;
}
.search_close_btn_pop i {
    font-size: 20px !important;
    color: #fff;
    float: left !important;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.search_close_btn_pop:hover i {
    color: #fff !important;
}
.searchform_theme.pop_search_form {
    margin: -60px 0 0 -300px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: auto;
    overflow: hidden;
    float: none;
}
.searchform_theme.pop_search_form .search_input_pop {
    background: none;
    border: 0;
    border-bottom: 2px solid #444 !important;
    color: #444;
    float: left;
    font-size: 60px;
    font-weight: 700;
    line-height: 100%;
    padding: 20px 0;
    width: 100%;
    height: 70px;
}
.search_form_menu_personal .search_btn,
.search_form_menu_personal #sbtn {
    padding: 0px !important;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
h2.notfound_p_title {
    color: #222;
    text-transform: capitalize;
}
p.notfound_p_text {
    margin-bottom: 40px;
}
.searchform_theme .search_btn{
    color: var(--jl-txt-color);
}
.searchform_theme .search_btn::-webkit-input-placeholder {
    color: currentColor;
}
.search_content_page {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}
/*-------------------------------------------------------------------------------------
Side Navigation
-------------------------------------------------------------------------------------*/
.menu_mobile_share_wrapper .menu_mobile_share {
    float: right;
    margin-right: 18px;
    padding-bottom: 11px;
}
.menu_mobile_share_wrapper .menu_mobile_share i {
    color: #000;
}
.menu_mobile_share_wrapper .social_icon_header {
    border-left: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    background: #fff;
    left: auto;
    right: 0px;
    top: 19px;
    bottom: auto;
    width: 201px;
    padding: 0px;
    margin-left: 0px;
    display: block;
    position: absolute;
    z-index: 1;
    overflow: visible;
    height: auto !important;
    visibility: hidden;
    opacity: 0;
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translate(0px, 20px);
    -moz-transform: translate(0px, 20px);
    -ms-transform: translate(0px, 20px);
    -o-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    -webkit-transition: visibility 0s, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
    -webkit-transition-delay: 0.55s, 0.175s, 0.175s;
    -moz-transition: visibility 0s 0.55s, opacity 0.375s ease-in-out 0.175s, -moz-transform 0.375s ease-in-out 0.175s;
    -o-transition: visibility 0s 0.55s, opacity 0.375s ease-in-out 0.175s, -o-transform 0.375s ease-in-out 0.175s;
    transition: visibility 0s 0.55s, opacity 0.375s ease-in-out 0.175s, transform 0.375s ease-in-out 0.175s;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
}
.top_bar_menu_black .menu_mobile_share_wrapper .social_icon_header {
    top: 14px !important;
}
.menu_mobile_share_wrapper:hover .social_icon_header {
    visibility: visible;
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transition: visibility 0s ease-in-out, opacity 0.375s ease-in-out, -webkit-transform 0.375s ease-in-out;
    -webkit-transition-delay: 0.175s, 0.175s, 0.175s;
    -moz-transition: visibility 0s ease-in-out 0.175s, opacity 0.375s ease-in-out 0.175s, -moz-transform 0.375s ease-in-out 0.175s;
    -o-transition: visibility 0s ease-in-out 0.175s, opacity 0.375s ease-in-out 0.175s, -o-transform 0.375s ease-in-out 0.175s;
    transition: visibility 0s ease-in-out 0.175s, opacity 0.375s ease-in-out 0.175s, transform 0.375s ease-in-out 0.175s;
}
.menu_mobile_share_wrapper {
    float: right;
    position: relative;
}
.menu_mobile_share_wrapper .social_icon_header li {
    float: left;
    margin: 0px;
}
.menu_mobile_share_wrapper .social_icon_header li a {
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    border-radius: 0%;
    border: 1px solid #ececec;
    border-left: 0px;
    border-bottom: 0px;
}
.menu_mobile_share_wrapper .social_icon_header li a i {
    color: inherit;
    font-size: 15px;
}
/*-------------------------------------------------------------------------------------
Menu slide
-------------------------------------------------------------------------------------*/
#jl_sb_nav .logo_small_wrapper a img {
    max-width: var(--jl-s-logo-width);
}
#jl_sb_nav .feature-image-link.image_post {
    width: 90px;
}
#jl_sb_nav .feature-post-list .item-details {
    margin-left: 105px;
}
.mobile_close_icons.closed_menu {
    width: 35px;
    height: 35px;
    line-height: 30px;
    margin-top: 0px;
    right: 20px;
    top: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    display: block;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    color: #000;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    position: absolute;
}
.mobile_close_icons.closed_menu i {
    font-size: 20px !important;
    margin-top: 0px !important;
    float: left;
    width: 100%;
    text-align: center;
    line-height: 35px;
}
#jl_sb_nav select {
    width: 100%;
}
#jl_sb_nav .post_list_widget,
#jl_sb_nav .jellywp_about_us_widget {
    padding: 0px;
}
#jl_sb_nav .cfs_from_wrapper {
    padding: 7px;
}
#jl_sb_nav .cfs_from_wrapper .cfs_form_title {
    font-size: 16px;
}
.jl_mobile_nav_inner {
    float: left;
    width: 100%;
    flex: 1;
}
.nav_mb_f {
    padding: 10px 0px 30px 0px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.nav_mb_f .jl_sh_ic_li{
    margin-bottom: 20px;
}
.nav_mb_f .jl_sh_ic_li li a,
.nav_mb_f .jl_sh_ic_li li:hover,
.nav_mb_f .jl_sh_ic_li li a:hover {
    color: var(--jl-txt-color) !important;
}
.jl_sh_ic_li {
    padding: 0px;
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
    margin-bottom: 0px;
}
.jl_sh_ic_li li {
    display: flex;
    list-style: none;
    align-items: center;
}
.jl_sh_ic_li li:hover,
.jl_sh_ic_li li a:hover {
    color: var(--jl-txt-color) !important;
}
.jl_sh_ic_li li a {
    color: var(--jl-txt-color);
    font-size: 16px;
    display: flex;
}
.jl_sh_ic_li li a svg, .jl_sh_widget .jl_sh_ic_li li a svg{
    width: auto;
    height: 15px;
}
.jl_sh_ic_li li.jl_snapchat a svg, .jl_sh_widget .jl_sh_ic_li li a.snapchat svg{
    height: 18px;
}
.cp_txt {
    font-size: var(--jl-foot-copyright);
    font-family: var(--jl-menu-font);
}
.cp_txt a {
    color: var(--jl-main-color);
}
.active_mobile_nav_class {
    overflow: hidden;
}
#jl_sb_nav .search_form_menu {
    padding: 0px 40px;
    float: left;
    width: 100%;
    margin: 40px 0px 20px 0px;
}
#jl_sb_nav .search_form_menu .button {
    border: 0px !important;
    line-height: 36px !important;
    margin-right: 5px;
    background: none;
    color: #000 !important;
    right: 0px;
    top: 0px;
}
#jl_sb_nav .search_form_menu .search_btn {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    border: 0px solid #000;
    background: #ececec;
    font-size: 14px;
    height: 39px;
    line-height: 39px;
    color: #000;
}
.menu_mobile_icons {
    float: right;
    cursor: pointer;
    color: #fff;
}
.menu_mobile_icons i {
    margin-top: 5px;
}
.menu_mobile_icons.closed_menu .fa-bars {
    display: none;
}
.menu_mobile_icons .fa-times {
    display: none;
}
.menu_mobile_icons.closed_menu .fa-times {
    display: block;
}
#jl_sb_nav .logo_link {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
}
#jl_sb_nav.jl_mobile_nav_wrapper {
    visibility: hidden;
    display: flex;
    flex-direction: column;
}
#jl_sb_nav.jl_mobile_nav_wrapper.jl_mobile_nav_open,
.jl_mb_nav_pos_right #jl_sb_nav.jl_mobile_nav_wrapper.jl_mobile_nav_open,
.jl_mb_nav_pos_right #jl_sb_nav.jl_mobile_nav_wrapper.jl_mobile_nav_open {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-overflow-scrolling: touch;
    -webkit-box-shadow: 0 -5px 100px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 -5px 100px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -5px 100px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible !important;
}
.jl_mobile_nav_wrapper .jl_mobile_nav_inner, .jl_mobile_nav_wrapper .nav_mb_f{
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.jl_mobile_nav_wrapper.jl_mobile_nav_open .jl_mobile_nav_inner, .jl_mobile_nav_wrapper.jl_mobile_nav_open .nav_mb_f{
    visibility: visible;
    opacity: 1;
}
.options_dark_skin #jl_sb_nav.jl_mobile_nav_wrapper.jl_mobile_nav_open{
    box-shadow: unset;
}
.jl_mobile_nav_wrapper .logo_small_wrapper_table {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    height: auto;
}
.jl_mobile_nav_wrapper .logo_link {
    margin-bottom: 0px;
}
/* Left postition */
.jl_mb_nav_pos_left #jl_sb_nav{
    left: 0;
    -webkit-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
}

#jl_sb_nav {
    top: 0;
    right: 0;
    height: 100%;
    z-index: 999999;
    width: 350px;
    padding: 30px 30px 0px 30px;
    color: var(--jl-txt-color);
    position: fixed;
    background: var(--jl-bg-color);
    overflow-y: scroll !important;
    -webkit-transition: all .5s cubic-bezier(.30, 0, .140, 1);
    -moz-transition: all .5s cubic-bezier(.30, 0, .140, 1);
    -o-transition: all .5s cubic-bezier(.30, 0, .140, 1);
    transition: all .5s cubic-bezier(.30, 0, .140, 1);
    -webkit-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
    -o-transform: translate(100%, 0px);
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    visibility: hidden;
}
#jl_sb_nav::-webkit-scrollbar{
    width: 3px;
    height: 3px;
}
#jl_sb_nav::-webkit-scrollbar-track{
    background: rgba(255, 255, 255, .2);
}
#jl_sb_nav::-webkit-scrollbar-thumb{
    background: var(--jl-main-color);
}
#jl_sb_nav .menu_moble_slide > li+li{
    border-top: 1px solid var(--jl-post-line-color);
}
#jl_sb_nav .menu_moble_slide li a {
    padding: 7px 0px !important;
    display: block;
    color: var(--jl-txt-color);
    position: relative;
    font-family: var(--jl-menu-font);
    font-size: var(--jl-menu-font-size);
    font-weight: var(--jl-menu-font-weight);
    text-transform: var(--jl-menu-transform);
    letter-spacing: var(--jl-menu-space);
}
#jl_sb_nav .menu_moble_slide li a:hover {
    opacity: .5;
}
#jl_sb_nav .menu_moble_slide > li {
    border-top: 0px solid var(--jl-post-line-color);
}
#jl_sb_nav .menu_moble_slide > li a {
    padding-left: 30px !important;
}
#jl_sb_nav .sub-menu li {
    border-top: 0px solid var(--jl-post-line-color);
    display: inline-block;
    margin: 0;
    padding: 0;
}
#jl_sb_nav .menu_moble_slide li {
    width: 100%;
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0px;
    position: relative;
}
#jl_sb_nav .menu_moble_slide > li > a{
    padding: 10px 0px !important;
}
#jl_sb_nav .menu_moble_slide > li > .sub-menu{
    padding-bottom: 10px;
}
#jl_sb_nav .sub-menu .sub-menu a {
    padding-left: 30px;
}
#jl_sb_nav .menu_moble_slide li a:hover {
    text-decoration: none;
}
#jl_sb_nav .sub-menu > li a {
    padding-left: 0px !important;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    font-size: var(--jl-submenu-font-size);
    font-weight: var(--jl-submenu-font-weight);
    text-transform: var(--jl-submenu-transform);
    letter-spacing: var(--jl-submenu-space);
}
#jl_sb_nav .sub-menu .sub-menu > li a {
    padding-left: 20px !important;
}
#jl_sb_nav .sub-menu .sub-menu .sub-menu > li a {
    padding-left: 40px !important;
}
#jl_sb_nav .sub-menu .sub-menu .sub-menu .sub-menu > li a {
    padding-left: 60px !important;
}
#jl_sb_nav .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu> li a {
    padding-left: 80px !important;
}
#jl_sb_nav .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu> li a {
    padding-left: 100px !important;
}
#jl_sb_nav .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu> li a {
    padding-left: 120px !important;
}
#jl_sb_nav .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu> li a {
    padding-left: 140px !important;
}
#jl_sb_nav .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu> li a {
    padding-left: 160px !important;
}
#jl_sb_nav .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu> li a {
    padding-left: 180px !important;
}
.menu_moble_slide {
    border-bottom: 0px solid #DADADA;
    margin-bottom: 25px;
}
#jl_sb_nav .menu_moble_slide li a,
#jl_sb_nav .menu_moble_slide {
    width: 100% !important;
    text-decoration: none !important;
    padding: 0px;
}
#jl_sb_nav a .arrow_down {
    -moz-osx-font-smoothing: grayscale;
    padding: 0px;
    position: absolute;
    top: 50%;
    right: -10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: var(--jl-txt-color);
    font-size: 18px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
}
#jl_sb_nav a .arrow_down i {
    margin: 0px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    float: left;
    font-size: 7px;
    font-weight: bold;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
#jl_sb_nav ul .menu-active-class {
    opacity: 1;
    visibility: visible;
    display: block;
    margin-top: 0px;
}
#jl_sb_nav .sub-menu {
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    display: none;
    box-shadow: none;
}
#jl_sb_nav .jl_close_wapper .jl_close_1, #jl_sb_nav .jl_close_wapper .jl_close_2{
    background-color: var(--jl-txt-color);
}
.mobile_menu_active.mobile_menu_overlay {
    visibility: visible;
    background: rgba(0,0,9,.35);
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='51px' height='51px' viewBox='0 0 51 51' enable-background='new 0 0 51 51' xml:space='preserve' style=' stroke-width: 2;%0A'%3E%3Cline fill='none' stroke='%23fff' stroke-miterlimit='10' x1='15.25' y1='35.75' x2='35.75' y2='15.25' style=' /* stroke-width: 2px; */%0A'%3E%3C/line%3E%3Cline fill='none' stroke='%23fff' stroke-miterlimit='10' x1='15.25' y1='15.25' x2='35.75' y2='35.75'%3E%3C/line%3E%3C/svg%3E")21 21, pointer;
}
.mobile_menu_overlay {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    background: transparent;
    transition: all 0.3s ease;
}
.sb-toggle-left {
    display: none;
    width: 40px;
    height: 38px;
    margin-left: 15px;
    float: right !important;
    padding: 11px 8px 8px 8px;
    background: #151515;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.navicon-line {
    width: 24px;
    height: 4px;
    border-radius: 1px;
    margin-bottom: 3px;
    background-color: #FFF;
}
.mobile_menu_meg {
    width: 100%;
    position: relative;
    float: left;
    display: none;
}
#nav-wrapper {
    background-color: #151515;
    text-align: left;
    float: left;
    width: 100% !important;
    position: absolute;
    display: none;
    z-index: 9999;
}
#nav-wrapper #menu-main-menu {
    margin: 0px;
    padding: 0px;
}
#nav-wrapper .jl_main_menu > li {
    border-top: 1px solid #212121;
}
#nav-wrapper .jl_main_menu > li a {
    padding-left: 30px !important;
}
#nav-wrapper .sub-menu li {
    border-top: 1px solid #212121;
    display: inline-block;
    margin: 0;
    padding: 0;
}
#nav-wrapper #menu-main-menu li {
    width: 100%;
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 6px 0px;
}
#nav-wrapper .sub-menu .sub-menu a {
    padding-left: 30px;
}
#nav-wrapper #menu-main-menu li a:hover {
    text-decoration: none;
}
#nav-wrapper .sub-menu > li a {
    padding-left: 50px !important;
}
#nav-wrapper .sub-menu .sub-menu > li a {
    padding-left: 70px !important;
}
#nav-wrapper .sub-menu .sub-menu .sub-menu > li a {
    padding-left: 90px !important;
}
#nav-wrapper .sub-menu .sub-menu .sub-menu .sub-menu > li a {
    padding-left: 110px !important;
}
#nav-wrapper .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu> li a {
    padding-left: 130px !important;
}
#nav-wrapper a,
#nav-wrapper #menu-main-menu {
    color: #FFF;
    width: 100% !important;
    text-decoration: none !important;
}
#nav-wrapper li:hover a {
    color: #ccc;
}
#nav-wrapper a .arrow_down {
    background-color: #212121;
    border: 1px solid #333;
    padding: 0px 6px;
    margin-left: 20px;
}
#nav-wrapper ul .menu-active-class {
    opacity: 1;
    visibility: visible;
    display: block;
    margin-top: 10px;
}
#nav-wrapper .sub-menu {
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    visibility: hidden;
    display: none;
    box-shadow: none;
}
/*-------------------------------------------------------------------------------------
Cart
-------------------------------------------------------------------------------------*/
.jl_h_cart .cart-link {
    position: relative;
    display: flex;
    display: -webkit-flex;
    height: 100%;
    line-height: 1;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.navbar-right {
    position: relative;
    display: flex;
    display: -webkit-flex;
    flex-flow: row nowrap;
    align-items: stretch;
    justify-content: flex-end;
}
.navbar-right > * {
    position: static;
    display: flex;
    display: -webkit-flex;
    margin-left: 7px;
    flex-flow: row nowrap;
    align-items: center;
}
.jl_h_cart, .jl_h_cart .jl_l_cart{
    display: flex;
    align-items: center;
    height: 100%;
}
.jl_h_cart .cart-link,
.off-canvas-wrap .cart-link {
    font-size: 24px;
}
.jl_l_cart .jli-bag{
    font-size: 17px;
    color: var(--jl-menu-color);
}
.jl_i_cart {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    position: relative;
}
.jl_count_cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    color: #fff;
    font-size: 10px;
    background: var(--jl-main-color);
    border-radius: 50%;
    font-style: normal;
    font-family: var(--jl-menu-font);
    font-weight: 400;
}
.jl-hshow {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    z-index: 1000;
    display: block;
    visibility: hidden;
    padding: 30px;
    width: 310px;
    background: var(--jl-sub-bg-color);
    color: var(--jl-sub-menu-color);
    opacity: 0;
    box-shadow: 0px 32px 64px -16px rgb(0 0 0 / 16%);
}
.jl-hshow .woocommerce-mini-cart{
    max-height: 255px;    
    overflow: auto;
}
.jl-hshow .woocommerce-mini-cart__empty-message{
    color: currentColor;
}
.jl-hshow .jl-cart-wrap{
    transform: translatey(-1000px);
}
.is-hover:hover .jl-hshow .jl-cart-wrap{
    transform: translatey(0px);
}
.is-hover:hover .jl-hshow {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.jl-hshow .woocommerce-mini-cart__buttons.buttons .button{
    padding: 0px !important;
    width: 100%;
    border-radius: var(--jl-button-radius);
    height: 40px;
    line-height: 1.2 !important;
    font-size: 70%;
}
.jl-hshow .mini_cart_item img{
    border: 1px solid var(--jl-sub-line-color);
}
/*-------------------------------------------------------------------------------------
Ads
-------------------------------------------------------------------------------------*/
.jl_ads_wrap_sec{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.jl_ads_wrap_sec.jl_auth_adsbl, .jl_ads_wrap_sec.jl_rel_adsab, .jl_ads_wrap_sec.jl_rel_adsbl{
    margin-top: 40px;
}
/*-------------------------------------------------------------------------------------
Day and Night
-------------------------------------------------------------------------------------*/
.wesper_day_night {
    position: relative;
    display: flex;
}
.options_dark_skin.jl_en_day_night .jli-moon {
    display: none;
}
.options_dark_skin.jl_en_day_night .jli-sun {
    display: block;
    -webkit-transform: translateX(19px);
    -ms-transform: translateX(19px);
    transform: translateX(19px);
}
.jl_en_day_night .jli-moon {
    display: block;
}
.jl_en_day_night .jli-sun {
    display: none;
}
.wesper_day_night .g1-button-none {
    padding: 0;
    border-width: 0;
    box-shadow: none;
    text-align: inherit;
    border-color: transparent;
    background-color: transparent;
    color: inherit;
}
.wesper_day_night .jl-night-toggle-icon {
    overflow: hidden;
    position: relative;
    font-size: 16px;
    display: inline-block;
    width: auto;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    width: 40px;
    height: 20px;
    background: #ced4da;
    border-radius: 100px;
}
.jl-night-toggle-icon.active i,
.jl-night-toggle-icon.active:hover i {
    color: #000 !important;
}
.wesper_day_night .jl_sun,
.wesper_day_night .jl_moon {
    float: left;
    width: 100%;
}
.wesper_day_night .jl-night-toggle-icon:before,
.wesper_day_night .jl-night-toggle-icon:after {
    -webkit-transition: -webkit-transform 375ms ease-in-out;
    -moz-transition: -moz-transform 375ms ease-in-out;
    -o-transition: -o-transform 375ms ease-in-out;
    transition: transform 375ms ease-in-out;
}
.wesper_day_night .jl-night-toggle-icon i {
    height: 16px;
    width: 16px;
    line-height: 16px;
    margin: 2px;
    font-size: 12px !important;
    text-align: center;
    background: #fff;
    border-radius: 100px;
    transition: .25s;
}
.wesper_day_night .jl-night-toggle-icon i,
.wesper_day_night .jl-night-toggle-icon i:hover {
    color: #000 !important;
}
.jl_menu_sticky {
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
}
.jl_blank_nav {
    float: left;
    width: 100%;
}
/*-------------------------------------------------------------------------------------
Transparent Header
-------------------------------------------------------------------------------------*/
.page-template-page-fullwidth .jlc-hmain-w,
.page-template .jlc-hmain-w,
.archive .jlc-hmain-w,
.s_post_layout_2 .jlc-hmain-w,
.s_post_layout_3 .jlc-hmain-w,
.page-template-default .jlc-hmain-w{
    border-bottom: 0px;
}
.admin-bar.jl_header_tp .jlc-hmain-w{
    top: 32px;
}
.admin-bar .jlc-hmain-w, .admin-bar.jl_nav_stick.menu-detached .jlc-stick-main-w{
    top: 32px;
}
@media screen and (max-width: 782px){
    .admin-bar .jlc-hmain-w, .admin-bar.jl_nav_stick.menu-detached .jlc-stick-main-w{
    top: 46px;
}
}
@media screen and (max-width: 600px){
    .admin-bar .jlc-hmain-w, .admin-bar.jl_nav_stick.menu-detached .jlc-stick-main-w{
    top: 0px;
}
}
.jlc-stick-main-w .jlc-stick-main-in{
    width: 100%;
    background: var(--jl-menu-bg);
    box-shadow: 0 2px 5px rgb(0 0 0 / 7%);
}
.jl_header_tp .jlc-hmain-w {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
}
.jl_header_tp .jlc-hmain-in .jl_h_cart i,
.jl_header_tp .jlc-hmain-in .jl_h_cart:hover i,
.jl_header_tp .jlc-hmain-in .search_header_wrapper i,
.jl_header_tp .jlc-hmain-in .search_header_wrapper:hover i {
    color: #fff !important;
}
.jl_header_tp .jlc-hmain-w .jlm_w span {
    background: #fff;
}
.jl_header_tp .jlc-hmain-in{
    background: transparent !important;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.292) 45.49%, rgba(0, 0, 0, 0) 100%) !important;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.292) 45.49%, rgba(0, 0, 0, 0) 100%) !important;
    border-bottom: 0px !important;
}
.jlc-hmain-w .jlc-hmain-in {
    width: 100%;
    background: var(--jl-menu-bg);
}
.jl_header_tp .jlc-hmain-w, .page-template-home-page-builder .jlc-hmain-w{
    border-bottom: 0px;
}
.jl_header_tp .jlc-hmain-w .jl_logo_n {
    opacity: 0;
    visibility: hidden;
}
.jl_header_tp .jlc-hmain-w .jl_logo_w {
    opacity: 1 !important;
    visibility: visible;
}
.jl_header_tp .jl_r_menu.jlc-hmain-w .jl_logo_n {
    opacity: 1;
    visibility: visible;
}
.jl_header_tp .jl_r_menu.jlc-hmain-w .jl_logo_w {
    opacity: 0 !important;
    visibility: hidden;
}
.jl_header_tp .jlc-hmain-w .jl_main_menu > .menu-item > a,
.jl_header_tp .jlc-hmain-w .jl_main_menu.jl_main_menu > .menu-item:hover > a {
    color: #fff !important;
}
.jl_header_tp .jl_r_menu.jlc-hmain-w .jl_main_menu > .menu-item > a,
.jl_header_tp .jl_r_menu.jlc-hmain-w .jl_main_menu.jl_main_menu > .menu-item:hover > a {
    color: #000 !important;
}
.jl_header_tp.jl_nav_stick .jl_r_menu {
    -moz-transform: translateY(-115%);
    -ms-transform: translateY(-115%);
    -webkit-transform: translateY(-115%);
    transform: translateY(-115%);
    transition: transform .2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    display: block;
}
.jl_nav_stick.menu-invisible.menu-detached .jl_r_menu {
    -moz-transform: translateY(-115%);
    -ms-transform: translateY(-115%);
    -webkit-transform: translateY(-115%);
    transform: translateY(-115%);
}
.jl_nav_stick.menu-hide-fixed.menu-detached .jl_r_menu{
    -moz-transform: translateY(-115%);
    -ms-transform: translateY(-115%);
    -webkit-transform: translateY(-115%);
    transform: translateY(-115%);
}
.jl_nav_stick.menu-detached .jl_r_menu {
    position: fixed;
    z-index: 150;
    display: block;
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    z-index: 9999;
    transition: transform .2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.jl_nav_stick .jl_r_menu {
    position: fixed;
    z-index: 9998;
    top: 0;
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateY(-110%);
    -ms-transform: translateY(-110%);
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -moz-transition: -moz-transform .01s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -o-transition: -o-transform .01s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-transition: -webkit-transform .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: transform .2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.jl_nav_stick.menu-detached:not(.jl_header_tp) .jl_r_menu{
    opacity: 1;
    pointer-events: unset;
}
.jl_nav_stick:not(.jl_header_tp) .jl_r_menu{
    opacity: 0;
    pointer-events: none;
}
.jl_nav_stick .jl_r_menu.m-visible {
    top: 0;
    display: block;
}
.jl_nav_stick .admin-bar .jl_r_menu.m-visible {
    top: 32px;
}
.is-header-row.jl_nav_stick .site-header.jl_base_menu.m-hidden,
.is-header-row.jl_nav_stick.menu-detached .site-header.jl_base_menu,
.is-header-small.jl_nav_stick .site-header.jl_base_menu.m-hidden,
.is-header-small.jl_nav_stick.menu-detached .site-header.jl_base_menu {
    opacity: 0;
}
.jl_hwrap{
    position: relative;
    width: 100%;
    height: var(--jl-sec-menu-height);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}
.navigation_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
}
.logo_small_wrapper_table {
    display: flex;
    padding: 0;
    align-items: center;
    margin-right: 0px;
    position: relative;
    z-index: 1;
    flex: 1;
}
.logo_small_wrapper_table .logo_small_wrapper {
    display: flex;
}
.logo_small_wrapper_table .logo_small_wrapper a {
    margin: 0;
    display: flex;
    position: relative;
}
.logo_small_wrapper_table .logo_small_wrapper .logo_link > h1, .logo_small_wrapper_table .logo_small_wrapper .logo_link > span{
    display: flex;
    margin: 0px;
    padding: 0px;
}
.logo_small_wrapper_table .logo_small_wrapper a:hover {
    text-decoration: none !important;
}
.logo_small_wrapper_table .logo_small_wrapper a img {
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.options_dark_skin .logo_small_wrapper_table .logo_small_wrapper a .jl_logo_n {
    opacity: 0;
}
.options_dark_skin .logo_small_wrapper_table .logo_small_wrapper a .jl_logo_w {
    opacity: 1 !important;
    visibility: visible;
}

.jlc-hop5.jlc-stick-main-w .jl_hwrap,
.jlc-hop6.jlc-stick-main-w .jl_hwrap,
.jlc-hop7.jlc-stick-main-w .jl_hwrap,
.jlc-hop8.jlc-stick-main-w .jl_hwrap,
.jlc-hop9.jlc-stick-main-w .jl_hwrap{
    max-height: 65px;
    min-height: 65px;
}
.jlc-hop5.jlc-stick-main-w .jl_hwrap .logo_small_wrapper_table .logo_small_wrapper .logo_link img,
.jlc-hop6.jlc-stick-main-w .jl_hwrap .logo_small_wrapper_table .logo_small_wrapper .logo_link img,
.jlc-hop7.jlc-stick-main-w .jl_hwrap .logo_small_wrapper_table .logo_small_wrapper .logo_link img,
.jlc-hop8.jlc-stick-main-w .jl_hwrap .logo_small_wrapper_table .logo_small_wrapper .logo_link img,
.jlc-hop9.jlc-stick-main-w .jl_hwrap .logo_small_wrapper_table .logo_small_wrapper .logo_link img{
    max-width: var(--jl-m-logo-width);
}
/*Header top bar*/
.jlc-top-w{
    background: var(--jl-topbar-bg);
    color: var(--jl-topbar-color);
    font-size: var(--jl-topbar-size);
}
.jlc-top-w .jl_thc{
    height: var(--jl-topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
}
.jl_hrsh .jl_sh_ic_li li a, .jl_hrsh .jl_sh_ic_li li a:hover{
    color: var(--jl-topbar-color) !important;
    font-size: 13px;
}
.jl_hrsh .jl_sh_ic_li li a svg{
    width: auto;
    height: 13px;
}
.jl_hrsh .jl_sh_ic_li li.jl_snapchat a svg{
    height: 18px;
}
.jl_hrsh .jl_sh_ic_li li a:hover{
    opacity: .8;
}
.jl_htl, .jl_htr{
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}
.jl_hlc, .jl_hrc, .jl_topbar_date{
    font-size: var(--jl-topbar-size);
    font-family: var(--jl-menu-font);
}
.jl_hlnav{
    height: 100%;
}
.jl_hlnav .jl_main_menu > li{
    margin-right: 20px !important;
}
.jl_hlnav .jl_main_menu > li > a{
    font-weight: 400 !important;
    text-transform: none !important;
}
.jl_hlnav .jl_main_menu a{
    font-size: var(--jl-topbar-size) !important;
    letter-spacing: 0px !important;
}
.jl_hlc a, .jl_hrc a, .jl_hlnav .jl_main_menu > li > a{
    color: currentColor !important;
}

/*Header 1*/
.jlc-hop1 .jl_hwrap{
    justify-content: space-between;
}
.jlc-hop1 .jl_hd1_nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}
.jlc-hop1 .navigation_wrapper{
    display: block;
    height: 100%;
}
.jlc-hop1 .search_header_menu{
    margin-left: 30px;
    height: 100%;
    flex: 0;
}

/*Header 3*/
.jlc-hop3 .logo_small_wrapper_table{
    justify-content: center;
    flex: 0 1 auto;
}
.jlc-hop3 .navigation_wrapper{
    display: flex;
    flex: 1;
    justify-content: start;
}
.jlc-hmain-in{
    border-bottom: 1px solid var(--jl-menu-line-color);
}

/*Header 4*/
.jl_hleftwrap{
    display: flex;
    align-items: center;
    gap: 25px;
}

/*Header 5*/
.jlc-hmain-logo .jl_hwrap{
    height: var(--jl-sec-logo-height);
}
.jlc-hmain-w.jlc-hop5 .jlc-hmain-logo{
    background: var(--jl-logo-bg);
}
.jlc-hmain-w.jlc-hop5 .jlc-hmain-in{
    border-bottom: 0px !important;
}
.jlc-hmain-w.jlc-hop5 .jlc-hmain-in{
    background: transparent !important;
}
.jlc-hmain-w.jlc-hop5 .jlc-hmain-in .jl_hwrap{
    border-top: 2px solid var(--jl-menu-line-color);
    border-bottom: 1px solid var(--jl-menu-line-color);
    background: var(--jl-menu-bg);
}
.jlc-hmain-w.jlc-hop5 .search_header_menu.jl_mb_nav_left{
    justify-content: flex-start;
}
.jlc-hmain-w.jlc-hop5 .jl_hwrap .jl_head_sub{
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}
.jlc-hmain-w.jlc-hop5 .jl_hwrap .logo_small_wrapper_table{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
}
.jlc-hmain-w.jlc-hop5 .jl_hwrap .jl_htr{
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.jlc-hmain-w.jlc-hop5 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a, .jlc-hmain-w.jlc-hop5 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a:hover{
    color: var(--jl-logo-color) !important;
    font-size: 15px;
}
.jlc-hmain-w.jlc-hop5 .jlc-hmain-logo .search_header_menu{
    display: none;
}
.jl_head_sub a{
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    background: var(--jl-main-color);
    height: 36px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 0px 30px;
    position: relative;
    border-radius: var(--jl-button-radius);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    font-family: var(--jl-menu-font);
}
.jl_head_sub span{
    transition: .2s ease-out all;
    display: inline-block;
}
.jl_head_sub svg{
    right: 18px;
    transform: translate3d(-10px,-50%,0);
    opacity: 0;
    position: absolute;
    top: 50%;
    transition: .2s ease-out all;
    width: 12px;
    height: auto;
}
.jl_head_sub a:hover span{
    transform: translate3d(-8px,0,0)
}
.jl_head_sub a:hover svg{
    opacity:1;
    transform: translate3d(0,-50%,0)
}

/*Header 6*/
.jlc-hmain-w.jlc-hop6 .jlc-hmain-logo{
    background: var(--jl-logo-bg);
}
.jlc-hmain-w.jlc-hop6 .jlc-hmain-in{
    border-top: 1px solid var(--jl-menu-line-color);
    border-bottom: 1px solid var(--jl-menu-line-color);
}
.jlc-hmain-w.jlc-hop6 .jl_hwrap{
    justify-content: center;
}
.jlc-hmain-w.jlc-hop6 .jl_hwrap .logo_small_wrapper_table{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
}
.jlc-hmain-w.jlc-hop6 .jl_hwrap .jl_htr{
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

.jlc-hmain-w.jlc-hop6 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a, .jlc-hmain-w.jlc-hop6 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a:hover{
    color: var(--jl-logo-color) !important;
    font-size: 15px;
}
.jlc-hmain-w.jlc-hop6 .jlc-hmain-logo .jl_l_cart .jli-bag,
.jlc-hmain-w.jlc-hop6 .jlc-hmain-logo .search_header_wrapper.search_form_menu_personal_click .jli-search{
    color: var(--jl-logo-color) !important;
}
.jlc-hmain-w.jlc-hop6 .jlc-hmain-logo .jlm_w span{
    background: var(--jl-logo-color) !important;
}
.jlc-stick-main-w.jlc-hop6 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{
    max-width: var(--jl-m-logo-width) !important;
}

/*Header 7*/
.jl_header_sb{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
}
.jl_header_sb .widget{
    margin-bottom: 0px;
}
.jlc-hmain-w.jlc-hop7 .jlc-hmain-logo{
    background: var(--jl-logo-bg);
}
.jlc-hmain-w.jlc-hop7 .jlc-hmain-logo .search_header_menu{
    display: none;
}
.jlc-hmain-w.jlc-hop7 .jlc-hmain-in{
    border-top: 1px solid var(--jl-menu-line-color);
    border-bottom: 1px solid var(--jl-menu-line-color);
}
.jlc-hmain-w.jlc-hop7 .jl_hwrap{
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.jlc-hmain-w.jlc-hop7 .jl_hwrap .logo_small_wrapper_table{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}
.jlc-hmain-w.jlc-hop7 .jl_hwrap .jl_htr{
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}
.jlc-hmain-w.jlc-hop7 .jlc-hmain-in .search_header_menu{
    height: 100%;    
}
.jlc-hmain-w.jlc-hop7 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a, .jlc-hmain-w.jlc-hop7 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a:hover{
    color: var(--jl-logo-color) !important;
    font-size: 15px;
}
.jlc-hmain-w.jlc-hop7 .jlc-hmain-logo .jl_l_cart .jli-bag,
.jlc-hmain-w.jlc-hop7 .jlc-hmain-logo .search_header_wrapper.search_form_menu_personal_click .jli-search{
    color: var(--jl-logo-color) !important;
}
.jlc-hmain-w.jlc-hop7 .jlc-hmain-logo .jlm_w span{
    background: var(--jl-logo-color) !important;
}
.jlc-hmain-w.jlc-hop7 .jlc-hmain-in .jl_l_cart .jli-bag,
.jlc-hmain-w.jlc-hop7 .jlc-hmain-in .search_header_wrapper.search_form_menu_personal_click .jli-search{
    color: var(--jl-menu-color) !important;
}
.jlc-hmain-w.jlc-hop7 .jlc-hmain-in .jlm_w span{
    background: var(--jl-menu-color) !important;
}
.jlc-stick-main-w.jlc-hop7 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{
    max-width: var(--jl-m-logo-width) !important;
}
/*Header 8*/
.jl_header_sb{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
}
.jl_header_sb .widget{
    margin-bottom: 0px;
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-logo{
    background: var(--jl-logo-bg);
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-logo .search_header_menu{
    display: none;
}
.jlc-hmain-w.jlc-hop8 .jl_hwrap{
    justify-content: center;
    align-items: center;
    gap: 20px;    
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in{
    background: transparent !important;
    border: 0px !important;
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .jl_hwrap{
    border-top: 1px solid var(--jl-menu-line-color);
    border-bottom: 1px solid var(--jl-menu-line-color);
    background: var(--jl-menu-bg);
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .search_header_menu{
    height: 100%;
    --jl-space-nav-right: calc(var(--jl-spacing-menu) / 2);
    margin-right: calc(var(--jl-space-nav-right) + 7px);
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .navigation_wrapper .jl_main_menu > .menu-item,
.jlc-stick-main-w.jlc-hop8 .jlc-stick-main-in .navigation_wrapper .jl_main_menu > .menu-item{
    margin-right: 0px;
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .navigation_wrapper .jl_main_menu > .menu-item > a,
.jlc-stick-main-w.jlc-hop8 .jlc-stick-main-in .navigation_wrapper .jl_main_menu > .menu-item > a{
    padding: 0px calc(var(--jl-spacing-menu) / 2);
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .navigation_wrapper .jl_main_menu > .menu-item > a .jl_mblt,
.jlc-stick-main-w.jlc-hop8 .jlc-stick-main-in .navigation_wrapper .jl_main_menu > .menu-item > a .jl_mblt{
    background-image: unset !important;
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .navigation_wrapper .jl_main_menu > .current-menu-ancestor > a,
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .navigation_wrapper .jl_main_menu > .menu-item.current-menu-item > a,
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .navigation_wrapper .jl_main_menu > .menu-item:hover > a,
.jlc-stick-main-w.jlc-hop8 .jlc-stick-main-in .navigation_wrapper .jl_main_menu > .current-menu-ancestor > a,
.jlc-stick-main-w.jlc-hop8 .jlc-stick-main-in .navigation_wrapper .jl_main_menu > .menu-item.current-menu-item > a,
.jlc-stick-main-w.jlc-hop8 .jlc-stick-main-in .navigation_wrapper .jl_main_menu > .menu-item:hover > a{
    margin-top: -3px;
    height: calc(100% + 6px);
    background: var(--jl-main-color);
    color: #fff !important;
}
.jlc-hmain-w.jlc-hop8 .jl_hwrap .logo_small_wrapper_table{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}
.jlc-hmain-w.jlc-hop8 .jl_hwrap .jl_htr{
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

.jlc-hmain-w.jlc-hop8 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a, .jlc-hmain-w.jlc-hop8 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a:hover{
    color: var(--jl-logo-color) !important;
    font-size: 15px;
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-logo .jl_l_cart .jli-bag,
.jlc-hmain-w.jlc-hop8 .jlc-hmain-logo .search_header_wrapper.search_form_menu_personal_click .jli-search{
    color: var(--jl-logo-color) !important;
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-logo .jlm_w span{
    background: var(--jl-logo-color) !important;
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .jl_l_cart .jli-bag,
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .search_header_wrapper.search_form_menu_personal_click .jli-search{
    color: var(--jl-menu-color) !important;
}
.jlc-hmain-w.jlc-hop8 .jlc-hmain-in .jlm_w span{
    background: var(--jl-menu-color) !important;
}
.jlc-stick-main-w.jlc-hop8 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{
    max-width: var(--jl-m-logo-width) !important;
}
.logo_sticky_white .jlc-stick-main-w.jlc-hop8 .logo_small_wrapper_table .logo_small_wrapper a .jl_logo_w{
    opacity: 1;
}
.logo_sticky_white .jlc-stick-main-w.jlc-hop8 .logo_small_wrapper_table .logo_small_wrapper a .jl_logo_n{
    opacity: 0;
}
/*Header 9*/
.jl_header_sb{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
    max-width: 728px;
}
.jl_header_sb .widget{
    margin-bottom: 0px;
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-logo{
    background: var(--jl-logo-bg);
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-logo .jl_logo_right{
    display: flex;
    align-items: center;
    gap: 20px;
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-logo .search_header_menu{
    display: none;
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-in{
    border-top: 1px solid var(--jl-menu-line-color);
    border-bottom: 1px solid var(--jl-menu-line-color);
}
.jlc-hmain-w.jlc-hop9 .jl_hwrap{
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.jlc-hmain-w.jlc-hop9 .jl_hwrap .logo_small_wrapper_table{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}
.jlc-hmain-w.jlc-hop9 .jl_hwrap .jl_htr{
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-in .search_header_menu{
    height: 100%;    
}
.jlc-hmain-w.jlc-hop9 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a, .jlc-hmain-w.jlc-hop9 .jl_hwrap .jl_hrsh .jl_sh_ic_li li a:hover{
    color: var(--jl-logo-color) !important;
    font-size: 15px;
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-in .navigation_wrapper .jl_main_menu > .menu-item{
    margin-right: 0px;
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-in .navigation_wrapper .jl_main_menu > .menu-item:first-child > a{
    border-left: 1px solid var(--jl-menu-line-color);
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-in .navigation_wrapper .jl_main_menu > .menu-item > a{
    padding: 0px calc(var(--jl-spacing-menu) / 2);
    border-right: 1px solid var(--jl-menu-line-color);
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-logo .jl_l_cart .jli-bag,
.jlc-hmain-w.jlc-hop9 .jlc-hmain-logo .search_header_wrapper.search_form_menu_personal_click .jli-search{
    color: var(--jl-logo-color) !important;
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-logo .jlm_w span{
    background: var(--jl-logo-color) !important;
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-in .jl_l_cart .jli-bag,
.jlc-hmain-w.jlc-hop9 .jlc-hmain-in .search_header_wrapper.search_form_menu_personal_click .jli-search{
    color: var(--jl-menu-color) !important;
}
.jlc-hmain-w.jlc-hop9 .jlc-hmain-in .jlm_w span{
    background: var(--jl-menu-color) !important;
}
.jlc-stick-main-w.jlc-hop9 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{
    max-width: var(--jl-m-logo-width) !important;
}

/*-------------------------------------------------------------------------------------
Layout options
-------------------------------------------------------------------------------------*/
/* Category link */
.jl_ajax_w{
    margin-bottom: 15px;
}
.jl_ajax_c{
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-family: var(--jl-menu-font);
}
.jl_ajax_c .jl-ac-m{
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg,currentColor 0,currentColor 94%);
    transition: background-size .35s cubic-bezier(.215,.61,.355,1);
    background-position: 0 94%;
    background-size: 100% 1px;
}

.jl-main-content{
    padding: 50px 0px;
}
/*  layout title */
.jl_fe_title{
    display: block;
    margin-bottom: 0px;
}
.jl_fe_title a{
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.jl_fe_des{
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--jl-except-color);
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.jl_tline .jl_fe_title a,
.jl_tline .jl_wc_title a,
.jl_tline .woocommerce-loop-product__title a{
    display: inline;
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg,currentColor 0,currentColor 94%);
    transition: background-size .4s cubic-bezier(.215,.61,.355,1), opacity .5s ease;
    background-position: 100% 94%;
    background-size: 0 1px;
    position: relative;
    z-index: 3;
    color: var(--jl-txt-color);
}
.jl_tline .jl_fe_title a:hover,
.jl_tline .jl_wc_title a:hover,
.jl_tline .woocommerce-loop-product__title a:hover{
    background-position:0 94%;
    background-size: 100% 1px;
    color: var(--jl-txt-color);
}
.jl_uline .jl_fe_title a,
.jl_uline .jl_wc_title a,
.jl_uline .woocommerce-loop-product__title a{
    text-decoration: underline rgba(255, 255, 255, 0) !important;
    transition: text-decoration-color 0.3s !important;
}
.jl_uline .jl_fe_title a:hover,
.jl_uline .jl_wc_title a:hover,
.jl_uline .woocommerce-loop-product__title a:hover{
    text-decoration: underline !important;
    text-decoration-color: currentColor;
}

/* layout media */
.overlay-media{
    display: block;
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 !important;
    transform: none !important;
    overflow: hidden;
    width: 100% !important;
    height: 100% !important;
    padding: 0;
    margin: 0;
    background: #000;
}
@keyframes showOpa {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.overlay-media video{
    width: 100%;
    max-width: 100%;
    height: 100%;
    animation: showOpa 1s normal forwards;
    animation-delay: 0.5s;
    -o-object-fit: cover;
    object-fit: cover;
}
iframe.loaded{
    opacity: 1 !important;
}
.video-wrap{
    opacity: 0;
    transition: .5s cubic-bezier(0.3,0.7,0.7,1) opacity;
    transition-delay: 1.5s;
}
.video-wrap.jl_load_vids{
    opacity: 1 !important;
}
.overlay-media iframe{
    position: absolute;
    pointer-events: none;
    width: 150% !important;
    height: 178% !important;
    opacity: 0;
    transition: 0.5s cubic-bezier(0.3, 0.7, 0.7, 1) opacity;
    transition-delay: 1.5s;
    margin: 0 !important;
    max-width: none !important;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}
/* layout cat */
.jl_f_cat{
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: var(--jl-h-align);
}
.jl_f_cat .jl_cat_txt{
    color: var(--jl-txt-color);
    font-family: var(--jl-menu-font);
    font-size: var(--jl-cat-font-size);
    font-weight: var(--jl-cat-font-weight);
    letter-spacing: var(--jl-cat-font-space);
    text-transform: var(--jl-cat-transform);
}
.jl_f_cat .jl_cat_txt:hover{
    color: var(--jl-txt-color);
}
/*  layout category 1 */
.jl_lb1 > a{
    position: relative;
    line-height: 1.12;
}
.jl_lb1 > a:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--jl-main-color);
    transition: 0.25s;
}
.jl_lb1 > a span{
    z-index: 2;
    position: relative;
}
.jl_lb1 .jl_cat_txt{
    display: flex;
    align-items: center;
}
/*  layout category 2 */
.jl_lb2 a{
    position: relative;
    line-height: 1.12;    
}
.jl_lb2 a:after{
    content: ",";    
}
.jl_lb2 a:last-child:after{
    content: ",";
    display: none;
}
.jl_lb2 .jl_cat_txt{
    display: flex;
    align-items: center;
    color: var(--jl-main-color);
}
/*  layout category 3 */
.jl_lb3 .jl_cat_lbl, .jl_lb4 .jl_cat_lbl, .jl_lb5 .jl_cat_lbl, .jl_lb6 .jl_cat_lbl, .jl_lb7 .jl_cat_lbl{
    padding: 5px 9px;
    color: #fff;
    background: var(--jl-main-color);
    line-height: 1.2;
    position: relative;
    z-index: 2;
    font-family: var(--jl-menu-font);
    font-size: var(--jl-cat-font-size);
    font-weight: var(--jl-cat-font-weight);
    letter-spacing: var(--jl-cat-font-space);
    text-transform: var(--jl-cat-transform);
}
.jl_caropt_w .jl-eb-sl .jl_ov_el.jl_ov_bg .jl_lb3 .jl_cat_lbl, .jl-eb-sl .jl_ov_el.jl_ov_bg .jl_lb3 .jl_cat_lbl, .jl_fe_inner .jl_lb3 .jl_cat_lbl{
    color: #fff !important;
}
/*  layout category 4 */
.jl_lb4{
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin: 0px;    
}
/*  layout category 5 */
.jl_lb5{
    position: absolute;
    bottom: 0px;
    margin: 0px;
    left: 0px;
}

/*  layout category 6 */
.jl_lb6{
    position: absolute;
    bottom: 0px;
    margin: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/*  layout category 7 */
.jl_lb7{
    position: absolute;
    top: 10px;
    margin: 0px;
    left: 10px;
    width: auto;
}

/*  Section category */
.jl_cat_lopt{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-gap: 10px;
}
.jl_cat_lopt .jl_cimg{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.jl_cat_lopt .jl_cimg img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: transform 1s ease,opacity .5s ease;
    transform: scale(1.01);
}
.jl_cat_img_link{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 3;
}
/*  Section category 1 */
.jl_cat_opt1{
    --jl-cat-hs: 60px;
}
.jl_cat_opt1 .jl_cat_opt_w{
    position: relative;
    overflow: hidden;
    height: var(--jl-cat-hs);
    background: #000;
}
.jl_cat_opt1 .jl_cat_lbw{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-cat-font-weight);
    background: rgba(0,0,0,.1);
}
.jl_cat_opt1 .jl_cat_lbw .jl_cm_name{
    color: #fff;
    font-size: 15px;
}
.jl_cat_opt1 .jl_cat_lbw .jl_cm_count{
    color: #fff;
    min-width: 30px;
    height: 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: #454545;
}
/*  Section category 2 */
.jl_cat_opt2{
    --jl-cat-hs: 150px;
}
.jl_cat_opt2 .jl_cat_opt_w{
    position: relative;
    overflow: hidden;
    height: var(--jl-cat-hs);
    background: #000;
}
.jl_cat_opt2 .jl_cat_lbw{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 20px;
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-cat-font-weight);
    background-image: repeating-linear-gradient(0deg, #000, transparent) !important;
}
.jl_cat_opt2 .jl_cat_lbw .jl_cm_name{
    color: #fff;
    font-size: 17px;
}
.jl_cat_opt2 .jl_cat_lbw .jl_cm_count{
    color: #fff;
    min-width: 30px;
    height: 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: #454545;
}
/*  Section category 3 */
.jl_cat_opt3{
    --jl-cat-hs: 150px;
}
.jl_cat_opt3 .jl_cat_opt_w{
    position: relative;
    text-align: center;
}
.jl_cat_opt3.jl_cat_lopt .jl_cimg{
    position: relative;
    width: var(--jl-cat-hs);
    height: var(--jl-cat-hs);
    margin: 0 auto;
    border-radius: 100px;
}
.jl_cat_opt3 .jl_cat_lbw{
    display: flex;
    align-items: center;
    padding: 10px 0px 0px 0px;
    justify-content: center;
    flex-direction: column;
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-cat-font-weight);
}
.jl_cat_opt3 .jl_cat_lbw .jl_cm_name{
    font-size: 17px;
}
.jl_cat_opt3 .jl_cat_lbw .jl_cm_count{
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: transparent !important;
    font-weight: 500;
}
/*  Section category 4 */
.jl_cat_opt4{
    --jl-cat-hs: 180px;
}
.jl_cat_opt4 .jl_cat_opt_w{
    position: relative;
    height: var(--jl-cat-hs);
    display: flex;
    flex-direction: column;
    background: #222;
}
.jl_cat_opt4.jl_cat_lopt .jl_cimg{
    position: relative;
    margin: 0 auto;
}
.jl_cat_opt4 .jl_cat_lbw{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-cat-font-weight);
}
.jl_cat_opt4 .jl_cat_lbw .jl_cm_name{
    color: #fff;
    font-size: 17px;
}
.jl_cat_opt4 .jl_cat_lbw .jl_cm_count{
    color: #fff;
    min-width: 26px;
    height: 26px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: #454545;
    border: 1px solid #fff;
}
/*-------------------------------------------------------------------------------------
Layout grid
-------------------------------------------------------------------------------------*/
.jl_cgrid_wrap{
    width: 100%;
    display: grid;
    grid-column-gap: var(--jlcols-gap);
    grid-row-gap: var(--jlrow-gap);
    grid-template-columns: repeat(2,minmax(0,1fr));
    overflow: hidden;
}
.jl_cgrid_wrap .jl_cgrid_layout{
    position: relative;
}
.jl_hide_line .jl_cgrid_wrap .jl_cgrid_layout:before, .jl_hide_col_line .jl_cgrid_wrap .jl_cgrid_layout:after, .jl_hide_line .jl_lasep:after{
    display: none;
}
.jl_cgrid_wrap .jl_cgrid_layout:before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: calc(var(--jlrow-gap) / 2 * -1);
    border-bottom: 1px solid var(--jl-post-line-color);
}
.jl_cgrid_wrap .jl_cgrid_layout:after{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jlcols-gap) / 2 * -1);
}
.jl_cgrid_layout .jl_fe_text{
    text-align: var(--jl-h-align);
}
.jl_cgrid_layout .jl_imgw{
    margin-bottom: 20px;
}
.jl_cgrid_layout .jl_fe_title{
    font-size: 25px;
}
/*-------------------------------------------------------------------------------------
Layout list
-------------------------------------------------------------------------------------*/
.jl_clist_layout{
    --jl-img-w: 40%;
    --jl-img-h: 80%;
    --jl-img-space: 30px;
    display: block;
    position: relative;
}
.jl_clist_layout .jl_li_in{
    gap: var(--jl-img-space);
}
.jl_clist_layout .jl_img_holder{
    align-self: flex-start;
    display: block;
    -webkit-flex: 0 0 var(--jl-img-w);
    -ms-flex: 0 0 var(--jl-img-w);
    flex: 0 0 var(--jl-img-w);
    width: var(--jl-img-w);
    padding: 0px;
}
.jl_clist_layout .jl_imgw{
    padding-bottom: var(--jl-img-h);
}
/*-------------------------------------------------------------------------------------
Layout list + mix
-------------------------------------------------------------------------------------*/
.jl_ov_mix_opt{
    --jl-h-align: center;
    --jl-v-align: center;
    --jl-padding: 40px;
    --jl-mix-img-h: 56%;
    padding-bottom: var(--jl-mix-img-h) !important;
}
/*-------------------------------------------------------------------------------------
Layout mini overlay + list
-------------------------------------------------------------------------------------*/
.jl_mini_ov_sb .jl_ov_el.jl_ov_mix_opt{
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-padding: 25px;
    --jl-mix-img-h: 70%;
    padding-bottom: var(--jl-mix-img-h) !important;
}
.jl_mini_ov_sb .jl_ov_el.jl_ov_mix_opt .jl_fe_title{
    font-size: 20px;
}
/*-------------------------------------------------------------------------------------
Layout small list
-------------------------------------------------------------------------------------*/
.jl_sf_grid .jl_fli_wrap{
    --jl-img-w: 180px;
    --jl-img-h: 180px;
    --jl-img-space: 20px;
    --jlcol-gap: 0px;
    --jlrow-gap: 40px;
    --jl-t-size: 20px;
    grid-column-gap: var(--jlcol-gap);
}
.jl_cslist_layout{
    display: block;
    position: relative;
}
.jl_cslist_layout .jl_li_in{
    gap: var(--jl-img-space);
}
.jl_cslist_layout .jl_img_holder{
    align-self: flex-start;
    display: block;
    overflow: hidden;
    -webkit-flex: 0 0 var(--jl-img-w);
    -ms-flex: 0 0 var(--jl-img-w);
    flex: 0 0 var(--jl-img-w);
    width: var(--jl-img-w);
    padding: 0px;
}
.jl_cslist_layout .jl_imgw{
    height: var(--jl-img-h);
    padding-bottom: 0px;
}
.jl_cslist_layout .jl_fe_title{
    font-size: var(--jl-t-size);
}
/*-------------------------------------------------------------------------------------
Layout mini list
-------------------------------------------------------------------------------------*/
.jl_mmlist_layout{
    display: block;
    position: relative;
}
.jl_li_in{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}
.jl_li_in .jl_fe_text{
    flex-grow: 1;
    width: 100%;
}
.jl_mmlistw{
    display: flex;
    position: relative;
}
.jl_mmlistc{
    display: block;
    width: 100%;
}
.jl_mmlist_layout .jl_img_holder{
    align-self: flex-start;
    display: block;
    -webkit-flex: 0 0 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
    padding: 0px;
    overflow: hidden;
}
.jl_mmlist_layout .jl_imgw{
    height: 80px;
    padding-bottom: 0px;
}
.jl_mmlist_layout .jl_fe_title{
    font-size: 17px;
}
@media only screen and (max-width: 1024px) {
    .jl_mmlist_layout .jl_img_holder{
        -webkit-flex: 0 0 70px;
        -ms-flex: 0 0 70px;
        flex: 0 0 70px;
        width: 70px;        
    }
    .jl_mmlist_layout .jl_imgw{
        height: 70px;        
    }
}
/*-------------------------------------------------------------------------------------
Large List
-------------------------------------------------------------------------------------*/
.jl_lg_opt{
    --jlrow-gap: 80px;
    --jl-algin-h: center;
    --jl-cap-w: 80%;
    --jl-title-size: 40px;
    --jl-img-space: 60%;
    --jl-background-space: -100px;
    --jl-backgroundright-space: -100px;
    width: 100%;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-row-gap: var(--jlrow-gap);    
}
.jl_lasep{
    position: relative;
}
.jl_lasep:after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: calc(var(--jlrow-gap) / 2 * -1);
    border-bottom: 1px solid var(--jl-post-line-color);
}
.jl_lg_op_in{
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: var(--jl-algin-h);
    text-align: var(--jl-algin-h);
}
.jl_lg_op_in .jl_f_cat, .jl_lg_op_in .jl_post_meta{
    justify-content: var(--jl-algin-h);
}
.jl_lg_op_in .jl_fe_text{
    max-width: var(--jl-cap-w);
    margin: 0 auto;
}
.jl_lg_op_in .jl_fe_title{
    font-size: var(--jl-title-size);
}
/* Layout 1 */
.jl_lg_l1 .jl_img_holder .jl_imgw{
    padding-bottom: var(--jl-img-space);
}
/* Layout 2 */
.jl_lg_l2 .jl_img_holder .jl_imgw{
    padding-bottom: var(--jl-img-space);
}
.jl_lg_l2 .jl_lg_op_in .jl_fe_text{
    position: relative;
    background: #fff;
    margin-top: var(--jl-background-space);
    padding: 30px 20px 0px 20px;
}
.jl_lg_l2 .jl_lg_op_in .jl_fe_text{
    max-width: calc(var(--jl-cap-w) - 30px);
}
/* Layout 3 */
.jl_lg_l3 .jl_img_holder .jl_imgw{
    padding-bottom: var(--jl-img-space);
}
.jl_lg_l3 .jl_fe_text.jl_fe_txt_bot{
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.jl_lg_l3 .jl_fe_text.jl_fe_txt_bot .jl_fe_des{
    margin: 0px;
}
.jl_lg_l3 .jl_fe_text.jl_fe_txt_bot .jl_cap_btn{
    margin: 0px auto;
    border-radius: 0px;
    background: transparent;
    border: 1px solid currentColor;
    display: flex;
    width: auto;
    justify-content: center;
}
.jl_lg_l3 .jl_fe_text.jl_fe_txt_bot .jl_cap_btn:hover{
    border-color: transparent !important;
}
/* Layout 4 */
.jl_lg_l4 .jl_img_holder .jl_imgw{
    padding-bottom: var(--jl-img-space);
}
.jl_lg_l4 .jl_img_holder{
    flex: 0 0 60%;
    max-width: 60%;
    width: 60%;
}
.jl_lg_l4 .jl_lg_op_in{
    flex-direction: row-reverse;
    align-items: center;
}
.jl_lg_l4 .jl_lg_op_in .jl_fe_text{
    padding: 30px;
    background: #fff;
    margin-right: var(--jl-backgroundright-space);
    position: relative;
}

/* Layout 5 */
.jl_lg_l5 .jl_img_holder .jl_imgw{
    padding-bottom: var(--jl-img-space);
}
.jl_lg_l5 .jl_img_holder{
    flex: 0 0 60%;
    max-width: 60%;
    width: 60%;
}
.jl_lg_l5 .jl_lg_op_in{
    flex-direction: row;
    align-items: center;
    gap: 0px;
}
.jl_lg_l5 .jl_lg_op_in .jl_fe_text{
    padding: 30px;    
    position: relative;
}
/*-------------------------------------------------------------------------------------
Layout overlay
-------------------------------------------------------------------------------------*/
.jl_ovg_w{
    --jl-num-col: 3;
    --jl-f-size: 20px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-img-height: 120%;
    --jl-col-gap: 30px;
    --jl-row-gap: 30px;
    --jl-padding: 40px;
    --jlc-car-radius: 0px;
}
.jl_grid_overlay .jl_cgrid_wrap{
    grid-template-columns: repeat(var(--jl-num-col),minmax(0,1fr));
    grid-column-gap: var(--jl-col-gap);
    grid-row-gap: var(--jl-row-gap);
}
.jl_ov_layout{
    position: relative;
    overflow: hidden;
    padding-bottom: var(--jl-img-height);
    border-radius: var(--jlc-car-radius);
}
.jl_ov_el:hover .jl_fe_title a{
    color: currentColor;
}
.jl_ov_el .jl_imgl{
    background: rgba(10,0,0,.35);
    z-index: 1;
}
.jl_ov_el .jl_img_holder{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.jl_ov_el .jl_img_holder .jl_imgw{
    height: 100%;
    padding-bottom: 0px !important;
}
.jl_ov_el .jl_fe_text{
    display: flex;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: var(--jl-padding);
    text-align: var(--jl-h-align);
    align-items: var(--jl-v-align);
    justify-content: var(--jl-h-align);
    z-index: 3;
    width: 100%;
    height: 100%;
}
.jl_ov_el .jl_fe_text .jl_cap_ov{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.jl_ov_el .jl_fe_text .jl_fe_title{
    font-size: var(--jl-f-size);
}
.jl_ov_el .jl_fe_text a, .jl_ov_el .jl_fe_text .jl_fe_title:hover a{
    color: #fff !important;
    position: relative;
    z-index: 9;
}
.jl_ov_el .jl_post_meta span, .jl_ov_el .jl_post_meta a, .jl_ov_el .jl_post_meta a:hover{
    color: #FFF !important;
}

/* Overlay text line */
.jl_fr1_inner .jl_p_fr1 .jl_fe_text .jl_fe_title,
.jl_fr2_inner .jl_p_fr2 .jl_fe_text .jl_fe_title,
.jl_fr3_inner .jl_p_fr3 .jl_fe_text .jl_fe_title,
.jl_fr4_inner .jl_p_fr4 .jl_fe_text .jl_fe_title,
.jl_fr19_inner .jl_p_fr19 .jl_fe_text .jl_fe_title,
.jl_fr20_inner .jl_p_fr20 .jl_fe_text .jl_fe_title{
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff !important;
}
@media only screen and (max-width: 767px) {
    .jl_fr1_inner .jl_p_fr1 .jl_fe_text .jl_fe_title,
    .jl_fr2_inner .jl_p_fr2 .jl_fe_text .jl_fe_title,
    .jl_fr3_inner .jl_p_fr3 .jl_fe_text .jl_fe_title,
    .jl_fr4_inner .jl_p_fr4 .jl_fe_text .jl_fe_title,
    .jl_fr19_inner .jl_p_fr19 .jl_fe_text .jl_fe_title,
    .jl_fr20_inner .jl_p_fr20 .jl_fe_text .jl_fe_title{
        -webkit-line-clamp: 3;
    }
}

/*-------------------------------------------------------------------------------------
Layout 1 mian + 2 small
-------------------------------------------------------------------------------------*/
.jl_fr1_inner{
    --jl-main-h: 70%;
    --jl-small-h: 70%;
    --jl-padding-main: 40px;
    --jl-padding-small: 30px;
    --jl-font-main: 30px;
    --jl-font-small: 20px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-grid-gap: 30px;
    --jlc-car-radius: 0px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item1 item2"
        "item1 item3";
    grid-template-columns: 66.66666% 1fr;
    grid-template-rows: 1fr 1fr;
}
.jl_fr1_inner .jl_p_fr1{
    overflow: hidden;
    flex: 1;
    position: relative;
    padding-bottom: var(--jl-small-h);
    border-radius: var(--jlc-car-radius);
}
.jl_fr1_inner .jl_p_fr1.jl_m_fr1{
    padding-bottom: var(--jl-main-h);
}
.jl_fr1_inner .jl_p_fr1.jl_m_fr1 .jl_fe_text{
    padding: var(--jl-padding-main);
}
.jl_fr1_inner .jl_p_fr1 .jl_fe_text{
    padding: var(--jl-padding-small);
}
.jl_fr1_inner .jl_p_fr1:nth-child(1){
    grid-area: item1;
}
.jl_fr1_inner .jl_p_fr1:nth-child(2){
    grid-area: item2;
}
.jl_fr1_inner .jl_p_fr1:nth-child(3){
    grid-area: item3;
}
.jl_fr1_inner .jl_p_fr1:nth-child(1)  .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr1_inner .jl_p_fr1 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);    
}
/*-------------------------------------------------------------------------------------
Layout 1 mian + 4 small
-------------------------------------------------------------------------------------*/
.jl_fr2_inner{
    --jl-main-h: 100%;
    --jl-small-h: 100%;
    --jl-padding-main: 40px;
    --jl-padding-small: 30px;
    --jl-font-main: 30px;
    --jl-font-small: 20px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-grid-gap: 30px;
    --jlc-car-radius: 0px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item1 item2 item3"
        "item1 item4 item5";
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.jl_fr2_inner .jl_p_fr2{
    padding-bottom: var(--jl-small-h);
}
.jl_fr2_inner .jl_p_fr2.jl_m_fr2{
    padding-bottom: var(--jl-main-h);
}
.jl_fr2_inner .jl_p_fr2{
    overflow: hidden;
    flex: 1;
    position: relative;
    border-radius: var(--jlc-car-radius);
}
.jl_fr2_inner .jl_p_fr2.jl_m_fr2 .jl_fe_text{
    padding: var(--jl-padding-main);
}
.jl_fr2_inner .jl_p_fr2 .jl_fe_text{
    padding: var(--jl-padding-small);
}
.jl_fr2_inner .jl_p_fr2:nth-child(1){
    grid-area: item1;
}
.jl_fr2_inner .jl_p_fr2:nth-child(2){
    grid-area: item2;
}
.jl_fr2_inner .jl_p_fr2:nth-child(3){
    grid-area: item3;
}
.jl_fr2_inner .jl_p_fr2:nth-child(4){
    grid-area: item4;
}
.jl_fr2_inner .jl_p_fr2:nth-child(5){
    grid-area: item5;
}
.jl_fr2_inner .jl_p_fr2:nth-child(1)  .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr2_inner .jl_p_fr2 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
/*-------------------------------------------------------------------------------------
Layout 1 mian + 2 small below
-------------------------------------------------------------------------------------*/
.jl_fr3_inner{
    --jl-main-h: 50%;
    --jl-small-h: 70%;
    --jl-padding-main: 40px;
    --jl-padding-small: 30px;
    --jl-font-main: 35px;
    --jl-font-small: 23px;
    --jl-h-align: center;
    --jl-v-align: center;
    --jl-grid-gap: 2px;
    --jlc-car-radius: 0px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item1 item1"
        "item2 item3";
    grid-template-columns: 1fr 1fr;
}
.jl_fr3_inner .jl_p_fr3:nth-child(2){
    grid-area: item2;
}
.jl_fr3_inner .jl_p_fr3:nth-child(3){
    grid-area: item3;
}
.jl_fr3_inner .jl_p_fr3.jl_m_fr3 .jl_fe_text{
    padding: var(--jl-padding-main);
}
.jl_fr3_inner .jl_p_fr3 .jl_fe_text{
    padding: var(--jl-padding-small);
}
.jl_fr3_inner .jl_m_fr3.jl_p_fr3{
    grid-area: item1;
    padding-bottom: var(--jl-main-h);
}
.jl_fr3_inner .jl_p_fr3{
    flex: 1;
    position: relative;
    padding-bottom: var(--jl-small-h);
    border-radius: var(--jlc-car-radius);
    overflow: hidden;
}
.jl_fr3_inner .jl_p_fr3:nth-child(1)  .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr3_inner .jl_p_fr3 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
/*-------------------------------------------------------------------------------------
Layout 1 mian + 2 small right
-------------------------------------------------------------------------------------*/
.jl_fr4_inner{
    --jl-main-h: 100%;
    --jl-small-h: 100%;
    --jl-padding-main: 40px;
    --jl-padding-small: 30px;
    --jl-font-main: 35px;
    --jl-font-small: 23px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-grid-gap: 2px;
    --jlc-car-radius: 0px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:"item1 item2 item3";
    grid-template-columns: 45% 1fr 1fr;
    grid-template-rows: 1fr;
}
.jl_fr4_inner .jl_p_fr4.jl_m_fr4{
    grid-area: item1;
}
.jl_fr4_inner .jl_p_fr4.jl_m_fr4 .jl_fe_text{
    padding: var(--jl-padding-main);
}
.jl_fr4_inner .jl_p_fr4 .jl_fe_text{
    padding: var(--jl-padding-small);
}
.jl_fr4_inner .jl_p_fr4:nth-child(2){
    grid-area: item2;
}
.jl_fr4_inner .jl_p_fr4:nth-child(3){
    grid-area: item3;
}
.jl_fr4_inner .jl_p_fr4{
    flex: 1;
    position: relative;
    padding-bottom: var(--jl-small-h);
    border-radius: var(--jlc-car-radius);
    overflow: hidden;
}
.jl_fr4_inner .jl_p_fr4.jl_m_fr4{
    padding-bottom: var(--jl-main-h);
}
.jl_fr4_inner .jl_p_fr4:nth-child(1)  .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr4_inner .jl_p_fr4 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
/*-------------------------------------------------------------------------------------
Layout 1 mian + right small
-------------------------------------------------------------------------------------*/
.jl_fr5_inner{
    --jl-main-w: 56%;
    --jl-padding-main: 40px;
    --jl-font-main: 40px;
    --jl-font-small: 20px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-grid-gap: 30px;
    --jl-imgli-w: 140px;
    --jl-imgli-h: 110px;
    --jl-imgli-gap: 20px;
    --jl-sm-row-gap: 35px;
    width: 100%;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-columns: var(--jl-main-w) 1fr;
    grid-template-rows: 1fr;
}
.jl_fr5_inner .jl_p_fr5{
    flex: 1;
    position: relative;
    height: 100%;
    overflow: visible;
}
.jl_hide_col_line .jl_fr5_inner .jl_m_fr5:after{
    display: none;
}
.jl_fr5_inner .jl_m_fr5:after{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jl-grid-gap) / 2 * -1);
}
.jl_fr5_inner .jl_p_fr5 .jl_fe_text{
    padding: var(--jl-padding-main);
}
.jl_fr5_inner .jl_p_fr5 .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr5_inner .jl_fe_title{
    font-size: var(--jl-font-small);
}
.jl_fr5_inner .jl_cslist_layout .jl_img_holder{
    -webkit-flex: 0 0 var(--jl-imgli-w);
    -ms-flex: 0 0 var(--jl-imgli-w);
    flex: 0 0 var(--jl-imgli-w);
    width: var(--jl-imgli-w);
}
.jl_fr5_inner .jl_cslist_layout .jl_imgw{
    height: var(--jl-imgli-h);
    padding-bottom: 0px;
}
.jl_fr5_inner .jl_fli_wrap{
    --jlrow-gap: var(--jl-sm-row-gap);
}
.jl_fr5_inner .jl_fli_wrap .jl_cslist_layout .jl_li_in{
    gap: var(--jl-imgli-gap);
}

.jl_fli_wrap{
    --jlrow-gap: 60px;
    width: 100%;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-row-gap: var(--jlrow-gap);
}
.jl_lisep, .jl_risep{
    position: relative;
}
.jl_lisep:after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: calc(var(--jlrow-gap) / 2 * -1);
    border-bottom: 1px solid var(--jl-post-line-color);
}
.jl_risep:before{
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    right: calc(var(--jlcol-gap) / 2 * -1);
    border-right: 1px solid var(--jl-post-line-color);
}
.jl_xsgrid .jl_fli_wrap{
    --jlrow-gap: 35px;
    --jlcol-gap: 30px;
    grid-column-gap: var(--jlcol-gap);
}
.jl_xsgrid .jl_fli_wrap .jl_risep:before{
    height: calc(100% + var(--jlrow-gap));
}
.jl_li_num {
    counter-increment: item 1;
}
.jl_show_num .jl_li_num .jl_li_lbl{
    opacity: 1;
}
.jl_li_num .jl_li_lbl{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: #fff;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.25);
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    font-size: 25px;
    opacity: 0;
}
.jl_li_num .jl_li_lbl:before {
    content: counter(item);
}
/*Light mode text*/
.jl_light_mode .jl_f_cat .jl_cat_txt,
.jl_tline .jl_light_mode .jl_fe_title a,
.jl_tline .jl_light_mode .jl_fe_title,
.jl_tcolor .jl_light_mode .jl_fe_title a,
.jl_uline .jl_light_mode .jl_fe_title a,
.jl_light_mode .jl_post_meta span a{
    color: var(--jl-txt-light) !important;
}
.jl_light_mode .jl_fe_des{
    color: var(--jl-desc-light) !important;
}
.jl_light_mode .jl_post_meta span{
    color: var(--jl-meta-light) !important;
}
/*-------------------------------------------------------------------------------------
Layout 1 mian + 4 grid post
-------------------------------------------------------------------------------------*/
.jl_fr6_inner{
    --jl-padding-main: 40px;
    --jl-font-main: 30px;
    --jl-font-small: 20px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-grid-gap: 30px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item1 item2 item3"
        "item1 item4 item5";
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    overflow: hidden;
}
.jl_fr6_inner .jl_m_fr6{
    height: 100%;
}
.jl_hide_col_line .jl_p_fr6:before, .jl_hide_col_line .jl_p_fr6:after{
    display: none;
}
.jl_fr6_inner .jl_m_fr6:after{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jl-grid-gap) / 2 * -1);
}
.jl_fr6_inner .jl_cgrid_layout:before{
    content: '';
    position: absolute;
    top: 0;
    height: calc(100% + var(--jl-grid-gap));
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jl-grid-gap) / 2 * -1);
}
.jl_fr6_inner .jl_cgrid_layout:after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: calc(var(--jl-grid-gap) / 2 * -1);
    border-bottom: 1px solid var(--jl-post-line-color);
}
.jl_fr6_inner .jl_m_fr6 .jl_fe_text {
    padding: var(--jl-padding-main);
}
.jl_fr6_inner .jl_p_fr6{
    overflow: visible;
    flex: 1;
    position: relative;
}
.jl_fr6_inner .jl_p_fr6:nth-child(1){
    grid-area: item1;
}
.jl_fr6_inner .jl_p_fr6:nth-child(2){
    grid-area: item2;
}
.jl_fr6_inner .jl_p_fr6:nth-child(3){
    grid-area: item3;
}
.jl_fr6_inner .jl_p_fr6:nth-child(4){
    grid-area: item4;
}
.jl_fr6_inner .jl_p_fr6:nth-child(5){
    grid-area: item5;
}
.jl_fr6_inner .jl_p_fr6:nth-child(1) .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr6_inner .jl_p_fr6 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
/*-------------------------------------------------------------------------------------
Layout classic 1 mian + 4 grid post
-------------------------------------------------------------------------------------*/
.jl_fr7_inner{
    --jl-padding-main: 40px;
    --jl-font-main: 30px;
    --jl-font-small: 20px;
    --jl-grid-gap: 30px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item1 item2 item3"
        "item1 item4 item5";
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    overflow: hidden;
}
.jl_fr7_inner .jl_m_fr7_inner{
    height: 100%;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
}
.jl_hide_col_line .jl_p_fr7:before, .jl_hide_col_line .jl_p_fr7:after{
    display: none;
}
.jl_fr7_inner .jl_m_fr7:after{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jl-grid-gap) / 2 * -1);
}
.jl_fr7_inner .jl_cgrid_layout:before{
    content: '';
    position: absolute;
    top: 0;
    height: calc(100% + var(--jl-grid-gap));
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jl-grid-gap) / 2 * -1);
}
.jl_fr7_inner .jl_cgrid_layout:after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: calc(var(--jl-grid-gap) / 2 * -1);
    border-bottom: 1px solid var(--jl-post-line-color);
}
.jl_fr7_inner .jl_p_fr7.jl_m_fr7 .jl_imgw{
    padding-bottom: 0px;
    align-items: stretch;
    display: flex;
    height: 100%;
    margin-bottom: 0px;
}
.jl_fr7_inner .jl_p_fr7.jl_m_fr7 .jl_fe_text .jl_fe_title {
    font-size: var(--jl-font-main);
}
.jl_fr7_inner .jl_p_fr7{
    overflow: visible;
    flex: 1;
    position: relative;
}
.jl_fr7_inner .jl_p_fr7:nth-child(1){
    grid-area: item1;
}
.jl_fr7_inner .jl_p_fr7:nth-child(2){
    grid-area: item2;
}
.jl_fr7_inner .jl_p_fr7:nth-child(3){
    grid-area: item3;
}
.jl_fr7_inner .jl_p_fr7:nth-child(4){
    grid-area: item4;
}
.jl_fr7_inner .jl_p_fr7:nth-child(5){
    grid-area: item5;
}
.jl_fr7_inner .jl_p_fr7 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
/*-------------------------------------------------------------------------------------
Layout Classic mian + right small
-------------------------------------------------------------------------------------*/
.jl_fr8_inner{
    --jl-main-w: 56%;
    --jl-font-main: 30px;
    --jl-font-small: 20px;
    --jl-grid-gap: 30px;
    --jl-imgli-w: 140px;
    --jl-imgli-h: 140px;
    --jl-imgli-gap: 20px;
    --jl-sm-row-gap: 35px;
    width: 100%;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-columns: var(--jl-main-w) 1fr;
    grid-template-rows: 1fr;
}
.jl_fr8_inner .jl_fli_con{
    width: 100%;
}
.jl_fr8_inner .jl_p_fr8{
    height: 100%;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.jl_hide_col_line .jl_fr8_inner .jl_p_fr8:after{
    display: none;
}
.jl_fr8_inner .jl_p_fr8:after{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jl-grid-gap) / 2 * -1);
}
.jl_fr8_inner .jl_p_fr8 .jl_imgw {
    padding-bottom: 0px;
    align-items: stretch;
    display: flex;
    height: 100%;
    margin-bottom: 0px;
}
.jl_fr8_inner .jl_p_fr8 .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr8_inner .jl_fe_title{
    font-size: var(--jl-font-small);
}
.jl_fr8_inner .jl_cslist_layout .jl_img_holder{
    -webkit-flex: 0 0 var(--jl-imgli-w);
    -ms-flex: 0 0 var(--jl-imgli-w);
    flex: 0 0 var(--jl-imgli-w);
    width: var(--jl-imgli-w);
}
.jl_fr8_inner .jl_cslist_layout .jl_imgw{
    height: var(--jl-imgli-h);
    padding-bottom: 0px;
}
.jl_fr8_inner .jl_fli_wrap{
    --jlrow-gap: var(--jl-sm-row-gap);
}
.jl_fr8_inner .jl_fli_wrap .jl_cslist_layout .jl_li_in{
    gap: var(--jl-imgli-gap);
}
/*-------------------------------------------------------------------------------------
Layout Overlay + Overlay List Small
-------------------------------------------------------------------------------------*/
.jl_fr9_inner{
    --st-max-width: 1200px;
    --st-max-height: 550px;
    --st-cap-width: 60%;
    --st-cap-space: 100px;
    --st-padding: 20px;
    --st-main-size: 45px;
    --st-tab-size: 16px;
    --st-rounded-mian: 0px;
    --st-rounded-tab: 100px;
    width: 100%;
    height: var(--st-max-height);
    position: relative;
    overflow: hidden;
    border-radius: var(--st-rounded-mian);
    background: #222;
}
.jl_fr9_inner .jl_fli_con{
    width: 100%;
    max-width: var(--st-max-width);
    position: absolute;
    margin: 0 auto;
    padding: 0px var(--st-padding);
    right: 0px;
    left: 0px;
    bottom: 40px;
    z-index: 2;
}
.jl_fr9_inner .jl_fli_wrap{
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 25px;
}
.jl_fr9_inner .jl_p_img.jl_imgw {
    padding-bottom: 0px;
    height: 100%;
}
.jl_fr9_inner .jl_imgm_holder{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.jl_fr9_inner .jl_imgw.jl_p_img .jl_imgin img{
    transform: scale(1.051);
}
.jl_fr9_inner .jl_imgw.jl_p_img .jl_imgl{
    background: rgba(10,0,0,.35);
}
.jl_fr9_inner .jl_fe_main{
    margin-bottom: var(--st-cap-space);
    max-width: var(--st-cap-width);
}
.jl_fr9_inner .jl_fe_main .jl_fe_title{
    font-size: var(--st-main-size);
}
.jl_fr9_inner .jl_fe_text a{
    color: #fff !important;
}
.jl_fr9_inner .jl_fe_text .jl_imgl{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.jl_fr9_inner .jl_fe_title{
    font-size: var(--st-tab-size);
    color: #fff;
}
.jl_fr9_inner .jl_fe_title a{
    color: currentColor !important;
}
.jl_fr9_inner .jl_cslist_layout .jl_img_holder{
    -webkit-flex: 0 0 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
    border-radius: var(--st-rounded-tab);
    position: relative;
    z-index: 2;
}
.jl_fr9_inner .jl_cslist_layout .jl_imgw{
    height: 80px;
    padding-bottom: 0px;
}
.jl_fr9_inner .jl_fli_wrap .jl_cslist_layout .jl_li_in{
    gap: 15px;
}
.jl_fr9_inner .jl_post_meta span, .jl_fr9_inner .jl_fe_des{
    color: #fff !important;
}
/*-------------------------------------------------------------------------------------
Overlay Mix + Samll List
-------------------------------------------------------------------------------------*/
.jl_fr10_inner{
    --jl-padding-main: 40px;
    --jl-padding-grid: 30px;
    --jl-font-main: 30px;
    --jl-font-grid: 20px;
    --jl-font-small: 17px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-grid-gap: 30px;
    --jl-sm-row-gap: 35px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item2 item1 item4"
        "item3 item1 item4";
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.jl_fr10_inner .jl_m_fr10{
    padding-bottom: 0%;
    height: 100%;
}
.jl_fr10_inner .jl_m_fr10 .jl_fe_text{
    padding: var(--jl-padding-main);
}
.jl_fr10_inner .jl_md_ov .jl_fe_text{
    padding: var(--jl-padding-grid);
}
.jl_fr10_inner .jl_p_fr10{
    overflow: hidden;
    flex: 1;
    position: relative;
}
.jl_fr10_inner .jl_p_fr10:nth-child(1){
    grid-area: item1;
}
.jl_fr10_inner .jl_p_fr10:nth-child(2){
    grid-area: item2;
}
.jl_fr10_inner .jl_p_fr10:nth-child(3){
    grid-area: item3;
}
.jl_fr10_inner .jl_p_fr10:nth-child(4){
    grid-area: item4;
}
.jl_fr10_inner .jl_p_fr10:nth-child(1) .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr10_inner .jl_p_fr10 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-grid);
}
.jl_fr10_inner .jl_mmlist_layout .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
.jl_fr10_inner .jl_cslist_layout .jl_img_holder{
    -webkit-flex: 0 0 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
}
.jl_fr10_inner .jl_cslist_layout .jl_imgw{
    height: 80px;
    padding-bottom: 0px;
}
.jl_fr10_inner .jl_fe_des{
    color: #fff;
    opacity: .7;
}
.jl_fr10_inner .jl_fli_wrap{
    --jlrow-gap: var(--jl-sm-row-gap);
}
.jl_fr10_inner .jl_mmlist_layout .jl_imgw.jl_radus_e{
    border-radius: var(--st-rounded-sm);
}
/*-------------------------------------------------------------------------------------
Layout main + below small
-------------------------------------------------------------------------------------*/
.jl_fr11_inner{
    --jl-font-main: 30px;
    --jl-font-small: 17px;
    --jl-grid-gap: 30px;
    --jl-sm-row-gap: 20px;
    width: 100%;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-template-rows: 1fr;
}
.jl_fr11_inner .jl_fli_con{
    width: 100%;
}
.jl_fr11_inner .jl_p_fr11{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.jl_fr11_inner .jl_p_fr11 .jl_imgc{
    flex: 0 0 60%;
    max-width: 60%;
    width: 60%;
}
.jl_fr11_inner .jl_p_fr11 .jl_fe_text{
    background: var(--jl-bg-color);
    margin-left: -70px;
    position: relative;
    padding: 30px;
}
.jl_fr11_inner .jl_p_fr11 .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr11_inner .jl_fe_title{
    font-size: var(--jl-font-small);
}
.jl_fr11_inner .jl_fli_wrap{
    --jlrow-gap: var(--jl-sm-row-gap);
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: var(--jlrow-gap);
}
.jl_fr11_inner .jl_cslist_layout .jl_img_holder{
    -webkit-flex: 0 0 140px;
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
    width: 140px;
}
.jl_fr11_inner .jl_cslist_layout .jl_imgw{
    height: 140px;
    padding-bottom: 0px;
}
.jl_fr11_inner .jl_fli_wrap .jl_cslist_layout .jl_li_in{
    gap: 20px;
}
.jl_fr11_inner .jl_mmlist_layout .jl_imgw.jl_radus_e{
    border-radius: var(--st-rounded-sm);
}

/*-------------------------------------------------------------------------------------
Layout main + below grid
-------------------------------------------------------------------------------------*/
.jl_fr12_inner{
    --jl-font-main: 30px;
    --jl-font-small: 20px;
    --jl-grid-gap: 40px;
    --jl-sm-row-gap: 30px;
    width: 100%;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-template-rows: 1fr;
}
.jl_fr12_inner .jl_fli_con{
    width: 100%;
}
.jl_fr12_inner .jl_p_fr12{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.jl_fr12_inner .jl_p_fr12 .jl_imgc{
    flex: 0 0 60%;
    max-width: 60%;
    width: 60%;
}
.jl_fr12_inner .jl_p_fr12 .jl_fe_text{
    background: var(--jl-bg-color);
    margin-left: -70px;
    position: relative;
    padding: 30px;
}
.jl_fr12_inner .jl_p_fr12 .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr12_inner .jl_fe_title{
    font-size: var(--jl-font-small);
}
.jl_fr12_inner .jl_fli_wrap{
    --jlrow-gap: var(--jl-sm-row-gap);
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: var(--jlrow-gap);
}
/*-------------------------------------------------------------------------------------
Mix Classic + Samll List
-------------------------------------------------------------------------------------*/
.jl_fr13_inner{
    --jl-font-main: 30px;
    --jl-font-grid: 20px;
    --jl-font-small: 17px;
    --jl-grid-gap: 30px;
    --jl-sm-row-gap: 30px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item2 item1 item4"
        "item3 item1 item4";
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    overflow: hidden;
}
.jl_fr13_inner .jl_m_fr13{
    padding-bottom: 0%;
    height: 100%;
}
.jl_m_fr13_inner, .jl_p_fr13_inner{
    height: 100%;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
}
.jl_fr13_inner .jl_m_fr13 .jl_imgw, .jl_fr13_inner .jl_p_fr13_inner .jl_imgw{
    padding-bottom: 0px;
    align-items: stretch;
    display: flex;
    height: 100%;
    margin-bottom: 0px;
}


.jl_hide_col_line .jl_p_fr13:before, .jl_hide_col_line .jl_p_fr13:after{
    display: none;
}
.jl_fr13_inner .jl_p_fr13:nth-child(1):before{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    border-left: 1px solid var(--jl-post-line-color);
    left: calc(var(--jl-grid-gap) / 2 * -1);
}
.jl_fr13_inner .jl_p_fr13:nth-child(1):after{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jl-grid-gap) / 2 * -1);
}

.jl_fr13_inner .jl_p_fr13:nth-child(2):after, .jl_fr13_inner .jl_p_fr13:nth-child(3):after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: calc(var(--jl-grid-gap) / 2 * -1);
    border-bottom: 1px solid var(--jl-post-line-color);
}




.jl_fr13_inner .jl_p_fr13{
    flex: 1;
    position: relative;
}
.jl_fr13_inner .jl_p_fr13:nth-child(1){
    grid-area: item1;
}
.jl_fr13_inner .jl_p_fr13:nth-child(2){
    grid-area: item2;
}
.jl_fr13_inner .jl_p_fr13:nth-child(3){
    grid-area: item3;
}
.jl_fr13_inner .jl_p_fr13:nth-child(4){
    grid-area: item4;
}
.jl_fr13_inner .jl_p_fr13:nth-child(1) .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr13_inner .jl_p_fr13 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-grid);
}
.jl_fr13_inner .jl_mmlist_layout .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
.jl_fr13_inner .jl_cslist_layout .jl_img_holder{
    -webkit-flex: 0 0 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
    border-radius: 100px;
}
.jl_fr13_inner .jl_cslist_layout .jl_imgw{
    height: 80px;
    padding-bottom: 0px;
}
.jl_fr13_inner .jl_fli_wrap{
    --jlrow-gap: var(--jl-sm-row-gap);
}
.jl_fr13_inner .jl_mmlist_layout .jl_imgw.jl_radus_e{
    border-radius: var(--st-rounded-sm);
}
/*-------------------------------------------------------------------------------------
Mix Classic Layout
-------------------------------------------------------------------------------------*/
.jl_fr14_inner{
    --jl-font-main: 30px;
    --jl-font-grid: 17px;
    --jl-grid-gap: 30px;
    --jl-main-padding: 30px;
    --jl-grid-padding: 20px;
    --align-text-layout: center;
    --jl-img-gap: 0px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item2 item1 item4"
        "item3 item1 item5";
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.jl_fr14_inner .jl_m_fr14{
    padding-bottom: 0%;
    height: 100%;
}
.jl_m_fr14_inner, .jl_p_fr14_inner{
    height: 100%;
    width: 100%;
    display: flex;
    gap: 0px;
    flex-direction: column;
    justify-content: space-between;
}
.jl_fr14_inner .jl_m_fr14 .jl_imgw, .jl_fr14_inner .jl_p_fr14_inner .jl_imgw{
    align-items: stretch;
    display: flex;
    height: 100%;
    margin-bottom: var(--jl-img-gap);
    padding-bottom: 60%;
}
.jl_fr14_inner .jl_p_fr14{
    overflow: hidden;
    flex: 1;
    position: relative;
}
.jl_fr14_inner .jl_p_fr14:nth-child(1){
    grid-area: item1;
}
.jl_fr14_inner .jl_p_fr14:nth-child(2){
    grid-area: item2;
}
.jl_fr14_inner .jl_p_fr14:nth-child(3){
    grid-area: item3;
}
.jl_fr14_inner .jl_p_fr14:nth-child(4){
    grid-area: item4;
}
.jl_fr14_inner .jl_p_fr14:nth-child(5){
    grid-area: item5;
}
.jl_fr14_inner .jl_p_fr14:nth-child(1) .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr14_inner .jl_p_fr14 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-grid);
}
.jl_fr14_inner .jl_f_cat, .jl_fr14_inner .jl_post_meta{
    justify-content: var(--align-text-layout);
}
.jl_fr14_inner .jl_fe_text{
    padding: var(--jl-grid-padding);
    text-align: var(--align-text-layout);
}
.jl_fr14_inner .jl_m_fr14 .jl_fe_text{    
    padding: var(--jl-main-padding);
    border: 1px solid var(--jl-post-line-color);
}
.jl_fr14_inner .jl_cgrid_layout .jl_fe_text{
    border: 1px solid var(--jl-post-line-color);
}
.jl_fr14_inner .jl_m_fr14 .jl_fe_text a,
.jl_fr14_inner .jl_m_fr14 .jl_fe_text .jl_fe_title:hover a,
.jl_fr14_inner .jl_m_fr14 .jl_post_meta span,
.jl_fr14_inner .jl_m_fr14 .jl_post_meta a,
.jl_fr14_inner .jl_m_fr14 .jl_post_meta a:hover,
.jl_fr14_inner .jl_m_fr14 .jl_fe_des{
    color: var(--jl-cap-color) !important;
}
/*-------------------------------------------------------------------------------------
Small Main + Right List
-------------------------------------------------------------------------------------*/
.jl_contain_mix{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 30px;
}
.jl_fr15_wrap{
    --jl-main-gap: 30px;
    --jl-small-gap: 35px;
    --jl-main-font: 23px;
    --jl-small-font: 17px;
}
.jl_fr15_inner{
    width: 100%;
    display: grid;
    grid-gap: var(--jl-main-gap);
    grid-template-columns: 50% 1fr;
    grid-template-rows: 1fr;
}
.jl_fr15_inner .jl_fli_con{
    width: 100%;
}
.jl_fr15_inner .jl_p_fr15 .jl_imgw {
    margin-bottom: 20px;
}
.jl_fr15_inner .jl_cgrid_layout .jl_fe_title{
    font-size: var(--jl-main-font);
}
.jl_fr15_inner .jl_fe_title{
    font-size: var(--jl-small-font);
}
.jl_fr15_inner .jl_fli_wrap{
    --jlrow-gap: var(--jl-small-gap);
    grid-row-gap: var(--jlrow-gap);
}
/*-------------------------------------------------------------------------------------
Small Main + below 2 col
-------------------------------------------------------------------------------------*/
.jl_frlig_wrap{
    --jl-main-gap: 30px;
    --jl-small-gap: 35px;
    --jl-main-font: 23px;
    --jl-small-font: 17px;
}
.jl_frlig_inner{
    width: 100%;
    display: grid;
    grid-gap: var(--jl-main-gap);
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.jl_frlig_inner .jl_cgrid_layout .jl_imgw{
    margin-bottom: 0px;
}
.jl_frlig_inner .jl_cgrid_layout{
    display: grid;
    grid-gap: var(--jl-main-gap);
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
}
.jl_frlig_inner .jl_fli_con{
    width: 100%;
}
.jl_frlig_inner .jl_p_frlig .jl_imgw {
    margin-bottom: 20px;
}
.jl_frlig_inner .jl_cgrid_layout .jl_fe_title{
    font-size: var(--jl-main-font);
}
.jl_frlig_inner .jl_fe_title{
    font-size: var(--jl-small-font);
}
.jl_frlig_inner .jl_fli_wrap{
    --jlrow-gap: var(--jl-small-gap);
    grid-row-gap: var(--jlrow-gap);
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--jl-main-gap);

}
/*-------------------------------------------------------------------------------------
Small Main + Below List
-------------------------------------------------------------------------------------*/
.jl_fr16_inner{
    --jlrow-gap: 30px;
    width: 100%;
    display: grid;
    grid-gap: var(--jlrow-gap);
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-template-rows: 1fr;
    overflow: hidden;
}
.jl_fr16_inner .jl_fli_con{
    width: 100%;
}
.jl_fr16_inner .jl_cgrid_layout .jl_fe_title{
    font-size: 23px;
}
.jl_fr16_inner .jl_fe_title{
    font-size: 17px;
}
/*-------------------------------------------------------------------------------------
Small 2Main + Below List
-------------------------------------------------------------------------------------*/
.jl_fr17_wrap{
    --jl-main-gap: 30px;
    --jl-small-gap: 35px;
    --jl-main-font: 23px;
    --jl-small-font: 17px;
}
.jl_fr17_inner{
    width: 100%;
    display: grid;
    grid-column-gap: var(--jl-main-gap);
    grid-row-gap: var(--jl-small-gap);
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-template-rows: 1fr;
    overflow: hidden;
}
.jl_fr17_inner .jl_fli_con{
    width: 100%;
}
.jl_fr17_inner .jl_cgrid_layout .jl_fe_title{
    font-size: var(--jl-main-font);
}
.jl_fr17_inner .jl_fe_title{
    font-size: var(--jl-small-font);
}
.jl_fr17_inner .jl_lisep{
    --jlrow-gap: var(--jl-small-gap);
}
/*-------------------------------------------------------------------------------------
Layout classic 1 mian + 2 grid post
-------------------------------------------------------------------------------------*/
.jl_fr18_inner{
    --jl-padding-main: 40px;
    --jl-font-main: 45px;
    --jl-font-small: 23px;
    --jl-grid-gap: 30px;
    --jl-h-align: center;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item1 item2"
        "item1 item3";
    grid-template-columns: 67% 1fr;
    grid-template-rows: 1fr 1fr;
    overflow: hidden;
}
.jl_hide_col_line .jl_fr18_inner .jl_p_fr18:after{
    display: none;
}
.jl_fr18_inner .jl_m_fr18:after{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jl-grid-gap) / 2 * -1);
}
.jl_fr18_inner .jl_cgrid_layout:after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: calc(var(--jl-grid-gap) / 2 * -1);
    border-bottom: 1px solid var(--jl-post-line-color);
}
.jl_fr18_inner .jl_m_fr18_inner{
    height: 100%;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
}
.jl_fr18_inner .jl_p_fr18.jl_m_fr18 .jl_imgw{
    padding-bottom: 0px;
    align-items: stretch;
    display: flex;
    height: 100%;
    margin-bottom: 0px;
}
.jl_fr18_inner .jl_fe_text{
    text-align: var(--jl-h-align);
    padding-left: var(--jl-cap-gap);
    padding-right: var(--jl-cap-gap);
}
.jl_fr18_inner .jl_p_fr18.jl_m_fr18 .jl_fe_text .jl_fe_title {
    font-size: var(--jl-font-main);
}
.jl_fr18_inner .jl_p_fr18{
    overflow: visible;
    flex: 1;
    position: relative;
}
.jl_fr18_inner .jl_p_fr18:nth-child(1){
    grid-area: item1;
}
.jl_fr18_inner .jl_p_fr18:nth-child(2){
    grid-area: item2;
}
.jl_fr18_inner .jl_p_fr18:nth-child(3){
    grid-area: item3;
}
.jl_fr18_inner .jl_p_fr18 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
/*-------------------------------------------------------------------------------------
Layout 19
-------------------------------------------------------------------------------------*/
.jl_fr19_inner{
    --jl-main-h: 100%;
    --jl-small-h: 40%;
    --jl-padding-main: 40px;    
    --jl-padding-small: 30px;
    --jl-font-main: 30px;
    --jl-font-medium: 20px;
    --jl-font-small: 20px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-grid-gap: 5px;
    --jlc-car-radius: 0px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item1 item2 item2"
        "item1 item3 item4";
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.jl_fr19_inner .jl_p_fr19{
    padding-bottom: var(--jl-small-h);
}
.jl_fr19_inner .jl_p_fr19.jl_m_fr19{
    padding-bottom: var(--jl-main-h);
}
.jl_fr19_inner .jl_p_fr19{
    overflow: hidden;
    flex: 1;
    position: relative;
    border-radius: var(--jlc-car-radius);
}
.jl_fr19_inner .jl_p_fr19.jl_m_fr19 .jl_fe_text{
    padding: var(--jl-padding-main);
}
.jl_fr19_inner .jl_p_fr19 .jl_fe_text{
    padding: var(--jl-padding-small);
}
.jl_fr19_inner .jl_p_fr19:nth-child(1){
    grid-area: item1;
}
.jl_fr19_inner .jl_p_fr19:nth-child(2){
    grid-area: item2;
}
.jl_fr19_inner .jl_p_fr19:nth-child(3){
    grid-area: item3;
}
.jl_fr19_inner .jl_p_fr19:nth-child(4){
    grid-area: item4;
}
.jl_fr19_inner .jl_p_fr19:nth-child(5){
    grid-area: item5;
}
.jl_fr19_inner .jl_p_fr19:nth-child(1)  .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr19_inner .jl_p_fr19:nth-child(2)  .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-medium);
}
.jl_fr19_inner .jl_p_fr19 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
/*-------------------------------------------------------------------------------------
Layout 20
-------------------------------------------------------------------------------------*/
.jl_fr20_inner{
    --jl-main-h: 50%;
    --jl-small-h: 65%;
    --jl-padding-main: 40px;    
    --jl-padding-small: 30px;
    --jl-font-main: 30px;
    --jl-font-small: 20px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-grid-gap: 5px;
    --jlc-car-radius: 0px;
    display: grid;
    grid-gap: var(--jl-grid-gap);
    grid-template-areas:
        "item1 item1 item1 item2 item2 item2"
        "item3 item3 item4 item4 item5 item5";
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: initial;
    grid-template-rows: unset;
}
.jl_fr20_inner .jl_p_fr20{
    padding-bottom: var(--jl-small-h);
}
.jl_fr20_inner .jl_p_fr20.jl_m_fr20, .jl_fr20_inner .jl_p_fr20:nth-child(2){
    padding-bottom: var(--jl-main-h);
}
.jl_fr20_inner .jl_p_fr20{
    overflow: hidden;
    flex: 1;
    position: relative;
    border-radius: var(--jlc-car-radius);
}
.jl_fr20_inner .jl_p_fr20.jl_m_fr20 .jl_fe_text, .jl_fr20_inner .jl_p_fr20:nth-child(2) .jl_fe_text{
    padding: var(--jl-padding-main);
}
.jl_fr20_inner .jl_p_fr20 .jl_fe_text{
    padding: var(--jl-padding-small);
}
.jl_fr20_inner .jl_p_fr20:nth-child(1){
    grid-area: item1;
}
.jl_fr20_inner .jl_p_fr20:nth-child(2){
    grid-area: item2;
}
.jl_fr20_inner .jl_p_fr20:nth-child(3){
    grid-area: item3;
}
.jl_fr20_inner .jl_p_fr20:nth-child(4){
    grid-area: item4;
}
.jl_fr20_inner .jl_p_fr20:nth-child(5){
    grid-area: item5;
}
.jl_fr20_inner .jl_p_fr20:nth-child(1)  .jl_fe_text .jl_fe_title, .jl_fr20_inner .jl_p_fr20:nth-child(2)  .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-main);
}
.jl_fr20_inner .jl_p_fr20 .jl_fe_text .jl_fe_title{
    font-size: var(--jl-font-small);
}
/*-------------------------------------------------------------------------------------
Layout Grid Number
-------------------------------------------------------------------------------------*/
.jl_cgrid_num{
    --jl-num-col: 4;
    --jl-f-size: 20px;
    --jl-h-align: left;
    --jl-img-height: 66.66667%;
    --jl-col-gap: 30px;
    --jl-row-gap: 30px;
    grid-template-columns: repeat(var(--jl-num-col),minmax(0,1fr));
    grid-column-gap: var(--jl-col-gap);
    grid-row-gap: var(--jl-row-gap);
    overflow: hidden;
}
.jl_hide_line .jl_cgrid_num .jl_cgrid_layout:before, .jl_hide_col_line .jl_cgrid_num .jl_cgrid_layout:after{
    display: none;
}
.jl_cgrid_num .jl_cgrid_layout:before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: calc(var(--jl-row-gap) / 2 * -1);
    border-bottom: 1px solid var(--jl-post-line-color);
}
.jl_cgrid_num .jl_cgrid_layout:after{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    border-right: 1px solid var(--jl-post-line-color);
    right: calc(var(--jl-col-gap) / 2 * -1);
}
.jl_cgrid_num .jl_cgrid_layout{
    counter-increment: item 1;
    position: relative;
}
.jl_cgrid_num .jl_imgw .jl_imgin, .jl_cgrid_num .jl_imgw .video-wrap{
    clip-path: polygon(0 0,100% 0,100% 100%,45px 100%,0 calc(100% - 45px));
}
.jl_cgrid_num .jl_fe_title{
    font-size: var(--jl-f-size);
}
.jl_cgrid_num .jl_imgw{
    padding-bottom: var(--jl-img-height);
}
.jl_cgrid_num .jl_sgnum{
    position: absolute;
    bottom: 0px;
    left: 0px;
    line-height: 1;
    font-size: 20px;
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    color: var(--jl-txt-color);
}
.jl_cgrid_num .jl_sgnum:before{
    content: counter(item) ".";
}
/*-------------------------------------------------------------------------------------
Layout List Number
-------------------------------------------------------------------------------------*/
.jl_cli_num{
    grid-template-columns: repeat(4,minmax(0,1fr));
    --jlrow-gap: 35px;
    overflow: hidden;
}
.jl_mmlist_w{
    display: block;
}
.jl_cli_num .jl_mmlist_w{
    counter-increment: item 1;
}
.jl_cli_num .jl_fe_title{
    font-size: 15px;
}
.jl_cli_num .jl_fe_num{
    align-self: flex-start;
    display: block;
    line-height: 1;
    font-size: 35px;
    flex: 0 0 35px;
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    color: var(--jl-main-color);
}
.jl_cli_num .jl_fe_num:before{
    content: counter(item) ".";
}
/*-------------------------------------------------------------------------------------
Slider OPT
-------------------------------------------------------------------------------------*/
.jl-eb-sl{
    width: 100%;
    overflow: hidden;
    --jl-title-size: 35;
    --jl-arrow-w: 40px;
    --jl-arrow-h: 40px;
    --jl-arrow-r: 100px;
    --jl-arrow-bg: rgba(255,255,255,.3);
    --jl-arrow-hbg: #fff;
    --jl-arrow-color: #fff;
    --jl-arrow-hcolor: #000;
    --jl-arrow-space: 30px;
    --jl-slider-h: 550px;
    --jl-caption-space: 50px;
    --jl-caption-w: 600px;
}
.jl-eb-sl:hover .jl-swiper-button-next, .jl-eb-sl:hover .jl-swiper-button-prev{
    opacity: 1;
}
.jl-eb-sl .jl-swiper-button-next, .jl-eb-sl .jl-swiper-button-prev{
    display: flex;
    position: absolute;
    top: 50%;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    transition: .3s ease;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
}
.jl-eb-sl .jl-swiper-button-next .jl-spn-inner, .jl-eb-sl .jl-swiper-button-prev .jl-spn-inner{
    width: var(--jl-arrow-w);
    height: var(--jl-arrow-h);
    border-radius: var(--jl-arrow-r);
    font-size: 13px;
    color: var(--jl-arrow-color);
    background: var(--jl-arrow-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
}
.jl-eb-sl .jl-swiper-button-next .jl-spn-inner i, .jl-eb-sl .jl-swiper-button-prev .jl-spn-inner i{
    font-weight: bold;
}
.jl-eb-sl .jl-swiper-button-next:hover .jl-spn-inner, .jl-eb-sl .jl-swiper-button-prev:hover .jl-spn-inner{
    color: var(--jl-arrow-hcolor);
    background: var(--jl-arrow-hbg);
}
.jl-eb-sl .jl-swiper-button-next{
    right: var(--jl-arrow-space);
}
.jl-eb-sl .jl-swiper-button-prev{
    left: var(--jl-arrow-space);
}
.jl-pgal-slider:not(.swiper-initialized) .jl-swiper-button-next, .jl-pgal-slider:not(.swiper-initialized) .jl-swiper-button-prev{
    display: none;
}
.jl-pgal-slider{
    overflow: hidden;
}
.jl-eb-sl .jl_spw,
.jl-pgal-slider .jl_spw{
    display: flex;
    justify-content: center;
}
.jl-eb-sl .jl_spw .swiper-pagination,
.jl-pgal-slider .jl_spw .swiper-pagination{
    position: static;
    display: flex;
    gap: 5px;
    padding: 3px 0px;
    margin-top: 20px;
    justify-content: center;
}
.jl-eb-sl .jl_spw .swiper-pagination .swiper-pagination-bullet,
.jl-pgal-slider .jl_spw .swiper-pagination .swiper-pagination-bullet{
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 0;
    opacity: 1;
    transition: width .3s ease;
    position: relative;
    color: #000;
}
.jl-eb-sl .jl_spw .swiper-pagination .swiper-pagination-bullet:after,
.jl-pgal-slider .jl_spw .swiper-pagination .swiper-pagination-bullet:after{
    content: '';
    display: inline-block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px transparent;
    background-color: currentColor;
    transition: box-shadow .2s ease-out,background-color .2s ease-out;
}
.jl-eb-sl .jl_spw .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.jl-pgal-slider .jl_spw .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after{
    box-shadow: 0 0 0 2px currentColor;
    background-color: transparent;
}
.jl-eb-sl .jl_spw .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover:after,
.jl-pgal-slider .jl_spw .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover:after{
    background: currentColor;
}
/*-------------------------------------------------------------------------------------
Layout carousel
-------------------------------------------------------------------------------------*/
.jl_caropt_w{
    --jlc-f-size: 20px;
    --jlc-h-align: center;
    --jlc-v-align: center;
    --jlc-padding: 20px;
    --jlc-cap-padding: 20px;
    --jlc-car-height: 100%;
    --jlc-car-radius: 0px;
}
.jl_caropt_w .jl-eb-sl .jl_fe_text{
    --jl-f-size: var(--jlc-f-size) !important;
    --jl-h-align: var(--jlc-h-align) !important;
    --jl-v-align: var(--jlc-v-align) !important;
    --jl-padding: var(--jlc-padding) !important;
}
.jl_caropt_w .jl-spn-inner{
    transform: translateY(-32px);
}
.jl_caropt_w .swiper-pagination-bullet{
    color: var(--jl-txt-color) !important;
}
.jl_caropt_w .slide-inner:hover .jl_imgw .jl_imgin img{
    transform: scale(1.01) !important;
}
.carousel1.jl-main-block .jl_imgw .jl_imgin,
.carousel2.jl-main-block .jl_caropt_w .jl_ov_layout,
.carousel3.jl-main-block .jl_caropt_w .jl_ov_layout,
.carousel3.jl-main-block .jl_caropt_w .jl_ov_layout,
.carousel3.jl-main-block .jl_caropt_w .jl_fe_inner,
.carousel4.jl-main-block .jl_cgrid_layout{
    border-radius: var(--jlc-car-radius);
    overflow: hidden;
}
/*Classic*/
.jl_caropt_w .jl-eb-sl .jl_gna .jl_cgrid_layout .jl_fe_title{
    font-size: var(--jlc-f-size);
    text-align: var(--jlc-h-align);
}
.jl_caropt_w .jl-eb-sl .jl_gna .jl_cgrid_layout .jl_imgw{
    padding-bottom: var(--jlc-car-height);
}
/*Overlay*/
.jl_caropt_w .jl_ov_layout{
    padding-bottom: var(--jlc-car-height);
}
.jl_caropt_w .jl-eb-sl .jl_ov_el .jl_fe_text{
    max-width: var(--jlc-caption-w);
    margin: 0px auto;
}
/*Overlay bg caption*/
.jl_caropt_w .jl-eb-sl .jl_ov_el.jl_ov_bg .jl_fe_text .jl_fe_inner{
    width: 100%;
    background: var(--jl-cap-bg);
    padding: var(--jlc-cap-padding);
    max-width: 500px;
}
.jl_caropt_w .jl-eb-sl .jl_ov_el.jl_ov_bg .jl_fe_text a, .jl_caropt_w .jl-eb-sl .jl_ov_el.jl_ov_bg .jl_fe_text .jl_fe_title:hover a, .jl_caropt_w .jl-eb-sl .jl_ov_el.jl_ov_bg .jl_post_meta span, .jl_caropt_w .jl-eb-sl .jl_ov_el.jl_ov_bg .jl_post_meta a, .jl_caropt_w .jl-eb-sl .jl_ov_el.jl_ov_bg .jl_post_meta a:hover{
    color: var(--jl-cap-color) !important;
}
/*Classic background*/
.jl_caropt_w .swiper-slide.jl_gbg{
    height: auto;
}
.jl_caropt_w .jl_gbg .slide-inner, .jl_caropt_w .jl_gbg .jl_cgrid_layout{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.jl_caropt_w .jl_gbg .jl_cgrid_layout .jl_imgw{
    margin-bottom: 0px;
}
.jl_caropt_w .jl_gbg .jl_cgrid_layout .jl_fe_text{
    background: var(--jl-cap-bg);
    padding: var(--jlc-padding) !important;
    text-align: var(--jlc-h-align) !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.jl_caropt_w .jl_gbg .jl_cgrid_layout .jl_fe_text .jl_post_meta{
    margin-top: auto;
    padding-top: 10px;
}
.jl_caropt_w .jl-eb-sl .jl_gbg .jl_cgrid_layout .jl_fe_title{
    font-size: var(--jlc-f-size) !important;
}
.jl_caropt_w .jl-eb-sl .jl_gbg .jl_f_cat .jl_cat_txt, .jl_caropt_w .jl-eb-sl .jl_gbg .jl_cgrid_layout .jl_fe_title a, .jl_caropt_w .jl-eb-sl .jl_gbg .jl_post_meta span, .jl_caropt_w .jl-eb-sl .jl_gbg .jl_post_meta span a{
    color: var(--jl-cap-color) !important;
}

/*Main slider*/
.swiper-slide {
    overflow: hidden;
}
.swiper-slide-inner {
    width: 100%;
    height: 500px;
    left: 0;
    top: 0;
    background: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-initialized .swiper-slide-duplicate .jl_imgin img,
.swiper-container-initialized .swiper-slide-duplicate-active .jl_imgin img,
.swiper-container-initialized .swiper-slide-duplicate-next .jl_imgin img{
    -webkit-filter: blur(0px);
    filter: blur(0px);
}
.swiper-slide-inner img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.swiper-container-initialized .swiper-slide-inner img{
    -webkit-filter: blur(0px);
    filter: blur(0px);
}
.swiper-slide-inner .jlc-mainslider-img-wrap {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(1.1);
    transition-duration: 0s;
    transition-delay: 800ms;
    will-change: transform;
}
.swiper-slide-active .swiper-slide-inner .jlc-mainslider-img-wrap,
.swiper-slide-duplicate-active .swiper-slide-inner .jlc-mainslider-img-wrap {
    transform: scale(1);
    transition-duration: 800ms;
    transition-delay: 0ms;
    will-change: transform;
}
.jl-post-image-caption {
    position: absolute;
    width: 100%!important;
    top: 50%;
    left: 50%;
    bottom: auto;
    margin: 0;
    transform: translate(-50%, -50%);
    transition: opacity .4s ease;
    opacity: 0;
    z-index: 15;
    color: #fff;
    font-size: 30px;
}
.swiper-slide-active .jl-post-image-caption {
    transition: opacity .4s ease .4s;
    opacity: 1;
}
.jl_fe_text a.jl_cap_btn{
    font-family: var(--jl-menu-font);
    font-size: 11px;
    font-weight: var(--jl-loadmore-font-weight);
    text-transform: var(--jl-loadmore-transform);
    letter-spacing: var(--jl-loadmore-space);
    background: #fff;
    color: #000 !important;
    height: 45px;
    display: inline-flex;
    align-items: center;
    padding: 0px 25px;
    border-radius: var(--jl-button-radius);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}
.jl_fe_text a.jl_cap_btn:hover{
  background: var(--jl-main-color);
  color: #fff !important;
}
.jl_lg_op.jl_lg_l1 .jl_fe_text a.jl_cap_btn, .jl_lg_op.jl_lg_l2 .jl_fe_text a.jl_cap_btn{
    background: var(--jl-main-color);
    color: #fff !important;
    height: 35px;
}
.jl_lg_op.jl_lg_l1 .jl_fe_text a.jl_cap_btn:hover, .jl_lg_op.jl_lg_l2 .jl_fe_text a.jl_cap_btn:hover{
    background-color: var(--jl-btn-bg) !important;    
}
.jl_pl_fs{
    display: flex;
    justify-content: var(--jl-algin-h);    
}
.jl_pl_fs .jl_sfoot{
    padding: 0px;
    margin: 20px 0px 0px 0px;
}
.jl_pl_fs .jl_sfoot ul{
    gap: 5px;
}
.jl_pl_fs .jl_sfoot .jl_sli_in span{
    display: none;
}
.jl_pl_fs .jl_sfoot .jl_shli{
    -webkit-flex: 0 0 35px;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
    width: 35px;
}
.jl_pl_fs .jl_sfoot .jl_sli_in a{
    height: 35px;
    font-size: 12px;
}
.swiper-slide-active .jl_fe_text a.jl_cap_btn{
    animation: jl-ani-opt--in 1.4s cubic-bezier(.46,.03,.52,.96) forwards;
}
/*-------------------------------------------------------------------------------------
Layout slider center
-------------------------------------------------------------------------------------*/
.jl-eb-sl .jl_cslide .jl_fe_text .jl_fe_inner{
    opacity: 0;
    transition: all .3s ease-in-out;
}
.jl-eb-sl .jl_cslide.swiper-slide-active .jl_fe_text .jl_fe_inner,
.jl-eb-sl .jl_cslide.swiper-slide-duplicate-active .jl_fe_text .jl_fe_inner{
    opacity: 1;
}
/*Overlay*/
.jl-eb-sl .jl_cs_overlay .jl_ov_layout.jl_ov_el .jl_fe_text{
    margin: auto;
    --jl-f-size: var(--jl-title-size);
    --jl-h-align: center;
    --jl-v-align: center;
    --jl-padding: var(--jl-caption-space);
    max-width: var(--jl-caption-w);
}
.jl-eb-sl .jl_cs_overlay .jl_ov_layout{
    padding-bottom: var(--jl-slider-h);
}
.jl-eb-sl .jl_cs_overlay .jl_ov_layout.jl_ov_el .jl_fe_text .jl_fe_inner{
    padding: var(--jl-caption-space);
}
/*Overlay background*/
.jl-eb-sl .jl_cs_background .jl_ov_bg.jl_ov_el .jl_fe_text{
    margin: auto;
    --jl-f-size: var(--jl-title-size);
    --jl-h-align: center;
    --jl-v-align: center;
    --jl-padding: var(--jl-caption-space);
    padding: 0px 20px !important;
    max-width: var(--jl-caption-w);
}
.jl-eb-sl .jl_cs_background .jl_ov_bg.jl_ov_el .jl_fe_text .jl_fe_inner{
    padding: var(--jl-caption-space);
    background: var(--jl-bg-color);
}
.jl-eb-sl .jl_cs_background .jl_ov_bg .jl_fe_text .jl_fe_inner .jl_cat_txt,
.jl-eb-sl .jl_cs_background .jl_ov_bg .jl_fe_text .jl_fe_inner .jl_fe_title a,
.jl-eb-sl .jl_cs_background .jl_ov_bg .jl_fe_text .jl_fe_inner .jl_post_meta a{
    color: var(--jl-txt-color) !important;
}
.jl-eb-sl .jl_cs_background .jl_ov_bg .jl_fe_text .jl_fe_inner .jl_post_meta span{
    color: var(--jl-meta-color) !important;
}
.jl-eb-sl .jl_cs_background .jl_ov_layout{
    padding-bottom: var(--jl-slider-h);
    border-radius: var(--jlc-car-radius);
}
/*Slider bottom*/
.elementor-section-full_width .jl-eb-sl .jl_cs_overlay.jl_sl_bt .jl_ov_layout.jl_ov_el .jl_fe_text{
    padding: 0px 20px !important;
}
.elementor-section-full_width .jl-eb-sl .jl_cs_overlay.jl_sl_bt .jl_ov_layout.jl_ov_el .jl_fe_text .jl_fe_inner{
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.jl-eb-sl .jl_cs_overlay.jl_sl_bt .jl_ov_layout.jl_ov_el .jl_fe_text{
    --jl-f-size: var(--jl-title-size);
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-padding: var(--jl-caption-space);
    max-width: var(--jl-caption-w);
    padding: 0px !important;
}
/*Center background*/
.jl-eb-sl .jl_cslide .jl_cs_classic.jl_cs_center .jl_fe_text{
    display: flex;
    position: absolute;
    align-items: center;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: var(--jl-caption-space);
    height: 100%;
    width: 100%;
    margin: 0 auto;
    max-width: var(--jl-caption-w);
}
.jl-eb-sl .jl_cslide .jl_ov_bg.jl_ov_el .jl_fe_text .jl_fe_inner{
    background: transparent;
}
.jl-eb-sl .jl_cslide .jl_ov_bg .jl_fe_text .jl_fe_inner .jl_cat_txt,
.jl-eb-sl .jl_cslide .jl_ov_bg .jl_fe_text .jl_fe_inner .jl_fe_title a,
.jl-eb-sl .jl_cslide .jl_ov_bg .jl_fe_text .jl_fe_inner .jl_post_meta span,
.jl-eb-sl .jl_cslide .jl_ov_bg .jl_fe_text .jl_fe_inner .jl_post_meta a {
    color: #FFF !important;
}
/*Classic*/
.jl-eb-sl .jl_cslide .jl_cs_classic .jl_fe_text{
    max-width: var(--jl-caption-w);
    margin: auto;
    --jl-f-size: var(--jl-title-size);
    --jl-h-align: center;
    --jl-v-align: center;
    --jl-padding: var(--jl-caption-space);
    margin-top: -60px;
    padding: var(--jl-caption-space);
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}
.jl_center_car3 .swiper-pagination-bullet{
    color: var(--jl-txt-color) !important;
}
.jl-eb-sl .jl_cslide .jl_cgrid_layout,
.jl-eb-sl .jl_cslide .jl_cgrid_layout .jl_fe_inner{
    border-radius: var(--jlc-car-radius);
    overflow: hidden;
}
.jl-eb-sl .jl_cslide .jl_cs_classic .jl_imgw{
    margin-bottom: 0px;
    padding-bottom: var(--jl-slider-h);
}
.jl-eb-sl .jl_cslide .jl_cs_classic .jl_fe_text .jl_fe_title{
    font-size: var(--jl-f-size);
    text-align: var(--jl-h-align);
}
.jl-eb-sl .jl_cslide .jl_cs_classic .jl_fe_text .jl_fe_inner{
    background: var(--jl-bg-color);
    padding: 20px;
    position: relative;
}
.jl-eb-sl .jl_cs_classic .jl_cgrid_layout .jl_cs_classic{
    padding-bottom: var(--jl-slider-h);
}
.jl-eb-sl .jl_cs_classic .jl_imgw{
    border-radius: var(--jlc-car-radius);
}
.jl_center_car1 .jl_spw, .jl_center_car2 .jl_spw{
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.jl_center_car1 .jl_spw .swiper-pagination, .jl_center_car2 .jl_spw .swiper-pagination{
    margin-top: 0px;
    margin-bottom: 25px;
}
.jl_center_car3 .jl_spw .swiper-pagination{
    margin-top: 10px;
}
.jl_center_car1 .jl_spw .swiper-pagination .swiper-pagination-bullet, .jl_center_car2 .jl_spw .swiper-pagination .swiper-pagination-bullet{
    color: #fff;
}
/*-------------------------------------------------------------------------------------
Layout slider
-------------------------------------------------------------------------------------*/
.jl-eb-msl, .jl-eb-msl .jl_mslide .jl_ov_layout {
    padding-bottom: 0%;
    height: var(--jl-slider-h);
    overflow: hidden;
}
.jl-eb-msl .jl_spw{
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.jl-eb-msl .jl_spw .swiper-pagination{
    margin-top: 0px !important;
    margin-bottom: 30px;
}
.jl-eb-msl .jl_spw .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after{
    box-shadow: 0 0 0 2px #fff;
}
.jl-eb-msl .jl_spw .swiper-pagination .swiper-pagination-bullet:after, .jl-eb-msl .jl_spw .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover:after{
    background-color: #fff;
}
.jl-eb-msl:hover .jl_imgw .jl_imgin img{
    transform: scale(1.01) !important;
}
.jl_slparallax .jl-eb-sl .slide-inner .jl_imgin{
        transform: scale(1.1);
        transition-duration: 0s;
        transition-delay: 800ms;
        will-change: transform;
}
.jl_slparallax .jl-eb-sl .swiper-slide-active .slide-inner .jl_imgin,
.jl_slparallax .jl-eb-sl .swiper-slide-duplicate-active .slide-inner .jl_imgin {
        transform: scale(1);
        transition-duration: 800ms;
        transition-delay: 0ms;
        will-change: transform;
}
.jl-eb-msl .jl_fe_inner .jl_f_cat{
    margin-bottom: 15px;
}
.jl-eb-msl .jl_fe_inner .jl_post_meta{
    margin-top: 15px;
}
.jl-eb-msl .swiper-slide-active .jl_fe_inner .jl_f_cat,
.jl-eb-msl .swiper-slide-duplicate-active .jl_fe_inner .jl_f_cat{
    animation:jl-ani-opt--in .8s cubic-bezier(.46,.03,.52,.96) forwards;
}
.jl-eb-msl .swiper-slide-active .jl_fe_inner .jl_fe_title,
.jl-eb-msl .swiper-slide-duplicate-active .jl_fe_inner .jl_fe_title{
    animation:jl-ani-opt--in 1s cubic-bezier(.46,.03,.52,.96) forwards;
}
.jl-eb-msl .swiper-slide-active .jl_fe_inner .jl_post_meta,
.jl-eb-msl .swiper-slide-duplicate-active .jl_fe_inner .jl_post_meta{
    animation:jl-ani-opt--in 1.2s cubic-bezier(.46,.03,.52,.96) forwards;
}
@keyframes jl-ani-opt--in{
    0%,25%{
        opacity:0;
        transform:translateY(20px)
    }
    70%{
        opacity:1;
        transform:translateY(0)
    }
    100%{
        opacity:1;
        transform:translateY(0)
    }
}
@keyframes jl-ani-opt--out{
    0%{
        opacity:1;
        transform:translateY(0)
    }
    100%{
        opacity:0;
        transform:translateY(20px)
    }
}

/*Bottom captions*/
.mslider2 .jl-eb-sl .jl_ov_el .jl_fe_text{
    --jl-f-size: 30px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-padding: 40px;
}
.elementor-section-full_width .mslider2 .jl-eb-msl .jl_spw{
    max-width: var(--jl-caption-w);
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    padding: 0px 20px;
}
.elementor-section-full_width .mslider2 .jl-eb-msl .jl_spw .swiper-pagination{
    padding: var(--jl-caption-space) 0px;
    margin: 0px;
}
.mslider2 .jl-eb-msl .jl_spw{
    margin: 0px;
    top: 0px;
    right: 0px;
    justify-content: flex-end;
    bottom: auto;
}
.mslider2 .jl-eb-msl .jl_sl_bt .jl_ov_layout.jl_ov_el .jl_fe_text .jl_fe_inner{
    max-width: var(--jl-caption-tw);
}
.mslider2 .jl-eb-msl .jl_spw .swiper-pagination{
    padding: var(--jl-caption-space);
    margin: 0px;
}
/*background captions*/
.mslider3 .jl-eb-sl .jl_cs_background .jl_ov_bg.jl_ov_el .jl_fe_text{
    --jl-f-size: 30px;
    --jl-padding: 40px;
}
/*Center left*/
.mslider4 .jl-eb-sl .jl_sl_ct .jl_ov_el .jl_fe_text{
    --jl-h-align: left;
    --jl-v-align: center;
    --jl-padding: 40px;
}
.mslider4 .jl-eb-sl .jl_sl_ct .jl_ov_el .jl_fe_text{
    padding: 0px;
}
.mslider4 .jl-eb-sl .jl_sl_ct .jl_ov_el .jl_fe_text .jl_fe_inner{
    max-width: var(--jl-caption-tw);
}
.mslider4 .jl-eb-msl .jl_spw{
    justify-content: start;
    position: absolute;
    bottom: 0px;
    width: 100%;
    max-width: 1200px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    padding: 0px;
}
.mslider4 .jl-eb-msl .jl_spw .swiper-pagination{
    padding: var(--jl-caption-space);
    margin: 0px 0px 0px 5px;
}
.mslider4 .jl-eb-msl .jl_arpw{
    position: absolute;
    display: flex;
    max-width: 1200px;
    padding: 0px var(--jl-caption-space);
    margin: 0 auto;
    flex-direction: row-reverse;
    bottom: var(--jl-caption-space);
    gap: 10px;
    z-index: 1;
    width: 100%;
}
.mslider4 .jl-eb-msl .jl_arpw .jl-swiper-button-next, .mslider4 .jl-eb-msl .jl_arpw .jl-swiper-button-prev{
    position: unset;
    opacity: 1;
    transform: unset;
}
.elementor-section-full_width .mslider4 .jl-eb-msl .jl_spw{
    max-width: var(--jl-caption-w);
    margin: 0 auto;
    padding: 0px 20px;
}
.elementor-section-full_width .mslider4 .jl-eb-msl .jl_spw .swiper-pagination{
    padding: var(--jl-caption-space) 0px;
    margin: 0px 0px 0px 5px;
}
.elementor-section-full_width .mslider4 .jl_arpw{
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    max-width: var(--jl-caption-w);
    padding: 0px 20px;
    margin: 0 auto;
    flex-direction: row-reverse;
    bottom: var(--jl-caption-space);
    gap: 10px;
}
.elementor-section-full_width .mslider4 .jl-eb-sl .jl_sl_ct .jl_ov_el .jl_fe_text{
    padding: 0px 20px;
}
.elementor-section-full_width .mslider4 .jl-eb-sl .jl_sl_ct .jl_ov_el .jl_fe_text .jl_fe_inner{
    padding: 0px !important;
}
/*-------------------------------------------------------------------------------------
Tab slider
-------------------------------------------------------------------------------------*/
.jl-stab-w{
    position: relative;
    --st-max-width: 1200px;
    --st-max-height: 600px;
    --st-cap-width: 50%;
    --st-padding: 20px;
    --st-main-size: 45px;
    --st-tab-size: 19px;
    --st-tab-with: 400px;
    --st-img-with: 150px;
    --st-img-height: 110px;
    --st-rounded-mian: 0px;
    --st-rounded-tab: 0px;
}
.jl-eb-sl{
    border-radius: var(--st-rounded-mian);
    --jlc-car-radius: 0px;
}
.jl-eb-sl .jl_fe_title{
    position: relative;
    z-index: 2;
}
.jl-eb-tabsl .jl_ov_el .jl_fe_text{
    --jl-f-size: var(--st-main-size) !important;
    --jl-h-align: left !important;
    --jl-v-align: center !important;
    --jl-padding: var(--st-padding) !important;
    max-width: var(--st-max-width) !important;
    margin: 0 auto !important;
    padding: 0px var(--jl-padding);
}
.jl-eb-tabsl:hover .jl_imgin img, .tab_labout:hover .jl_imgin img{
        transform: scale(1.01);
}
.jl-eb-tabsl .jl_ov_el .jl_fe_text .jl_fe_inner{
    width: var(--st-cap-width);
    padding: 0px !important;
}
.jl-eb-tabsl .jl_ov_el .jl_fe_text .jl_fe_inner .jl_fe_des{
    color: #fff;
    max-width: 90%;
}
.jl-eb-tabsl .jl_spw{
    display: none;
}
.jl-eb-tabsl .swiper-slide-active .jl_fe_inner .jl_f_cat{
    animation:jl-ani-opt--in .8s cubic-bezier(.46,.03,.52,.96) forwards;
}
.jl-eb-tabsl .swiper-slide-active .jl_fe_inner .jl_fe_title{
    animation:jl-ani-opt--in 1s cubic-bezier(.46,.03,.52,.96) forwards;
}
.jl-eb-tabsl .swiper-slide-active .jl_fe_inner .jl_fe_des{
    animation:jl-ani-opt--in 1.1s cubic-bezier(.46,.03,.52,.96) forwards;
}
.jl-eb-tabsl .swiper-slide-active .jl_fe_inner .jl_post_meta{
    animation:jl-ani-opt--in 1.2s cubic-bezier(.46,.03,.52,.96) forwards;
}
.jl-eb-tabsl, .jl-eb-tabsl .jl_cs_overlay .jl_ov_layout{
    padding-bottom: 0px;
    height: var(--st-max-height);
    overflow: hidden;
}
.jl-eb-tabsl .jl_spw{
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.jl-eb-tabsl .jl_spw .swiper-pagination{
    margin-top: 0px;
    margin-bottom: 30px;
}
.jl-eb-tabsl .jl_ov_el .jl_imgl{
    background: rgba(0,0,0,.25);
}
.jl-eb-tabsl .jl_spw .swiper-pagination .swiper-pagination-bullet{
    color: #fff;
}
.jl-sltab-s{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    max-width: var(--st-max-width);
    padding: 0px var(--st-padding);
    margin: 0 auto;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}
.jl-sltab-s .jl-eb-sltab{
    margin: 0px;
}
.jl-sltab-s .swiper-wrapper{
    gap: 25px;
    width: var(--st-tab-with);
    display: flex;
    flex-direction: column !important;
}
.jl-sltab-s .swiper-wrapper .swiper-slide{
    height: auto !important;
}
.jl-sltab-s .slide-inner{
    display: flex;
    flex-direction: row;
}
.jl-sltab-s .tab_labout{
    display: flex;
    text-align: left;
    align-items: center;
    cursor: pointer;
}
.jl-sltab-s .tab_labout h3{
    color: #fff;
    font-size: var(--st-tab-size);
}
.jl-sltab-s .tab_labout h3 span{
    display: inline;
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg,currentColor 0,currentColor 94%);
    transition: background-size .4s cubic-bezier(.215,.61,.355,1), opacity .5s ease;
    background-position: 100% 94%;
    background-size: 0 1px;
}
.jl-sltab-s .jl_mmlist_layout .jl_img_holder{
    -webkit-flex: 0 0 var(--st-img-with);
    -ms-flex: 0 0 var(--st-img-with);
    flex: 0 0 var(--st-img-with);
    width: var(--st-img-with);
}
.jl-sltab-s .jl_mmlist_layout .jl_imgw{
    height: var(--st-img-height);
    border-radius: var(--st-rounded-tab);
}
.jl-sltab-s .swiper-slide .tab_labout .jl_img_holder{
    border: 1px solid transparent;
    border-radius: var(--st-rounded-tab);
}
.jl-sltab-s .swiper-slide-thumb-active .tab_labout .jl_img_holder{
    border: 1px solid #fff;
}
.jl-sltab-s .swiper-slide-thumb-active .tab_labout h3 span{
    background-position:0 94%;
    background-size: 100% 1px;
}
.jl-sltab-s .jl_post_meta span{
    color: #fff !important;
}
/*-------------------------------------------------------------------------------------
Layout hover
-------------------------------------------------------------------------------------*/
.jl-showcase-container{
    --jlc-sh-height: 500px;
    --jlc-font-size: 20px;
    --jlc-car-radius: 0px;
    height: var(--jlc-sh-height);
    border-radius: var(--jlc-car-radius);
    overflow: hidden;
    position: relative;

}
.jl-showcase-wrapper{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    display: grid;
    height: 100%;
    grid-template-columns: repeat(4,minmax(0,1fr));
    width: 100%;
    align-items: end;
}
.jl-showcase-content{
    position: relative;
    display: grid;
    height: 100%;
    align-items: end;
    overflow: hidden;
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, .3);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.jl-showcase-content:last-child{
    border-right: 0px solid rgba(255, 255, 255, .4);
}
.jl-showcase-item-inner{
    padding: 30px;
}
.jl-showcase-item-inner .jl_cap_title{
    font-size: 14px;
    margin-bottom: 5px;
    color: #fff;
}
.jl-showcase-item-inner .jl-slider-title{
    font-size: 25px;
    margin-bottom: 5px;
    color: #fff;
}
.jl-showcase-item-inner .mainslider_text{
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255,255,255,.85);
}
.jl-showcase-item-inner .sl_btn_l{
    background: transparent;
    color: #fff;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    display: inline-flex;
    border: 1px solid #fff;
}
.jl-showcase-item-inner .sl_btn_l:hover{
    background: #fff;
    color: #000;
}
.jl-img-wrap{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.jl-img-wrap:after{
    position: absolute;
    content: '';
    background: rgba(0,0,0,.25);
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 6;
}
.jl-img-inner{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease 0s;
    z-index: 1;
}
.jl-img-inner img{
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    top: 0px;
    left: 0px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.jl-img-inner.jl-showcase-active{
    opacity: 1;
    z-index: 6;
    transition: all 0.3s ease 0s;
}
.jl-img-wrap .jl_img_holder{
    height: 100%;
}
.jl-img-wrap .jl_img_holder .jl_imgw{
    padding-bottom: 0px;
    height: 100%;
}
.jl-showcase-content .jl_cap_ov{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.jl-showcase-content .jl_fe_title{
    font-size: var(--jlc-font-size);
}
.jl-showcase-content .jl_post_meta span a,
.jl-showcase-content .jl_post_meta span,
.jl-showcase-content .jl_f_cat .jl_cat_txt,
.jl-showcase-content .jl_fe_title{
    color: #fff !important;
}
.jl-showcase-content .jl_fe_title a{
    color: #fff !important;
}
.jl-showcase-content:hover .jl_fe_title a{
    background-position:0 94%;
    background-size: 100% 1px;
}
/*-------------------------------------------------------------------------------------
Marquee text
-------------------------------------------------------------------------------------*/
.jl_mar_wp{
    display: flex;
    width: 100%;
    gap: 10px;
}
.jl_mar_lbl{
    white-space: nowrap;
    background: #ed0101;
    color: #fff;
    font-size: 12px;
    align-items: center;
    display: flex;
    padding: 4px 10px;
    font-weight: var(--jl-menu-font-weight);
    font-family: var(--jl-menu-font);
}
.jl-marquee-wrap{
    display: flex;
    white-space: nowrap;    
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.jl-marquee-li .jl_fe_title{
    font-size: 13px;
}
.jl-marquee-wrap:before, .jl-marquee-wrap:after{
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    width: 20px;
    height: 100%;
    transition: background .25s linear;
}
.jl-marquee-wrap:before{
    left: -2px;
    background: linear-gradient(90deg,var(--mar-ov-bg),var(--mar-ov-bg) 10%,hsla(0,0%,100%,0));
}
.jl-marquee-wrap:after{
    right: -2px;
    background: linear-gradient(270deg,var(--mar-ov-bg),var(--mar-ov-bg) 10%,hsla(0,0%,100%,0));
}
.jl-marquee-text{
    display: flex;
    align-items: baseline;
    padding: 0px;
    margin: 0px; 
}
.jl-marquee-left{
    animation: jl-marquee-left linear infinite;
    animation-duration: var(--jlc-marquee-speed, 5s);
}
.jl-marquee-cloned-left{
    animation: jl-marquee-cloned-left linear infinite;    
    animation-duration: var(--jlc-marquee-speed, 5s);
}
.jl-marquee-right{
    animation: jl-marquee-right linear infinite;
    animation-duration: var(--jlc-marquee-speed, 5s);
}
.jl-marquee-cloned-right{
    animation: jl-marquee-cloned-right linear infinite;    
    animation-duration: var(--jlc-marquee-speed, 5s);
}
.jl-marquee-push:hover .jl-marquee-ul{
    animation-play-state: paused;
}
.jl-marquee-cloned{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateX(100%) translateZ(0);
}
.jl-marquee-text li{
    font-size: 15px;
    list-style: none;
    margin-right: 20px;
}
@keyframes jl-marquee-left{
    0% {
        transform: translateX(0) translateZ(0)
    }
    100% {
        transform: translateX(-100%) translateZ(0)
    }
}
@keyframes jl-marquee-cloned-left{
    0% {
        transform: translateX(100%) translateZ(0)
    }
    100% {
        transform: translateX(0) translateZ(0)
    }
}
@keyframes jl-marquee-right{
    0% {
        transform: translateX(-100%) translateZ(0)
    }
    100% {
        transform: translateX(0) translateZ(0)
    }
}
@keyframes jl-marquee-cloned-right{
    0% {
        transform: translateX(0) translateZ(0)
    }
    100% {
        transform: translateX(100%) translateZ(0)
    }
}
/*-------------------------------------------------------------------------------------
Newsticker text
-------------------------------------------------------------------------------------*/
.jl_ticker_wp{
    display: flex;
    width: 100%;
    gap: 10px;
}
.jl_ticker_lbl{
    white-space: nowrap;
    background: #ed0101;
    color: #fff;
    font-size: 12px;
    align-items: center;
    display: flex;
    padding: 4px 10px;
    font-weight: var(--jl-menu-font-weight);
    font-family: var(--jl-menu-font);
}
.jl_ticker_wp .jl-eb-sl{
    height: auto !important;
}
.jl_ticker_wp .jl_arpw{
    display: flex;
    position: absolute;
    top: 50%;
    right: 0px;
    z-index: 2;
    gap: 7px;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
}
.jl_ticker_wp .jl_arpw .jl-swiper-button-next, .jl_ticker_wp .jl_arpw .jl-swiper-button-prev{
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
}
.jl_ticker_wp .jl_arpw div .jl-spn-inner{
    color: var(--tarrow-color);
    border: 1px solid var(--tarrow-color);
    background: transparent;
    width: 25px;
    height: 25px;
    font-size: 9px;
    border-radius: 0px;
}
.jl_ticker_wp .jl_arpw div .jl-spn-inner:hover{
    color: #FFF;
    border-color: transparent;
    background: var(--tarrowh-color);
}
.jl-newsticker-wrap{
    display: flex;
    white-space: nowrap;    
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.jl-newsticker-wrap .swiper-slide{
    opacity: 0 !important;
}
.jl-newsticker-wrap .swiper-slide.swiper-slide-active{
    opacity: 1 !important;
}
.jl-newsticker-li{
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 25px;
}
.jl-newsticker-li .jl_fe_title{
    font-size: 13px;
}
.jl-newsticker-li .jl_post_meta{
    margin: 0px 0px 0px 15px;
    padding: 0px;
}
.jl-newsticker-text{
    display: flex;
    align-items: baseline;
    padding: 0px;
    margin: 0px; 
}
.jl-newsticker-text li{
    font-size: 15px;
    list-style: none;
    margin-right: 20px;
}
/*jl opt hide*/
.jl_hide_cat .jl_f_cat,
.jl_hide_author .jl_post_meta .jl_author_img_w,
.jl_hide_date .jl_post_meta .post-date,
.jl_hide_meta .jl_post_meta,
.jl_hide_desc .jl_fe_des,
.jl_hide_review .jl-donut-front,
.jl_hide_line .jl_lisep:after,
.jl_hide_col_line .jl_risep:before{
    display: none !important;
}
.jl_hide_meta .jl_fe_des{
    margin-bottom: 0px;
}
/*-------------------------------------------------------------------------------------
Section Title
-------------------------------------------------------------------------------------*/
.jlcus_sec_title{
    --sect-t-size: 23px;
    --sect-btn-size: 14px;
    --sect-t-algin: initial;
    --sect-t-color: #000;
    --sect-dsc-color: #0a0a0a;
    --sect-btn-color: #000;
    --sect-line-color: #E9ECEF;
    --sect-line-size: 1px;
    --sect-line-space: 15px;
    --sect-stroke-size: unset;
    --sect-stroke-pos: unset;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    justify-content: var(--sect-t-algin);
    text-align: var(--sect-t-algin);
}
.jlcus_sec_title.jl_secf_title .jl-heading-text{
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
}
.jlcus_sec_title.jl_secf_menu .jl-heading-text{
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-menu-font-weight);
}
.jlcus_sec_title.jl_secf_body .jl-heading-text{
    font-family: var(--jl-body-font);
    font-weight: var(--jl-body-font-weight);
}
.jlcus_sec_title.jl_secb_title .jl_bt_inner{
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
}
.jlcus_sec_title.jl_secb_menu .jl_bt_inner{
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-menu-font-weight);    
}
.jlcus_sec_title.jl_secb_body .jl_bt_inner{
    font-family: var(--jl-body-font);
    font-weight: var(--jl-body-font-weight);
}
.jlcus_sec_title.jl_sec_title_bg .jl-heading-text span{
    background: var(--sect-title-bg);
    padding: 0px 15px;
    border-radius: var(--sect-rounded);
}
.jl_sct_bt .jl_bt_inner{
    display: flex;
    align-items: center;
    gap: 5px;
}
.jlcus_sec_title.jl_sec_btn_bg .jl_sct_bt .jl_bt_inner{
    background: var(--sect-btn-bg);
    padding: 0px 0px 0px 15px;
    border-radius: var(--sect-btn-rounded);    
}
.jlcus_sec_title .jl_sct_sub{
    margin-bottom: 0px;
    margin-top: 2px;
    color: var(--sect-dsc-color);
}
.jlcus_sect_inner{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: var(--sect-t-algin);
    position: relative;
}
.jlcus_sec_title .jl-heading-text{
    display: flex;
    font-size: var(--sect-t-size);
    letter-spacing: var(--sect-t-space);
    margin: 0px;
    color: var(--sect-t-color);
    position: relative;
}
.jlcus_sec_title .jl-heading-text a{
    color: currentColor;
}
.jlcus_sec_title .jl_sct_bt{
    font-size: var(--sect-btn-size);
    margin: 0px;
    color: var(--sect-btn-color);
    letter-spacing: var(--sect-btn-space);
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    right: 0px;
    gap: 7px;
    font-weight: 600;
}
.jlcus_sec_title .jl_sct_bt a{
    color: currentColor;
    display: flex;
    gap: 7px;
    align-items: center;
}
.jlcus_sec_title .jl_sct_bt svg{
    display: inline-flex;
    width: 1em;
    height: 1em;
}
.jlcus_sec_title .jl-heading-text:after,
.jlcus_sec_title .jl-heading-text:before{
    max-width: var(--sect-line-w);
}
/*style1*/
.jlcus_sec_title.jl_sec_style1{
    border-bottom: var(--sect-line-size) solid var(--sect-line-color);
    padding-bottom: var(--sect-line-space);
}
.jlcus_sec_title.jl_sec_style15{
    position: relative;
    padding-bottom: var(--sect-line-space);
}
.jlcus_sec_title.jl_sec_style15:before, .jlcus_sec_title.jl_sec_style15:after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;        
}
.jlcus_sec_title.jl_sec_style15:before{
    background-color: var(--sect-line-color);
    z-index: 1;
    width: 100%;
    height: var(--sect-line-size);
}
.jlcus_sec_title.jl_sec_style15:after{    
    background-color: var(--ac-line-color);
    z-index: 2;
    width: 90px;
    height: var(--sect-ac-line-size);
}
/*style2*/
.jlcus_sec_title.jl_sec_style2{
    border-top: var(--sect-line-size) solid var(--sect-line-color);
    padding-top: var(--sect-line-space);
}
/*style3*/
.jlcus_sec_title.jl_sec_style3 .jl-heading-text:after,
.jlcus_sec_title.jl_sec_style3 .jl-heading-text:before{
    content: '';
    border-top: var(--sect-line-size) solid var(--sect-line-color);
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
    width: 1400px;
}
.jlcus_sec_title.jl_sec_style3 .jl-heading-text:before{
    content: '';
    right: 100%;
    margin-right: var(--sect-line-space);
}
.jlcus_sec_title.jl_sec_style3 .jl-heading-text:after{
    content: '';
    left: 100%;
    margin-left: var(--sect-line-space);
}
/*style4*/
.jlcus_sec_title.jl_sec_style4{
    padding-bottom: var(--sect-line-space);
    position: relative;
}
.jlcus_sec_title.jl_sec_style4:before{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 4px;
    border-top: 0.09em dotted var(--sect-line-color);
    border-bottom: 0.1em solid var(--sect-line-color);
}
/*style5*/
.jlcus_sec_title.jl_sec_style5{
    padding-top: var(--sect-line-space);
    position: relative;
}
.jlcus_sec_title.jl_sec_style5:before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 4px;
    border-bottom: 0.09em dotted var(--sect-line-color);
    border-top: 0.1em solid var(--sect-line-color);
}
/*style6*/
.jlcus_sec_title.jl_sec_style6 .jl-heading-text:after,
.jlcus_sec_title.jl_sec_style6 .jl-heading-text:before{
    content: '';
    height: 4px;
    border-bottom: 1px dotted var(--sect-line-color);
    border-top: 1.2px solid var(--sect-line-color);
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
    width: 1400px;
}
.jlcus_sec_title.jl_sec_style6 .jl-heading-text:before{
    content: '';
    right: 100%;
    margin-right: var(--sect-line-space);
}
.jlcus_sec_title.jl_sec_style6 .jl-heading-text:after{
    content: '';
    left: 100%;
    margin-left: var(--sect-line-space);
}
/*style7*/
.jlcus_sec_title.jl_sec_style7 .jl-heading-text:after,
.jlcus_sec_title.jl_sec_style7 .jl-heading-text:before{
    content: '';
    height: 4px;
    border-bottom: 1px dotted var(--sect-line-color);
    border-top: 1.2px solid var(--sect-line-color);
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
    width: 1400px;
}
.jlcus_sec_title.jl_sec_style7 .jl-heading-text:before{
    content: '';
    right: 100%;
    margin-right: var(--sect-line-space);
}
.jlcus_sec_title.jl_sec_style7 .jl-heading-text:after{
    content: '';
    left: 100%;
    margin-left: var(--sect-line-space);
}
.jlcus_sec_title.jl_sec_style7{
    padding-bottom: var(--sect-line-space);
    position: relative;
}
.jlcus_sec_title.jl_sec_style7 .jl-heading-text{
    color: var(--sect-t-color);
    text-shadow: var(--sect-stroke-pos) var(--sect-stroke-pos) var(--sect-shadow-color);
    -webkit-text-stroke-width: var(--sect-stroke-size);
    -webkit-text-stroke-color: var(--sect-shadow-color);
}
/*style8*/
.jlcus_sec_title.jl_sec_style8{
    padding-bottom: var(--sect-line-space);
    position: relative;
}
/*style9*/
.jlcus_sec_title.jl_sec_style9{
    padding-bottom: var(--sect-line-space);
    position: relative;
}
.jlcus_sec_title.jl_sec_style9 .jlcus_sect_inner{
    border-bottom: var(--sect-line-size) solid var(--sect-line-color);
}
.jlcus_sec_title.jl_sec_style9 .jl-heading-text span{
    background: var(--sect-line-color);
    padding: 4px 20px 4px 12px;
    margin-bottom: -1px;
    position: relative;
    z-index: 2;
    /* clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 15% 100%, 0% 100%); */
}
.jlcus_sec_title.jl_sec_style9 .jl-heading-text span:before{
    background: var(--sect-line-color);
    position: absolute;
    content: "";
    display: block;
    top: 0;
    right: -6px;
    height: 100%;
    width: 32px;
    transform: skew(20deg,0deg);
    z-index: -1;
}
/*style10*/
.jlcus_sec_title.jl_sec_style10{
    padding-bottom: var(--sect-line-space);
    position: relative;
}
.jlcus_sec_title.jl_sec_style10 .jlcus_sect_inner{
    border-top: var(--sect-line-size) solid var(--sect-line-color);
}
.jlcus_sec_title.jl_sec_style10 .jl-heading-text span{
    background: var(--sect-line-color);
    padding: 4px 20px 4px 20px;
    margin-top: -1px;
    position: relative;
}
/*style11*/
.jlcus_sec_title.jl_sec_style11{
    padding-bottom: 0px;
    position: relative;
    overflow: visible;
}
.jlcus_sec_title.jl_sec_style11 .jlcus_sect_inner{
    border-left: var(--sect-line-size, 10px) solid var(--sect-line-color);
}
.jlcus_sec_title.jl_sec_style11 .jl-heading-text span{    
    padding-left: var(--sect-line-space, 10px);
    position: relative;
    line-height: 1;
}
/*style12, style13, style14*/
.jlcus_sec_title.jl_sec_style12, .jlcus_sec_title.jl_sec_style13, .jlcus_sec_title.jl_sec_style14{
    padding-bottom: 0px;
    position: relative;
    overflow: visible;    
}
.jlcus_sec_title.jl_sec_style12 .jl-heading-text, .jlcus_sec_title.jl_sec_style13 .jl-heading-text, .jlcus_sec_title.jl_sec_style14 .jl-heading-text{
    align-items: center;
}
.jlcus_sec_title.jl_sec_style12 .jl-heading-text:before, .jlcus_sec_title.jl_sec_style13 .jl-heading-text:before, .jlcus_sec_title.jl_sec_style14 .jl-heading-text:before{
    content: '';
    display: inline-flex;
    width: 0.8em;
    height: 0.8em;
    border-radius: 100px;    
    background-color: var(--sect-line-color);
}
.jlcus_sec_title.jl_sec_style13 .jl-heading-text:before{    
    border-radius: 0px;
}
.jlcus_sec_title.jl_sec_style14 .jl-heading-text:before{    
    border-radius: 0px;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    width: 1.1em;
}
.jlcus_sec_title.jl_sec_style12 .jl-heading-text span, .jlcus_sec_title.jl_sec_style13 .jl-heading-text span, .jlcus_sec_title.jl_sec_style14 .jl-heading-text span{
    padding-left: var(--sect-line-space, 10px);
    position: relative;
    line-height: 1;
}
.jl_sec_style17.jlcus_sec_title{
    overflow: visible;
}
.jl_sec_style17 .jlcus_sect_inner:before{
    content: "";
    display: block;
    position: absolute;
    border-top: 5px solid;
    border-top-color: #161616;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -5px;
}
/*-------------------------------------------------------------------------------------
Gallery
-------------------------------------------------------------------------------------*/
.jl_gal_link_wrap{
    position: relative;
}
.jl_gal_link_wrap .jlc_gal_url{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
}
.jl_gal_wrapper{
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
.jl_gal_wrapper .jl_gal_item .jl_gal_img{
    padding-bottom: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}
.jl_gal_wrapper .jl_gal_item img{
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.jl_gal_link_wrap .jlc_gal_txt{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px 25px;
    background: #fff;
    color: #000;
    border-radius: 100px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-cat-font-weight);
    letter-spacing: .03em;
    text-transform: uppercase;
}
.jl_gal_link_wrap .jlc_gal_txt i{
    font-size: 17px;
}
.jl_sh_cter{
    display: grid;
    grid-template-columns: repeat(11,minmax(0,1fr));
    grid-row-gap: 15px;
    grid-column-gap: 20px;
    padding: 0px;
    margin: 0px;
}
.jl_sh_cter li{
    line-height: 1.3;
    list-style: none;
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-cat-font-weight);
}
.jl_sh_cter li a .jl_sh_w .jl_sh_l{
    font-weight: 400;
    opacity: .6;
}
.jl_sh_cter li a .jl_sh_i{
    font-size: 17px;
}
.jl_sh_cter li a .jl_sh_t{
    font-size: 15px;
}
.jl_sh_cter li a .jl_sh_w{
    font-size: 12px;
}
/*Style 1*/
.jl_sh_cter.jl_sh1 li a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: #000;
    color: #fff;
    padding: 12px 15px;
}
.jl_sh_cter.jl_sh1 li a .jl_sh_i{
    display: flex;
    align-items: center;
}
.jl_sh_cter.jl_sh1 li a .jl_sh_t{
    display: flex;
    margin-left: 10px;
}
.jl_sh_cter.jl_sh1 li a .jl_sh_w{
    display: flex;
    margin-left: auto;
    gap: 5px;
    align-items: center;
}
/*Style 2*/
.jl_sh_cter.jl_sh2 li a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.jl_sh_cter.jl_sh2 li a .jl_sh_i{
    display: flex;
    align-items: center;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.jl_sh_cter.jl_sh2 li a .jl_sh_t{
    display: flex;
    margin-left: 10px;
    color: var(--jl-txt-color);
}
.jl_sh_cter.jl_sh2 li a .jl_sh_w{
    display: flex;
    margin-left: auto;
    gap: 5px;
    color: var(--jl-txt-color);
    align-items: center;
}
/*Style 3*/
.jl_sh2.jl2line li a{
    border: 1px solid var(--jl-post-line-color);
    padding: 7px 12px;
}
.jl_sh2.jl2line li a .jl_sh_i{
    width: 27px;
    height: 27px;
    font-size: 14px;
}
/*Style 4*/
.jl_sh2.jl2cols li a{
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.jl_sh2.jl2cols li a .jl_sh_i{
    width: 40px;
    height: 40px;
    font-size: 17px;
}
.jl_sh2.jl2cols li a .jl_sh_t{
    margin-top: 5px;
    display: none;
}
.jl_sh2.jl2cols li a .jl_sh_t{
    margin-left: 0px;
}
.jl_sh2.jl2cols li a .jl_sh_w{
    flex-direction: column;
    margin: auto;
    gap: 0px;
    text-align: center;
    margin-top: 5px;
}
.jl_sh2.jl2cols li a .jl_sh_w .jl_sh_c{
    font-size: 16px;
}
/*Style 5*/
.jl_sh1.jl2cols li a{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    height: 100%;
}
.jl_sh1.jl2cols li a .jl_sh_i{
    font-size: 18px;
    justify-content: center;
}
.jl_sh1.jl2cols li a .jl_sh_t{
    margin-top: 5px;
    display: none;
}
.jl_sh1.jl2cols li a .jl_sh_t{
    margin-left: 0px;
}
.jl_sh1.jl2cols li a .jl_sh_w{
    flex-direction: column;
    margin: auto;
    gap: 0px;
    text-align: center;
    margin-top: 8px;
}
.jl_sh1.jl2cols li a .jl_sh_w .jl_sh_c{
    font-size: 17px;
}
.jl_sh1.jl2cols li a .jl_sh_w .jl_sh_l{
    opacity: 1;
}
.jl_wr_soci .jl_sh_i svg{
    width: auto;
}
.jl_wr_soci .jl_discord_url .jl_sh_i svg{    
    height: 0.84em;
}
.jl_wr_soci .jl_snapchat_url .jl_sh_i svg{
    height: 1.2em;
}
.jl_wr_soci .jl_reddit_url .jl_sh_i svg{    
    height: 1em;
}
/*Style color*/
.jl_sh_cter.jl_sh1 .jl_facebook_url a,
.jl_sh_cter.jl_sh2 .jl_facebook_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_facebook_url a .jl_sh_i{
    background: #3b5998;
}
.jl_sh_cter.jl_sh1 .jl_twitter_url a,
.jl_sh_cter.jl_sh2 .jl_twitter_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_twitter_url a .jl_sh_i{
    background: #1da1f2;
}
.jl_sh_cter.jl_sh1 .jl_instagram_url a,
.jl_sh_cter.jl_sh2 .jl_instagram_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_instagram_url a .jl_sh_i{
    background: #543c70;
}
.jl_sh_cter.jl_sh1 .jl_pinterest_url a,
.jl_sh_cter.jl_sh2 .jl_pinterest_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_pinterest_url a .jl_sh_i{
    background: #bd081c;
}
.jl_sh_cter.jl_sh1 .jl_youtube_url a,
.jl_sh_cter.jl_sh2 .jl_youtube_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_youtube_url a .jl_sh_i{
    background: #ff0000;
}
.jl_sh_cter.jl_sh1 .jl_vimeo_url a,
.jl_sh_cter.jl_sh2 .jl_vimeo_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_vimeo_url a .jl_sh_i{
    background: #1ab7ea;
}
.jl_sh_cter.jl_sh1 .jl_sound_cloud_url a,
.jl_sh_cter.jl_sh2 .jl_sound_cloud_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_sound_cloud_url a .jl_sh_i{
    background: #ff5500;
}
.jl_sh_cter.jl_sh1 .jl_spotify_url a,
.jl_sh_cter.jl_sh2 .jl_spotify_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_spotify_url a .jl_sh_i{
    background: #1db954;
}
.jl_sh_cter.jl_sh1 .jl_linkedin_url a,
.jl_sh_cter.jl_sh2 .jl_linkedin_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_linkedin_url a .jl_sh_i{
    background: #0a66c2;
}
.jl_sh_cter.jl_sh1 .jl_behance_url a,
.jl_sh_cter.jl_sh2 .jl_behance_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_behance_url a .jl_sh_i{
    background: #1769ff;
}
.jl_sh_cter.jl_sh1 .jl_telegram_url a,
.jl_sh_cter.jl_sh2 .jl_telegram_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_telegram_url a .jl_sh_i{
    background: #0088cc;
}
.jl_sh_cter.jl_sh1 .jl_tumblr_url a,
.jl_sh_cter.jl_sh2 .jl_tumblr_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_tumblr_url a .jl_sh_i{
    background: #2c4762;
}
.jl_sh_cter.jl_sh1 .jl_deviantart_url a,
.jl_sh_cter.jl_sh2 .jl_deviantart_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_deviantart_url a .jl_sh_i{
    background: #008e41;
}
.jl_sh_cter.jl_sh1 .jl_dribble_url a,
.jl_sh_cter.jl_sh2 .jl_dribble_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_dribble_url a .jl_sh_i{
    background: #ea4c89;
}
.jl_sh_cter.jl_sh1 .jl_dropbox_url a,
.jl_sh_cter.jl_sh2 .jl_dropbox_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_dropbox_url a .jl_sh_i{
    background: #007ee5;
}
.jl_sh_cter.jl_sh1 .jl_rss_url a,
.jl_sh_cter.jl_sh2 .jl_rss_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_rss_url a .jl_sh_i{
    background: #ff6600;
}
.jl_sh_cter.jl_sh1 .jl_skype_url a,
.jl_sh_cter.jl_sh2 .jl_skype_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_skype_url a .jl_sh_i{
    background: #00aff0;
}
.jl_sh_cter.jl_sh1 .jl_stumbleupon_url a,
.jl_sh_cter.jl_sh2 .jl_stumbleupon_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_stumbleupon_url a .jl_sh_i{
    background: #e94826;
}
.jl_sh_cter.jl_sh1 .jl_wordpress_url a,
.jl_sh_cter.jl_sh2 .jl_wordpress_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_wordpress_url a .jl_sh_i{
    background: #1f7297;
}
.jl_sh_cter.jl_sh1 .jl_yahoo_url a,
.jl_sh_cter.jl_sh2 .jl_yahoo_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_yahoo_url a .jl_sh_i{
    background: #6001d2;
}
.jl_sh_cter.jl_sh1 .jl_flickr_url a,
.jl_sh_cter.jl_sh2 .jl_flickr_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_flickr_url a .jl_sh_i{
    background: #f40083;
}
.jl_sh_cter.jl_sh1 .jl_wechat_url a,
.jl_sh_cter.jl_sh2 .jl_wechat_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_wechat_url a .jl_sh_i{
    background: #2bbc22;
}
.jl_sh_cter.jl_sh1 .jl_tiktok_url a,
.jl_sh_cter.jl_sh2 .jl_tiktok_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_tiktok_url a .jl_sh_i{
    background: #000;
}
.jl_sh_cter.jl_sh1 .jl_vk_url a,
.jl_sh_cter.jl_sh2 .jl_vk_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_vk_url a .jl_sh_i{
    background: #0077fc;
}
.jl_sh_cter.jl_sh1 .jl_discord_url a,
.jl_sh_cter.jl_sh2 .jl_discord_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_discord_url a .jl_sh_i{
    background: #5663eb;
}
.jl_sh_cter.jl_sh1 .jl_snapchat_url a,
.jl_sh_cter.jl_sh2 .jl_snapchat_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_snapchat_url a .jl_sh_i{
    background: #f8f530;
    color: #000;
}
.jl_sh_cter.jl_sh1 .jl_snapchat_url a svg,
.jl_sh_cter.jl_sh2 .jl_snapchat_url a .jl_sh_i  svg,
.jl_sh_ctericons_bg .jl_snapchat_url a .jl_sh_i  svg{    
    stroke: #000 !important;
    fill: #fff !important;
    stroke-width: 1.7px;
}
.jl_sh_cter.jl_sh1 .jl_reddit_url a,
.jl_sh_cter.jl_sh2 .jl_reddit_url a .jl_sh_i,
.jl_sh_ctericons_bg .jl_reddit_url a .jl_sh_i{
    background: #ff4c10;
}
/* Social color */
.jl_sh_ctericons.jlshcolor .jl_facebook_url a .jl_sh_i{
    color: #3b5998;
}
.jl_sh_ctericons.jlshcolor .jl_twitter_url a .jl_sh_i{
    color: #1da1f2;
}
.jl_sh_ctericons.jlshcolor .jl_instagram_url a .jl_sh_i{
    color: #543c70;
}
.jl_sh_ctericons.jlshcolor .jl_pinterest_url a .jl_sh_i{
    color: #bd081c;
}
.jl_sh_ctericons.jlshcolor .jl_youtube_url a .jl_sh_i{
    color: #ff0000;
}
.jl_sh_ctericons.jlshcolor .jl_vimeo_url a .jl_sh_i{
    color: #1ab7ea;
}
.jl_sh_ctericons.jlshcolor .jl_sound_cloud_url a .jl_sh_i{
    color: #ff5500;
}
.jl_sh_ctericons.jlshcolor .jl_spotify_url a .jl_sh_i{
    color: #1db954;
}
.jl_sh_ctericons.jlshcolor .jl_linkedin_url a .jl_sh_i{
    color: #0a66c2;
}
.jl_sh_ctericons.jlshcolor .jl_behance_url a .jl_sh_i{
    color: #1769ff;
}
.jl_sh_ctericons.jlshcolor .jl_telegram_url a .jl_sh_i{
    color: #0088cc;
}
.jl_sh_ctericons.jlshcolor .jl_tumblr_url a .jl_sh_i{
    color: #2c4762;
}
.jl_sh_ctericons.jlshcolor .jl_deviantart_url a .jl_sh_i{
    color: #008e41;
}
.jl_sh_ctericons.jlshcolor .jl_dribble_url a .jl_sh_i{
    color: #ea4c89;
}
.jl_sh_ctericons.jlshcolor .jl_dropbox_url a .jl_sh_i{
    color: #007ee5;
}
.jl_sh_ctericons.jlshcolor .jl_rss_url a .jl_sh_i{
    color: #ff6600;
}
.jl_sh_ctericons.jlshcolor .jl_skype_url a .jl_sh_i{
    color: #00aff0;
}
.jl_sh_ctericons.jlshcolor .jl_stumbleupon_url a .jl_sh_i{
    color: #e94826;
}
.jl_sh_ctericons.jlshcolor .jl_wordpress_url a .jl_sh_i{
    color: #1f7297;
}
.jl_sh_ctericons.jlshcolor .jl_yahoo_url a .jl_sh_i{
    color: #6001d2;
}
.jl_sh_ctericons.jlshcolor .jl_flickr_url a .jl_sh_i{
    color: #f40083;
}
.jl_sh_ctericons.jlshcolor .jl_wechat_url a .jl_sh_i{
    color: #2bbc22;
}
.jl_sh_ctericons.jlshcolor .jl_tiktok_url a .jl_sh_i{
    color: #000;
}
.jl_sh_ctericons.jlshcolor .jl_vk_url a .jl_sh_i{
    color: #0077fc;
}
.jl_sh_ctericons.jlshcolor .jl_discord_url a .jl_sh_i{
    color: #5663eb;
}
.jl_sh_ctericons.jlshcolor .jl_snapchat_url a .jl_sh_i{
    color: #f8f530;
}
.jl_sh_ctericons.jlshcolor .jl_snapchat_url a .jl_sh_i svg{
    color: #f8f530;
    stroke: #000 !important;
    stroke-width: 1px;
}
.jl_sh_ctericons.jlshcolor .jl_reddit_url a .jl_sh_i{
    color: #ff4c10;
}
/*-------------------------------------------------------------------------------------
Feature Box
-------------------------------------------------------------------------------------*/
.jl_box_w{
    --jl-box-cols: 3;
    --jl-box-h: 200px;
    --jl-lbl-h: 70px;
    --jl-box-gap: 30px;
    --jl-title-size: 15px;
    --jl-label-size: 13px;
    --jl-title-space: 0px;
    --jl-box-bg: #fff;
    --jl-title-color: #000;
    --jl-lbl-color: #666666;
    display: grid;
    grid-template-columns: repeat(var(--jl-box-cols),minmax(0,1fr));
    grid-gap: var(--jl-box-gap);
}
.jl_box_w .jl_box_info{
    height: var(--jl-box-h);
    width: 100%;
    display: block;
    position: relative;
}
.jl_box_link{
    position: absolute;
    z-index: 3;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
.jl_box_txtw{
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-menu-font-weight);
    background: var(--jl-box-bg);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: var(--jl-lbl-h);
    z-index: 2;
    display: flex;
    text-align: center;
    align-items: center;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%) translateX(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%) translateX(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%) translateX(-50%);
}
.jl_box_txtw .jl_box_txtin{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.jl_box_txtw .jl_box_title{
    color: var(--jl-title-color);
    font-size: var(--jl-title-size);
    letter-spacing: var(--jl-title-space);
}
.jl_box_txtw .jl_box_label{
    color: var(--jl-lbl-color);
    font-size: var(--jl-label-size);
    font-weight: 400;
}
.jl_box_w .jl_box_bg{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.jl_box_w .jl_box_bg img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: transform 1s ease,opacity .5s ease;
    transform: scale(1.01);
}
/*-------------------------------------------------------------------------------------
Video
-------------------------------------------------------------------------------------*/
.jl_vidli_w{
    width: 100%;
    display: grid;
    grid-template-columns: 65% 1fr;
    grid-template-rows: 1fr;
    grid-gap: 0px;
    --jl-padding: 40px;
    --jl-h-align: left;
    --jl-v-align: end;
    --jl-f-size: 35px;
    --sect-bg-color: #121418;
    --sect-line-color: #2f2d2d;
    --sect-title-color: #fff;
    --sect-meta-color: #888;
    --sect-active-color: #d61919;
    background: var(--sect-bg-color);
}
.jl_vidli_w .jl_vidfr{
    position: relative;
    overflow: hidden;
}
.jl_vidli_w .jl_vidfr .jl_vid_mc{
    width: 100%;
    padding-bottom: 67.4%;
}
.jl_vid_mp{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px !important;
    height: 70px !important;
    z-index: 6;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%) translateX(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%) translateX(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%) translateX(-50%);
}
.jl_vid_mp .jl_vid_mpin{
    width: 70px !important;
    height: 70px !important;
    position: relative;
    cursor: pointer;
    display: flex;
    text-align: center;
    align-items: center;
    background: #fff;
    color: #000;
    justify-content: center;
    border-radius: 100px;
    transition: all 0.3s ease 0s;
}
.jl_vid_mpin .jl_pop_vid{
    position: absolute;
    width: 100%;
    height: 100%;
}
.jl_vidli_w .jl_imgw .jl_imgin img{
    transform: scale(1.01) !important;
}
.jl_vid_mp:hover .jl_vid_mpin{
    transform: scale(1.25);
}
.jl_vid_mp svg{
    width: 30%;
    height: auto;
    transition: all 0.1s ease 0s;
}
.jl_vid_mp.jl_livid, .jl_vid_mp.jl_livid .jl_vid_mpin{
    width: 45px !important;
    height: 45px !important;
}
.jl_fr9_wrap .jl_vid_mp.jl_livid, .jl_ov_el .jl_vid_mp.jl_livid{
    display: none;
}
.jl_vid_mc.jl_ov_el .jl_fe_text{
    padding: var(--jl-padding);
    text-align: var(--jl-h-align);
    align-items: var(--jl-v-align);
}
.jl_vidli_w .jl_vidsb{
    padding: 0px;
    position: relative;
    overflow: hidden;
}
.jl_vidli_w .jl_vidsb .jl_vidsb_c{
    position: relative;
}
.jl_vidli_w .jl_vid_pin{
    padding-bottom: 56.25%;
    position: relative;
}
.jl_vidli_w .jl_vid_pin video, .jl_vidli_w .jl_vid_pin iframe{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.jl_vidli_w .jl_vidsb .jl_vidsb_c .jl_vidfr{
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.jl_vidli_w .jl_vidsb .jl_ac_vid .jl_vid_sh{
    display: none;
}
.jl_vidli_w .jl_vidsb .jl_ac_vid .jl_vid_mpin{
    background: var(--sect-active-color);
    color: #fff;
}
.jl_vid_sh{
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.jl_vidli_w .jl_vidsb_in{
    --jlrow-gap: 35px;
    --jl-post-line-color: var(--sect-line-color);
    --jl-t-size: 15px;
    overflow-y: auto;
    height: 100%;
    position: absolute;
    width: 100%;
    display: grid;
    padding: 20px 0px 10px 0px;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-row-gap: var(--jlrow-gap);
}
.jl_vidli_w .jl_vidsb_in::-webkit-scrollbar{
    width: 3px;
    height: 3px;
}
.jl_vidli_w .jl_vidsb_in::-webkit-scrollbar-track{
    background: rgba(255, 255, 255, .2);
}
.jl_vidli_w .jl_vidsb_in::-webkit-scrollbar-thumb{
    background: var(--sect-active-color);
}
.jl_vidli_w .jl_vidsb_in .jl_cslist_layout{
    padding: 0px 10px 0px 30px;
}
.jl_vidli_w .jl_fe_title{
    color: var(--sect-title-color);
}
.jl_post_meta span, .jl_post_meta span a{
    color: var(--jl-meta-color) !important;
}
.jl_vidli_w .jl_cslist_layout .jl_li_in{
    gap: 20px;
}
.jl_vidli_w .jl_cslist_layout .jl_img_holder{
    -webkit-flex: 0 0 110px;
    -ms-flex: 0 0 110px;
    flex: 0 0 110px;
    width: 110px;
    position: relative;
}
.jl_vidli_w .jl_cslist_layout .jl_imgw{
    height: 90px;
}
.jl_vidli_w .jl_cslist_layout .jl_vid_mp, .jl_vidli_w .jl_cslist_layout .jl_vid_mp .jl_vid_mpin{
    width: 33px !important;
    height: 33px !important;
}
/*-------------------------------------------------------------------------------------
MFP
-------------------------------------------------------------------------------------*/
.glightbox-open{
    overflow: visible !important;
}
.gclose, .gnext, .gprev{
    padding: 0px !important;
}
.plyr button{
    height: auto !important;
}
.goverlay{
    background: rgba(0,0,0,.98) !important;
}
/*-------------------------------------------------------------------------------------
Pagination
-------------------------------------------------------------------------------------*/
.jellywp_pagination {
    margin: 0px !important;
    text-align: center;
    text-transform: uppercase;
    float: left;
    width: 100%;
}
.jellywp_pagination ul {
    float: left;
    width: 100%;
    padding: 0px;
    list-style: none;
    display: block;
    text-align: center;
    margin: 40px 0px 0px 0px;
}
.jellywp_pagination ul li {
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-meta-font-weight);
    float: none;
    padding: 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    white-space: nowrap;
    list-style: none;
    margin: 0 2px;
}
.jellywp_pagination ul li a {
    font-size: 12px;
    margin-right: 0px;
    padding: 0px;
    height: 35px;
    line-height: 35px;
    width: 35px;
    float: left;
    text-decoration: none;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    background: #000;
    color: #fff;
    border-radius: 100px;
}
.jellywp_pagination ul li a i {
    font-size: 9px;
}
.jellywp_pagination ul li span {
    font-size: 12px;
    margin-right: 0px;
    padding: 0px;
    height: 35px;
    line-height: 35px;
    width: 35px;
    float: left;
    text-decoration: none;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    background: var(--jl-main-color);
    color: #fff;
    border-radius: 100px;
}
.jellywp_pagination ul li .page-numbers.dots {
    background: transparent !important;
    color: #000;
    width: 10px;
    margin: 0px;
}
.jellywp_pagination ul li a:hover {
    text-decoration: none !important;
    background: var(--jl-main-color);
    color: #FFF !important;
}
.jelly-infinite-scroll {
    float: left;
    width: 100%;
    display: block !important;
    text-align: center;
}
.jelly-infinite-scroll a {
    position: relative;
    z-index: 2;
    padding: 7px 25px;
    width: 220px;
    max-width: 100%;
    line-height: 20px;
    border: 3px solid #ececec;
    background: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
}
.jelly-infinite-scroll a:hover,
.jelly-infinite-scroll a:focus {
    border: 3px solid #d8d8d8;
    text-decoration: none !important;
}

.jl-spin {
    -webkit-animation: jl-spin 2s infinite linear;
    animation: jl-spin 2s infinite linear;
}
@-webkit-keyframes jl-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes jl-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.jl_load_cw {
    float: left;
    width: 100%;
}
.jl_load_c {
    margin: 0px -15px;
    padding-top: 25px;
    padding-bottom: 20px;
}
.jl_load_c * {
    outline: none;
}
.jl_load_c .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
}
.jl_load_c .jl_bar_item {
    display: block;
    width: 25%;
    cursor: pointer;
    float: left;
    color: #000;
    padding: 0px 15px;
}
.jl_load_c .jl_bar_item .jl_l_bar {
    float: left;
    width: 100%;
    height: 1px;
    margin-top: 15px;
    background-color: rgba(0, 0, 0, 0.1);
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.jl_load_c .jl_bar_item .jl_l_bar:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: var(--jl-main-color);
    width: 0%;
    height: 1px;
}
.jl_load_c .jl_bar_item.slick-current .jl_l_bar:before {
    animation-name: slidewidth;
    animation-duration: 9s;
}
.jl_load_c .slick-current .jl_ln {
    color: #fff;
    border-color: var(--jl-main-color);
    background: var(--jl-main-color);
    -webkit-transition: .3s 0s cubic-bezier(.86, .17, 0, .81);
    -o-transition: .3s 0s cubic-bezier(.86, .17, 0, .81);
    transition: .3s 0s cubic-bezier(.86, .17, 0, .81);
}
.jl_lnw {
    width: 100%;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.jl_bar_item .jl_ln {
    font-size: 15px;
    -webkit-flex: 0 0 30px;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    color: #000;
    border: 1px solid #000;
    border-radius: 100px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
}
.jl_bar_item .jl_ln:before {
    content: '0';
}
.jl_bar_item .jl_tt {
    margin: 0px 0px 0px 10px;
    font-size: 15px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.is-hidden {
    display: none !important;
}
.jl_hide {
    opacity: 0 !important;
}
.show_block {
    -webkit-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
}
.end-list {
    width: 100%;
}
.jl_end_wrp {
    line-height: 1.2;
}
.jl_el_nav_w{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.jl_el_nav_w.jl_nxpre{
    display: flex !important;
}
.pagination-nextprev {
    text-align: center;
    line-height: 0;
}
.jl_disable {
    pointer-events: none;
    opacity: .3;
}
.pagination-nextprev .jl-foot-nav {
    color: var(--jl-txt-color);
    border: 1px solid currentColor;
    display: inline-block;
    height: 26px;
    line-height: 24px;
    padding: 0px 10px;
    width: 26px;
    text-align: center;
    position: relative;
}
.pagination-nextprev .jl-foot-nav:hover {
    color: #fff !important;
    background: var(--jl-main-color);
    border-color: transparent;
}
.pagination-nextprev .jl-foot-nav i {
    font-size: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%) translateX(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%) translateX(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%) translateX(-50%);
}
.pagination-nextprev .ajax-prev i,
.pagination-nextprev .ajax-next i {
    margin: 0px !important;
}
.jl_lmore_wrap,
.jl_end_wrp {
    display: flex;
    text-align: center;
}
.jl_lmore_wrap .jl-load-animation {
    top: 50%;
    left: 0%;
    right: 0%;
    width: 100%;
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    display: none;
}
.jl-load-animation span,
.load-animation span {
    width: 25px;
    height: 25px;
    border: 3px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    margin-top: 8px;
    display: inline-block;
}
.jl_autoload .jl-load-animation span,
.jl_autoload .load-animation span {
    border: 3px solid var(--jl-txt-color);
    border-right-color: transparent;
}
.jl-load-animation span:after,
.load-animation span:after {
    content: '';
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 16px;
}
.load-animation span {
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    border: 3px solid #000;
    border-right-color: transparent;
}
.load-animation span:after {
    background: #000;
}
.load-animation span:before {
    background: #000;
}
.jl_sp_con, .jl_sp_lp{
    width: 100%;    
}
.jl_sp_lp{
    border-top: 1px solid var(--jl-post-line-color);
}
.jl_sp_spin{
    width: 35px;
    height: 35px;
    border: 4px solid var(--jl-txt-color);
    border-right-color: transparent;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    display: flex;
    margin: 30px auto;
}
@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.jl_lmore_c.jl_hide_pagination {
    display: none;
}
.jl_lmore_c,
.jl_autoload {
    width: var(--jl-load-more-width);
    height: var(--jl-load-more-height);
    position: relative;
    display: inline-block;
    background: var(--jl-main-color);
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border-radius: var(--jl-load-more-radius);
}
.jl_lmore_c:hover{
    background-color: var(--jl-btn-bg) !important;
}
.jl_autoload.jl_hide_pagination, .jl_autoload{
    background: transparent !important;
}
.jl_hide_pagination{
    display: none;
}
.jl_lmore_c .jl-load-link {
    font-family: var(--jl-menu-font);
    font-size: var(--jl-loadmore-font-size);
    font-weight: var(--jl-loadmore-font-weight);
    text-transform: var(--jl-loadmore-transform);
    letter-spacing: var(--jl-loadmore-space);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0px 40px;
    width: 100%;
}
.jl_lmore_c .jl-load-link:hover {
    text-decoration: none !important;
    color: #fff !important;
}
.jl_lmore_c:hover {
    background: var(--jl-main-color);
}
/*-------------------------------------------------------------------------------------
Loading
-------------------------------------------------------------------------------------*/
.jl-loadmore-btn-w {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.jl_btn_load {
    position: relative;
    width: 194px;
    height: 45px;
    line-height: 45px;
    padding: 0px;
    background: #222;
    color: #fff;
    text-align: left;
    text-shadow: none;
    text-decoration: none;
    cursor: pointer;
    filter: none;
    box-shadow: none;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}
.jl_btn_load:focus {
    text-decoration: none;
    color: #fff;
}
.jl_btn_load:hover {
    text-decoration: none !important;
    color: #fff;
    background: #222;
    -webkit-transform: translatey(-3px);
    transform: translatey(-3px);
    -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, .2);
    box-shadow: 0 20px 30px rgba(0, 0, 0, .2);
}
.jl-fixslider {
    float: left;
    width: 100%;
}

/*-------------------------------------------------------------------------------------
Post meta
-------------------------------------------------------------------------------------*/
.jl_post_meta {
    font-family: var(--jl-menu-font);
    letter-spacing: var(--jl-meta-font-space);
    font-size: var(--jl-meta-font-size);
    font-weight: var(--jl-meta-font-weight);
    text-transform: var(--jl-meta-transform);
    justify-content: var(--jl-h-align);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
    line-height: 1.2;
    gap: 2px 8px;
}
.jl_post_meta .jl_author_img_w {
    margin-right: 0px;
    margin-bottom: 0px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.jl_slimeta.jl_post_meta .jl_author_img_w .jl_aimg_in, .jl_slimeta.jl_post_meta .jl_author_img_w img{
    width: 25px !important;
    height: 25px !important;
}
.jl_post_meta .jl_author_img_w .jl_aimg_in{
    width: 20px !important;
    height: 20px !important;
    display: flex;
    border-radius: 100px;
    overflow: hidden;
}
.jl_post_meta .jl_author_img_w img {
    width: 20px !important;
    height: 20px !important;
    float: none;
    display: inline-block;
    margin-left: 0px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}
.jl_post_meta span a {
    color: var(--jl-txt-color);
    font-weight: var(--jl-meta-a-font-weight);
    position: relative;
    z-index: 2;
}
.jl_post_meta a,
.jl_post_meta a:hover {
    text-decoration: none !important;
    line-height: 1.2;
}
.jl_post_meta span{
    float: none;
    display: inline-flex;
    align-items: center;
    color: var(--jl-meta-color);
    line-height: 1.2;
    margin-right: 0px;
    position: relative;
}
.jl_post_meta span:last-child {
    margin-right: 0px;
    padding-right: 0px;
}
.jl_post_meta span:first-child:before, .jl_hide_author .jl_post_meta span:before{
    display: none;
}
.jl_post_meta span:before{
    content: "";
    margin-right: 8px;
    width: 2px;
    height: 2px;
    background: currentColor;
    display: inline-flex;
    border-radius: 10px;
}
.jl_post_meta .jl_pta{
    margin: 0px;
    align-self: stretch;
}
.jl_post_meta .jl_pt_meta:before,
.jl_post_meta .jl_pta:before,
.jl_post_meta .jl_ptb:before{
    display: none;
}
.jl_post_meta .jl_pt_meta{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2px;
}
.jl_smmeta{
    gap: 10px;
}
.jl_smmeta.jl_post_meta .jl_author_img_w{
    margin-right: 0px;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    overflow: hidden;
}
.jl_smmeta.jl_post_meta .jl_author_img_w img{
    width: 35px !important;
    height: 35px !important;
}
/*-------------------------------------------------------------------------------------
Single
-------------------------------------------------------------------------------------*/
.jl_rd_wrap{
    width: 100%;
    position: fixed;    
    z-index: 999999;
}
.jl_rd_read{
    height: 5px;
    width: 0px;    
    opacity: 0;
    background-color: #8100ff;
    background-image: linear-gradient(to right, #ff0080 0%, #8100ff 100%);
}
.jl_block_content{
    padding: 50px 0px;
}
.jl_header_tp.jl_spop_single1 .jl_block_content,
.jl_header_tp.jl_spop_single2 .jl_block_content,
.jl_header_tp.jl_spop_single3 .jl_block_content,
.jl_header_tp.jl_spop_single4 .jl_block_content,
.jl_header_tp.jl_spop_single5 .jl_block_content,
.jl_header_tp.jl_spop_single6 .jl_block_content,
.jl_header_tp.jl_spop_single7 .jl_block_content,
.jl_header_tp.jl_spop_single8 .jl_block_content,
.jl_header_tp.jl_spop_single14 .jl_block_content{
    padding: calc(var(--jl-sec-menu-height) + 50px) 0px;
}
.jl_header_tp.jl_spop_single10 .jl_sp_con .jl_breadcrumbs{
    display: none !important;
}
@media only screen and (max-width: 1024px) {
    .jl_header_tp.jl_spop_single1 .jl_block_content,
    .jl_header_tp.jl_spop_single2 .jl_block_content,
    .jl_header_tp.jl_spop_single3 .jl_block_content,
    .jl_header_tp.jl_spop_single4 .jl_block_content,
    .jl_header_tp.jl_spop_single5 .jl_block_content,
    .jl_header_tp.jl_spop_single6 .jl_block_content,
    .jl_header_tp.jl_spop_single7 .jl_block_content,
    .jl_header_tp.jl_spop_single8 .jl_block_content,
    .jl_header_tp.jl_spop_single14 .jl_block_content{
        padding: 80px 0px;
    }
}
.post_content_w{
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.jls_con_w{
    width: 100%;
    max-width: calc(100% - 75px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.jl_content > *{
    max-width: 100%;
}
.jl_content p{
    word-wrap: break-word;
}
.jl_content>*:last-child{
    margin-bottom: 0;
}
.jl_content, .jl_content p{
    color: var(--jl-single-color);
}
.jl_content a{
    color: var(--jl-single-link-color);
    text-decoration: underline rgba(255, 255, 255, 0) !important;
    transition: text-decoration-color 300ms !important;
}
.jl_content a:hover{
    color: var(--jl-single-link-hcolor) !important;
    text-decoration: underline !important;
    text-decoration-color: currentColor;
}
.jl_content ul{
    padding-left: 15px;
}
.jl_content ol{
    padding-left: 0px;
    list-style-position: inside;
}
.jl_content ol ol{
    padding-left: 20px;
    list-style-position: inside;
}
.jl_content ul, .jl_content > div{
    margin-bottom: 30px;
}
.jli-flickr,
.jli-youtube,
.jli-twitter,
.jli-soundcloud,
.jli-behance,
.jli-deviantart,
.jli-vk,
.jli-vimeo,
.jli-linkedin{
    font-size: 85%;
}
.jli-vk{
    font-size: 73%;
}
.jli-mail{
    font-size: 80%;
}
.wrap-pin{
    position: relative;
}
.wrap-pin .pinitsvg{
    position: absolute;
    top: 10px;
    right: 10px;
    background: #cd1d1f;
    color: #fff !important;
    display: block !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    font-size: 17px;
    text-decoration: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.wrap-pin .pinitsvg:hover{
    text-decoration: none !important;
    color: #fff !important;    
}
.wrap-pin:hover .pinitsvg{
    opacity: 1 !important;
    pointer-events: auto !important;
}
/* Left share */
.post_sw{
    -webkit-flex: 0 0 45px;
    -ms-flex: 0 0 45px;
    flex: 0 0 45px;
    width: 45px;
    text-align: center;
}
.post_sw .jl_share_wrapper{
    display: flex;
}
.post_s .jl_sli_w span{
    display: none;
}
.post_s .jl_sli_w ul{
    margin: 0px;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-gap: 10px;
}
.post_s .jl_sli_w ul li{
    list-style: none;
    display: flex;
    justify-content: center;
}
.post_s .jl_sli_w ul li a{
    color: var(--jl-txt-color);
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    width: 40px;
    border: 1px solid var(--jl-post-line-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.post_s .jl_sli_w ul .jl_sli_fb a{
    color: #455fa1;
}
.post_s .jl_sli_w ul .jl_sli_tw a{
    color: #58abf5;
}
.post_s .jl_sli_w ul .jl_sli_pi a{
    color: #cd1d1f;
}
.post_s .jl_sli_w ul .jl_sli_din a{
    color: #1980be;
}
.post_s .jl_sli_w ul .jl_sli_wapp a{
    color: #23c761;
}
.post_s .jl_sli_w ul .jl_sli_tele a{
    color: #0088cc;
}
.post_s .jl_sli_w ul .jl_sli_tumblr a{
    color: #32506d;
}
.post_s .jl_sli_w ul .jl_sli_mil a{
    color: var(--jl-txt-color);
}

.jl_share_l_bg .post_s .jl_sli_w ul{
    grid-gap: 0px;
}
.jl_share_l_bg .post_s .jl_sli_w ul li a{
    border: 0px;
    border-radius: 0px;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_fb a{
    color: #FFF;
    background: #455fa1;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_tw a{
    color: #FFF;
    background: #58abf5;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_pi a{
    color: #FFF;
    background: #cd1d1f;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_din a{
    color: #FFF;
    background: #1980be;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_wapp a{
    color: #FFF;
    background: #23c761;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_tele a{
    color: #FFF;
    background: #0088cc;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_tumblr a{
    color: #FFF;
    background: #32506d;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_line a{
    color: #FFF;
    background: #3bce26;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_line svg{
    width: 30px;
}
.jl_share_l_bg .post_s .jl_sli_w ul .jl_sli_mil a{
    color: #fff;
    background: var(--jl-btn-bg);
}

.jl-sp-image-caption{
    font-family: var(--jl-menu-font);
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 80%;
    z-index: 60;
    padding: 5px 14px;
    color: #fff;
    font-size: 12px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

/* Footer share */
.jl_sfoot{
    margin-top: -1px;
    padding-top: 35px;
    background: var(--jl-bg-color);
    position: relative;
}
.jl_sfoot .jl_share_wrapper{
    display: none;
}
.jl_sfoot ul{
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.jl_sfoot ul li{
    list-style: none;
    flex-grow: 1;
    flex-basis: 0;
}
.jl_sfoot ul li a{
    display: flex;
    width: 100%;
    height: 40px;
    color: #fff;
    font-family: var(--jl-menu-font);
    font-size: 15px;
    font-weight: 500;
    gap:5px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}
.jl_sfoot ul li a span{
    font-family: var(--jl-menu-font);
    font-size: 12px;
}
.jl_sfoot ul .jl_sli_fb a{
    background: #455fa1;
}
.jl_sfoot ul .jl_sli_tw a{
    background: #58abf5;
}
.jl_sfoot ul .jl_sli_pi a{
    background: #cd1d1f;
}
.jl_sfoot ul .jl_sli_din a{
    background: #1980be;
}
.jl_sfoot ul .jl_sli_wapp a{
    background: #23c761;
}
.jl_sfoot ul .jl_sli_tele a{
    background: #0088cc;
}
.jl_sfoot ul .jl_sli_line a{
    background: #3ACE01;
}
.jl_sfoot ul .jl_sli_line a svg{
    width: 30px;
}
.jl_sfoot ul .jl_sli_line a svg .line_bg_fill{
    fill: transparent;
}
.jl_sfoot ul .jl_sli_tumblr a{
    background: #32506d;
}
.jl_sfoot ul .jl_sli_mil a{
    background: var(--jl-txt-color);
}
.options_dark_skin .jl_sfoot ul .jl_sli_mil a{
    background: var(--jl-btn-bg);
}
.jl_sli_line.jl_shli svg{
    width: 20px; 
    height: auto;
}
.jl_sfoot ul .jl_sli_din, .jl_sfoot ul .jl_sli_wapp, .jl_sfoot ul .jl_sli_mil, .jl_sfoot ul .jl_sli_tele, .jl_sfoot ul .jl_sli_tumblr, .jl_sfoot ul .jl_sli_line{
    -webkit-flex: 0 0 50px;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    width: 50px;
}
/* Author box */
.jl_auth_single{
    margin-top: 40px;
}
.jl_info_auth{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--jl-author-bg);
    padding: 25px;
    border-radius: var(--jl-border-rounded);
}
.jl_info_auth .author-avatar{
    -webkit-flex: 0 0 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 300px;
    overflow: hidden;
    position: relative;
    align-self: flex-start;
}
.jl_info_auth .author-avatar img{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.author-description .jl_auth_lbl{
    font-family: var(--jl-menu-font);
    letter-spacing: 0.1em;
    font-size: var(--jl-meta-font-size);
    font-weight: var(--jl-meta-font-weight);
    text-transform: uppercase;
    display: flex;
    margin-bottom: 6px;
}
.author-description h5{
    margin-bottom: 0px;
    font-size: 18px;
}
.author-description p{
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 14px;
    opacity: .7;
}
.jl_auth_link{
    padding: 0px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;    
    margin-bottom: 0px;
    margin-top: 15px;
}
.jl_auth_link li{
    display: flex;
    list-style: none;
    align-items: center;
}
.jl_auth_link li a{
    font-size: 14px;
    display: flex;
}
.jl_auth_head.jl_info_auth{
    margin-bottom: 40px;
    margin-top: 10px;
}
.author_postcount, .author_commentcount{
    margin-top: 15px;
    margin-bottom: 0px;
    font-size: 12px;
    display: inline-flex;
    line-height: 1.2;
    gap: 10px;
    margin-right: 5px;
    background:rgba(199,164,71,.2);
    border-radius: 2px;
    height: 17px;
    align-items: center;
    padding: 0px 5px !important;
}
/* Source / Via */
.jl_source_w, .jl_via_w{
    display: flex;
    gap: 2px 10px;
    flex-wrap: wrap;
    font-size: 13px;
}
.jl_source_w a, .jl_via_w a{
    font-weight: bold;
    text-transform: initial;
}
.jl_source_w a:after, .jl_via_w a:after{
    content: ',';
}
.jl_source_w a:last-child:after, .jl_via_w a:last-child:after{
    display: none;
}
.jl_via_w{
    display: flex;
}
/* Tag */
.single_tag_share .tag-cat{
    margin-top: 10px;
}
.single_tag_share > *:first-child{
    margin-top: 0px;
}
.single_post_tag_layout{
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.single_post_tag_layout li{
    list-style: none;
}
.single_post_tag_layout li a{
    padding: 0px 13px;
    height: 24px;
    border-radius: 100px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-transform: capitalize;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    font-family: var(--jl-menu-font);
    font-size: 12px !important;
    background: var(--jl-btn-bg);
    color: #fff;
    font-weight: 500;
}

/* Single slider */
.jl_slide_wrap_s{
    overflow: hidden;
    position: relative;
}
.jl_slide_wrap_s, .jl_slide_wrap_s .swiper-slide-inner{
    height: 550px;
}
.jl_slide_wrap_s .jl-swiper-button-next, .jl_slide_wrap_s .jl-swiper-button-prev{
    display: flex;
    position: absolute;
    top: 50%;
    z-index: 2;
    cursor: pointer;
    transition: .3s ease;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    font-size: 15px;
    color: #000;
    width: 33px;
    height: 33px;
    opacity: 0;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.jl_slide_wrap_s:hover .jl-swiper-button-next, .jl_slide_wrap_s:hover .jl-swiper-button-prev{
    opacity: 1;
}
.jl_slide_wrap_s .jl-swiper-button-next:hover, .jl_slide_wrap_s .jl-swiper-button-prev:hover{
    color: #fff;
    background: var(--jl-main-color);
}
.jl_slide_wrap_s .jl-swiper-button-next{
    right: 25px;
}
.jl_slide_wrap_s .jl-swiper-button-prev{
    left: 25px;
}
/* Gallery */
.jl_sgal_wrap{
    display: flex;
    width: 100%;
    gap: 10px;
    flex-direction: column;
}
.jl_sifea_img{
    position: relative;
}
.jl_galss{
    position: relative;
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--jl-post-line-color);
    flex-wrap: nowrap;
    overflow: hidden;
}
.jl_galss .jl_gal_img{
    width: 90px;
    height: 90px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 90px;
}
.jl_galss .jl_gal_img:before{
    content: '';
    background-color: #000;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.jl_galss .jl_gal_img:hover:before{
    opacity: .4;
}
.jl_galss .jl_gal_img img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
/* Video */
.jl_shead_tpl1 .jlvid_container{
    margin-bottom: 0px;
}
.jlvid_container iframe{
    margin-bottom: 0px !important;
}

.jlvid_local .wp-video, .jlvid_local video.wp-video-shortcode, .jlvid_local .mejs-container, .jlvid_local .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.wp-video{
    width: 100% !important;
}
.wp-video .mejs-video{
    width: auto !important;
}
.wp-video .wp-video-shortcode{
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}
.jlvid_local .mejs-container {
    padding-top: 56.25%;
}
.jlvid_local .wp-video, .jlvid_local video.wp-video-shortcode {
    max-width: 100% !important;
}
.jlvid_local video.wp-video-shortcode {
    position: relative;
}
.jlvid_local .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.jlvid_local .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}

/* Quote */
.jl_squote_w{
    position: relative;
    padding-bottom: 60%;
}
.jl_squote_w:before{
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 2;
    background: rgba(0,0,0,.3);
}
.jl_squote_w .jl_imgw{
    padding-bottom: 0px !important;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 1;
}
.jl_squote_w .jl_squote_in{
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: 100%;
    height: 100%;
    gap: 20px;
}
.jl_squote_w .jl_squote_in *{
    color: #fff;
    margin: 0px;
}
.jl_squote_w .jl_squote_in .jli-quote-right{
    font-size: 20px;
}
.jl_squote_w .jl_squote_in .quote_text_des{
    font-size: 26px;
}
.jl_squote_w .jl_squote_in .quote_source{
    font-size: 12px;
}
.post_subtitle_text{
    margin-bottom: 0px;
    margin-top: 10px;
    font-size: 22px;
    opacity: .8;
    font-family: serif;
    font-style: italic;
    max-width: 100%;
    line-height: 1.27;
}
.post_subtitle_text p:last-child{
    font-size: 22px;
    font-family: serif;
    font-style: italic;
    margin-bottom: 0px;
    line-height: 1.27;
}
/* Breadcrumb */
.jl_breadcrumbs{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 15px;
    font-family: var(--jl-menu-font);
    word-break: keep-all;
}
.jl_breadcrumbs a:hover{
    color: var(--jl-txt-color) !important;
}
.jl_breadcrumbs .jl_item_bread:last-child{
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.jl_breadcrumbs i{
    font-size: 6px;
}
/* Sponsored */
.jl_spon_wrap{
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 10px;
    color: #ff0000;
    font-family: var(--jl-menu-font);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
}
.jl_spon_wrap a{
    display: flex;
}
.jl_spon_wrap img{
    height: 23px;
    width: auto;
}
/* Page title */
.jl_pc_sec_title{
    margin-bottom: 35px;
}
.jl_pc_sec_title .jl_pc_sec_h{
    font-size: 40px;
    margin-bottom: 0px;
}
/* Single layout 1 / Single layout 2 / Single layout 6 */
.jl_head_title{
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.jl_shead_tpl1 .jl_f_cat, .jl_shead_tpl2 .jl_f_cat, .jl_shead_tpl3 .jl_f_cat, .jl_shead_tpl4 .jl_f_cat, .jl_shead_tpl5 .jl_f_cat, .jl_shead_tpl6 .jl_f_cat{
    margin-bottom: 15px !important;
}
.jl_shead_tpl1{
    gap: 30px;
    display: flex;
    flex-direction: column;
}
.jl_shead_tpl1 .jl_head_title{
    font-size: var(--jl-single-title-size);
    margin-bottom: 0px;
    max-width: 95%;
}
.jl_shead_tpl1 .jl_slimeta{
    margin-top: 13px;
}
/* Single layout 3 */
.jl_shead_tpl3{
    --jl-img-height: 65% !important;
    --jlc-car-radius: 0px !important;
    --jl-padding: 30px !important;
    --jl-h-align: center !important;
    --jl-v-align: center !important;    
    --jlc-car-radius: var(--jl-border-rounded) !important;
}
.jl_shead_tpl3 .jl_imgw .jl_imgin img{
    transform: scale(1.01) !important;
}
.jl_shead_tpl3 .jl_ov_layout:before{
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 2;
    background: rgba(10,0,0,0.3);
}
.jl_shead_tpl3 .jl_head_title.jl_fe_title{
    font-size: var(--jl-single-title-size);
    color: #FFF;
}
.jl_shead_tpl3 .post_subtitle_text{
    opacity: .95;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}
.jl_shead_tpl3 .jl_slimeta{
    margin-top: 13px;
}
/* Single layout 4 */
.jl_shead_tpl4{
    --jl-img-height: 65% !important;
    --jlc-car-radius: 0px !important;
    --jl-padding: 40px !important;
    --jl-h-align: left !important;
    --jl-v-align: end !important;    
    --jlc-car-radius: var(--jl-border-rounded) !important;
}
.jl_shead_tpl4 .jl_breadcrumbs{
    position: absolute;
    top: 40px;
    left: 40px;
    color: #fff;
}
.jl_shead_tpl4 .jl_breadcrumbs a{
    color: #fff !important;
}
.jl_shead_tpl4 .jl_imgw .jl_imgin img{
    transform: scale(1.01) !important;
}
.jl_shead_tpl4 .jl_ov_layout:before{
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 2;
    background: rgba(10,0,0,0.3);
}
.jl_shead_tpl4 .jl_head_title.jl_fe_title{
    font-size: var(--jl-single-title-size);
    color: #FFF;
}
.jl_shead_tpl4 .post_subtitle_text{
    opacity: .95;
    color: #fff;
}
.jl_shead_tpl4 .jl_slimeta{
    margin-top: 13px;
}

/* Single layout 5 */
.jl_single_tpl_w{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.jl_single_tpl5 .jl_sifea_img{
    overflow: hidden;
    max-height: 600px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jl_single_tpl5 .jl_sifea_img img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
/* Single layout 6 */
.jl_single_tpl6 .jl_sifea_img{
    overflow: hidden;
    max-height: 600px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jl_single_tpl6 .jl_shead_tpl1 .jl_head_title{
    font-size: calc(var(--jl-single-title-size) + 5px);
    max-width: 100%;
}
.jl_single_tpl6 .jl_sifea_img img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.jl_single_tpl6 .post_content_w{
    margin-top: 0px;
}
/* Single layout 7 */
.jl_single_tpl7 .jl_shead_tpl3 {
    --jl-img-height: 52% !important;
}
.jl_single_tpl7 .post_content_w{
    margin-top: 0px;
}
.jl_single_tpl7 .jl_ov_el .jl_fe_text{
    max-width: 750px;
    margin: 0 auto;
    padding: 20px;
}
/* Single layout 8 */
.jl_single_tpl8 .jl_shead_tpl4 {
    --jl-img-height: 52% !important;
}
.jl_single_tpl8 .jl_shead_tpl4 .jl_head_title{
    max-width: 700px;
}
.jl_single_tpl8 .post_content_w{
    margin-top: 0px;
}
/* Single layout 9 */
.jl_shead_tpl3.jl_shead_mix9{
    --jl-img-height: 42% !important;
}
.jl_shead_tpl3.jl_shead_mix9 .jl_ov_layout{
    height: 600px;
    padding-bottom: 0px !important;
}
.jl_shead_tpl3.jl_shead_mix9 .jl_head_title.jl_fe_title{
    font-size: var(--jl-single-title-size);
}
.jl_shead_tpl3.jl_shead_mix9 .jl_fe_text{
    max-width: 750px;
    margin: 0 auto;
    padding: 0px 20px;
}
.jl_single_tpl9 .post_content_w{
    margin-top: 0px;
}
/* Single layout 10 */
.jl_shead_tpl4.jl_shead_mix10{
    --jl-img-height: 42% !important;
}
.jl_shead_tpl4.jl_shead_mix10 .jl_ov_layout{
    height: 600px;
    padding-bottom: 0px !important;
}
.jl_shead_tpl4.jl_shead_mix10 .jl_head_title.jl_fe_title{
    font-size: var(--jl-single-title-size);
}
.jl_shead_tpl4.jl_shead_mix10 .jl_fe_text{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
}
.jl_shead_tpl4.jl_shead_mix10 .jl_fe_text .jl_breadcrumbs{
    position: absolute;
    top: 20px;
    left: 20px;
}
.jl_shead_tpl4.jl_shead_mix10 .jl_head_title{
    max-width: 750px;
}
.jl_single_tpl10 .post_content_w{
    margin-top: 0px;
}
/* Single layout 11 */
.jl_shead_tpl11 .jl_ov_layout{
    height: 600px;
    padding-bottom: 0px !important;
}
.jl_shead_tpl11 .jl_ov_layout .jl_imgw .jl_imgin img{
    transform: scale(1.01) !important;
}
/* Single layout 12 */
.jl_shead_tpl3.jl_shead_mix12{
    --jl-img-height: 42% !important;
}
.jl_shead_tpl3.jl_shead_mix12 .jl_ov_layout{
    height: 700px;
    padding-bottom: 0px !important;
}
.jl_shead_tpl3.jl_shead_mix12 .jl_head_title.jl_fe_title{
    font-size: var(--jl-single-title-size);
}
.jl_shead_tpl3.jl_shead_mix12 .jl_fe_text{
    max-width: 750px;
    margin: 0 auto;
    padding: 0px 20px;
}
.jl_single_tpl12 .post_content_w{
    margin-top: 0px;
}
.jl_single_tpl12 .jl_single_tpl_w{
    margin-top: -180px;
    position: relative;
    z-index: 9;
    background: var(--jl-bg-color);
    max-width: 1240px;
    padding: 40px 40px 0px 40px;
}
/* Single layout 13 */
.jl_single_tpl13 .post_content_w{
    margin-top: 0px;
}
.jl_shead_mix13{
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    align-items: center;
    position: relative;
}
.jl_shead_mix13::before{
    position: absolute;
    content: '';
    top: 0px;
    left: 0%;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    opacity: .1;
    background: var(--jl-main-color);
}
.jl_shead_mix13 .jl_shead_tpl_txt{
    padding: 0px 0px 0px 50px;
    position: relative;
    z-index: 2;
}
.jl_shead_mix13 .jl_head_title{
    max-width: 91%;
}
.jl_shead_mix13 .jl_ov_layout{
    height: 600px;
    padding-bottom: 0% !important;
    position: relative;
    z-index: 2;
}
/* sticky */
.sticky .jl_fe_title:before{
    content: '\e923';
    font-family: jl_font!important;
    font-size: 80%;
    margin-right: 5px;
}
/*-------------------------------------------------------------------------------------
Form
-------------------------------------------------------------------------------------*/
.jl_smmain_con form {
    margin-bottom: 30px;
}
.jl_smmain_con form P:last-child{
    margin-bottom: 0px;
}
.jl_smmain_con fieldset {
    margin-bottom: 20px;
}
.jl_smmain_con form .logged-in-as,
.jl_smmain_con form .comment-notes {
    margin-bottom: 20px;
    font-size: 14px;
    width: 100%;
    text-transform: capitalize;
    letter-spacing: 0em;
    font-family: var(--jl-menu-font);
}
.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.jl_smmain_con input[type="text"],
.jl_smmain_con input[type="password"],
.jl_smmain_con input[type="email"],
.jl_smmain_con textarea,
.comment-form-comment textarea{
    font-size: 14px;
    border: 1px solid var(--jl-post-line-color);    
    background: transparent;
    padding: 13px;
    outline: none;
    line-height: 20px;
    margin: 0;
    color: var(--jl-txt-color);
    width: 100%;
    border-radius: var(--jl-button-radius);
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.comment-form-cookies-consent {
    width: 100%;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0px 0px 20px 0px !important;
}
.comment-respond .form-submit {
    float: left;
    width: 100%;
    margin-bottom: 0px;
}
.form-submit .submit {
    margin-top: 30px;
}
.comment-respond .form-submit .submit {
    margin-top: 0px;
}
.comment-form-cookies-consent input {
    -webkit-flex: 0 0 13px;
    -ms-flex: 0 0 13px;
    flex: 0 0 13px;
    width: 13px;
    position: relative !important;
    display: block;
    float: left;
    margin-top: -1px;
}
.comment-form-cookies-consent label {
    position: relative;
    margin-left: 5px;
    top: 0px;
    margin-bottom: 0px;
    line-height: 1.2;
}
.jl_smmain_con select {
    padding: 0px 14px;
}
.jl_smmain_con textarea {
    min-height: 60px;
}
.jl_smmain_con label,
.jl_smmain_con legend {
    display: block;
    font-size: 14px;
    font-weight: 400;
}
.wpcf7-form br {
    display: none;
}
.jl_smmain_con select {
    width: 220px;
}
.jl_smmain_con input[type="checkbox"] {
    display: inline;
}
.jl-contact-form-7 .wpcf7-spinner, .jl-contact-form-7 .wpcf7-response-output{
    display: none;
}
.jl-contact-form-7 .wpcf7 form.invalid .wpcf7-response-output,
.jl-contact-form-7 .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;
    border-width: 1px;
    border-color: #858585;
}
.jl-contact-form-7 .wpcf7-form-control-wrap input {
    width: 100%;
}
.jl-contact-form-7 .wpcf7-form-control-wrap input[type=checkbox] {
    width: auto;
}
.wpcf7-form-control-wrap {
    margin-top: 0px;
    margin-bottom: 20px;
    display: block;
}
.wpcf7-form .ajax-loader {
    display: none;
}
.wpcf7-not-valid-tip {
    color: #f00 !important;
    font-size: 12px;
}
.wpcf7-form-control-wrap textarea{
    height: 160px;
}
#respond {
    float: left;
    width: 100%;
}
.logged-in-as a {
    border-bottom: 0px !important;
    color: var(--jl-txt-color);
    text-decoration: underline rgba(255, 255, 255, 0) !important;
    transition: text-decoration-color 300ms !important;
}
.logged-in-as a:hover {
    color: var(--jl-single-link-hcolor);
    text-decoration: underline !important;
    text-decoration-color: currentColor;
}
/*-----------------------------------------------------------------------------------*/
/*  Subscribe
/*-----------------------------------------------------------------------------------*/
.jl_subm_wrap{
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.jl_subm_wrap .jl_subm_txt{
    margin-top: -5px;
}
.jl_subm_wrap .jl_subm_input{
    display: flex;
    gap: 10px;
}
.jl_subm_wrap .jl_subm_input *{
    margin: 0px;
}
.jl_subm_wrap .jl_subm_btn .wpcf7-spinner{
    display: none;
}
.jl_subm_wrap .wpcf7-text{
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    border-radius: 2px;    
}
.jl_subm_wrap .wpcf7-submit{
    height: 40px;
    line-height: 40px;
    padding: 0px 15px;
    border-radius: 2px;
    font-size: 11px;
}
.jl_subm_wrap .jl_acceptance span{
    margin: 0px;
    padding: 0px;
    display: flex;
}
.jl_subm_wrap .jl_acceptance span label{
    display: flex;
    margin: 0px;
    gap: 7px;
    font-size: 90%;
    align-items: center;
}
/*-----------------------------------------------------------------------------------*/
/*  Subscribe footer
/*-----------------------------------------------------------------------------------*/
.jl_foot_wrap .jl_subm_wrap .wpcf7-text{
    border: 1px solid var(--jl-foot-line);
    color: var(--jl-foot-color);
}
.jl_foot_wrap .jl_subm_wrap .wpcf7-submit:hover{
    background: var(--jl-foot-line) !important;
}
.jl_foot_wrap .jl-contact-form-7 .wpcf7-response-output{
    display: none;
}
/*-------------------------------------------------------------------------------------
tag
-------------------------------------------------------------------------------------*/
.tagcloud {
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
}
.tagcloud a {
    padding: 0px 13px;
    height: 24px;
    border-radius: 100px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-transform: capitalize;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    font-family: var(--jl-menu-font);
    font-size: 12px !important;
    background: var(--jl-btn-bg);
    color: #fff !important;
    font-weight: 500;
}
.tagcloud a:hover,
.tag-cat a:hover {
    text-decoration: none !important;
    background: var(--jl-main-color) !important;
    color: #FFF !important;
}
.jlvid_container,
.wp-block-embed.is-type-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 33px;
}
.post_content iframe {
    max-width: 100%;    
}
.wp-block-embed.wp-block-embed-tiktok{
    max-width: 100%;
    height: auto !important;
    padding: 0px !important;
}
.is-type-video.wp-block-embed.wp-block-embed-tiktok .wp-block-embed__wrapper{
    position: relative !important;
    height: auto !important;
}
.wp-block-embed.wp-block-embed-tiktok .wp-block-embed__wrapper blockquote{
    padding: 0px !important;
    text-align: center;
    background: transparent;
}
.wp-block-embed.wp-block-embed-tiktok .wp-block-embed__wrapper blockquote:before{
    display: none;
}
.jlvid_container iframe,
.jlvid_container object,
.jlvid_container embed,
.jlvid_container .wp-video,
.jlvid_container .wp-video-shortcode,
.wp-block-embed.is-type-video:not(.wp-block-embed-tiktok) iframe,
.wp-block-embed.is-type-video .wp-block-embed__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
.wp-block-embed__wrapper:before{
    padding-top: 0px !important;
}
.wp-block-embed__wrapper{
    width: 100%;
}

/*-------------------------------------------------------------------------------------
Post nav
-------------------------------------------------------------------------------------*/
.postnav_w {
    width: 100%;
    position: relative;
    display: flex;
    padding: 35px 0px 0px 0px;
    gap: 50px;
    margin-top: 40px;
    border-bottom: 1px solid var(--jl-post-line-color);
    border-top: 1px solid var(--jl-post-line-color);
}
.postnav_w .jl_navpost.postnav_left {
    text-align: right;
}
.postnav_w .jl_navpost.postnav_right {
    text-align: left;
    margin-left: auto;
}
.postnav_w .jl_navpost {
    width: 50%;
    padding: 0px;
}
.postnav_w .jl_navpost a:hover{
    color: var(--jl-main-color);
}
.postnav_w .jl_navpost .jl_cpost_title {
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
    font-size: 15px;    
    word-break: break-word;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.postnav_w .jl_navpost .jl_nav_label {
    font-family: var(--jl-menu-font);
    letter-spacing: var(--jl-meta-font-space);
    font-size: var(--jl-meta-font-size);
    font-weight: var(--jl-meta-font-weight);
    text-transform: var(--jl-meta-transform);
    margin-bottom: 5px;
    color: #5e5e5e;
}
.postnav_w .jl_navpost span {
    display: block;
}
.postnav_w .jl_navpost .jl_nav_link{
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.postnav_w .jl_navpost .jl_nav_link:hover{
    color: var(--jl-txt-color);
}
.postnav_w .jl_navpost.postnav_right .jl_nav_link{    
    justify-content: flex-end;
}
.postnav_w .jl_navpost .jl_nav_link .jl_nav_img{
    align-self: flex-start;
    -webkit-flex: 0 0 65px;
    -ms-flex: 0 0 65px;
    flex: 0 0 65px;
    width: 65px;
    height: 65px;    
    order: 1;    
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}
.postnav_w .jl_navpost .jl_nav_img img{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.postnav_w .jl_navpost.postnav_left .jl_nav_link .jl_nav_wrap{
    -ms-flex-order: 2;
    order: 2;
    text-align: left;
}
.postnav_w .jl_navpost.postnav_right .jl_nav_link a{
    justify-content: flex-end;
    flex-direction: row-reverse;
}
.postnav_w .jl_navpost.postnav_right .jl_nav_link .jl_nav_wrap{    
    text-align: right;
}

/*-------------------------------------------------------------------------------------
Comment box
-------------------------------------------------------------------------------------*/
.jl_commentlist{
    margin-bottom: 0px !important;
}
.jl_commentlist li:last-child .comment-body{
    margin-bottom: 0px !important;
}
.comments-area .jl_commentlist .comment {
    position: relative;
    width: 100%;
}
.comments-area .jl_commentlist .comment-meta {
    position: relative;
    width: 100%;
}
.comments-area .jl_commentlist .comment-meta a{
    color: var(--jl-txt-color);
}
.comments-area .jl_commentlist .comment-meta a, .comments-area .jl_commentlist .comment-meta a:hover{
    text-decoration: none !important;
    transition: all 0.3s ease 0s !important;
}
.jl_commentlist .comment-author .says{
    display: none;
}
.jl_commentlist .comment-author .fn{
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
}
.comments-area .jl_commentlist .comment-meta img {
    position: absolute;
    top: 3px;
    left: -75px;
    display: block;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    object-fit: cover;
}
.comments-area .jl_commentlist .comment-meta .comment-author-name {
    display: block;
    text-transform: capitalize;
    font-size: 14px;
    color: #202020;
    margin-top: 0px;
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
}
.comment-meta .comment-author-name a:hover {
    text-decoration: none !important;
    color: var(--jl-main-color);
}
.content_single_page .single_section_comment{
    padding-top: 8px;
    margin-top: 0px;
}
.content_single_page .comment-reply-link,
.content_single_page .comment-edit-link,
.content_single_page .comment-meta .comment-author-date {
    text-decoration: none !important;
    box-shadow: none !important;
}
.content_single_page .comment-reply-link:hover,
.content_single_page .comment-edit-link:hover,
.content_single_page .comment-meta .comment-author-date:hover {
    background: var(--jl-main-color) !important;
}
.content_single_page .comment-author-name a {
    color: #000;
    text-decoration: none !important;
    box-shadow: none !important;
}
.content_single_page .comment-author-name a:hover,
.content_single_page .comment-meta .comment-author-date:hover {
    background: transparent !important;
}
.comment-meta .comment-author-date {
    display: block;
    margin-top: 0px;
    margin-bottom: 5px;
    -webkit-box-shadow: inset 0 -1px 0 transparent !important;
    -moz-box-shadow: inset 0 -1px 0 transparent !important;
    box-shadow: inset 0 -1px 0 transparent !important;
}
.comment-meta .comment-author-date:hover,
.comment-meta .comment-author-date:hover time {
    color: var(--jl-main-color);
    text-decoration: none !important;
}
.comments-area .jl_commentlist .comment-meta cite {
    display: block;
    font-size: 16px;
    padding-bottom: 0px;
}
.comments-area .jl_commentlist .comment-content {
    display: block;
    margin-top: 10px;
    width: 100%;    
}
.comments-area .jl_commentlist .comment-content p:last-child{
    margin-bottom: 0px;
}
.comments-area .jl_commentlist .comment-content a{
    color: var(--jl-single-link-color);
    text-decoration: underline rgba(255, 255, 255, 0) !important;
    transition: text-decoration-color 300ms !important;
}
.comments-area .jl_commentlist .comment-content a:hover{
    color: var(--jl-single-link-hcolor);
    text-decoration: underline !important;
    text-decoration-color: currentColor;
}
.comments-area .jl_commentlist .comment-content li {
    margin-bottom: 0.5rem;
}
.comments-area .jl_commentlist .comment-content ul ul,
.comments-area .jl_commentlist .comment-content ul ol,
.comments-area .jl_commentlist .comment-content ol ol,
.comments-area .jl_commentlist .comment-content ol ul {
    margin-top: 0.5rem;
}
.jl_commentlist li.pingback:first-child,
.jl_commentlist li.trackback:first-child {
    margin-top: 0px;
}
.jl_commentlist li > p .edit-link {
    display: inline-block;
}
.jl_commentlist li > p .edit-link a {
    display: block;
}
.jl_commentlist .comment-reply-link{
    position: absolute;
    top: 0px;
    right: 0px;
    height: 22px;
    background-color: var(--jl-comment-btn-link);
    color: var(--jl-comment-btn-linkc) !important;    
}
.comments-area .jl_commentlist a.comment-edit-link{
    height: 22px;
    text-decoration: underline !important;
}
.jl_commentlist a.comment-reply-link, .jl_commentlist a.comment-edit-link{
    line-height: 24px;
    font-size: 11px;    
    margin-left: 0px;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s !important;
    text-align: center;
    padding: 0px 12px;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    border-radius: var(--jl-button-radius);
    text-decoration: none !important;
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-button-font-weight);    
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
    color: #fff !important;
    background: var(--jl-main-color);
    text-decoration: none !important;    
}
.comment time {
    font-weight: 300;
    font-size: 12px;
    color: #777;
    text-transform: capitalize;
    letter-spacing: 0em;
}
.jl_comment_head_title {
    margin-bottom: 10px !important;    
    margin-top: 0px;
}
.comment-respond .comment-reply-title {
    margin-bottom: 10px !important;
    margin-top: 0px;
}
.comments-area .comment-content ul{
    padding-left: 15px;
}
.comments-area .comment-content > ol, .comments-area .comment-content > ul{
    margin-bottom: 16px;
}
.comments-area .comment-content ol {
    padding-left: 15px;
    list-style-position: inside;
}
.comments-area ul ul {
    margin-bottom: 0px;
}
.comments-area li > ol {
    margin-bottom: 0px;
}
.comments-area .jl_commentlist > li,
.comments-area .children > li {
    list-style: none !important;
}
.comments-area .jl_commentlist li.comment {
    margin-bottom: 0px;
    width: 100%;
}
.comments-area .jl_commentlist li.comment .comment-body{
    position: relative;
    display: block;
    width: auto;
    max-width: 100%;
    margin-bottom: 0px;
    margin-left: 75px;
}
.comments-area .jl_commentlist > li.comment:first-child {
    padding-top: 0px;
}
.comments-area li #respond {
    margin-bottom: 30px;
    margin-top: 20px;
}
dd {
    margin-bottom: 20px;
}
#commentform #submit:hover,
.wpcf7-form-control.wpcf7-submit:hover {
    color: #FFF;
    background: var(--jl-main-color);
}
.single_section_comment .jl_comment_wrap{
    padding-top: 20px;
}
.single_section_comment .jl_comment_wrap.jl_no_comment{
    padding-top: 0px;
}
.jl_comment_wrap .comments-area{
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.single_section_comment p {
    position: relative;
    word-wrap: break-word;
}
.single_section_comment p:last-child {
    margin-bottom: 0px;
}
.single_section_comment .comment-form-comment .u-full-width {
    width: 100%;
}
.jl_commentlist .trackback .url, .jl_commentlist .pingback .url{
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
}
.comments-pagination{
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
.comments-pagination .nav-links{
    display: flex;
    gap: 15px;
}
.comments-pagination a, .comments-pagination .nav-links{
    font-family: var(--jl-menu-font);
    font-size: 14px;
    font-weight: var(--jl-button-font-weight);    
}
.comments-pagination a{
    color: var(--jl-main-color);
}
.comments-pagination a:hover{
    color: var(--jl-btn-bg) !important;
}
.single_section_comment .comment-form-cookies-consent {
    margin-top: 20px;
    position: relative;
}
.single_section_comment .comment-form-cookies-consent input[type="checkbox"] {
    position: relative !important;
    display: block;
}
.single_section_comment .comment-form-cookies-consent label {
    position: relative;
    margin-left: 5px;
    line-height: 1.2;
}
.single_section_comment .form-submit input,
.single_section_comment .form-submit {
    margin-bottom: 0px !important;
}
.single_section_comment .form-submit {
    margin-top: 0px;
}
.single_section_comment {
    border: 0px solid #EAEAEA;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    margin-top: -1px;
    width: 100%;
    padding: 40px 0px 0px 0px;
}
.comment-respond form {
    margin-bottom: 0px;
}
.single_section_comment .jl_commentlist {
    width: 100%;
    margin-bottom: 0px; 
    padding: 0px;   
}
.single_section_comment .jl_commentlist, .single_section_comment .jl_commentlist ul.children, .single_section_comment .jl_commentlist li.comment{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.single_section_comment .jl_commentlist:last-child {
    margin-bottom: 0px;
}
.single_section_comment .jl_commentlist .children {
    width: 100%;
}
.single_section_comment .jl_commentlist .children:last-child {
    margin-bottom: 0px;
}
.comments-area textarea,
.comments-area input[type="text"] {
    width: 100%;
}
.comments-area h3#reply-title {
    width: 100%;
    margin-bottom: 10px;
}
.comments-area .logged-in-as {
    margin-bottom: 15px;
    font-size: 14px;
}
.comments-area .form-allowed-tags {
    font-size: 12px;
}
.required {
    position: relative;
    color: #900;
}
.post-password-form label{
    display: inline-block;
}
.post-password-form input[type="password"] {
    width: 200px !important;
    height: 40px;
    display: block;
}
.post-password-form input[type="submit"]{
    display: inline-block;
}
.comment-form {
    position: relative;
    display: block;
    margin-right: -10px;
    margin-left: -10px;
}
.comment-form > * {
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
}
.comment-form-comment label, .comment-form-author label, .comment-form-email label, .comment-form-url label, .jl_no_comment .comment-reply-title{
    display: none;
}
.jl_no_comment .comment-respond{
    margin-top: 0px !important;
}
.comment-form .comment-form-author, .comment-form .comment-form-email, .comment-form .comment-form-url {
    float: left;
    width: 33.33%;
}

/* Related Post */
.jl_relsec_wrap{
    position: relative;
    display: block;
    padding-top: 35px;
    margin-top: 50px; 
    border-top: 1px solid var(--jl-post-line-color);   
}
.jl_block_content:not(.jl_auths_box) .jl_relsec_wrap{
    margin-top: -1px;
}
.single-post .jl_block_content:not(.jl_auths_box) .jl_sidebar_w{
    margin-bottom: 50px;
}
.jl_relsec{
    position: relative;
    z-index: 2;
    max-width: var(--jl-main-width);
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;    
}
.jl_relsec h4{
    margin-bottom: 30px !important;
}
.jl_rel_posts{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
.jl_rel_posts .jl_cgrid_layout .jl_fe_title{
    font-size: var(--jl-post-related-size);
}
.jl_rel_posts .jl_imgw{
    padding-bottom: 75%;
}

/* post content ===================================*/

.post_content input[type="submit"] {
    font-family: var(--jl-menu-font);
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    outline: none;
    height: 40px;
    line-height: 40px;
    padding: 0 40px;
    color: #FFF;
    background: var(--jl-main-color);
    cursor: pointer;
    border: 0px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.post_content input[type="submit"]:hover {
    background: var(--jl-btn-bg);
}
.page-links {
    float: left;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0px;
}
.page-links > span {
    background: var(--jl-main-color);
}
.page-links a {
    background: var(--jl-btn-bg);
    color: #fff !important;
}
.page-links a.post-page-numbers:hover {
    background: var(--jl-main-color);
    text-decoration: none !important;
    color: #fff !important;
}
.content_single_page .page-links a,
.page-links a,
.page-links > span {
    padding: 0px;
    height: 35px;
    line-height: 35px;
    width: 35px;
    float: left;
    font-size: 12px;
    list-style: none;
    color: #fff;
    text-decoration: none !important;
    text-align: center;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    margin-right: 5px;
    -webkit-box-shadow: inset 0 -1px 0 transparent !important;
    -moz-box-shadow: inset 0 -1px 0 transparent !important;
    box-shadow: inset 0 -1px 0 transparent !important;
    border-radius: 100px;
}
.page-links a:hover {
    background: #222;
    color: #fff !important;
}
.page-links a:hover li {
    background: no-repeat;
}
.page-links a li {
    margin-right: 0px;
    padding: 0px;
}

.jl_review_wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 1;
}
.jl_rating_front {
    float: left;
    width: 50px;
    height: 50px;
    position: relative;
    font-size: 14px;
    color: #fff;
    margin-top: 0px;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100%;
}
.jl_rating_front canvas {
    position: absolute;
    top: 0;
    left: 0;
}
.jl_rating_front .jl_rating_value {
    float: none;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    text-shadow: 1px 0px 0px rgba(0, 0, 0, .4);
}
.jl_rating_front span {
    float: none;
    height: 13px;
    line-height: 13px;
    font-size: 14px;
}
.jl_rating_front span i {
    margin-right: 1px;
}
.meta-category-small-list {
    float: left;
    width: 100%;
}
.meta-category-small-list a {
    margin-right: 0px;
    margin-top: 0px;
    font-size: 10px !important;
    text-transform: uppercase;
    margin: 0px 5px 0px 0px;
    display: inline-block;
    color: #000;
    font-weight: 600;
    letter-spacing: 0em;
    height: auto;
    line-height: 10px;
    padding: 0px;
}
.meta-category-small-list a:hover {
    text-decoration: none !important;
}
.meta-category-small.cus_bgcolor_wrapper {
    position: absolute;
    margin: 0px !important;
    top: 10px;
    left: 10px;
    z-index: 2;
}
.meta-category-small.cus_bgcolor_wrapper .post-category-bgcolor-text {
    margin: 0px !important;
    margin-right: 1px !important;
    float: left !important;
    color: #fff;
    background: #000;
    height: auto;
    line-height: 10px;
    font-size: 11px !important;
    padding: 5px 10px 5px !important;
    font-weight: 400 !important;
    width: auto !important;
    letter-spacing: 0.05em;
}
.meta-category-small.cus_bgcolor_wrapper .post-category-bgcolor-text:hover {
    color: #fff !important;
}
.meta-category-small {
    float: left;
    width: 100%;
    line-height: 1.2;
}
.meta-category-small a {
    margin-right: 0px;
    margin-top: 0px;
    font-size: 12px !important;
    text-transform: uppercase;
    margin: 0px 1px 0px 0px;
    display: inline-block;
    color: #000;
    font-weight: 500;
    height: auto;
    line-height: 10px;
    padding: 0px;
}
.meta-category-small a:hover {
    text-decoration: none !important;
    color: #fff !important;
}
.single_meta_category {
    width: auto;
}
.single_reactions_img.reactions_img_wrapper {
    position: inherit;
    top: 0;
    right: 0;
    float: right;
    margin-top: 0px;
}
.post-meta-bot {
    overflow: hidden;
    position: relative;
    margin: 0px;
    font-size: 13px;
    letter-spacing: 0px;
    text-transform: capitalize;
    float: left;
    width: 100%;
    color: #565656;
    padding: 0px;
    margin-top: 15px;
}
.post-meta-bot-in {
    float: left;
    width: 100%;
    padding: 0px;
}
.post-meta-bot i {
    margin-right: 3px;
}
.post-meta-bot .love_post_view {
    float: right;
    margin-top: 2px;
}
.post-meta-bot .love_post_view a {
    color: #313131;
}
.post-meta-bot .love_post_view a:hover {
    color: var(--jl-main-color);
}
.post-meta-bot .meta-comment {
    float: right;
    font-size: 13px;
    margin-left: 10px;
    margin-top: 2px;
}
.post-meta-bot .meta-comment i {
    margin-right: 3px;
}
.post-meta-bot .meta-comment a {
    color: #313131;
    font-size: 12px;
}
.post-meta-bot .meta-comment a:hover {
    text-decoration: none !important;
    color: var(--jl-main-color);
}
.meta-comment a:hover {
    text-decoration: none !important;
}
.pagination-more {
    display: block !important;
    text-align: center;
    padding-bottom: 0px;
    float: left;
    width: 100%;
}
.pagination-more .more-previous {
    text-align: center;
    float: left;
    width: 100%;
}
.pagination-more div a:active,
.pagination-more div a:focus {
    text-decoration: none !important;
}
.page-template-home-grid-full .pagination-more .more-previous a,
.page-template-home-grid-full #infscr-loading {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 100%;
    background: #030303;
}
.page-template-home-grid-full .pagination-more .more-previous a:hover {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0);
}
.pagination-more .more-previous a {
    position: relative;
    width: 194px;
    height: 45px;
    line-height: 45px;
    padding: 0px;
    background: #222;
    color: #fff;
    text-align: left;
    text-shadow: none;
    text-decoration: none;
    cursor: pointer;
    filter: none;
    box-shadow: none;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}
.pagination-more .more-previous a:hover {
    -webkit-transform: translatey(-3px);
    transform: translatey(-3px);
    -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, .2);
    box-shadow: 0 20px 30px rgba(0, 0, 0, .2);
}
.pagination-more div a:hover {
    text-decoration: none;
    text-decoration: none !important;
}
.jl_spinner {
    margin: 100px auto 0;
    width: 70px;
    text-align: center;
}
.jl_spinner > .jl_bounce1,
.jl_spinner > .jl_bounce2,
.jl_spinner > .jl_bounce3 {
    width: 18px;
    height: 18px;
    background-color: #fff;
    margin-top: 5px;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.jl_spinner .jl_bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.jl_spinner .jl_bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
    }
}
@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
.jl_smmain_con.jl_smmain_full{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.jl_smmain_con, .jl_main_achv{
    position: relative;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
}
.jl_opts_full {
    width: 100% !important;
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.elementor-column.jl-sticky {
    position: relative;
    align-items: flex-start;
}
.jl-sticky.jl-stick-full, .jl-sticky.jl-stick-full > *{
    top: 0px !important;
}
.jl-sticky > * {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    -webkit-transition: top .2s ease;
    transition: top .2s ease;
    will-change: top;
}
.elementor-column.jl-sticky {
    position: relative;
    align-items: flex-start;
}
.jl-sticky > *,
.jl_sidebar_w,
.post_sw .post_s{
    position: -webkit-sticky;
    position: sticky !important;
    top: 20px;
    -webkit-transition: top .2s ease;
    transition: top .2s ease;
    will-change: top;
}
.admin-bar .jl-sb-w .jl-sb-in,
.admin-bar .jl-sticky > *,
.admin-bar .jl_sidebar_w,
.admin-bar .post_sw .post_s{
    top: 64px;
}
.menu-detached .jl-sb-w .jl-sb-in,
.menu-detached .jl-sticky > *,
.menu-detached .jl_sidebar_w,
.menu-detached .post_sw .post_s{
    top: calc(var(--jl-sec-menu-height) + 50px);
}
.menu-detached.menu-invisible .jl-sb-w .jl-sb-in,
.menu-detached.menu-invisible .jl-sticky > *,
.menu-detached.menu-invisible .jl_sidebar_w,
.menu-detached.menu-invisible .post_sw .post_s{
    top: 20px;
}
.sticky-on.admin-bar .jl-sb-w .jl-sb-in,
.sticky-on.admin-bar .jl-sticky > *,
.sticky-on.admin-bar .jl_sidebar_w,
.sticky-on.admin-bar .post_sw .post_s{
    top: calc(var(--jl-sec-menu-height) + 64px);
}
/*-------------------------------------------------------------------------------------
Archive
-------------------------------------------------------------------------------------*/
.jl_main_achv.jl_achv_tpl_3grid,
.jl_main_achv.jl_achv_tpl_4grid,
.jl_main_achv.jl_achv_tpl_3ov,
.jl_main_achv.jl_achv_tpl_4ov{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
/* 2col */
.jl_achv_tpl_2grid .jl_fli_wrap{
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
}
.jl_achv_tpl_2grid .jl_fe_title{
    font-size: 22px;
}
/* 3col */
.jl_achv_tpl_3grid .jl_fli_wrap{
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
}
.jl_achv_tpl_3grid .jl_fe_title{
    font-size: 22px;
}
/* 4col */
.jl_achv_tpl_4grid .jl_fli_wrap{
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
}
.jl_achv_tpl_4grid .jl_fe_title{
    font-size: 20px;
}
.jl_achv_tpl_list .jl_li_in .jl_fe_title{
    font-size: 23px;
}
/* mix list */
.jl_achv_tpl_mixlist .jl_li_in .jl_fe_title{
    font-size: 23px;
}
.jl_achv_tpl_mixlist .jl_ov_layout .jl_fe_title{
    font-size: 33px;
}
.jl_limix_layout .jl_f_cat{
    margin-bottom: 20px;
}
.jl_limix_layout .jl_post_meta{
    margin-top: 20px;
}
/* main list */
.jl_achv_tpl_mainlist .jl_lg_op_in{
    --jl-img-space: 57%;
    --jl-cap-w: 100%;
    --jlrow-gap: 80px !important;
    --jl-title-size: 35px !important;
    --jl-algin-h: left;
}
.jl_achv_tpl_mainlist .jl_lg_op{
    overflow: hidden;
    margin-bottom: 40px;
}
.jl_achv_tpl_mainlist .jl_fli_wrap .jl_fe_title{
    font-size: 25px;
}
/* main grid */
.jl_achv_tpl_maingrid .jl_lg_op_in{
    --jl-img-space: 57%;
    --jl-cap-w: 100%;
    --jlrow-gap: 80px !important;
    --jl-title-size: 35px !important;
    --jl-algin-h: left;
}
.jl_achv_tpl_maingrid .jl_lg_op{
    overflow: hidden;
    margin-bottom: 40px;
}
.jl_achv_tpl_maingrid .jl_cgrid_wrap{
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
}
.jl_achv_tpl_maingrid .jl_cgrid_wrap .jl_cgrid_layout:before, .jl_achv_tpl_maingrid .jl_cgrid_wrap .jl_cgrid_layout:after{
    display: none;
}
/* Large */
.jl_achv_tpl_classic .jl_lg_op_in {
    --jl-img-space: 57%;
    --jl-cap-w: 80%;
    --jlrow-gap: 80px !important;
    --jl-title-size: 35px !important;
    --jl-algin-h: center;
}
/* 2col overlay */
.jl_achv_tpl_2ov .jl_ovg_w{
    --jl-img-height: 110% !important;
    --jl-num-col: 2 !important;
    --jl-padding: 30px !important;
    --jl-f-size: 25px !important;
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
}
/* 3col overlay */
.jl_achv_tpl_3ov .jl_ovg_w{
    --jl-img-height: 110% !important;
    --jl-num-col: 3 !important;
    --jl-f-size: 23px !important;
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
}
/* 4col overlay */
.jl_achv_tpl_4ov .jl_ovg_w{
    --jl-img-height: 110% !important;
    --jl-num-col: 4 !important;
    --jl-padding: 30px !important;
    --jl-f-size: 20px !important;
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
}

@media only screen and (max-width: 1024px) {
    .jl_achv_tpl_3grid .jl_fli_wrap{
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }
    .jl_achv_tpl_4grid .jl_fli_wrap, .jl_achv_tpl_4ov .jl_ovg_w{
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }
    .jl_achv_tpl_2ov .jl_ovg_w{
        --jl-f-size: 20px !important;                
    }    
    .jl_achv_tpl_3ov .jl_ovg_w, .jl_achv_tpl_4ov .jl_ovg_w{
        --jl-num-col: 3 !important;
        --jl-padding: 20px !important;
        --jl-f-size: 23px !important;
    }

}
@media only screen and (max-width: 767px) {
    .jl_achv_tpl_2grid .jl_fli_wrap{
        grid-template-columns: repeat(1,minmax(0,1fr)) !important;
    }
    .jl_achv_tpl_3grid .jl_fli_wrap{
        grid-template-columns: repeat(1,minmax(0,1fr)) !important;
    }
    .jl_achv_tpl_4grid .jl_fli_wrap, .jl_achv_tpl_4ov .jl_ovg_w{
        grid-template-columns: repeat(1,minmax(0,1fr)) !important;
    }
    .jl_achv_tpl_mainlist .jl_lg_op_in, .jl_achv_tpl_classic .jl_lg_op_in, .jl_achv_tpl_maingrid .jl_lg_op_in{
        --jl-cap-w: 100%;
        --jl-title-size: 23px !important;
    }    
    .jl_achv_tpl_mainlist .jl_fli_wrap .jl_fe_title{
        font-size: 23px;
    }
    .jl_achv_tpl_maingrid .jl_cgrid_wrap{        
        grid-template-columns: repeat(1,minmax(0,1fr)) !important;
    }
    .jl_achv_tpl_mixlist .jl_li_in .jl_fe_title, .jl_achv_tpl_mixlist .jl_ov_layout .jl_fe_title{
        font-size: 23px;
    }
    .jl_achv_tpl_2ov .jl_ovg_w{
        --jl-f-size: 20px !important;        
        grid-template-columns: repeat(1,minmax(0,1fr)) !important;
    }
    .jl_achv_tpl_3ov .jl_ovg_w, .jl_achv_tpl_4ov .jl_ovg_w{       
        --jl-f-size: 20px !important; 
        grid-template-columns: repeat(1,minmax(0,1fr)) !important;
    }    
    
}
/*-------------------------------------------------------------------------------------
Sidebar
-------------------------------------------------------------------------------------*/
/* Recent post */
.bt_post_widget{
    --jlrow-gap: 30px !important;
    width: 100%;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(1,minmax(0,1fr));    
    grid-row-gap: var(--jlrow-gap);
}
.bt_post_widget .jl_fe_title{
    font-size: 16px;
}
/* Grid sidebar */
.jl_wgli_w{
    width: 100%;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-row-gap: 30px;
}
.jl_wgli_w .jl_imgw{
    padding-bottom: 60%;
}
.jl_wgli_w .jl_cgrid_layout .jl_fe_title{
    font-size: 20px;
}
/* Slider  */
.jl_wid_slider .jl_ov_layout{
    padding-bottom: 120%;
    --jl-padding: 30px !important;
    --jl-h-align: center !important;
    --jl-v-align: center !important;
    --jl-h-align: center !important;
    --jl-f-size: 20px !important;
}
.jl_wid_slider .jl_spw{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
}
.jl_wid_slider .jl_spw .swiper-pagination{
    margin-top: 0px;
    margin-bottom: 20px;
}
.jl_wid_slider .jl_spw .swiper-pagination-bullet{
    color: #fff !important;
}
.jl_wid_slider .jl-donut-front{
    z-index: 9;
}
/* Author list */
.jl_author_main{
    --jlrow-gap: 30px !important;
    width: 100%;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-row-gap: var(--jlrow-gap);
}
.jl_author_main .jl_m_right{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;    
}
.jl_author_main .jl_m_right_img{
    -webkit-flex: 0 0 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 300px;
    overflow: hidden;
    position: relative;
    align-self: flex-start;
}
.jl_author_main .jl_m_right_img img{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.jl_author_main .jl_m_right_content h2{
    margin-bottom: 0px;
    font-size: 18px;
}
.jl_author_main .jl_m_right_content p{
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 14px;
    opacity: .7;
}
.jl_author_main .jl_m_right_content .jl_auth_link{
    margin-top: 10px;
    margin-bottom: 0px;
}
/* About image */
.jl_shab_w{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.jl_shab_w .ab_img_w{
    overflow: hidden;
}
.options_dark_skin .jl_shab_w .ab_img_sg{
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.jl_shab_w p {
    margin-bottom: 0px;
    width: 100%;
    font-size: 14px;
    margin-top: -5px;
    padding: 0 5%;
    opacity: .7;
}
.jl_shab_w .jl_sh_ic_li{
    margin-bottom: 0px;
}
.jl_wab_center .jl_shab_w{
    text-align: center;
}
.jl_wab_right .jl_shab_w{
    text-align: right;
}
.jl_wab_left .jl_shab_w{
    text-align: left;
}
.jl_wab_center .ab_img_w{
    margin: 0px auto;
}
.jl_wab_right .ab_img_w{
    margin: 0px 0px 0px auto;
}
.jl_wab_left .ab_img_w{
    margin: 0px auto 0px 0px;
}
.jl_wab_center .jl_sh_ic_li{
    justify-content: center;
}
.jl_wab_right .jl_sh_ic_li{
    justify-content: right;
}
.jl_wab_left .jl_sh_ic_li{
    justify-content: left;
}
.jl_wab_right .jl_shab_w p, .jl_wab_left .jl_shab_w p{
    padding: 0px;
}
/* Sidebar Options */
.widget-title{
    border-bottom: 1px solid var(--jl-post-line-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.jl_weg_title .widget-title h2,
.jl_weg_title .comment-respond .comment-reply-title,
.jl_weg_title .jl_relsec_in h4,
.jl_weg_title .jl_comment_head_title,
.jl_weg_title .woocommerce #reviews #comments h2,
.jl_weg_title .related.related > h2,
.jl_weg_title .upsells.products > h2,
.jl_weg_title .woocommerce .cross-sells > h2{
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
}
h3.widget-title{
    font-size: var(--jl-widget-fsize);
    text-transform: var(--jl-widget-transform);
    letter-spacing: var(--jl-widget-space);
}

.jl_weg_menu .widget-title h2,
.jl_weg_menu .comment-respond .comment-reply-title,
.jl_weg_menu .jl_relsec_in h4,
.jl_weg_menu .jl_comment_head_title,
.jl_weg_menu .woocommerce #reviews #comments h2,
.jl_weg_menu .related.related > h2,
.jl_weg_menu .upsells.products > h2,
.jl_weg_menu .woocommerce .cross-sells > h2{
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-menu-font-weight);
}

.widget-title h2,
.comment-respond .comment-reply-title,
.jl_relsec_in h4,
.jl_comment_head_title,
.woocommerce #reviews #comments h2,
.related.related > h2,
.upsells.products > h2,
.woocommerce .cross-sells > h2{
    margin: 0px;
    font-size: var(--jl-widget-fsize);    
    text-transform: var(--jl-widget-transform);
    letter-spacing: var(--jl-widget-space);
}
.jl_smmain_side{
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
    padding-left: 30px;
}
.jl_sidebar_w .widget:last-child {
    margin-bottom: 0px;
}
.jl_smmain_side .feature-post-list .item-details h3 a {
    font-size: 17px;
}
.widget_jl_wrapper {
    position: relative;
}
.widget {
    padding: 0px;
    margin-bottom: 30px;
    position: relative;
}
.widget:after {
    display: table;
    content: '';
    clear: both;
}
.jl_mobile_nav_inner > .widget {
    margin-bottom: 40px !important;
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 1, 1, 0);
    box-shadow: 0 3px 4px 0 rgba(0, 1, 1, 0);
}

/* elementor category */
.elementor-widget-wp-widget-categories h5{
    display: none;
}
.elementor-widget-wp-widget-categories ul{
    list-style: none;
    padding: 0px 0px 0px 15px !important;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.elementor-widget-wp-widget-categories ul li{
    margin-bottom: 0 !important;
    list-style: none;
    font-family: var(--jl-menu-font);
    font-size: 14px;
    font-weight: var(--jl-cat-font-weight);
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.elementor-widget-wp-widget-categories ul li a{
    display: inline-flex;
    align-items: center;
    width: 100%;
}
.elementor-widget-wp-widget-categories ul li a:before{
    content: '';
    position: absolute;
    margin-left: -15px;
    border: solid currentcolor;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    vertical-align: middle;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.elementor-widget-wp-widget-categories span{
    margin-right: 0px;
    margin-left: auto;
    background: #222;
    color: #fff;
    text-align: center;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    padding: 0px 5px;
    font-size: 80%;
}

.widget_archive ul,
.widget_categories ul,
.widget_categories ul li,
.widget_pages ul,
.widget_pages ul li,
.widget_meta ul{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.widget_archive select {
    width: 100%;
}
.widget_archive ul>li{
    text-align: left;    
}
.widget_archive ul>li a,
.widget_categories ul>li a,
.widget_pages ul>li a,
.widget_meta ul>li a{
    width: 100%;
    display: flex;
}
.widget_categories ul>li,
.widget_pages ul>li,
.widget_archive ul,
.widget_meta ul>li{    
    margin-bottom: 0 !important;
    list-style: none;
    font-family: var(--jl-menu-font);
    font-size: 14px;
    font-weight: var(--jl-cat-font-weight);
}
.widget_categories ul,
.widget_pages ul,
.widget_archive ul,
.widget_archive ul{
    padding-left: 15px !important;
}
.widget ul li a {
    display: inline-flex;
    align-items: center;
}
.widget ul li ul.children {
    margin-left: 0px;
    margin-bottom: 0;
}
.widget_pages ul li ul.children li:last-child,
.widget_categories ul li ul.children li:last-child {
    border: 0px !important;
    padding-bottom: 0px !important;
}
.widget_categories ul>li>a::before,
.widget_pages ul>li>a::before,
.widget_archive ul>li>a::before {
    content: '';
    position: absolute;
    margin-left: -15px;
    border: solid currentcolor;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    vertical-align: middle;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.widget_categories span,
.jl_smmain_side .widget_archive span,
.widget_archive span {
    margin-right: 0px;
    margin-left: auto;
    background: #222;
    color: #fff;
    text-align: center;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    padding: 0px 5px;
    font-size: 80%;
}
.widget_nav_menu {
    overflow: hidden;
}
.widget_nav_menu ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: -5px !important;
    margin-bottom: 0px !important;
}
.widget_nav_menu .sub-menu {
    margin-bottom: 0px !important;
}
.widget_nav_menu ul>li.menu-item-has-children {
    margin-bottom: 0 !important;
}
.widget_nav_menu ul li a {
    margin-bottom: 0 !important;
    list-style: none;
    font-family: var(--jl-menu-font);
    font-size: var(--jl-foot-menu-size);
    font-weight: var(--jl-cat-font-weight);
}
.widget_nav_menu ul>li.menu-item-has-children ul li {
    padding: 0 !important;
}
.widget_nav_menu ul li.menu-item-has-children {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.widget_nav_menu ul>li.menu-item-has-children>a:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 6px;
    margin-top: -2px;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.widget_nav_menu ul>li>ul {
    display: none !important;
    margin-left: 15px !important;
}
.widget_nav_menu ul>li.menu-item-has-children.active ul {
    display: flex !important;
    flex-direction: column;
    gap: 7px;
}
.widget_nav_menu ul>li.menu-item-has-children ul.sub-menu a:after {
    display: none;
}
.widget ul {
    list-style: none;
    padding: 0px;
    margin: -5px 0px 0px 0px;
}
select {
    font-size: 14px;
    line-height: 2;
    color: #000;
    border-color: transparent;
    box-shadow: none;
    outline: none;
    border: 0px;
    border-radius: 0px;
    padding: 0 24px 0 15px;
    height: 40px;
    line-height: 40px;
    max-width: 25rem;
    -webkit-appearance: none;
    background: #f5f5f5 url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 10px top 55%;
    background-size: 16px 16px;
    cursor: pointer;
    vertical-align: middle;
}
/* Category Image widget */

.wrapper_category_image {
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}
.wrapper_category_image:after {
    content: '';
    display: table;
    clear: both;
}
.wrapper_category_image .widget {
    background: none;
}
.widget.jellywp_cat_image {
    padding: 0px;
    background: none;
    border: 0px;
}
.wrapper_category_image .widget-title {
    margin: 0px;
    padding-bottom: 0px;
}
.wrapper_category_image:after {
    display: table;
    content: '';
    clear: both;
}
.wrapper_category_image .widget-title h2 {
    float: left;
    width: 100%;
    display: block;
    line-height: inherit;
}
.jl_list_number {
    position: absolute;
    bottom: 0px;
    color: #000;
    background: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 12px;
}
.widget_pages ul {
    float: left;
    width: 100%;
    padding: 0px;
    margin-bottom: 0px;
    overflow: hidden;
}
.widget_pages ul li {
    float: left;
    width: 100%;
    list-style: none;
}
.widget_pages ul li.page_item_has_children {
    margin-left: 15px;
}
.widget_pages ul li a {
    position: relative;
    float: left;
}
.widget_meta ul {
    float: left;
    width: 100%;
    padding: 0px;
    margin-top: -5px;
    margin-bottom: 0px;
}
.widget_meta ul li {
    float: left;
    width: 100%;
    list-style: none;
    line-height: 1.2;
    margin-bottom: 10px;
}
.widget_meta ul li:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
}
.widget_meta ul li a {
    position: relative;
    float: left;
}
.widget_recent_comments ul {
    float: left;
    width: 100%;
    padding: 0px;
    margin-top: -5px;
    margin-bottom: 0px !important;
}
.widget_recent_comments ul li {
    list-style: none;
    position: relative;
    float: left;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
}
.widget_recent_comments ul li:first-child {
    padding-top: 0px;
}
.widget_recent_comments ul li:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
}
.widget_recent_comments ul li > a:last-child{
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
}
.widget_recent_entries ul {
    width: 100%;
    margin: 0px;
    padding: 0px;
    margin-top: -5px;
    margin-bottom: 0px !important;
}
.widget_recent_entries ul li a {
    display: flex;
    gap: 10px;
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
}
.widget_recent_entries ul li a:before{
    content: '';
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    align-self: flex-start;
    display: flex;
    margin-top: 4px;
    border-radius: 100px;
    border: 2px solid currentColor;
}
.widget_recent_entries ul li:first-child {
    padding-top: 0px;
}
.widget_recent_entries ul li:last-child {
    padding-bottom: 0px;
    border-bottom: 0px !important;
}
.widget_rss ul {
    float: left;
    width: 100%;
    padding: 0px;
    margin-top: -5px;
    margin-bottom: 0px !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.widget_rss ul li {
    float: left;
    width: 100%;
    list-style: none;
    position: relative;
    padding: 0px;
}
.widget_rss ul li .rsswidget {
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
}
.widget_rss ul li .rss-date {
    clear: both;
    display: block;
    font-size: 13px;
    margin: 7px 0px 7px 0px;
}
.widget_rss ul li cite {
    margin-top: 7px;
    display: block;
    clear: both;
}
.widget_rss ul li:first-child {
    padding-top: 0px;
}
.widget_rss ul li:last-child {
    padding-bottom: 0px;
    border-bottom: 0px !important;
}


.widget_rss ul li a {
    font-weight: 500;
}
.widget.jl_widget_slider {
    padding: 0px;
}
.slider_widget_post {
    float: left;
    width: 100%;
    position: relative;
}
.slider_widget_post .text-box {
    text-align: center;
    padding: 0px 10px;
}
.slider_widget_post .text-box h3 {
    font-size: 18px;
}
.slider_widget_post .jl_s_pagination {
    text-align: center;
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    margin-top: 23px;
    margin-bottom: 0px;
    height: 6px;
    line-height: 6px;
}
.comment_widget .post-meta {
    color: #313131 !important;
}
.widget #wp-calendar {
    margin-top: 0px;
    font-family: var(--jl-menu-font);
}
.wp-calendar-nav{
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-cat-font-weight);
}
#wp-calendar {
    width: 100%;
    margin-top: 15px;
    border: 0px;
    margin-bottom: 0px;
}
#wp-calendar caption {
    font-weight: var(--jl-cat-font-weight);
    text-align: center;
    margin: 0px;
    padding: 10px;
    color: inherit;
    caption-side: top;
    color: #fff;
    background: var(--jl-main-color);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    
}
#wp-calendar thead {
    font-size: 15px;
    font-weight: 400 !important;
    color: #000;
    background: #FFF !important;
    border-bottom: 0px solid #ddd !important;
    border-top: 0px solid #ddd !important;
    border-right: 0px solid #ddd !important;
    border-left: 0px solid #ddd !important;
}
#wp-calendar thead th {
    padding: 10px 0px;
    text-align: center;
    border: 0 !important;
    background: var(--jl-main-color);
    color: #fff;
}
#wp-calendar tbody {
    color: #000;
}
#wp-calendar tbody td {
    background: #f5f5f5;
    border: 1px solid #fff;
    text-align: center;
    padding: 8px;
    font-size: 15px;
}
#wp-calendar tbody td#today {
    background-color: #E6E6E6;
}
#wp-calendar tbody td:hover {
    background: #fff;
}
#wp-calendar tbody .pad,
#wp-calendar tbody .pad:hover {
    background: none;
}
#wp-calendar tfoot #next {
    font-size: 10px;
    text-transform: uppercase;
    text-align: right;
}
#wp-calendar tfoot #prev {
    font-size: 15px;
    text-transform: uppercase;
    padding-top: 10px;
}
#wp-calendar tfoot td,
#wp-calendar tfoot th {
    border: 0px solid #e1e1e1;
}

/*-------------------------------------------------------------------------------------
Footer
-------------------------------------------------------------------------------------*/
.jl_foot_wrap {
    background: var(--jl-foot-bg);
    color: var(--jl-foot-color);
    float: left;
    width: 100%;
    font-size: var(--jl-foot-font-size);
}
.jl_foot_wrap .footer-columns .jlc-row > div > div:first-child{
    margin-top: 60px;
}
.jl_foot_wrap .footer-columns .jlc-row > div > div:last-child{
    margin-bottom: 60px;
}
.jl_foot_wrap p,
.jl_foot_wrap .cp_txt{
    color: var(--jl-foot-color);
}
.jl_foot_wrap a{
    color: var(--jl-foot-link);
}
.jl_foot_wrap a:hover{
    color: var(--jl-foot-hlink);
}
.jl_foot_wrap p{
    opacity: 1;
    font-size: inherit;
}
.jl_foot_wrap .wp-block-categories li a,
.jl_foot_wrap .widget_recent_entries ul li a,
.jl_tline .jl_foot_wrap .jl_fe_title a,
.jl_foot_wrap .jl_f_cat .jl_cat_txt,
.jl_foot_wrap .jl_sh_ic_li li a{
    color: var(--jl-foot-link) !important;
}
.jl_foot_wrap .wp-block-categories li a:hover,
.jl_foot_wrap .widget_recent_entries ul li a:hover{
    color: var(--jl-foot-hlink) !important;
}
.jl_foot_wrap .bt_post_widget{
    --jl-post-line-color: var(--jl-foot-line);
}
.jl_foot_wrap h1,
.jl_foot_wrap h2,
.jl_foot_wrap h3,
.jl_foot_wrap h4,
.jl_foot_wrap h5,
.jl_foot_wrap h6{
    color: var(--jl-foot-head);
    font-size: var(--jl-foot-title-size);
}
.jl_foot_wrap .widget-title{
    border-bottom: 0px;
    padding-bottom: 0px;
}
.jl_foot_wrap .searchform_theme{
    border-color: var(--jl-foot-line);
}
.jl_foot_wrap .searchform_theme .search_btn, .jl_foot_wrap .searchform_theme .button{
    color: var(--jl-foot-color) !important;
}
.jl_foot_wrap .tagcloud a{
    background: var(--jl-foot-line);
}
.jl_foot_wrap .jlc-row {
    margin-bottom: 0px;
}
.jl_foot_wrap .footer-columns ul.menu{
    display: grid;
    grid-template-columns: repeat(var(--jl-foot-menu-col),minmax(0,1fr));
}
/*-----------------------------------------------------------------------------------*/
/*  Footer bottom
/*-----------------------------------------------------------------------------------*/
.footer-bottom {
    color: #535353;
    text-align: left;
    float: left;
    width: 100%;
}
.jl_foot_wrap {
    color: var(--jl-foot-color);
}
.jl_foot_wrap .footer-menu-bottom ul li a {
    color: var(--jl-foot-link) !important;
}
.jl_ft_mini,
.jl_ft_mini .footer-bottom {
    text-align: center;
}
.jl_ft_mini .jl-menu-footer {
    float: none;
    text-align: center;
}
.jl_ft_mini .jl_ft_cw .footer-logo-holder{
    display: flex;
    justify-content: center;
}
.jl_ft_mini .footer-logo-holder a{
    margin: 0;
    display: flex;
    position: relative;
}
.jl_ft_mini .jl_sh_ic_li{
    gap: 10px;
}
.logo_foot_white .jl_ft_mini .footer-logo-holder .jl_logo_w,
.options_dark_skin .jl_ft_mini .footer-logo-holder .jl_logo_w{
    opacity: 1;
}
.logo_foot_white .jl_ft_mini .footer-logo-holder .jl_logo_n,
.options_dark_skin .jl_ft_mini .footer-logo-holder .jl_logo_n{
    opacity: 0;
}
.jl_ft_mini .footer-logo-holder .jl_logo_w{
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
}
.jl_ft_mini .footer-logo-holder img {
    width: var(--jl-fot-logo-width);
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.jl_ft_mini .cp_txt {
    font-size: var(--jl-foot-copyright);
    font-family: var(--jl-menu-font);
    line-height: 1.2;
}
.jl_ft_mini .cp_txt a {
    display: contents;
}
.jl_ft_mini .jl-menu-footer li a{
    line-height: 1.2;
    font-size: var(--jl-foot-menu-size);
}
.jl_ft_mini .jl_ft_cw {
    padding: 60px 0px;
    border-top: 1px solid var(--jl-foot-line);
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.jl_ft_mini .jl_ft_cw .footer-logo-holder{
    margin-bottom: 25px;
}
.jl_ft_min1 .jl_sh_ic_li .jl_facebook a{
    background: #3b5998;
}
.jl_ft_min1 .jl_sh_ic_li .jl_twitter a{
    background: #1da1f2;
    color: #fff !important;
}
.jl_ft_min1 .jl_sh_ic_li .jl_instagram a{
    background: #543c70;
}
.jl_ft_min1 .jl_sh_ic_li .jl_pinterest a{
    background: #bd081c;
}
.jl_ft_min1 .jl_sh_ic_li .jl_youtube a{
    background: #ff0000;
}
.jl_ft_min1 .jl_sh_ic_li .jl_vimeo a{
    background: #1ab7ea;
}
.jl_ft_min1 .jl_sh_ic_li .jl_sound_cloud a{
    background: #ff5500;
}
.jl_ft_min1 .jl_sh_ic_li .jl_spotify a{
    background: #1db954;
}
.jl_ft_min1 .jl_sh_ic_li .jl_linkedin a{
    background: #0a66c2;
}
.jl_ft_min1 .jl_sh_ic_li .jl_behance a{
    background: #1769ff;
}
.jl_ft_min1 .jl_sh_ic_li .jl_telegram a{
    background: #0088cc;
}
.jl_ft_min1 .jl_sh_ic_li .jl_tumblr a{
    background: #2c4762;
}
.jl_ft_min1 .jl_sh_ic_li .jl_deviantart a{
    background: #008e41;
}
.jl_ft_min1 .jl_sh_ic_li .jl_dribble a{
    background: #ea4c89;
}
.jl_ft_min1 .jl_sh_ic_li .jl_dropbox a{
    background: #007ee5;
}
.jl_ft_min1 .jl_sh_ic_li .jl_rss a{
    background: #ff6600;
}
.jl_ft_min1 .jl_sh_ic_li .jl_skype a{
    background: #00aff0;
}
.jl_ft_min1 .jl_sh_ic_li .jl_stumbleupon a{
    background: #e94826;
}
.jl_ft_min1 .jl_sh_ic_li .jl_wordpress a{
    background: #1f7297;
}
.jl_ft_min1 .jl_sh_ic_li .jl_yahoo a{
    background: #6001d2;
}
.jl_ft_min1 .jl_sh_ic_li .jl_flickr a{
    background: #f40083;
}
.jl_ft_min1 .jl_sh_ic_li .jl_wechat a{
    background: #2bbc22;
}
.jl_ft_min1 .jl_sh_ic_li .jl_tiktok a{
    background: #000;
}
.jl_ft_min1 .jl_sh_ic_li .jl_discord a{
    background: #5663eb;
}
.jl_ft_min1 .jl_sh_ic_li .jl_vk a{
    background: #0077fc;
}
.jl_ft_min1 .jl_sh_ic_li .jl_snapchat a{
    background: #f8f530;
    color: #000 !important;
}
.jl_ft_min1 .jl_sh_ic_li .jl_snapchat a svg{
    stroke: #000 !important;
    fill: #fff !important;
    stroke-width: 1.2px;
}
.jl_ft_min1 .jl_sh_ic_li .jl_reddit a{
    background: #ff4c10;
}
.jl_ft_mini .jl_sh_ic_li, .jl_ft_mini .jl-menu-footer{
    justify-content: center;
    flex-wrap: wrap;
}
.jl_ft_mini .jl_sh_ic_li li a i {
    position: absolute;
    top: 50%;
    -webkit-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    -ms-transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    transform: translate3d(0, 0, 0) perspective(1px) translateY(-50%);
    width: 100%;
    left: 0px;
}
.jl_ft_mini .jl_sh_ic_li li a {
    font-size: 15px;
    background: #222;
    width: 38px;
    height: 38px;
    line-height: 38px;
    display: block;
    border-radius: 100px;
    position: relative;
}
.jl_ft_mini .jl_sh_ic_li li a i,
.jl_ft_mini .jl_sh_ic_li li:hover a,
.jl_ft_mini .jl_sh_ic_li li:hover a i {
    color: #fff !important;
}
.jl_foot_wrap .jl_ft_mini .jl_sh_ic_li li a:hover{
    opacity: .9 !important;
}
.bottom_footer_menu_text .jl_ft_w {
    padding: 30px 0 35px 0;
    border-top: 1px solid #383838;
    float: left;
    width: 100%;
}
.bottom_footer_menu_text .col-md-6 {
    padding-right: 15px;
    padding-left: 15px;
}
.footer-bottom .footer_logo_bottom {
    padding-top: 55px;
    padding-bottom: 55px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-bottom .footer_logo_bottom img {
    max-height: 90px;
}
.footer-bottom .footer-left-copyright {
    text-align: left;
    margin-top: 5px;
    color: #ccc;
}
.footer-bottom .footer-menu-bottom {
    text-align: right;
    padding-left: 15px;
    padding-right: 15px;
}
.footer-right {
    text-align: right;
}
.jl-menu-footer {
    margin-bottom: 0px;
    padding: 0px;
    display: flex;
    gap: 20px;
}
.jl-menu-footer li {    
    list-style: none;     
    display: flex;
    line-height: 1.2;
}
.jl-menu-footer li a {
    text-decoration: none;
    color: var(--jl-foot-link);
    font-family: var(--jl-menu-font);
    font-size: var(--jl-foot-menu-size);
    font-weight: var(--jl-menu-font-weight);
    text-transform: capitalize;
    letter-spacing: 0;
}
.jl-menu-footer li a:hover {
    text-decoration: none !important;
    color: var(--jl-foot-hlink);
}

/* Footer 2 */
.ft_s2 .jl_ft_cw {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 20px 0px;
    border-top: 1px solid var(--jl-foot-line);
    gap: 15px;
}
.ft_s2 .jl_ft_cw .jl-menu-footer {
    display: inline-flex;
    text-align: left;
    margin: 0px;
}
.jl_foot_wrap .ft_s2 .jl_sh_ic_li li a:hover, .jl_foot_wrap .jl_sh_ic_li li a:hover{
    opacity: .6 !important;
}
/* Footer 3 / 4/ 5 */
.ft_s3 .jl_ft_cw, .ft_s4 .jl_ft_cw, .ft_s5 .jl_ft_cw{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 20px 0px;
    border-top: 1px solid var(--jl-foot-line);
    gap: 15px;
}
/* Footer 4 / 5 */
.ft_s4 .jl_ft_cw, .ft_s5 .jl_ft_cw{
    justify-content: center;
}
/*-----------------------------------------------------------------------------------*/
/*  Reviews circle
/*-----------------------------------------------------------------------------------*/

.review_circle_large {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 64px;
    overflow: hidden;
    height: 64px;
    padding: 2px;
    -webkit-radius: 100%;
    -moz-radius: 100%;
    -ms-border-radius: 100%;
    -o-radius: 100%;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.3);
}
.review_circle_large input {
    background: none;
    border: none;
    font-weight: 700;
}
.review_circle_large_small {
    position: absolute;
    top: 10px;
    right: 10px;
    overflow: hidden;
    width: 44px;
    height: 44px;
    padding: 2px;
    -webkit-radius: 100%;
    -moz-radius: 100%;
    -ms-border-radius: 100%;
    -o-radius: 100%;
    border-radius: 100%;
    background: rgb(69, 72, 77);
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.review_circle_large_small input {
    background: none;
    border: none;
}
.owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}
.post_review_bar {
    font-size: 19px !important;
    margin-top: 0px !important;
    height: 60px !important;
    color: #f4b711 !important;
}
.review_circle_large_small .post_review_bar {
    font-weight: 700;
    font-size: 13px !important;
    margin-top: 0px !important;
    height: 40px !important;
    color: #f4b711 !important;
}
.review_star_small {
    background: #f4b711;
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 0 6px !important;
    height: 16px;
    line-height: 16px;
    float: right;
    color: #fff;
    font-size: 11px;
}
/*-----------------------------------------------------------------------------------*/
/*  Review System
/*-----------------------------------------------------------------------------------*/
#jl-review-box {
    width: 100%;
    padding: 0px;
}
.jl_rw_w{
    font-size: 14px;
    padding: 30px;
    border: 1px solid var(--jl-post-line-color);
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#jl-review-box.left {
    margin: 0 30px 19px 0;
    width: 48.4375%;
}
#jl-review-box.right {
    margin: 0 0 19px 30px;
    width: 48.4375%;
}
#jl-review-box ul {
    padding: 0;
    margin: 0px;
    list-style: none;
    width: 100%;    
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#jl-review-box ul li{
    margin: 0px;
}
#jl-review-box ul li .review-criteria-score {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#jl-review-box ul li .review-criteria-score .jl_star_i{
    display: flex;
    gap: 2px;
}
#jl-review-box ul li .review-criteria-score .jl_star_i svg{
    width: 13px;
    height: auto;
}
#jl-review-box ul li .review-criteria-score .jl_star_val {
    display: none;
}
#jl-review-box ul li .review-criteria-score .right {
    font-weight: bold;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#jl-review-box ul li .review-criteria-score[class*="icon-"] {
    font-size: 14px;
    color: #FFA83F;
    margin: 0 0 0 1px;
    width: 14px;
}
#jl-review-box ul li .review-criteria-bar-container {
    background: #ebebeb;
    height: 4px;
    border-radius: 100px;
}
#jl-review-box ul li .review-criteria-bar {
    float: left;
    height: 4px;
    background: #ffcd00;
    border-radius: 100px;
}
.rw_btnw{
    display: flex;
}
.rw_btnw .rw_btn{
    background: var(--jl-main-color);
    font-family: var(--jl-menu-font);
    font-size: 12px;
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 25px;
    border-radius: var(--jl-button-radius);
}
.rw_btnw .rw_btn:hover{
    background: var(--jl-btn-bg);
    color: #fff;
}
.rw_btnw .rw_btn svg{
    width: 13px;
    height: auto;
    margin-left: 5px;
}
.jl_ideas_sum h6 {
    margin-bottom: 10px;
    font-size: 18px;
}
.jl_ideas_sum p{
    margin-bottom: 0px;
    font-size: 14px;
}
.jl_ideas_sum {
    width: 100%;        
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.jl_pcw{
    display: flex;
    width: 100%;
    gap: 20px;
}
.jl_pcw .jl_review_pros, .jl_pcw .jl_review_cons{
    width: 50%;
}
.jl_review_pros span,
.jl_review_cons span {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3px;
}
.jl_review_pros span:before {
    content: "+";
    display: inline;
    margin-right: 7px;
    color: #1ea22d;
    align-self: flex-start;
}
.jl_review_cons span:before {
    content: "-";
    display: inline;
    margin-right: 7px;
    color: #ff0015;
    align-self: flex-start;
}
.right.review-total-score-boxtype-percent b {
    font-size: 25px !important;
}
#jl-review-box .right.review-total-score-boxtype-star>span {
    margin-top: -5px;
    float: left;
    width: 100%;
    margin-left: 10px;
}
#jl-review-box .right.review-total-score-boxtype-star i {
    font-size: 19px;
    margin-top: 39px;
    margin-right: 3px;
    float: left;
}
.jl_bar_w {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
.jl_bar_w span,
.jl_bar_w span:hover {
    color: #fff;
    font-size: 12px;
    z-index: 2;
    position: relative;
    font-weight: bold;
    width: 100%;
}
.jl_bar_w .jl_star_val {
    display: none;
}
.jl_bar_c {
    position: relative;
    padding: 0px 10px;
    text-align: right;
    height: 25px;
    display: flex;
    align-items: center;
}
.jl_bar_bg {
    z-index: 1;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: .8 !important;
}
.jl_score_h {
    position: relative;
    display: flex;
    width: 100%;
    height: 230px;
}
.jl_score_h:before {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: '';
    position: absolute;
    background: #000;
}
.jl_score_h img {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    opacity: .8;
}
.jl_score_main_w .jl_score_main {
    position: absolute;
    bottom: 30px;
    right: 30px;
}
.jl_score_main_w .jl_score_main .jl_star_re_w{
    background: #fff;
    display: flex;
    padding: 3px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.jl_score_main_w .jl_score_main .jl_star_re {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    width: 100px;
    height: 120px;
    background: #ffcd00;
    color: #fff;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.jl_score_main_w .jl_score_main .jl_star_re span,
.jl_score_main_w .jl_score_main .jl_star_re i {
    display: inline-block;
    font-size: 12px;
}
.jl_score_main_w .jl_score_main .jl_star_re .jl_star_i{
    display: flex;
    gap: 2px;
}
.jl_score_main_w .jl_score_main .jl_star_re .jl_star_val {
    display: block;
    font-size: 35px;
    line-height: 1.2;
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);    
}
.jl_score_main_w .review-ht .jl_sum_title {
    margin-bottom: 10px;
    font-size: 18px;
}
.jl_score_main_w .review-ht {
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.jl_score_main_w .review-ht .itemreviewed {
    margin-bottom: 0px;
    color: #fff;
}
.post_content .jl_score_main_w .review-ht p {
    font-size: 15px;
}
#jl-review-box .right .icon-star {
    font-size: 16px;
    line-height: 22px;
    margin: 0 2px;
    width: 18px;
}
#jl-review-box .review-total-score .type-star {
    font-size: 14px;
    padding: 7px 15px;
}
#jl-review-box .review-total-score-box[class*="icon-"] {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0 1px;
}
.user_review-user-review-criteria {
    color: #FFFFFF;
    padding: 10px 12px;
    margin: 0px;
    background: #202020;
    position: relative;
    text-transform: uppercase;
    float: left;
    width: 100%;
    font-size: 12px;
}
.jl-renut,
.jl-renut-overlay {
    border-radius: 50%;
    overflow: hidden;
}
.jl-renut {
    height: auto;
    position: relative;
    flex-shrink: 0;
    background-color: #000;
    width: 100px;
    padding-bottom: 100px;
}
.jl-renut-sections {
    position: absolute;
    height: auto;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
}
.jl-renut-section.jl-renut-section-right {
    left: 50%;
}
.jl-renut-filler,
.jl-renut-section {
    position: absolute;
    height: 100%;
}
.jl-renut-section {
    width: 50%;
    background-color: transparent;
    transform-origin: 0px 50%;
    pointer-events: none;
    overflow: hidden;
}
.jl-renut-section div {
    display: block;
}
.jl-renut-section.jl-renut-section-right .jl-renut-filler {
    transform-origin: 0px 50%;
}
.jl-renut-filler {
    width: 100%;
    pointer-events: all;
}
.jl-renut-filler,
.jl-renut-section {
    position: absolute;
    height: 100%;
}
.jl-renut-section.jl-renut-section-left,
.jl-renut-section.jl-renut-section-left .jl-renut-filler {
    transform-origin: 100% 50%;
}
.jl-renut-section.jl-renut-section-left .jl-renut-filler,
.jl-renut-section.jl-renut-section-right .jl-renut-filler {
    background: #ffcd00;
}
.jl-renut-section.jl-renut-section-left {
    left: 0px;
}
.jl-renut-overlay {
    opacity: 1;
    position: absolute;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 86px;
    width: 86px;
    top: 7px;
    left: 7px;
    background-color: #000;
}
.jl-renut,
.jl-renut-overlay {
    border-radius: 50%;
    overflow: hidden;
}
.jl-renut-text {
    text-align: center;
    font-size: 23px;
    color: #fff;
    font-weight: 600;
    font-family: var(--jl-menu-font);
}
.jl-renut-text b {
    font-size: 20px;
}
.jl-donut-front {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    transform: scale(.9);
}
.jl-donut-front .jl-renut-container {
    background-color: #000000;
    padding: 0px;
    border-radius: 100px;
    width: 45px;
    height: 45px;
}
.jl-donut-front .jl-renut {
    background-color: #000000;
    width: 45px;
    padding-bottom: 45px;
}
.jl-donut-front .jl-renut-overlay {
    background-color: #000;
    height: 39px;
    width: 39px;
    top: 3px;
    left: 3px;
}
.jl-donut-front .jl-renut-text {
    font-size: 14px;
    font-family: var(--jl-menu-font);
    color: #fff;
}
/*-------------------------------------------------------------------------------------
go to top
-------------------------------------------------------------------------------------*/
#go-top{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
#go-top a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    text-decoration: none;
    color: #000;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    background: #ebebeb;
    font-size: 6px;
    cursor: pointer;
    border-radius: var(--jl-top-rounded);
}
#go-top a:hover{
    background: var(--jl-main-color);
    color: #fff !important;
    text-decoration: none !important;
}
#go-top a i{
    font-weight: bold;
}
/*-------------------------------------------------------------------------------------
Woocommerce
-------------------------------------------------------------------------------------*/
.jl_shop_filter_content{
    position: absolute;
    width: 100%;
    max-width: 100%;
    background: var(--jl-bg-color);
    top: calc(100% + 5px);    
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0.5rem 1rem rgb(29 45 53 / 15%);
    border-radius: 3px;
}
.jl_shop_filter_content.jl_woo_fs{
    opacity: 1;
    z-index: 9;
    visibility: visible;
}
.jl_shop_filter_content .jl_shop_filter_inner{
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    grid-gap: 25px;
    padding: 25px;
    width: 100%;
    font-size: 13px;
}
.jl_shop_filter_content .jl_shop_filter_inner .price_label{
    font-size: 13px;
}
.jl_shop_filter_content .jl_shop_filter_inner > div{    
    margin-bottom: 0;
}
.jl_shop_filter_content .button.wp-element-button{
    height: 33px;
    line-height: 1.2 !important;
    font-size: 80% !important;
    background-color: var(--jl-main-color);
}
.jl_remove_filter{
    width: 100%;
    display: flex;    
    flex-wrap: wrap;
    padding: 0px;
    margin: 0px;
    order: 3;
}
.jl_remove_filter li{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.jl_remove_filter li a{
    padding: 3px 5px;
    font-size: 11px;
    border: 1px solid var(--jl-post-line-color);
    margin-right: 5px;
    margin-top: 5px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    position: relative;
}
.jl_remove_filter li a:before{
    content: '\e906';
    font-family: jl_font !important;
    font-size: 7px;
    margin-right: 3px;
}
/* Color */
ul.woocommerce-widget-layered-nav-list .type-color span.color-box {
    width: 15px;
    height: 15px;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
}
ul.woocommerce-widget-layered-nav-list .type-color a:before{
    display: none;
}
ul.woocommerce-widget-layered-nav-list .type-color span.color-box:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: normal;
    line-height: 1;
    opacity: 0;
    transition: opacity .2s ease;
    font-family: jl_font !important;
    content: '\e907';
    color: #fff;
    font-size: 7px;
}
ul.woocommerce-widget-layered-nav-list .type-color a, ul.woocommerce-widget-layered-nav-list .type-button a{
    position: absolute !important;
    left: 0px;
    width: 100%;
    padding-left: 25px !important;
}

ul.woocommerce-widget-layered-nav-list .type-color {
    padding-bottom: 3px;
    text-transform: capitalize;
    vertical-align: middle;
}

ul.woocommerce-widget-layered-nav-list .type-color span.count {
	float: right;
	font-size: 0.8125rem;
	line-height: 25px;
	color: #9aa5b3;
}
ul.woocommerce-widget-layered-nav-list li.chosen .type-color span.color-box:after,
ul.woocommerce-widget-layered-nav-list li:hover .type-color span.color-box:after,
ul.woocommerce-widget-layered-nav-list li.chosen .type-button span.button-box:after,
ul.woocommerce-widget-layered-nav-list li:hover .type-button span.button-box:after{
	opacity: 1;
}

/* Button Attribute */
ul.woocommerce-widget-layered-nav-list .type-button span.button-box {
	width: .875rem;
    height: .875rem;
    display: inline-block;
    position: relative;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 10px;
    border: 1px solid #ccc;
    position: absolute;
    left: 0;
    top: 4px;
    border-radius: 2px;
}
ul.woocommerce-widget-layered-nav-list li.chosen .type-button span.button-box,
ul.woocommerce-widget-layered-nav-list li:hover .type-button span.button-box{
    background: var(--jl-main-color);
    border-color: transparent;
}
ul.woocommerce-widget-layered-nav-list .type-button a {
    z-index: 99;
}

ul.woocommerce-widget-layered-nav-list .type-button {
    text-transform: capitalize;
	position: relative;
}

ul.woocommerce-widget-layered-nav-list .type-button span.button-box:after {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: normal;
    line-height: 1;
    opacity: 0;
    transition: opacity .2s ease;
    font-family: jl_font !important;
    content: '\e907';    
    color: #fff;
    font-size: 7px;
}
ul.woocommerce-widget-layered-nav-list li.chosen .type-button span.button-box:after{
	opacity: 1;
}

ul.woocommerce-widget-layered-nav-list .type-button:hover span.button-box {
    background-color: var(--color-background-light);
}

ul.woocommerce-widget-layered-nav-list .type-button a:before {
    display: none;
}

ul.woocommerce-widget-layered-nav-list .type-button span.count {
    float: right;
	font-size: 0.8125rem;
    line-height: 25px;
	color: #9aa5b3;
}

ul.woocommerce-widget-layered-nav-list li.chosen .type-button a {
    color: var(--color-primary);
    text-shadow: 0px 0px 0px;
}

ul.woocommerce-widget-layered-nav-list .type-button a {
    margin-bottom: 3px;
}

/* Filter */
.jl_wc_filter{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 30px;
}
.jl_woo_content{
    margin-bottom: 0px;
}
.jl_wcli_in{
    --jl-wc-col: 4;
    --jl-wc-row-gap: 30px;
    --jl-wc-col-gap: 30px;
    --jl-img-h: 100%;
    --jl-pro-title: 18px;
    --jl-pro-price: 14px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(var(--jl-wc-col),minmax(0,1fr));
    grid-row-gap: var(--jl-wc-row-gap);
    grid-column-gap: var(--jl-wc-col-gap);
}
.jl_wcli_w .jl_wc_title{
    margin-bottom: 10px;
    font-size: var(--jl-pro-title);
}
.jl_wcli_w .jl_wc_price{
  font-size: var(--jl-pro-price) !important;
}
.woocommerce table.shop_table tr, .woocommerce table.wishlist_table tr, .woocommerce-page table.shop_table thead, table td, table th{
    border-color: var(--jl-post-line-color) !important;
}
.jl_wcli_in .jl_wc_imgw{
    position: relative;
    padding-bottom: var(--jl-img-h);
    overflow: hidden;
    margin-bottom: 20px;
}
.jl_wcli_in ins{
    text-decoration: none;
}
.jl_wc_btnw{
    z-index: 4 !important;
}
.jl_wc_btnw a.added{
  display: none;
}
.jl_wc_btnw a:hover{
    color: #fff;
}
.jl_wc_btnw a{
    width: 100%;
}
.jl_wc_link{
    z-index: 3;
}
.jl_wcli_in .jl_wc_imgin,
.jl_wc_link{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.jl_wcli_in .jl_wc_imgin img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: transform 1s ease,opacity .5s ease;
    transform: scale(1.01);
}
.jl_wcli_in .jl_wc_imgw:hover .jl_wc_imgin img{
    transform: scale(1.051);
}
.products[class*='wc-col'] {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    grid-gap: 30px;
}

.woocommerce .woocommerce-breadcrumb {
    line-height: 1.2;
    display: none;
}
.woocommerce div.product {
    float: none;
    width: 100%;
    margin-bottom: 0px;
}
.woocommerce .single-product-wrap div.product {
    margin-bottom: 0px !important;
}
.woocommerce .pagination-wrap {
    margin-top: 0;
}
.woocommerce-loop-product__title {
    margin-bottom: 10px;
    font-size: 18px;
}
.content_single_page .woocommerce-loop-product__title a {
    color: #000 !important;
    text-decoration: none !important;
}
.woocommerce .result-wrap {
    display: flex;    
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.woocommerce div.product div.images img {
    border-radius: 0px;
}
.woocommerce .woocommerce-result-count {
    margin: -10px 0px 0px 0px;
    white-space: nowrap;
    font-size: 14px;
}
.woocommerce .woocommerce-ordering {
    margin: 0 0 0 auto;
    flex-shrink: 0;
    position: relative;
}
.jl_filter_btn{
    border-left: 1px solid #ccc;
    padding-left: 10px;
}
.options_dark_skin.woocommerce .woocommerce-ordering select, .options_dark_skin .jl_filter_btn{
    background: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6 9L12 15L18 9' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") calc(100% - 5px) 55% no-repeat;
    background-size: 18px 17px;
}
.woocommerce .woocommerce-ordering select, .jl_filter_btn{
    outline: none !important;
    border: none;
    color: var(--jl-txt-color) !important;
    background: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6 9L12 15L18 9' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") calc(100% - 5px) 55% no-repeat;
    background-size: 18px 17px;
    border-color: transparent;
    cursor: pointer;
    font-family: var(--jl-menu-font);
    padding-top: 2px;
    padding-bottom: 2px;
    height: auto;
    line-height: 1.2;
    text-align: right;
    padding-right: 26px;
    font-size: 14px;
    width: auto;
    max-width: unset;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.woocommerce .woocommerce-ordering select:before,
.woocommerce .woocommerce-ordering select:after {
    display: none !important;
}
.product-thumb:before {
    display: none;
}
.product-name a:hover,
.woocommerce-page .product-name a:hover {
    background-size: 100% 30%;
    -webkit-background-size: 100% 30%;
}
.woocommerce nav.woocommerce-pagination span,
.woocommerce nav.woocommerce-pagination a {
    float: none;
    padding: 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    white-space: nowrap;
    margin: 0 3px;
    padding: 0px;
    list-style: none;
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-meta-font-weight);
}
.woocommerce nav.woocommerce-pagination span {
    font-size: 12px;
    padding: 0px;
    height: 35px;
    line-height: 35px;
    width: 35px;
    text-decoration: none;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    background: var(--jl-main-color);
    color: #fff;
    border-radius: 100px;
}
.woocommerce nav.woocommerce-pagination a {
    font-size: 12px !important;
    padding: 0px;
    height: 35px;
    line-height: 35px;
    width: 35px;
    text-decoration: none;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    background: #000;
    color: #fff;
    border-radius: 100px;
}
.woocommerce nav.woocommerce-pagination a:hover {
    color: #fff !important;
}
.woocommerce nav.woocommerce-pagination a i {
    font-size: 9px;
}
.woocommerce nav.woocommerce-pagination a:hover {
    text-decoration: none !important;
    background: var(--jl-main-color);
    color: #fff !important;
}
.woocommerce nav.woocommerce-pagination a {
    font-size: 9px;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
.woocommerce nav.woocommerce-pagination{
  margin-top: 30px;
}
.product-thumb {
    position: relative;
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
}
.product-thumb > a{
    border-radius: var(--jl-border-rounded);
    overflow: hidden;
    display: block;
}
.product-thumb img {
    display: block;
    width: 100%;    
    transition: transform 1s ease,opacity .5s ease;
    transform: scale(1.01);
}
.product-thumb:hover img {
    transform: scale(1.051);
}
.product-buttons .button {
    width: 100%;
}
.product-buttons, .jl_wc_btnw {
    opacity: 1;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: .2s cubic-bezier(.39, .33, .13, .95);
    -o-transition: .2s cubic-bezier(.39, .33, .13, .95);
    transition: .2s cubic-bezier(.39, .33, .13, .95);
    position: absolute;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    text-align: center;
}
.product-thumb:hover .product-buttons,
.jl_wc_imgw:hover .jl_wc_btnw {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: .14s;
    -o-transition-delay: .14s;
    transition-delay: .14s;
}
.added_to_cart.wc-forward:hover{
    color: #fff !important;
}
.product-buttons .clear {
    height: 1px;
}
.product-buttons .add-to-cart a.button,
.woocommerce .product-buttons .add-to-cart a {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 !important;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    letter-spacing: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}
.product-buttons .add-to-cart a.added,
.woocommerce .product-buttons .add-to-cart a.added {
    display: none;
}
.product-buttons .add-to-cart a.added_to_cart {
    background-color: #000;
    color: #fff;
}
.woocommerce-page form .form-row label {
    display: block;
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 14px;
}
.woocommerce-page form .form-row .password-input {
    display: block;
    width: 100%;
}
.product-buttons .add-to-cart a:before,
.woocommerce .product-buttons .add-to-cart a:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: '\e91c';
    text-align: center;
    text-indent: 0;
    text-transform: none;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    font-size: 24px;
    font-family: 'jl_font';
    line-height: 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.product-buttons .add-to-cart a.added_to_cart:before,
.woocommerce .product-buttons .add-to-cart a.added_to_cart:before {
    content: '\e91c';
}
.product-buttons .add-to-cart a.loading:before,
.woocommerce .product-buttons .add-to-cart a.loading:before {
    content: '\e964';
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 3000ms;
    animation-duration: 3000ms;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.woocommerce-account .woocommerce .col2-set {
    margin-top: 30px;
}
.woocommerce-account:not(.logged-in) .content_page_padding .woocommerce {
    margin-right: auto;
    margin-left: auto;
    padding: 25px 30px 20px 30px;
    max-width: 400px;
    border: 1px solid #eee;
}
.woocommerce-account:not(.logged-in) .content_single_page .content_page_padding .woocommerce h2 {
    font-size: 25px;
}
.woocommerce-account:not(.logged-in) .content_single_page .content_page_padding .woocommerce .woocommerce-form label {
    font-size: 16px !important;
}
.shipping-calculator-form {
    text-align: left;
}
.woocommerce .shipping-calculator-form .form-row {
    margin-bottom: 10px;
}
.woocommerce #calc_shipping_country_field {
    font-weight: 700;
}
@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.woocommerce a.button {
    -webkit-transition: background-color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: background-color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: background-color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: background-color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: background-color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    padding: 0px !important;
    border-radius: 0px;
}
.woocommerce a.button:after {
    display: none;
}
.woocommerce a.button:hover,
.woocommerce a.button:focus {
    text-decoration: none !important;
}
/* yith-wcwl-add-to-wishlist */

.product-buttons .yith-wcwl-add-to-wishlist {
    position: relative;
    margin: 0;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    letter-spacing: 0;
    font-size: 0;
}
.wishlist-items-wrapper .product-thumbnail img {
    max-width: 100px;
    height: auto;
}
ul.shop_table {
    list-style: none;
    padding-left: 0;
}
.wishlist-items-wrapper a.remove_from_wishlist {
    margin-top: 5px !important;
}
.wishlist-items-wrapper .product-name span {
    display: block;
    text-align: center;
}
.product-buttons .yith-wcwl-add-to-wishlist > * {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}
.wishlist_table.responsive .product-thumbnail img {
    width: 100%;
}
.wishlist_table.responsive .item-details-table {
    margin-bottom: 0;
    border-bottom: none;
}
.wishlist_table.responsive .additional-info {
    margin-bottom: 15px;
}
.wishlist_table.responsive td.label {
    font-weight: 700;
}
.wishlist_table.responsive td.value {
    text-align: right;
}
.wishlist_table.responsive .item-details {
    margin-top: 10px;
}
.wishlist_table.responsive li {
    margin-bottom: 30px;
}
.wishlist_table.responsive .add-to-cart a {
    margin: 0;
    padding: 0 20px;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    font-size: .85rem;
    line-height: 34px;
}
.product-buttons .yith-wcwl-add-to-wishlist > .yith-wcwl-wishlistaddresponse {
    top: -9999px;
}
.product-buttons .yith-wcwl-add-to-wishlist > .hide {
    z-index: -1;
    display: none !important;
    pointer-events: none;
}
.product-buttons .yith-wcwl-add-to-wishlist > .show {
    z-index: 10;
    display: block;
}
.product-buttons .yith-wcwl-add-to-wishlist a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 0;
    border-radius: 0;
    text-align: center;
    text-decoration: none !important;
}
/* add to cart */
.woocommerce span.onsale,
.woocommerce span.onsale,
.wesper-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
    min-width: auto;
    min-height: auto;
    border-radius: 100px;
    background-color: #d61919;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 10px;
    line-height: 1.2;
    padding: 4px 10px 4px 10px;
    font-family: var(--jl-menu-font);
}
.woocommerce span.onsale.percent {
    top: 10px;
    left: 10px;
    padding: 0;
    width: 54px;
    height: 54px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    text-transform: none;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 54px;
}
.woocommerce span.onsale.percent i {
    vertical-align: middle;
    font-size: .7rem;
}
.woocommerce span.onsale.percent strong {
    font-weight: inherit;
}
.woocommerce span.onsale.percent .off {
    display: block;
    padding-top: 3px;
    font-size: .7rem;
    line-height: 1;
}
.product .product-loop-content {
    position: relative;
}
.woocommerce .star-rating,
.woocommerce .product .star-rating,
.jl_wcli_in .star-rating{
    position: relative;
    display: inline-block;
    float: none;
    clear: both;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding: 0;
    width: auto;
    height: auto;
    letter-spacing: 0;
    font-size: 0;
    display: none;
}
.woocommerce .product .star-rating:before,
.woocommerce .product .star-rating span:before,
.woocommerce .star-rating:before,
.woocommerce .star-rating span:before,
.jl_wcli_in .star-rating:before,
.jl_wcli_in .star-rating > span:before{
    position: relative;
    top: auto;
    left: auto;
    margin: 0;
    color: #ccc;
    content: '\e923\e923\e923\e923\e923';
    letter-spacing: 3px;
    font-size: 12px;
    font-family: 'jl_font';
}
.woocommerce .star-rating span,
.woocommerce .product .star-rating span,
.jl_wcli_in .star-rating span{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0;
    overflow: hidden;
}
.woocommerce .star-rating span:before,
.woocommerce .product .star-rating span:before,
.jl_wcli_in .star-rating > span:before{
    color: #ffca00;
}
.woocommerce .jl-wc-col {
    padding: 0px;
}
/* price */

.woocommerce div.product .product-loop-content .price, .jl_wcli_w .jl_wc_price{
    display: block;
    margin: 0;
    text-transform: none;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.2;
    font-family: var(--jl-menu-font);
}
.is-light-text div.product .product-loop-content .price {
    color: #fff;
}
.woocommerce div.product .product-loop-content .price * {
    color: inherit;
    text-decoration: none;
    letter-spacing: inherit;
    font-weight: inherit;
    font-size: inherit;
}
.woocommerce div.product .product-loop-content .price del {
    margin-right: 4px;
    font-size: .85rem;
}
.shopthepost div.product .product-loop-content .price del {
    font-size: .9rem;
}
.woocommerce div.product .product-loop-content .price del * {
    text-decoration: line-through;
    letter-spacing: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
}
/* login page */

#customer_login > * {
    position: relative;
    display: block;
    padding: 30px 20px;
}
#customer_login > *:first-child, #customer_login .u-column2 {
    background-color: rgba(0, 0, 0, .015);
}
.woocommerce form.login,
.woocommerce form.register {
    margin-top: 30px;
    padding: 0;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.woocommerce #customer_login h2 {
    text-transform: inherit;
    font-size: 23px;
}
.woocommerce #customer_login .woocommerce-form__label-for-checkbox {
    position: relative;
    display: inline-block;
    margin-top: 7px;
}
.woocommerce #customer_login .woocommerce-form__label-for-checkbox span {
    text-transform: none;
}
.woocommerce form .form-row-first {
    width: 200px;
}
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-last {
    width: auto;
    float: left;
    margin-left: 10px !important;
}
.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row{
    margin-bottom: 14px;
}
.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row-last,
.woocommerce-page form .woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-page form .woocommerce-billing-fields__field-wrapper .form-row-last {
    width: 47%;
}
.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row-last,
.woocommerce-page form .woocommerce-billing-fields__field-wrapper .form-row-last {
    float: right;
}
.woocommerce form .form-row input.input-text {
    height: 40px;
    width: 200px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    display: block;
    margin-bottom: 0px;
    width: 100%;
}
.woocommerce form .form-row textarea {
    margin-top: 10px;
    padding: 20px;
    min-height: 120px;
}
.woocommerce form .form-row {
    margin: 0px;
    padding: 0;
}
.woocommerce input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}
.woocommerce-form.login input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}
.woocommerce a.added_to_cart {
    width: 100%;
}
.woocommerce a.added_to_cart:hover {
    text-decoration: none !important;
}
.woocommerce .woocommerce-orders-table__cell a.button {
    padding: 0 30px !important;
    background-color: var(--jl-main-color);
    color: #fff !important;
    text-decoration: none !important;
    -webkit-transition: .25s !important;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.added_to_cart,
.jl_wc_btnw a{
    font-family: var(--jl-menu-font);
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--jl-main-color);
    color: #fff !important;
    line-height: 48px !important;
    padding: 0px 20px;
    -o-transition: .25s;
    -ms-transition: .25s;
    -moz-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    border: 0px;
    outline: none;
    border-radius: var(--jl-button-radius);
}
.woocommerce .product-thumb .product-buttons a, .jl_wc_imgw .jl_wc_btnw a{
    border-radius: 0px;
}
.woocommerce .product-thumb .product-buttons a:hover, .jl_wc_imgw .jl_wc_btnw a:hover{
    background-color: var(--jl-main-color) !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.added_to_cart:hover,
.jl_wc_btnw a:hover{
    background: var(--jl-btn-bg) !important;
}
.woocommerce a.button.added {
    display: none;
}
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 10px 20px;
}
.woocommerce-error {
    border-color: #000;
}
.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
    margin: 0 !important;
}
.woocommerce #rememberme {
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    opacity: 0;
    cursor: pointer;
}
.woocommerce #rememberme + span {
    position: relative;
    padding-left: 0px;
    font-size: 15px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
    line-height: 42px;
    cursor: pointer;
    order: 2;
}
.woocommerce-form.woocommerce-form-login{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce .lost_reset_password .woocommerce-Button{
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    display: block;
    background-color: var(--jl-main-color);
    color: #fff !important;
    display: flex;
    height: 48px;
    padding: 0px 30px;
    margin-top: 0px;
    -o-transition: .25s;
    -ms-transition: .25s;
    -moz-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    border: 0px;
    outline: none;
    border-radius: var(--jl-button-radius);
}
.woocommerce .lost_reset_password{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.woocommerce #rememberme + span:before {
    position: relative;
    display: inline-flex;
    display: -webkit-inline-flex;
    margin-right: 7px;
    width: 12px;
    height: 12px;
    border: 1px solid #777;
    color: transparent;
    content: "\2714";
    vertical-align: middle;
    text-align: center;
    font-size: 10px;
    line-height: 10px;
}
.woocommerce .lost_password {
    font-weight: 400;
    font-size: 13px;
}
.woocommerce .lost_password a {
    text-decoration: none;
}
.woocommerce .lost_password a:hover {
    color: #000;
    text-decoration: underline;
}
.woocommerce-password-hint {
    display: block;
    margin-top: 10px;
}
.woocommerce-password-strength {
    margin-top: 15px;
    border: none;
    background-color: #ff8080;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
}
.woocommerce-password-strength.short {
    background-color: #ff8080;
}
.woocommerce-password-strength.good {
    background-color: #f5d47e;
}
.woocommerce-password-strength.strong {
    background-color: #83c373;
}
.woocommerce .woocommerce-MyAccount-navigation {
    max-width: 300px;
    background-color: var(--jl-post-line-color);
    padding: 15px 0px;
}
.woocommerce .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding-left: 0;
}
.woocommerce .woocommerce-MyAccount-navigation li {
    margin-bottom: 0;
    list-style: none !important;
    line-height: 44px;
}
.woocommerce .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 0 20px;
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    -webkit-transition: .25s !important;
    color: var(--jl-txt-color) !important;
    border-bottom: 0px;
    -webkit-box-shadow: inset 0 -1px 0 transparent !important;
    -moz-box-shadow: inset 0 -1px 0 transparent !important;
    box-shadow: inset 0 -1px 0 transparent !important;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.2;
    height: 30px;
    align-items: center;
    display: flex;
}
.woocommerce .woocommerce-MyAccount-navigation li.jl-ac-m {
    background-color: #333;
    color: #fff;
}
.woocommerce .woocommerce-MyAccount-navigation li.jl-ac-m a {
    color: #fff !important;
}
.woocommerce form .form-row em {
    font-size: .85rem;
}
.woocommerce .woocommerce-MyAccount-navigation li:not(.jl-ac-m) a:hover,
.woocommerce-page .woocommerce-MyAccount-navigation ul li.is-active a{
    background-color: var(--jl-main-color);
    color: #fff !important;
}
.woocommerce-EditAccountForm .form-row{
    margin-bottom: 14px !important;
}
.woocommerce-EditAccountForm{
    margin-bottom: 0px !important;
}
.woocommerce-MyAccount-content .woocommerce-Button.button {
    padding: 0px 30px !important;
    background-color: var(--jl-main-color);
    color: #fff !important;
    -webkit-transition: .25s !important;
    text-decoration: none !important;
}
.woocommerce .woocommerce-MyAccount-content {
    padding-left: 20px;
}
.woocommerce .woocommerce-MyAccount-content h3 {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 18px;
}
.woocommerce form .form-row .select2-container {
    margin-top: 0px;
    margin-bottom: 10px;
}
.woocommerce form .select2-container--default .select2-selection--single {
    height: 42px;
    border: transparent;
    border-radius: 0 !important;
    background-color: transparent;
    border: 1px solid var(--jl-post-line-color);
    color: var(--jl-txt-color);
    font-size: 15px;
    font-weight: 400;
    border-radius: var(--jl-button-radius);
}
/* address */

.woocommerce-account .addresses {
    margin-top: 3rem;
}
.woocommerce-account .woocommerce-Address {
    padding: 6% 3%;
    background-color: rgba(0, 0, 0, .015);
    max-width: 48% !important;
}
.woocommerce-account .addresses .title .edit {
    padding: 0 20px;
    background-color: #aaa;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: normal;
    font-size: 13px;
    -webkit-transition: .25s !important;
    border-bottom: 0px;
    -webkit-box-shadow: inset 0 -1px 0 transparent !important;
    -moz-box-shadow: inset 0 -1px 0 transparent !important;
    box-shadow: inset 0 -1px 0 transparent !important;
}
.woocommerce-account .addresses .title .edit:hover {
    background-color: #333;
}
.woocommerce-account address {
    font-style: italic;
}
/* checkout page */

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    margin-left: 0 !important;
    border: 1px solid;
    background-color: transparent;
    font-style: italic;
    font-size: .875rem;
}
.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a {
    font-style: normal;
}
.woocommerce-info a.showcoupon {
    margin-left: 7px;
    color: var(--jl-single-link-color);    
}
.woocommerce-info a.showcoupon:hover{
    color: var(--jl-single-link-color) !important;    
}
.woocommerce-info,
.woocommerce-message {
    border-color: var(--jl-post-line-color);
}
.woocommerce-error {
    border-color: #ff8a90;
}
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
    display: inline-block;
    float: none;
    margin-right: 10px;
    text-decoration: none;
}
.woocommerce-page .woocommerce-error a:not(.button):hover,
.woocommerce-page .woocommerce-info a:not(.button):hover,
.woocommerce-page .woocommerce-message a:not(.button):hover {
    color: #000;
    text-decoration: underline;
}
.woocommerce-error:before,
.woocommerce-info:before,
.woocommerce-message:before {
    display: none;
}
.woocommerce-checkout form.login,
.woocommerce-checkout form.register,
.woocommerce form.checkout_coupon {
    padding: 0px;
    border: none;
}
.woocommerce form.checkout_coupon {
    padding-bottom: 0;
}
.woocommerce form.checkout_coupon p {
    font-size: 16px;
    margin-bottom: 10px;
}
.woocommerce form.checkout_coupon.processing {
    opacity: .5;
}
.woocommerce-checkout form.login > p:first-child,
.woocommerce-checkout form.register > p:first-child {
    margin-bottom: 2rem;
    font-style: italic;
    font-size: .9rem;
}
.woocommerce-checkout .woocommerce-form-login .woocommerce-form__label-for-checkbox.inline {
    margin-left: 10px;
}
.woocommerce-checkout .checkout_coupon button.button {
    width: 100%;
    height: 40px !important;
}
/* form checkout */

form.woocommerce-checkout {
    margin-top: 45px;
}
form.woocommerce-checkout h3 {
    display: inline-block;
    margin-bottom: 24px;
}
.woocommerce div.product .product_title {
    margin-bottom: 20px;
    font-size: 40px;
}
.woocommerce-page.woocommerce-cart .cart-collaterals h2 {
    margin-bottom: 20px;
    font-size: 24px;
}
.woocommerce-page.woocommerce-cart .entry-header {
    margin-bottom: 60px;
}
/* select */

.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 10px 20px;
    line-height: 22px;
}
.woocommerce-page .select2-container--default .select2-search--dropdown .select2-search__field,
.woocommerce-page .select2-dropdown {
    border-color: rgba(0, 0, 0, .05);
}
.checkout-col h3#order_review_heading {
    padding: 0;
    background-color: transparent;
    margin-bottom: 10px;
}
.woocommerce-page table.shop_table {
    border: none;
    content: #000;
}
.woocommerce-page select {
    font-size: 14px;
}
.woocommerce-page table.shop_table thead {
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}
.woocommerce-page.woocommerce-checkout tr.cart_item {
    font-size: .9em;
}
.woocommerce-page table.shop_table thead * {
    color: inherit;
    text-transform: inherit;
    font-style: inherit;
    font-size: inherit;
}
.woocommerce-order-details table.shop_table .product-total {
    text-align: right;
}
.woocommerce table.shop_table th {
    padding: 10px 0px;
    border-top: none;
    border-right: none;
    color: var(--jl-txt-color);
    text-transform: capitalize;
}
.woocommerce table.shop_table .cart-subtotal th {
    border-bottom: 0px;
}
.woocommerce-cart table.shop_table th.product-name {
    position: absolute;
    left: 0px;
    top: 0px;
}
.woocommerce-cart table.shop_table th {
    padding-right: 0px;
    padding-left: 0px;
    color: var(--jl-txt-color);
    font-size: 17px;
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
}
.woocommerce table.shop_table td {
    border-right: none;
    padding: 9px 0px;
}
.woocommerce table.shop_table td.product-total {
    text-align: right;
}
form.woocommerce-checkout th {
    text-transform: uppercase;
    font-size: 16px;
}
form.woocommerce-checkout .cart-subtotal th {
    text-transform: none;
    font-size: .9rem;
}
form.woocommerce-checkout .woocommerce-NoticeGroup {
    margin-bottom: 2rem;
}
.woocommerce-page #payment {
    background-color: transparent;
}
.wc-single-featured {
    position: relative;
    display: block;
    width: 100%;
}
.woocommerce .jl_smmain_con div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page .jl_smmain_con div.product div.images,
.woocommerce-page div.product div.images {
    float: none;
    margin-bottom: 0;
    width: auto;
}
.woocommerce-page #payment ul.payment_methods {
    padding-right: 0;
    padding-left: 0;
    border-bottom-color: rgba(0, 0, 0, .05);
    margin-bottom: 20px;
}
.woocommerce-page #payment ul.payment_methods li {
    padding: 0;
    border: none;
    color: inherit;
    list-style: none;
    line-height: 1.7;
}
.woocommerce-page #payment ul.payment_methods li label {
    cursor: pointer;
}
.woocommerce-page #payment div.form-row {
    padding: 0px;
}
.woocommerce-page #payment #place_order,
.woocommerce-checkout .checkout_coupon button.button{
    font-family: var(--jl-menu-font);
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    display: block;
    background-color: var(--jl-main-color);
    color: #fff !important;
    display: flex;
    height: 48px;
    padding: 0px 30px;
    margin-top: 0px;
    -o-transition: .25s;
    -ms-transition: .25s;
    -moz-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    border: 0px;
    outline: none;
    border-radius: var(--jl-button-radius);
}
.woocommerce-page #payment #place_order:hover,
.woocommerce-checkout .checkout_coupon button.button:hover{
    background-color: var(--jl-btn-bg) !important;
}
.woocommerce-page #payment div.payment_box {
    background-color: var(--jl-post-line-color);
}
.woocommerce-page #payment div.payment_box:before {
    border: 1em solid var(--jl-post-line-color);
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
}
.woocommerce .woocommerce-error strong {
    color: var(--jl-txt-color);
}
.select2-container--default .select2-results>.select2-results__options, .select2-container--default .select2-search--dropdown .select2-search__field{
    color: #000;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: var(--jl-txt-color);
}
/* checkout */

.woocommerce-page .checkout-col {
    display: block;
    float: left;
}
.woocommerce-page .checkout-col.col-left {
    padding-right: 0%;
    width: 100%;
}
.woocommerce-page .checkout-col.col-right {
    padding: 0px;
    width: 100%;
    border: 0px;
    margin-top: 20px;
}
.woocommerce-checkout .checkout-col.col-left .col2-set > * {
    width: 48%;
    max-width: 48%;
    padding: 0px;
}
/* cart page */

.woocommerce-cart.woocommerce-page .woocommerce {
    position: relative;
    display: block;
}
.woocommerce-page.woocommerce-cart .woocommerce-cart-form,
.woocommerce-page.woocommerce-cart .cart-collaterals {
    display: block;
    float: left;
}
.woocommerce-page.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
    margin-top: 50px;
}
.woocommerce-page.woocommerce-cart .cart-subtotal td,
.woocommerce-page.woocommerce-cart .order-total td {
    text-align: right;
}
.woocommerce-page.woocommerce-cart .woocommerce-cart-form {
    padding-right: 0px;
    width: 100%;
}
.woocommerce-page.woocommerce-cart .cart-collaterals {
    width: 100%;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    font-family: var(--jl-menu-font);
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    background-color: var(--jl-main-color);
    color: #fff !important;
    display: inline-flex;
    height: 48px;
    padding: 0px 30px !important;
    margin-top: 0px;
    margin-bottom: 0px;
    transition: .25s !important;
    border: 0px;
    outline: none;
    border-radius: var(--jl-button-radius);
    width: auto;
    text-decoration: none !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: var(--jl-btn-bg) !important;
}
.woocommerce-cart table.cart img {
    width: 100px;
    height: auto;
    border-radius: 0px;
}
.woocommerce a.remove {
    position: relative;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 0;
    font-weight: lighter;
    font-size: 0 !important;
    line-height: 0 !important;
    -webkit-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -webkit-box-shadow: inset 0 -1px 0 transparent !important;
    -moz-box-shadow: inset 0 -1px 0 transparent !important;
    box-shadow: inset 0 -1px 0 transparent !important;
}
.woocommerce a.remove:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: '\e906';
    text-align: center;
    font-weight: 400;
    font-size: 11px;
    font-family: 'jl_font';
    line-height: 24px;
}
.woocommerce-page .woocommerce-MyAccount-navigation ul li {
    padding: 0px;
    font-weight: 400;
}
.woocommerce-page .woocommerce-MyAccount-navigation ul li a:hover {
    text-decoration: none !important;
}
/* shop and wishlist table */

.woocommerce table.shop_table {
    border-collapse: collapse;
    position: relative;
}
.woocommerce table.shop_table tr,
.woocommerce table.wishlist_table tr {
    border-bottom: 1px solid #e6e6e6;
}
.woocommerce table.shop_table tbody tr:first-child td,
.woocommerce table.wishlist_table tr:first-child td {
    border-top: none;
}
.woocommerce-cart .woocommerce table.shop_table td,
.woocommerce table.wishlist_table td {
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
}
.woocommerce-cart .cart-collaterals .cart_totals tr td {
    text-align: right;
}
.woocommerce-cart .woocommerce table.shop_table td.product-name,
.woocommerce table.wishlist_table td.product-name {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
    font-size: 1rem;
}
.woocommerce-page .product-name a,
.woocommerce table.wishlist_table td.product-name a {
    border: 0px;
    -webkit-box-shadow: inset 0 -1px 0 transparent !important;
    -moz-box-shadow: inset 0 -1px 0 transparent !important;
    box-shadow: inset 0 -1px 0 transparent !important;
}
.woocommerce-cart .woocommerce table.shop_table td.product-thumbnail,
.woocommerce table.wishlist_table td.product-thumbnail {
    padding: 15px 0;
    min-width: 80px;
    max-width: 80px;
}
.woocommerce-page.woocommerce-cart table.shop_table thead *:not(.product-name),
.woocommerce table.wishlist_table td:not(.product-name) {
    text-align: right;
}
.woocommerce .order-total {
    text-transform: uppercase;
    font-size: 1rem !important;
}
.woocommerce .order-total * {
    font-size: inherit !important;
}
.woocommerce-cart .woocommerce table.shop_table tbody tr:first-child td {
    border-width: 0;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item td.product-name {
    text-align: left;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item td.product-name a {
    color: var(--jl-single-link-color);
    text-decoration: none !important;
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
}
.woocommerce-cart .woocommerce table.cart tr.cart_item td.product-name a:hover{
    background: transparent;
    color: var(--jl-main-color);
}
.woocommerce-cart .woocommerce table.cart tr.cart_item td.product-thumbnail {
    width: 86px;
    padding-right: 28px;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item td.product-thumbnail a {
    display: block;
    border-bottom: 0px;
    -webkit-box-shadow: inset 0 0px 0 var(--jl-single-color);
    box-shadow: inset 0 0px 0 var(--jl-single-color);
}
.woocommerce-cart .woocommerce table.cart tr.cart_item td.product-remove {
    padding: 0 5px;
    text-align: center;
    width: 50px;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item td.product-remove a {
    padding-left: 0px;
    display: inline-block;
    position: relative;
}
table.cart tr.cart_item td.product-remove a:hover {
    background: transparent;
}
table.cart tr.cart_item td.product-remove a {
    color: var(--jl-txt-color);
    font-size: 0;
    line-height: 1;
    display: block !important;
}
table.cart tr.cart_item td.product-remove a:before {
    content: '\e906';
    color: var(--jl-txt-color);
    font-family: 'jl_font';
    font-size: 12px;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item td {
    padding: 10px 0;
    vertical-align: middle;
    text-align: right;
}
.woocommerce-cart .woocommerce-cart-form .actions {
    padding-top: 20px;
    padding-right: 0 !important;
    padding-left: 0 !important;
    border-top-width: 0;
}
.woocommerce-cart .woocommerce-cart-form .actions button.button {
    display: block;
    float: right;
    opacity: 1;
}
.woocommerce-cart .woocommerce-cart-form .actions .coupon {
    display: block;
    margin-bottom: 10px;
}
.woocommerce-cart.woocommerce-page .woocommerce-cart-form .coupon input.input-text {
    display: block;
    float: left;
    margin: 0 !important;
    margin-bottom: 10px;
    padding: 0 0 0 20px !important;
    width: 200px !important;
    border: 1px solid #dfdfdf !important;
    background-color: #fff !important;
    line-height: 40px !important;
    height: 40px;
}
.woocommerce-cart.woocommerce-page .woocommerce-cart-form .coupon button {
    display: block;
    float: left;
    background-color: #000;
    color: #fff;
    line-height: 40px !important;
    margin-left: 10px;
    font-size: 13px;
    padding: 0px 40px;
}
.woocommerce-cart.woocommerce-page .woocommerce-cart-form .coupon button:hover {
    background-color: var(--jl-btn-bg);
    color: #fff;
}
.woocommerce-cart .return-to-shop {
    display: block;
    text-align: center;
}
.woocommerce-cart .cart-empty {
    margin-top: 0;
    text-align: center;
    font-style: italic;
}
.woocommerce-cart .return-to-shop a.button {
    font-family: var(--jl-menu-font);
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    background-color: var(--jl-main-color);
    color: #fff !important;
    display: inline-flex;
    height: 48px;
    padding: 0px 30px !important;
    margin-top: 0px;
    margin-bottom: 0px;
    transition: .25s !important;
    border: 0px;
    outline: none;
    border-radius: var(--jl-button-radius);
    width: auto;
    text-decoration: none !important;
}
.woocommerce table.wishlist_table tbody {
    font-size: 13px;
}
.woocommerce table.wishlist_table tbody td {
    padding-right: 20px;
    padding-left: 20px;
    border: none !important;
}
.woocommerce table.wishlist_table {
    font-size: 100%;
}
.woocommerce table.wishlist_table tbody td.product-price del {
    margin-bottom: 4px;
    color: #aaa;
    font-size: .9rem;
}
.woocommerce table.wishlist_table tbody td.product-price ins {
    display: block;
    text-decoration: none;
}
.woocommerce table.wishlist_table thead th {
    padding: 0 20px;
    border: none !important;
    text-align: center;
    letter-spacing: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: 44px;
}
.yith-wcwl-share h4.yith-wcwl-share-title {
    color: #aaa;
    margin: 0;
}
.woocommerce .wishlist_table td.product-add-to-cart a {
    margin: 0;
    padding: 0 20px;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    line-height: 44px;
}
.woocommerce table.wishlist_table tfoot td {
    border-top: 0;
}
.wishlist-title {
    display: block;
    margin-bottom: 35px;
    text-align: center;
    font-style: italic;
}
.wishlist-title h2 {
    display: inline-block;
    border-bottom: 4px solid rgba(0, 0, 0, .07);
    line-height: 1;
}
.wishlist_table tr td.product-stock-status span {
    font-style: italic;
}
.wishlist_table tr td.product-stock-status span.wishlist-in-stock {
    color: #69a266;
    font-size: .85rem;
}
.wishlist_table tr td.product-stock-status span.wishlist-out-of-stock {
    color: #000;
}
.wishlist-title h2 {
    margin: 0 !important;
    padding: 0;
}
.yith-wcwl-share {
    margin-top: 40px;
    display: flex;
    display: flex;
    display: -webkit-flex;
    align-items: center;
}
.yith-wcwl-share ul {
    list-style: none;
    margin-left: 20px;
    display: flex;
    display: -webkit-flex;
    margin-left: auto;
}
.yith-wcwl-share .share-button {
    display: flex;
    display: -webkit-flex;
    color: #fff;
    margin-right: 5px;
    text-align: center;
}
.yith-wcwl-share .share-button a {
    display: block;
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-size: 18px;
    background-color: #333;
    color: #fff !important;
    text-decoration: none !important;
    -webkit-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
}
.yith-wcwl-share .share-button a:hover {
    opacity: .7;
}
td.wishlist-empty {
    font-size: 16px;
}
.yith-wcwl-share .share-button a.facebook {
    background-color: #568fce;
}
.yith-wcwl-share .share-button a.twitter i:before {
    content: '\64';
}
.yith-wcwl-share .share-button a.twitter {
    background-color: #27c2f5;
}
.yith-wcwl-share .share-button a.pinterest i:before {
    content: '\66';
}
.yith-wcwl-share .share-button a.pinterest {
    background-color: #f7333e;
}
.yith-wcwl-share .share-button a.email i:before {
    content: '\50';
}
.yith-wcwl-share .share-button a.email {
    background-color: #ffa100;
}
.yith-wcwl-share .share-button a.whatsapp i:before {
    content: '\5a';
}
.yith-wcwl-share .share-button a.whatsapp {
    background-color: #0ce643;
    ;
}
.hidden-title-form,
.wishlist-title a.show-title-form {
    display: none;
}
.hidden-title-form {
    margin-bottom: 35px;
    text-align: center;
}
.hidden-title-form > * {
    vertical-align: top;
}
.hidden-title-form input[type="submit"],
.hide-title-form.button {
    line-height: 42px;
    height: 42px;
}
.wishlist-title-with-form {
    -webkit-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1);
}
.wishlist-title-with-form:hover {
    color: #000;
}
/* single page */

.jl-wc-wrap .jl-wc-img,
.jl-wc-wrap .jl-wc-dec {
    width: 50%;
}
.woocommerce div.product div.summary {
    float: none;
    margin-bottom: 0;
    padding-left: 0px;
    width: 100%;
}
.woocommerce div.product div.summary .woocommerce-product-details__short-description{
    margin-bottom: 30px;
}
.woocommerce div.product .product_title{
    font-size: 35px;
}
h1.product_title {
    margin-bottom: 20px;
}
.woocommerce.single .summary .price .woocommerce-Price-currencySymbol {
    margin-right: 4px;
}
.woocommerce-product-details__short-description {
    display: block;
    margin-bottom: 0px;
}
.woocommerce-product-details__short-description p {
    font-weight: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}
.woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0px;
}
.woocommerce .product .summary .price {
    margin-bottom: 13px;
    white-space: nowrap;
    font-size: 23px;
    line-height: 1.2;
    font-family: var(--jl-menu-font);
}
.woocommerce .summary .price * {
    text-decoration: none;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
}
.woocommerce.single-product .product .summary .price del {
    margin-right: 10px;
    color: #555;
    text-decoration: line-through;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: inherit;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    font-weight: inherit;
}
.woocommerce button.button:disabled[disabled]:hover {
    background: #000;
    color: #fff;
    cursor: pointer;
}
.woocommerce-cart .woocommerce-cart-form .actions button.button,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled[disabled] {
    font-family: var(--jl-menu-font);
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    display: block;
    background-color: var(--jl-main-color);
    color: #fff !important;
    display: flex !important;
    height: 40px;
    padding: 0px 30px;
    margin-top: 0px;
    -o-transition: .25s;
    -ms-transition: .25s;
    -moz-transition: .25s;
    -webkit-transition: .25s;
    transition: .25s;
    border: 0px;
    outline: none;
    border-radius: var(--jl-button-radius);
}
.woocommerce-cart .woocommerce-cart-form .actions button.button:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled[disabled]:hover {
    background-color: var(--jl-btn-bg) !important;
}
/* single rating */

.woocommerce.single-product .summary .woocommerce-product-rating {
    position: relative;
    display: flex;
    display: -webkit-flex;
    margin-bottom: 15px;
    align-items: center;
}
.woocommerce.single-product .summary .woocommerce-product-rating > * {
    float: left;
}
.woocommerce.single-product .product .summary .star-rating {
    margin: 0 10px 0 0;
    padding: 0;
    width: auto;
    height: auto;
    letter-spacing: 0;
    font-size: 0;
    display: inline;
}
.woocommerce.single-product .product .summary .star-rating:before,
.woocommerce.single-product .product .summary .star-rating span:before {
    margin: 0;
    letter-spacing: 3px;
    font-size: 14px;
    line-height: 1;
}
.woocommerce.single-product .product .summary .woocommerce-review-link {
    font-size: 15px;
    font-family: var(--jl-menu-font);
}
.product_meta {
    margin-top: 30px;
    font-weight: 500;
    font-family: var(--jl-menu-font);
    font-size: 12;
    font-weight: var(--jl-cat-font-weight);
    letter-spacing: var(--jl-cat-font-space);
    text-transform: var(--jl-cat-transform);
}
.product_meta > * {
    display: block;
    clear: both;
    margin-top: 5px;
}
.product_meta a {
    text-transform: uppercase;
    text-transform: none;
    -webkit-transition: color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: color .3s cubic-bezier(0.32, 0.74, 0.57, 1);
}
.product_meta a:first-child {
    margin-left: 10px;
}
/* stock */

.woocommerce div.product p.stock {
    margin-bottom: 20px;
    color: #555;
    font-style: italic;
}
.woocommerce div.product p.stock.out-of-stock {
    color: #000;
}
.woocommerce .single-product-content span.onsale {
    left: 15px;
    top: 15px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
}
.woocommerce .single-product-content span.onsale.percent {
    top: 10px;
    left: 10px;
    padding: 0;
    width: 70px;
    height: 70px;
    white-space: nowrap;
    font-size: 20px;
    line-height: 70px;
}
/* product quantity */

.woocommerce div.product form.cart div.quantity {
    float: left;
    margin: 0 15px 0 0;
    border-radius: var(--jl-button-radius);
}
.woocommerce .quantity {
    position: relative;
    padding-right: 30px;
    padding-left: 30px;
    width: 80px;
    height: 40px;
    border: 1px solid var(--jl-post-line-color);
    line-height: 40px;
    display: inline-block;
    font-family: var(--jl-menu-font);
    border-radius: var(--jl-button-radius);
}
.woocommerce input[type="number"]::-webkit-inner-spin-button,
.woocommerce input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
.pswp {
    z-index: 9999;
}
.woocommerce .quantity .qty {
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    left: 30px;
    margin: auto;
    padding: 0px;
    width: 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    line-height: 34px;
}
.woocommerce div.product form.cart .quantity {
    width: 100px;
}
.woocommerce div.product form.cart .quantity .qty {
    width: 40px;
    outline: none;
}
.jlb-btn {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 30px;
    height: 38px;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}
.jlb-btn.up {
    right: 0;
    left: auto;
}
.jlb-btn:before {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 10px;
    display: block;
    width: 10px;
    border-top: 2px solid #555;
    content: '';
}
.jlb-btn.up:after {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 10px;
    display: block;
    width: 10px;
    border-top: 2px solid #555;
    content: '';
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.woocommerce div.product form.cart .button {
    padding: 0 30px;
    background-color: #000;
    color: #fff;
    white-space: nowrap;
    line-height: 40px;
    height: 40px;
    font-size: 12px;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart .button:focus {
    background-color: var(--jl-btn-bg);
}
.woocommerce div.product form.cart .variations {
    margin-bottom: 30px;
}
.woocommerce div.product form.cart .wc-no-matching-variations {
    border: none;
    background-color: rgba(0, 0, 0, .015);
    font-size: 12px;
}
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.product-buttons .add-to-cart a:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce .product-buttons .add-to-cart a:hover {
    background-color: var(--jl-btn-bg);
    color: #fff;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    line-height: 22px;
}
.woocommerce form .form-row .woocommerce-input-wrapper {
    width: 100%;
}
.woocommerce-grouped-product-list.group_table{
    border-color: transparent !important;
}
.woocommerce-grouped-product-list.group_table .woocommerce-grouped-product-list-item td{
    vertical-align: middle !important;
}
.woocommerce-grouped-product-list.group_table .woocommerce-grouped-product-list-item__label label{
    margin-bottom: 0px;
}
.woocommerce-grouped-product-list.group_table .woocommerce-grouped-product-list-item__label a{
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
}
.woocommerce td.product-name dl.variation{
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    align-items: center;
}
.woocommerce td.product-name dl.variation dd p{
    font-size: inherit;
}
.woocommerce td.product-name dl.variation dd{
    margin-right: 10px;
}
/* product variable */

.woocommerce div.product form.cart .variations .label{
    padding: 0px;
    font-size: 13px;
}
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations tr {
    display: block;
    clear: both;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    width: 100%;
}
.woocommerce div.product form.cart .variations td.label {
    margin-bottom: 4px;
    padding-right: 0;
}
.woocommerce div.product form.cart .variations tr {
    margin-bottom: 10px;
}
.woocommerce div.product form.cart .variations tr:last-of-type {
    margin-bottom: 0;
}
.woocommerce div.product form.cart .variations select {
    margin: 0;
    padding: 10px;
    border-color: rgba(0, 0, 0, .05);
    line-height: 1.2;
}
.woocommerce div.product form.cart .variations option {
    display: block;
    white-space: normal;
    font-size: 14px;
    line-height: 34px;
}
.woocommerce div.product form.cart .reset_variations {
    display: flex;
    align-items: center;
    clear: both;
    margin-top: 10px;
    width: 100%;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--jl-main-color) !important;   
}
.woocommerce div.product form.cart .reset_variations:before{
    content: '\e906';
    font-family: jl_font !important;
    font-size: 7px;
    margin-right: 3px;
}
.woocommerce-variation-description{
    margin-bottom: 20px;
}
.woocommerce div.product form.cart .reset_variations:hover {
    color: #000;
}
.woocommerce div.product .summary .woocommerce-variation-price .price {
    position: relative;
    display: block;
    margin-top: -10px;
    margin-bottom: 20px;
}
/* product wishlist */

.woocommerce div.product .summary .yith-wcwl-add-to-wishlist,
.woocommerce .single-product-wrap div.product > .yith-wcwl-add-to-wishlist,
.woocommerce div.product .woocommerce-tabs .yith-wcwl-add-to-wishlist {
    position: relative;
    display: block;
    clear: both;
    margin-top: 0;
    padding-top: 0px;
}
.woocommerce .single-product-wrap div.product > .yith-wcwl-add-to-wishlist {
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
    padding: 2% 3%;
    max-width: 900px;
    background-color: rgba(0, 0, 0, .015);
}
.woocommerce div.product .summary .yith-wcwl-add-to-wishlist .feedback,
.woocommerce .single-product-wrap div.product > .yith-wcwl-add-to-wishlist .feedback,
.woocommerce div.product .woocommerce-tabs .yith-wcwl-add-to-wishlist .feedback {
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
    width: 100%;
    color: #555;
    font-style: italic;
    font-size: .94rem;
}
.woocommerce div.product .summary .yith-wcwl-add-to-wishlist a,
.woocommerce .single-product-wrap div.product > .yith-wcwl-add-to-wishlist a,
.woocommerce div.product .woocommerce-tabs .yith-wcwl-add-to-wishlist a {
    position: relative;
    display: block;
    height: auto;
    text-align: left;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
}
.jl-wc-wrap.single-product-content {
    width: 100%;
    display: flex;
    gap: 40px;
}
.woocommerce div.product .summary .yith-wcwl-add-to-wishlist a:hover,
.woocommerce .single-product-wrap div.product > .yith-wcwl-add-to-wishlist a:hover,
.woocommerce div.product .woocommerce-tabs .yith-wcwl-add-to-wishlist a:hover {
    color: #000;
}
.woocommerce div.product .summary .yith-wcwl-add-to-wishlist a:before,
.woocommerce .single-product-wrap div.product > .yith-wcwl-add-to-wishlist a:before,
.woocommerce .single-product-wrap .woocommerce-message,
.woocommerce .single-product-wrap .woocommerce-error,
.woocommerce .single-product-wrap .woocommerce-info {
    margin-bottom: 60px;
}
.woocommerce div.product .woocommerce-tabs:after {
    display: table;
    content: '';
    clear: both;
}
/* single product tab */

.woocommerce div.product .woocommerce-tabs {
    width: 100%;
    position: relative;
    display: block;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    margin-bottom: 30px;
    padding: 0;
    border: none;
    z-index: 2;
    display: flex;
    gap: 30px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
    display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0;
    padding-left: 0;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: transparent !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 0;
    border-bottom: 2px solid transparent;
    font-weight: 800;
    font-size: 15px;
    line-height: 30px;
    font-family: var(--jl-menu-font);
    color: var(--jl-txt-color);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    text-decoration: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    border-color: currentColor;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) a:hover {
    color: var(--jl-txt-color);
}
.woocommerce div.product .woocommerce-tabs .panel {
    margin-bottom: 0;
}
.woocommerce table.shop_attributes {
    padding: 2%;
    border: 1px solid rgba(0, 0, 0, .05);
}
.woocommerce table.shop_attributes td,
.woocommerce table.shop_attributes tr,
.woocommerce table.shop_attributes th {
    border: none;
}
.woocommerce table.shop_attributes th {
    font-size: .9rem;
}
.woocommerce table.shop_attributes td {
    padding-left: 20px;
}
.woocommerce #reviews #comments h2 {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0;
    text-align: left;
}
.woocommerce #reviews #comments ol.commentlist{
    padding: 0px;
    width: 100%;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-row-gap: 30px;
}
.woocommerce #reviews #comments ol.commentlist::before, .woocommerce #reviews #comments ol.commentlist::after{
    display: none;
}
.woocommerce #reviews #comments ol.commentlist li{
    margin-bottom: 0px;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar{
    border: 0px;
    padding: 0px;
    width: 50px;
    border-radius: 100px;
    position: static;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text{
    margin: 0 0 0 65px;
    border: 0px;
    padding: 0px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{
    margin-bottom: 5px;
}
.woocommerce #reviews #comments ol.commentlist .description > *:last-child{
    margin-bottom: 0px;
}
.woocommerce #reviews #comments ol.jl_commentlist li {
    margin-bottom: 40px;
}
.woocommerce #reviews #comments ol.jl_commentlist li:last-child {
    margin-bottom: 0;
}
.woocommerce #reviews #comments ol.jl_commentlist li .comment-text {
    margin-bottom: 0;
    margin-left: 65px;
    padding: 10px 20px;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #f6f6f6;
}
.woocommerce #reviews #comments ol.jl_commentlist li .comment-text .star-rating {
    position: absolute;
    top: 15px;
    right: 20px;
    margin: 0;
}
.woocommerce #reviews #comments ol.jl_commentlist li img.avatar {
    display: block;
    margin-top: 5px;
    padding: 0;
    width: 50px;
    height: 50px;
    border: none;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    object-fit: cover;
    -webkit-object-fit: cover;
}
.woocommerce #reviews #comments ol.jl_commentlist li .comment-text p.meta {
    margin-bottom: 7px;
    font-size: inherit;
    line-height: 1.2;
}
.woocommerce #reviews #comments ol.jl_commentlist li .comment-text p.meta .woocommerce-review__author {
    font-size: .75rem;
}
.woocommerce #reviews #comments ol.jl_commentlist li .comment-text p.meta time {
    color: #aaa;
    font-style: italic;
    font-size: .75rem;
}
.woocommerce #comments {
    display: block;
    margin-bottom: 45px;
}
.woocommerce #review_form form > *, .woocommerce #review_form #respond p{
    margin-bottom: 20px;
}
.woocommerce #review_form label {
    display: block;
    margin-bottom: 10px;
}
.woocommerce .comment-form-cookies-consent {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    width: 100%;
    padding-top: 0px;
}
.woocommerce #review_form .comment-form-cookies-consent label {
    margin-bottom: 0;
}
.woocommerce #review_form #respond .form-submit input {
    padding: 0 40px;
    line-height: 42px;
}
.woocommerce #review_form #respond textarea {
    margin-top: 0;
    margin-bottom: 0;
}
.woocommerce #review_form #respond .form-submit {
    margin-top: 0px;
    margin-bottom: 0px;
}
.woocommerce #review_form .comment-form-rating .stars {
    margin-bottom: 0;
    font-size: 15px;
}
.comment-form-rating {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}
.comment-form-rating label {
    margin-right: 20px;
}
.comment-form-rating p.stars {
    line-height: 1;
}
.woocommerce #review_form .comment-form-rating a {
    color: inherit !important;
}
.woocommerce #review_form .comment-reply-title {
    display: block;
    margin-bottom: 10px;
    padding-right: 0;
    padding-left: 0;    
}
.woocommerce #review_form #commentform {
    text-align: left;
}
.woocommerce-noreviews {
    font-style: italic;
    margin-bottom: 0px;
}
.woocommerce-message .button.wc-forward {
    padding: 0 30px !important;
}
.woocommerce-message .button.wc-forward:hover {
    color: #fff !important;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #000;
    color: #fff !important;
    text-indent: 0;
    font-size: 0 !important;
    -webkit-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:hover {
    opacity: .7;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
    display: none;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before {
    top: 0;
    left: 0;
    margin: auto;
    padding-left: 2px;
    width: 40px;
    height: 42px;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    content: '\e92a';
    text-align: center;
    letter-spacing: 0;
    font-style: normal;
    font-size: 15px;
    font-family: 'jl_font';
    line-height: 42px;
}
.woocommerce #review_form #respond .comment-form-comment{
    max-width: 787px;
}
.woocommerce #reviews #comment{
    height: 165px;
}
.woocommerce #review_form #respond .form-submit input,
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce a.button.alt{
    background-color: var(--jl-main-color) !important;
}
.woocommerce #review_form #respond .form-submit input:hover,
.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce a.button.alt:hover{
    background-color: var(--jl-btn-bg) !important;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger img {
    opacity: 0 !important;
}
.woocommerce-product-gallery__wrapper .yith-wcwl-add-to-wishlist {
    display: none;
}
/* related product */
.products.related{
    margin-top: 40px;
}
.products.related,
.upsells.products,
section.cross-sells {
    position: relative;
    display: flex;    
    flex-direction: column;    
    width: 100%;
}
.products.related .products,
.upsells.products .products,
section.cross-sells .products {
    text-align: left;
}
.woocommerce .cross-sells {
    position: relative;
    display: block;
    margin-top: 50px;
    float: left;
    width: 100%;
}
.upsells.products {
    position: relative;
    display: block;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.related.related > h2,
.upsells.products > h2,
.woocommerce .cross-sells > h2 {
    position: relative;
    display: inline-block;
    clear: both;
    margin-bottom: 30px;
}
/* wc header */

.woocommerce .breadcrumb-wc {
    text-align: center;
}
.single-product.woocommerce .breadcrumb-wc {
    margin-bottom: 20px;
    text-align: left;
}
.woocommerce .woocommerce-products-header {
    display: block;
    margin-bottom: 35px;
}
.woocommerce-page h1.page-title {
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-size: 40px;
}
.woocommerce .term-description {
    display: block;
    margin-top: 25px;
    margin-right: auto;
    margin-left: auto;
    max-width: 700px;
    color: #555;
    font-style: italic;
}
/* wc sidebar */

.wc-area {
    position: relative;
    display: block;
    padding-bottom: 20px;
}
.wc-area .pagination-wrap {
    margin-top: 5px;
    margin-bottom: 40px;
}
.wc-area.has-sidebar .jlc-container {
    display: block;
    float: left;
    width: 66.777%;
}
.woocommerce.widget {
    position: relative;
    display: block;
}
.widget_product_tag_cloud .tagcloud {
    position: relative;
    display: block;
    overflow: hidden;
}
.woocommerce .widget_rating_filter ul li a {
    display: block;
    margin-bottom: 10px;
}
.woocommerce .widget_rating_filter ul li:last-child a {
    margin-bottom: 0;
}
.widget_layered_nav ul:not(.children) > li:last-child a {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.widget_layered_nav .woocommerce-widget-layered-nav-list__item {
    margin-bottom: 0px;
}
.widget_layered_nav li:not(.children):last-child {
    margin-bottom: 0;
}
/* price filter */

.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: 3px;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #333;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #aaa;
}
.widget_price_filter .price_label {
    text-align: left;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.5;
}
.woocommerce .widget_price_filter .price_slider_amount {
    clear: both;
    margin-top: 20px;
    text-align: left;
    font-size: inherit;
    line-height: 0;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
    float: right;
    padding: 0 10px;
    border: 1px solid;
    color: inherit;
    font-size: .875rem;
    line-height: 1.7;
    border: 0px;
}
.woocommerce .widget_price_filter .price_slider_amount .button:hover {
    background-color: var(--jl-btn-bg);
    color: #fff;
}
.woocommerce.widget .count {
    color: #aaa;
}
.woocommerce-product-search {
    position: relative;
    display: block;
}
.woocommerce ul.product_list_widget li {
    position: relative;
    display: block;
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 0;
}
.woocommerce ul.product_list_widget li .product-title {
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
}
.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
    padding-left: 85px;
    min-height: 70px;
}
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    margin-left: 0;
    width: 70px;
    object-fit: cover;
    -webkit-object-fit: cover;
}
#mini-cart .woocommerce ul.product_list_widget li {
    margin-bottom: 20px;
}
.widget_products.woocommerce ul.product_list_widget li {
    padding-right: 80px;
    padding-left: 0;
    min-height: 70px;
}
.widget_products.woocommerce ul.product_list_widget li img {
    margin: 0;
    width: 70px;
}
.topbar-cart .woocommerce-mini-cart__buttons {
    display: block;
    clear: both;
    overflow: hidden;
}
.topbar-cart .woocommerce ul.cart_list li {
    padding-left: 0;
}
.woocommerce-mini-cart__buttons .button.checkout:hover {
    color: #fff !important;
    background: var(--jl-main-color);
}
.woocommerce ul.cart_list li:last-child,
.woocommerce ul.product_list_widget li:last-child {
    margin-bottom: 0;
}
.woocommerce ul.product_list_widget li .star-rating {
    display: block;
}
.woocommerce ul.product_list_widget li .star-rating:before,
.woocommerce ul.product_list_widget li .star-rating span:before {
    font-size: .75rem !important;
}
.woocommerce ul.product_list_widget li ins {
    text-decoration: none !important;
}
.woocommerce ul.product_list_widget li .reviewer {
    color: #555;
    font-style: italic;
    font-size: .875rem;
}
/* mini cart */

.woocommerce-mini-cart-item a.remove.remove_from_cart_button {
    position: absolute;
    top: 0 !important;
    right: 0;
    left: auto !important;
    z-index: 99;
    display: block;
    margin: 0;
    color: var(--jl-sub-menu-color) !important;
    border-radius: 20px;
}
.woocommerce-mini-cart-item a.remove.remove_from_cart_button:hover {
    background: transparent !important;
}
.woocommerce.widget_shopping_cart .cart_list li {
    padding-left: 0 !important;
}
li.woocommerce-mini-cart-item a:not(.remove) {
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight) !important;
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    display: inline-block !important;
    font-size: 14px;
    line-height: 1.2;
    color: var(--jl-sub-menu-color) !important;
}
li.woocommerce-mini-cart-item a:not(.remove):hover {
    color: #000;
    text-decoration: none !important;
}
.woocommerce ul.product_list_widget .woocommerce-mini-cart-item .quantity {
    display: block;
    clear: both;
    margin-top: 5px;
    padding: 0;
    height: auto;
    border: none;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.2;
    color: var(--jl-sub-menu-color);
}
.topbar-cart ul.product_list_widget li {
    margin-bottom: 20px;
}
.woocommerce-mini-cart__total {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px !important;
    color: var(--jl-sub-menu-color);
    border-top: 1px solid var(--jl-sub-line-color);
    font-size: 14px;
    font-family: var(--jl-menu-font);
}
.woocommerce-mini-cart__total .woocommerce-Price-amount {
    float: right;
    line-height: 1.2;
    font-weight: 400 !important;
}
.woocommerce-mini-cart__total .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
    margin: 0 2px;
    vertical-align: top;
    line-height: 1.2;
}
.woocommerce-mini-cart__total strong,
.nav-cart p.woocommerce-mini-cart__empty-message {
    font-style: normal;
    line-height: 1.2;
    font-weight: 400;
}
.is-light-text .woocommerce-mini-cart__total {
    border-color: rgba(255, 255, 255, .25) !important;
}
.woocommerce-mini-cart__buttons {
    text-align: center;
    margin: 0px;
    padding: 0px;
    grid-gap: 10px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.woocommerce-mini-cart__buttons .button {
    display: block;
    float: left;
    margin-right: 3.9%;
    width: 48%;
    background-color: rgba(255, 255, 255, .15);
    -webkit-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1) !important;
    -moz-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1) !important;
    -ms-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1) !important;
    -o-transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1) !important;
    transition: all .3s cubic-bezier(0.32, 0.74, 0.57, 1) !important;
    margin-top: 0px !important;
}
.woocommerce-mini-cart__buttons .button.checkout {
    float: right;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    background-color: var(--jl-main-color) !important;
    color: #fff;
}
.woocommerce-mini-cart__buttons .button:not(.checkout) {
    background-color: var(--jl-main-color) !important;
    color: #fff !important;
}
.woocommerce-mini-cart__buttons .button:not(.checkout):before {
    position: inherit;
}
.woocommerce-mini-cart__buttons .button:not(.checkout):hover,
.woocommerce-mini-cart__buttons .button:not(.checkout):focus {
    background: var(--jl-main-color);
    color: #fff;
}
.woocommerce-mini-cart__empty-message {
    font-style: italic;
    margin-bottom: 0px;
    font-size: 14px;
}
.woocommerce table.shop_table tfoot td {
    text-align: right !important;
    color: var(--jl-txt-color);
}
.woocommerce table.shop_table tfoot tr:first-child th,
.woocommerce table.shop_table tfoot tr:first-child td {
    color: var(--jl-txt-color);
}
.woocommerce .woocommerce-customer-details address {
    padding: 20px;
    border-width: 1px !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-style: italic;
}
.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
    margin-top: 7px;
    font-weight: 700;
}
.woocommerce h2.woocommerce-order-details__title,
.woocommerce .woocommerce-customer-details .woocommerce-column__title {
    display: block;
    margin-top: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.woocommerce-order-overview {
    display: block;
    padding: 20px;
    background-color: #f6f6f6;
}
.woocommerce-thankyou-order-received {
    display: block;
    margin-bottom: 20px;
}
.is-light-text div.product .product-loop-content .price del {
    color: #f2f2f2;
}
.widget_product_categories .cat-item > a:before {
    display: inline-block;
    margin-right: 10px;
    width: 6px;
    height: 6px;
    border: 1px solid;
    border-radius: 50%;
    color: currentColor;
    content: '';
    vertical-align: middle;
    line-height: 1;
    opacity: .3;
}
.widget_product_categories .cat-item {
    position: relative;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: .75rem;
}
.widget_product_categories .cat-item .count {
    float: right;
}
/* shop the post */

.shopthepost.woocommerce span.onsale {
    padding: 0 12px;
    line-height: 26px;
}
.shopthepost.woocommerce span.onsale.percent {
    top: 5px;
    left: 5px;
    padding-right: 0;
    padding-left: 0;
    width: 44px;
    height: 44px;
    white-space: nowrap;
    font-size: 13px;
    line-height: 44px;
}
.shopthepost.woocommerce .woocommerce-loop-product__title {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
}
.shopthepost.woocommerce .product-thumb {
    margin-bottom: 12px;
}
.shopthepost.woocommerce .star-rating:before,
.shopthepost.woocommerce .star-rating span:before {
    font-size: 11px;
}
.shopthepost.woocommerce div.product .product-loop-content .price {
    font-size: .875rem;
}
.shopthepost.woocommerce .product-buttons .yith-wcwl-add-to-wishlist,
.shopthepost.woocommerce .product-buttons .add-to-cart a.button,
.shopthepost.woocommerce .woocommerce .product-buttons .add-to-cart a {
    width: 34px;
    height: 34px;
}
.shopthepost.woocommerce .product-buttons .yith-wcwl-add-to-wishlist a {
    line-height: 34px;
}
.shopthepost.woocommerce .product-buttons .yith-wcwl-add-to-wishlist a:before {
    font-size: 12px;
}
.shopthepost.woocommerce .product-buttons .yith-wcwl-wishlistaddedbrowse a:before,
.shopthepost.woocommerce .product-buttons .yith-wcwl-wishlistexistsbrowse a:before {
    font-size: 14px;
}
.shopthepost.woocommerce .product .star-rating {
    margin-bottom: 7px;
}
.shopthepost.woocommerce .product-buttons .add-to-cart a:before,
.shopthepost.woocommerce .woocommerce .product-buttons .add-to-cart a:before {
    font-size: 12px;
    line-height: 34px;
}
.shopthepost.woocommerce .products[class*='wc-col-'] {
    margin-right: -10px;
    margin-left: -10px;
}
.shopthepost.woocommerce .products[class*='wc-col-'] > .product {
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
}
.product-loop-content {
    position: relative;
    display: block;
}
.product-loop-content.content-grid {
    overflow: hidden;
    margin-bottom: -40px;
}
.product-loop-content.content-carousel {
    display: block;
    clear: both;
    padding-bottom: 10px;
    width: 100%;
}
.product-loop-content.content-carousel.product-pre-load {
    min-height: 30px;
}
.product-loop-content.content-carousel .slick-slide {
    margin-right: 10px;
    margin-left: 10px;
}
.product-loop-content.content-carousel .product {
    margin-bottom: 40px;
}
.product-loop-content.content-carousel .slick-list {
    margin-right: -10px;
    margin-left: -10px;
}
.woocommerce-page .single-inner {
    margin-bottom: 0;
}
.product-loop-content .slider-nav {
    top: 10px;
    right: 10px;
    margin: 0;
    width: 50px;
    height: 28px;
    font-size: 10px;
    line-height: 28px;
    opacity: 0;
}
.product-loop-content .slider-nav.prev {
    right: 62px;
    left: auto;
}
.product-loop-content:hover .slider-nav {
    opacity: .1;
}
.product-loop-content .slider-nav:hover {
    opacity: 1;
}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: 16.666667%;
    margin: 15px 15px 0px 0px;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    opacity: 1;
}
#mini-cart {
    position: absolute;
    top: -99999px;
    right: -20px;
    left: auto;
    z-index: 99;
    display: block;
    visibility: hidden;
    padding: 20px;
    min-width: 300px;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: opacity .3s cubic-bezier(0.32, 0.74, 0.57, 1);
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    pointer-events: none;
}
.woocommerce-page .woocommerce table.woocommerce-checkout-review-order-table .product-total {
    text-align: right;
}
.woocommerce-page .cart_totals table.shop_table_responsive th,
.woocommerce-page .cart_totals table.shop_table_responsive td {
    padding-right: 0;
    padding-left: 0;
}
.woocommerce table.woocommerce-checkout-review-order-table tbody .woocommerce-Price-amount.amount {
    font-size: 14px;
}
.woocommerce-page .cart_totals table.shop_table_responsive tr {
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
}
.entry-content .woocommerce tbody tr:nth-child(2n),
.comment-content .woocommerce tbody tr:nth-child(2n) {
    background: none;
}
.single-product-content .breadcrumb-inner {
    color: #aaa;
}
.single-product-content .breadcrumb-inner a {
    color: #333;
}
.products-outer {
    position: relative;
    display: block;
}
.woocommerce .select2-dropdown {
    font-size: .825rem;
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    left: auto;
    margin-top: -13px;
    height: 26px;
}
.woocommerce-page .select2-results {
    font-size: .875rem;
}
.woocommerce-page #ship-to-different-address {
    padding: 0;
    background-color: transparent;
    color: inherit;
}
#ship-to-different-address-checkbox {
    display: none;
    opacity: 0;
}
#ship-to-different-address-checkbox + span {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}
#ship-to-different-address-checkbox + span:before {
    margin: 0 7px 0 0;
    padding: 1px;
    width: .8rem;
    height: .8rem;
    border: 1px solid #777;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: transparent;
    content: "\2714";
    vertical-align: middle;
    font-size: 10px;
    line-height: 1;
    -webkit-transition: all .15s cubic-bezier(0.32, 0.74, 0.57, 1);
    -moz-transition: all .15s cubic-bezier(0.32, 0.74, 0.57, 1);
    -ms-transition: all .15s cubic-bezier(0.32, 0.74, 0.57, 1);
    -o-transition: all .15s cubic-bezier(0.32, 0.74, 0.57, 1);
    transition: all .15s cubic-bezier(0.32, 0.74, 0.57, 1);
}
.woocommerce #rememberme:checked + span:before,
#ship-to-different-address-checkbox:checked + span:before {
    border-color: #000;
    background-color: #000;
    color: #fff;
}
#ship-to-different-address label {
    cursor: pointer;
}
.woocommerce-account:not(.logged-in) .entry-content .woocommerce {
    margin-right: auto;
    margin-left: auto;
    padding: 50px 30px 20px 30px;
    max-width: 500px;
    border: 1px solid rgba(0, 0, 0, .07);
}
.woocommerce .lost_reset_password .woocommerce-form-row {
    width: 400px;
}
/*-------------------------------------------------------------------------------------
Block styles
-------------------------------------------------------------------------------------*/
.wp-block-pullquote.is-style-solid-color blockquote {
    max-width: 100%;
}
.wp-block-image figcaption {
    display: block;
    margin: 0;
    font-weight: 400;
    font-size: 13px;
    color: #0a0a0a;
    padding: 13px 0;
    text-align: center;

}
.jl_content .gallery{
    display: grid;
    margin-top: calc(2rem - 5px);
    margin-bottom: calc(2rem - 5px);
    text-align: center;
    grid-gap: 10px;
}
.gallery-item{
    position: relative;
}
.gallery-columns-1{
    grid-template-columns: repeat(1,minmax(0,1fr));
}

.gallery-columns-2{
    grid-template-columns: repeat(2,minmax(0,1fr));
}

.gallery-columns-3{
    grid-template-columns: repeat(3,minmax(0,1fr));
}

.gallery-columns-4{
    grid-template-columns: repeat(4,minmax(0,1fr));
}

.gallery-columns-5{
    grid-template-columns: repeat(5,minmax(0,1fr));
}

.gallery-columns-6{
    grid-template-columns: repeat(6,minmax(0,1fr));
}

.gallery-columns-7{
    grid-template-columns: repeat(7,minmax(0,1fr));
}

.gallery-columns-8{
    grid-template-columns: repeat(8,minmax(0,1fr));
}

.gallery-columns-9{
    grid-template-columns: repeat(9,minmax(0,1fr));
}
.blocks-gallery-grid figcaption,
.wp-block-gallery figcaption {
    font-size: 13px;
    text-align: center;
}
#gallery-1 img {
    border: 0px !important;
}
.wp-block-search .wp-block-search__input {
    height: 40px;
    background: transparent;
    color: var(--jl-txt-color);
    border: 1px solid var(--jl-post-line-color);
    border-radius: var(--jl-button-radius) 0px 0px var(--jl-button-radius);
}
.wp-block-archives-list{
    max-width: 350px;
}
.wp-block-archives-list a{
    display: flex !important;    
    text-decoration: none !important;
}
.wp-block-archives-list a:hover{
    text-decoration: none !important;
}
.wp-block-archives-list span{
    margin-right: 0px;
    margin-left: auto;
    background: #222;
    color: #fff;
    text-align: center;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    padding: 0px 5px;
    font-size: 80%;    
}
.wp-block-archives-list,
.wp-block-rss {
    padding: 0px !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp-block-archives-list li,
.wp-block-rss li {
    padding: 0px !important;
    margin: 0px !important;
    list-style: none;
    position: relative;
}
.wp-block-archives-list li a{
    font-size: 14px;
}
.wp-block-rss li a {
    font-size: 16px;
}
.wp-block-archives-list li a,
.wp-block-rss li a {
    padding-left: 15px;
    display: inline-flex;
    align-items: center;
    color: var(--jl-txt-color);
    font-family: var(--jl-menu-font);
    font-weight: var(--jl-cat-font-weight);
    transition: all 0.3s ease 0s !important;
}
.wp-block-archives-list li a:before,
.wp-block-rss li a:before {
    content: '';
    position: absolute;
    margin-left: -15px;
    border: solid currentcolor;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    vertical-align: middle;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.wp-block-categories{
    max-width: 350px;
    margin: 0px;
}
.wp-block-categories,
.wp-block-categories li,
.wp-block-categories ul{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.wp-block-categories ul{
    margin-top: 0px !important;
}
.wp-block-categories li{
    margin-bottom: 0 !important;
    list-style: none;
    font-family: var(--jl-menu-font);
    font-size: 14px;
    font-weight: var(--jl-cat-font-weight);
}
.wp-block-categories li a:before{
    content: '';
    position: absolute;
    margin-left: -15px;
    border: solid currentcolor;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    vertical-align: middle;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.wp-block-categories li a{
    display: flex;
    align-items: center;
    color: var(--jl-txt-color);
    text-decoration: none !important;
    transition: all 0.3s ease 0s !important;
}
.wp-block-categories li a:hover{
    text-decoration: none !important;
    color: var(--jl-main-color);
}
.wp-block-categories li a span{
    margin-right: 0px;
    margin-left: auto;
    background: #222;
    color: #fff;
    text-align: center;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    padding: 0px 5px;
    font-size: 80%;
}
.wp-block-search input[type='submit'],
.wp-block-search button {
    height: 40px;
    display: flex;
    padding: 0px 20px !important;
    background-color: var(--jl-main-color);
    color: #fff !important;
    border-width: 0px !important;
    margin: 0px;
    align-items: center;
    font-family: var(--jl-menu-font);
    font-size: var(--jl-button-font-size);
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    border-radius: 0px var(--jl-button-radius) var(--jl-button-radius) 0px;
}
.wp-block-cover,
.wp-block-cover-image {
    height: auto;
    color: #fff;
}
.wp-block-cover a {
    box-shadow: none !important;
    color: #fff !important;
}
.wp-block-cover a:hover {
    color: #fff !important;
    background: transparent !important;
}
.alignfull.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.alignfull.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
    padding-top: 56.25%;
    content: "";
    display: block;
}
@media only screen and (min-width: 768px) {
    .jl-has-sidebar .jl_content .alignfull {
        margin-left: 0px;
        margin-right: 0px;
        max-width: 100%;
    }
    body:not(.jl-has-sidebar) .jl_content .alignfull {
        margin-left: calc(50% - 0px - 50vw);
        margin-right: calc(50% - 0px - 50vw);
    }
    .jl_content .alignfull {
        margin-left: calc(50% - 55px - 50vw);
        margin-right: calc(50% - 55px - 50vw);
        width: auto;
        max-width: 1000%;
    }
    .jl-has-sidebar .jl_content .alignwide {
        margin-left: 0px;
        margin-right: 0px;
        max-width: 100%;
    }
    .jl_content .alignwide {
        margin-left: calc(25% - 25vw);
        margin-right: calc(25% - 25vw);
        width: auto;
        max-width: 1000%;
    }
    .jl_content .alignwide img,
    .jl_content .alignfull img {
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    .jl_content .alignwide iframe,
    .jl_content .alignfull iframe {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .jl_content .alignwide iframe,
    .jl_content .alignfull iframe {
        width: auto;
        height: auto;
    }
    .wp-block-media-text {
        display: block;
    }
    .wp-block-media-text figure {
        margin-bottom: 30px!important;
    }
    .wp-block-media-text .wp-block-media-text__content {
        padding: 0;
    }
}
.wp-block-group.has-background {
    padding: 20px;
    margin-bottom: 30px;
}
.wp-block-media-text {
    margin-bottom: 40px;
}
.wp-block-cover {
    margin-bottom: 30px;
}
.wp-block-cover-image-text,
.wp-block-cover-image-text a,
.wp-block-cover-text,
.wp-block-cover-text a,
section.wp-block-cover-image h2 {
    color: #fff !important;
}
.wp-block-cover-text a,
.wp-block-cover-text a:hover {
    background: transparent !important;
    border-width: 0px !important;
    box-shadow: none !important;
}
.wp-block-latest-comments footer {
    background: transparent;
}
.wp-block-latest-comments footer a {
    color: var(--jl-txt-color);
}
.wp-block-latest-comments footer a:hover{
    color: var(--jl-single-link-hcolor);
}
.wp-block-latest-comments{
    padding: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wp-block-latest-comments li {
    float: left;
    width: 100%;
    margin-bottom: 0px !important;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-link{
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
}
.wp-block-button{
    font-size: var(--jl-button-font-size);
}
.wp-block-button .wp-block-button__link,
.wp-block-file__button {
    -webkit-appearance: none;
    background: #000;
    color: #fff;
    text-decoration: none !important;
    border: 0;
    font-family: var(--jl-menu-font);    
    font-weight: var(--jl-button-font-weight);
    text-transform: var(--jl-button-transform);
    letter-spacing: var(--jl-button-space);
    height: auto;
    transition: all 0.3s ease 0s !important;
    border-bottom: 0px !important;
    -webkit-box-shadow: inset 0 -1px 0 transparent !important;
    -moz-box-shadow: inset 0 -1px 0 transparent !important;
    box-shadow: inset 0 -1px 0 transparent !important;
    border-radius: var(--jl-button-radius);
}
.wp-block-button .wp-block-button__link:hover,
.wp-block-file__button:hover {
    background: var(--jl-main-color);
    color: #fff !important;
}
.wp-block-button.is-style-squared .wp-block-button__link{
    border-radius: 0px;
}
.wp-block-button.is-style-outline .wp-block-button__link {
    color: var(--jl-txt-color) !important;
    border: 2px solid var(--jl-txt-color) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover{
    background: var(--jl-main-color) !important;
    color: #fff !important;
    border-color: var(--jl-main-color) !important;
}
.wp-block-file__button {
    padding: 12px 30px;
}
.wp-block-button .wp-block-button__link:hover,
.wp-block-file__button:hover,
.wp-block-file .wp-block-file__button:hover {
    text-decoration: none !important;
    color: #fff !important;
    opacity: 1;
}
.is-style-outline .wp-block-button__link {
    background: none!important;
    border-style: solid!important;
    border-width: 1px!important;
    color: #000;
}
.is-style-outline .wp-block-button__link:hover {
    color: #fff !important;
    background: #000 !important;
}
.content_single_page li,
.post_content li {
    padding-left: 0px;
    margin-bottom: .5em;
}
.content_single_page ul ul,
.content_single_page ul ol,
.content_single_page ol ol,
.content_single_page ol ul,
.post_content ul ul,
.post_content ul ol,
.post_content ol ol,
.post_content ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0;
}
.has-medium-font-size {
    font-size: 20px !important;
}
.has-large-font-size {
    font-size: 33px !important;
}
p.has-drop-cap:not(:focus):first-letter {
    font-size: 70px;
    font-weight: 600;
    margin-top: 10px;
}
.wp-block-embed:not(.is-type-video) > div {
    display: inline-block;
}
.wp-block-embed.is-type-video {
    text-align: center;
}
.wp-block-embed-youtube .wp-block-embed__wrapper {
    position: relative;
}
.wp-block-embed-youtube .wp-block-embed__wrapper:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.wp-block-embed.alignleft,
.wp-block-embed.alignright {
    max-width: 520px;
}
.wp-block-embed.wp-block-embed-facebook.alignleft,
.wp-block-embed.wp-block-embed-facebook.alignright {
    max-width: 350px;
}
.wp-block-embed.wp-block-embed-wordpress.alignleft,
.wp-block-embed.wp-block-embed-wordpress.alignright {
    max-width: 600px;
}
.wp-block-file a.wp-block-file__button {
    text-decoration: none !important;
    transition: all 0.3s ease 0s !important;
}
.wp-block-image,
.wp-block-embed,
.wp-block-gallery {
    margin-top: calc(30px + .25vw);
    margin-bottom: calc(30px + .25vw) !important;
    position: relative;
}
.wp-block-separator {
    border-top: 1px solid #E2E3E7;
    border-bottom: none;
    max-width: none;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}
.wp-block-separator.is-style-dots {
    border: none;
    width: 100%;
}
.wp-block-separator.is-style-wide {
    width: 100%;
}
.wp-block-categories.wp-block-categories-dropdown, .wp-block-archives-dropdown{
    margin-bottom: 20px;
}
.wp-block-archives.wp-block-archives-dropdown {
    margin-bottom: 30px;
}
.wp-block-calendar {
    margin-bottom: 20px;
    font-family: var(--jl-menu-font);
}
.wp-block-calendar a{
    font-weight: var(--jl-cat-font-weight);
}
.wp-block-categories {
    list-style: none;
    padding-left: 0;
}
.wp-block-categories li {
    list-style: none;
}
.wp-block-latest-posts {
    list-style: none;
    padding-left: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list:not(.is-grid){
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp-block-latest-posts.wp-block-latest-posts__list.is-grid{
    gap: 10px 0px;
}
.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date{
    padding-left: 20px;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
    margin-bottom: 0px !important;
    display: flex;
    gap: 3px;
    flex-direction: column;
}
.wp-block-latest-posts a {    
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    text-transform: var(--jl-title-transform);
    letter-spacing: var(--jl-title-space);
    line-height: var(--jl-title-line-height);
    margin-bottom: 0;
    display: flex;
    overflow: hidden;
    text-decoration: none !important;
    transition: all 0.3s ease 0s !important;
    gap: 10px;
    color: var(--jl-txt-color);
}
.wp-block-latest-posts a:hover{
    color: var(--jl-single-link-hcolor);
    text-decoration: none !important;
}
.wp-block-latest-posts a:before{
    content: '';
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    align-self: flex-start;
    display: flex;
    margin-top: 4px;
    border-radius: 100px;
    border: 2px solid currentColor;
}
.wp-block-tag-cloud a{
    font-family: var(--jl-title-font);
    font-weight: var(--jl-title-font-weight);
    color: var(--jl-txt-color);
}
.wp-block-pullquote {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid #eeeeee;
    border-top: 1px solid #eeeeee;
    margin-bottom: 30px;
    float: left;
    width: 100%;
    border-style: solid;
}
.wp-block-pullquote blockquote {
    margin-bottom: 0px;
    border-radius: 0px;
    margin: 0px;
}
.wp-block-pullquote.has-background {
    border-radius: 5px;
}
.wp-block-pullquote.has-background blockquote {
    background: transparent;
}
.wp-block-pullquote p {
    font-size: 20px;
}
.wp-block-pullquote blockquote p {
    font-size: 28px;
    line-height: 1.6;
}
.wp-block-pullquote cite {
    text-transform: uppercase;
}
.wp-block-quote.is-large {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
    text-align: left !important;
}
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    padding: 30px 30px 30px 70px;
}
.wp-block-quote cite br {
    display: none;
}
blockquote.has-text-align-right:before {
    right: 30px;
    left: auto;
    -webkit-transform: none;
    transform: none;
}
.wp-block-pullquote.alignwide,
.wp-block-pullquote.alignfull {
    padding-top: 100px;
    padding-bottom: 100px;
}
.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: auto;
    margin-bottom: 30px;
    max-width: 1000%;
}
.wp-block-button {
    margin-bottom: 30px;
}
.wp-block-button.download-button a.wp-block-button__link {
    font-size: 22px;
    padding: 15px 25px;
}
.wp-block-gallery .blocks-gallery-item figcaption {
    background: rgba(0, 0, 0, 0.5);
    padding-top: 5px;
}
.wp-block-columns .wp-block-column {
    padding-left: 15px;
    padding-right: 15px;
}
.wp-block-columns .wp-block-column:first-child {
    padding-left: 0;
}
.wp-block-columns .wp-block-column:last-child {
    padding-right: 0;
}
.wp-block-columns.has-2-columns.has-small-column .wp-block-column:nth-child(n) {
    flex-basis: 30%;
}
.wp-block-columns.has-2-columns.has-small-column .wp-block-column:nth-child(2n) {
    flex-basis: 70%;
}
.wp-block-media-text h1,
.wp-block-media-text h2,
.wp-block-media-text h3,
.wp-block-media-text h4,
.wp-block-media-text h5 {
    margin-top: 0!important;
}
figure.wp-block-table {
    border: 0px !important;    
    width: 100%;
}
figure.wp-block-table table{
    border: 0px;
}
.wp-block-table {
    border: 1px solid #E2E3E7;
}
.wp-block-table td {
    border: none;
}
.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
    margin-bottom: 25px;
}
.wp-block-table.aligncenter {
    width: 100%;
    text-align: left;
}
.wp-block-table.alignleft,
.wp-block-table.alignright {
    width: auto;
}
.wp-block-table tr td {
    border-color: #E2E3E7;
}
.wp-block-table tr:nth-child(2n+1) td {
    background: #EFF0F4;
}
.wp-block-table.is-style-stripes {
    border: 1px solid #E2E3E7;
}
.wp-block-table.is-style-stripes td {
    border: 1px solid #E2E3E7;
}
.wp-block-coblocks-pricing-table-item__features{
    list-style: none;
}
/*-------------------------------------------------------------------------------------
Responsive
-------------------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
    .jl_fr13_inner .jl_fli_wrap{
        min-height: 630px;
    }
}
@media only screen and (max-width: 1024px) {
    body:not(.jl-has-sidebar) .jl_smmain_con{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    }
    .jl_hwrap{
        max-height: 65px;
        min-height: 65px;
    }
    /* Left postition */
    .jl_mb_nav_pos_right #jl_sb_nav{
        left: unset;
        right: 0;
        -webkit-transform: translate(100%, 0px);
        -ms-transform: translate(100%, 0px);
        transform: translate(100%, 0px);
        -o-transform: translate(100%, 0px);
    }
    .menu_mobile_icons.jl_tog_mob{
        display: flex;
    }
    .jl_smmain_con, .jl_smmain_side, .jl_main_achv{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 20px;
    }
    .single-post .jl_block_content:not(.jl_auths_box) .jl_sidebar_w{
        margin-bottom: 40px;
    }
    .jl_smmain_side{
        margin-top: 40px;
    }
    .jl_relsec_wrap{
        padding-top: 30px;
        margin-top: 40px;
    }
    .jl_sleft_side .jl_smmain_con{
        order: 1 !important;
    }
    .jl_sleft_side .jl_smmain_side{
        order: 2 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .products[class*='wc-col']{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }    
    /*navigation*/
    .jlc-top-w .navigation_wrapper{
        display: flex !important;
    }
    .navigation_wrapper{
        display: none !important;
    }    
    .jlc-hmain-w.jlc-hop5 .jlc-hmain-in, .jlc-hmain-w.jlc-hop5 .jl_hwrap .jl_htr,
    .jlc-hmain-w.jlc-hop6 .jlc-hmain-in,
    .jlc-hmain-w.jlc-hop7 .jlc-hmain-logo .jl_header_sb,
    .jlc-hmain-w.jlc-hop7 .jlc-hmain-in,
    .jlc-hmain-w.jlc-hop8 .jlc-hmain-logo .jl_header_sb,
    .jlc-hmain-w.jlc-hop8 .jlc-hmain-in,
    .jlc-hmain-w.jlc-hop9 .jlc-hmain-logo .jl_logo_right,
    .jlc-hmain-w.jlc-hop9 .jlc-hmain-in{
        display: none;
    }
    .jlc-hmain-w.jlc-hop5 .jlc-hmain-logo .search_header_menu,
    .jlc-hmain-w.jlc-hop7 .jlc-hmain-logo .search_header_menu,
    .jlc-hmain-w.jlc-hop8 .jlc-hmain-logo .search_header_menu,
    .jlc-hmain-w.jlc-hop9 .jlc-hmain-logo .search_header_menu{
        display: flex;
    }
    .jlc-hmain-w.jlc-hop5 .jlc-hmain-logo,
    .jlc-hmain-w.jlc-hop6 .jlc-hmain-logo,
    .jlc-hmain-w.jlc-hop7 .jlc-hmain-logo,
    .jlc-hmain-w.jlc-hop8 .jlc-hmain-logo,
    .jlc-hmain-w.jlc-hop9 .jlc-hmain-logo{
        border-bottom: 1px solid var(--jl-menu-line-color);
    }
    .jlc-hmain-w.jlc-hop5 .logo_small_wrapper_table .logo_small_wrapper .logo_link img,
    .jlc-hmain-w.jlc-hop6 .logo_small_wrapper_table .logo_small_wrapper .logo_link img,
    .jlc-hmain-w.jlc-hop7 .logo_small_wrapper_table .logo_small_wrapper .logo_link img,
    .jlc-hmain-w.jlc-hop8 .logo_small_wrapper_table .logo_small_wrapper .logo_link img,
    .jlc-hmain-w.jlc-hop9 .logo_small_wrapper_table .logo_small_wrapper .logo_link img{
        max-width: var(--jl-m-logo-width) !important;
    }
    /* Video */
    .jl_vidli_w{
        display: flex;
        flex-direction: column;
    }
    .jl_vidli_w .jl_vidsb_in{
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-y: hidden;
    }
    .jl_vidli_w .jl_vidsb .jl_vidsb_c{
        position: relative;
        flex: 0 0 320px;
    }
    .jl_vidli_w .jl_vidsb_in .jl_cslist_layout{
        padding: 0px 10px 10px 30px;
    }
    .jl_vidli_w .jl_vidfr .jl_vid_mc{
        padding-bottom: 55%;
    }
    .jl_vidli_w .jl_cslist_layout .jl_img_holder{
      -webkit-flex: 0 0 110px;
      -ms-flex: 0 0 110px;
      flex: 0 0 100px;
      width: 110px;
    }
    .jl_vidli_w .jl_cslist_layout .jl_imgw{
      height: 75px;
    }
    .jl_vidli_w .jl_vidsb .jl_vidsb_c .jl_author_img_w, .jl_vidli_w .jl_vidsb .jl_vidsb_c .post-date:before{
        display: none;
    }
    /*Layout 1 mian + 2 small*/
    .jl_fr1_inner{
    grid-template-areas:
        "item1 item1"
        "item2 item3";
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: initial;
    grid-template-rows: unset;
    }
    /*Layout 1 mian + 4 small*/
    .jl_fr2_inner, .jl_fr20_inner{
        grid-template-areas:
        "item1 item1"
        "item2 item3"
        "item4 item5";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }    
    /*Layout 19*/
    .jl_fr19_inner{
        grid-template-areas:
        "item1 item1"
        "item2 item2"
        "item3 item4";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    /*Layout 20*/
    .jl_fr20_inner .jl_p_fr20:nth-child(2) .jl_fe_text .jl_fe_title{
        font-size: var(--jl-font-small);
    }    
    /*Layout 1 mian + 2 small right*/
    .jl_fr4_inner{
        grid-template-areas:
        "item1 item1"
        "item2 item3";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    /*Feature tab overlay*/
    .jl_fr9_inner{
        height: auto;
    }
    .jl_fr9_inner .jl_fli_con{
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
        bottom: 0px;
    }
    .jl_fr9_inner .jl_fli_wrap{
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    /*Overlay Mix + Samll List*/
    .jl_fr10_inner{
        grid-template-areas:
            "item1 item1"
            "item2 item4"
            "item3 item4";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    .jl_fr10_inner .jl_p_fr10.jl_m_fr10{
        padding-bottom: 56.66667%;
    }
    /*Layout main + below small*/
    .jl_fr11_inner .jl_p_fr11 .jl_fe_text{
        padding: 20px;
    }
    .jl_fr11_inner .jl_fli_wrap{
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    /* Single 12 */
    .jl_single_tpl12 .jl_single_tpl_w{
        margin-top: 0;
        max-width: 1200px;
        padding: 0px 20px 0px 20px;
    }
    .jl_shead_tpl3.jl_shead_mix9 .jl_ov_layout, .jl_shead_tpl4.jl_shead_mix10 .jl_ov_layout, .jl_shead_tpl11 .jl_ov_layout, .jl_shead_tpl3.jl_shead_mix12 .jl_ov_layout, .jl_shead_mix13 .jl_ov_layout{
        height: 450px;
    }
    /* Footer */
    .jl_foot_wrap .footer-columns .jlc-row > div > div:last-child{
        margin-bottom: 0px;
    }
    .jl_foot_wrap .footer-columns .jlc-row > div:last-child > div:last-child{
        margin-bottom: 40px;
    }
    .jl_foot_wrap .footer-columns .jlc-row > div > div:first-child{
        margin-top: 40px;
    }
    .jl_fr19_inner .jl_p_fr19:nth-child(2){
        padding-bottom: 30%;
    }
}
@media only screen and (max-width: 767px) {
    .jl_block_content{
        padding: 30px 0px;
    }
    .widget{
        margin-bottom: 35px;
    }
    .logo_small_wrapper_table .logo_small_wrapper .logo_link img{
        max-width: var(--jl-m-logo-width) !important;
    }
    .jlc-top-w{
        display: none;
    }
    .jlc-hmain-w.jlc-hop5 .jl_hwrap .jl_head_sub,
    .jlc-hmain-w.jlc-hop6 .jl_hwrap .jl_htr{
        display: none;
    }
    /*tab slider*/
    .jl-eb-tabsl .jl_ov_el .jl_fe_text{
        --jl-h-align: center;
    }
    .jl-eb-tabsl .jl_spw{
        display: flex;
    }
    .jl-sltab-s, .jl_fe_des{
        display: none;
    }
    /*List large*/
    .jl_lm_list .jl_lisep{
        flex-direction: column;
        align-items: baseline;
        gap: 20px;
    }
    /* Main list */
    .jl_clist_layout .jl_li_in{
        flex-direction: column !important;
        align-items: baseline;
        gap: 20px;
    }
    .jl_lm_list .jl_lisep .jl_img_holder{
        width: 100% !important;
    }
    .jl_lm_list .jl_lisep .jl_fe_text{
        width: 100% !important;
    }
    /*Feature 1-14 meta*/
    .jl_fr1_inner .jl_p_fr1 + .jl_p_fr1 .jl_post_meta,
    .jl_fr2_inner .jl_p_fr2 + .jl_p_fr2 .jl_post_meta,
    .jl_fr3_inner .jl_p_fr3 + .jl_p_fr3 .jl_post_meta,
    .jl_fr4_inner .jl_p_fr4 + .jl_p_fr4 .jl_post_meta,
    .jl_fr10_inner .jl_ov_el .jl_post_meta,
    .jl_fr19_inner .jl_p_fr19 + .jl_p_fr19 .jl_post_meta,
    .jl_fr20_inner .jl_p_fr20 + .jl_p_fr20 .jl_post_meta{
        display: none;
    }
    .jl_fr19_inner .jl_p_fr19:nth-child(2){
        padding-bottom: 50%;
    }
    /*Layout 1 mian + right small*/
    .jl_fr5_inner{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .jl_fr5_inner .jl_p_fr5{
        padding-bottom: 70%;
    }
    /*Layout 1 mian + 4 grid post*/
    .jl_fr6_inner{
        grid-template-areas:
        "item1 item1"
        "item2 item3"
        "item4 item5";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    .jl_fr6_inner .jl_m_fr6{
        padding-bottom: 70%;
    }
    /*Layout classic 1 mian + 4 grid post*/
    .jl_fr7_inner{
        grid-template-areas:
        "item1 item1"
        "item2 item3"
        "item4 item5";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    .jl_fr7_inner .jl_m_fr7_inner{
        height: auto;
    }
    .jl_fr7_inner .jl_p_fr7.jl_m_fr7 .jl_imgw{
        padding-bottom: 66.66667%;
    }
    /*classic mian + right small*/
    .jl_fr8_inner{
        grid-template-columns: 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    .jl_fr8_inner .jl_m_fr8_inner{
        height: auto;
    }
    .jl_fr8_inner .jl_p_fr8 .jl_imgw{
        padding-bottom: 66.66667%;
    }
    /*Feature tab overlay*/
    .jl_fr9_inner .jl_fli_con{
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
        bottom: 0px;
    }
    .jl_fr9_inner .jl_fli_wrap{
        grid-template-columns: repeat(1,minmax(0,1fr));
        grid-gap: 15px;
    }
    /*Overlay Mix + Samll List*/
    .jl_fr10_inner{
        grid-template-areas:
            "item1 item1"
            "item2 item3"
            "item4 item4";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    .jl_fr10_inner .jl_p_fr10.jl_m_fr10{
        padding-bottom: 66.66667%;
    }
    .jl_fr10_inner .jl_p_fr10.jl_md_ov{
        padding-bottom: 100%;
    }
    .jl_fr10_inner .jl_p_fr10.jl_fli_con{
        margin-top: 20px;
    }
    /*Layout main + below small*/
    .jl_fr11_inner .jl_p_fr11{
        display: block;
    }
    .jl_fr11_inner .jl_p_fr11 .jl_imgc {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .jl_fr11_inner .jl_p_fr11 .jl_fe_text{
        padding: 0px;
        margin-top: 20px;
        margin-left: 0px;
    }
    .jl_fr11_inner .jl_fli_wrap{
        grid-template-columns: repeat(1,minmax(0,1fr));
    }

    /*Layout main + below grid*/
    .jl_fr12_inner .jl_p_fr12{
        display: block;
    }
    .jl_fr12_inner .jl_p_fr12 .jl_imgc {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .jl_fr12_inner .jl_p_fr12 .jl_fe_text{
        padding: 0px;
        margin-top: 20px;
        margin-left: 0px;
    }
    .jl_fr12_inner .jl_fli_wrap{
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .jl_fr12_inner .jl_fe_title{
        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    /*Classic Mix + Samll List*/
    .jl_fr13_inner{
        grid-template-areas:
            "item1 item1"
            "item2 item3"
            "item4 item4";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    .jl_fr13_inner .jl_m_fr13_inner{
        height: auto;
    }
    .jl_fr13_inner .jl_p_fr13 .jl_imgw{
        padding-bottom: 66.66667%;
        display: block;
    }
    /*Mix Classic Layout*/
    .jl_fr14_inner{
        grid-template-areas:
            "item1 item1"
            "item2 item3"
            "item4 item5";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    .jl_fr14_inner .jl_m_fr14_inner{
        height: auto;
        display: block;
    }
    .jl_fr14_inner .jl_p_fr14 .jl_imgw{
        padding-bottom: 66.66667%;
        display: block;
    }
    .jl_fr14_inner .jl_cgrid_layout .jl_post_meta{
        display: none;
    }
    /*Main + 2 grid*/
    .jl_fr18_inner{
        grid-template-areas:
        "item1 item1"
        "item2 item3"
        "item4 item5";
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: initial;
        grid-template-rows: unset;
    }
    .jl_fr18_inner .jl_p_fr18.jl_m_fr18 .jl_imgw{
        padding-bottom: 66.66667%;
        display: block;
    }
    .products[class*='wc-col']{
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    /* Video */
    .jl_vidli_w .jl_vidfr .jl_vid_mc{
        padding-bottom: 100%;
    }
    .jl_vidli_w .jl_cslist_layout .jl_img_holder{
        -webkit-flex: 0 0 80px;
        -ms-flex: 0 0 80px;
        flex: 0 0 80px;
        width: 80px;
    }
    .jl_vidli_w .jl_cslist_layout .jl_imgw{
    height: 80px;
    }
    .jl_vid_mc.jl_ov_el .jl_fe_text{
        padding: 20px;
    }
    .jl_vidli_w .jl_vidsb .jl_vidsb_c{
        flex: 0 0 250px;
    }
    .jl_vidli_w .jl_vidsb_in .jl_cslist_layout{
        padding: 0px 0px 10px 15px;
    }
    .jl_vid_mc.jl_ov_el .jl_f_cat{
      display: none;
    }

    /* Mix overlay */
    .jl_ov_mix_opt{
        padding-bottom: 80% !important;
    }
    /* Small layout */
    .jl_fr15_inner{
        grid-template-columns: 1fr;
    }
    .jl_fr17_inner{
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
    /* Small main bllow 2 list */
    .jl_frlig_inner .jl_fli_wrap, .jl_frlig_inner .jl_cgrid_layout{
        grid-template-columns: 1fr;
    }
    .jl_frlig_inner .jl_cgrid_layout{
        grid-gap: 20px !important;
    }
    .jl_lg_l4 .jl_lg_op_in{
        flex-direction: column;
    }
    .jl_lg_l4 .jl_img_holder{
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .jl_lg_l4 .jl_lg_op_in .jl_fe_text{
        padding: 0px;
        margin: 0px;
        background: transparent !important;
    }
    .jl_lg_l5 .jl_lg_op_in{
        flex-direction: column !important;
    }
    .jl_lg_l5 .jl_img_holder{
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    /* Review */
    .jl_rw_w{
        padding: 20px;
        gap:20px;
    }
    .jl_score_main_w .jl_score_main{
        bottom: 20px;
        right: 20px;
    }
    .jl_score_main_w .review-ht{
        bottom: 20px;
        left: 20px;
    }
    .jl_pcw{
        flex-direction: column;
    }
    .jl_pcw .jl_review_pros, .jl_pcw .jl_review_cons{
        width: 100%;
    }    
    /* Nav post */
    .postnav_w{
        gap: 30px;        
    }
    .postnav_w .jl_navpost{
        width: 100%;
    }
    .jl_info_auth{
        padding: 20px;
        gap: 15px;
    }
    /* share */
    .post_sw{
        display: none;
    }
    .jl_sfoot ul{
        gap: 5px;
    }
    .jl_sfoot ul li{
        -webkit-flex: auto !important;
        -ms-flex: auto !important;
        flex: auto !important;
        width: auto !important;
        flex-grow: 1 !important;
        flex-basis: 0 !important;
    }
    .jl_sfoot ul .jl_sshl span{
        display: none;
    }
    /* related */
    .jl_rel_posts{
        grid-template-columns: repeat(2,minmax(0,1fr));
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    /* Single header */    
    .jl_single_tpl_w{
        gap: 30px;
    }
    .post_content_w{
        margin-top: 30px;
    }
    .jl_shead_tpl1 .jl_head_title, .jl_head_title{
        font-size: 30px !important;
        max-width: 100%;
    }
    .jl_shead_tpl3.jl_shead_mix9 .jl_ov_layout, .jl_shead_tpl4.jl_shead_mix10 .jl_ov_layout, .jl_shead_tpl11 .jl_ov_layout, .jl_shead_tpl3.jl_shead_mix12 .jl_ov_layout{
        height: 430px;
    }
    .jl_slide_wrap_s, .jl_slide_wrap_s .swiper-slide-inner{
        height: 340px;
    }
    .postnav_w{
        margin-top: 35px;
    }
    .jls_con_w{
        gap: 30px;
        max-width: 100%;
    }
    /* single overlay height */    
    .jl_squote_w{     
        padding-bottom: 100%;
    }
    .jl_shead_tpl3, .jl_shead_tpl4, .jl_single_tpl7 .jl_shead_tpl3, .jl_single_tpl8 .jl_shead_tpl4{
        --jl-img-height: 130% !important;
        --jl-padding: 20px !important;
    }
    .jl_shead_tpl3 .post_subtitle_text, .jl_shead_tpl4 .post_subtitle_text{
        display: none;
    }
    .jl_shead_tpl3 .jl_head_title.jl_fe_title, .jl_shead_tpl4 .jl_head_title.jl_fe_title{
        font-size: 30px;
    }
    .jl_pc_sec_title .jl_pc_sec_h{
        font-size: 30px;
    }
    /* single bg */
    .jl_shead_mix13{
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
    .jl_shead_mix13 .jl_shead_tpl_txt{
        padding: 30px 20px 0px 20px;
    }
    /* Error */
    .jl_page_error h1{
        font-size: 30px;
    }
    .jl_page_error .jl_error_desc{
        margin: 20px auto 0px auto;
    }
    /* woocommerce */
    .jl-wc-wrap.single-product-content{
        flex-direction: column;
    }
    .jl-wc-wrap .jl-wc-img, .jl-wc-wrap .jl-wc-dec{
        width: 100%;
    }
    /* Comment form */
    .comment-form .comment-form-author, .comment-form .comment-form-email, .comment-form .comment-form-url {
        float: left;
        width: 100%;
    }
    .ft_s2 .jl_ft_cw, .ft_s3 .jl_ft_cw, .ft_s4 .jl_ft_cw, .ft_s5 .jl_ft_cw{
        flex-direction: column;
        text-align: center;
    }
    .jl-gdpr .jl-gdpr-inner svg, .jl_ticker_wp .jl_arpw, .jl-newsticker-li .jl_post_meta, .jl_ajax_w{
        display: none;
    }
    .woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-1, .woocommerce-page .col2-set .col-2{
        width: 100% !important;
        max-width: 100% !important;
    }    
    .woocommerce table.shop_table td, .woocommerce-cart .woocommerce table.shop_table td, .woocommerce table.wishlist_table td{
        border: 0px;
    }
    .woocommerce-cart.woocommerce-page .woocommerce-cart-form .coupon input.input-text{
        width: 40% !important;
    }
    .woocommerce-page.woocommerce-cart .woocommerce-cart-form, .woocommerce table.shop_table{
        margin-bottom: 0px;
    }
    .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td{
        background: transparent;
    }
    .woocommerce-cart .woocommerce table.cart tr.cart_item td.product-remove{
        padding: 0px;
        margin-top: 3px;
    }
    .woocommerce .woocommerce-MyAccount-navigation{
        max-width: 100%;        
        margin-bottom: 30px;
    }
    .woocommerce .woocommerce-MyAccount-content{
        padding-left: 0px;
    }
    .woocommerce table.shop_table_responsive tr td.woocommerce-orders-table__cell-order-actions::before{
        display: none;
    }
    .woocommerce .woocommerce-info .woocommerce-Button{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .woocommerce .woocommerce-form-row--first.form-row-first{
        width: 47%;
    }
    .woocommerce .woocommerce-form-row--last.form-row-last{
        width: 47%;
        float: right;
    }
    .woocommerce form.checkout_coupon p{
        width: 100%;
        margin-left: 0px !important;
    }
    .woocommerce .lost_reset_password .woocommerce-form-row {
        width: 100%;
    }
    .woocommerce .result-wrap{
        flex-wrap: wrap;
    }
    .woocommerce .woocommerce-result-count{
        margin: -10px 0px 10px 0px;
        width: 100%;
    }
    .woocommerce .woocommerce-ordering{
        order: 2;
    }
    .jl_shop_filter_content .jl_shop_filter_inner{
        grid-template-columns: repeat(1,minmax(0,1fr));
        grid-auto-flow: unset;
    }
    .jl_filter_btn{
        order: 1;
        padding-left: 0px;
    }
    .products[class*='wc-col']{
        grid-gap: 20px;
    }
    .jl-gdpr .jl-gdpr-inner{
        border-radius: 2px;
    }
    .menu_mobile_large_close{
        top: 30px;
        right: 30px;
    }
    .jl_pl_fs .jl_sfoot .jl_shli{
    -webkit-flex: 0 0 25px !important;
    -ms-flex: 0 0 25px !important;
    flex: 0 0 25px !important;
    width: 25px !important;    
    }    
    table td, table th{
        padding: 5px;
        font-size: 95%;
    }
}
@media only screen and (max-width: 390px) {
    .jl_h_cart{
        display: none;
    }
    #jl_sb_nav{
        width: 100%;
        padding: 30px 20px 0px 20px;
    }
    .mobile_close_icons.closed_menu{
        right: 12px;
    }
}
.glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide:not(.current){pointer-events:none}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster{display:none}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%;margin:auto}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;position:absolute;bottom:0;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}.gbtn.focused{outline:2px solid #0f3d81}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}/*! elementor-icons - v5.47.0 - 19-01-2026 */
@font-face{font-family:eicons;src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.47.0);src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.47.0#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.47.0) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.47.0) format("woff"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.47.0) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.47.0#eicon) format("svg");font-weight:400;font-style:normal}[class*=" eicon-"],[class^=eicon]{display:inline-block;font-family:eicons;font-size:inherit;font-weight:400;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:a 2s infinite linear}.eicon-editor-link:before{content:"\e800"}.eicon-editor-unlink:before{content:"\e801"}.eicon-editor-external-link:before{content:"\e802"}.eicon-editor-close:before{content:"\e803"}.eicon-editor-list-ol:before{content:"\e804"}.eicon-editor-list-ul:before{content:"\e805"}.eicon-editor-bold:before{content:"\e806"}.eicon-editor-italic:before{content:"\e807"}.eicon-editor-underline:before{content:"\e808"}.eicon-editor-paragraph:before{content:"\e809"}.eicon-editor-h1:before{content:"\e80a"}.eicon-editor-h2:before{content:"\e80b"}.eicon-editor-h3:before{content:"\e80c"}.eicon-editor-h4:before{content:"\e80d"}.eicon-editor-h5:before{content:"\e80e"}.eicon-editor-h6:before{content:"\e80f"}.eicon-editor-quote:before{content:"\e810"}.eicon-editor-code:before{content:"\e811"}.eicon-elementor:before{content:"\e812"}.eicon-elementor-circle:before{content:"\e813"}.eicon-pojome:before{content:"\e814"}.eicon-plus:before{content:"\e815"}.eicon-menu-bar:before{content:"\e816"}.eicon-apps:before{content:"\e817"}.eicon-accordion:before{content:"\e818"}.eicon-alert:before{content:"\e819"}.eicon-animation-text:before{content:"\e81a"}.eicon-animation:before{content:"\e81b"}.eicon-banner:before{content:"\e81c"}.eicon-blockquote:before{content:"\e81d"}.eicon-button:before{content:"\e81e"}.eicon-call-to-action:before{content:"\e81f"}.eicon-captcha:before{content:"\e820"}.eicon-carousel:before{content:"\e821"}.eicon-checkbox:before{content:"\e822"}.eicon-columns:before{content:"\e823"}.eicon-countdown:before{content:"\e824"}.eicon-counter:before{content:"\e825"}.eicon-date:before{content:"\e826"}.eicon-divider-shape:before{content:"\e827"}.eicon-divider:before{content:"\e828"}.eicon-download-button:before{content:"\e829"}.eicon-dual-button:before{content:"\e82a"}.eicon-email-field:before{content:"\e82b"}.eicon-facebook-comments:before{content:"\e82c"}.eicon-facebook-like-box:before{content:"\e82d"}.eicon-form-horizontal:before{content:"\e82e"}.eicon-form-vertical:before{content:"\e82f"}.eicon-gallery-grid:before{content:"\e830"}.eicon-gallery-group:before{content:"\e831"}.eicon-gallery-justified:before{content:"\e832"}.eicon-gallery-masonry:before{content:"\e833"}.eicon-icon-box:before{content:"\e834"}.eicon-image-before-after:before{content:"\e835"}.eicon-image-box:before{content:"\e836"}.eicon-image-hotspot:before{content:"\e837"}.eicon-image-rollover:before{content:"\e838"}.eicon-info-box:before{content:"\e839"}.eicon-inner-section:before{content:"\e83a"}.eicon-mailchimp:before{content:"\e83b"}.eicon-menu-card:before{content:"\e83c"}.eicon-navigation-horizontal:before{content:"\e83d"}.eicon-nav-menu:before{content:"\e83e"}.eicon-navigation-vertical:before{content:"\e83f"}.eicon-number-field:before{content:"\e840"}.eicon-parallax:before{content:"\e841"}.eicon-php7:before{content:"\e842"}.eicon-post-list:before{content:"\e843"}.eicon-post-slider:before{content:"\e844"}.eicon-post:before{content:"\e845"}.eicon-posts-carousel:before{content:"\e846"}.eicon-posts-grid:before{content:"\e847"}.eicon-posts-group:before{content:"\e848"}.eicon-posts-justified:before{content:"\e849"}.eicon-posts-masonry:before{content:"\e84a"}.eicon-posts-ticker:before{content:"\e84b"}.eicon-price-list:before{content:"\e84c"}.eicon-price-table:before{content:"\e84d"}.eicon-radio:before{content:"\e84e"}.eicon-rtl:before{content:"\e84f"}.eicon-scroll:before{content:"\e850"}.eicon-search:before{content:"\e851"}.eicon-select:before{content:"\e852"}.eicon-share:before{content:"\e853"}.eicon-sidebar:before{content:"\e854"}.eicon-skill-bar:before{content:"\e855"}.eicon-slider-3d:before{content:"\e856"}.eicon-slider-album:before{content:"\e857"}.eicon-slider-device:before{content:"\e858"}.eicon-slider-full-screen:before{content:"\e859"}.eicon-slider-push:before{content:"\e85a"}.eicon-slider-vertical:before{content:"\e85b"}.eicon-slider-video:before{content:"\e85c"}.eicon-slides:before{content:"\e85d"}.eicon-social-icons:before{content:"\e85e"}.eicon-spacer:before{content:"\e85f"}.eicon-table:before{content:"\e860"}.eicon-tabs:before{content:"\e861"}.eicon-tel-field:before{content:"\e862"}.eicon-text-area:before{content:"\e863"}.eicon-text-field:before{content:"\e864"}.eicon-thumbnails-down:before{content:"\e865"}.eicon-thumbnails-half:before{content:"\e866"}.eicon-thumbnails-right:before{content:"\e867"}.eicon-time-line:before{content:"\e868"}.eicon-toggle:before{content:"\e869"}.eicon-url:before{content:"\e86a"}.eicon-t-letter:before{content:"\e86b"}.eicon-wordpress:before{content:"\e86c"}.eicon-text:before{content:"\e86d"}.eicon-anchor:before{content:"\e86e"}.eicon-bullet-list:before{content:"\e86f"}.eicon-code:before{content:"\e870"}.eicon-favorite:before{content:"\e871"}.eicon-google-maps:before{content:"\e872"}.eicon-image:before{content:"\e873"}.eicon-photo-library:before{content:"\e874"}.eicon-woocommerce:before{content:"\e875"}.eicon-youtube:before{content:"\e876"}.eicon-flip-box:before{content:"\e877"}.eicon-settings:before{content:"\e878"}.eicon-headphones:before{content:"\e879"}.eicon-testimonial:before{content:"\e87a"}.eicon-counter-circle:before{content:"\e87b"}.eicon-person:before{content:"\e87c"}.eicon-chevron-right:before{content:"\e87d"}.eicon-chevron-left:before{content:"\e87e"}.eicon-close:before{content:"\e87f"}.eicon-file-download:before{content:"\e880"}.eicon-save:before{content:"\e881"}.eicon-zoom-in:before{content:"\e882"}.eicon-shortcode:before{content:"\e883"}.eicon-nerd:before{content:"\e884"}.eicon-device-desktop:before{content:"\e885"}.eicon-device-tablet:before{content:"\e886"}.eicon-device-mobile:before{content:"\e887"}.eicon-document-file:before{content:"\e888"}.eicon-folder-o:before{content:"\e889"}.eicon-hypster:before{content:"\e88a"}.eicon-h-align-left:before{content:"\e88b"}.eicon-h-align-right:before{content:"\e88c"}.eicon-h-align-center:before{content:"\e88d"}.eicon-h-align-stretch:before{content:"\e88e"}.eicon-v-align-top:before{content:"\e88f"}.eicon-v-align-bottom:before{content:"\e890"}.eicon-v-align-middle:before{content:"\e891"}.eicon-v-align-stretch:before{content:"\e892"}.eicon-pro-icon:before{content:"\e893"}.eicon-mail:before{content:"\e894"}.eicon-lock-user:before{content:"\e895"}.eicon-testimonial-carousel:before{content:"\e896"}.eicon-media-carousel:before{content:"\e897"}.eicon-section:before{content:"\e898"}.eicon-column:before{content:"\e899"}.eicon-edit:before{content:"\e89a"}.eicon-clone:before{content:"\e89b"}.eicon-trash:before{content:"\e89c"}.eicon-play:before{content:"\e89d"}.eicon-angle-right:before{content:"\e89e"}.eicon-angle-left:before{content:"\e89f"}.eicon-animated-headline:before{content:"\e8a0"}.eicon-menu-toggle:before{content:"\e8a1"}.eicon-fb-embed:before{content:"\e8a2"}.eicon-fb-feed:before{content:"\e8a3"}.eicon-twitter-embed:before{content:"\e8a4"}.eicon-twitter-feed:before{content:"\e8a5"}.eicon-sync:before{content:"\e8a6"}.eicon-import-export:before{content:"\e8a7"}.eicon-check-circle:before{content:"\e8a8"}.eicon-library-save:before{content:"\e8a9"}.eicon-library-download:before{content:"\e9dd"}.eicon-insert:before{content:"\e8ab"}.eicon-preview-medium:before{content:"\e8ac"}.eicon-sort-down:before{content:"\e8ad"}.eicon-sort-up:before{content:"\e8ae"}.eicon-heading:before{content:"\e8af"}.eicon-logo:before{content:"\e8b0"}.eicon-meta-data:before{content:"\e8b1"}.eicon-post-content:before{content:"\e8b2"}.eicon-post-excerpt:before{content:"\e8b3"}.eicon-post-navigation:before{content:"\e8b4"}.eicon-yoast:before{content:"\e8b5"}.eicon-nerd-chuckle:before{content:"\e8b6"}.eicon-nerd-wink:before{content:"\e8b7"}.eicon-comments:before{content:"\e8b8"}.eicon-download-circle-o:before{content:"\e8b9"}.eicon-library-upload:before{content:"\e8ba"}.eicon-save-o:before{content:"\e8bb"}.eicon-upload-circle-o:before{content:"\e8bc"}.eicon-ellipsis-h:before{content:"\e8bd"}.eicon-ellipsis-v:before{content:"\e8be"}.eicon-arrow-left:before{content:"\e8bf"}.eicon-arrow-right:before{content:"\e8c0"}.eicon-arrow-up:before{content:"\e8c1"}.eicon-arrow-down:before{content:"\e8c2"}.eicon-play-o:before{content:"\e8c3"}.eicon-archive-posts:before{content:"\e8c4"}.eicon-archive-title:before{content:"\e8c5"}.eicon-featured-image:before{content:"\e8c6"}.eicon-post-info:before{content:"\e8c7"}.eicon-post-title:before{content:"\e8c8"}.eicon-site-logo:before{content:"\e8c9"}.eicon-site-search:before{content:"\e8ca"}.eicon-site-title:before{content:"\e8cb"}.eicon-plus-square:before{content:"\e8cc"}.eicon-minus-square:before{content:"\e8cd"}.eicon-cloud-check:before{content:"\e8ce"}.eicon-drag-n-drop:before{content:"\e8cf"}.eicon-welcome:before{content:"\e8d0"}.eicon-handle:before{content:"\e8d1"}.eicon-cart:before{content:"\e8d2"}.eicon-product-add-to-cart:before{content:"\e8d3"}.eicon-product-breadcrumbs:before{content:"\e8d4"}.eicon-product-categories:before{content:"\e8d5"}.eicon-product-description:before{content:"\e8d6"}.eicon-product-images:before{content:"\e8d7"}.eicon-product-info:before{content:"\e8d8"}.eicon-product-meta:before{content:"\e8d9"}.eicon-product-pages:before{content:"\e8da"}.eicon-product-price:before{content:"\e8db"}.eicon-product-rating:before{content:"\e8dc"}.eicon-product-related:before{content:"\e8dd"}.eicon-product-stock:before{content:"\e8de"}.eicon-product-tabs:before{content:"\e8df"}.eicon-product-title:before{content:"\e8e0"}.eicon-product-upsell:before{content:"\e8e1"}.eicon-products:before{content:"\e8e2"}.eicon-bag-light:before{content:"\e8e3"}.eicon-bag-medium:before{content:"\e8e4"}.eicon-bag-solid:before{content:"\e8e5"}.eicon-basket-light:before{content:"\e8e6"}.eicon-basket-medium:before{content:"\e8e7"}.eicon-basket-solid:before{content:"\e8e8"}.eicon-cart-light:before{content:"\e8e9"}.eicon-cart-medium:before{content:"\e8ea"}.eicon-cart-solid:before{content:"\e8eb"}.eicon-exchange:before{content:"\e8ec"}.eicon-preview-thin:before{content:"\e8ed"}.eicon-device-laptop:before{content:"\e8ee"}.eicon-collapse:before{content:"\e8ef"}.eicon-expand:before{content:"\e8f0"}.eicon-navigator:before{content:"\e8f1"}.eicon-plug:before{content:"\e8f2"}.eicon-dashboard:before{content:"\e8f3"}.eicon-typography:before{content:"\e8f4"}.eicon-info-circle-o:before{content:"\e8f5"}.eicon-integration:before{content:"\e8f6"}.eicon-plus-circle-o:before{content:"\e8f7"}.eicon-rating:before{content:"\e8f8"}.eicon-review:before{content:"\e8f9"}.eicon-tools:before{content:"\e8fa"}.eicon-loading:before{content:"\e8fb"}.eicon-sitemap:before{content:"\e8fc"}.eicon-click:before{content:"\e8fd"}.eicon-clock:before{content:"\e8fe"}.eicon-library-open:before{content:"\e8ff"}.eicon-warning:before{content:"\e900"}.eicon-flow:before{content:"\e901"}.eicon-cursor-move:before{content:"\e902"}.eicon-arrow-circle-left:before{content:"\e903"}.eicon-flash:before{content:"\e904"}.eicon-redo:before{content:"\e905"}.eicon-ban:before{content:"\e906"}.eicon-barcode:before{content:"\e907"}.eicon-calendar:before{content:"\e908"}.eicon-caret-left:before{content:"\e909"}.eicon-caret-right:before{content:"\e90a"}.eicon-caret-up:before{content:"\e90b"}.eicon-chain-broken:before{content:"\e90c"}.eicon-check-circle-o:before{content:"\e90d"}.eicon-check:before{content:"\e90e"}.eicon-chevron-double-left:before{content:"\e90f"}.eicon-chevron-double-right:before{content:"\e910"}.eicon-undo:before{content:"\e911"}.eicon-filter:before{content:"\e912"}.eicon-circle-o:before{content:"\e913"}.eicon-circle:before{content:"\e914"}.eicon-clock-o:before{content:"\e915"}.eicon-cog:before{content:"\e916"}.eicon-cogs:before{content:"\e917"}.eicon-commenting-o:before{content:"\e918"}.eicon-copy:before{content:"\e919"}.eicon-database:before{content:"\e91a"}.eicon-dot-circle-o:before{content:"\e91b"}.eicon-envelope:before{content:"\e91c"}.eicon-external-link-square:before{content:"\e91d"}.eicon-eyedropper:before{content:"\e91e"}.eicon-folder:before{content:"\e91f"}.eicon-font:before{content:"\e920"}.eicon-adjust:before{content:"\e921"}.eicon-lightbox:before{content:"\e922"}.eicon-heart-o:before{content:"\e923"}.eicon-history:before{content:"\e924"}.eicon-image-bold:before{content:"\e925"}.eicon-info-circle:before{content:"\e926"}.eicon-link:before{content:"\e927"}.eicon-long-arrow-left:before{content:"\e928"}.eicon-long-arrow-right:before{content:"\e929"}.eicon-caret-down:before{content:"\e92a"}.eicon-paint-brush:before{content:"\e92b"}.eicon-pencil:before{content:"\e92c"}.eicon-plus-circle:before{content:"\e92d"}.eicon-zoom-in-bold:before{content:"\e92e"}.eicon-sort-amount-desc:before{content:"\e92f"}.eicon-sign-out:before{content:"\e930"}.eicon-spinner:before{content:"\e931"}.eicon-square:before{content:"\e932"}.eicon-star-o:before{content:"\e933"}.eicon-star:before{content:"\e934"}.eicon-text-align-justify:before{content:"\e935"}.eicon-text-align-center:before{content:"\e936"}.eicon-tags:before{content:"\e937"}.eicon-text-align-left:before{content:"\e938"}.eicon-text-align-right:before{content:"\e939"}.eicon-close-circle:before{content:"\e93a"}.eicon-trash-o:before{content:"\e93b"}.eicon-font-awesome:before{content:"\e93c"}.eicon-user-circle-o:before{content:"\e93d"}.eicon-video-camera:before{content:"\e93e"}.eicon-heart:before{content:"\e93f"}.eicon-wrench:before{content:"\e940"}.eicon-help:before{content:"\e941"}.eicon-help-o:before{content:"\e942"}.eicon-zoom-out-bold:before{content:"\e943"}.eicon-plus-square-o:before{content:"\e944"}.eicon-minus-square-o:before{content:"\e945"}.eicon-minus-circle:before{content:"\e946"}.eicon-minus-circle-o:before{content:"\e947"}.eicon-code-bold:before{content:"\e948"}.eicon-cloud-upload:before{content:"\e949"}.eicon-search-bold:before{content:"\e94a"}.eicon-map-pin:before{content:"\e94b"}.eicon-meetup:before{content:"\e94c"}.eicon-slideshow:before{content:"\e94d"}.eicon-t-letter-bold:before{content:"\e94e"}.eicon-preferences:before{content:"\e94f"}.eicon-table-of-contents:before{content:"\e950"}.eicon-tv:before{content:"\e951"}.eicon-upload:before{content:"\e952"}.eicon-instagram-comments:before{content:"\e953"}.eicon-instagram-nested-gallery:before{content:"\e954"}.eicon-instagram-post:before{content:"\e955"}.eicon-instagram-video:before{content:"\e956"}.eicon-instagram-gallery:before{content:"\e957"}.eicon-instagram-likes:before{content:"\e958"}.eicon-facebook:before{content:"\e959"}.eicon-twitter:before{content:"\e95a"}.eicon-pinterest:before{content:"\e95b"}.eicon-frame-expand:before{content:"\e95c"}.eicon-frame-minimize:before{content:"\e95d"}.eicon-archive:before{content:"\e95e"}.eicon-colors-typography:before{content:"\e95f"}.eicon-custom:before{content:"\e960"}.eicon-footer:before{content:"\e961"}.eicon-header:before{content:"\e962"}.eicon-layout-settings:before{content:"\e963"}.eicon-lightbox-expand:before{content:"\e964"}.eicon-error-404:before{content:"\e965"}.eicon-theme-style:before{content:"\e966"}.eicon-search-results:before{content:"\e967"}.eicon-single-post:before{content:"\e968"}.eicon-site-identity:before{content:"\e969"}.eicon-theme-builder:before{content:"\e96a"}.eicon-download-bold:before{content:"\e96b"}.eicon-share-arrow:before{content:"\e96c"}.eicon-global-settings:before{content:"\e96d"}.eicon-user-preferences:before{content:"\e96e"}.eicon-lock:before{content:"\e96f"}.eicon-export-kit:before{content:"\e970"}.eicon-import-kit:before{content:"\e971"}.eicon-lottie:before{content:"\e972"}.eicon-products-archive:before{content:"\e973"}.eicon-single-product:before{content:"\e974"}.eicon-disable-trash-o:before{content:"\e975"}.eicon-single-page:before{content:"\e976"}.eicon-wordpress-light:before{content:"\e977"}.eicon-cogs-check:before{content:"\e978"}.eicon-custom-css:before{content:"\e979"}.eicon-global-colors:before{content:"\e97a"}.eicon-globe:before{content:"\e97b"}.eicon-typography-1:before{content:"\e97c"}.eicon-background:before{content:"\e97d"}.eicon-device-responsive:before{content:"\e97e"}.eicon-device-wide:before{content:"\e97f"}.eicon-code-highlight:before{content:"\e980"}.eicon-video-playlist:before{content:"\e981"}.eicon-download-kit:before{content:"\e982"}.eicon-kit-details:before{content:"\e983"}.eicon-kit-parts:before{content:"\e984"}.eicon-kit-upload:before{content:"\e985"}.eicon-kit-plugins:before{content:"\e986"}.eicon-kit-upload-alt:before{content:"\e987"}.eicon-hotspot:before{content:"\e988"}.eicon-paypal-button:before{content:"\e989"}.eicon-shape:before{content:"\e98a"}.eicon-wordart:before{content:"\e98b"}.eicon-checkout:before{content:"\e98c"}.eicon-container:before{content:"\e98d"}.eicon-flip:before{content:"\e98e"}.eicon-info:before{content:"\e98f"}.eicon-my-account:before{content:"\e990"}.eicon-purchase-summary:before{content:"\e991"}.eicon-page-transition:before{content:"\e992"}.eicon-spotify:before{content:"\e993"}.eicon-stripe-button:before{content:"\e994"}.eicon-woo-settings:before{content:"\e995"}.eicon-woo-cart:before{content:"\e996"}.eicon-grow:before{content:"\e997"}.eicon-order-end:before{content:"\e998"}.eicon-nowrap:before{content:"\e999"}.eicon-order-start:before{content:"\e99a"}.eicon-progress-tracker:before{content:"\e99b"}.eicon-shrink:before{content:"\e99c"}.eicon-wrap:before{content:"\e99d"}.eicon-align-center-h:before{content:"\e99e"}.eicon-align-center-v:before{content:"\e99f"}.eicon-align-end-h:before{content:"\e9a0"}.eicon-align-end-v:before{content:"\e9a1"}.eicon-align-start-h:before{content:"\e9a2"}.eicon-align-start-v:before{content:"\e9a3"}.eicon-align-stretch-h:before{content:"\e9a4"}.eicon-align-stretch-v:before{content:"\e9a5"}.eicon-justify-center-h:before{content:"\e9a6"}.eicon-justify-center-v:before{content:"\e9a7"}.eicon-justify-end-h:before{content:"\e9a8"}.eicon-justify-end-v:before{content:"\e9a9"}.eicon-justify-space-around-h:before{content:"\e9aa"}.eicon-justify-space-around-v:before{content:"\e9ab"}.eicon-justify-space-between-h:before{content:"\e9ac"}.eicon-justify-space-between-v:before{content:"\e9ad"}.eicon-justify-space-evenly-h:before{content:"\e9ae"}.eicon-justify-space-evenly-v:before{content:"\e9af"}.eicon-justify-start-h:before{content:"\e9b0"}.eicon-justify-start-v:before{content:"\e9b1"}.eicon-woocommerce-cross-sells:before{content:"\e9b2"}.eicon-woocommerce-notices:before{content:"\e9b3"}.eicon-inner-container:before{content:"\e9b4"}.eicon-warning-full:before{content:"\e9b5"}.eicon-exit:before{content:"\e9b6"}.eicon-loop-builder:before{content:"\e9b7"}.eicon-notes:before{content:"\e9b8"}.eicon-read:before{content:"\e9b9"}.eicon-unread:before{content:"\e9ba"}.eicon-carousel-loop:before{content:"\e9bb"}.eicon-mega-menu:before{content:"\eb78"}.eicon-nested-carousel:before{content:"\e9bd"}.eicon-ai:before{content:"\e9be"}.eicon-taxonomy-filter:before{content:"\eb7d"}.eicon-container-grid:before{content:"\ef02"}.eicon-upgrade:before{content:"\e9c1"}.eicon-advanced:before{content:"\eb84"}.eicon-div-block:before{content:"\eb9b"}.eicon-notification:before{content:"\e9c3"}.eicon-light-mode:before{content:"\e9c4"}.eicon-dark-mode:before{content:"\e9c5"}.eicon-upgrade-crown:before{content:"\e9c6"}.eicon-off-canvas:before{content:"\e9c7"}.eicon-speakerphone:before{content:"\e9c9"}.eicon-ehp-cta:before{content:"\e9cb"}.eicon-ehp-forms:before{content:"\e9bc"}.eicon-ehp-hero:before{content:"\e9ca"}.eicon-ehp-zigzag:before{content:"\e9cc"}.eicon-e-button:before{content:"\e9ce"}.eicon-flexbox:before{content:"\e9d0"}.eicon-paragraph:before{content:"\e9d1"}.eicon-icon:before{content:"\e9d2"}.eicon-e-image:before{content:"\e9d3"}.eicon-video:before{content:"\e9d4"}.eicon-svg:before{content:"\e9d5"}.eicon-e-divider:before{content:"\e9d6"}.eicon-e-heading:before{content:"\e9d7"}.eicon-atomic:before{content:"\ebae"}.eicon-library-delete:before{content:"\e9d8"}.eicon-library-copy:before{content:"\e9d9"}.eicon-library-folder-empty:before{content:"\e9da"}.eicon-library-move:before{content:"\e9db"}.eicon-library-edit:before{content:"\e9dc"}.eicon-library-subscription-upgrade:before{content:"\e9de"}.eicon-library-folder-view:before{content:"\e9df"}.eicon-library-grid:before{content:"\e9e1"}.eicon-library-cloud-connect:before{content:"\e9e2"}.eicon-library-import:before{content:"\e9e3"}.eicon-library-list:before{content:"\e9e4"}.eicon-library-cloud-empty:before{content:"\e9e5"}.eicon-folder-plus:before{content:"\e8aa"}.eicon-library-folder:before{content:"\e9e6"}.eicon-accessibility:before{content:"\e9bf"}.eicon-lock-outline:before{content:"\e9e7"}.eicon-e-youtube:before{content:"\e9e8"}.eicon-contact:before{content:"\ebd2"}.eicon-layout:before{content:"\ebd8"}.eicon-components:before{content:"\ebd9"}.eicon-tab-content:before{content:"\ebda"}.eicon-tab-menu:before{content:"\ebdb"}.eicon-atomic-label:before{content:"\e9ee"}.eicon-atomic-form:before{content:"\e9ef"}.eicon-atomic-submit-button:before{content:"\e9f0"}.eicon-atomic-input:before{content:"\e9f1"}.eicon-atomic-text-area:before{content:"\e9f2"}.eicon-eye:before{content:"\e8ac"}.eicon-elementor-square:before{content:"\e813"}.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container,.elementor-widget:not(:has(.elementor-widget-container)) .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{display:flex;flex-wrap:wrap;margin-inline:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-inline-item{word-break:break-word}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{border-width:0;border-inline-start-width:1px;border-style:solid;height:100%;inset-inline-end:-8px;inset-inline-start:auto;position:relative;width:auto}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{inset-block-end:0;position:absolute;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{align-items:var(--icon-vertical-align,center);display:flex;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{align-self:center;padding-inline-start:5px}.elementor-widget .elementor-icon-list-icon{display:flex;inset-block-start:var(--icon-vertical-offset,initial);position:relative}.elementor-widget .elementor-icon-list-icon svg{height:var(--e-icon-list-icon-size,1em);width:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{font-size:var(--e-icon-list-icon-size);width:1.25em}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-align-start .elementor-icon-list-item,.elementor-widget.elementor-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-align-end .elementor-icon-list-item,.elementor-widget.elementor-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-align-start) .elementor-icon-list-item:after{inset-inline-end:0}@media (min-width:-1){.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-widescreen-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-widescreen-align-start .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-widescreen-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-widescreen-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-widescreen-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-laptop-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-laptop-align-start .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-laptop-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-laptop-align-end .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-laptop-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-laptop-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-laptop-align-start) .elementor-icon-list-item:after{inset-inline-end:0}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet_extra-align-start .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-tablet_extra-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-tablet_extra-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet_extra-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet-align-start .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-tablet-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-tablet-align-end .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-tablet-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-tablet-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile_extra-align-start .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-mobile_extra-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-mobile_extra-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile_extra-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile-align-start .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-mobile-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-mobile-align-end .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-mobile-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-mobile-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}#left-area ul.elementor-icon-list-items,.elementor .elementor-element ul.elementor-icon-list-items,.elementor-edit-area .elementor-element ul.elementor-icon-list-items{padding:0}.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0:not(:has(.elementor-widget-container)){font-size:0;line-height:1}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;align-items:center;background-color:#69727d;cursor:pointer;display:inline-flex;justify-content:center;text-align:center}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{color:#fff;opacity:.9}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot");
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2") format("woff2"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff") format("woff"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf") format("truetype"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bacteria:before {
  content: "\e059"; }

.fa-bacterium:before {
  content: "\e05a"; }

.fa-bahai:before {
  content: "\f666"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\e05b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudflare:before {
  content: "\e07d"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\e052"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-deezer:before {
  content: "\e077"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edge-legacy:before {
  content: "\e078"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-alt:before {
  content: "\f424"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-faucet:before {
  content: "\e005"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-firefox-browser:before {
  content: "\e007"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-pay:before {
  content: "\e079"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guilded:before {
  content: "\e07e"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\e05c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-sparkles:before {
  content: "\e05d"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\e05e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\e05f"; }

.fa-handshake-slash:before {
  content: "\e060"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side-cough:before {
  content: "\e061"; }

.fa-head-side-cough-slash:before {
  content: "\e062"; }

.fa-head-side-mask:before {
  content: "\e063"; }

.fa-head-side-virus:before {
  content: "\e064"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hive:before {
  content: "\e07f"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-house-user:before {
  content: "\e065"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\e013"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-innosoft:before {
  content: "\e080"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-instagram-square:before {
  content: "\e055"; }

.fa-instalod:before {
  content: "\e081"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-house:before {
  content: "\e066"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\e067"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\e01a"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mixer:before {
  content: "\e056"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse:before {
  content: "\f8cc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-octopus-deploy:before {
  content: "\e082"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-arrows:before {
  content: "\e068"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-perbyte:before {
  content: "\e083"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-square:before {
  content: "\e01e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-plane-slash:before {
  content: "\e069"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\e06a"; }

.fa-pump-soap:before {
  content: "\e06b"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-rust:before {
  content: "\e07a"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-shield-virus:before {
  content: "\e06c"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\e057"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sink:before {
  content: "\e06d"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\e06e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\e06f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\e070"; }

.fa-store-slash:before {
  content: "\e071"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-tiktok:before {
  content: "\e07b"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-threads:before {
  content: '\e9cb'; }

.fa-threads-square:before {
  content: '\e9cc'; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\e072"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\e041"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-uncharted:before {
  content: "\e084"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\e049"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-unsplash:before {
  content: "\e07c"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-users-slash:before {
  content: "\e073"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-vest:before {
  content: "\e085"; }

.fa-vest-patches:before {
  content: "\e086"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-virus:before {
  content: "\e074"; }

.fa-virus-slash:before {
  content: "\e075"; }

.fa-viruses:before {
  content: "\e076"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-watchman-monitoring:before {
  content: "\e087"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wodu:before {
  content: "\e088"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-x-twitter:before {
  content: "\e9ca"; }

.fa-x-twitter-square:before {
  content: "\e9c9"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot");
  src: url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2") format("woff2"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff") format("woff"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf") format("truetype"), url("/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }
.epyt-debug{background-color:#ddd;color:#000;cursor:pointer;text-align:left}iframe.__youtube_prefs__{border-width:0}.epyt-gallery{text-align:center}.epyt-gallery .epyt-figure{margin-block:0;margin-inline:0}.epyt-gallery iframe{margin-bottom:0}.epyt-gallery.epyt-lb iframe{display:none;height:0!important}.epyt-gallery-list{display:block;margin:0 -8px;position:relative;transition:opacity .3s ease-out}.epyt-gallery-list .epyt-gallery-thumb{box-sizing:border-box}.epyt-gallery-list p{display:none}.epyt-gallery-clear{clear:both}.epyt-gallery-list.epyt-loading{opacity:.5;transition:opacity .3s ease-out}.epyt-gallery-thumb{box-sizing:border-box;cursor:pointer;display:block!important;float:left;height:auto;opacity:1;overflow-y:hidden;padding:0 8px 10px;position:relative}.epyt-gallery-thumb.hover{height:auto;opacity:1;position:relative;transition:opacity .3s ease-out}.epyt-gallery-img-box{width:100%}.epyt-gallery-img{background-position:50%!important;background-size:cover!important;height:0;overflow:hidden!important;padding-top:56.25%!important;position:relative;width:100%}.epyt-gallery-playhover{height:100%;left:0;opacity:0;position:absolute;text-align:center;top:-10px;transition:opacity .3s ease-out;vertical-align:middle;width:100%}.epyt-gallery-thumb.epyt-current-video .epyt-gallery-playhover,.epyt-gallery-thumb.hover .epyt-gallery-playhover{opacity:1;top:0;transition:all .3s ease-out}.epyt-gallery-thumb .epyt-gallery-playcrutch{display:inline-block;height:100%;vertical-align:middle;width:0}.epyt-gallery-playhover .epyt-play-img{border:none;box-sizing:border-box;display:inline-block!important;height:auto!important;margin:0!important;max-width:15%!important;min-width:30px!important;padding:0!important;vertical-align:middle!important;width:auto}.epyt-gallery-title{font-size:80%;line-height:120%;padding:10px}.epyt-gallery-notitle{padding:4px}.epyt-gallery-notitle span{display:none}.epyt-gallery-rowtitle{left:0;opacity:0;overflow-x:hidden;position:absolute;text-align:center;text-overflow:ellipsis;top:100%;white-space:nowrap;width:100%;z-index:10}.epyt-gallery-rowtitle.hover{opacity:1;transition:opacity .2s linear}.epyt-gallery-rowbreak{clear:both}.epyt-pagination{clear:both;padding:10px 8px;text-align:center}.epyt-pagination.epyt-hide-pagination *{display:none!important}.epyt-pagenumbers>div,.epyt-pagination>div{display:inline-block;padding:0 2px;vertical-align:middle}.epyt-pagination .epyt-pagebutton{cursor:pointer;display:inline-block;padding:0 10px}.epyt-pagebutton>div{display:inline}.epyt-pagination .epyt-loader{display:none}.epyt-gallery-list.epyt-loading .epyt-pagination .epyt-loader{display:inline-block}body .lity-container{max-width:964px;width:100%}.epyt-curtain .lity-opened iframe{opacity:0;transition:opacity .3s linear .5s}.epyt-gallery-allthumbs.epyt-cols-1 .epyt-gallery-thumb{width:100%}.epyt-gallery-allthumbs.epyt-cols-2 .epyt-gallery-thumb{width:50%}.epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb{width:33.333%}.epyt-gallery-allthumbs.epyt-cols-4 .epyt-gallery-thumb{width:25%}.epyt-gallery-allthumbs.epyt-cols-5 .epyt-gallery-thumb{width:20%}.epyt-gallery-allthumbs.epyt-cols-6 .epyt-gallery-thumb{width:16.666%}.epyt-gallery-allthumbs.epyt-cols-7 .epyt-gallery-thumb{width:14.285%}.epyt-gallery-allthumbs.epyt-cols-8 .epyt-gallery-thumb{width:12.5%}.epyt-gallery-allthumbs.epyt-cols-9 .epyt-gallery-thumb{width:11.111%}.epyt-gallery-allthumbs.epyt-cols-10 .epyt-gallery-thumb{width:10%}.epyt-gallery-allthumbs.epyt-cols-11 .epyt-gallery-thumb{width:9.09%}.epyt-gallery-allthumbs.epyt-cols-12 .epyt-gallery-thumb{width:8.333%}.epyt-gallery-allthumbs.epyt-cols-13 .epyt-gallery-thumb{width:7.692%}.epyt-gallery-allthumbs.epyt-cols-14 .epyt-gallery-thumb{width:7.142%}.epyt-gallery-allthumbs.epyt-cols-15 .epyt-gallery-thumb{width:6.666%}.epyt-gallery-allthumbs.epyt-cols-16 .epyt-gallery-thumb{width:6.25%}.epyt-gallery-allthumbs.epyt-cols-17 .epyt-gallery-thumb{width:5.882%}.epyt-gallery-allthumbs.epyt-cols-18 .epyt-gallery-thumb{width:5.555%}.epyt-gallery-allthumbs.epyt-cols-19 .epyt-gallery-thumb{width:5.263%}.epyt-gallery-allthumbs.epyt-cols-20 .epyt-gallery-thumb{width:5%}.epyt-pagebutton.hide,.epyt-pagenumbers.hide{display:none!important;opacity:0!important;visibility:hidden!important}.epyt-gallery-subscribe{clear:both;padding:15px 0 10px;text-align:center}.epyt-gallery-subscribe a.epyt-gallery-subbutton,.epyt-gallery-subscribe a.epyt-gallery-subbutton:hover{background-color:#e62117!important;border-radius:3px;color:#fff!important;display:inline-block;padding:5px 10px;text-decoration:none!important}.epyt-gallery-subscribe a.epyt-gallery-subbutton img{background:transparent;-webkit-box-shadow:none;box-shadow:none;display:inline-block;height:auto!important;margin:0;padding:0 6px 3px 0;vertical-align:middle!important;width:20px!important}body div.__youtube_prefs__.__youtube_prefs_gdpr__{background-color:#000;background-image:-webkit-linear-gradient(top,#000,#444);background-image:linear-gradient(180deg,#000,#444);height:auto;padding:25px;text-align:left}body div.__youtube_prefs__.__youtube_prefs_gdpr__ *{color:#e3e3e3!important}body div.__youtube_prefs__.__youtube_prefs_gdpr__ a{text-decoration:underline}body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__,body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover{background:#e62117!important;border-radius:3px;border-width:0;box-sizing:border-box;color:#fff!important;display:inline-block;font-weight:400;padding:5px 10px;text-decoration:none!important}body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ img{background:transparent;-webkit-box-shadow:none;box-shadow:none;display:inline-block;height:auto!important;margin-left:8px;padding:0 6px 3px 0;vertical-align:middle!important;width:20px!important}body .epyt-gallery-img-gdpr{background-color:#000;background-image:-webkit-linear-gradient(top,#000,#444);background-image:linear-gradient(180deg,#000,#444)}.epyt-facade{height:0;max-width:100%;overflow:hidden;padding-bottom:56.25%;position:relative;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}.epyt-facade:hover{-webkit-filter:brightness(90%);-moz-filter:brightness(90%);filter:brightness(90%)}.epyt-facade img.epyt-facade-poster{border:none;cursor:pointer;display:block;height:auto;left:50%;margin:0;max-width:100%;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.epyt-facade button.epyt-facade-play{background-color:transparent!important;border-width:0!important;cursor:pointer;height:48px;left:50%;margin-left:-34px;margin-top:-24px;position:absolute;top:50%;-webkit-transition:opacity .25s cubic-bezier(0,0,.2,1);transition:opacity .25s cubic-bezier(0,0,.2,1);width:68px}.epyt-facade button.epyt-facade-play svg{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.epyt-facade button.epyt-facade-play svg .ytp-large-play-button-bg{-webkit-transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1);transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1);fill:#212121;fill-opacity:.8}.epyt-facade:hover button.epyt-facade-play svg .ytp-large-play-button-bg{-webkit-transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1);transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1);fill:red;fill-opacity:1}.wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.epyt-facade{bottom:0;left:0;position:absolute;right:0;top:0}.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__{position:relative}.wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__{bottom:0;left:0;overflow-y:auto;position:absolute;right:0;top:0}.wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper:before{padding:0}.wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper .epyt-is-override.__youtube_prefs_gdpr__{bottom:unset;left:unset;position:relative;right:unset;top:unset}.clearfix::before,.clearfix::after{content:" ";display:table;clear:both}.eael-testimonial-slider.nav-top-left,.eael-testimonial-slider.nav-top-right,.eael-team-slider.nav-top-left,.eael-team-slider.nav-top-right,.eael-logo-carousel.nav-top-left,.eael-logo-carousel.nav-top-right,.eael-post-carousel.nav-top-left,.eael-post-carousel.nav-top-right,.eael-product-carousel.nav-top-left,.eael-product-carousel.nav-top-right{padding-top:40px}.eael-contact-form input[type=text],.eael-contact-form input[type=email],.eael-contact-form input[type=url],.eael-contact-form input[type=tel],.eael-contact-form input[type=date],.eael-contact-form input[type=number],.eael-contact-form textarea{background:#fff;box-shadow:none;-webkit-box-shadow:none;float:none;height:auto;margin:0;outline:0;width:100%}.eael-contact-form input[type=submit]{border:0;float:none;height:auto;margin:0;padding:10px 20px;width:auto;-webkit-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-contact-form.placeholder-hide input::-webkit-input-placeholder,.eael-contact-form.placeholder-hide textarea::-webkit-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input::-moz-placeholder,.eael-contact-form.placeholder-hide textarea::-moz-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-ms-input-placeholder,.eael-contact-form.placeholder-hide textarea:-ms-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-moz-placeholder,.eael-contact-form.placeholder-hide textarea:-moz-placeholder{opacity:0;visibility:hidden}.eael-custom-radio-checkbox input[type=checkbox],.eael-custom-radio-checkbox input[type=radio]{-webkit-appearance:none;-moz-appearance:none;border-style:solid;border-width:0;outline:none;min-width:1px;width:15px;height:15px;background:#ddd;padding:3px}.eael-custom-radio-checkbox input[type=checkbox]:before,.eael-custom-radio-checkbox input[type=radio]:before{content:"";width:100%;height:100%;padding:0;margin:0;display:block}.eael-custom-radio-checkbox input[type=checkbox]:checked:before,.eael-custom-radio-checkbox input[type=radio]:checked:before{background:#999;-webkit-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-custom-radio-checkbox input[type=radio]{border-radius:50%}.eael-custom-radio-checkbox input[type=radio]:before{border-radius:50%}.eael-post-elements-readmore-btn{font-size:12px;font-weight:500;-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;display:inline-block}.elementor-lightbox .dialog-widget-content{width:100%;height:100%}.eael-contact-form-align-left,.elementor-widget-eael-weform.eael-contact-form-align-left .eael-weform-container{margin:0 auto 0 0;display:inline-block;text-align:left}.eael-contact-form-align-center,.elementor-widget-eael-weform.eael-contact-form-align-center .eael-weform-container{float:none;margin:0 auto;display:inline-block;text-align:left}.eael-contact-form-align-right,.elementor-widget-eael-weform.eael-contact-form-align-right .eael-weform-container{margin:0 0 0 auto;display:inline-block;text-align:left}.eael-force-hide{display:none !important}.eael-d-none{display:none !important}.eael-d-block{display:block !important}.eael-h-auto{height:auto !important}.theme-martfury .elementor-wc-products .woocommerce ul.products li.product .product-inner .mf-rating .eael-star-rating.star-rating~.count{display:none}.theme-martfury .elementor-wc-products .woocommerce ul.products li.product .product-inner .mf-rating .eael-star-rating.star-rating{display:none}.sr-only{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.elementor-widget-eael-adv-tabs .eael-tab-content-item,.elementor-widget-eael-adv-accordion .eael-accordion-content,.elementor-widget-eael-data-table .td-content,.elementor-widget-eael-info-box .eael-infobox-template-wrapper,.elementor-widget-eael-countdown .eael-countdown-expiry-template,.elementor-widget-eael-countdown .eael-countdown-container,.elementor-widget-eael-cta-box .eael-cta-template-wrapper,.elementor-widget-eael-toggle .eael-toggle-primary-wrap,.elementor-widget-eael-toggle .eael-toggle-secondary-wrap,.elementor-widget-eael-protected-content .eael-protected-content-message,.elementor-widget-eael-protected-content .protected-content,.eael-offcanvas-content-visible .eael-offcanvas-body,.elementor-widget-eael-stacked-cards .eael-stacked-cards__item{position:relative}.elementor-widget-eael-adv-tabs .eael-tab-content-item:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-adv-accordion .eael-accordion-content:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-data-table .td-content:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-info-box .eael-infobox-template-wrapper:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-countdown .eael-countdown-expiry-template:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-countdown .eael-countdown-container:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-cta-box .eael-cta-template-wrapper:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-toggle .eael-toggle-primary-wrap:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-toggle .eael-toggle-secondary-wrap:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-protected-content .eael-protected-content-message:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-protected-content .protected-content:hover .eael-onpage-edit-template-wrapper,.eael-offcanvas-content-visible .eael-offcanvas-body:hover .eael-onpage-edit-template-wrapper,.elementor-widget-eael-stacked-cards .eael-stacked-cards__item:hover .eael-onpage-edit-template-wrapper{display:block}.eael-widget-otea-active .elementor-element:hover>.elementor-element-overlay,.eael-widget-otea-active .elementor-empty-view,.eael-widget-otea-active .elementor-add-section-inline,.eael-widget-otea-active .elementor-add-section{display:initial !important}.eael-onpage-edit-template-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:none;border:2px solid #5eead4}.eael-onpage-edit-template-wrapper::after{position:absolute;content:"";top:0;left:0;right:0;bottom:0;z-index:2;background:#5eead4;opacity:.3}.eael-onpage-edit-template-wrapper.eael-onpage-edit-activate{display:block}.eael-onpage-edit-template-wrapper.eael-onpage-edit-activate::after{display:none}.eael-onpage-edit-template-wrapper .eael-onpage-edit-template{background:#5eead4;color:#000;width:150px;text-align:center;height:30px;line-height:30px;font-size:12px;cursor:pointer;position:relative;z-index:3;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.eael-onpage-edit-template-wrapper .eael-onpage-edit-template::before{content:"";border-top:30px solid #5eead4;border-right:0;border-bottom:0;border-left:14px solid rgba(0,0,0,0);right:100%;position:absolute}.eael-onpage-edit-template-wrapper .eael-onpage-edit-template::after{content:"";border-top:0;border-right:0;border-bottom:30px solid rgba(0,0,0,0);border-left:14px solid #5eead4;left:100%;position:absolute}.eael-onpage-edit-template-wrapper .eael-onpage-edit-template>i{margin-right:8px}.elementor-edit-area-active .eael_wd_liquid_glass_shadow-effect1,.elementor-edit-area-active .eael_wd_liquid_glass_shadow-effect2,.elementor-edit-area-active .eael_wd_liquid_glass_shadow-effect3,.elementor-edit-area-active .eael_wd_liquid_glass_shadow-effect4{-webkit-box-shadow:inherit !important;box-shadow:inherit !important}
.elementor-14568 .elementor-element.elementor-element-50318d42 .jlcus_sec_title{--sect-t-algin:left;--sect-line-space:8px;--sect-t-size:15px;--sect-t-space:0em !important;--sect-t-color:#31942E;--ac-line-color:#000;}.elementor-14568 .elementor-element.elementor-element-50318d42 .jlcus_sec_title .jl_sct_bt{top:0px;}.elementor-14568 .elementor-element.elementor-element-50318d42 .jlcus_sec_title .jl-heading-text{text-transform:uppercase !important;}.options_dark_skin .elementor-14568 .elementor-element.elementor-element-50318d42 .jlcus_sec_title{--sect-t-color:#31942E;--ac-line-color:#fff;}.elementor-14568 .elementor-element.elementor-element-1e21edea .jlcm-main-jl_menu_list.widget_nav_menu ul li a, .elementor-14568 .elementor-element.elementor-element-1e21edea .jlcm-main-jl_menu_inline.widget_nav_menu ul li a{font-size:13px;}.elementor-14568 .elementor-element.elementor-element-1e21edea .jlcm-main-jl_menu_list.widget_nav_menu ul{grid-template-columns:repeat(2,minmax(0,1fr)) !important;display:grid !important;padding:0px;grid-column-gap:7px !important;grid-row-gap:7px !important;}.elementor-14568 .elementor-element.elementor-element-1e21edea .jlcm-main-jl_menu_list.widget_nav_menu ul li{list-style:none;}.elementor-14566 .elementor-element.elementor-element-76c758f1 .jlcus_sec_title{--sect-t-algin:left;--sect-line-space:8px;--sect-t-size:15px;--sect-t-space:0em !important;--sect-t-color:#31942E;--ac-line-color:#000;}.elementor-14566 .elementor-element.elementor-element-76c758f1 .jlcus_sec_title .jl_sct_bt{top:0px;}.elementor-14566 .elementor-element.elementor-element-76c758f1 .jlcus_sec_title .jl-heading-text{text-transform:uppercase !important;}.options_dark_skin .elementor-14566 .elementor-element.elementor-element-76c758f1 .jlcus_sec_title{--sect-t-color:#31942E;--ac-line-color:#fff;}.elementor-14566 .elementor-element.elementor-element-1c2566e6 .jlcm-main-jl_menu_list.widget_nav_menu ul li a, .elementor-14566 .elementor-element.elementor-element-1c2566e6 .jlcm-main-jl_menu_inline.widget_nav_menu ul li a{font-size:13px;}.elementor-14566 .elementor-element.elementor-element-1c2566e6 .jlcm-main-jl_menu_list.widget_nav_menu ul{grid-template-columns:repeat(2,minmax(0,1fr)) !important;display:grid !important;padding:0px;grid-column-gap:7px !important;grid-row-gap:7px !important;}.elementor-14566 .elementor-element.elementor-element-1c2566e6 .jlcm-main-jl_menu_list.widget_nav_menu ul li{list-style:none;}.elementor-11611 .elementor-element.elementor-element-16bc1984 .jlcus_sec_title{--sect-t-algin:left;--sect-line-space:8px;--sect-t-size:16px;--sect-t-space:0em !important;--sect-t-color:#FFFFFF;--ac-line-color:#000;}.elementor-11611 .elementor-element.elementor-element-16bc1984 .jlcus_sec_title .jl_sct_bt{top:0px;}.elementor-11611 .elementor-element.elementor-element-16bc1984 .jlcus_sec_title .jl-heading-text{text-transform:uppercase !important;}.options_dark_skin .elementor-11611 .elementor-element.elementor-element-16bc1984 .jlcus_sec_title{--sect-t-color:#FFFFFF;--ac-line-color:#fff;}.elementor-11611 .elementor-element.elementor-element-679857b7 .jlcm-main-jl_menu_list.widget_nav_menu ul{grid-template-columns:repeat(2,minmax(0,1fr)) !important;display:grid !important;padding:0px;grid-column-gap:7px !important;grid-row-gap:7px !important;}.elementor-11611 .elementor-element.elementor-element-679857b7 .jlcm-main-jl_menu_list.widget_nav_menu ul li{list-style:none;}.elementor-11609 .elementor-element.elementor-element-16fe2db8 .jlcus_sec_title{--sect-t-algin:left;--sect-t-size:18px;--sect-t-space:0em !important;--sect-t-color:#000;--ac-line-color:#000;--sect-line-color:#e9ecef;}.elementor-11609 .elementor-element.elementor-element-16fe2db8 .jlcus_sec_title .jl_sct_bt{top:0px;}.elementor-11609 .elementor-element.elementor-element-16fe2db8 .jlcus_sec_title .jl-heading-text{text-transform:uppercase !important;}.options_dark_skin .elementor-11609 .elementor-element.elementor-element-16fe2db8 .jlcus_sec_title{--sect-t-color:#fff;--ac-line-color:#fff;--sect-line-color:#49494b;}.elementor-11609 .elementor-element.elementor-element-27060499 .jl_mmlist_layout .jl_fe_title{font-size:15px !important;}.elementor-11609 .elementor-element.elementor-element-27060499 .jl_mmlist_layout .jl_imgw.jl_radus_e{border-radius:71px;}.elementor-11609 .elementor-element.elementor-element-27060499 .jl_mmlist_layout .jl_img_holder{flex:0 0 80px;}.elementor-11609 .elementor-element.elementor-element-27060499 .jl_mmlist_layout .jl_imgw{height:80px;}/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-threads:before{content:"\e9cb"}.fa-threads-square:before{content:"\e9cc"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-x-twitter:before{content:"\e9ca"}.fa-x-twitter-square:before{content:"\e9c9"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot);src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff) format("woff"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900}/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot);src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff) format("woff"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.ttf) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400}/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot);src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff) format("woff"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400}@keyframes elementor-animation-pulse{25%{transform:scale(1.1)}75%{transform:scale(.9)}}.elementor-animation-pulse:active,.elementor-animation-pulse:focus,.elementor-animation-pulse:hover{animation-name:elementor-animation-pulse;animation-duration:1s;animation-timing-function:linear;animation-iteration-count:infinite}.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0:not(:has(.elementor-widget-container)){font-size:0;line-height:1}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;align-items:center;background-color:#69727d;cursor:pointer;display:inline-flex;justify-content:center;text-align:center}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{color:#fff;opacity:.9}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.e--ua-appleWebkit.rtl{--flex-right:flex-start}.e--ua-appleWebkit .elementor-share-buttons--align-right,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-right{--justify-content:var(--flex-right,flex-end)}.e--ua-appleWebkit .elementor-share-buttons--align-center,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-center{--justify-content:center}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid{display:flex;flex-wrap:wrap;justify-content:var(--justify-content,space-between);margin-inline:calc(-.5 * var(--grid-column-gap));width:auto}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid-item{margin-inline:calc(.5 * var(--grid-column-gap))}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid{display:inline-block}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid-item{margin-inline:0}@media (max-width:1024px){.e--ua-appleWebkit .elementor-share-buttons-tablet--align-right,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-right{--justify-content:var(--flex-right,flex-end)}.e--ua-appleWebkit .elementor-share-buttons-tablet--align-center,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-center{--justify-content:center}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid{display:flex;flex-wrap:wrap;justify-content:var(--justify-content,space-between);margin-inline:calc(-.5 * var(--grid-column-gap));width:auto}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid-item{margin-inline:calc(.5 * var(--grid-column-gap))}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid{display:inline-block}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid-item{margin-inline:0}}@media (max-width:767px){.e--ua-appleWebkit .elementor-share-buttons-mobile--align-right,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-right{--justify-content:var(--flex-right,flex-end)}.e--ua-appleWebkit .elementor-share-buttons-mobile--align-center,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-center{--justify-content:center}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid{display:flex;flex-wrap:wrap;justify-content:var(--justify-content,space-between);margin-inline:calc(-.5 * var(--grid-column-gap));width:auto}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid-item{margin-inline:calc(.5 * var(--grid-column-gap))}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid{display:inline-block}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid-item{margin-inline:0}}