/* 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;
}
.wp-block-accordion{box-sizing:border-box}.wp-block-accordion-item.is-open>.wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon{transform:rotate(45deg)}@media (prefers-reduced-motion:no-preference){.wp-block-accordion-item{transition:grid-template-rows .3s ease-out}.wp-block-accordion-item>.wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon{transition:transform .2s ease-in-out}}.wp-block-accordion-heading__toggle{align-items:center;background:none;border:none;color:inherit;cursor:pointer;display:flex;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;overflow:hidden;padding:var(--wp--preset--spacing--20,1em) 0;text-align:inherit;text-decoration:inherit;text-transform:inherit;width:100%;word-spacing:inherit}.wp-block-accordion-heading__toggle:not(:focus-visible){outline:none}.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title{text-decoration:underline}.wp-block-accordion-heading__toggle-title{flex:1}.wp-block-accordion-heading__toggle-icon{align-items:center;display:flex;height:1.2em;justify-content:center;width:1.2em}.wp-block-accordion-panel[aria-hidden=true],.wp-block-accordion-panel[inert]{display:none;margin-block-start:0}.wp-block-archives{box-sizing:border-box}.wp-block-archives-dropdown label{display:block}.wp-block-avatar{line-height:0}.wp-block-avatar,.wp-block-avatar img{box-sizing:border-box}.wp-block-avatar.aligncenter{text-align:center}.wp-block-audio{box-sizing:border-box}.wp-block-audio :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-audio audio{min-width:300px;width:100%}.wp-block-breadcrumbs{box-sizing:border-box}.wp-block-breadcrumbs ol{flex-wrap:wrap;list-style:none}.wp-block-breadcrumbs li,.wp-block-breadcrumbs ol{align-items:center;display:flex;margin:0;padding:0}.wp-block-breadcrumbs li:not(:last-child):after{content:var(--separator,"/");margin:0 .5em;opacity:.7}.wp-block-breadcrumbs span{color:inherit}.wp-block-button__link{align-content:center;box-sizing:border-box;cursor:pointer;display:inline-block;height:100%;text-align:center;word-break:break-word}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-button[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - var(--wp--style--block-gap, .5em)*.75)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - var(--wp--style--block-gap, .5em)*.5)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - var(--wp--style--block-gap, .5em)*.25)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{flex-basis:100%;width:100%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25{width:25%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50{width:50%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75{width:75%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){border:2px solid;padding:.667em 1.333em}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){color:currentColor}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){background-color:initial;background-image:none}.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar td,.wp-block-calendar th{border:1px solid;padding:.25em}.wp-block-calendar th{font-weight:400}.wp-block-calendar caption{background-color:inherit}.wp-block-calendar table{border-collapse:collapse;width:100%}.wp-block-calendar table.has-background th{background-color:inherit}.wp-block-calendar table.has-text-color th{color:inherit}.wp-block-calendar :where(table:not(.has-text-color)){color:#40464d}.wp-block-calendar :where(table:not(.has-text-color)) td,.wp-block-calendar :where(table:not(.has-text-color)) th{border-color:#ddd}:where(.wp-block-calendar table:not(.has-background) th){background:#ddd}.wp-block-categories{box-sizing:border-box}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-categories.wp-block-categories-dropdown.aligncenter{text-align:center}.wp-block-categories .wp-block-categories__label{display:block;width:100%}.wp-block-code{box-sizing:border-box}.wp-block-code code{
  /*!rtl:begin:ignore*/direction:ltr;display:block;font-family:inherit;overflow-wrap:break-word;text-align:initial;white-space:pre-wrap
  /*!rtl:end:ignore*/}.wp-block-columns{box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns{align-items:normal!important}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-stretch{align-self:stretch}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-post-comments{box-sizing:border-box}.wp-block-post-comments .alignleft{float:left}.wp-block-post-comments .alignright{float:right}.wp-block-post-comments .navigation:after{clear:both;content:"";display:table}.wp-block-post-comments .commentlist{clear:both;list-style:none;margin:0;padding:0}.wp-block-post-comments .commentlist .comment{min-height:2.25em;padding-left:3.25em}.wp-block-post-comments .commentlist .comment p{font-size:1em;line-height:1.8;margin:1em 0}.wp-block-post-comments .commentlist .children{list-style:none;margin:0;padding:0}.wp-block-post-comments .comment-author{line-height:1.5}.wp-block-post-comments .comment-author .avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;margin-top:.5em;width:2.5em}.wp-block-post-comments .comment-author cite{font-style:normal}.wp-block-post-comments .comment-meta{font-size:.875em;line-height:1.5}.wp-block-post-comments .comment-meta b{font-weight:400}.wp-block-post-comments .comment-meta .comment-awaiting-moderation{display:block;margin-bottom:1em;margin-top:1em}.wp-block-post-comments .comment-body .commentmetadata{font-size:.875em}.wp-block-post-comments .comment-form-author label,.wp-block-post-comments .comment-form-comment label,.wp-block-post-comments .comment-form-email label,.wp-block-post-comments .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments .comment-reply-title{margin-bottom:0}.wp-block-post-comments .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments .reply{font-size:.875em;margin-bottom:1.4em}.wp-block-post-comments input:not([type=submit]),.wp-block-post-comments textarea{border:1px solid #949494;font-family:inherit;font-size:1em}.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments textarea{padding:calc(.667em + 2px)}:where(.wp-block-post-comments input[type=submit]){border:none}.wp-block-comments{box-sizing:border-box}.wp-block-comments-pagination>.wp-block-comments-pagination-next,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,.wp-block-comments-pagination>.wp-block-comments-pagination-previous{font-size:inherit}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow{display:inline-block;margin-right:1ch}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow{display:inline-block;margin-left:1ch}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination.aligncenter{justify-content:center}.wp-block-comment-template{box-sizing:border-box;list-style:none;margin-bottom:0;max-width:100%;padding:0}.wp-block-comment-template li{clear:both}.wp-block-comment-template ol{list-style:none;margin-bottom:0;max-width:100%;padding-left:2rem}.wp-block-comment-template.alignleft{float:left}.wp-block-comment-template.aligncenter{margin-left:auto;margin-right:auto;width:fit-content}.wp-block-comment-template.alignright{float:right}.wp-block-comment-date{box-sizing:border-box}.comment-awaiting-moderation{display:block;font-size:.875em;line-height:1.5}.wp-block-comment-author-name,.wp-block-comment-content,.wp-block-comment-edit-link,.wp-block-comment-reply-link{box-sizing:border-box}.wp-block-cover,.wp-block-cover-image{align-items:center;background-position:50%;box-sizing:border-box;display:flex;justify-content:center;min-height:430px;overflow:hidden;overflow:clip;padding:1em;position:relative}.wp-block-cover .has-background-dim:not([class*=-background-color]),.wp-block-cover-image .has-background-dim:not([class*=-background-color]),.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover .has-background-dim.has-background-gradient,.wp-block-cover-image .has-background-dim.has-background-gradient{background-color:initial}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{background-color:inherit;content:""}.wp-block-cover .wp-block-cover__background,.wp-block-cover .wp-block-cover__gradient-background,.wp-block-cover-image .wp-block-cover__background,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover.has-background-dim:not(.has-background-gradient):before{bottom:0;left:0;opacity:.5;position:absolute;right:0;top:0}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0{opacity:0}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10{opacity:.1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20{opacity:.2}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30{opacity:.3}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40{opacity:.4}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50{opacity:.5}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60{opacity:.6}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70{opacity:.7}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80{opacity:.8}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90{opacity:.9}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover .wp-block-cover__inner-container,.wp-block-cover-image .wp-block-cover__inner-container{color:inherit;position:relative;width:100%}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0}.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover .wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background,.wp-block-cover-image .wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background{border:none;bottom:0;box-shadow:none;height:100%;left:0;margin:0;max-height:none;max-width:none;object-fit:cover;outline:none;padding:0;position:absolute;right:0;top:0;width:100%}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:fixed;background-repeat:no-repeat;background-size:cover}@supports (-webkit-touch-callout:inherit){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated,.wp-block-cover__image-background.is-repeated,video.wp-block-cover__video-background.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover .wp-block-cover-text,.wp-block-cover-image .wp-block-cover-image-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;margin-bottom:0;max-width:840px;padding:.44em;text-align:center;z-index:1}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background{z-index:0}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before{z-index:1}.has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container{z-index:auto}.wp-block-details{box-sizing:border-box}.wp-block-details summary{cursor:pointer}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-height:240px;min-width:320px}.wp-block-embed{overflow-wrap:break-word}.wp-block-embed :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{box-sizing:border-box}.wp-block-file:not(.wp-element-button){font-size:.8em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file *+.wp-block-file__button{margin-left:.75em}:where(.wp-block-file){margin-bottom:1.5em}.wp-block-file__embed{margin-bottom:1em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):where(a):active,:where(.wp-block-file__button):where(a):focus,:where(.wp-block-file__button):where(a):hover,:where(.wp-block-file__button):where(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-form-input__label{display:flex;flex-direction:column;gap:.25em;margin-bottom:.5em;width:100%}.wp-block-form-input__label.is-label-inline{align-items:center;flex-direction:row;gap:.5em}.wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content{margin-bottom:.5em}.wp-block-form-input__label:has(input[type=checkbox]){flex-direction:row;width:fit-content}.wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content{margin:0}.wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox]){flex-direction:row-reverse}.wp-block-form-input__label-content{width:fit-content}:where(.wp-block-form-input__input){font-size:1em;margin-bottom:.5em;padding:0 .5em}:where(.wp-block-form-input__input)[type=date],:where(.wp-block-form-input__input)[type=datetime-local],:where(.wp-block-form-input__input)[type=datetime],:where(.wp-block-form-input__input)[type=email],:where(.wp-block-form-input__input)[type=month],:where(.wp-block-form-input__input)[type=number],:where(.wp-block-form-input__input)[type=password],:where(.wp-block-form-input__input)[type=search],:where(.wp-block-form-input__input)[type=tel],:where(.wp-block-form-input__input)[type=text],:where(.wp-block-form-input__input)[type=time],:where(.wp-block-form-input__input)[type=url],:where(.wp-block-form-input__input)[type=week]{border-style:solid;border-width:1px;line-height:2;min-height:2em}textarea.wp-block-form-input__input{min-height:10em}.blocks-gallery-grid:not(.has-nested-images),.wp-block-gallery:not(.has-nested-images){display:flex;flex-wrap:wrap;list-style-type:none;margin:0;padding:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item{display:flex;flex-direction:column;flex-grow:1;justify-content:center;margin:0 1em 1em 0;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure{align-items:flex-end;display:flex;height:100%;justify-content:flex-start;margin:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img{display:block;height:auto;max-width:100%;width:auto}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption{background:linear-gradient(0deg,#000000b3,#0000004d 70%,#0000);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid:not(.has-nested-images) figcaption,.wp-block-gallery:not(.has-nested-images) figcaption{flex-grow:1}.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img{flex:1;height:100%;object-fit:cover;width:100%}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item{margin-right:0;width:100%}@media (min-width:600px){.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item{margin-right:1em;width:calc(33.33333% - .66667em)}.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item{margin-right:1em;width:calc(25% - .75em)}.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item{margin-right:1em;width:calc(20% - .8em)}.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item{margin-right:1em;width:calc(16.66667% - .83333em)}.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item{margin-right:1em;width:calc(14.28571% - .85714em)}.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item{margin-right:1em;width:calc(12.5% - .875em)}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid:not(.has-nested-images).alignleft,.blocks-gallery-grid:not(.has-nested-images).alignright,.wp-block-gallery:not(.has-nested-images).alignleft,.wp-block-gallery:not(.has-nested-images).alignright{max-width:420px;width:100%}.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-gallery:not(.is-cropped) .blocks-gallery-item{align-self:flex-start}figure.wp-block-gallery.has-nested-images{align-items:normal}.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){margin:0;width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2)}.wp-block-gallery.has-nested-images figure.wp-block-image{box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;max-width:100%;position:relative}.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div{flex-direction:column;flex-grow:1;margin:0}.wp-block-gallery.has-nested-images figure.wp-block-image img{display:block;height:auto;max-width:100%!important;width:auto}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption,.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{bottom:0;left:0;max-height:100%;position:absolute;right:0}.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{backdrop-filter:blur(3px);content:"";height:100%;-webkit-mask-image:linear-gradient(0deg,#000 20%,#0000);mask-image:linear-gradient(0deg,#000 20%,#0000);max-height:40%;pointer-events:none}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{box-sizing:border-box;color:#fff;font-size:13px;margin:0;overflow:auto;padding:1em;text-align:center;text-shadow:0 0 1.5px #000}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar{height:12px;width:12px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track{background-color:initial}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:initial;border:3px solid #0000;border-radius:8px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb{background-color:#fffc}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{scrollbar-color:#0000 #0000;scrollbar-gutter:stable both-edges;scrollbar-width:thin}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover{scrollbar-color:#fffc #0000}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{will-change:transform}@media (hover:none){.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{scrollbar-color:#fffc #0000}}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{background:linear-gradient(0deg,#0006,#0000)}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img{display:inline}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a{color:inherit}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a,.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div{flex:1 1 auto}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption{background:none;color:inherit;flex:initial;margin:0;padding:10px 10px 9px;position:relative;text-shadow:none}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before{content:none}.wp-block-gallery.has-nested-images figcaption{flex-basis:100%;flex-grow:1;text-align:center}.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image){margin-bottom:auto;margin-top:0}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image){align-self:inherit}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone){display:flex}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img{flex:1 0 0%;height:100%;object-fit:cover;width:100%}.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image){width:100%}@media (min-width:600px){.wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image){width:calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image){width:calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*.75)}.wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image){width:calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*.8)}.wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image){width:calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*.83333)}.wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image){width:calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*.85714)}.wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image){width:calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*.875)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image){width:calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*.5)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child{width:100%}}.wp-block-gallery.has-nested-images.alignleft,.wp-block-gallery.has-nested-images.alignright{max-width:420px;width:100%}.wp-block-gallery.has-nested-images.aligncenter{justify-content:center}.wp-block-group{box-sizing:border-box}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}.wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;backdrop-filter:blur(16px) saturate(180%);background-color:#5a5a5a40;border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto #5a5a5a40;outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:#5a5a5a40;border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .close-button{align-items:center;cursor:pointer;display:flex;justify-content:center;min-height:40px;min-width:40px;padding:0;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .close-button:focus,.wp-lightbox-overlay .close-button:hover,.wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:9999999999}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}ol.wp-block-latest-comments{box-sizing:border-box;margin-left:0}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8}.has-dates :where(.wp-block-latest-comments:not([style*=line-height])),.has-excerpts :where(.wp-block-latest-comments:not([style*=line-height])){line-height:1.5}.wp-block-latest-comments .wp-block-latest-comments{padding-left:0}.wp-block-latest-comments__comment{list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{list-style:none;min-height:2.25em}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:3.25em}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-latest-comments[class*=-font-size] a,.wp-block-latest-comments[style*=font-size] a{font-size:inherit}.wp-block-latest-posts{box-sizing:border-box}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both;overflow-wrap:break-word}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}:root :where(.wp-block-latest-posts.is-grid){padding:0}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;font-size:.8125em}.wp-block-latest-posts__post-excerpt,.wp-block-latest-posts__post-full-content{margin-bottom:1em;margin-top:.5em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;max-width:100%;width:auto}.wp-block-latest-posts__featured-image.alignleft{float:left;margin-right:1em}.wp-block-latest-posts__featured-image.alignright{float:right;margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}.wp-block-loginout{box-sizing:border-box}.wp-block-math{overflow-x:auto;overflow-y:hidden}.wp-block-media-text{box-sizing:border-box;
  /*!rtl:begin:ignore*/direction:ltr;
  /*!rtl:end:ignore*/display:grid;grid-template-columns:50% 1fr;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top>.wp-block-media-text__media{align-self:start}.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media,.wp-block-media-text>.wp-block-media-text__content,.wp-block-media-text>.wp-block-media-text__media{align-self:center}.wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom>.wp-block-media-text__media{align-self:end}.wp-block-media-text>.wp-block-media-text__media{
  /*!rtl:begin:ignore*/grid-column:1;grid-row:1;
  /*!rtl:end:ignore*/margin:0}.wp-block-media-text>.wp-block-media-text__content{direction:ltr;
  /*!rtl:begin:ignore*/grid-column:2;grid-row:1;
  /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media{
  /*!rtl:begin:ignore*/grid-column:2;grid-row:1
  /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content{
  /*!rtl:begin:ignore*/grid-column:1;grid-row:1
  /*!rtl:end:ignore*/}.wp-block-media-text__media a{display:block}.wp-block-media-text__media img,.wp-block-media-text__media video{height:auto;max-width:unset;vertical-align:middle;width:100%}.wp-block-media-text.is-image-fill>.wp-block-media-text__media{background-size:cover;height:100%;min-height:250px}.wp-block-media-text.is-image-fill>.wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill>.wp-block-media-text__media img{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0,0,0,0);border:0}.wp-block-media-text.is-image-fill-element>.wp-block-media-text__media{height:100%;min-height:250px;position:relative}.wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill-element>.wp-block-media-text__media img{height:100%;object-fit:cover;position:absolute;width:100%}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media{grid-column:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content{grid-column:1;grid-row:2}}.wp-block-navigation{position:relative}.wp-block-navigation ul{margin-bottom:0;margin-left:0;margin-top:0;padding-left:0}.wp-block-navigation ul,.wp-block-navigation ul li{list-style:none;padding:0}.wp-block-navigation .wp-block-navigation-item{align-items:center;display:flex;position:relative}.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty{display:none}.wp-block-navigation .wp-block-navigation-item__content{display:block;z-index:1}.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content{color:inherit}.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus{text-decoration:underline}.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus{text-decoration:line-through}.wp-block-navigation :where(a),.wp-block-navigation :where(a:active),.wp-block-navigation :where(a:focus){text-decoration:none}.wp-block-navigation .wp-block-navigation__submenu-icon{align-self:center;background-color:inherit;border:none;color:currentColor;display:inline-block;font-size:inherit;height:.6em;line-height:0;margin-left:.25em;padding:0;width:.6em}.wp-block-navigation .wp-block-navigation__submenu-icon svg{display:inline-block;stroke:currentColor;height:inherit;margin-top:.075em;width:inherit}.wp-block-navigation{--navigation-layout-justification-setting:flex-start;--navigation-layout-direction:row;--navigation-layout-wrap:wrap;--navigation-layout-justify:flex-start;--navigation-layout-align:center}.wp-block-navigation.is-vertical{--navigation-layout-direction:column;--navigation-layout-justify:initial;--navigation-layout-align:flex-start}.wp-block-navigation.no-wrap{--navigation-layout-wrap:nowrap}.wp-block-navigation.items-justified-center{--navigation-layout-justification-setting:center;--navigation-layout-justify:center}.wp-block-navigation.items-justified-center.is-vertical{--navigation-layout-align:center}.wp-block-navigation.items-justified-right{--navigation-layout-justification-setting:flex-end;--navigation-layout-justify:flex-end}.wp-block-navigation.items-justified-right.is-vertical{--navigation-layout-align:flex-end}.wp-block-navigation.items-justified-space-between{--navigation-layout-justification-setting:space-between;--navigation-layout-justify:space-between}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{align-items:normal;background-color:inherit;color:inherit;display:flex;flex-direction:column;opacity:0;position:absolute;z-index:2}@media not (prefers-reduced-motion){.wp-block-navigation .has-child .wp-block-navigation__submenu-container{transition:opacity .1s linear}}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{height:0;overflow:hidden;visibility:hidden;width:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content{display:flex;flex-grow:1;padding:.5em 1em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon{margin-left:auto;margin-right:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content{margin:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{left:-1px;top:100%}@media (min-width:782px){.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:-1px}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before{background:#0000;content:"";display:block;height:100%;position:absolute;right:100%;width:.5em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon{margin-right:.25em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg{transform:rotate(-90deg)}}.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container{height:auto;min-width:200px;opacity:1;overflow:visible;visibility:visible;width:auto}.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container{left:0;top:100%}@media (min-width:782px){.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:0}}.wp-block-navigation-submenu{display:flex;position:relative}.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg{stroke:currentColor}button.wp-block-navigation-item__content{background-color:initial;border:none;color:currentColor;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-align:left;text-transform:inherit}.wp-block-navigation-submenu__toggle{cursor:pointer}.wp-block-navigation-submenu__toggle[aria-expanded=true]+.wp-block-navigation__submenu-icon>svg,.wp-block-navigation-submenu__toggle[aria-expanded=true]>svg{transform:rotate(180deg)}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle{padding-left:0;padding-right:.85em}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon{margin-left:-.6em;pointer-events:none}.wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle){padding:0}.wp-block-navigation .wp-block-page-list,.wp-block-navigation__container,.wp-block-navigation__responsive-close,.wp-block-navigation__responsive-container,.wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-dialog{gap:inherit}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container{left:auto;right:0}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:-1px;right:-1px}@media (min-width:782px){.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:auto;right:100%}}.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container{background-color:#fff;border:1px solid #00000026}.wp-block-navigation.has-background .wp-block-navigation__submenu-container{background-color:inherit}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container{color:#000}.wp-block-navigation__container{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial);list-style:none;margin:0;padding-left:0}.wp-block-navigation__container .is-responsive{display:none}.wp-block-navigation__container:only-child,.wp-block-page-list:only-child{flex-grow:1}@keyframes overlay-menu__fade-in-animation{0%{opacity:0;transform:translateY(.5em)}to{opacity:1;transform:translateY(0)}}.wp-block-navigation__responsive-container{bottom:0;display:none;left:0;position:fixed;right:0;top:0}.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a){color:inherit}.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open){background-color:inherit!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open{background-color:inherit;display:flex;flex-direction:column}@media not (prefers-reduced-motion){.wp-block-navigation__responsive-container.is-menu-open{animation:overlay-menu__fade-in-animation .1s ease-out;animation-fill-mode:forwards}}.wp-block-navigation__responsive-container.is-menu-open{overflow:auto;padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem);z-index:100000}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-justification-setting,inherit);display:flex;flex-direction:column;flex-wrap:nowrap;overflow:visible;padding-top:calc(2rem + 24px)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{justify-content:flex-start}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container{border:none;height:auto;min-width:200px;opacity:1;overflow:initial;padding-left:2rem;padding-right:2rem;position:static;visibility:visible;width:auto}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{gap:inherit}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{padding-top:var(--wp--style--block-gap,2em)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content{padding:0}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{align-items:var(--navigation-layout-justification-setting,initial);display:flex;flex-direction:column}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list{background:#0000!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:auto;right:auto}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open){background-color:inherit;display:block;position:relative;width:100%;z-index:auto}.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:0}}.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open{background-color:#fff}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open{color:#000}.wp-block-navigation__toggle_button_label{font-size:1rem;font-weight:700}.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open{background:#0000;border:none;color:currentColor;cursor:pointer;margin:0;padding:0;text-transform:inherit;vertical-align:middle}.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg{fill:currentColor;display:block;height:24px;pointer-events:none;width:24px}.wp-block-navigation__responsive-container-open{display:flex}.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open{font-family:inherit;font-size:inherit;font-weight:inherit}@media (min-width:600px){.wp-block-navigation__responsive-container-open:not(.always-shown){display:none}}.wp-block-navigation__responsive-container-close{position:absolute;right:0;top:0;z-index:2}.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close{font-family:inherit;font-size:inherit;font-weight:inherit}.wp-block-navigation__responsive-close{width:100%}.has-modal-open .wp-block-navigation__responsive-close{margin-left:auto;margin-right:auto;max-width:var(--wp--style--global--wide-size,100%)}.wp-block-navigation__responsive-close:focus{outline:none}.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog{box-sizing:border-box}.wp-block-navigation__responsive-dialog{position:relative}.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:46px}@media (min-width:782px){.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:32px}}html.has-modal-open{overflow:hidden}.wp-block-navigation .wp-block-navigation-item__label{overflow-wrap:break-word}.wp-block-navigation .wp-block-navigation-item__description{display:none}.link-ui-tools{outline:1px solid #f0f0f0;padding:8px}.link-ui-block-inserter{padding-top:8px}.link-ui-block-inserter__back{margin-left:8px;text-transform:uppercase}.wp-block-navigation .wp-block-page-list{align-items:var(--navigation-layout-align,initial);background-color:inherit;display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation .wp-block-navigation-item{background-color:inherit}.wp-block-page-list{box-sizing:border-box}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}.wp-block-post-author{box-sizing:border-box;display:flex;flex-wrap:wrap}.wp-block-post-author__byline{font-size:.5em;margin-bottom:0;margin-top:0;width:100%}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{font-size:.7em;margin-bottom:.7em}.wp-block-post-author__content{flex-basis:0;flex-grow:1}.wp-block-post-author__name{margin:0}.wp-block-post-author-biography{box-sizing:border-box}:where(.wp-block-post-comments-form input:not([type=submit])),:where(.wp-block-post-comments-form textarea){border:1px solid #949494;font-family:inherit;font-size:1em}:where(.wp-block-post-comments-form input:where(:not([type=submit]):not([type=checkbox]))),:where(.wp-block-post-comments-form textarea){padding:calc(.667em + 2px)}.wp-block-post-comments-form{box-sizing:border-box}.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title){font-weight:inherit}.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title){font-family:inherit}.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title),.wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title){font-size:inherit}.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title){line-height:inherit}.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title){font-style:inherit}.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title){letter-spacing:inherit}.wp-block-post-comments-form :where(input[type=submit]){box-shadow:none;cursor:pointer;display:inline-block;overflow-wrap:break-word;text-align:center}.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden]),.wp-block-post-comments-form .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments-form .comment-form-author label,.wp-block-post-comments-form .comment-form-email label,.wp-block-post-comments-form .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments-form .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments-form .comment-reply-title{margin-bottom:0}.wp-block-post-comments-form .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments-count{box-sizing:border-box}.wp-block-post-content{display:flow-root}.wp-block-post-comments-link,.wp-block-post-date{box-sizing:border-box}:where(.wp-block-post-excerpt){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__excerpt{margin-bottom:0;margin-top:0}.wp-block-post-excerpt__more-text{margin-bottom:0;margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__more-link{display:inline-block}.wp-block-post-featured-image{margin-left:0;margin-right:0}.wp-block-post-featured-image a{display:block;height:100%}.wp-block-post-featured-image :where(img){box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom;width:100%}.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{width:100%}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim{background-color:#000;inset:0;position:absolute}.wp-block-post-featured-image{position:relative}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient{background-color:initial}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0{opacity:0}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10{opacity:.1}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20{opacity:.2}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30{opacity:.3}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40{opacity:.4}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50{opacity:.5}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60{opacity:.6}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70{opacity:.7}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80{opacity:.8}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90{opacity:.9}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100{opacity:1}.wp-block-post-featured-image:where(.alignleft,.alignright){width:100%}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous{display:inline-block;margin-right:1ch}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next{display:inline-block;margin-left:1ch}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-post-navigation-link.has-text-align-left[style*="writing-mode: vertical-lr"],.wp-block-post-navigation-link.has-text-align-right[style*="writing-mode: vertical-rl"]{rotate:180deg}.wp-block-post-terms{box-sizing:border-box}.wp-block-post-terms .wp-block-post-terms__separator{white-space:pre-wrap}.wp-block-post-time-to-read,.wp-block-post-title{box-sizing:border-box}.wp-block-post-title{word-break:break-word}.wp-block-post-title :where(a){display:inline-block;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-decoration:inherit}.wp-block-post-author-name{box-sizing:border-box}.wp-block-preformatted{box-sizing:border-box;white-space:pre-wrap}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}.wp-block-pullquote{box-sizing:border-box;margin:0 0 1em;overflow-wrap:break-word;padding:4em 0;text-align:center}.wp-block-pullquote blockquote,.wp-block-pullquote p{color:inherit}.wp-block-pullquote blockquote{margin:0}.wp-block-pullquote p{margin-top:0}.wp-block-pullquote p:last-child{margin-bottom:0}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote.has-text-align-left blockquote{text-align:left}.wp-block-pullquote.has-text-align-right blockquote{text-align:right}.wp-block-pullquote.has-text-align-center blockquote{text-align:center}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:2em;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote :where(cite){color:inherit;display:block}.wp-block-post-template{box-sizing:border-box;list-style:none;margin-bottom:0;margin-top:0;max-width:100%;padding:0}.wp-block-post-template.is-flex-container{display:flex;flex-direction:row;flex-wrap:wrap;gap:1.25em}.wp-block-post-template.is-flex-container>li{margin:0;width:100%}@media (min-width:600px){.wp-block-post-template.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}}@media (max-width:600px){.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid{grid-template-columns:1fr}}.wp-block-post-template-is-layout-constrained>li>.alignright,.wp-block-post-template-is-layout-flow>li>.alignright{float:right;margin-inline-end:0;margin-inline-start:2em}.wp-block-post-template-is-layout-constrained>li>.alignleft,.wp-block-post-template-is-layout-flow>li>.alignleft{float:left;margin-inline-end:2em;margin-inline-start:0}.wp-block-post-template-is-layout-constrained>li>.aligncenter,.wp-block-post-template-is-layout-flow>li>.aligncenter{margin-inline-end:auto;margin-inline-start:auto}.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type{margin-inline-start:auto}.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child{margin-inline-end:auto}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow{display:inline-block;margin-right:1ch}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination .wp-block-query-pagination-next-arrow{display:inline-block;margin-left:1ch}.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination.aligncenter{justify-content:center}.wp-block-query-title,.wp-block-query-total,.wp-block-quote{box-sizing:border-box}.wp-block-quote{overflow-wrap:break-word}.wp-block-quote.is-large:where(:not(.is-style-plain)),.wp-block-quote.is-style-large:where(:not(.is-style-plain)){margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large:where(:not(.is-style-plain)) p,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer{font-size:1.125em;text-align:right}.wp-block-quote>cite{display:block}.wp-block-read-more{display:block;width:fit-content}.wp-block-read-more:where(:not([style*=text-decoration])){text-decoration:none}.wp-block-read-more:where(:not([style*=text-decoration])):active,.wp-block-read-more:where(:not([style*=text-decoration])):focus{text-decoration:none}ul.wp-block-rss.alignleft{margin-right:2em}ul.wp-block-rss.alignright{margin-left:2em}ul.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0}ul.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){ul.wp-block-rss.columns-2 li{width:calc(50% - 1em)}ul.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}ul.wp-block-rss.columns-4 li{width:calc(25% - 1em)}ul.wp-block-rss.columns-5 li{width:calc(20% - 1em)}ul.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;font-size:.8125em}.wp-block-rss{box-sizing:border-box;list-style:none;padding:0}.wp-block-search__button{margin-left:10px;word-break:normal}.wp-block-search__button.has-icon{line-height:0}.wp-block-search__button svg{height:1.25em;min-height:24px;min-width:24px;width:1.25em;fill:currentColor;vertical-align:text-bottom}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__button{box-sizing:border-box;display:flex;flex-shrink:0;justify-content:center;margin-left:0;max-width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{min-width:0!important;transition-property:width}.wp-block-search.wp-block-search__button-only .wp-block-search__input{flex-basis:100%;transition-duration:.3s}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper{overflow:hidden}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input{border-left-width:0!important;border-right-width:0!important;flex-basis:0;flex-grow:0;margin:0;min-width:0!important;padding-left:0!important;padding-right:0!important;width:0!important}:where(.wp-block-search__input){appearance:none;border:1px solid #949494;flex-grow:1;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin-left:0;margin-right:0;min-width:3rem;padding:8px;text-decoration:unset!important;text-transform:inherit}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){background-color:#fff;border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:none}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{float:right}.wp-block-separator{border:none;border-top:2px solid}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}.wp-block-separator.is-style-dots{background:none!important;border:none!important}.wp-block-site-logo{box-sizing:border-box;line-height:0}.wp-block-site-logo a{display:inline-block;line-height:0}.wp-block-site-logo.is-default-size img{height:auto;width:120px}.wp-block-site-logo img{height:auto;max-width:100%}.wp-block-site-logo a,.wp-block-site-logo img{border-radius:inherit}.wp-block-site-logo.aligncenter{margin-left:auto;margin-right:auto;text-align:center}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px}.wp-block-site-tagline,.wp-block-site-title{box-sizing:border-box}.wp-block-site-title :where(a){color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-decoration:inherit}.wp-block-social-links{background:none;box-sizing:border-box;margin-left:0;padding-left:0;padding-right:0;text-indent:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{border-bottom:0;box-shadow:none;text-decoration:none}.wp-block-social-links .wp-social-link svg{height:1em;width:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){font-size:.65em;margin-left:.5em;margin-right:.5em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{display:flex;justify-content:center}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{border-radius:9999px;display:block}@media not (prefers-reduced-motion){.wp-block-social-link{transition:transform .1s ease}}.wp-block-social-link{height:auto}.wp-block-social-link a{align-items:center;display:flex;line-height:0}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link.wp-social-link{display:inline-block;margin:0;padding:0}.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited{color:currentColor;fill:currentColor}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{background-color:#f0f0f0;color:#444}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{background-color:#f90;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{background-color:#0757fe;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord{background-color:#5865f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{background-color:#f45800;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{background-color:#0866ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{background-color:#0461dd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{background-color:#e65678;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{background-color:#24292d;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{background-color:#ea4434;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{background-color:#f00075;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{background-color:#f6405f;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{background-color:#e60122;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{background-color:#ef4155;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{background-color:#ff4500;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{background-color:#0478d7;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{background-color:#1bd760;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{background-color:#2aabee;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{background-color:#011835;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{background-color:#6440a4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{background-color:#4680c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{background-color:#d32422;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link{background:none}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{height:1.25em;width:1.25em}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{color:#f90}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{color:#1ea0c3}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{color:#0757fe}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{color:#0a7aff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{color:#1e1f26}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{color:#02e49b}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord{color:#5865f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{color:#e94c89}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{color:#4280ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{color:#f45800}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{color:#0866ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{color:#0461dd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{color:#e65678}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{color:#24292d}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{color:#382110}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{color:#ea4434}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{color:#1d4fc4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{color:#f00075}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{color:#e21b24}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{color:#0d66c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{color:#3288d4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{color:#f6405f}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{color:#e60122}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{color:#ef4155}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{color:#ff4500}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{color:#0478d7}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{color:#fff;stroke:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{color:#ff5600}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{color:#1bd760}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{color:#2aabee}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{color:#011835}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{color:#6440a4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{color:#1da1f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{color:#1eb7ea}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{color:#4680c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{color:#25d366}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{color:#3499cd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{color:#d32422}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.6666666667em;padding-right:.6666666667em}.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label{color:#000}.wp-block-spacer{clear:both}.wp-block-tag-cloud{box-sizing:border-box}.wp-block-tag-cloud.aligncenter{justify-content:center;text-align:center}.wp-block-tag-cloud a{display:inline-block;margin-right:5px}.wp-block-tag-cloud span{display:inline-block;margin-left:5px;text-decoration:none}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset!important;margin-right:0;padding:1ch 2ch;text-decoration:none!important}.wp-block-table{overflow-x:auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{border:1px solid;padding:.5em}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{background-color:initial;border-collapse:inherit;border-spacing:0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:#0000}.wp-block-table.is-style-stripes{border-bottom:1px solid #f0f0f0}.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr,.wp-block-table .has-border-color>*{border-color:inherit}.wp-block-table table[style*=border-top-color] tr:first-child,.wp-block-table table[style*=border-top-color] tr:first-child td,.wp-block-table table[style*=border-top-color] tr:first-child th,.wp-block-table table[style*=border-top-color]>*,.wp-block-table table[style*=border-top-color]>* td,.wp-block-table table[style*=border-top-color]>* th{border-top-color:inherit}.wp-block-table table[style*=border-top-color] tr:not(:first-child){border-top-color:initial}.wp-block-table table[style*=border-right-color] td:last-child,.wp-block-table table[style*=border-right-color] th,.wp-block-table table[style*=border-right-color] tr,.wp-block-table table[style*=border-right-color]>*{border-right-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:last-child,.wp-block-table table[style*=border-bottom-color] tr:last-child td,.wp-block-table table[style*=border-bottom-color] tr:last-child th,.wp-block-table table[style*=border-bottom-color]>*,.wp-block-table table[style*=border-bottom-color]>* td,.wp-block-table table[style*=border-bottom-color]>* th{border-bottom-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:not(:last-child){border-bottom-color:initial}.wp-block-table table[style*=border-left-color] td:first-child,.wp-block-table table[style*=border-left-color] th,.wp-block-table table[style*=border-left-color] tr,.wp-block-table table[style*=border-left-color]>*{border-left-color:inherit}.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr,.wp-block-table table[style*=border-style]>*{border-style:inherit}.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr,.wp-block-table table[style*=border-width]>*{border-style:inherit;border-width:inherit}:root :where(.wp-block-table-of-contents){box-sizing:border-box}.wp-block-term-count{box-sizing:border-box}:where(.wp-block-term-description){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}.wp-block-term-description p{margin-bottom:0;margin-top:0}.wp-block-term-name{box-sizing:border-box}.wp-block-term-template{box-sizing:border-box;list-style:none;margin-bottom:0;margin-top:0;max-width:100%;padding:0}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.3333333333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{overflow:auto;white-space:pre-wrap}:where(pre.wp-block-verse){font-family:inherit}.wp-block-video{box-sizing:border-box}.wp-block-video video{height:auto;vertical-align:middle;width:100%}@supports (position:sticky){.wp-block-video [poster]{object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video :where(figcaption){margin-bottom:1em;margin-top:.5em}.editor-styles-wrapper,.entry-content{counter-reset:footnotes}a[data-fn].fn{counter-increment:footnotes;display:inline-flex;font-size:smaller;text-decoration:none;text-indent:-9999999px;vertical-align:super}a[data-fn].fn:after{content:"[" counter(footnotes) "]";float:left;text-indent:0}:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}#nta-wa-gdpr{margin:0 5px 0 0!important;padding:0!important;vertical-align:text-top!important}.nta-wa-gdpr{border-radius:4px;font-size:11px;margin-left:-5px;margin-right:-5px;padding:5px;-webkit-transition:opacity .4s ease,background .5s ease;-o-transition:opacity .4s ease,background .5s ease;transition:opacity .4s ease,background .5s ease}.nta-wa-gdpr a{color:inherit;text-decoration:underline}.nta-wa-gdpr label{color:inherit;font-size:inherit}.pointer-disable{pointer-events:none}.nta-woo-products-button:after,.nta-woo-products-button:before{clear:both;content:"";display:block}.wa__button{border-bottom:none!important}.wa__btn_w_img:hover{text-decoration:none}.wa__popup_content_item .wa__cs_img_wrap{height:48px;width:48px}.wa__btn_popup,.wa__btn_popup *,.wa__btn_popup :after,.wa__btn_popup :before,.wa__button,.wa__button *,.wa__button :after,.wa__button :before,.wa__popup_chat_box,.wa__popup_chat_box *,.wa__popup_chat_box :after,.wa__popup_chat_box :before{box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}.wa__button{box-shadow:0 4px 8px 1px rgba(32,32,37,.09)!important;-webkit-box-shadow:0 4px 8px 1px rgba(32,32,37,.09)!important;-moz-box-shadow:0 4px 8px 1px rgba(32,32,37,.09)!important;color:#fff;display:block;font-family:Arial,Helvetica,sans-serif;line-height:1;min-height:64px;position:relative;text-decoration:none!important;width:300px}.wa__btn_txt{display:inline-block;font-size:12px;line-height:1.33em}.wa__btn_w_icon .wa__btn_txt{padding:16px 20px 15px 71px}.wa__button_text_only .wa__btn_txt,.wa__r_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt,.wa__sq_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt{padding-bottom:24px;padding-top:25px}.wa__btn_w_icon .wa__btn_txt .wa__btn_title{font-size:14px;font-weight:600;padding-left:2px}.wa__cs_info{margin-bottom:2px}.wa__btn_status{color:#f5a623;font-size:9px;font-weight:700;padding:2px 0 0}.wa__cs_info .wa__cs_name,.wa__cs_info .wa__cs_status{display:inline-block}.wa__cs_info .wa__cs_name{font-size:12px;font-weight:400;line-height:1.36em}.wa__stt_online .wa__cs_info .wa__cs_name{color:#d5f0d9}.wa__stt_offline .wa__cs_info .wa__cs_name{color:#76787d}.wa__cs_info .wa__cs_status{border-radius:5px;color:hsla(0,0%,100%,.98);font-size:9px;height:14px;left:0;line-height:1.34em;margin-left:3px;padding:1px;position:relative;text-align:center;top:-1px;width:36px}.wa__stt_online .wa__cs_info .wa__cs_status{background:#62c971}.wa__stt_offline .wa__cs_info .wa__cs_status{background:#b9bbbe}.wa__stt_online{backface-visibility:hidden;background:#2db742;cursor:pointer;transition:all .4s ease!important;-webkit-transition:all .4s ease!important;-moz-transition:all .4s ease!important;will-change:transform}.wa__stt_online .wa__btn_txt{position:relative;z-index:4}.wa__r_button.wa__stt_online:before{border-radius:50vh}.wa__sq_button.wa__stt_online:before{border-radius:5px}.wa__stt_online:before{background:rgba(0,0,0,.06);content:"";height:100%;left:0;opacity:0;position:absolute;top:0;transition:all .4s ease;-webkit-transition:all .4s ease;-moz-transition:all .4s ease;width:100%;will-change:opacity;z-index:-1}.wa__button.wa__stt_online:active,.wa__button.wa__stt_online:focus,.wa__button.wa__stt_online:hover{box-shadow:0 4px 8px 1px rgba(32,32,37,.19);transform:translateY(-3px);-webkit-transform:translateY(-3px);-moz-transform:translateY(-3px);-ms-transform:translateY(-3px)}.wa__button.wa__stt_online:active:before,.wa__button.wa__stt_online:focus:before,.wa__button.wa__stt_online:hover:before{opacity:1}.wa__stt_online.wa__btn_w_icon .wa__btn_icon img{-webkit-box-shadow:none;box-shadow:none;transform:scale(1);-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transition:all .2s ease;-webkit-transition:all .2s ease;-moz-transition:all .2s ease}.wa__stt_offline{background:#ebedf0;box-shadow:none;color:#595b60;cursor:auto;pointer-events:none}.wa__stt_offline.wa__btn_w_icon .wa__btn_txt{padding:8px 20px 6px 71px}.wa__stt_offline.wa__r_button.wa__btn_w_img .wa__btn_txt{padding:8px 20px 8px 100px}.wa__stt_offline.wa__sq_button.wa__btn_w_img .wa__btn_txt{padding:8px 20px 8px 70px}.wa__btn_w_icon .wa__btn_icon{left:16px;position:absolute;top:50%;transform:translateY(-50%);-moz-transform:translateY(-50%);-webkit-transform:translateY(-50%)}.wa__btn_w_icon .wa__btn_icon img{-webkit-box-shadow:none;box-shadow:none;height:69px;width:41px}.wa__btn_w_img{margin:20px 0;position:relative;width:300px}.wa__btn_w_img .wa__cs_img{left:0;position:absolute;text-align:center;top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%)}.wa__btn_w_img .wa__cs_img_wrap{border:3px solid #fff;border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;height:79px;overflow:hidden;position:relative;width:79px}.wa__btn_w_img .wa__cs_img img{height:auto;max-width:100%;transition:transform .2s ease;-webkit-transition:transform .2s ease;-moz-transition:transform .2s ease}.wa__btn_w_img .wa__cs_img:after{background:#fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjMkRCNzQyIi8+PC9zdmc+) 50% no-repeat;background-size:17px}.wa__btn_w_img .wa__cs_img:after,.wa__stt_offline.wa__btn_w_img .wa__cs_img:after{border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;box-shadow:0 3px 4px 0 rgba(39,38,38,.26);-webkit-box-shadow:0 3px 4px 0 rgba(39,38,38,.26);-moz-box-shadow:0 3px 4px 0 rgba(39,38,38,.26);content:"";display:block;height:27px;position:absolute;right:-14px;top:20px;width:27px}.wa__stt_offline.wa__btn_w_img .wa__cs_img:after{background:#fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjQ0JDRkQ1Ii8+PC9zdmc+) 50% no-repeat;background-size:17px}.wa__btn_w_img .wa__btn_txt{padding:14px 20px 12px 103px}.wa__r_button{border-radius:50vh}.wa__sq_button{border-radius:5px}.wa__sq_button.wa__btn_w_img{margin-left:30px;width:270px}.wa__r_button.wa__btn_w_img .wa__cs_img{left:-5px}.wa__sq_button.wa__btn_w_img .wa__cs_img{left:-35px}.wa__sq_button.wa__btn_w_img .wa__btn_txt{display:table-cell;height:66px;padding:10px 20px 10px 70px;vertical-align:middle}.wa__btn_txt .wa__btn_title{font-weight:600}.wa__r_button.wa__btn_w_img .wa__btn_txt{display:table-cell;height:66px;padding:8px 20px 8px 100px;vertical-align:middle}.wa__r_button.wa__btn_w_img .wa__cs_info .wa__cs_status{margin-left:3px}.wa__popup_chat_box{border-radius:5px 5px 8px 8px;-webkit-border-radius:5px 5px 8px 8px;-moz-border-radius:5px 5px 8px 8px;bottom:102px;box-shadow:0 10px 10px 4px rgba(0,0,0,.04);-webkit-box-shadow:0 10px 10px 4px rgba(0,0,0,.04);-moz-box-shadow:0 10px 10px 4px rgba(0,0,0,.04);font-family:Arial,Helvetica,sans-serif;max-width:calc(100% - 50px);opacity:0;overflow:hidden;position:fixed;right:25px;-ms-transform:translateY(50px);transform:translateY(50px);-webkit-transform:translateY(50px);-moz-transform:translateY(50px);transition:all .4s ease;-webkit-transition:all .4s ease;-moz-transition:all .4s ease;visibility:hidden;width:351px;will-change:transform,visibility,opacity;z-index:999999998}.wa__popup_chat_box:active,.wa__popup_chat_box:focus,.wa__popup_chat_box:hover{box-shadow:0 10px 10px 4px rgba(32,32,37,.23);-webkit-box-shadow:0 10px 10px 4px rgba(32,32,37,.23);-moz-box-shadow:0 10px 10px 4px rgba(32,32,37,.23)}.wa__popup_chat_box.wa__active{opacity:1;-ms-transform:translate(0);transform:translate(0);-webkit-transform:translate(0);-moz-transform:translate(0);visibility:visible}.wa__popup_chat_box .wa__popup_heading{background:#2db742;color:#d9ebc6;padding:15px 43px 17px 74px;position:relative}.wa__popup_chat_box .wa__popup_heading_sm{padding:12px 15px 17px 74px}.wa__popup_chat_box .wa__popup_heading:before{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjRkZGIi8+PC9zdmc+) top no-repeat;background-size:33px;content:"";display:block;height:33px;left:12px;position:absolute;top:20px;width:55px}.wa__popup_chat_box .wa__popup_heading_sm:before{left:11px;top:19px}.wa__popup_chat_box .wa__popup_heading .wa__popup_title{color:#fff;font-size:18px;line-height:24px;min-height:24px;padding-bottom:3;padding-top:2px}.wa__popup_chat_box .wa__popup_heading .wa__popup_intro{font-size:12px;line-height:20px;min-height:20px;padding-top:4px}.wa__popup_chat_box .wa__popup_heading_sm .wa__popup_intro{padding-top:0}.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a{color:#fff;display:inline-block;text-decoration:none}.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:active,.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:focus,.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:hover{text-decoration:underline}.wa__popup_chat_box .wa__popup_notice{color:#a5abb7;font-size:11px;font-weight:500;padding:0 3px}.wa__popup_chat_box .wa__popup_content{background:#fff;padding:13px 20px 21px 19px;text-align:center}.wa__popup_chat_box .wa__popup_content_left{text-align:left}.wa__popup_chat_box .wa__popup_avatar{border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;left:12px;overflow:hidden;position:absolute;top:12px}.wa__popup_chat_box .wa__popup_avatar.nta-default-avt{border-radius:unset;-webkit-border-radius:unset;-moz-border-radius:unset}.wa__popup_chat_box .wa__stt{background:#f5f7f9;border-left:2px solid #2db742;border-radius:2px 4px 2px 4px;-webkit-border-radius:2px 4px 2px 4px;-moz-border-radius:2px 4px 2px 4px;display:table;padding:13px 40px 12px 74px;position:relative;text-decoration:none;width:100%}.wa__popup_chat_box .wa__stt:after{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjMkRCNzQyIi8+PC9zdmc+) 0 0 no-repeat;background-size:100% 100%;-webkit-background-size:100% 100%;-moz-background-size:100% 100%;content:"";height:20px;position:absolute;right:14px;top:26px;width:20px}.wa__popup_chat_box .wa__stt.wa__stt_offline:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjYTlhZWI2Ii8+PC9zdmc+)}.wa__popup_chat_box .wa__stt.wa__stt_online{transition:all .2s ease;-webkit-transition:all .2s ease;-moz-transition:all .2s ease}.wa__popup_chat_box .wa__stt.wa__stt_online:active,.wa__popup_chat_box .wa__stt.wa__stt_online:focus,.wa__popup_chat_box .wa__stt.wa__stt_online:hover{background:#fff;box-shadow:0 7px 15px 1px rgba(55,62,70,.07);-webkit-box-shadow:0 7px 15px 1px rgba(55,62,70,.07);-moz-box-shadow:0 7px 15px 1px rgba(55,62,70,.07)}.wa__popup_content_list .wa__popup_content_item{margin:14px 0 0;opacity:0;transform:translateY(20px);-webkit-transform:translateY(20px);-moz-transform:translateY(20px);will-change:opacity,transform}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item{transition:all .4s ease;-webkit-transition:all .4s ease;-moz-transition:all .4s ease;transition-delay:2.1s;-webkit-transition-delay:2.1s;-moz-transition-delay:2.1s}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:first-child{transition-delay:.3s;-webkit-transition-delay:.3s;-moz-transition-delay:.3s}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(2){transition-delay:.5s;-webkit-transition-delay:.5s;-moz-transition-delay:.5s}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(3){transition-delay:.7s;-webkit-transition-delay:.7s;-moz-transition-delay:.7s}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(4){transition-delay:.9s;-webkit-transition-delay:.9s;-moz-transition-delay:.9s}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(5){transition-delay:1.1s;-webkit-transition-delay:1.1s;-moz-transition-delay:1.1s}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(6){transition-delay:1.3s;-webkit-transition-delay:1.3s;-moz-transition-delay:1.3s}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(7){transition-delay:1.5s;-webkit-transition-delay:1.5s;-moz-transition-delay:1.5s}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(8){transition-delay:1.7s;-webkit-transition-delay:1.7s;-moz-transition-delay:1.7s}.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(9){transition-delay:1.9s;-webkit-transition-delay:1.9s;-moz-transition-delay:1.9s}.wa__popup_chat_box.wa__lauch .wa__popup_content_list .wa__popup_content_item{opacity:1;transform:translate(0);-webkit-transform:translate(0);-moz-transform:translate(0)}.wa__popup_content_list .wa__popup_content_item .wa__member_name{color:#363c47;font-size:14px;line-height:1.188em!important}.wa__popup_content_list .wa__popup_content_item .wa__member_duty{color:#989b9f;font-size:11px;line-height:1.125em!important;padding:2px 0 0}.wa__popup_content_list .wa__popup_content_item .wa__member_status{color:#f5a623;font-size:10px;line-height:1.125em!important;padding:5px 0 0}.wa__popup_content_list .wa__popup_content_item .wa__popup_txt{display:table-cell;height:48px;min-height:48px;vertical-align:middle}.wa__popup_content_list .wa__popup_content_item .wa__stt_offline{border-left-color:#c0c5ca}.wa__popup_avt_list{font-size:0;margin:7px 0 24px}.wa__popup_avt_list .wa__popup_avt_item{display:inline-block;position:relative;width:46px}.wa__popup_avt_list .wa__popup_avt_img{border:2px solid #fff;border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;height:60px;left:-7px;overflow:hidden;position:relative;width:60px}.wa__popup_call_btn{background:#2db742;border-radius:24px;-webkit-border-radius:24px;-moz-border-radius:24px;box-shadow:0 8px 17px 2px rgba(13,15,18,.2);-webkit-box-shadow:0 8px 17px 2px rgba(13,15,18,.2);-moz-box-shadow:0 8px 17px 2px rgba(13,15,18,.2);color:#fff;display:inline-block;font-size:16px;margin:25px 0 15px;max-width:100%;padding:14px 10px;text-decoration:none;width:275px}.wa__popup_call_btn.wa__popup_call_btn_lg:before{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjNGJjMTc0Ii8+PC9zdmc+) 0 0 no-repeat;background-size:100% 100%;-webkit-background-size:100% 100%;-moz-background-size:100% 100%;content:"";display:inline-block;height:20px;left:-31px;margin-right:-19px;position:relative;top:0;transition:background-image .2s ease;-webkit-transition:background-image .2s ease;-moz-transition:background-image .2s ease;vertical-align:top;width:20px}.wa__popup_call_btn.wa__popup_call_btn_lg:active:before,.wa__popup_call_btn.wa__popup_call_btn_lg:focus:before,.wa__popup_call_btn.wa__popup_call_btn_lg:hover:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjRkZGIi8+PC9zdmc+)}.wa__popup_chat_box_gray{border-radius:2px 2px 8px 8px}.wa__popup_chat_box_gray .wa__popup_heading_gray{background:#f8f8f8;border-top:3px solid #2db742;color:#868c9a;font-weight:500}.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_title{color:#595b60}.wa__popup_chat_box_gray .wa__popup_heading_gray:before{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjMkRCNzQyIi8+PC9zdmc+) top no-repeat;background-size:33px;content:"";display:block;height:33px;left:12px;position:absolute;top:20px;width:55px}.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_intro a{color:#595b60}.wa__popup_chat_box_ct{text-align:center;width:384px}.wa__popup_chat_box_ct .wa__popup_heading_ct{padding:18px 0;text-align:center}.wa__popup_chat_box_ct .wa__popup_heading_ct:before{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjRkZGIi8+PC9zdmc+) top no-repeat;background-size:30px;content:"";display:block;height:31px;left:72px;position:absolute;top:15px;width:30px}.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_title{padding-bottom:14px;padding-left:22px}.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_intro{line-height:12px;margin-top:-5px}.wa__popup_chat_box_ct .wa__popup_ct_avt_list:after{clear:both;content:"";display:block}.wa__popup_chat_box_ct .wa__popup_ct_content{background:#fff;padding:0 0 14px}.wa__popup_chat_box_ct .wa__popup_ct_content .wa__popup_notice{padding-bottom:15px;padding-top:18px}.wa__popup_chat_box_ct .wa__popup_ct_content_item{float:left;font-size:10px;width:33%}.wa__popup_chat_box_ct .wa__popup_ct_content_item a{color:#989b9f;text-decoration:none}.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__popup_ct_txt{padding-top:8px}.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_name{color:#363c47;font-size:13px}.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_duty{color:#989b9f;padding:3px 0 0}.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_online{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjMkRCNzQyIi8+PC9zdmc+) 0 3px no-repeat;background-size:12px auto;-webkit-background-size:12px auto;-moz-background-size:12px auto;color:#2db742;display:inline-block;font-size:9px;line-height:12px;padding:3px 0 0 16px}.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_offline{color:#f5a623;font-size:9px;line-height:12px;padding:2px 0 0}.wa__popup_chat_box_ct .wa__popup_ct_avatar img{border-radius:50%}.wa__popup_chat_box_ct .wa__popup_ct_call_btn{font-size:11px;margin:15px 0;padding:9px 10px 11px;width:97px}.wa__btn_popup{bottom:30px;cursor:pointer;font-family:Arial,Helvetica,sans-serif;position:fixed;right:30px;z-index:999999999}.wa__btn_popup .wa__btn_popup_icon{background:#2db742;border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;box-shadow:0 6px 8px 2px rgba(0,0,0,.14);-webkit-box-shadow:0 6px 8px 2px rgba(0,0,0,.14);-moz-box-shadow:0 6px 8px 2px rgba(0,0,0,.14);height:56px;width:56px}.wa__btn_popup .wa__btn_popup_icon:before{background:transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NzguMTY1IDQ3OC4xNjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ3OC4xNjUgNDc4LjE2NSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMiIgaGVpZ2h0PSI1MTIiPjxwYXRoIGQ9Ik00NzguMTY1IDIzMi45NDZjMCAxMjguNTY3LTEwNS4wNTcgMjMyLjk2Ni0yMzQuNjc5IDIzMi45NjYtNDEuMTAyIDAtNzkuODE0LTEwLjU5OS0xMTMuNDQ1LTI4Ljk2OUwwIDQ3OC4xNjVsNDIuNDM3LTEyNS4wNGMtMjEuNDM4LTM1LjA2NS0zMy43Ny03Ni4yMDctMzMuNzctMTIwLjE1OUM4LjY2NyAxMDQuMzQgMTEzLjc2MyAwIDI0My40ODUgMGMxMjkuNjIzIDAgMjM0LjY4IDEwNC4zNCAyMzQuNjggMjMyLjk0NnpNMjQzLjQ4NSAzNy4wOThjLTEwOC44MDIgMC0xOTcuNDIyIDg3LjgwMy0xOTcuNDIyIDE5NS44NjggMCA0Mi45MTUgMTMuOTg2IDgyLjYwMyAzNy41NzYgMTE0Ljg3OWwtMjQuNTg2IDcyLjU0MiA3NS44NDktMjMuOTY4YzMxLjEyMSAyMC40ODEgNjguNDU3IDMyLjI5NiAxMDguNTgzIDMyLjI5NiAxMDguNzIzIDAgMTk3LjMyMy04Ny44NDMgMTk3LjMyMy0xOTUuOTA4IDAtMTA3Ljg4Ni04OC42LTE5NS43MDktMTk3LjMyMy0xOTUuNzA5ek0zNjEuOTMxIDI4Ni42MmMtMS4zOTUtMi4zMzEtNS4yMi0zLjc0Ni0xMC44OTgtNi44MTQtNS45MTctMi44NDktMzQuMDg5LTE2LjQ5Ny0zOS41MDgtMTguMzctNS4xNi0xLjkxMy04Ljk4Ni0yLjg0OS0xMi44MTEgMi44MjktNC4wMDUgNS42MzgtMTQuOTAzIDE4LjYyOS0xOC4yMyAyMi4zNTQtMy41NDYgMy43ODUtNi44NTQgNC4yNjQtMTIuNTUyIDEuNDM1LTUuNjE4LTIuODA5LTI0LjI2Ny04Ljg2Ni00Ni4yMDMtMjguMzkxLTE3LjA1NS0xNS4wNDItMjguNjctMzMuNzExLTMxLjk5Ny0zOS41MDgtMy40MjctNS43NTgtLjM5OC04LjgyNiAyLjQ3MS0xMS42MzUgMi42OS0yLjU5IDUuNzc4LTYuNzM0IDguNjI3LTEwLjA0MSAyLjk2OS0zLjI4NyAzLjkwNS01LjYzOCA1Ljc5OC05LjQyNCAxLjkxMy0zLjkwNS45MzYtNy4xOTItLjQ3OC0xMC4xNDEtMS40MTUtMi44NDktMTMuMDEtMzAuODgxLTE3Ljc1Mi00Mi4zMzctNC44NDEtMTEuNDE2LTkuNTQzLTkuNTIzLTEyLjg3MS05LjUyMy0zLjQ2NyAwLTcuMjEyLS40NzgtMTEuMTE3LS40NzgtMy43ODUgMC0xMC4wNDEgMS4zOTUtMTUuMzgxIDcuMTkyLTUuMiA1LjY1OC0yMC4xMjMgMTkuNDY1LTIwLjEyMyA0Ny41OTcgMCAyOC4wNTIgMjAuNjAxIDU1LjMwOCAyMy41NSA1OS4wNTMgMi44NjkgMy43ODUgMzkuNzQ3IDYzLjE5NyA5OC4zMDMgODYuMDcgNTguNDc2IDIyLjg3MiA1OC40NzYgMTUuMzIxIDY5LjExNSAxNC4zNjUgMTAuMzgtLjk1NiAzNC4wNjktMTMuODY3IDM4LjgxMS0yNy4wOTYgNC42Ni0xMy40NSA0LjY2LTI0Ljc2NiAzLjI0Ni0yNy4xMzd6IiBmaWxsPSIjRkZGIi8+PC9zdmc+) 50% no-repeat;background-size:30px auto;-webkit-background-size:30px auto;-moz-background-size:30px auto;z-index:1}.wa__btn_popup .wa__btn_popup_icon:after,.wa__btn_popup .wa__btn_popup_icon:before{content:"";display:block;height:100%;left:0;position:absolute;top:0;transition:all .4s ease;-webkit-transition:all .4s ease;-moz-transition:all .4s ease;width:100%}.wa__btn_popup .wa__btn_popup_icon:after{background:transparent url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTguNjU5IDYuOTk4IDUtNWExLjE3NyAxLjE3NyAwIDAgMCAwLTEuNjU3IDEuMTc3IDEuMTc3IDAgMCAwLTEuNjU3IDBsLTUgNS01LTVBMS4xNzIgMS4xNzIgMCAwIDAgLjM0NSAxLjk5OGw1IDUtNSA1YTEuMTcyIDEuMTcyIDAgMCAwIDAgMS42NTcgMS4xNzcgMS4xNzcgMCAwIDAgMS42NTcgMGw1LTUgNSA1YTEuMTc3IDEuMTc3IDAgMCAwIDEuNjU3IDAgMS4xNzcgMS4xNzcgMCAwIDAgMC0xLjY1N2wtNS01WiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==) 50% no-repeat;background-size:14px auto;-webkit-background-size:14px auto;-moz-background-size:14px auto;opacity:0;-ms-transform:scale(0) rotate(-1turn);transform:scale(0) rotate(-1turn);-webkit-transform:scale(0) rotate(-1turn);-moz-transform:scale(0) rotate(-1turn);z-index:2}.wa__btn_popup.wa__active .wa__btn_popup_icon:before{opacity:0;-ms-transform:scale(0) rotate(1turn);transform:scale(0) rotate(1turn);-webkit-transform:scale(0) rotate(1turn);-moz-transform:scale(0) rotate(1turn)}.wa__btn_popup.wa__active .wa__btn_popup_icon:after{opacity:1;-ms-transform:scale(1) rotate(0deg);transform:scale(1) rotate(0deg);-webkit-transform:scale(1) rotate(0deg);-moz-transform:scale(1) rotate(0deg)}.wa__btn_popup .wa__btn_popup_txt{background-color:#f5f7f9;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;color:#43474e;font-size:12px;letter-spacing:-.03em;line-height:1.5;margin-right:7px;padding:8px 12px;position:absolute;right:100%;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);transition:all .4s ease;-webkit-transition:all .4s ease;-moz-transition:all .4s ease;width:156px}.wa__btn_popup.wa__active .wa__btn_popup_txt{opacity:0;-ms-transform:translateY(15px);transform:translateY(15px);-webkit-transform:translateY(15px);-moz-transform:translateY(15px);visibility:hidden}.mgl-infinite-scroll.single-skeleton{margin-top:20px;height:35px;border-radius:5px;background-color:#ebebeb77;overflow:hidden}.mgl-infinite-scroll.single-skeleton .mgl-loading{border-radius:8px;width:100%;height:100%;transform:translateX(-100%);background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.2) 30%,rgba(255,255,255,.4) 60%,rgba(255,255,255,0));border-radius:4px;animation:mgl-skeleton 3.5s ease-in-out infinite}@keyframes mgl-skeleton{100%{transform:translateX(100%)}}.mgl-infinite-scroll.single-skeleton-dark{margin-top:20px;height:35px;border-radius:5px;background-color:#27272777;overflow:hidden}.mgl-infinite-scroll.single-skeleton-dark .mgl-loading{border-radius:8px;width:100%;height:100%;transform:translateX(-100%);background:linear-gradient(90deg,rgba(69,69,69,0),rgba(69,69,69,.2) 30%,rgba(69,69,69,.4) 60%,rgba(69,69,69,0));border-radius:4px;animation:mgl-skeleton 3.5s ease-in-out infinite}@keyframes mgl-skeleton{100%{transform:translateX(100%)}}.mgl-infinite-scroll.spinner{margin-top:20px;height:35px}.mgl-infinite-scroll.spinner .mgl-loading{margin:0 auto;width:35px;height:35px;border-radius:50%;border:5px solid #d2d2d2;border-top-color:#000;animation:mgl-spinner 1.5s ease-in-out infinite}@keyframes mgl-spinner{to{transform:rotate(360deg)}}.mgl-infinite-scroll.dot{margin-top:20px;height:35px}.mgl-infinite-scroll.dot .mgl-loading{margin:0 auto;width:25px;height:25px;border-radius:50%;background-color:#d2d2d2;animation:mgl-dot 1.5s ease-in-out infinite}@keyframes mgl-dot{0%{transform:scale(.3)}50%{transform:scale(1.3)}100%{transform:scale(.3)}}.mgl-gallery-skeleton{z-index:0;transition:opacity 1s ease-out}.mgl-skeleton-item{background-color:#e2e2e2;border-radius:4px;overflow:hidden;position:relative}.mgl-skeleton-item .mgl-skeleton-shimmer{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.4) 50%,rgba(255,255,255,0));transform:translateX(-100%);animation:mgl-skeleton-shimmer 1.8s ease-in-out infinite}@keyframes mgl-skeleton-shimmer{100%{transform:translateX(100%)}}.mgl-skeleton-row{display:flex;margin-bottom:10px}.mgl-skeleton-row .mgl-box{flex:1}@media (prefers-color-scheme:dark){.mgl-skeleton-item{background-color:#404040}.mgl-skeleton-item .mgl-skeleton-shimmer{background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.1) 50%,rgba(255,255,255,0))}}.mgl-hidden{display:none}.mgl-gallery-images{display:none}.captions-none .mgl-item figcaption{opacity:0!important}.captions-always .mgl-item figcaption{opacity:1!important}.mgl-img-container{height:100%}.mgl-img-container:focus-visible img{outline:4px solid #09f;outline-offset:-4px}.mgl-item{position:relative;overflow:hidden}.mgl-item video{overflow:auto;object-fit:cover}.mgl-item figcaption{position:absolute;font-size:13px;max-height:60%}.mgl-item figcaption p{color:#fff!important;font-size:13px!important;line-height:120%!important}.mgl-item figcaption.caption-left{text-align:left}.mgl-item figcaption.caption-right{text-align:right}.mgl-item figcaption.caption-center{text-align:center}.mgl-item figcaption.caption-bg-none{background:0 0}.mgl-item figcaption.caption-bg-fade-black{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)}.mgl-item figcaption.caption-bg-black{background:rgba(0,0,0,.3)}.mgl-item figcaption.caption-bg-blur{backdrop-filter:blur(5px)}.mgl-item figcaption.caption-bg-blur p{text-shadow:0 0 8px #000}.mgl-item figcaption.caption-bg-fade-white{background:linear-gradient(0deg,rgba(255,255,255,.7),rgba(255,255,255,.3) 70%,transparent)}.mgl-item figcaption.caption-bg-fade-white p{color:#000!important;text-shadow:0 0 8px #fff}.mgl-item figcaption.caption-bg-white{background:rgba(255,255,255,.3)}.mgl-item figcaption.caption-bg-white p{color:#000!important;text-shadow:0 0 8px #fff}.mgl-item figcaption p:first-letter{float:unset!important;font-family:inherit!important;font-size:unset;font-size:1em!important;line-height:1em!important;padding:0!important}.mgl-lazy{opacity:1;transition:opacity .35s}.mgl-lazy[mgl-src]{opacity:0}.mgl-gtb-container{height:100%;width:100%;position:absolute;background:rgba(255,255,255,.65);padding:20px;z-index:0}.mgl-gtb-container.mgl-busy{z-index:1}.mgl-justified{display:flex!important;flex-wrap:wrap}.mgl-justified .mgl-item,.mgl-justified::after{--ratio:calc(var(--w) / var(--h));--row-height:300px;flex-basis:calc(var(--ratio) * var(--rh))}.mgl-justified .mgl-item{margin:20px;flex-grow:calc(var(--ratio) * 100)}.mgl-justified .mgl-item img{height:auto;max-width:100%}.mgl-justified .mgl-item figcaption{position:absolute;bottom:0;opacity:0;width:100%}.mgl-justified .mgl-item figcaption p{margin:0!important;padding:10px;box-sizing:border-box}.mgl-justified .mgl-item:hover figcaption{bottom:0;opacity:1;transition:.3s}.mgl-justified::after{--w:2;--h:1;content:'';flex-grow:1000000}.mgl-justified .mgl-item img{display:block;width:100%}.mgl-justified.mgl-justified-grid{display:grid!important;grid-template-columns:repeat(var(--columns),1fr);gap:var(--mgl-gutter)}.mgl-justified.mgl-justified-grid .mgl-item{margin:0;display:flex;align-items:center;justify-content:center}.mgl-justified.mgl-justified-grid .mgl-item img{width:100%;height:auto}.mgl-justified.mgl-justified-grid .mgl-empty{content:''}.mgl-justified.mgl-justified-grid::after{display:none}.mgl-masonry{width:100%;display:block!important;column-count:3;column-gap:0}.mgl-masonry .mgl-item{break-inside:avoid;padding:5px;position:relative;margin:0;width:100%;overflow:hidden;box-sizing:border-box}.mgl-masonry .mgl-item .mgl-icon{width:100%;overflow:hidden}.mgl-masonry .mgl-item .mgl-icon img{width:100%;height:auto;vertical-align:middle}.mgl-masonry .mgl-item figcaption{display:block;position:absolute;left:0;opacity:0;z-index:9;width:100%;bottom:0;padding:5px;box-sizing:border-box;background:0 0}.mgl-masonry .mgl-item figcaption p{margin:0;padding:10px;box-sizing:border-box;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)}.mgl-masonry .mgl-item:hover figcaption{bottom:0;opacity:1;transition:.3s}.mgl-square{width:100%;display:block!important;font-size:0;line-height:0}.mgl-square .mgl-item{position:relative;display:inline-block;margin:0;width:25%;padding-bottom:25%;overflow:hidden}.mgl-square .mgl-item .mgl-icon{position:absolute;width:100%;height:100%;padding:5px;box-sizing:border-box;overflow:hidden}.mgl-square .mgl-item .mgl-icon .mgl-img-container{overflow:hidden;width:100%;height:100%}.mgl-square .mgl-item .mgl-icon .mgl-img-container img{width:100%;height:100%!important;object-fit:cover}.mgl-square .mgl-item figcaption{display:block;position:absolute;opacity:0;z-index:9;width:100%;bottom:0;background-clip:content-box;padding:5px;box-sizing:border-box;transition:.2s}.mgl-square .mgl-item figcaption p{padding:5px 10px;box-sizing:border-box}.mgl-square .mgl-item:hover figcaption{bottom:0;opacity:1;transition:.3s}.mgl-tiles-stylish{border-radius:5px;box-shadow:0 0 10px rgba(0,0,0,.2);transition:transform .3s ease-in-out,box-shadow .3s ease-in-out!important}.mgl-tiles-stylish:hover{box-shadow:0 0 35px rgba(0,0,0,.7);transform:scale(1.25);z-index:10}.mgl-tiles{position:relative;display:block!important;width:100%}.mgl-tiles .mgl-layout-1-i{grid-template-columns:[col1-start] 100% [col2-start];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-1-i .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-1-o{grid-template-columns:[col1-start] 100% [col2-start];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-1-o .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-2-io{grid-template-columns:[col1-start] 33.33% [col2-start] 66.66%;grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-2-io .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-2-io .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-2-oi{grid-template-columns:[col1-start] 66.66% [col2-start] 33.33%;grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-2-oi .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-2-oi .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-2-oo{grid-template-columns:[col1-start] 50% [col2-start] 50%;grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-2-oo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-2-oo .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-2-ii{grid-template-columns:[col1-start] 50% [col2-start] 50% [col3-start];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-2-ii .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-2-ii .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-ooo{grid-template-columns:[col1-start] 33.5% [col2-start] 66.5% [col2-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-3-ooo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-3-ooo .b{grid-column:col1-start/col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-3-ooo .c{grid-column:col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-ioo{grid-template-columns:[col1-start] 18.2% [col2-start] 40.9% [col3-start] 40.9% [col3-end];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-3-ioo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-ioo .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-ioo .c{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-3-oio{grid-template-columns:[col1-start] 40.9% [col2-start] 18.2% [col3-start] 40.9% [col3-end];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-3-oio .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-oio .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-oio .c{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-3-ooi{grid-template-columns:[col1-start] 40.9% [col2-start] 40.9% [col3-start] 18.2% [col3-end];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-3-ooi .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-ooi .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-ooi .c{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-3-oii{grid-template-columns:[col1-start] 52.94% [col2-start] 23.53% [col3-start] 23.53% [col3-end];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-3-oii .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-oii .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-oii .c{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-3-ioi{grid-template-columns:[col1-start] 23.53% [col2-start] 52.94% [col3-start] 23.53% [col3-end];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-3-ioi .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-ioi .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-ioi .c{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-3-iio{grid-template-columns:[col1-start] 23.53% [col2-start] 23.53% [col3-start] 52.94% [col3-end];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-3-iio .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-iio .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-iio .c{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-3-iii{grid-template-columns:[col1-start] 33.33% [col2-start] 33.33% [col3-start] 33.33% [col3-end];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-3-iii .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-iii .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-3-iii .c{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-4-oooo-v0{grid-template-columns:[col1-start] 20% [col2-start] 40% [col3-start] 40% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-4-oooo-v0 .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-4-oooo-v0 .b{grid-column:col1-start/col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-4-oooo-v0 .c{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oooo-v0 .d{grid-column:col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oooo-v1{grid-template-columns:[col1-start] 40% [col2-start] 20% [col3-start] 40% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-4-oooo-v1 .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oooo-v1 .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-4-oooo-v1 .c{grid-column:col2-start/col3-start;grid-row:row2-start/row2-end}.mgl-tiles .mgl-layout-4-oooo-v1 .d{grid-column:col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oooo-v2{grid-template-columns:[col1-start] 40% [col2-start] 40% [col3-start] 20% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-4-oooo-v2 .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oooo-v2 .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oooo-v2 .c{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-4-oooo-v2 .d{grid-column:col3-start;grid-row:row2-start}.mgl-tiles .mgl-layout-4-iooo{grid-template-columns:[col1-start] 22.9% [col2-start] 25.7% [col3-start] 51.4% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-4-iooo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-iooo .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-4-iooo .c{grid-column:col2-start/col3-start;grid-row:row2-start}.mgl-tiles .mgl-layout-4-iooo .d{grid-column:col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oioo{grid-template-columns:[col1-start] 51.4% [col2-start] 22.9% [col3-start] 25.7% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-4-oioo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oioo .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oioo .c{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-4-oioo .d{grid-column:col3-start;grid-row:row2-start}.mgl-tiles .mgl-layout-4-ooio{grid-template-columns:[col1-start] 25.7% [col2-start] 22.9% [col3-start] 51.4% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-4-ooio .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-4-ooio .b{grid-column:col1-start/col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-4-ooio .c{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-ooio .d{grid-column:col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oooi{grid-template-columns:[col1-start] 51.4% [col2-start] 25.7% [col3-start] 22.9% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-4-oooi .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-oooi .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-4-oooi .c{grid-column:col2-start/col3-start;grid-row:row2-start}.mgl-tiles .mgl-layout-4-oooi .d{grid-column:col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-4-iiii{grid-template-columns:[col1-start] 25% [col2-start] 25% [col3-start] 25% [col4-start] 25% [col4-end];grid-template-rows:[row1-start] auto [row1-end]}.mgl-tiles .mgl-layout-5-ioooo{grid-template-columns:[col1-start] 34.615% [col2-start] 30.77% [col3-start] 34.615% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-ioooo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ioooo .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-ioooo .c{grid-column:col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-ioooo .d{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-ioooo .e{grid-column:col3-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-ooioo{grid-template-columns:[col1-start] 34.615% [col2-start] 30.77% [col3-start] 34.615% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-ooioo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-ooioo .b{grid-column:col1-start/col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-ooioo .c{grid-column:col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooioo .d{grid-column:col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-ooioo .e{grid-column:col3-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-ooooi{grid-template-columns:[col1-start] 34.615% [col2-start] 34.615% [col3-start] 30.77% [col3-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-ooooi .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-ooooi .b{grid-column:col1-start/col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-ooooi .c{grid-column:col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-ooooi .d{grid-column:col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-ooooi .e{grid-column:col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iiooo{grid-template-columns:[col1-start] 18.65% [col2-start] 18.65% [col3-start] 20.9% [col4-start] 41.8% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-iiooo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iiooo .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iiooo .c{grid-column:col3-start/col4-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-iiooo .d{grid-column:col3-start/col4-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-iiooo .e{grid-column:col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iooio{grid-template-columns:[col1-start] 18.65% [col2-start] 20.9% [col3-start] 18.65% [col4-start] 41.8% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-iooio .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iooio .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-iooio .c{grid-column:col2-start/col3-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-iooio .d{grid-column:col3-start/col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iooio .e{grid-column:col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooiio{grid-template-columns:[col1-start] 20.9% [col2-start] 18.65% [col3-start] 18.65% [col4-start] 41.8% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-ooiio .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-ooiio .b{grid-column:col1-start/col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-ooiio .c{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooiio .d{grid-column:col3-start/col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooiio .e{grid-column:col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooioi{grid-template-columns:[col1-start] 20.9% [col2-start] 18.65% [col3-start] 41.8% [col4-start] 18.65% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-ooioi .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-ooioi .b{grid-column:col1-start/col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-ooioi .c{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooioi .d{grid-column:col3-start/col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooioi .e{grid-column:col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-oooii{grid-template-columns:[col1-start] 20.9% [col2-start] 41.8% [col3-start] 18.65% [col4-start] 18.65% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-oooii .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-oooii .b{grid-column:col1-start/col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-oooii .c{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-oooii .d{grid-column:col3-start/col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-oooii .e{grid-column:col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-oiioo{grid-template-columns:[col1-start] 41.8% [col2-start] 18.65% [col3-start] 18.65% [col4-start] 20.9% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-oiioo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-oiioo .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-oiioo .c{grid-column:col3-start/col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-oiioo .d{grid-column:col4-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-oiioo .e{grid-column:col4-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-oiooi{grid-template-columns:[col1-start] 41.8% [col2-start] 18.65% [col3-start] 20.9% [col4-start] 18.65% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-oiooi .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-oiooi .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-oiooi .c{grid-column:col3-start/col4-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-oiooi .d{grid-column:col3-start/col4-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-oiooi .e{grid-column:col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iiioo{grid-template-columns:[col1-start] 24.24% [col2-start] 24.24% [col3-start] 24.24% [col4-start] 27.28% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-iiioo .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iiioo .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iiioo .c{grid-column:col3-start/col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iiioo .d{grid-column:col4-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-iiioo .e{grid-column:col4-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-iiooi{grid-template-columns:[col1-start] 24.24% [col2-start] 24.24% [col3-start] 27.28% [col4-start] 24.24% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-iiooi .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iiooi .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iiooi .c{grid-column:col3-start/col4-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-iiooi .d{grid-column:col3-start/col4-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-iiooi .e{grid-column:col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iooii{grid-template-columns:[col1-start] 24.24% [col2-start] 27.28% [col3-start] 24.24% [col4-start] 24.24% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-iooii .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iooii .b{grid-column:col2-start/col3-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-iooii .c{grid-column:col2-start/col3-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-iooii .d{grid-column:col3-start/col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-iooii .e{grid-column:col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooiii{grid-template-columns:[col1-start] 27.28% [col2-start] 24.24% [col3-start] 24.24% [col4-start] 24.24% [col4-end];grid-template-rows:[row1-start] auto [row2-start] auto [row2-end]}.mgl-tiles .mgl-layout-5-ooiii .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-start}.mgl-tiles .mgl-layout-5-ooiii .b{grid-column:col1-start/col2-start;grid-row:row2-start}.mgl-tiles .mgl-layout-5-ooiii .c{grid-column:col2-start/col3-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooiii .d{grid-column:col3-start/col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-layout-5-ooiii .e{grid-column:col4-start;grid-row:row1-start/row2-end}.mgl-tiles .mgl-row{display:-ms-grid;display:grid;position:relative;width:100%}.mgl-tiles .mgl-row .mgl-box{position:relative;width:100%;height:100%;padding:5px;-webkit-box-sizing:border-box;box-sizing:border-box;background-clip:content-box}.mgl-tiles .mgl-row .mgl-box .mgl-item{position:relative;display:block;margin:0;width:100%;height:100%}.mgl-tiles .mgl-row .mgl-box .mgl-item .mgl-icon{position:absolute;font-size:0;width:100%;height:100%}.mgl-tiles .mgl-row .mgl-box .mgl-item .mgl-icon img{position:absolute;display:block;width:100%;height:100%!important;max-width:100%;max-height:100%;aspect-ratio:auto;-o-object-fit:cover;object-fit:cover}.mgl-tiles .mgl-row .mgl-box .mgl-item figcaption{position:absolute;bottom:0;opacity:0;width:100%}.mgl-tiles .mgl-row .mgl-box .mgl-item figcaption p{margin:0!important;padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.mgl-tiles .mgl-row .mgl-box .mgl-item:hover figcaption{bottom:0;opacity:1;-webkit-transition:.3s;-o-transition:.3s;transition:.3s}.mgl-cascade{position:relative;display:block!important;width:100%}.mgl-cascade .mgl-row{display:grid;position:relative;width:100%}.mgl-cascade .mgl-row.mgl-layout-1-0{grid-template-columns:[col1-start] 100% [col2-start];grid-template-rows:[row1-start] auto [row1-end]}.mgl-cascade .mgl-row.mgl-layout-1-0 .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-cascade .mgl-row.mgl-layout-1-i{grid-template-columns:[col1-start] 100% [col2-start];grid-template-rows:[row1-start] auto [row1-end]}.mgl-cascade .mgl-row.mgl-layout-1-i .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-cascade .mgl-row.mgl-layout-2-ii{grid-template-columns:[col1-start] 50% [col2-start] 50% [col2-end];grid-template-rows:[row1-start] auto [row1-end]}.mgl-cascade .mgl-row.mgl-layout-2-ii .a{grid-column:col1-start/col2-start;grid-row:row1-start/row2-end}.mgl-cascade .mgl-row.mgl-layout-2-ii .b{grid-column:col2-start/col2-end;grid-row:row1-start/row2-end}.mgl-cascade .mgl-row .mgl-box{position:relative;width:100%;height:100%;padding:5px;box-sizing:border-box;background-clip:content-box}.mgl-cascade .mgl-row .mgl-box .mgl-item{display:block;margin:0;width:100%;height:100%}.mgl-cascade .mgl-row .mgl-box .mgl-item .mgl-icon{position:relative;font-size:0;width:100%;height:100%}.mgl-cascade .mgl-row .mgl-box .mgl-item .mgl-icon img{display:block;width:100%;height:100%;max-width:100%;max-height:100%}.mgl-cascade .mgl-row .mgl-box .mgl-item figcaption{position:absolute;bottom:0;opacity:0;width:100%}.mgl-cascade .mgl-row .mgl-box .mgl-item figcaption p{margin:0!important;padding:10px;box-sizing:border-box}.mgl-cascade .mgl-row .mgl-box .mgl-item:hover figcaption{bottom:0;opacity:1;transition:.3s}.mgl-horizontal .meow-horizontal-more-images{text-align:center;background:#00000091;border-radius:5px;margin:0 150px;position:relative;bottom:100px;color:#fff;opacity:1;animation:slide .8s ease-in-out forwards}@media screen and (max-width:768px){.mgl-horizontal .meow-horizontal-more-images{margin:0 10px}}@keyframes slide{0%{opacity:0;transform:translateY(15%)}100%{opacity:1;transform:translateY(0)}}.mgl-horizontal.hide-scrollbar .meow-horizontal-track::-webkit-scrollbar{display:none}.mgl-horizontal .meow-horizontal-track{white-space:nowrap;font-size:0;overflow-x:auto}.mgl-horizontal .meow-horizontal-track .mgl-item{display:inline-block;height:100%}.mgl-horizontal .meow-horizontal-track .mgl-item:first-of-type{padding-left:0!important}.mgl-horizontal .meow-horizontal-track .mgl-item:last-of-type{padding-right:0!important}.mgl-horizontal .meow-horizontal-track .mgl-item .mgl-icon{height:100%}.mgl-horizontal .meow-horizontal-track .mgl-item .mgl-icon .mgl-img-container{height:100%}.mgl-horizontal .meow-horizontal-track .mgl-item .mgl-icon .mgl-img-container img{height:100%!important;width:auto!important;max-width:none!important}.mgl-horizontal .meow-horizontal-track .mgl-item .mgl-caption{position:absolute;bottom:0!important;left:0!important;background:0 0!important}.mgl-horizontal .meow-horizontal-track .mgl-item .mgl-caption p{margin:0;padding:0;line-height:1.5;color:#fff;text-align:left;padding:10px 20px;background:rgba(0,0,0,.5);border-radius:2px;white-space:break-spaces}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0');src:url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.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(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-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);-ms-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{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
/* @group clearfix */

.sfmsb-clearfix:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
	}
* html .sfmsb-clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .sfmsb-clearfix { zoom: 1; } /* IE7 */


/* @end */

/* @group social buttons */

.sfmsb-follow-social-buttons a,
.sfmsb-follow-social-buttons .sfmsb-text{
	display: block;
	float: left;
	margin-bottom: 5px;
}

.sfmsb-follow-social-buttons.sfmsb-vertical a{
	float: none;
} 

/* Smartphones  */
/*@media only screen and (max-width : 480px) {
	
	.sfmsb-follow-social-buttons.sfmsb-vertical a{
		float: left;
	} 

}*/

.sfmsb-follow-social-buttons.sfmsb-under .sfmsb-text{
	float: none;
}


.sfmsb-follow-social-buttons.sfmsb-float .sfmsb-text,
.sfmsb-follow-social-buttons.sfmsb-float a{
	
	padding: 0 5px 0 5px;
	margin-right: 0;
}

.sfmsb-follow-social-buttons.sfmsb-under a{
	margin-right: 10px;	
}

.sfmsb-follow-social-buttons a,
.sfmsb-follow-social-buttons a:hover{
	text-decoration: none !important;
}

/* @end */



/* 
   Added base64 enconding to resolve issue of icons not displaying for 
   some sites with charset encoding mismatch 
 */

@font-face {
	font-family: 'social_buttons';
	src: url('/wp-content/plugins/simple-follow-me-social-buttons-widget/assets/fonts/social_buttons.eot?3_4');
}
@font-face {
	font-family: 'social_buttons';
	src: url(data:application/x-font-ttf;charset=utf-8;base64,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AgEBIf6+Jzg4JwFCJzg4J2oBBgQFDAYKBAgCBQMBAQEBAQUFBAUBAg8DA4sBAQEBAQEBAQEBAQECAQEBAQEBAgECAQIBAgEBAQEGBgEBAQEBAQUCAgUBAQECBwU8AQEBAQIFAQEBAgEBAQEEAwMEAQECAQEBAQUBAQEBAQEBAQECAhQCAgEBAQEgAQMBAgQBAQEBAQECAQICAgEBAQIBAQEBAQMCAgIBAwEBAgUBAQEBAQEGAQECAgoCBAEBAgIBAQICAQMCBAMDBQQCAwIBAQEBAQIBAgMCAQIDAQICBQUnAgEBAgQBAQECAQEEAgMDAQECAQEBBAEBAQEBAQEBAgERAQIBAQEZAQIDBgMCBAEBAQEBAQEBAQEBAQEDAgkBAwEBAQEBAQYBAQUBAQEBAQEBAQUBAQUCAQEBAQEBAQEBDgIFAQEBAQICAQICAgQEAwQEBgQDBAEBAQEBAQICAgMCAQIEAQIDBgYVAQUDAQIBAgEBBQQEBQEBAQIFAgcMAQICAQEBAQEBAQIBBAQBAQEBAgEBAQQBAQQBAQEBAQEBAQEBAwICAwIBBAEBAgMCJAIHAwQFAgICAgECBwMHCAIBMwEBAQIEAQEBAQICAwIDAwEBAQEBARABAQEBAQEBBAICBAEBAgIBBAEBAQEBAQEBAgEmAQIBAQEBEQEEAQIEAQEBAQEBAgEBBAECAwEBAQEBAQECASIBAQEBAQICDgIBAQEBAQMCAgIBAQEBAQEBAQIBAQMBAQEBAQQLAgEBAQEBAQMCAQMBHwEBAQEGAwgJBQMCBQIDBAIBAQEBAQMCBgUGBgECAQEBAQEBAQEDAgIDWwEBAQIFBAQHAgEBAgYDBAYCAgIGAgIHAQGHOCf+vic4OCcBQic4ggYNBgYBBgssDQMHBAECFi0WDh0OCAkJCCJFIgIFAgsdDyMNGw0BAwINGg0BDBcLDBcMDRsODRoNDBgMARAgDwcJBBs4HAcOBwMFAgMEAgIFAgQIBCA/IAIDAgQOCOEBAwEBBhEDAQEBAQEBAQEBAQIBBA4HAQEDAQIFAgEGAhgBAQIFAQEBAgQBAQEBAQEDBA4CAQEBAQECEQIDAQEBAQEFAQEDAgEBAgIDAgICBAMEBAEBBAEBAQICAQMBAgMBAQEBAQMDAwUWAQEBAgEBBQ8CAQEBAQECAgINBgEBAgIBAQUBAQEBAQEF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) format('truetype'),
		 url(data:application/font-woff;charset=utf-8;base64,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) format('woff');
	font-weight: normal;
	font-style: normal;
}

[class^="sfmsb-icon-"], [class*=" sfmsb-icon-"] {
	font-family: 'social_buttons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.sfmsb-icon-googleplus.sfmsb-square:before 	{ content: "\e60e"; }
.sfmsb-icon-googleplus.sfmsb-circle:before 	{ content: "\e617"; }

.sfmsb-icon-facebook.sfmsb-square:before 	 	{ content: "\e610"; }
.sfmsb-icon-facebook.sfmsb-circle:before 	 	{ content: "\e601"; }

.sfmsb-icon-twitter.sfmsb-square:before 	 	{ content: "\e612"; }
.sfmsb-icon-twitter.sfmsb-circle:before 	 	{ content: "\e615"; }

.sfmsb-icon-feed.sfmsb-square:before 		 	{ content: "\e613"; }
.sfmsb-icon-feed.sfmsb-circle:before 		 	{ content: "\e614"; }

.sfmsb-icon-vimeo.sfmsb-square:before 	 	{ content: "\e61b"; }
.sfmsb-icon-vimeo.sfmsb-circle:before 		{ content: "\e616"; }

.sfmsb-icon-github.sfmsb-circle:before 	 	{ content: "\e602"; }
.sfmsb-icon-github.sfmsb-square:before 	 	{ content: "\e603"; }

.sfmsb-icon-wordpress.sfmsb-circle:before  	{ content: "\e61d"; }
.sfmsb-icon-wordpress.sfmsb-square:before  	{ content: "\e61c"; }

.sfmsb-icon-pinterest.sfmsb-square:before  	{ content: "\e60b"; }
.sfmsb-icon-pinterest.sfmsb-circle:before  	{ content: "\e60a"; }

.sfmsb-icon-linkedin.sfmsb-square:before   	{ content: "\e611"; }
.sfmsb-icon-linkedin.sfmsb-circle:before   	{ content: "\e606"; }

.sfmsb-icon-youtube.sfmsb-square:before 	 	{ content: "\e61e"; }
.sfmsb-icon-youtube.sfmsb-circle:before 	 	{ content: "\e60f"; }

.sfmsb-icon-instagram.sfmsb-square:before  	{ content: "\e604"; }
.sfmsb-icon-instagram.sfmsb-circle:before  	{ content: "\e605"; }

.sfmsb-icon-email.sfmsb-square:before 	 	{ content: "\e608"; }
.sfmsb-icon-email.sfmsb-circle:before 	 	{ content: "\e621"; }

.sfmsb-icon-soundcloud.sfmsb-square:before 	{ content: "\e61a"; }
.sfmsb-icon-soundcloud.sfmsb-circle:before 	{ content: "\e619"; }

.sfmsb-icon-itunes.sfmsb-square:before 	 	{ content: "\e607"; }
.sfmsb-icon-itunes.sfmsb-circle:before 	 	{ content: "\e600"; }

.sfmsb-icon-bloglovin.sfmsb-square:before  	{ content: "\e61f"; }
.sfmsb-icon-bloglovin.sfmsb-circle:before  	{ content: "\e618"; }

.sfmsb-icon-flickr.sfmsb-square:before 	 	{ content: "\e620"; }
.sfmsb-icon-flickr.sfmsb-circle:before 	 	{ content: "\e622"; }

.sfmsb-icon-tumblr.sfmsb-square:before 	 	{ content: "\e627"; }
.sfmsb-icon-tumblr.sfmsb-circle:before 	 	{ content: "\e628"; }

.sfmsb-icon-hubpages.sfmsb-square:before 	 	{ content: "\e624"; }
.sfmsb-icon-hubpages.sfmsb-circle:before 	 	{ content: "\e623"; }

.sfmsb-icon-deviantart.sfmsb-square:before 	{ content: "\e626"; }
.sfmsb-icon-deviantart.sfmsb-circle:before 	{ content: "\e625"; }


.sfmsb-icon-feedly.sfmsb-square:before 	 	{ content: "\e62c"; }
.sfmsb-icon-feedly.sfmsb-circle:before 	 	{ content: "\e62b"; }

.sfmsb-icon-slideshare.sfmsb-square:before 	{ content: "\e638"; }
.sfmsb-icon-slideshare.sfmsb-circle:before 	{ content: "\e637"; }

.sfmsb-icon-vine.sfmsb-square:before 	 	 	{ content: "\e630"; }
.sfmsb-icon-vine.sfmsb-circle:before 		 	{ content: "\e62f"; }

.sfmsb-icon-goodreads.sfmsb-square:before  	{ content: "\e62e"; }
.sfmsb-icon-goodreads.sfmsb-circle:before  	{ content: "\e62d"; }

.sfmsb-icon-vk.sfmsb-square:before 		 	{ content: "\e632"; }
.sfmsb-icon-vk.sfmsb-circle:before 		   	{ content: "\e631"; }

.sfmsb-icon-sanscritique.sfmsb-square:before 	{ content: "\e636"; }
.sfmsb-icon-sanscritique.sfmsb-circle:before 	{ content: "\e635"; }

.sfmsb-icon-yelp.sfmsb-square:before 		 	{ content: "\e66f"; }
.sfmsb-icon-yelp.sfmsb-circle:before 		 	{ content: "\e668"; }

.sfmsb-icon-specificfeeds.sfmsb-square:before { content: "\e670"; }
.sfmsb-icon-specificfeeds.sfmsb-circle:before { content: "\e633"; }

.sfmsb-icon-behance.sfmsb-circle:before 		{ content: "\e63b"; }
.sfmsb-icon-behance.sfmsb-square:before 		{ content: "\e63c"; }

.sfmsb-icon-lastfm.sfmsb-circle:before 		{ content: "\e63d"; }
.sfmsb-icon-lastfm.sfmsb-square:before 		{ content: "\e63e"; }

.sfmsb-icon-trover.sfmsb-circle:before 		{ content: "\e63f"; }
.sfmsb-icon-trover.sfmsb-square:before 		{ content: "\e640"; }

.sfmsb-icon-xing.sfmsb-circle:before 			{ content: "\e641"; }
.sfmsb-icon-xing.sfmsb-square:before 			{ content: "\e642"; }

.sfmsb-icon-stackoverflow.sfmsb-circle:before { content: "\e644"; }
.sfmsb-icon-stackoverflow.sfmsb-square:before { content: "\e645"; }

.sfmsb-icon-blogger.sfmsb-circle:before 		{ content: "\e64c"; }
.sfmsb-icon-blogger.sfmsb-square:before 		{ content: "\e651"; }

.sfmsb-icon-reddit.sfmsb-circle:before 		{ content: "\e652"; }
.sfmsb-icon-reddit.sfmsb-square:before 		{ content: "\e648"; }

.sfmsb-icon-500px.sfmsb-circle:before 		{ content: "\e629"; }
.sfmsb-icon-500px.sfmsb-square:before 		{ content: "\e62a"; }

.sfmsb-icon-remind.sfmsb-circle:before 		{ content: "\e646"; }
.sfmsb-icon-remind.sfmsb-square:before 		{ content: "\e647"; }

.sfmsb-icon-dribbble.sfmsb-circle:before 		{ content: "\e657"; }
.sfmsb-icon-dribbble.sfmsb-square:before 		{ content: "\e64a"; }

.sfmsb-icon-picasa.sfmsb-circle:before 		{ content: "\e64f"; }
.sfmsb-icon-picasa.sfmsb-square:before		{ content: "\e654"; }

.sfmsb-icon-rdio.sfmsb-circle:before 			{ content: "\e653"; }
.sfmsb-icon-rdio.sfmsb-square:before 			{ content: "\e649"; }

.sfmsb-icon-skype.sfmsb-circle:before 		{ content: "\e655"; }
.sfmsb-icon-skype.sfmsb-square:before 		{ content: "\e650"; }

.sfmsb-icon-stumbleupon.sfmsb-circle:before 	{ content: "\e64e"; }
.sfmsb-icon-stumbleupon.sfmsb-square:before 	{ content: "\e64d"; }

.sfmsb-icon-ello.sfmsb-circle:before 			{ content: "\e658"; }
.sfmsb-icon-ello.sfmsb-square:before 			{ content: "\e659"; }

.sfmsb-icon-foursquare.sfmsb-circle:before 	{ content: "\e65a"; }
.sfmsb-icon-foursquare.sfmsb-square:before 	{ content: "\e65b"; }

.sfmsb-icon-openclipart.sfmsb-circle:before 	{ content: "\e65c"; }
.sfmsb-icon-openclipart.sfmsb-square:before 	{ content: "\e65d"; }

.sfmsb-icon-stitcher.sfmsb-circle:before 		{ content: "\e664"; }
.sfmsb-icon-stitcher.sfmsb-square:before 		{ content: "\e665"; }

.sfmsb-icon-kukers.sfmsb-circle:before 		{ content: "\e662"; }
.sfmsb-icon-kukers.sfmsb-square:before 		{ content: "\e663"; }

.sfmsb-icon-canalcocina.sfmsb-circle:before 	{ content: "\e65e"; }
.sfmsb-icon-canalcocina.sfmsb-square:before 	{ content: "\e65f"; }

.sfmsb-icon-foodgawker.sfmsb-circle:before 	{ content: "\e660"; }
.sfmsb-icon-foodgawker.sfmsb-square:before 	{ content: "\e661"; }

.sfmsb-icon-tastespotting.sfmsb-circle:before { content: "\e666"; }
.sfmsb-icon-tastespotting.sfmsb-square:before { content: "\e667"; }

.sfmsb-icon-tripadvisor.sfmsb-circle:before 	{ content: "\e64b"; }
.sfmsb-icon-tripadvisor.sfmsb-square:before 	{ content: "\e656"; }	

.sfmsb-icon-scoopit.sfmsb-circle:before 	  	{ content: "\e634"; }
.sfmsb-icon-scoopit.sfmsb-square:before 	  	{ content: "\e63a"; }

.sfmsb-icon-twitch.sfmsb-circle:before 	  	{ content: "\e687"; }
.sfmsb-icon-twitch.sfmsb-square:before 	  	{ content: "\e688"; }

.sfmsb-icon-tunein.sfmsb-circle:before 	  	{ content: "\e682"; }
.sfmsb-icon-tunein.sfmsb-square:before 	  	{ content: "\e675"; }

.sfmsb-icon-steam.sfmsb-circle:before 	  	{ content: "\e680"; }
.sfmsb-icon-steam.sfmsb-square:before 	  	{ content: "\e681"; }

.sfmsb-icon-scribd.sfmsb-circle:before 	  	{ content: "\e67e"; }
.sfmsb-icon-scribd.sfmsb-square:before 	  	{ content: "\e67f"; }

.sfmsb-icon-ravelry.sfmsb-circle:before 	  	{ content: "\e67c"; }
.sfmsb-icon-ravelry.sfmsb-square:before 	  	{ content: "\e67d"; }

.sfmsb-icon-issuu.sfmsb-circle:before 	  	{ content: "\e676"; }
.sfmsb-icon-issuu.sfmsb-square:before 	  	{ content: "\e67b"; }

.sfmsb-icon-etsy.sfmsb-circle:before 	  		{ content: "\e673"; }
.sfmsb-icon-etsy.sfmsb-square:before 	  		{ content: "\e674"; }

.sfmsb-icon-anobii.sfmsb-circle:before 	  	{ content: "\e671"; }
.sfmsb-icon-anobii.sfmsb-square:before 	  	{ content: "\e672"; }

.sfmsb-icon-myspace.sfmsb-circle:before 	  	{ content: "\e679"; }
.sfmsb-icon-myspace.sfmsb-square:before 	  	{ content: "\e67a"; }

.sfmsb-icon-blogconnect.sfmsb-circle:before 	{ content: "\e677"; }
.sfmsb-icon-blogconnect.sfmsb-square:before 	{ content: "\e678"; }

.sfmsb-icon-weibo.sfmsb-circle:before 	  	{ content: "\e683"; }
.sfmsb-icon-weibo.sfmsb-square:before 	  	{ content: "\e684"; }

.sfmsb-icon-fotocommunity.sfmsb-circle:before 	 { content: "\e68f"; }
.sfmsb-icon-fotocommunity.sfmsb-square:before 	 { content: "\e690"; }

.sfmsb-icon-dawanda.sfmsb-circle:before 	  		 { content: "\e68d"; }
.sfmsb-icon-dawanda.sfmsb-square:before 	  		 { content: "\e68e"; }

.sfmsb-icon-aboutme.sfmsb-circle:before 	  		 { content: "\e68b"; }
.sfmsb-icon-aboutme.sfmsb-square:before 	  		 { content: "\e68c"; }

.sfmsb-icon-eyeem.sfmsb-circle:before 	  		 { content: "\e689"; }
.sfmsb-icon-eyeem.sfmsb-square:before 	  		 { content: "\e68a"; }

.sfmsb-icon-notonthehighstreet.sfmsb-circle:before { content: "\e685"; }
.sfmsb-icon-notonthehighstreet.sfmsb-square:before { content: "\e686"; }

.sfmsb-icon-odnoklassniki.sfmsb-circle:before 	 { content: "\e691"; }
.sfmsb-icon-odnoklassniki.sfmsb-square:before 	 { content: "\e692"; }
/**
 * The MIT License (MIT)
 * 
 * Copyright (c) 2015 BG Stock - html5backgroundvideos.com
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

/**
 * Set default positioning as a fallback for if the plugin fails
 */
.jquery-background-video-wrapper {
	position: relative;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	    	background-size: cover;
}
.jquery-background-video {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	    	transform: translate(-50%,-50%);
}
/**
 * Fade in videos
 * Note the .js class - so non js users still
 * see the video
 */
.js .jquery-background-video {
	opacity: 0;
	-webkit-transition: opacity 300ms linear;
			transition: opacity 300ms linear;
}
.js .jquery-background-video.is-visible {
	opacity: 1;
}

/**
 * Pause/play button
 */ 
.jquery-background-video-pauseplay {
	position: absolute;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	width: 20px;
	height: 20px;
	top: 15px;
	right: 15px;
	padding: 0 !important;
	cursor: pointer;
	outline: none !important;
}
.jquery-background-video-pauseplay span {
	display: none;
}
.jquery-background-video-pauseplay:after,
.jquery-background-video-pauseplay:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: all .3s ease;
			transition: all .3s ease;
}
.jquery-background-video-pauseplay.play:before {
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #FFF;
}
.jquery-background-video-pauseplay.pause:before,
.jquery-background-video-pauseplay.pause:after {
	border-top: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
	border-left: 5px solid #FFF;
}
.jquery-background-video-pauseplay.pause:after {
	left: 10px;
}.so_video_overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-repeat: repeat;
	z-index: 0;
}
.so_video_bg_row .panel-grid-cell {
	position: relative;
	z-index: 1;
}

/* Force white text on cell contents */
.force-white-text,
.force-white-text h1,
.force-white-text h2,
.force-white-text h3,
.force-white-text h4,
.force-white-text h5,
.force-white-text h6,
.force-white-text p,
.force-white-text ul,
.force-white-text ol,
.force-white-text a:link,
.force-white-text a:visited {
	color: #FFF !important;
}
.force-white-text a:hover,
.force-white-text a:active {
	color: #DDD !important;
}

/* Add a text shadow to cell contents */
.dark-text-shadow {
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3), 0 0 15px rgba(0,0,0,0.5);
}
.dark-text-shadow .circle-icon {
	text-shadow: none;
}.slick-loading .slick-list{background:#fff url(/wp-content/plugins/wp-slick-slider-and-image-carousel/assets/images/ajax-loader.gif) center center no-repeat}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}/****** Box Sizing *****/
.wpcolumns, .wpcolumns {-webkit-box-sizing: border-box; -moz-box-sizing: border-box;box-sizing: border-box;}
.wpsisac-slick-slider *, .wpsisac-slick-carousal * {-webkit-box-sizing: border-box; -moz-box-sizing: border-box;box-sizing: border-box;}

/***** Clearfix *****/
.wpsisac-clearfix:before, .wpsisac-clearfix:after{content: "";display: table;}
.wpsisac-clearfix::after{clear: both;}
.wpsisac-clearfix{clear: both;}

/***** Slick slider *****/
.wpsisac-slick-slider .slick-arrow, .wpsisac-slick-carousal .slick-arrow{position:absolute; z-index:9; padding:0; margin:0px; display: inline-block; background-color: rgba(0, 0, 0, 0.7); text-align:center; width:30px; height:50px; cursor: pointer;}
.wpsisac-slick-slider .slick-arrow svg, .wpsisac-slick-carousal .slick-arrow svg{fill: #fff; height: 100%; width: 100%;}
.wpsisac-slick-slider .slick-dots, .wpsisac-slick-carousal .slick-dots{padding:0 !important; margin:0 !important; text-align:center;}
.wpsisac-slick-slider .slick-dots li button, .wpsisac-slick-carousal .slick-dots li button{text-indent:-99999px;}
.wpsisac-slick-slider .slick-dots li, .wpsisac-slick-carousal .slick-dots li {list-style:none !important; line-height:0px !important; display:inline-block !important; margin:0 5px !important; padding:0px !important; }
.wpsisac-slick-slider .slick-dots li button, .wpsisac-slick-carousal .slick-dots li button{ background:#fff !important; margin:0px !important; padding:0px !important; border:1px solid #000; border-radius:50% !important; width:13px !important; height:13px !important; }
.wpsisac-slick-slider .slick-dots li button:focus, .wpsisac-slick-carousal .slick-dots li button:focus{outline:none !important}
.wpsisac-slick-slider .slick-dots li.slick-active button, .wpsisac-slick-carousal .slick-dots li.slick-active button{background:#444 !important;}
.wpsisac-slick-slider .slick-slide, .wpsisac-slick-carousal .slick-slide{padding:0px !important}
.wpsisac-slick-slider .slick-disabled, .wpsisac-slick-carousal .slick-disabled{opacity:0.5;}

.wpcolumn, .wpcolumns {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
.wpsisac-slick-slider, .wpsisac-slick-carousal{visibility: hidden; opacity:0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";  -webkit-transition: opacity 0.5s linear;  transition:opacity 0.5s linear;  }
.wpsisac-slick-slider.slick-initialized, .wpsisac-slick-carousal.slick-initialized { visibility: visible !important; opacity:1 !important; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; }
.wpsisac-image-slide-wrap{position: relative;overflow: hidden; text-align:center;}
.wpsisac-image-fit .wpsisac-image-slide-wrap img,
.wpsisac-image-fit .wpsisac-slide-wrap img{display:inline-block !important; height: 100%;width: 100%;-o-object-fit: cover;object-fit: cover;-o-object-position: top center;object-position: top center; max-width:100%; max-height:100%;}
.wpsisac-image-fit img.wpsisac-slider-img{-o-object-fit: cover;object-fit: cover;-o-object-position: top center;object-position: top center;height: 100%;width: 100%;}
.wpsisac-slick-slider h2.wpsisac-slide-title{margin:5px 0 !important; font-size:25px; line-height:30px; }
.wpsisac-image-slide{position:relative;}
.wpsisac-hide{display:none;}
.wpsisac-slide-title{padding:0px !important; margin:0 0 8px 0 !important}
.wpsisac-slick-slider .wpsisac-readmore{clear:both;}
.wpsisac-slick-slider .wpsisac-readmore a{display:inline-block;}
.wpsisac-slick-slider .wpsisac-image-slide{text-align:center;}
.wpsisac-slick-carousal .wpsisac-image-slide{margin:0 2px;}

/* Avada CSS */
.fusion-flex-container.wpsisac-fusion-flex{ flex-direction: column; }
.wpsisac-elementor-tab-wrap{ min-width: 0; min-height: 0; }

/***** Designs *****/
.wpsisac-slick-slider.design-1 .wpsisac-image-slide img{display:inline-block !important; }
.wpsisac-slick-slider.design-1 .slick-arrow { top:45% !important;}
.wpsisac-slick-slider.design-1 .slick-next{right:0px !important;}
.wpsisac-slick-slider.design-1 .slick-prev{left:0px !important;}
.wpsisac-slick-slider.design-1 .slick-dots{left:15px !important; right:15px; text-align:center;  bottom:8px !important;}

/***** Design 2 *****/
.wpsisac-slick-slider.design-2 .wpsisac-image-slide img{display:inline-block !important;}
.wpsisac-slick-slider.design-2 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-overlay{background:rgba(0,0,0,0.4); position:absolute; left:0; right:0; bottom:0; top:0;}
.wpsisac-slick-slider.design-2 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-content{
	z-index: 1000;color: #fff;position: absolute; left: 0;text-align: center;width: 80%;	top: 50%;-webkit-transform: translateY(-50%);transform: translateY(-50%);right: 0;margin:0 auto;float: left;}
.wpsisac-slick-slider.design-2 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slide-title{color:#fff; text-shadow: 0 1px 2px #000;}
.wpsisac-slick-slider.design-2 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-short-content{ text-align:center; margin-bottom:15px;}
.wpsisac-slick-slider.design-2 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-short-content p{ text-align:center;  color:#fff; text-shadow: 0 1px 2px #000; font-size:16px;}
.wpsisac-slick-slider.design-2 .slick-arrow { top:45% !important;}
.wpsisac-slick-slider.design-2 .slick-next{right:0px !important;}
.wpsisac-slick-slider.design-2 .slick-prev{left:0px !important;}
.wpsisac-slick-slider.design-2 .slick-dots{left:15px !important; right:15px; text-align:center;  bottom:8px !important;}

/***** Design 3 *****/
.wpsisac-slick-slider.design-3 .wpsisac-image-slide img{display:inline-block !important; }
.wpsisac-slick-slider.design-3 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-content{left:0px; right:0px; text-align:left; position:absolute; top:0;   padding:40px;}
.wpsisac-slick-slider.design-3 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slide-title{color:#fff; text-shadow: 0 1px 2px #000; text-align:left;}
.wpsisac-slick-slider.design-3 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-short-content{ text-align:left;  margin-bottom:15px;}
.wpsisac-slick-slider.design-3 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-short-content p{ text-align:left; color:#fff; text-shadow: 0 1px 2px #000; font-size:16px;}
.wpsisac-slick-slider.design-3 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-content .wpsisac-bg-overlay{padding:20px; background:rgba(0,0,0,.5); color:#fff;}
.wpsisac-slick-slider.design-3 .slick-arrow { top:45% !important;}
.wpsisac-slick-slider.design-3 .slick-next{right:0px !important;}
.wpsisac-slick-slider.design-3 .slick-prev{left:0px !important;}
.wpsisac-slick-slider.design-3 .slick-dots{left:15px !important; right:15px; text-align:center;  bottom:8px !important;}

/***** Design 4 *****/
.wpsisac-slick-slider.design-4 .wpsisac-image-slide img{max-width:100%; height:auto; display:inline-block;}
.wpsisac-slick-slider.design-4 .wpsisac-image-slide {width:100%; }
.wpsisac-slick-slider.design-4 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-content-left{padding:50px 30px; text-align:left;}
.wpsisac-slick-slider.design-4 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-content-right{}
.wpsisac-slick-slider.design-4 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-content{left:30px; right:30px; position:absolute; top:15%;   padding:0 15px;}
.wpsisac-slick-slider.design-4 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slide-title{  text-align:left;}
.wpsisac-slick-slider.design-4 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-short-content{ text-align:left; margin-bottom:15px;}
.wpsisac-slick-slider.design-4 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-short-content p{ text-align:left;  font-size:16px;}
.wpsisac-slick-slider.design-4 .slick-arrow { top:45% !important;}
.wpsisac-slick-slider.design-4 .slick-next{right:0px !important;}
.wpsisac-slick-slider.design-4 .slick-prev{left:0px !important;}
.wpsisac-slick-slider.design-4 .slick-dots{left:15px !important; right:15px; text-align:center;  bottom:8px !important;}

/***** Design 5 *****/
.wpsisac-slick-slider.design-5 .wpsisac-image-slide img{max-width:100%; height:auto; display:inline-block;}
.wpsisac-slick-slider.design-5 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-content{ text-align:center;  padding:60px 50px;}
.wpsisac-slick-slider.design-5 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-short-content{ text-align:center; margin-bottom:15px;}
.wpsisac-slick-slider.design-5 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-short-content p{ text-align:center;   font-size:16px;}
.wpsisac-slick-slider.design-5 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-readmore a.wpsisac-slider-readmore{padding:5px 10px; border:1px solid #fff;}
.wpsisac-slick-slider.design-5 .slick-arrow { top:45% !important;}
.wpsisac-slick-slider.design-5 .slick-next{right:0px !important;}
.wpsisac-slick-slider.design-5 .slick-prev{left:0px !important;}
.wpsisac-slick-slider.design-5 .slick-dots{left:15px !important; right:15px; text-align:center;  bottom:8px !important;}

/***** Design 6 *****/
.wpsisac-slick-carousal.design-1{margin-bottom:25px;}
.wpsisac-slick-carousal.design-1 .wpsisac-image-slide{text-align:center; }
.wpsisac-slick-carousal.design-1 .wpsisac-image-slide img{display:inline-block !important; }
.wpsisac-slick-carousal.wpsisac-center .slick-slide .wpsisac-image-slide-wrap { opacity: 0.5; transform: scale(0.7); transition: all 300ms ease 0s; }
.wpsisac-slick-carousal.wpsisac-center .slick-center .wpsisac-image-slide-wrap { opacity: 1; transform: scale(1); }
.wpsisac-center.variablewidthv .wpsisac-image-slide-wrap{ opacity: 1!important;  transform: scale(1) !important;}
.wpsisac-slick-carousal.design-1 .slick-arrow { top:50% !important; cursor:pointer; -webkit-transform: translateY(-50%);transform: translateY(-50%);}
.wpsisac-slick-carousal.design-1 .slick-next{right:0px !important;}
.wpsisac-slick-carousal.design-1 .slick-prev{left:0px !important;}
.wpsisac-slick-carousal.design-1 .slick-dots{left:15px !important; right:15px; text-align:center;  bottom:0px !important;}

.wpsisac-slide-wrap .wpsisac-readmore a.wpsisac-slider-readmore{padding:5px 10px; background:rgba(0,0,0,0.8); text-decoration:none !important; color:#fff;border:1px solid #fff;}
.wpcolumn, .wpcolumns {padding-left: 0.9375em; padding-right: 0.9375em; float: left; width:100%; position: relative; }

@media only screen and (min-width: 40.0625em) {  
	.wpcolumn,
	.wpcolumns {position: relative;padding-left: 0.9375em;padding-right: 0.9375em;float: left; }
	.wp-medium-1 { width: 8.33333%; }
	.wp-medium-2 { width: 16.66667%; }
	.wp-medium-3 { width: 25%; }
	.wp-medium-4 { width: 33.33333%; }
	.wp-medium-5 { width: 41.66667%; }
	.wp-medium-6 { width: 50%; }
	.wp-medium-7 { width: 58.33333%; }
	.wp-medium-8 { width: 66.66667%; }
	.wp-medium-9 { width: 75%; }
	.wp-medium-10 { width: 83.33333%; }
	.wp-medium-11 { width: 91.66667%; }
	.wp-medium-12 { width: 100%; }
	.medium-offset-0 { margin-left: 0 !important; }
	.medium-offset-1 { margin-left: 8.33333% !important; }
	.medium-offset-2 { margin-left: 16.66667% !important; }
	.medium-offset-3 { margin-left: 25% !important; }
	.medium-offset-4 { margin-left: 33.33333% !important; }
	.medium-offset-5 { margin-left: 41.66667% !important; }
	.medium-offset-6 { margin-left: 50% !important; }
	.medium-offset-7 { margin-left: 58.33333% !important; }
	.medium-offset-8 { margin-left: 66.66667% !important; }
	.medium-offset-9 { margin-left: 75% !important; }
	.medium-offset-10 { margin-left: 83.33333% !important; }
	.medium-offset-11 { margin-left: 91.66667% !important; }
}

@media only screen and (max-width: 40.0625em) {
	.wpsisac-image-slide img{height: 100% !important;width: 100% !important;object-fit: cover;object-position: top center;}
	.wpsisac-image-slide, .wpsisac-slide-wrap{height:350px;}
	.wpsisac-slick-slider.design-5 .wpsisac-image-slide, .wpsisac-slick-slider.design-5  .wpsisac-slide-wrap{height:auto !important;}
	.wpsisac-slick-slider h2{font-size:22px; line-height:26px;}
	.wpsisac-slider-short-content p{font-weight:normal !important}
	.wpsisac-slick-slider.design-4 .wpsisac-image-slide, .wpsisac-slick-slider.design-4 .wpsisac-slide-wrap{height:auto !important;}
	.wpsisac-slick-slider.design-4 .wpsisac-image-slide .wpsisac-slide-wrap .wpsisac-slider-content-left{padding:20px}
	.wpsisac-slick-carousal .wpsisac-image-slide-wrap, .wpsisac-slick-carousal .wpsisac-image-slide{height:auto !important}
}
@media only screen and (max-width: 480px) {   
	.wpsisac-slick-carousal.wpsisac-center .slick-slide .wpsisac-image-slide-wrap { opacity: 1; transform: scale(1); transition: all 300ms ease 0s;}
}.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.44.0 - 01-09-2025 */
@font-face{font-family:eicons;src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.44.0);src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.44.0#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.44.0) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.44.0) format("woff"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.44.0) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.44.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-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{background:var(--e-a-bg-logo);border-radius:50%;display:inline-block;line-height:1;padding:.75em}.e-logo-wrapper i{color:var(--e-a-color-logo);font-size:1em}.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{--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.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.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{height:100px;width:100px;fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3))}.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-left:auto;margin-right: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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;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: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.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))}.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{justify-content:flex-end}.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{justify-content:flex-end}.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{justify-content:flex-end}.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;font-size:15px;line-height:1;padding:12px 24px;fill:#fff;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;padding:.5em;fill:#fff}.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-1720{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--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:1140px;}.e-con{--container-max-width:1140px;}.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;}}.eihe-icon{display:flex;align-items:center}.eihe-icon svg{width:100%;fill:currentColor}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box{position:relative;display:block;overflow:hidden;backface-visibility:hidden;-webkit-backface-visibility:hidden;transform:translateZ(0);-o-transform:translateZ(0);-ms-transform:translateZ(0);-moz-transform:translateZ(0);-webkit-transform:translateZ(0);-moz-osx-font-smoothing:grayscale}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box.eihe_flex-start .eihe-caption>*{text-align:left}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box.eihe_center .eihe-caption>*{text-align:center}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box.eihe_flex-end .eihe-caption>*{text-align:right}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box img{position:relative;width:100%;vertical-align:middle}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box .eihe-caption{display:flex;align-items:center;justify-content:center;flex-direction:column;position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;color:#fff;z-index:2}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box .eihe-caption .eihe-title-cover{display:flex;align-items:center;flex-direction:row;margin-bottom:10px}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box .eihe-caption .eihe-title-cover .eihe-title{font-family:arial,sans-serif;font-size:40px;margin:0!important;padding:0!important;color:#fff}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box .eihe-caption .eihe-title-cover i{margin-top:0!important;margin-bottom:0!important;padding:0!important}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box .eihe-caption p{font-family:arial,sans-serif;font-size:16px;margin:0!important;padding:0!important;color:#fff}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box,.elementor-element.elementor-widget-e_image_hover_effects .eihe-box *,.elementor-element.elementor-widget-e_image_hover_effects .eihe-box :after,.elementor-element.elementor-widget-e_image_hover_effects .eihe-box :before,.elementor-element.elementor-widget-e_image_hover_effects .eihe-box:after,.elementor-element.elementor-widget-e_image_hover_effects .eihe-box:before{box-sizing:border-box;-webkit-transition:all .5s ease;-moz-transition:all .5s ease;transition:all .5s ease}.elementor-element.elementor-widget-e_image_hover_effects .eihe-box:before{z-index:1}[class*=' eihe-fade'] .eihe-caption,[class^=eihe-fade] .eihe-caption{opacity:0}[class*=' eihe-fade']:hover .eihe-caption,[class^=eihe-fade]:hover .eihe-caption{opacity:1}[class*=' eihe-fade']:hover .eihe-caption,[class*=' eihe-fade']:hover>img,[class^=eihe-fade]:hover .eihe-caption,[class^=eihe-fade]:hover>img{-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.eihe-fade-in-up .eihe-caption{-webkit-transform:translate(0,15%);-moz-transform:translate(0,15%);-ms-transform:translate(0,15%);-o-transform:translate(0,15%);transform:translate(0,15%)}.eihe-fade-in-down .eihe-caption{-webkit-transform:translate(0,-15%);-moz-transform:translate(0,-15%);-ms-transform:translate(0,-15%);-o-transform:translate(0,-15%);transform:translate(0,-15%)}.eihe-fade-in-left .eihe-caption{-webkit-transform:translate(-15%,0);-moz-transform:translate(-15%,0);-ms-transform:translate(-15%,0);-o-transform:translate(-15%,0);transform:translate(-15%,0)}.eihe-fade-in-right .eihe-caption{-webkit-transform:translate(15%,0);-moz-transform:translate(15%,0);-ms-transform:translate(15%,0);-o-transform:translate(15%,0);transform:translate(15%,0)}[class*=' eihe-push-']:hover .eihe-caption,[class^=eihe-push-]:hover .eihe-caption{-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.eihe-push-up .eihe-caption{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}.eihe-push-up:hover>img{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.eihe-push-down .eihe-caption{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.eihe-push-down:hover>img{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}.eihe-push-left .eihe-caption{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}.eihe-push-left:hover>img{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}.eihe-push-right .eihe-caption{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}.eihe-push-right:hover>img{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}[class*=' eihe-slide-']:hover .eihe-caption,[class^=eihe-slide-]:hover .eihe-caption{-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.eihe-slide-up .eihe-caption{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}.eihe-slide-down .eihe-caption{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.eihe-slide-left .eihe-caption{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}.eihe-slide-right .eihe-caption{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}[class*=' eihe-reveal-']:before,[class^=eihe-reveal-]:before{position:absolute;top:0;bottom:0;left:0;right:0;content:''}[class*=' eihe-reveal-'] .eihe-caption,[class^=eihe-reveal-] .eihe-caption{opacity:0}[class*=' eihe-reveal-']:hover:before,[class^=eihe-reveal-]:hover:before{-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}[class*=' eihe-reveal-']:hover .eihe-caption,[class^=eihe-reveal-]:hover .eihe-caption{opacity:1;-webkit-transition-delay:.21s;-moz-transition-delay:.21s;transition-delay:.21s}.eihe-reveal-up:before{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);-o-transform:translateY(100%);transform:translateY(100%)}.eihe-reveal-down:before{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.eihe-reveal-left:before{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%)}.eihe-reveal-right:before{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}[class*=' eihe-hinge-'],[class^=eihe-hinge-]{-webkit-perspective:50em;-moz-perspective:50em;perspective:50em}[class*=' eihe-hinge-'] .eihe-caption,[class^=eihe-hinge-] .eihe-caption{opacity:0;z-index:1}[class*=' eihe-hinge-']:hover img,[class^=eihe-hinge-]:hover img{opacity:0}[class*=' eihe-hinge-']:hover .eihe-caption,[class^=eihe-hinge-]:hover .eihe-caption{opacity:1;-webkit-transition-delay:.21s;-moz-transition-delay:.21s;transition-delay:.21s}.eihe-hinge-up img{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0}.eihe-hinge-up .eihe-caption{-webkit-transform:rotateX(90deg);-moz-transform:rotateX(90deg);-ms-transform:rotateX(90deg);-o-transform:rotateX(90deg);transform:rotateX(90deg);-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%}.eihe-hinge-up:hover>img{-webkit-transform:rotateX(-90deg);-moz-transform:rotateX(-90deg);-ms-transform:rotateX(-90deg);-o-transform:rotateX(-90deg);transform:rotateX(-90deg)}.eihe-hinge-up:hover .eihe-caption{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.eihe-hinge-down img{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%}.eihe-hinge-down .eihe-caption{-webkit-transform:rotateX(-90deg);-moz-transform:rotateX(-90deg);-ms-transform:rotateX(-90deg);-o-transform:rotateX(-90deg);transform:rotateX(-90deg);-webkit-transform-origin:50% -50%;-moz-transform-origin:50% -50%;-ms-transform-origin:50% -50%;-o-transform-origin:50% -50%;transform-origin:50% -50%}.eihe-hinge-down:hover>img{-webkit-transform:rotateX(90deg);-moz-transform:rotateX(90deg);-ms-transform:rotateX(90deg);-o-transform:rotateX(90deg);transform:rotateX(90deg);opacity:0}.eihe-hinge-down:hover .eihe-caption{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.eihe-hinge-left img{-webkit-transform-origin:0 50%;-moz-transform-origin:0 50%;-ms-transform-origin:0 50%;-o-transform-origin:0 50%;transform-origin:0 50%}.eihe-hinge-left .eihe-caption{-webkit-transform:rotateY(-90deg);-moz-transform:rotateY(-90deg);-ms-transform:rotateY(-90deg);-o-transform:rotateY(-90deg);transform:rotateY(-90deg);-webkit-transform-origin:100% 50%;-moz-transform-origin:100% 50%;-ms-transform-origin:100% 50%;-o-transform-origin:100% 50%;transform-origin:100% 50%}.eihe-hinge-left:hover>img{-webkit-transform:rotateY(90deg);-moz-transform:rotateY(90deg);-ms-transform:rotateY(90deg);-o-transform:rotateY(90deg);transform:rotateY(90deg)}.eihe-hinge-left:hover .eihe-caption{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.eihe-hinge-right img{-webkit-transform-origin:100% 50%;-moz-transform-origin:100% 50%;-ms-transform-origin:100% 50%;-o-transform-origin:100% 50%;transform-origin:100% 50%}.eihe-hinge-right .eihe-caption{-webkit-transform:rotateY(90deg);-moz-transform:rotateY(90deg);-ms-transform:rotateY(90deg);-o-transform:rotateY(90deg);transform:rotateY(90deg);-webkit-transform-origin:0 50%;-moz-transform-origin:0 50%;-ms-transform-origin:0 50%;-o-transform-origin:0 50%;transform-origin:0 50%}.eihe-hinge-right:hover>img{-webkit-transform:rotateY(-90deg);-moz-transform:rotateY(-90deg);-ms-transform:rotateY(-90deg);-o-transform:rotateY(-90deg);transform:rotateY(-90deg)}.eihe-hinge-right:hover .eihe-caption{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}[class*=' eihe-flip-'],[class^=eihe-flip-]{-webkit-perspective:50em;-moz-perspective:50em;perspective:50em}[class*=' eihe-flip-'] img,[class^=eihe-flip-] img{backface-visibility:hidden}[class*=' eihe-flip-'] .eihe-caption,[class^=eihe-flip-] .eihe-caption{opacity:0}[class*=' eihe-flip-']:hover>img,[class^=eihe-flip-]:hover>img{opacity:0}[class*=' eihe-flip-']:hover .eihe-caption,[class^=eihe-flip-]:hover .eihe-caption{opacity:1;-webkit-transition-delay:.14s;-moz-transition-delay:.14s;transition-delay:.14s}.eihe-flip-horiz .eihe-caption{-webkit-transform:rotateX(90deg);-moz-transform:rotateX(90deg);-ms-transform:rotateX(90deg);-o-transform:rotateX(90deg);transform:rotateX(90deg);-webkit-transform-origin:0 50%;-moz-transform-origin:0 50%;-ms-transform-origin:0 50%;-o-transform-origin:0 50%;transform-origin:0 50%}.eihe-flip-horiz:hover img{-webkit-transform:rotateX(-180deg);-moz-transform:rotateX(-180deg);-ms-transform:rotateX(-180deg);-o-transform:rotateX(-180deg);transform:rotateX(-180deg)}.eihe-flip-horiz:hover .eihe-caption{-webkit-transform:rotateX(0);-moz-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.eihe-flip-vert .eihe-caption{-webkit-transform:rotateY(90deg);-moz-transform:rotateY(90deg);-ms-transform:rotateY(90deg);-o-transform:rotateY(90deg);transform:rotateY(90deg);-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0}.eihe-flip-vert:hover>img{-webkit-transform:rotateY(-180deg);-moz-transform:rotateY(-180deg);-ms-transform:rotateY(-180deg);-o-transform:rotateY(-180deg);transform:rotateY(-180deg)}.eihe-flip-vert:hover .eihe-caption{-webkit-transform:rotateY(0);-moz-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.eihe-flip-diag-1 .eihe-caption{-webkit-transform:rotate3d(1,-1,0,100deg);-moz-transform:rotate3d(1,-1,0,100deg);-ms-transform:rotate3d(1,-1,0,100deg);-o-transform:rotate3d(1,-1,0,100deg);transform:rotate3d(1,-1,0,100deg)}.eihe-flip-diag-1:hover>img{-webkit-transform:rotate3d(-1,1,0,100deg);-moz-transform:rotate3d(-1,1,0,100deg);-ms-transform:rotate3d(-1,1,0,100deg);-o-transform:rotate3d(-1,1,0,100deg);transform:rotate3d(-1,1,0,100deg)}.eihe-flip-diag-1:hover .eihe-caption{-webkit-transform:rotate3d(0,0,0,0deg);-moz-transform:rotate3d(0,0,0,0deg);-ms-transform:rotate3d(0,0,0,0deg);-o-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg)}.eihe-flip-diag-2 .eihe-caption{-webkit-transform:rotate3d(1,1,0,100deg);-moz-transform:rotate3d(1,1,0,100deg);-ms-transform:rotate3d(1,1,0,100deg);-o-transform:rotate3d(1,1,0,100deg);transform:rotate3d(1,1,0,100deg)}.eihe-flip-diag-2:hover>img{-webkit-transform:rotate3d(-1,-1,0,100deg);-moz-transform:rotate3d(-1,-1,0,100deg);-ms-transform:rotate3d(-1,-1,0,100deg);-o-transform:rotate3d(-1,-1,0,100deg);transform:rotate3d(-1,-1,0,100deg)}.eihe-flip-diag-2:hover .eihe-caption{-webkit-transform:rotate3d(0,0,0,0deg);-moz-transform:rotate3d(0,0,0,0deg);-ms-transform:rotate3d(0,0,0,0deg);-o-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg)}[class*=' eihe-shutter-out-']:before,[class^=eihe-shutter-out-]:before{position:absolute;content:'';-webkit-transition-delay:105ms;-moz-transition-delay:105ms;transition-delay:105ms}[class*=' eihe-shutter-out-'] .eihe-caption,[class^=eihe-shutter-out-] .eihe-caption{opacity:0;-webkit-transition-delay:0s;-moz-transition-delay:0s;transition-delay:0s}[class*=' eihe-shutter-out-']:hover:before,[class^=eihe-shutter-out-]:hover:before{-webkit-transition-delay:0s;-moz-transition-delay:0s;transition-delay:0s}[class*=' eihe-shutter-out-']:hover .eihe-caption,[class^=eihe-shutter-out-]:hover .eihe-caption{opacity:1;-webkit-transition-delay:105ms;-moz-transition-delay:105ms;transition-delay:105ms}.eihe-shutter-out-horiz:before{left:50%;right:50%;top:0;bottom:0}.eihe-shutter-out-horiz:hover:before{left:0;right:0}.eihe-shutter-out-vert:before{top:50%;bottom:50%;left:0;right:0}.eihe-shutter-out-vert:hover:before{top:0;bottom:0}.eihe-shutter-out-diag-1:before{top:50%;bottom:50%;left:-35%;right:-35%;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.eihe-shutter-out-diag-1:hover:before{top:-35%;bottom:-35%}.eihe-shutter-out-diag-2:before{top:50%;bottom:50%;left:-35%;right:-35%;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.eihe-shutter-out-diag-2:hover:before{top:-35%;bottom:-35%}[class*=' eihe-shutter-in-']:after,[class*=' eihe-shutter-in-']:before,[class^=eihe-shutter-in-]:after,[class^=eihe-shutter-in-]:before{position:absolute;content:''}[class*=' eihe-shutter-in-']:after,[class^=eihe-shutter-in-]:after{top:0;left:0}[class*=' eihe-shutter-in-']:before,[class^=eihe-shutter-in-]:before{right:0;bottom:0}[class*=' eihe-shutter-in-'] .eihe-caption,[class^=eihe-shutter-in-] .eihe-caption{opacity:0;z-index:1}[class*=' eihe-shutter-in-']:hover .eihe-caption,[class^=eihe-shutter-in-]:hover .eihe-caption{opacity:1;-webkit-transition-delay:.21s;-moz-transition-delay:.21s;transition-delay:.21s}.eihe-shutter-in-horiz:after,.eihe-shutter-in-horiz:before{width:0;height:100%}.eihe-shutter-in-horiz:hover:after,.eihe-shutter-in-horiz:hover:before{width:50%}.eihe-shutter-in-vert:after,.eihe-shutter-in-vert:before{height:0;width:100%}.eihe-shutter-in-vert:hover:after,.eihe-shutter-in-vert:hover:before{height:50%}.eihe-shutter-in-out-horiz:after,.eihe-shutter-in-out-horiz:before{width:0;height:100%;opacity:.75}.eihe-shutter-in-out-horiz:hover:after,.eihe-shutter-in-out-horiz:hover:before{width:100%}.eihe-shutter-in-out-vert:after,.eihe-shutter-in-out-vert:before{height:0;width:100%;opacity:.75}.eihe-shutter-in-out-vert:hover:after,.eihe-shutter-in-out-vert:hover:before{height:100%}.eihe-shutter-in-out-diag-1:after,.eihe-shutter-in-out-diag-1:before{width:200%;height:200%;-webkit-transition:all .6s ease;-moz-transition:all .6s ease;transition:all .6s ease;opacity:.75}.eihe-shutter-in-out-diag-1:after{-webkit-transform:skew(-45deg) translateX(-150%);-moz-transform:skew(-45deg) translateX(-150%);-ms-transform:skew(-45deg) translateX(-150%);-o-transform:skew(-45deg) translateX(-150%);transform:skew(-45deg) translateX(-150%)}.eihe-shutter-in-out-diag-1:before{-webkit-transform:skew(-45deg) translateX(150%);-moz-transform:skew(-45deg) translateX(150%);-ms-transform:skew(-45deg) translateX(150%);-o-transform:skew(-45deg) translateX(150%);transform:skew(-45deg) translateX(150%)}.eihe-shutter-in-out-diag-1:hover:after{-webkit-transform:skew(-45deg) translateX(-50%);-moz-transform:skew(-45deg) translateX(-50%);-ms-transform:skew(-45deg) translateX(-50%);-o-transform:skew(-45deg) translateX(-50%);transform:skew(-45deg) translateX(-50%)}.eihe-shutter-in-out-diag-1:hover:before{-webkit-transform:skew(-45deg) translateX(50%);-moz-transform:skew(-45deg) translateX(50%);-ms-transform:skew(-45deg) translateX(50%);-o-transform:skew(-45deg) translateX(50%);transform:skew(-45deg) translateX(50%)}.eihe-shutter-in-out-diag-2:after,.eihe-shutter-in-out-diag-2:before{width:200%;height:200%;-webkit-transition:all .6s ease;-moz-transition:all .6s ease;transition:all .6s ease;opacity:.75}.eihe-shutter-in-out-diag-2:after{-webkit-transform:skew(45deg) translateX(-100%);-moz-transform:skew(45deg) translateX(-100%);-ms-transform:skew(45deg) translateX(-100%);-o-transform:skew(45deg) translateX(-100%);transform:skew(45deg) translateX(-100%)}.eihe-shutter-in-out-diag-2:before{-webkit-transform:skew(45deg) translateX(100%);-moz-transform:skew(45deg) translateX(100%);-ms-transform:skew(45deg) translateX(100%);-o-transform:skew(45deg) translateX(100%);transform:skew(45deg) translateX(100%)}.eihe-shutter-in-out-diag-2:hover:after{-webkit-transform:skew(45deg) translateX(0);-moz-transform:skew(45deg) translateX(0);-ms-transform:skew(45deg) translateX(0);-o-transform:skew(45deg) translateX(0);transform:skew(45deg) translateX(0)}.eihe-shutter-in-out-diag-2:hover:before{-webkit-transform:skew(45deg) translateX(0);-moz-transform:skew(45deg) translateX(0);-ms-transform:skew(45deg) translateX(0);-o-transform:skew(45deg) translateX(0);transform:skew(45deg) translateX(0)}[class*=' eihe-fold'],[class^=eihe-fold]{-webkit-perspective:50em;-moz-perspective:50em;perspective:50em}[class*=' eihe-fold'] img,[class^=eihe-fold] img{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0}[class*=' eihe-fold'] .eihe-caption,[class^=eihe-fold] .eihe-caption{z-index:1;opacity:0}[class*=' eihe-fold']:hover>img,[class^=eihe-fold]:hover>img{opacity:0;-webkit-transition-delay:0;-moz-transition-delay:0;transition-delay:0}[class*=' eihe-fold']:hover .eihe-caption,[class^=eihe-fold]:hover .eihe-caption{-webkit-transform:rotateX(0) translate3d(0,0,0) scale(1);-moz-transform:rotateX(0) translate3d(0,0,0) scale(1);-ms-transform:rotateX(0) translate3d(0,0,0) scale(1);-o-transform:rotateX(0) translate3d(0,0,0) scale(1);transform:rotateX(0) translate3d(0,0,0) scale(1);opacity:1;-webkit-transition-delay:.21s;-moz-transition-delay:.21s;transition-delay:.21s}.eihe-fold-up>img{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0}.eihe-fold-up .eihe-caption{-webkit-transform:rotateX(-90deg) translate3d(0,-50%,0) scale(.6);-moz-transform:rotateX(-90deg) translate3d(0,-50%,0) scale(.6);-ms-transform:rotateX(-90deg) translate3d(0,-50%,0) scale(.6);-o-transform:rotateX(-90deg) translate3d(0,-50%,0) scale(.6);transform:rotateX(-90deg) translate3d(0,-50%,0) scale(.6);-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%}.eihe-fold-up:hover>img{-webkit-transform:rotateX(90deg) scale(.6) translateY(50%);-moz-transform:rotateX(90deg) scale(.6) translateY(50%);-ms-transform:rotateX(90deg) scale(.6) translateY(50%);-o-transform:rotateX(90deg) scale(.6) translateY(50%);transform:rotateX(90deg) scale(.6) translateY(50%)}.eihe-fold-down>img{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%}.eihe-fold-down .eihe-caption{-webkit-transform:rotateX(90deg) translate3d(0,50%,0) scale(.6);-moz-transform:rotateX(90deg) translate3d(0,50%,0) scale(.6);-ms-transform:rotateX(90deg) translate3d(0,50%,0) scale(.6);-o-transform:rotateX(90deg) translate3d(0,50%,0) scale(.6);transform:rotateX(90deg) translate3d(0,50%,0) scale(.6);-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0}.eihe-fold-down:hover>img{-webkit-transform:rotateX(-90deg) scale(.6) translateY(-50%);-moz-transform:rotateX(-90deg) scale(.6) translateY(-50%);-ms-transform:rotateX(-90deg) scale(.6) translateY(-50%);-o-transform:rotateX(-90deg) scale(.6) translateY(-50%);transform:rotateX(-90deg) scale(.6) translateY(-50%)}.eihe-fold-left>img{-webkit-transform-origin:0 50%;-moz-transform-origin:0 50%;-ms-transform-origin:0 50%;-o-transform-origin:0 50%;transform-origin:0 50%}.eihe-fold-left .eihe-caption{-webkit-transform:rotateY(90deg) translate3d(-50%,0,0) scale(.6);-moz-transform:rotateY(90deg) translate3d(-50%,0,0) scale(.6);-ms-transform:rotateY(90deg) translate3d(-50%,0,0) scale(.6);-o-transform:rotateY(90deg) translate3d(-50%,0,0) scale(.6);transform:rotateY(90deg) translate3d(-50%,0,0) scale(.6);-webkit-transform-origin:100% 50%;-moz-transform-origin:100% 50%;-ms-transform-origin:100% 50%;-o-transform-origin:100% 50%;transform-origin:100% 50%}.eihe-fold-left:hover>img{-webkit-transform:rotateY(-90deg) scale(.6) translateX(50%);-moz-transform:rotateY(-90deg) scale(.6) translateX(50%);-ms-transform:rotateY(-90deg) scale(.6) translateX(50%);-o-transform:rotateY(-90deg) scale(.6) translateX(50%);transform:rotateY(-90deg) scale(.6) translateX(50%)}.eihe-fold-right>img{-webkit-transform-origin:100% 50%;-moz-transform-origin:100% 50%;-ms-transform-origin:100% 50%;-o-transform-origin:100% 50%;transform-origin:100% 50%}.eihe-fold-right .eihe-caption{-webkit-transform:rotateY(-90deg) translate3d(50%,0,0) scale(.6);-moz-transform:rotateY(-90deg) translate3d(50%,0,0) scale(.6);-ms-transform:rotateY(-90deg) translate3d(50%,0,0) scale(.6);-o-transform:rotateY(-90deg) translate3d(50%,0,0) scale(.6);transform:rotateY(-90deg) translate3d(50%,0,0) scale(.6);-webkit-transform-origin:0 50%;-moz-transform-origin:0 50%;-ms-transform-origin:0 50%;-o-transform-origin:0 50%;transform-origin:0 50%}.eihe-fold-right:hover>img{-webkit-transform:rotateY(90deg) scale(.6) translateX(-50%);-moz-transform:rotateY(90deg) scale(.6) translateX(-50%);-ms-transform:rotateY(90deg) scale(.6) translateX(-50%);-o-transform:rotateY(90deg) scale(.6) translateX(-50%);transform:rotateY(90deg) scale(.6) translateX(-50%)}.eihe-zoom-in .eihe-caption{opacity:0;-webkit-transform:scale(.5);-moz-transform:scale(.5);-ms-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5)}.eihe-zoom-in:hover .eihe-caption{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:1}[class*=' eihe-zoom-out'] .eihe-caption,[class^=eihe-zoom-out] .eihe-caption{-webkit-transform:scale(.5);-moz-transform:scale(.5);-ms-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;-o-transform-origin:50% 50%;transform-origin:50% 50%;opacity:0}[class*=' eihe-zoom-out'].hover .eihe-caption,[class*=' eihe-zoom-out']:hover .eihe-caption,[class^=eihe-zoom-out].hover .eihe-caption,[class^=eihe-zoom-out]:hover .eihe-caption{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:1;-webkit-transition-delay:.35s;-moz-transition-delay:.35s;transition-delay:.35s}.eihe-zoom-out:hover>img{-webkit-transform:scale(.5);-moz-transform:scale(.5);-ms-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);opacity:0}.eihe-zoom-out-up.hover>img,.eihe-zoom-out-up:hover>img{-webkit-animation:eihe-zoom-out-up .4025s linear;-moz-animation:eihe-zoom-out-up .4025s linear;animation:eihe-zoom-out-up .4025s linear;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;-moz-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes eihe-zoom-out-up{50%{-webkit-transform:scale(.8) translateY(0);-moz-transform:scale(.8) translateY(0);-ms-transform:scale(.8) translateY(0);-o-transform:scale(.8) translateY(0);transform:scale(.8) translateY(0);opacity:.5}100%{-webkit-transform:scale(.8) translateY(-150%);-moz-transform:scale(.8) translateY(-150%);-ms-transform:scale(.8) translateY(-150%);-o-transform:scale(.8) translateY(-150%);transform:scale(.8) translateY(-150%);opacity:.5}}@keyframes eihe-zoom-out-up{50%{-webkit-transform:scale(.8) translateY(0);-moz-transform:scale(.8) translateY(0);-ms-transform:scale(.8) translateY(0);-o-transform:scale(.8) translateY(0);transform:scale(.8) translateY(0);opacity:.5}100%{-webkit-transform:scale(.8) translateY(-150%);-moz-transform:scale(.8) translateY(-150%);-ms-transform:scale(.8) translateY(-150%);-o-transform:scale(.8) translateY(-150%);transform:scale(.8) translateY(-150%);opacity:.5}}.eihe-zoom-out-down.hover>img,.eihe-zoom-out-down:hover>img{-webkit-animation:eihe-zoom-out-down .4025s linear;-moz-animation:eihe-zoom-out-down .4025s linear;animation:eihe-zoom-out-down .4025s linear;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;-moz-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes eihe-zoom-out-down{50%{-webkit-transform:scale(.8) translateY(0);-moz-transform:scale(.8) translateY(0);-ms-transform:scale(.8) translateY(0);-o-transform:scale(.8) translateY(0);transform:scale(.8) translateY(0);opacity:.5}100%{-webkit-transform:scale(.8) translateY(150%);-moz-transform:scale(.8) translateY(150%);-ms-transform:scale(.8) translateY(150%);-o-transform:scale(.8) translateY(150%);transform:scale(.8) translateY(150%);opacity:.5}}@keyframes eihe-zoom-out-down{50%{-webkit-transform:scale(.8) translateY(0);-moz-transform:scale(.8) translateY(0);-ms-transform:scale(.8) translateY(0);-o-transform:scale(.8) translateY(0);transform:scale(.8) translateY(0);opacity:.5}100%{-webkit-transform:scale(.8) translateY(150%);-moz-transform:scale(.8) translateY(150%);-ms-transform:scale(.8) translateY(150%);-o-transform:scale(.8) translateY(150%);transform:scale(.8) translateY(150%);opacity:.5}}.eihe-zoom-out-left.hover>img,.eihe-zoom-out-left:hover>img{-webkit-animation:eihe-zoom-out-left .4025s linear;-moz-animation:eihe-zoom-out-left .4025s linear;animation:eihe-zoom-out-left .4025s linear;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;-moz-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes eihe-zoom-out-left{50%{-webkit-transform:scale(.8) translateX(0);-moz-transform:scale(.8) translateX(0);-ms-transform:scale(.8) translateX(0);-o-transform:scale(.8) translateX(0);transform:scale(.8) translateX(0);opacity:.5}100%{-webkit-transform:scale(.8) translateX(-150%);-moz-transform:scale(.8) translateX(-150%);-ms-transform:scale(.8) translateX(-150%);-o-transform:scale(.8) translateX(-150%);transform:scale(.8) translateX(-150%);opacity:.5}}@keyframes eihe-zoom-out-left{50%{-webkit-transform:scale(.8) translateX(0);-moz-transform:scale(.8) translateX(0);-ms-transform:scale(.8) translateX(0);-o-transform:scale(.8) translateX(0);transform:scale(.8) translateX(0);opacity:.5}100%{-webkit-transform:scale(.8) translateX(-150%);-moz-transform:scale(.8) translateX(-150%);-ms-transform:scale(.8) translateX(-150%);-o-transform:scale(.8) translateX(-150%);transform:scale(.8) translateX(-150%);opacity:.5}}.eihe-zoom-out-right.hover>img,.eihe-zoom-out-right:hover>img{-webkit-animation:eihe-zoom-out-right .4025s linear;-moz-animation:eihe-zoom-out-right .4025s linear;animation:eihe-zoom-out-right .4025s linear;-webkit-animation-iteration-count:1;-moz-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;-moz-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes eihe-zoom-out-right{50%{-webkit-transform:scale(.8) translateX(0);-moz-transform:scale(.8) translateX(0);-ms-transform:scale(.8) translateX(0);-o-transform:scale(.8) translateX(0);transform:scale(.8) translateX(0);opacity:.5}100%{-webkit-transform:scale(.8) translateX(150%);-moz-transform:scale(.8) translateX(150%);-ms-transform:scale(.8) translateX(150%);-o-transform:scale(.8) translateX(150%);transform:scale(.8) translateX(150%);opacity:.5}}@keyframes eihe-zoom-out-right{50%{-webkit-transform:scale(.8) translateX(0);-moz-transform:scale(.8) translateX(0);-ms-transform:scale(.8) translateX(0);-o-transform:scale(.8) translateX(0);transform:scale(.8) translateX(0);opacity:.5}100%{-webkit-transform:scale(.8) translateX(150%);-moz-transform:scale(.8) translateX(150%);-ms-transform:scale(.8) translateX(150%);-o-transform:scale(.8) translateX(150%);transform:scale(.8) translateX(150%);opacity:.5}}.eihe-zoom-out-flip-horiz{-webkit-perspective:50em;-moz-perspective:50em;perspective:50em}.eihe-zoom-out-flip-horiz .eihe-caption{opacity:0;-webkit-transform:rotateX(90deg) translateY(-100%) scale(.5);-moz-transform:rotateX(90deg) translateY(-100%) scale(.5);-ms-transform:rotateX(90deg) translateY(-100%) scale(.5);-o-transform:rotateX(90deg) translateY(-100%) scale(.5);transform:rotateX(90deg) translateY(-100%) scale(.5)}.eihe-zoom-out-flip-horiz.hover>img,.eihe-zoom-out-flip-horiz:hover>img{-webkit-transform:rotateX(-100deg) translateY(50%) scale(.5);-moz-transform:rotateX(-100deg) translateY(50%) scale(.5);-ms-transform:rotateX(-100deg) translateY(50%) scale(.5);-o-transform:rotateX(-100deg) translateY(50%) scale(.5);transform:rotateX(-100deg) translateY(50%) scale(.5);opacity:0;-webkit-transition-delay:0;-moz-transition-delay:0;transition-delay:0}.eihe-zoom-out-flip-horiz.hover .eihe-caption,.eihe-zoom-out-flip-horiz:hover .eihe-caption{-webkit-transform:rotateX(0) translateY(0) scale(1);-moz-transform:rotateX(0) translateY(0) scale(1);-ms-transform:rotateX(0) translateY(0) scale(1);-o-transform:rotateX(0) translateY(0) scale(1);transform:rotateX(0) translateY(0) scale(1);opacity:1;-webkit-transition-delay:.35s;-moz-transition-delay:.35s;transition-delay:.35s}.eihe-zoom-out-flip-vert{-webkit-perspective:50em;-moz-perspective:50em;perspective:50em}.eihe-zoom-out-flip-vert .eihe-caption{opacity:0;-webkit-transform:rotateY(90deg) translate(50%,0) scale(.5);-moz-transform:rotateY(90deg) translate(50%,0) scale(.5);-ms-transform:rotateY(90deg) translate(50%,0) scale(.5);-o-transform:rotateY(90deg) translate(50%,0) scale(.5);transform:rotateY(90deg) translate(50%,0) scale(.5)}.eihe-zoom-out-flip-vert.hover>img,.eihe-zoom-out-flip-vert:hover>img{-webkit-transform:rotateY(-100deg) translateX(50%) scale(.5);-moz-transform:rotateY(-100deg) translateX(50%) scale(.5);-ms-transform:rotateY(-100deg) translateX(50%) scale(.5);-o-transform:rotateY(-100deg) translateX(50%) scale(.5);transform:rotateY(-100deg) translateX(50%) scale(.5);opacity:0;-webkit-transition-delay:0;-moz-transition-delay:0;transition-delay:0}.eihe-zoom-out-flip-vert.hover .eihe-caption,.eihe-zoom-out-flip-vert:hover .eihe-caption{-webkit-transform:rotateY(0) translate(0,0) scale(1);-moz-transform:rotateY(0) translate(0,0) scale(1);-ms-transform:rotateY(0) translate(0,0) scale(1);-o-transform:rotateY(0) translate(0,0) scale(1);transform:rotateY(0) translate(0,0) scale(1);opacity:1;-webkit-transition-delay:.35s;-moz-transition-delay:.35s;transition-delay:.35s}.eihe-blur .eihe-caption{opacity:0}.eihe-blur:hover>img{-webkit-filter:blur(30px);filter:blur(30px);-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2);opacity:0}.eihe-blur:hover .eihe-caption{opacity:1;-webkit-transition-delay:.21s;-moz-transition-delay:.21s;transition-delay:.21s}/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;

    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('/wp-content/themes/enliven/assets/bootstrap/fonts/glyphicons-halflings-regular.eot');
  src: url('/wp-content/themes/enliven/assets/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/wp-content/themes/enliven/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('/wp-content/themes/enliven/assets/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/wp-content/themes/enliven/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/wp-content/themes/enliven/assets/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 10px;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 3;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);

  line-break: auto;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/*# sourceMappingURL=bootstrap.css.map */
/*
Theme Name: Enliven
Theme URI: http://themezhut.com/themes/enliven/
Author: ThemezHut
Author URI: http://themezhut.com/
Description: Enliven is a modern beautiful multipurpose WordPress theme that will be the perfect solution for your business website. Enliven has a clean portfolio layout that utilizes the Jetpack portfolio content type. And also it utilizes the Jetpack testimonial content type to showcase your customer feedbacks in a nicer and clean way. Business homepage widgets help you to setup the business homepage faster and without touching any code. Find more information about this theme at http://www.themezhut.com/themes/enliven. View the demonstration at http://www.themezhut.com/demo/enliven.
Version: 1.1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: enliven
Tags: white, light, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-menu, featured-images, sticky-post, theme-options, threaded-comments, translation-ready 

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Enliven is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html{font-family:sans-serif;font-size:14px}
body{margin:0}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}
audio,canvas,progress,video{display:inline-block;vertical-align:baseline}
audio:not([controls]){display:none;height:0}
[hidden],template{display:none}
a{background-color:transparent}
a:active,a:hover{outline:0}
abbr[title]{border-bottom:1px dotted}
b,strong{font-weight:700}
dfn{font-style:italic}
h1{font-size:2em;margin:.67em 0}
mark{background:#ff0;color:#000}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sup{top:-.5em}
sub{bottom:-.25em}
img{border:0}
svg:not(:root){overflow:hidden}
hr{box-sizing:content-box;height:0}
pre{overflow:auto}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}
button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}
button{overflow:visible}
button,select{text-transform:none}
button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer}
button[disabled],html input[disabled]{cursor:default}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
input{line-height:normal}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}
input[type="search"]{box-sizing:content-box}
fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}
legend{border:0;padding:0}
textarea{overflow:auto}
optgroup{font-weight:700}
table{border-collapse:collapse;border-spacing:0}
td,th{padding:0}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,button,input,select,textarea{color:#717171;font-family:"Open Sans",sans-serif;font-size:14px;line-height:1.5}
h1,h2,h3,h4,h5,h6{clear:both;font-family:"Montserrat",sans-serif;margin:35px 0 20px;font-weight:700}
h1{font-size:25.998px}
h2{font-size:23.996px}
h3{font-size:21.994px}
h4{font-size:20.006px}
h5{font-size:18.004px}
h6{font-size:16.002px}
p{margin-bottom:1.5em}
dfn,cite,em,i{font-style:italic}
blockquote{padding:10px 20px;margin:10px 0 10px 10px;font-size:16px;border-left:5px solid #ea7054}
cite{margin:10px 10px 0;display:block;font-size:14px}
address{margin:0 0 1.5em}
pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;font-size:13.125px;line-height:1.6;margin-bottom:1.6em;max-width:100%;overflow:auto;padding:1.6em}
code,kbd,tt,var{font-family:Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;font-size:13.125px}
abbr,acronym{border-bottom:1px dotted #666;cursor:help}
mark,ins{background:#fff9c0;text-decoration:none}
big{font-size:125%}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html{box-sizing:border-box}
*,:before,:after{box-sizing:inherit}
body{background:#fff}
blockquote,q{quotes:"" ""}
blockquote:before,blockquote:after,q:before,q:after{content:""}
hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}
ul,ol{margin:0 0 1.5em 1.5em}
ul{list-style:disc}
ol{list-style:decimal}
li > ul,li > ol{margin-bottom:0;margin-left:1.5em}
dt{font-weight:700}
dd{margin:0 1.5em 1.5em}
img{height:auto;max-width:100%}
table{border-collapse:collapse;border-spacing:0;margin:0 0 1.5em;width:100%}
th{font-weight:700}
th,td{border:1px solid #EAEAEA;padding:6px 10px}
caption,th,td{text-align:left}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,input[type="button"],input[type="reset"],input[type="submit"]{background-color:#325edd;border-radius:5px;display:inline-block;cursor:pointer;color:#fff;font-size:14px;font-weight:700;line-height:20px;padding:10px 20px;text-decoration:none;text-transform:uppercase;border:none}
button:hover,input[type="button"]:hover,input[type="reset"]:hover,input[type="submit"]:hover{background-color:#0093dd;color:#fff}
button:active,button:focus,input[type="button"]:active,input[type="button"]:focus,input[type="reset"]:active,input[type="reset"]:focus,input[type="submit"]:active,input[type="submit"]:focus{position:relative;top:1px;color:#fff}
.enl-cta-btn{background-color:#325edd;border-radius:10px;display:inline-block;cursor:pointer;color:#fff;font-size:15px;font-weight:700;line-height:20px;padding:15px 25px;text-decoration:none;text-transform:uppercase;margin-top:44px}
.enl-cta-btn:hover{background-color:#0093dd;color:#fff}
.enl-cta-btn:active{position:relative;top:1px;color:#fff}
.enl-cta-btn:visited{color:#fff}
.enl-slide-btn-1{background-color:#325edd;border-radius:10px;display:inline-block;cursor:pointer;color:#fff;font-size:15px;font-weight:700;line-height:20px;padding:15px 25px;text-decoration:none;text-transform:uppercase;border:none;margin:20px 7px 0}
.enl-slide-btn-1:hover{background-color:#0093dd;color:#fff}
.enl-slide-btn-1:active{position:relative;top:1px;color:#fff}
.enl-slide-btn-1:visited{color:#fff}
.enl-slide-btn-2{border:2px solid #fff;background:transparent;border-radius:10px;display:inline-block;cursor:pointer;color:#fff;font-size:15px;font-weight:700;line-height:20px;padding:13px 25px;text-decoration:none;text-transform:uppercase;margin:20px 7px 0}
.enl-slide-btn-2:hover{background-color:#fff;color:#444}
.enl-slide-btn-2:active{position:relative;top:1px;color:#444}
input[type="text"],input[type="email"],input[type="url"],input[type="password"],input[type="search"],textarea{color:#666;border:1px solid #eaeaea;border-radius:3px;font-weight:400}
input[type="text"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="password"]:focus,input[type="search"]:focus,textarea:focus{color:#111}
input[type="text"],input[type="email"],input[type="url"],input[type="password"],input[type="search"]{padding:8px}
textarea{padding-left:3px;width:100%}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a{color:#0093dd;transition:all .2s ease-in-out}
a:visited{color:purple}
a:hover,a:focus,a:active{color:#000000;text-decoration:none}
a:focus{outline:thin dotted}
a:hover,a:active{outline:0}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation{clear:both;display:block;float:right;font-size:14.994px;text-transform:uppercase;letter-spacing:1px;font-family:"Montserrat",sans-serif}
.main-navigation ul{display:none;list-style:none;margin:0;padding-left:0}
.main-navigation ul ul{box-shadow:0 3px 3px rgba(0,0,0,0.2);float:left;position:absolute;top:80px;left:-999em;z-index:99999;background:#0093dd;padding:20px 0;font-family:"Open Sans",sans-serif}
.main-navigation ul ul ul{left:-999em;top:-20px}
.main-navigation ul ul li:hover > ul,.main-navigation ul ul li.focus > ul{left:100%}
.main-navigation ul ul a{width:220px;font-size:14px;font-weight:400;line-height:1.4;padding:5px 25px;color:#ffffff;text-transform:none}
.main-navigation ul ul a:hover{color:#0093dd;background:#ffffff;padding:10px}
.main-navigation ul li:hover > ul,.main-navigation ul li.focus > ul{left:auto}
.main-navigation li{float:left;position:relative}
.main-navigation a{color:#626262;display:block;line-height:120px;padding:0 20px;text-decoration:none}
.main-navigation a:hover{color:#ddd}
.menu > li:last-child a{padding-right:0}
.menu-toggle,.main-navigation.toggled ul{display:block}
@media screen and (min-width: 991px) {
.menu-toggle{display:none}
.main-navigation ul{display:block}
}
.site-main .comment-navigation,.site-main
.posts-navigation,.site-main
.post-navigation{margin:0 0 1.5em;overflow:hidden;padding:35px;background-color:#fcfcfc}
.comment-navigation .nav-previous,.posts-navigation .nav-previous,.post-navigation .nav-previous{float:left;width:50%}
.comment-navigation .nav-next,.posts-navigation .nav-next,.post-navigation .nav-next{float:right;text-align:right;width:50%}
.nav-next:after,.nav-previous:before{display:inline-block;font-family:FontAwesome;font-size:14px;color:#b1b1b1}
.nav-next:after{content:"\f054";margin-left:15px}
.nav-previous:before{content:"\f053";margin-right:15px}
.nav-links a{color:#888;text-transform:uppercase;font-weight:700}
.nav-links a:hover{color:#555}
@media screen and (min-width: 991px) {
.sticky-nav .main-navigation a{line-height:31px;transition:all .5s ease;color:#626262}
.sticky-nav .main-navigation ul ul{top:31px}
.sticky-nav .main-navigation ul ul a{line-height:1.4;color:#ffffff}
.sticky-nav .main-navigation ul ul a:hover{color:#0093dd}
.sticky-nav .main-navigation ul ul ul{top:-20px}
}
#main-nav-button{background:#0093dd;color:#fff;display:none;line-height:40px;margin:5px 0;text-align:left;width:40px;float:right}
#main-nav-button:hover{color:#ccc;text-decoration:none}
@media screen and (max-width: 991px) {
#main-nav-button{display:inline-block}
}
#main-nav-button:before{content:"\f0c9";display:inline-block;font-family:FontAwesome;margin:0 10px}
.responsive-mainnav{background:#333;display:none}
.responsive-mainnav ul{margin:0;padding:5px}
.responsive-mainnav li{list-style:none}
.responsive-mainnav li a{color:#aaa;line-height:26px;padding:10px 15px;text-decoration:none;display:block}
.responsive-mainnav li a:hover{color:#0093dd}
.responsive-mainnav li ul{margin-left:2em}
@media screen and (min-width: 991px) {
.responsive-mainnav{display:none!important}
}
@media screen and (min-width: 991px) {
.image-bg-header a{color:#fff}
}
.pagination{margin:0 auto;padding:1em 0;text-align:center;display:block}
.nav-links .page-numbers{color:#fff}
.nav-links .page-numbers:hover{color:#fff}
.page-numbers{background-color:#c5c5c5;color:#fff;padding:10px 15px;font-size:14px;font-weight:700;border-radius:5px;margin:0 2px}
.page-numbers:hover{background:#888}
.nav-links .current{background:#888;color:#fff;padding:10px 15px;font-weight:700;border-radius:5px;margin:0 2px}
.screen-reader-text{position:absolute;top:-9999em;left:-9999em}
#menu-social ul{list-style:none;text-align:center;margin:0 0 20px;padding:0}
#menu-social ul li{display:inline-block;position:relative;width:45px;height:45px;text-align:center;line-height:45px;margin:0 3px}
#menu-social li a{display:block;width:45px;height:45px;color:#888;border:2px solid #888;border-radius:90px}
#menu-social li a:hover{color:#fff;border:2px solid #fff}
#menu-social li a::before{content:'\f408';display:inline-block;padding:0 5px;font-family:'FontAwesome';font-size:18px;vertical-align:top}
#menu-social li a[href*="wordpress.org"]::before,#menu-social li a[href*="wordpress.com"]::before{content:'\f205'}
#menu-social li a[href*="facebook.com"]::before{content:'\f09a'}
#menu-social li a[href*="twitter.com"]::before{content:'\f099'}
#menu-social li a[href*="dribbble.com"]::before{content:'\f17d'}
#menu-social li a[href*="plus.google.com"]::before{content:'\f0d5'}
#menu-social li a[href*="pinterest.com"]::before{content:'\f0d2'}
#menu-social li a[href*="github.com"]::before{content:'\f09b'}
#menu-social li a[href*="tumblr.com"]::before{content:'\f173'}
#menu-social li a[href*="youtube.com"]::before{content:'\f167'}
#menu-social li a[href*="flickr.com"]::before{content:'\f16e'}
#menu-social li a[href*="vimeo.com"]::before{content:'\f27d'}
#menu-social li a[href*="instagram.com"]::before{content:'\f16d'}
#menu-social li a[href*="codepen.io"]::before{content:'\f1cb'}
#menu-social li a[href*="linkedin.com"]::before{content:'\f0e1'}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}
.screen-reader-text:hover,.screen-reader-text:active,.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,0.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft{display:inline;float:left;margin-right:1.5em}
.alignright{display:inline;float:right;margin-left:1.5em}
.aligncenter{display:block;margin-left:auto;margin-right:auto}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,.clear:after,.entry-content:before,.entry-content:after,.comment-content:before,.comment-content:after,.site-header:before,.site-header:after,.site-content:before,.site-content:after,.site-footer:before,.site-footer:after{content:"";display:table}
.clear:after,.entry-content:after,.comment-content:after,.site-header:after,.site-content:after,.site-footer:after{clear:both}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget{margin:0 0 1.5em}
.widget select{max-width:100%}
.enl-main-sidebar .container{max-width:100%}
.enl-widget{padding:30px;margin-bottom:30px;background:#fcfcfc}
.enl-widget ul{padding:0;margin:0}
.enl-widget ul li{list-style:none;border-bottom:1px solid #eee}
.enl-widget ul li a{line-height:15px;padding:15px 0;display:block}
.enl-widget a{color:#717171}
.enl-widget a:hover{color:#0093dd}
.enl-widget-title{margin:-30px -30px 15px;line-height:60px;padding:0 30px;background:#f5f5f5;color:#555;font-size:16.002px;font-weight:700;text-transform:uppercase}
.enl-widget-title a{color:#555}
.enl-front-widget-title{color:#333;font-size:30.002px;font-weight:700;text-transform:uppercase;line-height:1;margin:0;text-align:center}
.frnt-wgt-view-all{margin:13px 0 0;font-weight:600;letter-spacing:1px;font-size:13px;text-transform:uppercase;text-align:center}
.frnt-wgt-view-all a{color:#717171}
.frnt-wgt-view-all a:hover{color:#333}
/**
 * Icon blocks widget.
 */
.enl-blocks-widget{padding:35px 0 90px;background:#fff}
.enl-blocks-widget .enl-front-widget-title{margin:45px 0 5px}
.enl-block-inner{float:left;margin-left:60px}
.enl-block-icon{color:#0093dd;float:left;display:inline-block;font-size:36px;margin-right:-68px;margin-top:-15px}
.enl-block-widget-title h2{color:#485561;font-size:30.002px;font-weight:700;text-transform:uppercase;line-height:1;margin:35px 0 0;text-align:center}
.enl-block-widget-desc p{text-align:center;margin:12px 0 10px;line-height:1;font-weight:400;text-transform:uppercase;font-size:15px;letter-spacing:1px}
.enl-block{margin:60px 0 0}
.enl-block-title{color:#555;font-size:18.004px;font-weight:700;margin:0 0 26px;line-height:1}
@media screen and (max-width: 990px) {
.enl-block-title{font-size:16.002px;line-height:1.3}
}
.enl-block-desc{margin:0;color:#888;line-height:1.714}
.enl-block-desc p{margin:0}
/**
 *	Call to action widget
 */
.enl-ct-action {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #222222;
  color: white;
  position: relative;
  padding: 50px 0;
  text-align: center;
}

/*
.enl-cta-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
}*/
.enl-cta-content {
  /*position: absolute;
  top: 0;
  left: 0;*/
}

/*.enl-cta-outer {
	display: table;
	height: 100%;
	width: 100%;
}

.enl-cta-middle {
	display: table-cell;
    vertical-align: middle;
    -webkit-transform: translate3d(0, 0, 0);
}

.enl-cta-inner {
	margin-left: auto;
    margin-right: auto;
}*/
/*
.enl-ct-action::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.3;
}*/
.enl-cta-title h1 {
  font-weight: bold;
  font-size: 44.002px;
  font-size: 3.143rem;
  line-height: 1;
  margin: 0;
}

.enl-cta-desc p {
  font-size: 18px;
  margin: 20px 0 0;
}

/**
 * Featured pages widget
 */
.enl-featured-pages {
  background: #FBFBFB;
  padding: 20px 0 20px;
}

.enl-fpage-block {
  margin: 20px 0 0;
}

.enl-fps-thumb {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.enl-fps-thumb:hover {
  opacity: 0.8;
}

.enl-fp-title {
  font-size: 16.002px;
  font-size: 1.143rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 28px 0 0;
  line-height: 1;
}
.enl-fp-title a {
  color: #555555;
}
.enl-fp-title a:hover {
  color: #0093dd;
}
@media screen and (max-width: 990px) {
  .enl-fp-title {
    line-height: 1.3;
  }
}

.enl-fp-widget-desc {
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.5;
  font-weight: normal;
  font-size: 17px;
  letter-spacing: 1px;
}

.enl-fp-desc p {
  margin: 22px 0 0;
  color: #888888;
}

/**
 * Featured blog posts widget
 */
.enl-frnt-blog-widget{background:#f5f5f5;padding:20px 0}
.enl-frnt-blog-widget .enl-front-widget-title{margin:0}
.enl-bpw-block{background:#fff;padding:10px;margin-top:40px;text-align:center}
.enl-bpw-thumb{transition:opacity .2s ease-in-out}
.enl-bpw-thumb:hover{opacity:.8}
.enl-bpw-meta{margin:10px 0;font-style:italic;font-weight:700;color:#ccc}
.enl-bpw-title{font-size:16.002px;font-weight:700;text-transform:uppercase;margin:15px 0 0;line-height:1.3}
.enl-bpw-title a{color:#555}
.enl-bpw-title a:hover{color:#0093dd}
@media screen and (max-width: 990px) {
.enl-bpw-title{line-height:1.3}
}
.enl-bpw-widget-desc{text-align:center;margin:10px 0 0;line-height:1.5;font-weight:400;text-transform:uppercase;font-size:15px;letter-spacing:1px}
.enl-bpw-desc p{margin:15px 0 10px;color:#888}
/** 
 * PORTFOLIO WIDGET 
 */
.enl-port-block-title{text-align:center}
.enl-port-widget-desc{margin:10px 0 0;text-transform:uppercase;font-size:15px;letter-spacing:1px}
.enl-portfolio-container{background:#fff;padding-top:80px}
.enl-portfolio{float:left;width:100%;margin-top:80px}
.enl-portfolio-item{width:25%;float:left;position:relative}
.enl-portfolio-item:hover .enl-port-details{display:block}
.enl-portfolio-item img{display:block}
.enl-portfolio-item enl-port-details::before,.enl-port-title{transition:opacity 0.35s,transform .35s;transition-delay:.3s}
.enl-port-icon{transition:opacity 0.35s,transform .35s;transition-delay:.5s}
.enl-port-title{position:absolute;top:48%;left:0;padding:0 30px;width:100%;opacity:0;transform:translate3d(0,-10px,0);font-size:16px;font-weight:700;text-transform:uppercase;text-align:center;margin:0}
.enl-port-title a{color:#444}
@media screen and (min-width: 768px) and (max-width: 990px) {
.enl-port-title{font-size:14px}
}
.enl-portfolio-item:hover .enl-port-details::before,.enl-portfolio-item:hover .enl-port-title,.enl-portfolio-item:hover .enl-port-icon{opacity:1;transform:translate3d(0,0,0)}
.enl-port-details{position:absolute;top:0;left:0;padding:25% 0;width:100%;height:100%;background-color:rgba(255,255,255,0.85);opacity:0;transition:all 300ms ease-in-out}
.enl-portfolio-item:hover .enl-port-details{opacity:1}
.enl-portfolio-item a{position:absolute;z-index:4;top:0;left:0;width:100%;height:100%}
.enl-port-icon{position:absolute;bottom:30px;right:30px;opacity:0;text-align:center;color:#0093dd;font-size:20px;transform:translate3d(-10px,0,0)}
.enl-port-icon:hover{background:#444}
.enl-port-icon-cont{width:100%}
.enl-port-no-results{width:100%;text-align:center;margin-top:-75px;margin-bottom:80px}
@media screen and (max-width: 480px) {
.enl-portfolio-item{width:100%}
}
@media screen and (min-width: 480px) and (max-width: 768px) {
.enl-portfolio-item{width:50%}
}
.enl-frnt-testimonials{padding:80px 0 100px;background:#fff}
.enl-tstw-desc{margin:10px 0 0;text-transform:uppercase;font-size:15px;text-align:center;letter-spacing:1px}
.enl-tstmnl-outer{margin-top:70px}
.enl-testimonial-block{margin:0 70px;text-align:center}
.enl-testimonial-image{width:100px;height:100px;margin:0 auto}
.enl-testimonial-image img{border-radius:90px}
.enl-tst-plcehldr{width:100px;height:100px;border-radius:90px;color:#0093dd;background:#f5f5f5;margin:0 auto;line-height:100px;font-size:32.2px}
.enl-testimonial-text{font-style:italic;font-size:16.002px;color:#888}
.enl-testimonial-text p{margin-bottom:40px}
.enl-testimonial-text a{color:#888}
.enl-testimonial-author{font-weight:600;text-transform:uppercase;color:#555}
/**
 * Client logo widget
 */
.enliven-clients{padding:60px 0 0}
.enl-client-logos{margin:60px 0 55px}
.enl-logo-img{margin:0 0 10px}
.enl-cw-block{width:17%;margin:0 1.5%;float:left}
.widget_search .search-submit{padding:9px 20px}
.footer-widget-area input[type="search"]{background:#333;border:1px solid #333;color:#ccc}
/* Recent Comments Widget */
li.recentcomments {padding: 15px 0;}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.site-header{min-height:0px;z-index:9999;width:100%;padding:0px}
.site-description{font-size:26px;margin-top:10px;font-weight:400}
.site-logo{display:inline;float:left;max-width:100%}
.site-logo img{max-height:100%}
@media screen and (min-width: 991px) {
.image-bg-header{position:fixed;top:0;left:0}
.image-bg-header .site-title a{color:#fff}
.image-bg-header .site-description{color:#fff}
}
.header-shadow{box-shadow:0 0 2px -2px #ddd}
.normal-header{position:relative;box-shadow:0 2px 2px -2px #ddd}
.normal-header a{color:#333}
.normal-header a:hover{color:#0093dd}
.normal-header .site-title a{color:#626262}
.normal-header .site-description{color:#626262}
@media screen and (min-width: 991px) {
.sticky-nav{background:#fff;opacity: 0.8; /* 80% opacity */;color:#626262;box-shadow:0 2px 2px -2px #ddd;min-height:0px!important;position:fixed!important}
.sticky-nav a{color:#626262}
.sticky-nav a:hover{color:#0093dd}
.sticky-nav .site-title{transition:all .3s ease}
.sticky-nav .site-title a{color:#333;font-size:16px;transition:all .3s ease;margin-top:-30px}
.sticky-nav .site-description{color:#333;font-size:0px;margin:0px;transition:all .3s ease}
.sticky-nav .site-logo img{max-width:80%;padding:0px;margin:0px}
}
.site-title{font-size:45px;font-weight:700;margin:0px;word-wrap:break-word}
.site-title a{color:#626262}
#page{height:100%}
.slide-outer{display:table;position:absolute;height:100%;width:100%}
.slide-mid{display:table-cell;vertical-align:middle}
.slide-inner{margin-left:auto;margin-right:auto;max-width:1000px}
.en-slide-details{text-align:center;color:#fff;font-size:20.006px}
.en-slide-details a{color:#fff}
.en-slide-details span.edit-link a{color:#eee;padding:2px 5px;border:2px solid #ddd;font-size:12px}
.en-slide-details h1{font-size:49.998px}
.en-slide-details h2{font-size:35.994px}
.en-slide-details h3{font-size:34.006px}
.en-slide-details h4{font-size:30.002px}
.en-slide-details h5{font-size:18.004px}
.en-slide-details h6{font-size:28px}
.enliven-slider-title{font-size:39.998px;font-weight:700;text-transform:uppercase;color:#fff}
@media screen and (max-width: 991px) {
h1.enliven-slider-title{font-size:23.8px;padding:0 60px}
.en-slide-details p{font-size:16.8px;padding:0 60px}
.en-slide-details h1{font-size:25.998px}
.en-slide-details h2{font-size:23.996px}
.en-slide-details h3{font-size:21.994px}
.en-slide-details h4{font-size:20.006px}
.en-slide-details h5{font-size:18.004px}
.en-slide-details h6{font-size:16.002px}
}
.overlay{position:absolute;top:0;left:0;width:100%;height:100%;opacity:.25;background:#000}
@media screen and (max-width: 991px) {
.site-header{background-color:#fff}
}
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky{display:block}
.hentry{margin:0 0 50px}
.byline,.updated:not(.published){display:none}
.single .byline,.group-blog .byline{display:inline}
.page-content,.entry-content,.entry-summary{margin:1.5em 0 0}
.enl-portfolio-single{padding:35px;background:#fcfcfc}
.enl-post-single{padding:35px;background:#fcfcfc}
.enl-no-results{padding:35px;background:#fcfcfc}
.enl-page{padding:35px;background:#fcfcfc}
.blog .site-content{background:#eee;padding-top:30px}
.blog .site-content .nrml-banner{margin-top:-10px}
.blog .img-banner{margin-top:-10px}
.page .site-content{background:#eee}
.single .site-content{background:#eee;padding-top:30px}
.search-no-results .site-content{padding-top:30px}
.archive .site-content,.search .site-content{background:#eee}
.post-type-archive-jetpack-portfolio .site-content{background:#fff}
.post-type-archive-jetpack-testimonial .site-content{background:#fff}
.page-template-grid-page .site-content{background:#fff}
.page-template-grid-page .enl-page{background:#fff;padding:0}
.page-template-grid-page .nrml-banner{box-shadow:0 2px 2px -2px #ddd}
.site-content{padding-bottom:80px}
.page-template-business-page{background-color:#fff}
.page-template-business-page .site-content{padding-bottom:0}
.hero-container{position:relative;margin-bottom:60px;text-align:center;background:#fff}
.img-banner{position:relative;width:100%;min-height:240px;height:530px;line-height:0;margin:0 0 60px;background-position:center center;background-size:cover}
.img-banner .hero-wrapper{background:transparent;color:#fff;position:absolute;top:50%;width:100%;font-size:1.7em;text-align:center;letter-spacing:-2px;padding:0 6%;transform:translateY(-50%)}
.img-banner .overlay{position:absolute;top:0;left:0;width:100%;height:100%;opacity:.25;background:#000}
.hero-wrapper{padding:20px}
/*Hero wrapper and header wrapper colors must be same*/
.hero-wrapper,
.header-wrapper {background-color: color|transparent|initial|inherit;}
.post-entry-title{margin-top:0;margin-bottom:10px;font-weight:700;color:#555;font-size:28px}
.portfolio-entry-title{margin:20px 0 55px;font-weight:700;color:#555;font-size:28px;text-align:center}
.page-title-hero{font-size:28px;margin:0;font-weight:700;color:#555;text-transform:uppercase}
.page-subtitle-hero{font-size:19.6px;margin:5px 0 0;color:#555}
.img-banner .page-title-hero{font-size:35.994px;color:#fff}
.img-banner .page-subtitle-hero{font-size:25.2px;margin:.8em 0 0;color:#fff}
.arc-entry-title{margin:0 0 25px;font-weight:700;font-size:23.996px}
.arc-entry-title a{color:#555}
.arc-entry-title a:hover{color:#0093dd}
.arc-entry-content{color:#717171;line-height:1.7}
.arc-entry-content p{margin-bottom:40px}
.enl-no-results .page-header,.enl-error-404 .page-header{margin:0 0 35px;padding:0;border-bottom:none}
.enl-no-results .page-title,.enl-error-404 .page-title{font-size:28px;margin:0;font-weight:700;color:#555}
.enl-error-404{padding:100px 0}
.page-title{font-size:28px;margin:0;font-weight:700;color:#555}
.enl-thumbnail{margin:0 0 30px}
.arc-entry-meta{margin:0 -30px -30px;padding:0 30px;line-height:45px;background-color:#f5f5f5}
.entry-meta{font-style:italic;color:#888}
.entry-meta a{color:#444}
.entry-meta a:hover{color:#0093dd}
.cat-links,.tags-links{font-style:italic;margin:5px 0;color:#888}
.cat-links a,.tags-links a{color:#444}
.cat-links a:hover,.tags-links a:hover{color:#0093dd}
.page-links{clear:both;margin:0 0 1.5em}
.enl-article{padding:30px;background:#fcfcfc}
.arc-entry-meta{font-size:10.5px;font-weight:700;color:#aeaeae;text-transform:uppercase}
.arc-entry-meta a{color:#aeaeae}
.arc-entry-meta a:hover{color:#0093dd}
.arc-posted-on{margin:0 20px 0 0}
.arc-posted-on:before{content:"\f133";display:inline-block;font-family:FontAwesome;font-size:10.5px;font-weight:400;margin:0 10px 0 0}
.arc-byline{margin:0 20px 0 0}
.arc-byline:before{content:"\f007";display:inline-block;font-family:FontAwesome;font-size:10.5px;font-weight:400;margin:0 10px 0 0}
.arc-comments-link:before{content:"\f0e6";display:inline-block;font-family:FontAwesome;font-size:10.5px;font-weight:400;margin:0 10px 0 0}
.page-entry-content{line-height:1.9;overflow:auto;clear:both}
.enl-post-thumbnail{margin-bottom:35px}
.post-entry-content{line-height:1.9}
.content-puller{padding-top:120px}
.post-entry-header{margin-bottom:45px}
.post-entry-footer{margin-top:35px}
.page-entry-footer{margin-top:35px}
.sidebar-left .enl-content-float{float:right}
.sidebar-left .enl-widgets-float{float:left}
@media (min-width: 1024px) {
.enliven-boxed .site{max-width:1240px;margin:0 auto}
}
@media (min-width: 768px) and (max-width: 1023px) {
.enliven-boxed .site{max-width:1010px}
}
span.edit-link{text-transform:uppercase;font-size:14px;font-weight:600;display:block;margin:20px 0 30px}
span.edit-link a{color:#555;padding:5px 10px;border:2px solid #ddd}
/* Portfolio Archive */
.portfolio-hero-wrapper{text-align:center;margin-top:-60px;margin-bottom:60px}
.portfolio-hero-wrapper .page-title-hero{padding:20px;background:#fff}
.enl-port-archive{margin-bottom:30px;overflow:hidden;clear:both}
.enl-port-archive .enl-portfolio-item{width:100%}
.post-type-archive-jetpack-testimonial .nrml-banner,.post-type-archive-jetpack-portfolio .nrml-banner{box-shadow:0 2px 2px -2px #ddd}
.enl-port-description{margin-bottom:60px;font-size:16px;color:#a5a5a5}
.enl-port-page-desc{font-size:16px;text-align:left}
.enl-port-page-desc p{margin-bottom:60px}
.page-template-portfolio .site-content{margin-top:60px;background:#fff}
.enl-port-page-no-results{width:100%;text-align:left;margin:0 0 60px}
/*Archives*/
.taxonomy-description p{margin-top:10px;margin-bottom:0}
.enl-test-description{margin-bottom:150px;font-size:16px;color:#a5a5a5}
.enl-testimonial{padding:50px;background:#f5f5f5;text-align:center;margin-bottom:125px}
.enl-testimonial .testimonial-thumbnail{width:125px;height:125px;margin:0 auto}
.enl-testimonial .testimonial-thumbnail img{border-radius:90px}
.enl-testimonial .entry-content{margin-top:50px;font-style:italic;font-size:16px}
.enl-testimonial .entry-content p{margin:0}
.enl-testimonial .entry-title{font-size:16px;font-weight:700;font-style:italic;margin-top:35px}
.enl-testimonial .entry-title:before{content:'-';margin-right:8px;font-weight:700;font-size:16px}
.enl-testimonial .entry-title:after{content:'-';margin-left:8px;font-weight:700;font-size:16px}
.single-jetpack-testimonial .enl-testimonial{margin-top:100px}
.enl-gp-title{font-size:16.002px;font-weight:700;text-transform:uppercase;margin:28px 0 0;line-height:1}
.enl-gp-title a{color:#555}
.enl-gp-title a:hover{color:#0093dd}
@media screen and (max-width: 990px) {
.enl-gp-title{line-height:1.3}
}
/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {display: none;}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a{word-wrap:break-word}
.bypostauthor{display:block}
.comment-content a{word-wrap:break-word}
.bypostauthor{display:block}
.comments-area{max-width:747px;margin:40px 0;background-color:#fcfcfc;padding:35px}
.comments-title,.comment-list,.comment-reply-title,.must-log-in,.comment-respond .comment-form,.comment-respond iframe{display:block;margin-left:auto;margin-right:auto;width:100%}
.sidebar .comments-title,.sidebar .comment-list,.sidebar .must-log-in,.sidebar .comment-reply-title,.sidebar .comment-navigation,.sidebar .comment-respond .comment-form{max-width:1040px;padding-left:60px;padding-right:376px}
.comments-title{margin:0 0 35px;font-size:24px}
.comment-list,.comment-list .children{list-style-type:none;padding:0;margin:0}
.comment-list .children{margin:0 0 0 40px}
.comment-list > li:after,.comment-list .children > li:before{background:url(/wp-content/themes/enliven/images/dotted-line.png) repeat left top;background-size:4px 4px;content:"";display:block;height:1px;width:100%}
.comment-list > li:last-child:after{display:none}
.comment-body{padding:24px 0;position:relative;clear:both;overflow:hidden;border-bottom:1px solid #E7E7E7}
.comment-author .avatar{display:block;float:left;margin:0 20px 20px 0}
.comment-author .fn{word-wrap:break-word}
.comment-author .fn,.comment-author .url,.comment-reply-link,.comment-reply-login{color:#0093dd;font-size:14px;font-style:normal;font-weight:600}
.comment-author .url:hover,.comment-reply-link:hover,.comment-reply-login:hover{color:#555}
.says{display:none}
.no-avatars .comment-author{margin:0 0 5px;max-width:100%;position:relative}
.no-avatars .comment-metadata,.no-avatars .comment-content,.no-avatars .comment-list .reply{width:100%}
.comment-list .edit-link{margin-left:20px}
.comment-metadata,.comment-awaiting-moderation,.comment-content,.comment-list .reply{margin:10px 0}
.comment-list .reply{text-align:right}
.comment-meta,.comment-meta a{color:#a2a2a2;font-size:13px}
.comment-meta a:hover{color:#555}
.comment-metadata{margin-bottom:20px}
.ping-meta{color:#a2a2a2;font-size:13px;line-height:2}
.comment-awaiting-moderation{color:#a2a2a2}
.comment-awaiting-moderation:before{content:"\f021";margin-right:10px;display:inline-block;font-family:FontAwesome;font-weight:400}
.comment-reply-link:before,.comment-reply-login:before{content:"\f122";margin-right:10px;display:inline-block;font-family:FontAwesome;font-weight:400}
/* Comment form */
.comment-respond{background-color:#f5f5f5;padding:40px;margin:30px 0;max-width:747px}
.comment .comment-respond{margin-bottom:20px;padding:40px}
.comment-reply-title small a{color:#131310;display:inline-block;float:right;height:20px;overflow:hidden;width:20px}
.comment-reply-title small a:hover{color:#ed331c;text-decoration:none}
.comment-reply-title small a:before{content:"\f05c";display:inline-block;font-family:FontAwesome;font-size:20px;font-weight:400}
.sidebar .comment-list .comment-reply-title,.sidebar .comment-list .comment-respond .comment-form{padding:0}
.comment-form .comment-notes{margin-bottom:25px;font-size:13px}
.comment-form .comment-form-author,.comment-form .comment-form-email,.comment-form .comment-form-url{margin-bottom:30px}
.comment-form [for="author"],.comment-form [for="email"],.comment-form [for="url"],.comment-form [for="comment"]{float:left;padding:10px 0;width:100px}
.comment-form .required{color:#FF8778}
.comment-form input[type="text"],.comment-form input[type="email"],.comment-form input[type="url"]{max-width:300px;width:60%}
.comment-form textarea{width:100%}
.form-allowed-tags,.form-allowed-tags code{color:#686758;font-size:14px}
.form-allowed-tags code{font-size:10px;margin-left:3px;white-space:pre-wrap}
.comment-list .pingback,.comment-list .trackback{padding-top:24px}
.comment-navigation{border-bottom:1px solid #E7E7E7;font-size:20px;font-style:italic;font-weight:300;margin:0 auto;max-width:747px;padding:20px 0;width:100%}
.no-comments{background-color:#eee;font-size:20px;font-style:italic;font-weight:300;margin:0;padding:10px 0;text-align:center}
.sidebar .no-comments{padding-left:60px;padding-right:376px}
.comment-reply-title{margin-top:0}
.comment-list .edit-link{margin-left:20px;display:inline}
.comment-list .edit-link a{margin:0;padding:0;border:none;font-size:13px;text-transform:none}
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.footer-widget-area{background:#222;color:#888;padding:40px 0}
.footer-widget-area a{color:#999}
.footer-widget-area a:hover{color:#ddd}
.footer-widget-area ul{margin:0;padding:0}
.footer-widget-area ul li{list-style:none;padding:10px 0;border-bottom:1px solid #333}
.footer-widget-area ul li:first-child{padding-top:0}
.footer-widget{margin:50px 0}
.footer-widget-title{margin:0 0 40px;font-size:16.002px;font-weight:700;text-transform:uppercase;color:#ccc}
.site-info{padding:40px 0;text-align:center;background-color:#292929;color:#999;font-size:13px}
.site-info a{color:#999}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {/* Theme Footer (when set to scrolling) */display: none;}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {display: block;}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {border: none;margin-bottom:0;margin-top:0;padding:0;}
/* Make sure embeds and iframes fit their containers. */
embed,iframe,object{max-width:100%;}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption{margin-bottom:1.5em;max-width:100%}
.wp-caption img[class*="wp-image-"]{display:block;margin-left:auto;margin-right:auto}
.wp-caption .wp-caption-text{margin:.8075em 0}
.wp-caption-text{text-align:center}
/*--------------------------------------------------------------
## Persona
--------------------------------------------------------------*/
sect {width: 100%; padding: 0; display: table; margin: 0;  max-width: none;  height: 100vh; &:nth-of-type(2n) { background-color: #FE4B74;}}
.intro {height: 100vh;}
.cont {  display: table-cell;  vertical-align: middle;}@media screen{/*
 * jQuery FlexSlider v2.5.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 * 
 */

/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  background: #ffffff;
  /*border: 4px solid #ffffff;*/
  position: relative;
  zoom: 1;
  /*-webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);*/
    z-index: 1;
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 54px;
  margin: -27px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: 0;
}
.flex-direction-nav a:before {
  font-family: "FontAwesome"; 
  font-size: 44px; 
  display: inline-block; 
  content: '\f053'; 
  color: #fff;
  /*text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);*/
}
.flex-direction-nav a.flex-next:before {
  content: '\f054';
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}


/**
* Added later
*/

.flexslider .slides > li {
    background-size: cover; 
    background-position: center;
    height: 100%;
    width: 100%;
    display: none; 
    -webkit-backface-visibility:   hidden;
}
.flexslider-container, .flexslider .slides, .flex-viewport {
    height: 100%;
}

html, body {
    height: 100%;
    min-height: 100%;
}

.flexslider {margin: 0; padding: 0; width: 100%; height: 100%; border: 0px solid; overflow: hidden;}
.flexslider .slides img {width: auto; height: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

.flexslider-container {
    display: block;
    height: 100%;
    margin: 0px;
    padding: 0px;
    position: relative;
}

#enl-tstmnl-slider .flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: -27px 0 0;
}

#enl-tstmnl-slider .flex-direction-nav a:before {
  font-family: "FontAwesome"; 
  font-size: 30px; 
  display: inline-block; 
  content: '\f053'; 
  color: #d8d8d8;
  /*text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);*/
}
#enl-tstmnl-slider .flex-direction-nav a.flex-next:before {
  content: '\f054';
}


}@media screen{html.fancybox-active:not(.fancybox-allowscroll),html.fancybox-active:not(.fancybox-allowscroll) body{touch-action:none;overscroll-behavior:none;-webkit-overflow-scrolling:auto;overflow:hidden;}html.fancybox-active:not(.fancybox-allowscroll) body{margin-right:var(--vertical-scrollbar);margin-bottom:var(--horizontal-scrollbar);}html.fancybox-active:not(.fancybox-allowscroll) body.rtl{margin-right:0;margin-left:var(--vertical-scrollbar);}#fancybox-loading,#fancybox-loading div,#fancybox-overlay,#fancybox-wrap *,#fancybox-wrap *::before,#fancybox-wrap *::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}#fancybox-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);z-index:111100;display:none;}#fancybox-tmp{padding:0;margin:0;border:0;overflow:auto;display:none;}#fancybox-wrap{position:absolute;top:0;left:0;z-index:111101;display:none;outline:none!important;}#fancybox-outer{position:relative;width:100%;height:100%;box-shadow:0 0 20px #111;-moz-box-shadow:0 0 20px #111;-webkit-box-shadow:0 0 20px #111;background:#fff;}#fancybox-content{position:relative;width:100%;height:100%;overflow:hidden;z-index:111102;border:0 solid #fff;background:#fff;background-clip:padding-box;}#fancybox-content>*{max-width:100%;max-height:100%;-webkit-overflow-scrolling:touch;}#fancybox-error{color:#444;padding:14px;margin:0;}#fancybox-frame,#fancybox-img{width:100%;height:100%;border:none;}#fancybox-img{padding:0;margin:0;line-height:0;vertical-align:top;max-width:none!important;max-height:none!important}#fancybox-frame{display:block;z-index:0}.fancy-ico{position:absolute;width:48px;height:48px;border-radius:50%;}.fancy-ico span{display:block;position:relative;left:12px;top:12px;width:24px;height:24px;border-radius:50%;background:#000;border:2px solid white;box-shadow:0 0 4px #000;transition:transform .25s ease-in-out;}#fancybox-close:hover span,#fancybox-next:hover span,body.rtl #fancybox-prev:hover span{transform:rotate(360deg);}#fancybox-prev:hover span,body.rtl #fancybox-next:hover span{transform:rotate(-360deg);}#fancybox-close{top:-24px;right:-24px;cursor:pointer;z-index:111105;display:none;}#fancybox-close span::after,#fancybox-close span::before{content:'';position:absolute;top:9px;left:4px;width:12px;height:2px;background-color:#fff;}#fancybox-close span::before{transform:rotate(45deg);}#fancybox-close span::after{transform:rotate(-45deg);}#fancybox-prev,#fancybox-next{top:50%;margin-top:-24px;cursor:pointer;z-index:111102;display:none;}#fancybox-next,body.rtl #fancybox-prev{left:auto;right:-24px;}#fancybox-prev,body.rtl #fancybox-next{left:-24px;right:auto;}#fancybox-prev span::after,#fancybox-next span::after{content:'';position:absolute;top:6px;width:8px;height:8px;border-top:2px solid #fff;border-right:2px solid #fff;}#fancybox-prev span::after,body.rtl #fancybox-next span::after{transform:rotate(-135deg);left:7px;}#fancybox-next span::after,body.rtl #fancybox-prev span::after{transform:rotate(45deg);left:initial;right:7px;}#fancybox-title-wrap{z-index:111104;}.fancybox-title-inside{padding-bottom:10px;text-align:center;color:#333;background-color:#fff;position:relative;}.fancybox-title-outside{padding-top:10px;color:#fff;font-weight:600;}.fancybox-title-over{position:absolute;width:100%;bottom:0;left:0;color:#fff;text-align:left;}body.rtl .fancybox-title-over{text-align:right}.fancybox-title-over #fancybox-title{padding:10px;background:rgba(0,0,0,.6);display:block;}.fancybox-title-float{text-align:center;}.fancybox-title-float #fancybox-title{display:table;margin:-12px auto;height:24px;padding:0 15px;line-height:20px;font-size:14px;color:#fff;background:#000;border:2px solid #fff;border-radius:12px;box-shadow:0 0 4px #000;position:relative;z-index:111104;}#fancybox-loading{position:fixed;top:50%;left:50%;width:40px;height:40px;margin-top:-20px;margin-left:-20px;background-color:rgba(0,0,0,.9);border-radius:5px;cursor:pointer;overflow:hidden;z-index:111104;display:none;}#fancybox-loading div{transform-origin:20px 20px;animation:fancybox-loading 1.2s linear infinite;}#fancybox-loading div::after{content:'';display:block;position:absolute;top:7px;left:19px;width:2px;height:7px;border-radius:20%;background:#fff;}#fancybox-loading div:nth-child(1){transform:rotate(0deg);animation-delay:-1.1s;}#fancybox-loading div:nth-child(2){transform:rotate(30deg);animation-delay:-1s;}#fancybox-loading div:nth-child(3){transform:rotate(60deg);animation-delay:-.9s;}#fancybox-loading div:nth-child(4){transform:rotate(90deg);animation-delay:-.8s;}#fancybox-loading div:nth-child(5){transform:rotate(120deg);animation-delay:-.7s;}#fancybox-loading div:nth-child(6){transform:rotate(150deg);animation-delay:-.6s;}#fancybox-loading div:nth-child(7){transform:rotate(180deg);animation-delay:-.5s;}#fancybox-loading div:nth-child(8){transform:rotate(210deg);animation-delay:-.4s;}#fancybox-loading div:nth-child(9){transform:rotate(240deg);animation-delay:-.3s;}#fancybox-loading div:nth-child(10){transform:rotate(270deg);animation-delay:-.2s;}#fancybox-loading div:nth-child(11){transform:rotate(300deg);animation-delay:-.1s;}#fancybox-loading div:nth-child(12){transform:rotate(330deg);animation-delay:0s;}@keyframes fancybox-loading{0%{opacity:1}100%{opacity:0}}.fancybox-hidden{display:none;}#fancybox-content .fancybox-hidden,#fancybox-tmp .fancybox-hidden{display:revert;}
}/*! elementor-icons - v5.44.0 - 01-09-2025 */
@font-face{font-family:eicons;src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.44.0);src:url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.44.0#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.44.0) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.44.0) format("woff"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.44.0) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.44.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-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-left .elementor-icon-list-item,.elementor-widget.elementor-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-align-right .elementor-icon-list-item,.elementor-widget.elementor-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-align-left) .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-left .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-widescreen-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-widescreen-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-widescreen-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-widescreen-align-left) .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-left .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-laptop-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-laptop-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-laptop-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-laptop-align-left) .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-left .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet_extra-align-left) .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-left .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-tablet-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-tablet-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet-align-left) .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-left .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile_extra-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile_extra-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile_extra-align-left) .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-left .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a{justify-content:flex-start;text-align:left}.elementor-widget.elementor-mobile-align-left .elementor-inline-items{justify-content:flex-start}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a{justify-content:flex-end;text-align:right}.elementor-widget.elementor-mobile-align-right .elementor-icon-list-items{justify-content:flex-end}.elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile-align-left) .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; }
.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}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkc3kawzu.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkankawzu.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcnkawzu.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbxkawzu.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkenkawzu.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkahkawzu.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkcxkawzu.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkchkawzu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo5cnqeu92fr1mu53zec9_vu3r1gihoszmkbnka.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3gubgee.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3iubgee.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3cubgee.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* math */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamaxkubgee.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3oubgee.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3kubgee.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufa5qw54a.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufj5qw54a.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufb5qw54a.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufo5qw54a.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufc5qw54a.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufd5qw54a.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: url(https://fazendadoacude.com.br/wp-content/uploads/elementor/google-fonts/fonts/robotoslab-bngmuxzytxpivibgjjsb6ufn5qu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base {
  zoom: 1;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base:before {
  content: '';
  display: block;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base:after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 780px) {
  .so-widget-sow-button-flat-d22261686616 .ow-button-base.ow-button-align-center {
    text-align: center;
  }
  .so-widget-sow-button-flat-d22261686616 .ow-button-base.ow-button-align-center.ow-button-align-justify .sowb-button {
    display: inline-block;
  }
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base .sowb-button {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0.25em 0.25em 0.25em 0.25em;
  -moz-border-radius: 0.25em 0.25em 0.25em 0.25em;
  border-radius: 0.25em 0.25em 0.25em 0.25em;
  background: #49c942;
  border-width: 1px 0;
  border: 1px solid #49c942;
  color: #ffffff !important;
  font-size: 1.3em;
  
  padding: 1em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  padding-inline: 2em;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base .sowb-button > span {
  display: flex;
  justify-content: center;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base .sowb-button > span [class^="sow-icon-"] {
  font-size: 1.3em;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base .sowb-button.ow-icon-placement-top > span {
  flex-direction: column;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base .sowb-button.ow-icon-placement-right > span {
  flex-direction: row-reverse;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base .sowb-button.ow-icon-placement-bottom > span {
  flex-direction: column-reverse;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base .sowb-button.ow-icon-placement-left > span {
  align-items: start;
}
.so-widget-sow-button-flat-d22261686616 .ow-button-base .sowb-button.ow-button-hover:active,
.so-widget-sow-button-flat-d22261686616 .ow-button-base .sowb-button.ow-button-hover:hover {
  background: #58ce52;
  border-color: #58ce52;
  color: #ffffff !important;
}.ow-button-base{zoom:1}.ow-button-base:before{content:'';display:block}.ow-button-base:after{content:'';display:table;clear:both}.ow-button-base .sowb-button{cursor:pointer;display:inline-block;line-height:1em;text-align:center;text-decoration:none}.ow-button-base .sowb-button .sow-icon-image,.ow-button-base .sowb-button [class^="sow-icon-"]{font-size:1.3em;height:1em;width:auto;margin:-0.1em .75em -0.2em -0.75em;display:block;float:left}.ow-button-base .sowb-button .sow-icon-image{width:1em;background-size:cover}.ow-button-base .sowb-button.ow-icon-placement-top .sow-icon-image,.ow-button-base .sowb-button.ow-icon-placement-top [class^="sow-icon-"]{margin:0 auto .5em;float:none}.ow-button-base .sowb-button.ow-icon-placement-right .sow-icon-image,.ow-button-base .sowb-button.ow-icon-placement-right [class^="sow-icon-"]{margin:-0.1em -0.75em -0.2em .75em;float:right}.ow-button-base .sowb-button.ow-icon-placement-bottom .sow-icon-image,.ow-button-base .sowb-button.ow-icon-placement-bottom [class^="sow-icon-"]{float:none;margin:.5em auto 0}.ow-button-base .sowb-button.ow-icon-placement-bottom>span{display:flex;flex-direction:column-reverse}.ow-button-base .sowb-button.ow-icon-placement-left .sow-icon-image,.ow-button-base .sowb-button.ow-icon-placement-left [class^="sow-icon-"]{margin:-0.1em .75em -0.2em -0.75em;float:left}.ow-button-base.ow-button-align-left{text-align:left}.ow-button-base.ow-button-align-right{text-align:right}.ow-button-base.ow-button-align-center{text-align:center}.ow-button-base.ow-button-align-justify .sowb-button{display:block}/*!
 * Font Awesome Free 6.7.2 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: 'sow-fontawesome-brands';
    font-style: normal;
    font-weight: normal;
    font-display: block;
    src: url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.eot");
    src: url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.eot") format("embedded-opentype"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.woff2") format("woff2"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.woff") format("woff"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.ttf") format("truetype"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-brands-400.svg") format("svg");
}

.sow-fab {
    font-family: 'sow-fontawesome-brands';
    font-style: normal !important;
    font-weight: normal !important;
}

@font-face {
    font-family: 'sow-fontawesome-free';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.eot");
    src: url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.eot") format("embedded-opentype"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.woff2") format("woff2"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.woff") format("woff"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.ttf") format("truetype"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-regular-400.svg") format("svg");
}

.sow-far {
    font-family: 'sow-fontawesome-free';
    font-style: normal !important;
    font-weight: 400 !important;
}

@font-face {
    font-family: 'sow-fontawesome-free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.eot");
    src: url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.eot") format("embedded-opentype"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.woff2") format("woff2"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.woff") format("woff"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.ttf") format("truetype"),
        url("/wp-content/plugins/so-widgets-bundle/icons/fontawesome/webfonts/fa-solid-900.svg") format("svg");
}

.sow-fa,
.sow-fas {
    font-family: 'sow-fontawesome-free';
    font-weight: 900 !important;
    font-style: normal !important;
}

.sow-icon-fontawesome {
    display: inline-block;
    speak: none;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sow-icon-fontawesome[data-sow-icon]:before {
    content: attr(data-sow-icon);
}
.panel-grid.panel-has-style>.panel-row-style,.panel-grid.panel-no-style{display:flex;-ms-flex-wrap:wrap;flex-wrap:nowrap;-ms-justify-content:space-between;justify-content:space-between}.panel-grid .so-parallax{position:relative}.panel-grid .so-parallax>:not(.simpleParallax){position:relative;z-index:1}.panel-grid .so-parallax .simpleParallax{overflow:hidden}.panel-grid .so-parallax .simpleParallax,.panel-grid .so-parallax img[data-siteorigin-parallax]{bottom:0;left:0;position:absolute;right:0;top:0;width:100%;z-index:0}.panel-background-overlay{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.panel-has-overlay .panel-cell-style,.panel-has-overlay .panel-row-style,.panel-has-overlay .panel-widget-style{overflow:hidden;position:relative;z-index:1}.panel-layout.panel-is-rtl .panel-grid.panel-has-style>.panel-row-style,.panel-layout.panel-is-rtl .panel-grid.panel-no-style{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.panel-grid-cell{-ms-box-sizing:border-box;box-sizing:border-box}.panel-grid-cell .panel-cell-style{height:100%}.panel-grid-cell .so-panel{zoom:1}.panel-grid-cell .so-panel:before{content:"";display:block}.panel-grid-cell .so-panel:after{content:"";display:table;clear:both}.panel-grid-cell .panel-last-child{margin-bottom:0}.panel-grid-cell .widget-title{margin-top:0}body.siteorigin-panels-before-js:not(.siteorigin-panels-css-container){overflow-x:hidden}body.siteorigin-panels-before-js:not(.siteorigin-panels-css-container) .siteorigin-panels-stretch{margin-right:-1000px!important;margin-left:-1000px!important;padding-right:1000px!important;padding-left:1000px!important}.so-sr-only{clip:rect(0,0,0,0);height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;white-space:nowrap;width:1px}