/**
 * Jetpack related posts
 */

/**
 * The Gutenberg block
 */

.jp-related-posts-i2 {
	margin-top: 1.5rem;
}

.jp-related-posts-i2__list {
	--hgap: 1rem;

	display: flex;
	flex-wrap: wrap;
	column-gap: var(--hgap);
	row-gap: 2rem;

	margin: 0;
	padding: 0;

	list-style-type: none;
}

.jp-related-posts-i2__post {
	display: flex;
	flex-direction: column;

	/* Default: 2 items by row */
	flex-basis: calc(( 100% - var(--hgap) ) / 2);
}

/* Quantity qeuries: see https://alistapart.com/article/quantity-queries-for-css/ */
.jp-related-posts-i2__post:nth-last-child(n+3):first-child,
.jp-related-posts-i2__post:nth-last-child(n+3):first-child ~ * {

	/* From 3 total items on, 3 items by row */
	flex-basis: calc(( 100% - var(--hgap) * 2 ) / 3);
}

.jp-related-posts-i2__post:nth-last-child(4):first-child,
.jp-related-posts-i2__post:nth-last-child(4):first-child ~ * {

	/* Exception for 4 total items: 2 items by row */
	flex-basis: calc(( 100% - var(--hgap) ) / 2);
}

.jp-related-posts-i2__post-link {
	display: flex;
	flex-direction: column;
	row-gap: 0.5rem;

	width: 100%;
	margin-bottom: 1rem;

	line-height: 1.2;
}

.jp-related-posts-i2__post-link:focus-visible {
	outline-offset: 2px;
}

.jp-related-posts-i2__post-img {
	order: -1;

	max-width: 100%;
}

.jp-related-posts-i2__post-defs {
	margin: 0;

	list-style-type: unset;
}

/* Hide, except from screen readers */
.jp-related-posts-i2__post-defs dt {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.jp-related-posts-i2__post-defs dd {
	margin: 0;
}

/* List view */

.jp-relatedposts-i2[data-layout="list"] .jp-related-posts-i2__list {
	display: block;
}

.jp-relatedposts-i2[data-layout="list"] .jp-related-posts-i2__post {
	margin-bottom: 2rem;
}

/* Breakpoints */

@media only screen and (max-width: 640px) {

	.jp-related-posts-i2__list {
		display: block;
	}

	.jp-related-posts-i2__post {
		margin-bottom: 2rem;
	}
}

/* Container */

#jp-relatedposts {
	display: none;
	padding-top: 1em;
	margin: 1em 0;
	position: relative;
	clear: both;
}

.jp-relatedposts::after {
	content: "";
	display: block;
	clear: both;
}

/* Headline above related posts section, labeled "Related" */

#jp-relatedposts h3.jp-relatedposts-headline {
	margin: 0 0 1em 0;
	display: inline-block;
	float: left;
	font-size: 9pt;
	font-weight: 700;
	font-family: inherit;
}

#jp-relatedposts h3.jp-relatedposts-headline em::before {
	content: "";
	display: block;
	width: 100%;
	min-width: 30px;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	margin-bottom: 1em;
}

#jp-relatedposts h3.jp-relatedposts-headline em {
	font-style: normal;
	font-weight: 700;
}

/* Related posts items (wrapping items) */

#jp-relatedposts .jp-relatedposts-items {
	clear: left;
}

#jp-relatedposts .jp-relatedposts-items-visual {
	margin-right: -20px;
}

/* Related posts item */

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
	float: left;
	width: 33%;
	margin: 0 0 1em; /* Needs to be same as the main outer wrapper for Related Posts */
	box-sizing: border-box;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post {
	padding-right: 20px;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4) {
	clear: both;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a {
	text-decoration: underline;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

/* Related posts item content */

#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title,
#jp-relatedposts .jp-relatedposts-items p,
#jp-relatedposts .jp-relatedposts-items time {
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs {
	position: relative;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	border-bottom: 0;
}

#jp-relatedposts .jp-relatedposts-items p,
#jp-relatedposts .jp-relatedposts-items time {
	margin-bottom: 0;
}

#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title {
	text-transform: none;
	margin: 0;
	font-family: inherit;
	display: block;
	max-width: 100%;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
	font-size: inherit;
	font-weight: 400;
	text-decoration: none;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover {
	text-decoration: underline;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,
#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span {
	display: block;
	max-width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span {
	height: auto;
	max-width: 100%;
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date,
#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context {
	opacity: 0.6;
}

/* Hide the date by default, but leave the element there if
 * a theme wants to use css to make it visible. */
.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
	display: none;
}

/* Behavior when there are thumbnails in visual mode */
#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt {
	display: none;
}

/* Behavior when there are no thumbnails in visual mode */
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt {
	overflow: hidden;
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span {
	margin-bottom: 1em;
}

/* List Layout */
#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post {
	clear: both;
	width: 100%;
}

#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img {
	float: left;
	overflow: hidden;
	max-width: 33%;
	margin-right: 3%;
}

#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title {
	display: inline-block;
	max-width: 63%;
}

/*
 * Responsive
 */

@media only screen and (max-width: 640px) {

	#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
		width: 50%;
	}

	#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n) {
		clear: left;
	}

	#jp-relatedposts .jp-relatedposts-items-visual {
		margin-right: 20px;
	}
}

@media only screen and (max-width: 320px) {

	#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
		width: 100%;
		clear: both;
		margin: 0 0 1em;
	}

	#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img,
	#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title {
		float: none;
		max-width: 100%;
		margin-right: 0;
	}
}

/*
 * Hide the related post section in the print view of a post
 */

@media print {

	.jp-relatedposts {
		display: none !important;
	}
}
/* 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-paragraph.is-style-error,.wp-block-paragraph.is-style-info,.wp-block-paragraph.is-style-success,.wp-block-paragraph.is-style-warning,p.is-style-error,p.is-style-info,p.is-style-success,p.is-style-warning{border-radius:4px;box-sizing:border-box;padding:32px}.wp-block-paragraph.is-style-error.coblocks-alert-paragraph,.wp-block-paragraph.is-style-info.coblocks-alert-paragraph,.wp-block-paragraph.is-style-success.coblocks-alert-paragraph,.wp-block-paragraph.is-style-warning.coblocks-alert-paragraph,p.is-style-error.coblocks-alert-paragraph,p.is-style-info.coblocks-alert-paragraph,p.is-style-success.coblocks-alert-paragraph,p.is-style-warning.coblocks-alert-paragraph{margin-bottom:var(--go--spacing--vertical);margin-top:var(--go--spacing--vertical)}.wp-block-paragraph:not(.has-background).is-style-info,p:not(.has-background).is-style-info{background-color:#d6efee}.wp-block-paragraph:not(.has-background).is-style-warning,p:not(.has-background).is-style-warning{background-color:#fbe7dd}.wp-block-paragraph:not(.has-background).is-style-error,p:not(.has-background).is-style-error{background-color:#ffdede}.wp-block-paragraph:not(.has-background).is-style-success,p:not(.has-background).is-style-success{background-color:#d0eac4}.wp-block-paragraph:not(.has-text-color).is-style-info,p:not(.has-text-color).is-style-info{color:#094264}.wp-block-paragraph:not(.has-text-color).is-style-warning,p:not(.has-text-color).is-style-warning{color:#8a4b30}.wp-block-paragraph:not(.has-text-color).is-style-error,p:not(.has-text-color).is-style-error{color:#8b343c}.wp-block-paragraph:not(.has-text-color).is-style-success,p:not(.has-text-color).is-style-success{color:#154a28}
.wp-block-image.is-style-bottom-wave img{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");-webkit-mask-position:bottom;mask-position:bottom}.wp-block-image.is-style-bottom-wave img,.wp-block-image.is-style-top-wave img{-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:cover;mask-size:cover}.wp-block-image.is-style-top-wave img{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");-webkit-mask-position:top;mask-position:top}.block-editor-block-styles__item-preview .wp-block-image{margin-top:0}.block-editor-block-styles__item-preview .wp-block-image .components-resizable-box__container{height:100%!important;width:100%!important}
.wp-block-cover:not(.components-placeholder):not(.is-placeholder).is-style-bottom-wave{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"248\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M250 220.092145s-12.873712-8.581631-26.547345-11.208661c-13.673633-2.62703-19.948005-2.014057-25.847415-1.094596-14.723528 2.276759-29.197081 7.662171-48.145186 21.760565-7.399261 5.341628-19.223078 13.485421-25.122488 15.630829-5.999399 2.145408-13.223677 3.415139-18.873112 2.320543-2.574743-.437838-5.6494355-.612974-12.4487556-3.371355-6.8743126-2.62703-14.6235377-7.049197-19.9230076-10.595688-10.2989701-6.874062-23.6976303-9.501092-33.4966504-9.807579C17.9982002 222.806743 0 237.080273 0 237.080273V0h250z\"/></svg>");-webkit-mask-position:bottom;mask-position:bottom;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:cover;mask-size:cover}.wp-block-cover:not(.components-placeholder):not(.is-placeholder).is-style-top-wave{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"250\" height=\"250\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 29.809587s12.873712 8.581631 26.547345 11.208661c13.673633 2.62703 19.948005 2.014057 25.847415 1.094596 14.723528-2.276759 29.197081-7.662171 48.145186-21.760565 7.399261-5.341628 19.223078-13.485421 25.122488-15.630829 5.999399-2.145408 13.223677-3.415139 18.873112-2.320543 2.574743.437838 5.6494355.612974 12.4487556 3.371355 6.8743126 2.62703 14.6235377 7.049197 19.9230076 10.595688 10.2989701 6.874062 23.6976303 9.501092 33.4966504 9.807579C232.0017998 27.094989 250 12.821459 250 12.821459v237.080273H0z\"/></svg>");-webkit-mask-position:top;mask-position:top;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:cover;mask-size:cover}
:root{--coblocks-spacing--0:0;--coblocks-spacing--1:0.5em;--coblocks-spacing--2:1em;--coblocks-spacing--3:1.5em;--coblocks-spacing--4:2em;--coblocks-spacing--5:2.5em;--coblocks-spacing--6:3em;--coblocks-spacing--7:3.5em;--coblocks-spacing--8:4em;--coblocks-spacing--9:4.5em;--coblocks-spacing--10:7em}.wp-block-media-text.is-style-card .wp-block-media-text__content{background-color:var(--wp--preset--color--background,#fff);margin-left:auto;margin-right:auto;margin-top:calc(var(--coblocks-spacing--8, 4em)*-1);padding:var(--coblocks-spacing--4,2em);width:95%}@media(min-width:600px){.wp-block-media-text.is-style-card .wp-block-media-text__content{margin-left:0;margin-right:0;margin-top:0;padding:calc(var(--coblocks-spacing--3, 1.5em)*2);right:1px;width:auto}}@media(min-width:960px){.wp-block-media-text.is-style-card .wp-block-media-text__content{padding:calc(var(--coblocks-spacing--6, 3em)*2)}}.wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content{margin-bottom:calc(var(--coblocks-spacing--8, 4em)*-1);margin-top:0}@media(min-width:600px){.wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content{margin-bottom:0}}.wp-block-media-text.is-style-overlap .wp-block-media-text__content{margin-left:auto;margin-right:auto;margin-top:calc(var(--coblocks-spacing--4, 2em)*-1);width:90%}@media(min-width:600px){.wp-block-media-text.is-style-overlap .wp-block-media-text__content{margin-left:0;margin-left:calc(var(--coblocks-spacing--8, 4em)*-1);margin-right:0;margin-top:0;width:auto}}@media(min-width:960px){.wp-block-media-text.is-style-overlap .wp-block-media-text__content{margin-left:calc(var(--coblocks-spacing--10, 7em)*-2)}}.wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__content{margin-left:0;margin-right:0;margin-top:0;width:auto}@media(min-width:600px){.wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__content{margin-left:0;margin-right:calc(var(--coblocks-spacing--8, 4em)*-1);width:175%}}@media(min-width:960px){.wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__content{margin-right:calc(var(--coblocks-spacing--10, 7em)*-2)}}@media(min-width:600px){.wp-block-media-text.is-style-card .wp-block-media-text__content,.wp-block-media-text.is-style-outline .wp-block-media-text__content{margin-left:calc(var(--coblocks-spacing--10, 7em)*-1)}.wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content,.wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__content{margin-left:0;margin-right:calc(var(--coblocks-spacing--10, 7em)*-1)}}.wp-block-media-text.is-style-outline .wp-block-media-text__content{margin-left:auto;margin-right:auto;width:90%}@media(min-width:600px){.wp-block-media-text.is-style-outline .wp-block-media-text__content{margin-left:calc(var(--coblocks-spacing--10, 7em)*-1);margin-right:inherit;margin-top:inherit;width:auto}}.wp-block-media-text.is-style-outline .wp-block-media-text__content h1,.wp-block-media-text.is-style-outline .wp-block-media-text__content h2,.wp-block-media-text.is-style-outline .wp-block-media-text__content h3,.wp-block-media-text.is-style-outline .wp-block-media-text__content h4,.wp-block-media-text.is-style-outline .wp-block-media-text__content h5,.wp-block-media-text.is-style-outline .wp-block-media-text__content h6,.wp-block-media-text.is-style-outline .wp-block-media-text__content p{background-color:var(--wp--preset--color--background,#fff);box-shadow:.5rem 0 0 var(--wp--preset--color--background,#fff),-.5rem 0 0 var(--wp--preset--color--background,#fff);display:inline}.wp-block-media-text.is-style-outline .wp-block-media-text__content .wp-block-buttons{margin-top:var(--coblocks-spacing--5,2.5em)}.wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__content{width:100%}@media(min-width:600px){.wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__content{margin-left:.5rem;width:175%}}.wp-block-media-text .wp-block-media-text__content :first-child{margin-top:0}@media(min-width:600px){.editor-styles-wrapper .wp-block-media-text.is-style-card .wp-block-media-text__content{right:1px}.editor-styles-wrapper .wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__content{left:1px;right:auto}}.editor-styles-wrapper .wp-block-media-text.is-style-card .components-resizable-box__handle:after,.editor-styles-wrapper .wp-block-media-text.is-style-outline .components-resizable-box__handle:after,.editor-styles-wrapper .wp-block-media-text.is-style-overlap .components-resizable-box__handle:after{top:-8px}.editor-styles-wrapper .wp-block-media-text.is-style-card.is-selected .wp-block-media-text__media:after,.editor-styles-wrapper .wp-block-media-text.is-style-outline.is-selected .wp-block-media-text__media:after,.editor-styles-wrapper .wp-block-media-text.is-style-overlap.is-selected .wp-block-media-text__media:after{background:var(--wp-admin-theme-color,#007cba);border:2px solid #fff;border-radius:50%;bottom:-7px;content:"";cursor:inherit;display:block;height:15px;position:absolute;right:-8px;width:15px;z-index:9999}.editor-styles-wrapper .wp-block-media-text.is-style-card.has-media-on-the-right .wp-block-media-text__media:after,.editor-styles-wrapper .wp-block-media-text.is-style-outline.has-media-on-the-right .wp-block-media-text__media:after,.editor-styles-wrapper .wp-block-media-text.is-style-overlap.has-media-on-the-right .wp-block-media-text__media:after{left:-8px;right:inherit}.editor-styles-wrapper .wp-block-media-text.is-style-outline .wp-block-media-text__content .wp-block.wp-block-buttons{margin-top:var(--coblocks-spacing--5,2.5em)!important}
:root{--coblocks-spacing--0:0;--coblocks-spacing--1:0.5em;--coblocks-spacing--2:1em;--coblocks-spacing--3:1.5em;--coblocks-spacing--4:2em;--coblocks-spacing--5:2.5em;--coblocks-spacing--6:3em;--coblocks-spacing--7:3.5em;--coblocks-spacing--8:4em;--coblocks-spacing--9:4.5em;--coblocks-spacing--10:7em}.is-style-checkbox li{list-style-type:none!important;padding-left:10px;position:relative}@media(min-width:600px){.is-style-checkbox li{padding-left:12px}}.is-style-checkbox li:before{background-color:currentColor;background-size:cover;content:"";display:inline-block;height:20px;left:-20px;-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTUuMjgwOTA5MS00LjIyNzI3MjczYy4yMDEwMDk4LS4yMDgzMjczNy40OTM2NjM5LS4zMDA5OTc5Mi43Nzc5NDg5LS4yNDYzNDE4NHMuNTIxNzEyMy4yNDkyMzkwNS42MzExNDIuNTE3MjUwOTNjLjEzODE1MzQuMzI5NzUwNzMuMDYxNDQ3MS43MTA0MDEtLjE5MzYzNjMuOTYwOTA5MDlsLTYuODgwMDAwMDUgNi45NDQ1NDU0NWMtLjMwNTIyMzczLjMwNzY4ODQtLjc5MjQ0OTgzLjMzODE2NDQtMS4xMzM2MzYzNi4wNzA5MDkxbC0zLjc4NDU0NTQ1LTIuOTUxODE4MmMtLjI0MjY4MjI3LS4xOTEyMTE4LS4zNjYxNzk3Ny0uNDk2NDg0Ni0uMzI0NzEwMjItLjgwMjY0OTUuMDQxNDY5NTUtLjMwNjE2NDguMjQxNzI0ODUtLjU2NzU4NTgxLjUyNjUyODQtLjY4NzM1MDQ4LjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMy4xODE4MTgxOCAyLjQ4NDU0NTQ2eiIgZmlsbD0iY3VycmVudENvbG9yIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4KCg==);mask-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTUuMjgwOTA5MS00LjIyNzI3MjczYy4yMDEwMDk4LS4yMDgzMjczNy40OTM2NjM5LS4zMDA5OTc5Mi43Nzc5NDg5LS4yNDYzNDE4NHMuNTIxNzEyMy4yNDkyMzkwNS42MzExNDIuNTE3MjUwOTNjLjEzODE1MzQuMzI5NzUwNzMuMDYxNDQ3MS43MTA0MDEtLjE5MzYzNjMuOTYwOTA5MDlsLTYuODgwMDAwMDUgNi45NDQ1NDU0NWMtLjMwNTIyMzczLjMwNzY4ODQtLjc5MjQ0OTgzLjMzODE2NDQtMS4xMzM2MzYzNi4wNzA5MDkxbC0zLjc4NDU0NTQ1LTIuOTUxODE4MmMtLjI0MjY4MjI3LS4xOTEyMTE4LS4zNjYxNzk3Ny0uNDk2NDg0Ni0uMzI0NzEwMjItLjgwMjY0OTUuMDQxNDY5NTUtLjMwNjE2NDguMjQxNzI0ODUtLjU2NzU4NTgxLjUyNjUyODQtLjY4NzM1MDQ4LjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMy4xODE4MTgxOCAyLjQ4NDU0NTQ2eiIgZmlsbD0iY3VycmVudENvbG9yIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4KCg==);position:absolute;top:6px;transform:scale(.9);width:20px}@media(min-width:600px){.is-style-checkbox li:before{top:8px;transform:0}}.is-style-checkbox li li:before{-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTEuNzUxOTUzMSAwYzAtNC41NTUxNzEzNC0zLjY5Mjg3NTUtOC4yNDgwNDY4OC04LjI0ODA0NjktOC4yNDgwNDY4OC00LjU1NTE3MTM0IDAtOC4yNDgwNDY4OCAzLjY5Mjg3NTU0LTguMjQ4MDQ2ODggOC4yNDgwNDY4OCAwIDQuNTU1MTcxNCAzLjY5Mjg3NTU0IDguMjQ4MDQ2OSA4LjI0ODA0Njg4IDguMjQ4MDQ2OSA0LjU1NTE3MTQgMCA4LjI0ODA0NjktMy42OTI4NzU1IDguMjQ4MDQ2OS04LjI0ODA0Njl6bS00LjM1MjY2MTctMy4zMDQwODM4MWMuMjAxMDA5OC0uMjA4MzI3MzcuNDkzNjYzOS0uMzAwOTk3OTIuNzc3OTQ4OS0uMjQ2MzQxODRzLjUyMTcxMjMuMjQ5MjM5MDUuNjMxMTQyLjUxNzI1MDkzYy4xMzgxNTM0LjMyOTc1MDczLjA2MTQ0NzEuNzEwNDAxLS4xOTM2MzYzLjk2MDkwOTA5bC02LjA1NjI5NDM1IDYuMDIxMzU2NTNjLS4zMDUyMjM3My4zMDc2ODg0LS43OTI0NDk4My4zMzgxNjQ0LTEuMTMzNjM2MzYuMDcwOTA5MWwtMy4yNDExNDcwMS0yLjY0ODE4MThjLS4yNDI2ODIyNy0uMTkxMjExOC0uMzY2MTc5NzctLjQ5NjQ4NDYtLjMyNDcxMDIyLS44MDI2NDk1LjA0MTQ2OTU1LS4zMDYxNjQ4LjI0MTcyNDg1LS41Njc1ODU4LjUyNjUyODQtLjY4NzM1MDUyLjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMi42Mzg0MTk3NCAyLjE4MDkwOTF6Ii8+PC9zdmc+);mask-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjAgMTBjMCA1LjUyMjcyNzMtNC40NzcyNzI3IDEwLTEwIDEwLTUuNTIyNzI3MjcgMC0xMC00LjQ3NzI3MjctMTAtMTAgMC01LjUyMjcyNzI3IDQuNDc3MjcyNzMtMTAgMTAtMTAgNS41MjI3MjczIDAgMTAgNC40NzcyNzI3MyAxMCAxMHptLTEuNzUxOTUzMSAwYzAtNC41NTUxNzEzNC0zLjY5Mjg3NTUtOC4yNDgwNDY4OC04LjI0ODA0NjktOC4yNDgwNDY4OC00LjU1NTE3MTM0IDAtOC4yNDgwNDY4OCAzLjY5Mjg3NTU0LTguMjQ4MDQ2ODggOC4yNDgwNDY4OCAwIDQuNTU1MTcxNCAzLjY5Mjg3NTU0IDguMjQ4MDQ2OSA4LjI0ODA0Njg4IDguMjQ4MDQ2OSA0LjU1NTE3MTQgMCA4LjI0ODA0NjktMy42OTI4NzU1IDguMjQ4MDQ2OS04LjI0ODA0Njl6bS00LjM1MjY2MTctMy4zMDQwODM4MWMuMjAxMDA5OC0uMjA4MzI3MzcuNDkzNjYzOS0uMzAwOTk3OTIuNzc3OTQ4OS0uMjQ2MzQxODRzLjUyMTcxMjMuMjQ5MjM5MDUuNjMxMTQyLjUxNzI1MDkzYy4xMzgxNTM0LjMyOTc1MDczLjA2MTQ0NzEuNzEwNDAxLS4xOTM2MzYzLjk2MDkwOTA5bC02LjA1NjI5NDM1IDYuMDIxMzU2NTNjLS4zMDUyMjM3My4zMDc2ODg0LS43OTI0NDk4My4zMzgxNjQ0LTEuMTMzNjM2MzYuMDcwOTA5MWwtMy4yNDExNDcwMS0yLjY0ODE4MThjLS4yNDI2ODIyNy0uMTkxMjExOC0uMzY2MTc5NzctLjQ5NjQ4NDYtLjMyNDcxMDIyLS44MDI2NDk1LjA0MTQ2OTU1LS4zMDYxNjQ4LjI0MTcyNDg1LS41Njc1ODU4LjUyNjUyODQtLjY4NzM1MDUyLjI4NDU0NTQ1LS4xMTcyNzI3My42MDkwOTA5MS0uMDcyNzI3MjcuODUxODE4MTguMTE4MTgxODJsMi42Mzg0MTk3NCAyLjE4MDkwOTF6Ii8+PC9zdmc+)}.is-twentynineteen .is-style-checkbox li:before{top:10px}.is-style-none,.is-style-none li{list-style-type:none!important;padding-left:0!important}.is-style-none li:before{content:"​"}
.is-style-circular .wp-block-button__link{border-radius:100px!important}.is-style-3d .wp-block-button__link{box-shadow:inset 0 -3px 0 0 #00000040}.is-style-shadow{z-index:1}.is-style-shadow .wp-block-button__link{box-shadow:0 4px 6px #0000001c,0 1px 3px rgba(0,0,0,.075)}
.components-coblocks-animation-toggle.has-animation{position:relative}.components-coblocks-animation-toggle.has-animation :after{border-color:#0000 #1e1e1e #1e1e1e #0000;border-style:solid;border-width:4px;content:"";display:block;height:8px;position:absolute;right:0;top:1px;transform:rotate(-90deg);width:8px}.components-coblocks-animation-toggle .components-button:not(:hover) .coblocks-icon-animation .medium-circle{fill:#727272}.components-coblocks-animation-toggle .components-button:not(:hover) .coblocks-icon-animation .small-circle{fill:#c6c6c6}.components-coblocks-animation-toggle .components-button:hover .coblocks-icon-animation .large-circle,.components-coblocks-animation-toggle .components-button[aria-expanded=true] .coblocks-icon-animation .large-circle{animation:bounce .3s ease-in;animation-fill-mode:forwards}.components-coblocks-animation-toggle .components-button:hover .coblocks-icon-animation .medium-circle,.components-coblocks-animation-toggle .components-button[aria-expanded=true] .coblocks-icon-animation .medium-circle{animation:bounce .3s ease-in;animation-delay:.1s;animation-fill-mode:forwards;fill:rgba(var(--wp-admin-theme-color-rgb),.66);position:relative}.components-coblocks-animation-toggle .components-button:hover .coblocks-icon-animation .small-circle,.components-coblocks-animation-toggle .components-button[aria-expanded=true] .coblocks-icon-animation .small-circle{animation:bounce .3s ease-in;animation-delay:.2s;animation-fill-mode:forwards;fill:rgba(var(--wp-admin-theme-color-rgb),.33)}.components-coblocks-animation-dropdown .components-popover__content{border-color:#1e1e1e;box-shadow:none}.components-coblocks-animation-dropdown .components-menu-group+.components-menu-group{border-top-color:#1e1e1e}.components-coblocks-animation-dropdown .components-menu-item__button.components-button.has-icon{padding-right:6px}@keyframes bounce{0%{transform:translate(0)}50%{transform:translateY(-2px)}to{transform:translate(0)}}.coblocks__preview .wp-block{margin:0;max-width:none!important}.coblocks__preview .components-resizable-box__container{width:100%!important}.coblocks__preview .components-tip{margin-top:12px}.coblocks__preview .block-editor-block-preview__content .block-editor-block-list__block{margin-bottom:0;margin-top:0}body:not(.amp) .coblocks-animate{animation-fill-mode:forwards;animation-timing-function:ease-in;opacity:0}body:not(.amp) .coblocks-animate.animate-loop{animation-iteration-count:infinite}body:not(.amp) .coblocks-animate.fadeIn{animation-duration:.75s;animation-name:fadeIn}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}body:not(.amp) .coblocks-animate.zoomIn{animation-duration:.75s;animation-name:zoomIn}@keyframes zoomIn{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}body:not(.amp) .coblocks-animate.slideInLeft{animation-duration:.75s;animation-name:slideInLeft}@keyframes slideInLeft{0%{opacity:0;transform:translateX(-5em)}to{opacity:1;transform:translateX(0)}}body:not(.amp) .coblocks-animate.slideInRight{animation-duration:.75s;animation-name:slideInRight}@keyframes slideInRight{0%{opacity:0;transform:translateX(5em)}to{opacity:1;transform:translateX(0)}}body:not(.amp) .coblocks-animate.slideInBottom{animation-duration:.75s;animation-name:slideInBottom}@keyframes slideInBottom{0%{opacity:0;transform:translateY(5em)}to{opacity:1;transform:translateY(0)}}body:not(.amp) .coblocks-animate.clipHorizontal{animation-duration:.75s;animation-name:clipHorizontal}@keyframes clipHorizontal{0%{clip-path:polygon(0 50%,0 100%,0 100%,0 50%,100% 50%,100% 0,100% 0,100% 50%);opacity:0}to{clip-path:polygon(0 50%,0 100%,100% 100%,100% 50%,100% 50%,100% 0,0 0,0 50%);opacity:1}}body:not(.amp) .coblocks-animate.clipVertical{animation-duration:.75s;animation-name:clipVertical}@keyframes clipVertical{0%{clip-path:polygon(50% 0,100% 0,100% 0,50% 0,50% 100%,0 100%,0 100%,50% 100%);opacity:0}to{clip-path:polygon(50% 0,100% 0,100% 100%,50% 100%,50% 100%,0 100%,0 0,50% 0);opacity:1}}
.blog-clearfix:before, .blog-clearfix:after{content: "";display: table;}
.blog-clearfix::after, .blog-clearfix{clear: both;}
.blogfree-plugin{margin:15px -15px;}
.blog-col-1, .blog-col-0 { width: 100%; float: left; padding-left: 15px;  padding-right: 15px;}
.blog-col-3, .blog-col-4, .blog-col-2, .blog-col-1, .blog-col-0 {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.blog-col-3, .blog-col-4, .blog-col-2{margin-bottom:35px;}
.blog-col-1 .blog-inner-wrap-view, .blog-col-0 .blog-inner-wrap-view { border-bottom: 1px solid #d1d1d1; padding-bottom: 20px; margin-bottom: 20px;}
.blog .blog-title{margin-top:5px !important; margin-bottom:10px !important;}
.blog .blog-title a{font-size:22px; line-height:26px; color: #555; text-decoration:none;}
.blog-cat{margin-bottom:10px ;}
.blog-content{float:left; width:100%; clear:both;}
.date-post{width: 11%;float: left;text-align: center;}
.date-post span{display: block;color: #222;font-size: 30px;margin: 0px 0px 2px;padding-bottom: 2px;border-bottom: 1px dotted #C0C0C0;}
.date-post h2{margin-bottom:5px !important; padding-bottom:0 !important; margin-top:0px !important; text-align:center;}
.date-post p{margin: 0px;text-transform: uppercase;color: #333; text-align:center !important}
.post-content-text{width:87%; margin-left:2%; float:left;}
.blog-thumb{float:left; width:100%; }
.grid-category-post{margin-bottom:10px;}
.blog-author, .blog-author a{font-size: 13px;margin-bottom: 5px;}
.grid-category-post a{ color: #555; text-decoration:none;}

.blog-author a, .blog-cat a { text-decoration: none; color: #000; }
.blog-author a:hover, .blog-cat a:hover { text-decoration: none; color: #3F3F3F; }

/* Pagination CSS Start */
.blog_pagination {width:100%; text-align:center; color:#666; clear:both;}
.blog_pagination a {color: #fff !important; background: #666; padding: 7px 10px; margin:0 1px 6px 2px; display: inline-block; text-align: center; line-height: normal; box-shadow: none; text-shadow: none; font-size: 14px; border: 1px solid #666; text-decoration: none !important; -webkit-transition: all .3s ease; transition: all .3s ease; outline:0;}
.blog_pagination .page-numbers.current {color: #666; background: transparent; padding: 7px 10px; margin:0 1px 6px 2px; display: inline-block; text-align: center; line-height: normal; box-shadow: none; text-shadow: none; font-size: 14px; text-transform: uppercase; border: 1px solid #666; text-decoration: none !important;}
.blog_pagination a:hover, .blog_pagination a:focus, .blog_pagination a:visited:hover {color: #666 !important; background: #fff; outline:0;}
.blog_pagination a.prev, .blog_pagination a.next {min-width:90px;}
.wpbaw-next-prev .next{float:right;}
.wpbaw-next-prev .prev{float:left;}
.blog_pagination .wpbaw-pagi-btn a {min-width:90px;}

.blog-col-4{width:25%; float:left; clear:none !important; padding:0 15px;}
.blog-col-3{width:33%; float:left; clear:none !important; padding:0 15px;}
.blog-col-2{width:50%; float:left; clear:none !important; padding:0 15px;}
.blog-col-1{width:100%; float:left;}

.blog-author{ clear:both;}
.blog-author span, .grid-1-author{font-style:italic;}

.grid-blog-thumb{float: left; height: 200px;line-height: 0;  overflow: hidden;  position: relative;  width: 100%;background: #f1f1f1;  }
.grid-blog-thumb img{height: 100% !important;width: 100% !important;object-fit: cover;object-position: top center; } 
  
.blog-col-1 .grid-blog-thumb{height:400px;}
.blog-col-2 .grid-blog-thumb{height: 250px;}

.blog-col-1 .blog-thumb, .blog-col-3 .blog-thumb, .blog-col-2 .blog-thumb, .blog-col-4 .blog-thumb{margin-bottom:15px;}
.blog-col-3 .post-content-text, .blog-col-2 .post-content-text, .blog-col-4 .post-content-text{width:100%; margin:0px;}
p.blog-short-content{margin-bottom:10px !important}
.blog-col-0{width:100%; float:left;}
.blog-col-0 .blog-thumb{float:left; width:33%; margin-bottom:0px}
.blog-col-0 .blog-content{float:left;  margin-left:2% ; width:65%; clear:none; }.no-thumb.blog-col-0 .blog-content{ margin-left:0 ; width:100%; }
.blog-col-0 .blog-content .post-content-text{margin-left:0px;}

.blog.wpbaw-first{clear: both !important;}
.blog-col-1.has-no-date .post-content-text{margin-left:0px; width:100%;}
.grid-1-date{display:none;}
.widget-date-cat, .widget-date-cat a{font-size:13px;}

a.blog-more-link{background: #555; color:#fff; clear: both;  display: inline-block; padding: 5px 15px;font-size:14px;    text-decoration: none !important}
a.blog-more-link:hover, a.blog-more-link:focus, a.blog-more-link:active{background: #000; color:#fff; }

/***** blog widget css *****/
.recent-blog-items ul{padding:0; margin:0; list-style:none;}
.recent-blog-items ul li.blog_li{padding:10px 0; border-bottom:1px solid #ddd; clear:both;}
.blog_thumb_left{display:table-cell; vertical-align:top; width:100px;  }
.blog_thumb_left a{display:block; margin-right:10px;}
.blog_thumb_left img{height: 100% !important;width: 100% !important;object-fit: cover;object-position: top center; }
.blog_thumb_right{display:table-cell; vertical-align:top; }
.blog_li a.blogpost-title, .widget .blog_li a.blogpost-title, #secondary .widget .blog_li a.blogpost-title {  color: #555;}
.blog_li a.li-link-custom, .widget .blog_li a.li-link-custom, #secondary .widget .blog_li a.li-link-custom {color: #555;}

@media all and (max-width: 768px) {
	.blog-col-3.wpbaw-first{clear:none !important}
	.blog-col-3, .blog-col-4{width:50%;}
}

@media all and (max-width: 640px) {
	.blog-col-2, .blog-col-3, .blog-col-4{width:100%;}
	.blog-col-list .blog-thumb{margin-bottom:15px;}
}

@media all and (max-width: 500px) {
	.grid-1-date{display:block;}
	.blog-col-0 .blog-thumb{float:left; width:100%;}	
	.blog-col-0 .blog-content{float:left;  margin-left:0% ; width:100%; clear:both; }
	.blog-col-1 .date-post{display:none;}
	.blog-col-1 .grid-blog-thumb{height:250px}
}body .wp-show-posts a{box-shadow:0 0 0 transparent}.wp-show-posts-entry-title a{text-decoration:none}a.wp-show-posts-read-more,a.wp-show-posts-read-more:visited{display:inline-block;padding:8px 15px;border:2px solid #222;color:#222;font-size:.8em;text-decoration:none}.wpsp-read-more{margin:0 0 1em;display:inline-block}a.wp-show-posts-read-more:focus,a.wp-show-posts-read-more:hover{border:2px solid transparent;color:#fff;background:#222;text-decoration:none}.wp-show-posts-image{margin-bottom:1em}.wp-show-posts-image.wpsp-image-left{float:left;margin-right:1.5em}.wp-show-posts-image.wpsp-image-right{float:right;margin-left:1.5em}.wp-show-posts-image.wpsp-image-center{display:block;text-align:center}.wp-show-posts-image img{margin:0!important;vertical-align:bottom;height:auto}.wp-show-posts-entry-header{margin:0 0 1em;padding:0}.wp-show-posts .wp-show-posts-entry-title{margin:0}.wp-show-posts-updated{display:none}.wp-show-posts-entry-content,.wp-show-posts-entry-summary{margin-bottom:1em}.wp-show-posts-entry-meta{font-size:.8em}.wp-show-posts-separator{opacity:.5}.wp-show-posts-meta a,.wp-show-posts-meta a:visited{color:rgba(0,0,0,.5)}.stack-wp-show-posts-byline,.stack-wp-show-posts-posted-on{display:block}.wp-show-posts-entry-meta-below-post{margin-bottom:1em}.wp-show-posts-columns:not(.wp-show-posts-masonry){display:flex;flex-wrap:wrap}.wp-show-posts-columns .wp-show-posts-single:not(.wp-show-posts-masonry-block){display:flex;flex-direction:row}.wp-show-posts-columns .wp-show-posts-single:not(.wp-show-posts-masonry-block) .wp-show-posts-image img{flex:0 0 auto;object-fit:scale-down}.wpsp-clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0}.wp-show-posts:not(.wp-show-posts-columns) .wp-show-posts-single:not(:last-child){margin-bottom:2em}.wpsp-load-more{margin-top:2em}.wp-show-posts-columns .wp-show-posts-inner{flex:1}.wp-show-posts-inner:after{clear:both;display:table;content:'';width:0;height:0;overflow:hidden;visibility:hidden}.wp-show-posts-single.post{margin-bottom:0}@media (min-width:768px){.wpsp-col-1,.wpsp-col-10,.wpsp-col-11,.wpsp-col-12,.wpsp-col-2,.wpsp-col-20,.wpsp-col-3,.wpsp-col-4,.wpsp-col-5,.wpsp-col-6,.wpsp-col-7,.wpsp-col-8,.wpsp-col-9{float:left}.wpsp-col-1{width:8.333333%}.wpsp-col-2{width:16.666667%}.wpsp-col-3{width:25%}.wpsp-col-4{width:33.333%}.wpsp-col-5{width:41.666667%}.wpsp-col-6{width:50%}.wpsp-col-7{width:58.333333%}.wpsp-col-8{width:66.666667%}.wpsp-col-9{width:75%}.wpsp-col-10{width:83.333333%}.wpsp-col-11{width:91.666667%}.wpsp-col-12{width:100%}.wpsp-col-20{width:20%}}@media (max-width:767px){.wp-show-posts-columns,.wp-show-posts-inner{margin-left:0!important;margin-right:0!important}.wp-show-posts-columns .wp-show-posts-single{display:block;width:100%}.wp-show-posts-image.wpsp-image-left,.wp-show-posts-image.wpsp-image-right{float:none;margin-right:0;margin-left:0}}.wp-show-posts-inner :last-child{margin-bottom:0}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important}.screen-reader-text:active,.screen-reader-text:focus,.screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.wpsp-clearfix:after{content:".";display:block;overflow:hidden;visibility:hidden;font-size:0;line-height:0;width:0;height:0}
@font-face {
  font-family: 'elespare-icons';
  src:  url(/wp-content/plugins/elespare/assets/font/../font/elespare-icons.eot?tfvbq3);
  src:  url(/wp-content/plugins/elespare/assets/font/../font/elespare-icons.eot?tfvbq3#iefix) format('embedded-opentype'),
    url(/wp-content/plugins/elespare/assets/font/../font/elespare-icons.ttf?tfvbq3) format('truetype'),
    url(/wp-content/plugins/elespare/assets/font/../font/elespare-icons.woff?tfvbq3) format('woff'),
    url(/wp-content/plugins/elespare/assets/font/../font/elespare-icons.svg?tfvbq3#elespare-icons) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="elespare-icons-"], [class*=" elespare-icons-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'elespare-icons' !important;
  speak: never;
  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;
}

.elespare-icons-user-circle-regular:before {
  content: "\e900";
}
.elespare-icons-clock-regular:before {
  content: "\e901";
}
.elespare-icons-heart:before {
  content: "\e800";
}
.elespare-icons-link-button:before {
  content: "\e801";
}
.elespare-icons-copyright:before {
  content: "\e802";
}
.elespare-icons-main-banner-2:before {
  content: "\e803";
}
.elespare-icons-main-banner:before {
  content: "\e804";
}
.elespare-icons-section-title:before {
  content: "\e805";
}
.elespare-icons-heart-empty:before {
  content: "\e806";
}
.elespare-icons-clock:before {
  content: "\e807";
}
.elespare-icons-picture:before {
  content: "\e808";
}
.elespare-icons-videocam:before {
  content: "\e809";
}
.elespare-icons-picture-1:before {
  content: "\e80a";
}
.elespare-icons-banner:before {
  content: "\e80b";
}
.elespare-icons-carousel:before {
  content: "\e80c";
}
.elespare-icons-express:before {
  content: "\e80d";
}
.elespare-icons-flash:before {
  content: "\e80e";
}
.elespare-icons-full:before {
  content: "\e80f";
}
.elespare-icons-grid:before {
  content: "\e810";
}
.elespare-icons-list:before {
  content: "\e811";
}
.elespare-icons-slider:before {
  content: "\e812";
}
.elespare-icons-tabs:before {
  content: "\e813";
}
.elespare-icons-tile:before {
  content: "\e814";
}
.elespare-icons-treinding:before {
  content: "\e815";
}
.elespare-icons-masonry:before {
  content: "\e816";
}
.elespare-icons-author:before {
  content: "\e817";
}
.elespare-icons-links:before {
  content: "\e818";
}
.elespare-icons-small-list:before {
  content: "\e819";
}
.elespare-icons-timeline:before {
  content: "\e81a";
}
.elespare-icons-banner-2-1:before {
  content: "\e81b";
}
.elespare-icons-express-gird:before {
  content: "\e81c";
}
.elespare-icons-expan-nav:before {
  content: "\e81d";
}
.elespare-icons-hori-nav:before {
  content: "\e81e";
}
.elespare-icons-site-title:before {
  content: "\e820";
}
.elespare-icons-up-dir:before {
  content: "\e821";
}
.elespare-icons-site-search:before {
  content: "\e822";
}
.elespare-icons-left-dir:before {
  content: "\e823";
}
.elespare-icons-right-dir:before {
  content: "\e824";
}
.elespare-icons-tagline:before {
  content: "\e825";
}
.elespare-icons-verti-nav:before {
  content: "\e826";
}
.elespare-icons-search:before {
  content: "\e827";
}
.elespare-icons-cancel:before {
  content: "\e828";
}
.elespare-icons-site-logo:before {
  content: "\e829";
}
.elespare-icons-elesper-logo:before {
  content: "\e82a";
}
.elespare-icons-tag:before {
  content: "\e82b";
}
.elespare-icons-calendar:before {
  content: "\e82c";
}
.elespare-icons-down-dir:before {
  content: "\e82d";
}
.elespare-icons-plus:before {
  content: "\e82e";
}
.elespare-icons-camera:before {
  content: "\e82f";
}
.elespare-icons-categories:before {
  content: "\e830";
}
.elespare-icons-twitter:before {
  content: "\f099";
}
.elespare-icons-facebook:before {
  content: "\f09a";
}
.elespare-icons-menu:before {
  content: "\f0c9";
}
.elespare-icons-linkedin:before {
  content: "\f0e1";
}
.elespare-icons-comment-empty:before {
  content: "\f0e5";
}
.elespare-icons-angle-left:before {
  content: "\f104";
}
.elespare-icons-angle-right:before {
  content: "\f105";
}
.elespare-icons-angle-up:before {
  content: "\f106";
}
.elespare-icons-angle-down:before {
  content: "\f107";
}
.elespare-icons-github:before {
  content: "\f113";
}
.elespare-icons-youtube:before {
  content: "\f167";
}
.elespare-icons-instagram:before {
  content: "\f16d";
}
.elespare-icons-flickr:before {
  content: "\f16e";
}
.elespare-icons-tumblr:before {
  content: "\f173";
}
.elespare-icons-right:before {
  content: "\f178";
}
.elespare-icons-dribbble:before {
  content: "\f17d";
}
.elespare-icons-vkontakte:before {
  content: "\f189";
}
.elespare-icons-digg:before {
  content: "\f1a6";
}
.elespare-icons-pinterest:before {
  content: "\f231";
}
.elespare-icons-houzz:before {
  content: "\f27c";
}
.elespare-icons-vimeo:before {
  content: "\f27d";
}
.elespare-icons-reddit-alien:before {
  content: "\f281";
}
.elespare-icons-hashtag:before {
  content: "\f292";
}
.elespare-icons-user-circle-o:before {
  content: "\f2be";
}
.elespare-icons-user-o:before {
  content: "\f2c0";
}
: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:540px){.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:1400px){.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%}}@media (max-width:1200px){.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:767px){.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:540px){.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:541px){.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:541px){.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:540px){.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:541px) 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:1400px){.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:1201px) and (max-width:1400px){.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:1200px){.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:541px) 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: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:541px) and (max-width:767px){.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:540px){.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:1400px){.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)}}@media (max-width:1200px){.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:767px){.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:540px){.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:1401px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:1400px){#elementor-device-mode:after{content:"laptop"}}@media (max-width:1200px){#elementor-device-mode:after{content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:540px){#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:540px){: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:540px){.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:540px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:541px) and (max-width:767px){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:1025px) and (max-width:1200px){.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1201px) and (max-width:1400px){.elementor .elementor-hidden-laptop{display:none}}@media (min-width:1401px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}.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}
.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}
.eael-fancy-text-container p{margin:0}.eael-fancy-text-container[data-fancy-text-cursor=yes] .eael-fancy-text-strings::after{content:"|";-webkit-animation:eaelBlink_cursor .7s infinite;animation:eaelBlink_cursor .7s infinite}.eael-fancy-text-container .typed-cursor{display:none}.eael-fancy-text-container .animated.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.eael-fancy-text-container .animated.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0)}to{opacity:1;-webkit-transform:none;transform:none}}.eael-fancy-text-container .animated.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0, -100%, 0);transform:translate3d(0, -100%, 0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0, -100%, 0);transform:translate3d(0, -100%, 0)}to{opacity:1;-webkit-transform:none;transform:none}}.eael-fancy-text-container .animated.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}to{opacity:1;-webkit-transform:none;transform:none}}.eael-fancy-text-container .animated.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}to{opacity:1;-webkit-transform:none;transform:none}}.eael-fancy-text-container .animated.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(0.3, 0.3, 0.3);transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(0.3, 0.3, 0.3);transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}}.eael-fancy-text-container .animated.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;-webkit-transform:scale3d(0.3, 0.3, 0.3);transform:scale3d(0.3, 0.3, 0.3)}20%{-webkit-transform:scale3d(1.1, 1.1, 1.1);transform:scale3d(1.1, 1.1, 1.1)}40%{-webkit-transform:scale3d(0.9, 0.9, 0.9);transform:scale3d(0.9, 0.9, 0.9)}60%{opacity:1;-webkit-transform:scale3d(1.03, 1.03, 1.03);transform:scale3d(1.03, 1.03, 1.03)}80%{-webkit-transform:scale3d(0.97, 0.97, 0.97);transform:scale3d(0.97, 0.97, 0.97)}to{opacity:1;-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}@keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;-webkit-transform:scale3d(0.3, 0.3, 0.3);transform:scale3d(0.3, 0.3, 0.3)}20%{-webkit-transform:scale3d(1.1, 1.1, 1.1);transform:scale3d(1.1, 1.1, 1.1)}40%{-webkit-transform:scale3d(0.9, 0.9, 0.9);transform:scale3d(0.9, 0.9, 0.9)}60%{opacity:1;-webkit-transform:scale3d(1.03, 1.03, 1.03);transform:scale3d(1.03, 1.03, 1.03)}80%{-webkit-transform:scale3d(0.97, 0.97, 0.97);transform:scale3d(0.97, 0.97, 0.97)}to{opacity:1;-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}.eael-fancy-text-container .animated.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0, 0, 1, 15deg);transform:rotate3d(0, 0, 1, 15deg)}40%{-webkit-transform:rotate3d(0, 0, 1, -10deg);transform:rotate3d(0, 0, 1, -10deg)}60%{-webkit-transform:rotate3d(0, 0, 1, 5deg);transform:rotate3d(0, 0, 1, 5deg)}80%{-webkit-transform:rotate3d(0, 0, 1, -5deg);transform:rotate3d(0, 0, 1, -5deg)}to{-webkit-transform:rotate3d(0, 0, 1, 0deg);transform:rotate3d(0, 0, 1, 0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0, 0, 1, 15deg);transform:rotate3d(0, 0, 1, 15deg)}40%{-webkit-transform:rotate3d(0, 0, 1, -10deg);transform:rotate3d(0, 0, 1, -10deg)}60%{-webkit-transform:rotate3d(0, 0, 1, 5deg);transform:rotate3d(0, 0, 1, 5deg)}80%{-webkit-transform:rotate3d(0, 0, 1, -5deg);transform:rotate3d(0, 0, 1, -5deg)}to{-webkit-transform:rotate3d(0, 0, 1, 0deg);transform:rotate3d(0, 0, 1, 0deg)}}.eael-fancy-text-strings{display:none}.eael-fancy-text-prefix,.eael-fancy-text-suffix{display:inline-block}.morphext>.animated{display:inline-block}@-webkit-keyframes eaelBlink_cursor{0%{opacity:1}50%{opacity:0}100%{opacity:1}}@keyframes eaelBlink_cursor{0%{opacity:1}50%{opacity:0}100%{opacity:1}}.eael-fancy-text-container.style-2{font-size:24px}.eael-fancy-text-container.style-2 .eael-fancy-text-strings{background:#062aca;color:#fff;padding:10px 25px}.rtl .eael-fancy-text-container{direction:ltr}
.elementor-kit-15231{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#000000;--e-global-color-text:#000000;--e-global-color-accent:#61CE70;--e-global-color-7742db2:#0066FF66;--e-global-color-413c604:#E6F6F8;--e-global-color-551c13c:#FFFFFF;--e-global-color-3d95764:#0B805ABD;--e-global-color-7a54d6a:#6DBF87;--e-global-color-3d4bcc3:#02BE81;--e-global-color-80bbf57:#02BE81EB;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:35px;--e-global-typography-text-font-weight:400;background-color:#E6F6F8;background-image:url("https://i0.wp.com/incluseum.com/wp-content/uploads/2025/03/Background-45-.png?fit=1186%2C1016&ssl=1");color:var( --e-global-color-secondary );font-family:"Inter", Inter;font-size:65px;font-weight:600;background-position:top center;background-repeat:no-repeat;background-size:cover;}.elementor-kit-15231 button:hover,.elementor-kit-15231 button:focus,.elementor-kit-15231 input[type="button"]:hover,.elementor-kit-15231 input[type="button"]:focus,.elementor-kit-15231 input[type="submit"]:hover,.elementor-kit-15231 input[type="submit"]:focus,.elementor-kit-15231 .elementor-button:hover,.elementor-kit-15231 .elementor-button:focus{background-color:var( --e-global-color-3d4bcc3 );color:var( --e-global-color-secondary );}.elementor-kit-15231 a{color:#000000;}.elementor-kit-15231 h1{color:var( --e-global-color-secondary );font-family:"Inter", Inter;font-size:100px;font-weight:700;}.elementor-kit-15231 h2{color:var( --e-global-color-secondary );}.elementor-kit-15231 h3{color:var( --e-global-color-secondary );}.elementor-kit-15231 h4{color:var( --e-global-color-secondary );}.elementor-kit-15231 h5{color:var( --e-global-color-secondary );}.elementor-kit-15231 h6{font-family:"Inter", Inter;font-size:15px;}.elementor-kit-15231 button,.elementor-kit-15231 input[type="button"],.elementor-kit-15231 input[type="submit"],.elementor-kit-15231 .elementor-button{font-family:"Roboto Mono", Inter;font-size:20px;font-weight:700;}.elementor-kit-15231 img{filter:brightness( 100% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.site-title{display:var(--page-title-display);}@media(max-width:1400px){.elementor-kit-15231{background-image:url("https://i0.wp.com/incluseum.com/wp-content/uploads/2025/03/Background-45-.png?fit=1186%2C1016&ssl=1");background-repeat:no-repeat;background-size:cover;}}@media(max-width:1200px){.elementor-kit-15231{background-image:url("https://i0.wp.com/incluseum.com/wp-content/uploads/2025/03/Background-45-.png?fit=1186%2C1016&ssl=1");background-repeat:no-repeat;background-size:cover;}}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:880px;}.e-con{--container-max-width:880px;}}@media(max-width:767px){.elementor-kit-15231{font-size:35px;line-height:21px;letter-spacing:0.2px;}}@media(max-width:540px){.elementor-kit-15231{background-image:url("https://i0.wp.com/incluseum.com/wp-content/uploads/2025/03/Background-45-.png?fit=1186%2C1016&ssl=1");font-size:30px;background-repeat:no-repeat;background-size:cover;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}.elespare-search-wrapper .elespare-search-icon--toggle {
  color: #000;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer; }

.elespare-search-wrapper .elespare-search--toggle {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 99999999;
  align-items: center;
  display: flex !important;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.2s; }
  .elespare-search-wrapper .elespare-search--toggle.show {
    transition: transform 0.3s;
    transform: scale(1); }
  .elespare-search-wrapper .elespare-search--toggle .btn-elespare-search-form {
    width: auto;
    min-width: 30px;
    flex-shrink: 0;
    border: none;
    border-radius: 0;
    color: #fff;
    background-color: #bb1919;
    height: unset;
    padding: 0 1.2em;
    white-space: nowrap; }
  .elespare-search-wrapper .elespare-search--toggle .elespare-search-toggle--wrapper {
    width: 80%; }
    .elespare-search-wrapper .elespare-search--toggle .elespare-search-toggle--wrapper .elespare--search-sidebar-wrapper {
      padding: 0;
      overflow: hidden; }
      .elespare-search-wrapper .elespare-search--toggle .elespare-search-toggle--wrapper .elespare--search-sidebar-wrapper .search-form {
        display: flex;
        overflow: hidden; }
        .elespare-search-wrapper .elespare-search--toggle .elespare-search-toggle--wrapper .elespare--search-sidebar-wrapper .search-form .search-field {
          height: 50px;
          background: rgba(241, 241, 241, 0.5);
          border-radius: 0; }
    .elespare-search-wrapper .elespare-search--toggle .elespare-search-toggle--wrapper input[type='search']::-webkit-search-decoration,
    .elespare-search-wrapper .elespare-search--toggle .elespare-search-toggle--wrapper input[type='search']::-webkit-search-cancel-button,
    .elespare-search-wrapper .elespare-search--toggle .elespare-search-toggle--wrapper input[type='search']::-webkit-search-results-button,
    .elespare-search-wrapper .elespare-search--toggle .elespare-search-toggle--wrapper input[type='search']::-webkit-search-results-decoration {
      -webkit-appearance: none; }
  .elespare-search-wrapper .elespare-search--toggle .elespare--site-search-close {
    position: absolute;
    color: #ffffff;
    top: 50px;
    right: 10%;
    background: none;
    border: none;
    font-size: 36px;
    line-height: normal;
    padding: 0;
    transition: all 0.3s; }
    .elespare-search-wrapper .elespare-search--toggle .elespare--site-search-close:hover {
      transform: rotate(180deg);
      transition: all 0.3s; }

.elespare-search-wrapper .elespare-search-form-header .elespare--search-sidebar-wrapper {
  padding: 0; }
  .elespare-search-wrapper .elespare-search-form-header .elespare--search-sidebar-wrapper .site-search-form {
    overflow: hidden;
    display: flex; }
    .elespare-search-wrapper .elespare-search-form-header .elespare--search-sidebar-wrapper .site-search-form .search-field {
      border-radius: 0;
      width: 100%;
      background: rgba(241, 241, 241, 0.5); }
  .elespare-search-wrapper .elespare-search-form-header .elespare--search-sidebar-wrapper .btn-elespare-search-form {
    width: auto;
    min-width: 30px;
    flex-shrink: 0;
    border: none;
    border-radius: 0;
    color: #fff;
    background-color: #bb1919;
    height: unset;
    padding: 0 1.2em;
    white-space: nowrap; }

.elespare-search-wrapper .elespare-search-dropdown-toggle .elespare--search-sidebar-wrapper .btn-elespare-search-form {
  border: none;
  border-radius: 0;
  line-height: 1;
  height: unset;
  padding: 0.9em 1.2em 0.8em;
  color: #fff;
  opacity: 1;
  background-color: #bb1919;
  white-space: nowrap; }

.elespare-search-wrapper .elespare-search-dropdown-toggle .elespare-search--toggle-dropdown {
  position: absolute;
  top: 120%;
  width: 300px;
  text-align: left;
  visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  margin: 0 auto;
  margin-top: 1px;
  z-index: 99;
  border-radius: 0px;
  transition: opacity 0.2s, top 0.4s, visibility 0s linear 0.4s; }
  .elespare-search-wrapper .elespare-search-dropdown-toggle .elespare-search--toggle-dropdown .elespare--search-sidebar-wrapper .search-form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.15); }
    .elespare-search-wrapper .elespare-search-dropdown-toggle .elespare-search--toggle-dropdown .elespare--search-sidebar-wrapper .search-form input.search-field {
      border-radius: 0;
      padding: 10px 15px;
      width: 100%;
      background: rgba(241, 241, 241, 0.5);
      height: unset; }

.elespare-search-wrapper .elespare-search-dropdown-toggle.show .elespare-search--toggle-dropdown {
  visibility: visible;
  filter: alpha(opacity=1);
  opacity: 1;
  z-index: 999;
  top: 100%;
  transition: opacity 0.4s, top 0.4s; }

.elespare-search-wrapper .site-search-form .site-search-field:focus, .elespare-search-wrapper .site-search-form .site-search-field:focus-within {
  outline: none; }

.elespare-icons-search .screen-reader-text {
  display: none; }

.elementor-widget-search-from {
  position: relative; }
  .elementor-widget-search-from.elespare-grid-left .elespare-site-search-toggle,
  .elementor-widget-search-from.elespare-grid-left .elespare-search-dropdown-toggle {
    text-align: left; }
  .elementor-widget-search-from.elespare-grid-left .elespare-search--toggle-dropdown {
    right: auto;
    left: 10px; }
  .elementor-widget-search-from.elespare-grid-left .elespare-search-form-header .site-search-form {
    flex-direction: row; }
  .elementor-widget-search-from.elespare-grid-center .elespare-site-search-toggle,
  .elementor-widget-search-from.elespare-grid-center .elespare-search-dropdown-toggle {
    text-align: center; }
  .elementor-widget-search-from.elespare-grid-center .elespare-search--toggle-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%); }
  .elementor-widget-search-from.elespare-grid-center .elespare-search-form-header .site-search-form {
    flex-direction: column; }
    .elementor-widget-search-from.elespare-grid-center .elespare-search-form-header .site-search-form .site-search-field {
      text-align: center; }
  .elementor-widget-search-from.elespare-grid-right .elespare-site-search-toggle,
  .elementor-widget-search-from.elespare-grid-right .elespare-search-dropdown-toggle {
    text-align: right; }
  .elementor-widget-search-from.elespare-grid-right .elespare-search--toggle-dropdown {
    right: 10px;
    left: auto; }
  .elementor-widget-search-from.elespare-grid-right .elespare-search-form-header .site-search-form {
    flex-direction: row-reverse; }
    .elementor-widget-search-from.elespare-grid-right .elespare-search-form-header .site-search-form .site-search-field {
      text-align: right; }

.elespare-search-wrapper button:focus {
  outline: none;
  box-shadow: none; }

.elespare-search-wrapper button:focus-visible {
  outline: 1px dotted; }

@media (max-width: 1024px) {
  .elementor-widget-search-from.elespare-grid-tablet-left .elespare-site-search-toggle,
  .elementor-widget-search-from.elespare-grid-tablet-left .elespare-search-dropdown-toggle {
    text-align: left; }
  .elementor-widget-search-from.elespare-grid-tablet-left .elespare-search--toggle-dropdown {
    right: auto;
    left: 10px; }
  .elementor-widget-search-from.elespare-grid-tablet-left .elespare-search-form-header .site-search-form {
    flex-direction: row; }
  .elementor-widget-search-from.elespare-grid-tablet-center .elespare-site-search-toggle,
  .elementor-widget-search-from.elespare-grid-tablet-center .elespare-search-dropdown-toggle {
    text-align: center; }
  .elementor-widget-search-from.elespare-grid-tablet-center .elespare-search--toggle-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%); }
  .elementor-widget-search-from.elespare-grid-tablet-center .elespare-search-form-header .site-search-form {
    flex-direction: column; }
    .elementor-widget-search-from.elespare-grid-tablet-center .elespare-search-form-header .site-search-form .site-search-field {
      text-align: center; }
  .elementor-widget-search-from.elespare-grid-tablet-right .elespare-site-search-toggle,
  .elementor-widget-search-from.elespare-grid-tablet-right .elespare-search-dropdown-toggle {
    text-align: right; }
  .elementor-widget-search-from.elespare-grid-tablet-right .elespare-search--toggle-dropdown {
    right: 10px;
    left: auto; }
  .elementor-widget-search-from.elespare-grid-tablet-right .elespare-search-form-header .site-search-form {
    flex-direction: row-reverse; }
    .elementor-widget-search-from.elespare-grid-tablet-right .elespare-search-form-header .site-search-form .site-search-field {
      text-align: right; } }

@media (max-width: 767px) {
  .elementor-widget-search-from.elespare-grid-mobile-left .elespare-site-search-toggle,
  .elementor-widget-search-from.elespare-grid-mobile-left .elespare-search-dropdown-toggle {
    text-align: left; }
  .elementor-widget-search-from.elespare-grid-mobile-left .elespare-search--toggle-dropdown {
    right: auto;
    left: 10px; }
  .elementor-widget-search-from.elespare-grid-mobile-left .elespare-search-form-header .site-search-form {
    flex-direction: row; }
  .elementor-widget-search-from.elespare-grid-mobile-center .elespare-site-search-toggle,
  .elementor-widget-search-from.elespare-grid-mobile-center .elespare-search-dropdown-toggle {
    text-align: center; }
  .elementor-widget-search-from.elespare-grid-mobile-center .elespare-search--toggle-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%); }
  .elementor-widget-search-from.elespare-grid-mobile-center .elespare-search-form-header .site-search-form {
    flex-direction: column; }
    .elementor-widget-search-from.elespare-grid-mobile-center .elespare-search-form-header .site-search-form .site-search-field {
      text-align: center; }
  .elementor-widget-search-from.elespare-grid-mobile-right .elespare-site-search-toggle,
  .elementor-widget-search-from.elespare-grid-mobile-right .elespare-search-dropdown-toggle {
    text-align: right; }
  .elementor-widget-search-from.elespare-grid-mobile-right .elespare-search--toggle-dropdown {
    right: 10px;
    left: auto; }
  .elementor-widget-search-from.elespare-grid-mobile-right .elespare-search-form-header .site-search-form {
    flex-direction: row-reverse; }
    .elementor-widget-search-from.elespare-grid-mobile-right .elespare-search-form-header .site-search-form .site-search-field {
      text-align: right; } }

body.rtl .elementor-widget-search-from.elespare-grid-right .elespare-search-form-header .site-search-form .site-search-field {
  text-align: left; }
.grid-layout.has-background .elespare-posts-wrap .elespare-content-wrapper {
  padding: 15px;
  flex: 1;
  position: relative;
  z-index: 1; }

.grid-layout.has-no-background .elespare-posts-wrap .elespare-content-wrapper {
  padding: 15px 0;
  flex: 1; }

.elespare-grid-wrap .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.elespare-grid-wrap .elespare-posts-wrap a {
  text-decoration: none; }

.grid-style-2 .elespare-posts-grid-post-items {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end; }

.grid-style-3 .elespare-posts-grid-post-items {
  display: flex;
  flex-direction: column; }
  .grid-style-3 .elespare-posts-grid-post-items:nth-child(even) {
    flex-direction: column-reverse;
    justify-content: flex-end; }

.grid-style-1 .elespare-posts-grid-post-items,
.grid-style-4 .elespare-posts-grid-post-items,
.grid-style-5 .elespare-posts-grid-post-items,
.grid-style-6 .elespare-posts-grid-post-items,
.grid-style-7 .elespare-posts-grid-post-items,
.grid-style-11 .elespare-posts-grid-post-items,
.grid-style-12 .elespare-posts-grid-post-items {
  display: flex;
  flex-direction: column; }

.elespare-grid-wrap {
  container-type: inline-size; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-3 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links, .elespare-grid-wrap .elespare-posts-wrap.grid-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links, .elespare-grid-wrap .elespare-posts-wrap.grid-style-1 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links {
    top: auto;
    bottom: 15px; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-5 .elespare-posts-grid-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
    padding: 0; }
    .elespare-grid-wrap .elespare-posts-wrap.grid-style-5 .elespare-posts-grid-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
      content: "\2219";
      color: inherit;
      font-weight: bold;
      padding: 0 0 0 2px; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-5 .elespare-posts-grid-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
    display: none; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-6 .elespare-posts-grid-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
    padding: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 1px;
    line-height: 1.5;
    display: block; }
    .elespare-grid-wrap .elespare-posts-wrap.grid-style-6 .elespare-posts-grid-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
      display: none; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-7 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links {
    top: inherit;
    bottom: 0;
    width: 100%;
    margin-bottom: 0 !important;
    font-size: 0; }
    .elespare-grid-wrap .elespare-posts-wrap.grid-style-7 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links li.elespare-meta-category {
      margin: 1px;
      margin-bottom: 0; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items, .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items, .elespare-grid-wrap .elespare-posts-wrap.grid-style-8 .elespare-posts-grid-post-items {
    position: relative;
    display: flex;
    align-items: flex-end; }
    .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-grid-wrap .elespare-posts-wrap.grid-style-8 .elespare-posts-grid-post-items .elespare-content-wrapper {
      position: relative;
      width: 100%;
      padding: 15px;
      justify-self: end;
      justify-content: flex-end; }
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-content-wrapper > *, .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-content-wrapper > *, .elespare-grid-wrap .elespare-posts-wrap.grid-style-8 .elespare-posts-grid-post-items .elespare-content-wrapper > * {
        position: relative;
        z-index: 2; }
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-content-wrapper::after, .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-content-wrapper::after, .elespare-grid-wrap .elespare-posts-wrap.grid-style-8 .elespare-posts-grid-post-items .elespare-content-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
        z-index: 1; }
    .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-grid-wrap .elespare-posts-wrap.grid-style-8 .elespare-posts-grid-post-items .elespare-img-wrapper {
      height: 100% !important;
      width: 100% !important;
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 1; }
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-img-wrapper img,
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-img-wrapper a,
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-img-wrapper .post-grid-thumbnail, .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-img-wrapper img,
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-img-wrapper a,
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-img-wrapper .post-grid-thumbnail, .elespare-grid-wrap .elespare-posts-wrap.grid-style-8 .elespare-posts-grid-post-items .elespare-img-wrapper img,
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-8 .elespare-posts-grid-post-items .elespare-img-wrapper a,
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-8 .elespare-posts-grid-post-items .elespare-img-wrapper .post-grid-thumbnail {
        display: block;
        height: 100%; }
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-img-wrapper img, .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-img-wrapper img, .elespare-grid-wrap .elespare-posts-wrap.grid-style-8 .elespare-posts-grid-post-items .elespare-img-wrapper img {
        width: 100%;
        object-fit: cover; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format {
    z-index: 1; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-img-wrapper::after {
    background: linear-gradient(to bottom, #000, transparent);
    background: -webkit-linear-gradient(bottom, #000, transparent); }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-9 .elespare-posts-grid-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    display: block; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format {
    z-index: 1; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-img-wrapper::after {
    background: linear-gradient(to bottom, #000, transparent);
    background: -webkit-linear-gradient(bottom, #000, transparent); }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-10 .elespare-posts-grid-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
    padding: 0;
    border: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 1px;
    line-height: 1.5;
    display: block; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items {
    position: relative; }
    .elespare-grid-wrap .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links {
      top: auto;
      left: 30px;
      bottom: 22px;
      z-index: 4; }
      .elespare-grid-wrap .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links li.elespare-meta-category {
        margin: 0 2px 0 0; }
    .elespare-grid-wrap .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items .elespare-content-wrapper {
      position: relative;
      z-index: 1;
      width: calc(100% - 30px);
      margin-top: -20px;
      margin-left: 30px; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper {
    z-index: 3; }
    .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper::after {
      position: absolute;
      content: "";
      width: 100%;
      height: 28px;
      left: 0;
      bottom: -1px;
      background-color: #fff;
      -webkit-mask-image: url(/wp-content/plugins/elespare/dist/img/shape1.svg);
      mask-image: url(/wp-content/plugins/elespare/dist/img/shape1.svg);
      -webkit-mask-position: center center;
      mask-position: center center;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: cover;
      z-index: 4; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -5px;
    position: relative;
    z-index: 1; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-1 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -10px; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 68px;
    -webkit-mask-image: url(/wp-content/plugins/elespare/dist/img/shape2.svg);
    mask-image: url(/wp-content/plugins/elespare/dist/img/shape2.svg); }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -10px; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    -webkit-mask-image: url(/wp-content/plugins/elespare/dist/img/shape3.svg);
    mask-image: url(/wp-content/plugins/elespare/dist/img/shape3.svg); }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -10px; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 26px;
    -webkit-mask-image: url(/wp-content/plugins/elespare/dist/img/shape4.svg);
    mask-image: url(/wp-content/plugins/elespare/dist/img/shape4.svg); }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-5 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    -webkit-mask-image: url(/wp-content/plugins/elespare/dist/img/shape5.svg);
    mask-image: url(/wp-content/plugins/elespare/dist/img/shape5.svg); }
  .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-5 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -10px; }

.elespare-grid-wrap.has-no-background .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items {
  position: relative; }
  .elespare-grid-wrap.has-no-background .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links {
    left: 0;
    bottom: 0;
    width: 100%; }
  .elespare-grid-wrap.has-no-background .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items .elespare-content-wrapper {
    width: 100%;
    margin-top: 0;
    margin-left: 0; }

.elespare-grid-wrap.has-no-background .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
  display: none; }

.elespare-grid-wrap.has-no-background .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: 0; }

/* ==========Same height images========================== */
.elespare-grid-wrap.elespare-has-equal-height .elespare-img-wrapper {
  aspect-ratio: 3/2;
  overflow: hidden; }

.elespare-grid-wrap .grid-style-10 .elespare-posts-grid-post-items,
.elespare-grid-wrap .grid-style-9 .elespare-posts-grid-post-items,
.elespare-grid-wrap .grid-style-8 .elespare-posts-grid-post-items {
  aspect-ratio: 3/2;
  overflow: hidden; }

/* ==========Same height images========================== */
.elespare-grid-wrap.has-background .elespare-posts-grid-post-items {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-grid-wrap.has-background .grid-style-11 .elespare-posts-grid-post-items {
  box-shadow: none; }
  .elespare-grid-wrap.has-background .grid-style-11 .elespare-posts-grid-post-items .elespare-content-wrapper {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-12.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-11.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-10.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-9.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-8.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-7.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-6.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-5.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-3.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-2.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-1.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata {
  display: flex;
  align-items: center; }
  .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-12.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-11.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-10.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-9.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-8.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-7.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-6.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-5.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-3.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-2.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-1.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author {
    display: flex;
    align-items: center; }
    .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-12.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-11.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-10.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-9.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-8.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-7.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-6.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-5.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-3.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-2.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-1.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a {
      display: flex;
      align-items: center; }
      .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-12.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-11.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-10.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-9.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-8.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-7.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-6.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-5.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-3.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-2.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-1.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        line-height: 1;
        overflow: hidden;
        margin-right: 5px; }
        .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-12.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-11.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-10.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-9.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-8.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-7.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-6.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-5.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-3.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-2.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img, .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-1.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img {
          height: 100%;
          width: 100%;
          object-fit: cover; }

.elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-4.elespare-gravatar .elespare-posts-grid-post-items .elespare-img-wrapper {
  position: relative; }
  .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-4.elespare-gravatar .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-avatar-wrap {
    position: absolute;
    height: 30px;
    width: 30px;
    border: 3px solid;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    left: 15px;
    bottom: 0;
    transform: translateY(50%);
    z-index: 2; }
    .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-4.elespare-gravatar .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-avatar-wrap img {
      height: 100%;
      width: 100%;
      object-fit: cover; }

.elespare-grid-wrap.grid-layout.has-no-background .elespare-posts-wrap.grid-style-4 .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-avatar-wrap {
  border: none; }

.elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-4 .elespare-posts-grid-post-items .elespare-post-format {
  top: inherit;
  bottom: 10px; }

.elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
  height: 112px; }

.elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -15px; }

.elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
  height: 142px; }

.elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -15px; }

.elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -15px; }

.elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -20px; }

.elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
  height: 55px; }

.elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -15px; }

.elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
  height: 68px; }

.elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -10px; }

.elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -15px; }

.elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -20px; }

.elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
  height: 38px; }

.elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -15px; }

.elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
  height: 68px; }

.elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -10px; }

.elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -15px; }

.elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-top: -20px; }

.elementor-widget-post-grid {
  width: 100%; }

@container (max-width: 1024px) {
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 112px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 142px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 55px; }
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 68px; }
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -10px; }
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; } }

@container (max-width: 767px) {
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 112px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 142px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; } }

@container (max-width: 480px) {
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 40px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-img-wrapper:after {
    height: 68px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-2 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -10px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-3 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; }
  .elementor-grid-1 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-2 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-3 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-4 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper,
  .elementor-grid-5 .elespare-grid-wrap .elespare-posts-wrap.grid-style-12.shape-style-4 .elespare-posts-grid-post-items .elespare-content-wrapper {
    margin-top: -15px; } }

body.rtl .elespare-grid-wrap .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-grid-wrap .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format {
  left: 15px;
  right: auto; }

body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-12.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-11.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-10.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-9.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-8.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-7.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-6.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-5.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-3.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-2.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap, body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-1.elespare-gravatar .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata .post-author .elespare-avatar-wrap {
  margin-right: 0px;
  margin-left: 5px; }

body.rtl .elespare-grid-wrap.grid-layout .elespare-posts-wrap.grid-style-4.elespare-gravatar .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-avatar-wrap {
  left: auto;
  right: 15px; }

body.rtl .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul {
  right: 15px;
  left: auto;
  text-align: right; }

body.rtl .elespare-grid-wrap .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links {
  right: 30px;
  left: auto; }
  body.rtl .elespare-grid-wrap .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items .elespare-img-wrapper ul.elespare-cat-links li.elespare-meta-category {
    margin: 0 0 0 2px; }

body.rtl .elespare-grid-wrap .elespare-posts-wrap.grid-style-11 .elespare-posts-grid-post-items .elespare-content-wrapper {
  margin-right: 30px;
  margin-left: 0; }
@charset "UTF-8";
.elespare-posts-wrap ul.elespare-cat-links {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  line-height: 1;
  font-size: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 7px;
  row-gap: 7px; }
  .elespare-posts-wrap ul.elespare-cat-links li {
    display: inline-block;
    padding: 0 !important;
    font-size: 10px;
    opacity: 0.95; }
    .elespare-posts-wrap ul.elespare-cat-links li a {
      display: inline-block;
      padding: 5px 10px;
      line-height: 1 !important;
      letter-spacing: 0.35px;
      font-size: 12px; }
  .elespare-posts-wrap ul.elespare-cat-links li:hover {
    opacity: 1; }
  .elespare-posts-wrap ul.elespare-cat-links.none li a {
    padding: 0; }
    .elespare-posts-wrap ul.elespare-cat-links.none li a::after {
      content: "\2219";
      color: inherit;
      font-weight: bold;
      padding-block-end: 2px; }
  .elespare-posts-wrap ul.elespare-cat-links.none li:last-child a.elespare-categories::after {
    display: none; }
  .elespare-posts-wrap ul.elespare-cat-links.border li a {
    border-width: 1px;
    border-style: solid; }
  .elespare-posts-wrap ul.elespare-cat-links.underline li a {
    padding: 0;
    border: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 1px;
    line-height: 1.5;
    display: block; }

.elespare-posts-wrap .elespare-posts-timeline-post-items,
.elespare-posts-wrap .elespare-posts-trending-post-items,
.elespare-posts-wrap .elespare-posts-slider-post-items,
.elespare-posts-wrap .elespare-posts-express-post-items,
.elespare-posts-wrap .elespare-posts-masonry-post-items,
.elespare-posts-wrap .elespare-posts-carousel-post-items,
.elespare-posts-wrap .elespare-posts-full-post-items,
.elespare-posts-wrap .elespare-posts-tile-post-items,
.elespare-posts-wrap .elespare-posts-single-list-post-items,
.elespare-posts-wrap .elespare-posts-list-post-items,
.elespare-posts-wrap .elespare-posts-grid-post-items {
  overflow: hidden; }
  .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-express-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-full-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper,
  .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
    position: relative;
    display: block;
    line-height: 1;
    background: #dcdcdc;
    background: #efefef; }
    .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-express-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-full-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper img,
    .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper img {
      display: block;
      line-height: 1;
      margin: 0; }
    .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-express-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-full-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper ul,
    .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul {
      position: absolute;
      left: 15px;
      top: 15px; }
    .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-express-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-full-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper .elespare-post-format,
    .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format {
      position: absolute;
      height: 25px;
      left: 10px;
      top: 10px;
      width: 25px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: none; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper .elespare-post-format i,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format i {
        font-size: 11px;
        color: #fff; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format.elespare-border i:after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        width: 35px;
        height: 35px;
        border: 4px solid;
        border-color: #fff;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:before {
        position: relative;
        z-index: 1; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format.elespare-background i:after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        width: 35px;
        height: 35px;
        background-color: #fff;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box;
        z-index: 0; }
  .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper,
  .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-post-title,
    .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-post-title {
      margin: 0;
      font-weight: 600; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-post-title:last-child,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-post-title:last-child {
        margin-bottom: 0; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-post-title span,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-post-title span {
        display: inline-block; }
    .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata,
    .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata {
      margin: 0;
      font-size: 12px;
      font-weight: 400;
      display: flex;
      align-items: center;
      column-gap: 10px;
      row-gap: 5px;
      flex-wrap: wrap; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata span a,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata span a {
        display: flex;
        align-items: center; }
        .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata span a i,
        .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata span a i {
          margin-inline-end: 5px; }
        .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata span a svg,
        .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata span a svg {
          width: 12px;
          height: 12px;
          margin-inline-end: 5px; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata span.comment_count,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata span.comment_count {
        display: inline-flex;
        align-items: center; }
        .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i,
        .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata span.comment_count i {
          margin-inline-end: 5px; }
        .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg,
        .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata span.comment_count svg {
          width: 12px;
          height: 12px;
          margin-inline-end: 5px; }
    .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-cat-links:last-child,
    .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-cat-links:last-child {
      margin-bottom: 0; }
    .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-exceprt {
      font-weight: normal; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-exceprt p,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-exceprt p {
        margin: 0;
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 1.6em; }
        .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-exceprt p:last-child,
        .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-exceprt p:last-child {
          margin-bottom: 0; }
      .elespare-posts-wrap .elespare-posts-timeline-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-masonry-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-full-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn,
      .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-exceprt a.read-more-btn {
        color: inherit;
        display: block;
        font-size: .75em;
        font-weight: 700 !important;
        margin-top: 10px;
        opacity: .75; }

button.elespare-nav-carousel {
  display: none; }

button.elespare-nav-carousel.slick-arrow {
  display: block;
  outline: none; }

.elespare-posts-wrap button.elespare-nav-carousel.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  height: auto;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 0;
  width: 32px;
  height: 32px;
  padding: 7px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7; }
  .elespare-posts-wrap button.elespare-nav-carousel.slick-arrow i {
    font-size: 16px;
    color: #222;
    line-height: normal; }
  .elespare-posts-wrap button.elespare-nav-carousel.slick-arrow:before {
    display: none; }
  .elespare-posts-wrap button.elespare-nav-carousel.slick-arrow:hover {
    opacity: 1; }

.elespare-posts-wrap button.slick-prev.elespare-nav-carousel.slick-arrow {
  left: 0; }

.elespare-posts-wrap button.slick-next.elespare-nav-carousel.slick-arrow {
  right: 0; }

.elespare-posts-wrap .slick-dots {
  list-style: none;
  display: block;
  text-align: center;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%; }
  .elespare-posts-wrap .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    margin: 0;
    padding: 0;
    cursor: pointer; }
    .elespare-posts-wrap .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 10px;
      cursor: pointer; }
    .elespare-posts-wrap .slick-dots li button:hover,
    .elespare-posts-wrap .slick-dots li button:focus {
      outline: none; }
    .elespare-posts-wrap .slick-dots li button:before {
      position: absolute;
      top: 0;
      left: 0;
      content: "•";
      width: 20px;
      height: 20px;
      font-family: "slick";
      font-size: 26px;
      line-height: 20px;
      text-align: center;
      color: black;
      opacity: 0.25;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .elespare-posts-wrap .slick-dots li button:hover:before,
    .elespare-posts-wrap .slick-dots li button:focus:before {
      opacity: 1; }
    .elespare-posts-wrap .slick-dots li.slick-active button:before {
      opacity: 1; }

.elespare-posts-wrap.show-on-hover button.elespare-nav-carousel.slick-arrow {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }

.elespare-posts-wrap.show-on-hover:hover button.elespare-nav-carousel.slick-arrow {
  opacity: 0.7;
  visibility: visible;
  -webkit-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1); }
  .elespare-posts-wrap.show-on-hover:hover button.elespare-nav-carousel.slick-arrow:hover {
    opacity: 1; }

.elespare-widget-title-section.title-none .elespare-widget-title {
  margin: 0;
  margin-bottom: 20px; }

.elespare-widget-title-section.title-style-1 .elespare-widget-title {
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-bottom: 10px; }
  .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-before {
    display: inline-block;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0; }
  .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
    display: inline-block;
    content: "";
    width: 50px;
    height: 3px;
    background-color: #bb191a;
    position: absolute;
    bottom: 0;
    left: 0; }

.elespare-widget-title-section.title-style-2 .elespare-widget-title {
  margin: 0; }
  .elespare-widget-title-section.title-style-2 .elespare-widget-title span.elespare-section-title {
    padding: 5px 0px 10px;
    display: inline-block;
    position: relative;
    margin: 5px 0 20px;
    line-height: 1.5; }
  .elespare-widget-title-section.title-style-2 .elespare-widget-title span.elespare-section-title:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #bb1919; }

.elespare-widget-title-section.title-style-3 .elespare-widget-title {
  position: relative;
  margin: 10px 0 20px; }
  .elespare-widget-title-section.title-style-3 .elespare-widget-title .elespare-section-title {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 5px 10px 7px 0;
    letter-spacing: 1px;
    border-bottom: 2px solid #ffbf3f; }
  .elespare-widget-title-section.title-style-3 .elespare-widget-title .elespare-section-title-after {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: #898989;
    left: 0;
    bottom: 0; }

.elespare-widget-title-section.title-style-4 .elespare-widget-title {
  line-height: 1.2;
  margin: 10px 0 15px;
  padding: 0;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center; }
  .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
    background: #bb191a;
    height: 3px;
    margin: 0 10px 0 0;
    flex: 1 0 10px;
    max-width: 30px;
    min-width: 30px; }
  .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
    background: #000;
    height: 3px;
    margin: 0 0 0 10px;
    flex: 1 0 60px;
    min-width: 30px; }

.elespare-widget-title-section.title-style-5 .elespare-widget-title {
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-bottom: 5px;
  display: flex;
  align-items: center; }
  .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
    display: inline-block;
    content: "";
    height: 3px;
    background-color: #000;
    order: 3;
    flex: 1 0 60px;
    min-width: 30px; }
  .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
    display: inline-block;
    content: "";
    width: 50px;
    height: 3px;
    background-color: #bb191a;
    order: 2; }
  .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
    order: 1;
    margin: 0 10px 0 0; }

.elespare-widget-title-section.title-style-6 .elespare-widget-title {
  line-height: 1.2;
  margin: 10px 0 15px;
  padding: 0;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center; }
  .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
    background: #000;
    height: 2px;
    margin: 0 0 0 10px;
    flex: 1 0 60px;
    min-width: 30px; }

.elespare-widget-title-section.title-style-7 .elespare-widget-title {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  margin-top: 0;
  margin-bottom: 20px; }
  .elespare-widget-title-section.title-style-7 .elespare-widget-title .elespare-section-title-before,
  .elespare-widget-title-section.title-style-7 .elespare-widget-title .elespare-section-title-after {
    color: #bb191a;
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    pointer-events: none; }
  .elespare-widget-title-section.title-style-7 .elespare-widget-title .elespare-section-title-before {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid; }
  .elespare-widget-title-section.title-style-7 .elespare-widget-title .elespare-section-title-after {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    border-right: 2px solid;
    border-bottom: 2px solid; }

.elespare-widget-title-section.title-style-8 .elespare-widget-title {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 20px; }
  .elespare-widget-title-section.title-style-8 .elespare-widget-title .elespare-section-title {
    background-color: #000;
    color: #fff;
    padding: 5px 12px;
    line-height: 1.4;
    position: relative;
    display: inline-block; }
    .elespare-widget-title-section.title-style-8 .elespare-widget-title .elespare-section-title:before {
      content: "";
      position: absolute;
      top: 100%;
      left: 10px;
      margin: auto;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 7px 0 7px;
      border-color: #000 transparent transparent transparent; }

.elespare-widget-title-section.title-style-9 .elespare-widget-title {
  font-size: 14px;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid;
  border-bottom-color: #000; }
  .elespare-widget-title-section.title-style-9 .elespare-widget-title .elespare-section-title {
    background-color: #000;
    color: #fff;
    padding: 5px 12px;
    line-height: 1.4;
    position: relative;
    display: inline-block; }

.elespare-widget-title-section.title-style-10 .elespare-widget-title {
  position: relative;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px; }
  .elespare-widget-title-section.title-style-10 .elespare-widget-title .elespare-section-title {
    display: inline-block;
    position: relative;
    padding: 0 0 0 12px; }
    .elespare-widget-title-section.title-style-10 .elespare-widget-title .elespare-section-title:before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 15px;
      background-color: #bb191a; }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-none {
  text-align: left; }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-1 {
  text-align: left; }
  .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
    left: 0;
    transform: translateX(0); }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-2 {
  text-align: left; }
  .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-2 span.elespare-section-title:after {
    left: 0;
    transform: translateX(0); }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-3 {
  text-align: left; }
  .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-3 .elespare-section-title {
    padding: 5px 10px 7px 0; }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-4 {
  text-align: left; }
  .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
    margin: 0 10px 0 0;
    flex: 1 0 10px; }
  .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
    margin: 0 0 0 10px;
    flex: 1 0 60px; }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-5 {
  text-align: left; }
  .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title {
    justify-content: flex-start; }
    .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
      order: 3;
      flex: 1 0 60px;
      min-width: 30px; }
    .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
      order: 2;
      width: 50px;
      height: 3px; }
    .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
      order: 1;
      margin: 0 10px 0 0; }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-6 {
  text-align: left; }
  .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
    margin: 0 0 0 10px;
    flex: 1 0 60px;
    min-width: 30px; }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-7 {
  text-align: left; }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-8 {
  text-align: left; }
  .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-8 .elespare-section-title:before {
    left: 10px;
    transform: translateX(0); }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-9 {
  text-align: left; }

.elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-10 {
  text-align: left; }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-none {
  text-align: center; }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-1 {
  text-align: center; }
  .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
    left: 50%;
    transform: translateX(-50%); }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-2 {
  text-align: center; }
  .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-2 span.elespare-section-title:after {
    left: 50%;
    transform: translateX(-50%); }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-3 {
  text-align: center; }
  .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-3 .elespare-section-title {
    padding: 5px 10px 7px 10px; }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-4 {
  text-align: center; }
  .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
    margin: 0 10px;
    flex: 0 0 30px; }
  .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
    margin: 0 10px;
    flex: 0 0 30px; }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-5 {
  text-align: center; }
  .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title {
    justify-content: center; }
    .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
      order: 3;
      margin: 0 10px;
      flex: 0 0 50px; }
    .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
      order: 1;
      max-width: 50px;
      min-width: 50px;
      margin: 0 10px;
      flex: 0 0 50px; }
    .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
      order: 2;
      margin: 0; }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-6 {
  text-align: center; }
  .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-before {
    background: #000;
    height: 2px;
    max-width: 30px;
    min-width: 30px;
    margin: 0 10px;
    flex: 0 0 30px; }
  .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
    margin: 0 10px;
    flex: 0 0 30px; }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-7 {
  text-align: center; }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-8 {
  text-align: center; }
  .elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-8 .elespare-section-title:before {
    left: 50%;
    transform: translateX(-50%); }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-9 {
  text-align: center; }

.elementor-element.elespare-section-title-elespare-center .elespare-widget-title-section.title-style-10 {
  text-align: center; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-none {
  text-align: right; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-1 {
  text-align: right; }
  .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
    left: inherit;
    right: 0; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-2 {
  text-align: right; }
  .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-2 span.elespare-section-title:after {
    left: inherit;
    right: 0; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-3 {
  text-align: right; }
  .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-3 .elespare-section-title {
    padding: 5px 0 7px 10px; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-4 {
  text-align: right; }
  .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title {
    flex-direction: row-reverse; }
    .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
      margin: 0 0 0 10px; }
    .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
      margin: 0 10px 0 0; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-5 {
  text-align: right; }
  .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title {
    justify-content: flex-end; }
    .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
      order: 1; }
    .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
      order: 2;
      max-width: 50px;
      min-width: 50px;
      flex: 0 0 50px; }
    .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
      order: 3;
      margin: 0 0 0 10px; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-6 {
  text-align: right; }
  .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-6 .elespare-widget-title {
    flex-direction: row-reverse; }
    .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
      margin: 0 10px 0 0; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-7 {
  text-align: right; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-8 {
  text-align: right; }
  .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-8 .elespare-section-title:before {
    left: inherit;
    right: 10px; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-9 {
  text-align: right; }

.elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-10 {
  text-align: right; }
  .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-10 .elespare-section-title {
    padding: 0 12px 0 0; }
    .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-10 .elespare-section-title:before {
      left: inherit;
      right: 0;
      top: 50%;
      transform: translateY(-50%); }

@media (max-width: 1024px) {
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-none {
    text-align: left; }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-1 {
    text-align: left; }
    .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
      left: 0;
      transform: translateX(0); }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-2 {
    text-align: left; }
    .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-2 span.elespare-section-title:after {
      left: 0;
      transform: translateX(0); }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-3 {
    text-align: left; }
    .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-3 .elespare-section-title {
      padding: 5px 10px 7px 0; }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-4 {
    text-align: left; }
    .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-4 .elespare-widget-title {
      flex-direction: row; }
      .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
        margin: 0 10px 0 0;
        flex: 1 0 10px; }
      .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
        margin: 0 0 0 10px;
        flex: 1 0 60px; }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-5 {
    text-align: left; }
    .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title {
      justify-content: flex-start; }
      .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
        order: 3;
        flex: 1 0 60px;
        min-width: 30px; }
      .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
        order: 2;
        width: 50px;
        height: 3px; }
      .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
        order: 1;
        margin: 0 10px 0 0; }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-6 {
    text-align: left; }
    .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
      margin: 0 0 0 10px;
      flex: 1 0 60px;
      min-width: 30px; }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-7 {
    text-align: left; }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-8 {
    text-align: left; }
    .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-8 .elespare-section-title:before {
      left: 10px;
      transform: translateX(0); }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-9 {
    text-align: left; }
  .elementor-element.elespare-section-title-tablet-elespare-left .elespare-widget-title-section.title-style-10 {
    text-align: left; }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-none {
    text-align: center; }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-1 {
    text-align: center; }
    .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
      left: 50%;
      transform: translateX(-50%); }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-2 {
    text-align: center; }
    .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-2 span.elespare-section-title:after {
      left: 50%;
      transform: translateX(-50%); }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-3 {
    text-align: center; }
    .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-3 .elespare-section-title {
      padding: 5px 10px 7px 10px; }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-4 {
    text-align: center; }
    .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
      margin: 0 10px;
      flex: 0 0 30px; }
    .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
      margin: 0 10px;
      flex: 0 0 30px; }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-5 {
    text-align: center; }
    .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title {
      justify-content: center; }
      .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
        order: 3;
        margin: 0 10px;
        flex: 0 0 50px; }
      .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
        order: 1;
        max-width: 50px;
        min-width: 50px;
        margin: 0 10px;
        flex: 0 0 50px; }
      .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
        order: 2;
        margin: 0; }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-6 {
    text-align: center; }
    .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-before {
      background: #000;
      height: 2px;
      max-width: 30px;
      min-width: 30px;
      margin: 0 10px;
      flex: 0 0 30px; }
    .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
      margin: 0 10px;
      flex: 0 0 30px; }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-7 {
    text-align: center; }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-8 {
    text-align: center; }
    .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-8 .elespare-section-title:before {
      left: 50%;
      transform: translateX(-50%); }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-9 {
    text-align: center; }
  .elementor-element.elespare-section-title-tablet-elespare-center .elespare-widget-title-section.title-style-10 {
    text-align: center; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-none {
    text-align: right; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-1 {
    text-align: right; }
    .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
      left: inherit;
      right: 0; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-2 {
    text-align: right; }
    .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-2 span.elespare-section-title:after {
      left: inherit;
      right: 0; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-3 {
    text-align: right; }
    .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-3 .elespare-section-title {
      padding: 5px 0 7px 10px; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-4 {
    text-align: right; }
    .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title {
      flex-direction: row-reverse; }
      .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
        margin: 0 0 0 10px; }
      .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
        margin: 0 10px 0 0; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-5 {
    text-align: right; }
    .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title {
      justify-content: flex-end; }
      .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
        order: 1; }
      .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
        order: 2;
        max-width: 50px;
        min-width: 50px;
        flex: 0 0 50px; }
      .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
        order: 3;
        margin: 0 0 0 10px; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-6 {
    text-align: right; }
    .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-6 .elespare-widget-title {
      flex-direction: row-reverse; }
      .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
        margin: 0 10px 0 0; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-7 {
    text-align: right; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-8 {
    text-align: right; }
    .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-8 .elespare-section-title:before {
      left: inherit;
      right: 10px; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-9 {
    text-align: right; }
  .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-10 {
    text-align: right; }
    .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-10 .elespare-section-title {
      padding: 0 12px 0 0; }
      .elementor-element.elespare-section-title-tablet-elespare-right .elespare-widget-title-section.title-style-10 .elespare-section-title:before {
        left: inherit;
        right: 0;
        top: 50%;
        transform: translateY(-50%); } }

@media (max-width: 767px) {
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-none {
    text-align: left; }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-1 {
    text-align: left; }
    .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
      left: 0;
      transform: translateX(0); }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-2 {
    text-align: left; }
    .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-2 span.elespare-section-title:after {
      left: 0;
      transform: translateX(0); }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-3 {
    text-align: left; }
    .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-3 .elespare-section-title {
      padding: 5px 10px 7px 0; }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-4 {
    text-align: left; }
    .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-4 .elespare-widget-title {
      flex-direction: row; }
      .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
        margin: 0 10px 0 0;
        flex: 1 0 10px; }
      .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
        margin: 0 0 0 10px;
        flex: 1 0 60px; }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-5 {
    text-align: left; }
    .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title {
      justify-content: flex-start; }
      .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
        order: 3;
        flex: 1 0 60px;
        min-width: 30px; }
      .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
        order: 2;
        width: 50px;
        height: 3px; }
      .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
        order: 1;
        margin: 0 10px 0 0; }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-6 {
    text-align: left; }
    .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
      margin: 0 0 0 10px;
      flex: 1 0 60px;
      min-width: 30px; }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-7 {
    text-align: left; }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-8 {
    text-align: left; }
    .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-8 .elespare-section-title:before {
      left: 10px;
      transform: translateX(0); }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-9 {
    text-align: left; }
  .elementor-element.elespare-section-title-mobile-elespare-left .elespare-widget-title-section.title-style-10 {
    text-align: left; }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-none {
    text-align: center; }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-1 {
    text-align: center; }
    .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
      left: 50%;
      transform: translateX(-50%); }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-2 {
    text-align: center; }
    .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-2 span.elespare-section-title:after {
      left: 50%;
      transform: translateX(-50%); }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-3 {
    text-align: center; }
    .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-3 .elespare-section-title {
      padding: 5px 10px 7px 10px; }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-4 {
    text-align: center; }
    .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
      margin: 0 10px;
      flex: 0 0 30px; }
    .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
      margin: 0 10px;
      flex: 0 0 30px; }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-5 {
    text-align: center; }
    .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title {
      justify-content: center; }
      .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
        order: 3;
        margin: 0 10px;
        flex: 0 0 50px; }
      .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
        order: 1;
        max-width: 50px;
        min-width: 50px;
        margin: 0 10px;
        flex: 0 0 50px; }
      .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
        order: 2;
        margin: 0; }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-6 {
    text-align: center; }
    .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-before {
      background: #000;
      height: 2px;
      max-width: 30px;
      min-width: 30px;
      margin: 0 10px;
      flex: 0 0 30px; }
    .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
      margin: 0 10px;
      flex: 0 0 30px; }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-7 {
    text-align: center; }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-8 {
    text-align: center; }
    .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-8 .elespare-section-title:before {
      left: 50%;
      transform: translateX(-50%); }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-9 {
    text-align: center; }
  .elementor-element.elespare-section-title-mobile-elespare-center .elespare-widget-title-section.title-style-10 {
    text-align: center; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-none {
    text-align: right; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-1 {
    text-align: right; }
    .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-1 .elespare-widget-title .elespare-section-title-after {
      left: inherit;
      right: 0;
      transform: translateX(0); }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-2 {
    text-align: right; }
    .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-2 span.elespare-section-title:after {
      left: inherit;
      right: 0; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-3 {
    text-align: right; }
    .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-3 .elespare-section-title {
      padding: 5px 0 7px 10px; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-4 {
    text-align: right; }
    .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title {
      flex-direction: row-reverse; }
      .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
        margin: 0 0 0 10px; }
      .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-after {
        margin: 0 10px 0 0; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-5 {
    text-align: right; }
    .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title {
      justify-content: flex-end; }
      .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-before {
        order: 1; }
      .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title-after {
        order: 2;
        max-width: 50px;
        min-width: 50px;
        flex: 0 0 50px; }
      .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title .elespare-section-title {
        order: 3;
        margin: 0 0 0 10px; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-6 {
    text-align: right; }
    .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-6 .elespare-widget-title {
      flex-direction: row-reverse; }
      .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
        margin: 0 10px 0 0; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-7 {
    text-align: right; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-8 {
    text-align: right; }
    .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-8 .elespare-section-title:before {
      left: inherit;
      right: 10px; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-9 {
    text-align: right; }
  .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-10 {
    text-align: right; }
    .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-10 .elespare-section-title {
      padding: 0 12px 0 0; }
      .elementor-element.elespare-section-title-mobile-elespare-right .elespare-widget-title-section.title-style-10 .elespare-section-title:before {
        left: inherit;
        right: 0;
        top: 50%;
        transform: translateY(-50%); } }

.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a {
  overflow: hidden;
  display: block;
  height: 100%;
  width: 100%; }
  .elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img {
    transition: transform 0.3s ease; }

.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img {
  transform: scale(1.05); }

.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a {
  overflow: hidden;
  display: block;
  height: 100%;
  width: 100%; }
  .elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img {
    transition: transform 0.5s ease; }

.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"]:hover a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"]:hover a img {
  transform: scale(1.2) rotate(5deg); }

.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img {
  transition: filter 0.5s ease;
  filter: grayscale(100%); }

.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-single"]:hover a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-grayscale [class*="elespare-posts-"]:hover a img {
  filter: grayscale(0); }

.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a {
  overflow: hidden;
  display: block;
  height: 100%;
  width: 100%; }
  .elespare-trending-wrapper .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-trending-wrapper .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-timeline-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-timeline-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-tabs-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-tabs-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-slider-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-slider-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-masonry-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-masonry-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-express-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-express-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-carousel-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-carousel-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-full-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-full-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-tile-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-tile-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img,
  .elespare-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img {
    transition: transform 2s, filter 1.5s ease-in-out;
    transform-origin: center center;
    filter: brightness(100%); }

.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-trending-wrapper .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-banner-two-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-banner-one-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-timeline-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-single-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-tabs-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-slider-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-masonry-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-express-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-express-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-carousel-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-full-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-list-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-single"]:hover a img,
.elespare-grid-wrap .elespare-posts-wrap.elespare-image-brightness [class*="elespare-posts-"]:hover a img {
  filter: brightness(150%); }

[class^="elespare-icons-"]:before,
[class*=" elespare-icons-"]:before {
  width: auto;
  margin: 0; }

.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0px; }

.elementor-column-gap-default > .elementor-column .elementor-widget-container {
  padding: 10px; }
.elespare-list-wrap {
  container-type: inline-size; }
  .elespare-list-wrap .elespare-posts-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr); }
    .elespare-list-wrap .elespare-posts-wrap .elespare-posts-list-post-items {
      display: flex;
      align-items: center;
      min-height: 120px; }
      .elespare-list-wrap .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper {
        max-width: 123px;
        width: 45%;
        position: relative;
        align-self: flex-start;
        aspect-ratio: 1/1;
        overflow: hidden; }
        .elespare-list-wrap .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper a {
          display: block;
          height: 100%;
          width: 100%; }
          .elespare-list-wrap .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper a img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin: 0; }
      .elespare-list-wrap .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper {
        width: 100%;
        padding: 10px; }
        .elespare-list-wrap .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper .elespare-post-title {
          font-size: 14px; }
      .elespare-list-wrap .elespare-posts-wrap .elespare-posts-list-post-items .elespare-img-wrapper + .elespare-content-wrapper {
        flex: 1; }
    .elespare-list-wrap .elespare-posts-wrap a {
      text-decoration: none; }

.elespare-list-wrap .elespare-posts-wrap.list-style-1 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
  padding: 0; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-1 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
    content: "\2219";
    color: inherit;
    font-weight: bold;
    padding: 0 0 0 2px; }

.elespare-list-wrap .elespare-posts-wrap.list-style-1 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
  display: none; }

.elespare-list-wrap .elespare-posts-wrap.list-style-2 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
  padding: 0;
  border: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 1px;
  line-height: 1.5;
  display: block; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-2 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
    display: none; }

.elespare-list-wrap .elespare-posts-wrap.list-style-3 .elespare-posts-list-post-items {
  flex-direction: row-reverse; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-3 .elespare-posts-list-post-items .elespare-content-wrapper {
    text-align: right;
    align-items: flex-end; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-3 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
      padding: 0; }
      .elespare-list-wrap .elespare-posts-wrap.list-style-3 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
        content: "\2219";
        color: inherit;
        font-weight: bold;
        padding: 0 0 0 2px; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-3 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
      display: none; }

.elespare-list-wrap .elespare-posts-wrap.list-style-4 .elespare-posts-list-post-items {
  flex-direction: row-reverse; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-4 .elespare-posts-list-post-items .elespare-content-wrapper {
    text-align: right;
    align-items: flex-end; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-4 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
      padding: 0;
      border: none;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      padding-bottom: 1px;
      line-height: 1.5;
      display: block; }
      .elespare-list-wrap .elespare-posts-wrap.list-style-4 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
        display: none; }

.elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:first-child, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:first-child {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  grid-row-end: span 2; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:first-child .elespare-content-wrapper, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:first-child .elespare-content-wrapper {
    position: relative;
    width: 100%;
    padding: 15px;
    justify-self: end;
    justify-content: flex-end; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:first-child .elespare-content-wrapper::after, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:first-child .elespare-content-wrapper::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
      z-index: 0; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:first-child .elespare-content-wrapper > *, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:first-child .elespare-content-wrapper > * {
      position: relative;
      z-index: 1; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:first-child .elespare-img-wrapper, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:first-child .elespare-img-wrapper {
    height: 100% !important;
    width: 100% !important;
    max-width: none !important;
    position: absolute !important;
    left: 0;
    bottom: 0; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img,
    .elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:first-child .elespare-img-wrapper a, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img,
    .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:first-child .elespare-img-wrapper a {
      display: block;
      height: 100%; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img {
      width: 100%;
      object-fit: cover; }

.elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
  padding: 0; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
    content: "\2219";
    color: inherit;
    font-weight: bold;
    padding: 0 0 0 2px; }

.elespare-list-wrap .elespare-posts-wrap.list-style-7 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after, .elespare-list-wrap .elespare-posts-wrap.list-style-5 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
  display: none; }

.elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:first-child, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:first-child {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  grid-row-end: span 2; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:first-child .elespare-content-wrapper, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:first-child .elespare-content-wrapper {
    position: relative;
    padding: 15px;
    justify-self: end;
    justify-content: flex-end;
    width: 100%; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:first-child .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:first-child .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
      padding: 3px 7px;
      border-width: 1px;
      border-style: solid;
      display: block; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:first-child .elespare-content-wrapper > *, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:first-child .elespare-content-wrapper > * {
      position: relative;
      z-index: 1; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:first-child .elespare-content-wrapper::after, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:first-child .elespare-content-wrapper::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
      z-index: 0; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:first-child .elespare-img-wrapper, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:first-child .elespare-img-wrapper {
    height: 100% !important;
    width: 100% !important;
    max-width: none !important;
    position: absolute !important;
    left: 0;
    bottom: 0; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img,
    .elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:first-child .elespare-img-wrapper a, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img,
    .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:first-child .elespare-img-wrapper a {
      display: block;
      height: 100%; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img {
      width: 100%;
      object-fit: cover; }

.elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
  padding: 0;
  border: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 1px;
  line-height: 1.5;
  display: block; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-8 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after, .elespare-list-wrap .elespare-posts-wrap.list-style-6 .elespare-posts-list-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
    display: none; }

.elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items:first-child {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  grid-row-end: span 2; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items:first-child .elespare-content-wrapper {
    position: relative;
    padding: 15px;
    justify-self: end;
    justify-content: flex-end;
    width: 100%; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items:first-child .elespare-content-wrapper::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
      z-index: 0; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items:first-child .elespare-content-wrapper > * {
      position: relative;
      z-index: 1; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items:first-child .elespare-img-wrapper {
    height: 100% !important;
    max-width: none !important;
    width: 100% !important;
    position: absolute !important;
    left: 0;
    bottom: 0; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img,
    .elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items:first-child .elespare-img-wrapper a {
      display: block;
      height: 100%; }
    .elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items:first-child .elespare-img-wrapper img {
      width: 100%;
      object-fit: cover; }

.elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
  padding: 0;
  border: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 1px;
  line-height: 1.5;
  display: block; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-9 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
    display: none; }

.elespare-list-wrap .elespare-posts-wrap.list-style-10 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
  padding: 0; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-10 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
    content: "\2219";
    color: inherit;
    font-weight: bold;
    padding: 0 0 0 2px; }

.elespare-list-wrap .elespare-posts-wrap.list-style-10 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
  display: none; }

.elespare-list-wrap .elespare-posts-wrap.list-style-11 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
  padding: 0;
  border: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 1px;
  line-height: 1.5;
  display: block; }
  .elespare-list-wrap .elespare-posts-wrap.list-style-11 .elespare-posts-list-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
    display: none; }

.elespare-list-wrap.has-background .elespare-posts-wrap .elespare-posts-list-post-items {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata {
  display: flex;
  align-items: center; }
  .elespare-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata .post-author {
    display: flex;
    align-items: center; }
    .elespare-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata .post-author a {
      display: flex;
      align-items: center; }
      .elespare-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        line-height: 1;
        overflow: hidden;
        margin-right: 5px; }
        .elespare-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img {
          height: 100%;
          width: 100%;
          object-fit: cover; }

.elespare-list-wrap .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper {
  text-align: left; }

.elementor-widget-post-list {
  width: 100%; }

@container (max-width: 1050px) {
  .elespare-list-wrap .elespare-posts-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr); } }

@container (max-width: 600px) {
  .elespare-list-wrap .elespare-posts-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr); } }

body.rtl .elespare-list-wrap .elespare-posts-wrap .elespare-posts-list-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-list-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
  margin-right: 0px; }

body.rtl .elespare-posts-wrap.list-style-3 .elespare-posts-list-post-items .elespare-content-wrapper, body.rtl .elespare-posts-wrap.list-style-4 .elespare-posts-list-post-items .elespare-content-wrapper {
  text-align: left; }
.list-layout.has-no-background .elespare-posts-wrap .elespare-content-wrapper {
  padding: 0 15px; }

.elespare-single-list-wrap {
  container-type: inline-size; }
  .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden; }
    .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper {
      align-self: flex-start;
      width: 50%;
      overflow: hidden; }
      .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
        .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper a img {
          height: 100%;
          width: 100%;
          object-fit: cover; }
    .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper {
      width: 50%;
      padding: 15px;
      align-self: center; }
      .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-exceprt p:last-child {
        margin-bottom: 0; }
  .elespare-single-list-wrap .elespare-posts-wrap a {
    text-decoration: none; }

.elespare-posts-wrap.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) ul.elespare-cat-links li {
  margin-block-end: 0px;
  margin-inline-end: 0px;
  margin-block-start: 0px;
  margin-inline-start: 0px; }

.elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-right .elespare-posts-single-list-post-items {
  flex-direction: row-reverse; }
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-right .elespare-posts-single-list-post-items .elespare-img-wrapper .elespare-post-format {
    left: 10px;
    right: unset; }
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper {
    text-align: right;
    align-items: flex-end; }
    .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata {
      justify-content: flex-end; }

.elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) {
  flex-direction: row-reverse; }
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-img-wrapper .elespare-post-format {
    left: 10px;
    right: unset; }
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper {
    text-align: right;
    align-items: flex-end; }
    .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper .elespare-metadata {
      justify-content: flex-end; }

.elespare-single-list-wrap .elespare-posts-wrap.single-list-style-2 .elespare-posts-single-list-post-items .elespare-img-wrapper ul.elespare-cat-links {
  top: inherit;
  bottom: 10px;
  left: 15px;
  width: 100%;
  margin-bottom: 0 !important; }

.elespare-single-list-wrap .elespare-posts-wrap.single-list-style-2.elespare-layout-right .elespare-posts-single-list-post-items .elespare-img-wrapper ul.elespare-cat-links {
  right: 15px;
  left: unset;
  justify-content: flex-end; }

.elespare-single-list-wrap .elespare-posts-wrap.single-list-style-2.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-img-wrapper ul.elespare-cat-links {
  right: 15px;
  left: unset;
  justify-content: flex-end; }

.elespare-posts-wrap.single-list-style-3 .elespare-posts-single-list-post-items .elespare-img-wrapper ul {
  left: 15px;
  top: 15px; }

.elespare-posts-wrap.single-list-style-3.elespare-layout-right .elespare-posts-single-list-post-items .elespare-img-wrapper ul {
  top: 15px;
  right: 15px;
  left: unset;
  justify-content: flex-end; }

.elespare-posts-wrap.single-list-style-3.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-img-wrapper ul {
  top: 15px;
  right: 15px;
  left: unset;
  justify-content: flex-end; }

.elespare-single-list-wrap.has-background .single-list-style-4 .elespare-posts-single-list-post-items {
  align-items: flex-end;
  box-shadow: none; }
  .elespare-single-list-wrap.has-background .single-list-style-4 .elespare-posts-single-list-post-items .elespare-content-wrapper {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-left .elespare-posts-single-list-post-items .elespare-content-wrapper {
  position: relative;
  z-index: 1;
  margin-left: -30px;
  align-self: flex-end; }

.elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper {
  position: relative;
  z-index: 1;
  margin-right: -30px;
  align-self: flex-end; }
  .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata {
    justify-content: flex-end; }

.elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items .elespare-content-wrapper {
  position: relative;
  z-index: 1;
  margin-left: -30px;
  align-self: flex-end; }

.elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper {
  position: relative;
  z-index: 1;
  margin-right: -30px; }
  .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper .elespare-metadata {
    justify-content: flex-end; }

.elespare-single-list-wrap.has-background .elespare-posts-single-list-post-items {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-single-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata {
  display: flex;
  align-items: center; }
  .elespare-single-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata .post-author {
    display: flex;
    align-items: center; }
    .elespare-single-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata .post-author a {
      display: flex;
      align-items: center; }
      .elespare-single-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        overflow: hidden;
        line-height: 1;
        margin-right: 5px; }
        .elespare-single-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img {
          height: 100%;
          width: 100%;
          object-fit: cover; }

/* ==========Same height images========================== */
.elespare-single-list-wrap.elespare-has-equal-height .elespare-posts-single-list-post-items .elespare-img-wrapper {
  aspect-ratio: 3/2;
  overflow: hidden; }

/* ==========Same height images========================== */
/* ==========Same height images inside columns========================== */
.elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper {
  text-align: left; }

.elespare-single-list-wrap.has-no-background .elespare-posts-wrap.single-list-style-4.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper, .elespare-single-list-wrap.has-no-background .elespare-posts-wrap.single-list-style-4.elespare-layout-left .elespare-posts-single-list-post-items .elespare-content-wrapper, .elespare-single-list-wrap.has-no-background .elespare-posts-wrap.single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items .elespare-content-wrapper {
  margin: 0; }

.elespare-single-list-wrap.has-no-background .elespare-posts-wrap.single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper {
  margin: 0; }

.elementor-widget-post-single-column {
  width: 100%; }

/* ==========Same height images inside columns========================== */
@container (max-width: 480px) {
  .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper {
    width: 100%; }
  .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper {
    width: 100%; }
  .elespare-single-list-wrap .elespare-layout-right .elespare-content-wrapper {
    text-align: left; }
    .elespare-single-list-wrap .elespare-layout-right .elespare-content-wrapper .elespare-metadata {
      justify-content: flex-start; }
  .elespare-single-list-wrap .elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper {
    text-align: left; }
    .elespare-single-list-wrap .elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper .elespare-metadata {
      justify-content: flex-start; }
  .elespare-single-list-wrap.has-background .single-list-style-4 .elespare-posts-single-list-post-items {
    align-items: flex-end;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }
    .elespare-single-list-wrap.has-background .single-list-style-4 .elespare-posts-single-list-post-items .elespare-content-wrapper {
      box-shadow: none; }
  .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-left .elespare-posts-single-list-post-items .elespare-content-wrapper {
    position: relative;
    z-index: 1;
    margin-left: 0px;
    align-self: flex-end; }
  .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper {
    position: relative;
    z-index: 1;
    margin-right: 0px;
    align-self: flex-end; }
    .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata {
      justify-content: flex-end; }
  .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items .elespare-content-wrapper {
    position: relative;
    z-index: 1;
    margin-left: 0px;
    align-self: flex-end; }
  .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper {
    position: relative;
    z-index: 1;
    margin-right: 0px; }
    .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper .elespare-metadata {
      justify-content: flex-end; } }

body.rtl .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-single-list-wrap .elespare-posts-wrap .elespare-posts-single-list-post-items .elespare-img-wrapper .elespare-post-format {
  left: 10px;
  right: unset; }

body.rtl .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-right .elespare-posts-single-list-post-items .elespare-img-wrapper .elespare-post-format {
  right: 10px;
  left: unset; }

body.rtl .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper {
  text-align: left; }
  body.rtl .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper .elespare-metadata {
    justify-content: flex-start; }

body.rtl .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-img-wrapper .elespare-post-format {
  right: 10px;
  left: unset; }

body.rtl .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper {
  text-align: left; }
  body.rtl .elespare-single-list-wrap .elespare-posts-wrap.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper .elespare-metadata {
    justify-content: flex-start; }

body.rtl .elespare-single-list-wrap .elespare-posts-wrap.single-list-style-2 .elespare-posts-single-list-post-items .elespare-img-wrapper ul.elespare-cat-links {
  left: unset;
  right: 15px; }

body.rtl .elespare-single-list-wrap .elespare-posts-wrap.single-list-style-2.elespare-layout-right .elespare-posts-single-list-post-items .elespare-img-wrapper ul.elespare-cat-links {
  left: 15px;
  right: unset; }

body.rtl .elespare-single-list-wrap .elespare-posts-wrap.single-list-style-2.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-img-wrapper ul.elespare-cat-links {
  left: 15px;
  right: unset; }

body.rtl .elespare-posts-wrap.single-list-style-3 .elespare-posts-single-list-post-items .elespare-img-wrapper ul {
  left: unset;
  right: 15px; }

body.rtl .elespare-posts-wrap.single-list-style-3.elespare-layout-right .elespare-posts-single-list-post-items .elespare-img-wrapper ul {
  left: 15px;
  right: unset; }

body.rtl .elespare-posts-wrap.single-list-style-3.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-img-wrapper ul {
  left: 15px;
  right: unset; }

body.rtl .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-left .elespare-posts-single-list-post-items .elespare-content-wrapper {
  margin-right: -30px;
  margin-left: unset; }

body.rtl .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper {
  margin-left: -30px;
  margin-right: unset; }

body.rtl .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items .elespare-content-wrapper {
  margin-left: unset;
  margin-right: -30px; }

body.rtl .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper {
  margin-right: unset;
  margin-left: -30px; }

@container (max-width: 480px) {
  body.rtl .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-left .elespare-posts-single-list-post-items .elespare-content-wrapper {
    margin-right: 0px; }
  body.rtl .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-right .elespare-posts-single-list-post-items .elespare-content-wrapper {
    margin-left: 0px; }
  body.rtl .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items .elespare-content-wrapper {
    margin-right: 0px; }
  body.rtl .elespare-single-list-wrap.has-background .single-list-style-4.elespare-layout-alternate .elespare-posts-single-list-post-items:nth-child(even) .elespare-content-wrapper {
    margin-left: 0px; } }
.elespare-tile-wrap {
  container-type: inline-size; }
  .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 245px; }
    .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper {
      position: relative;
      width: 100%;
      padding: 15px;
      justify-self: end;
      justify-content: flex-end; }
      .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-cat-links {
        width: calc(100% - 40px); }
      .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
        z-index: 0; }
      .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper > * {
        position: relative;
        z-index: 1; }
    .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper {
      height: 100%;
      width: 100%;
      position: absolute !important;
      left: 0;
      bottom: 0; }
      .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper img,
      .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%; }
      .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper img {
        width: 100%;
        object-fit: cover; }
  .elespare-tile-wrap .elespare-posts-wrap a {
    text-decoration: none; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-1 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-1 .elespare-posts-tile-post-items:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-2 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-2 .elespare-posts-tile-post-items:nth-child(4n + 1), .elespare-tile-wrap .elespare-posts-wrap.tile-style-2 .elespare-posts-tile-post-items:nth-child(4n) {
    grid-column-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-3 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-3 .elespare-posts-tile-post-items:nth-child(3) {
    grid-row-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-4 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-4 .elespare-posts-tile-post-items:nth-child(2) {
    grid-row-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-5 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-5 .elespare-posts-tile-post-items:nth-child(1) {
    grid-row-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-6 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-6 .elespare-posts-tile-post-items:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-7 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-7 .elespare-posts-tile-post-items:nth-child(2n + 5):nth-child(3n + 2) {
    grid-column-end: span 2; }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-7 .elespare-posts-tile-post-items:nth-child(5n + 2):nth-child(2n + 3) {
    grid-row-end: span 2; }
    .elespare-tile-wrap .elespare-posts-wrap.tile-style-7 .elespare-posts-tile-post-items:nth-child(5n + 2):nth-child(2n + 3) .elespare-content-wrapper .elespare-post-title {
      font-size: 30px; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-8 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-8 .elespare-posts-tile-post-items:nth-child(5n) {
    grid-row: span 1;
    grid-column: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-9 {
  grid-template-columns: repeat(2, 1fr); }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-10 {
  grid-template-columns: repeat(2, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-10 .elespare-posts-tile-post-items {
    min-height: 300px; }
    .elespare-tile-wrap .elespare-posts-wrap.tile-style-10 .elespare-posts-tile-post-items:nth-child(3n) {
      grid-column-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-11 {
  grid-template-columns: repeat(2, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-11 .elespare-posts-tile-post-items:nth-child(6n + 1), .elespare-tile-wrap .elespare-posts-wrap.tile-style-11 .elespare-posts-tile-post-items:nth-child(6n + 5) {
    grid-row-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-12 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-12 .elespare-posts-tile-post-items:nth-child(6n + 1), .elespare-tile-wrap .elespare-posts-wrap.tile-style-12 .elespare-posts-tile-post-items:nth-child(6n + 5) {
    grid-row-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-13 {
  grid-template-columns: repeat(3, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-13 .elespare-posts-tile-post-items:nth-child(3n + 2) {
    grid-row-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-14 {
  grid-template-columns: repeat(4, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-14 .elespare-posts-tile-post-items:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-15 {
  grid-template-columns: repeat(4, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-15 .elespare-posts-tile-post-items:nth-child(4n + 1), .elespare-tile-wrap .elespare-posts-wrap.tile-style-15 .elespare-posts-tile-post-items:nth-child(4n) {
    grid-column-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-16 {
  grid-template-columns: repeat(4, 1fr); }
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-16 .elespare-posts-tile-post-items {
    min-height: 210px; }
    .elespare-tile-wrap .elespare-posts-wrap.tile-style-16 .elespare-posts-tile-post-items:nth-child(4n) {
      grid-row-end: span 2; }

.elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-tile-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata {
  display: flex;
  align-items: center; }
  .elespare-tile-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata .post-author {
    display: flex;
    align-items: center; }
    .elespare-tile-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata .post-author a {
      display: flex;
      align-items: center; }
      .elespare-tile-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        overflow: hidden;
        line-height: 1;
        margin-right: 5px; }
        .elespare-tile-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-tile-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img {
          height: 100%;
          width: 100%;
          object-fit: cover; }

.elespare-tile-wrap .elespare-posts-wrap.tile-style-1, .elespare-tile-wrap .elespare-posts-wrap.tile-style-2, .elespare-tile-wrap .elespare-posts-wrap.tile-style-3, .elespare-tile-wrap .elespare-posts-wrap.tile-style-4, .elespare-tile-wrap .elespare-posts-wrap.tile-style-5, .elespare-tile-wrap .elespare-posts-wrap.tile-style-6, .elespare-tile-wrap .elespare-posts-wrap.tile-style-7, .elespare-tile-wrap .elespare-posts-wrap.tile-style-8, .elespare-tile-wrap .elespare-posts-wrap.tile-style-9, .elespare-tile-wrap .elespare-posts-wrap.tile-style-10, .elespare-tile-wrap .elespare-posts-wrap.tile-style-11, .elespare-tile-wrap .elespare-posts-wrap.tile-style-12, .elespare-tile-wrap .elespare-posts-wrap.tile-style-13, .elespare-tile-wrap .elespare-posts-wrap.tile-style-14, .elespare-tile-wrap .elespare-posts-wrap.tile-style-15, .elespare-tile-wrap .elespare-posts-wrap.tile-style-16 {
  grid-gap: 10px; }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items .elespare-img-wrapper a {
  position: relative; }
  .elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items .elespare-img-wrapper a::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: -webkit-linear-gradient(to top, #f9d423, #e65c00);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #f9d423, #e65c00);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    transition: all 0.4s ease-in-out; }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:hover .elespare-img-wrapper a::after {
  opacity: 0; }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(11) .elespare-img-wrapper a::after,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(1) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #43cea2, #185a9d);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #43cea2, #185a9d);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(12) .elespare-img-wrapper a::after,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(2) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #dd2476, #ff512f);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #dd2476, #ff512f);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(13) .elespare-img-wrapper a::after,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(3) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #cc2b5e, #753a88);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #cc2b5e, #753a88);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(14) .elespare-img-wrapper a::after,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(4) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #ee9ca7, #ffdde1);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #ee9ca7, #ffdde1);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(15) .elespare-img-wrapper a::after,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(5) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #42275a, #734b6d);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #42275a, #734b6d);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(16) .elespare-img-wrapper a::after,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(6) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #de6262, #ffb88c);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #de6262, #ffb88c);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(17) .elespare-img-wrapper a::after,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(7) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #ffd89b, #19547b);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #ffd89b, #19547b);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(18) .elespare-img-wrapper a::after,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(8) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #3a1c71, #d76d77, #ffaf7b);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #3a1c71, #d76d77, #ffaf7b);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(19)
.elespare-posts-tile-post-items:nth-child(9) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #355c7d, #6c5b7b, #c06c84);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #355c7d, #6c5b7b, #c06c84);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(20) .elespare-img-wrapper a::after,
.elespare-tile-wrap .elespare-posts-wrap.elespare-image-zoom-multicolor .elespare-posts-tile-post-items:nth-child(10) .elespare-img-wrapper a::after {
  background: -webkit-linear-gradient(to top, #2657eb, #de6161);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #2657eb, #de6161);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper {
  text-align: left; }

.elementor-widget-post-tile {
  width: 100%; }

/* ==========post tile container query========================== */
@container (max-width: 768px) {
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-16, .elespare-tile-wrap .elespare-posts-wrap.tile-style-15, .elespare-tile-wrap .elespare-posts-wrap.tile-style-14, .elespare-tile-wrap .elespare-posts-wrap.tile-style-13, .elespare-tile-wrap .elespare-posts-wrap.tile-style-12, .elespare-tile-wrap .elespare-posts-wrap.tile-style-8, .elespare-tile-wrap .elespare-posts-wrap.tile-style-7, .elespare-tile-wrap .elespare-posts-wrap.tile-style-6, .elespare-tile-wrap .elespare-posts-wrap.tile-style-5, .elespare-tile-wrap .elespare-posts-wrap.tile-style-4, .elespare-tile-wrap .elespare-posts-wrap.tile-style-3, .elespare-tile-wrap .elespare-posts-wrap.tile-style-2, .elespare-tile-wrap .elespare-posts-wrap.tile-style-1 {
    grid-template-columns: repeat(2, 1fr); } }

@container (max-width: 480px) {
  .elespare-tile-wrap .elespare-posts-wrap.tile-style-16, .elespare-tile-wrap .elespare-posts-wrap.tile-style-15, .elespare-tile-wrap .elespare-posts-wrap.tile-style-14, .elespare-tile-wrap .elespare-posts-wrap.tile-style-13, .elespare-tile-wrap .elespare-posts-wrap.tile-style-12, .elespare-tile-wrap .elespare-posts-wrap.tile-style-11, .elespare-tile-wrap .elespare-posts-wrap.tile-style-10, .elespare-tile-wrap .elespare-posts-wrap.tile-style-9, .elespare-tile-wrap .elespare-posts-wrap.tile-style-8, .elespare-tile-wrap .elespare-posts-wrap.tile-style-7, .elespare-tile-wrap .elespare-posts-wrap.tile-style-6, .elespare-tile-wrap .elespare-posts-wrap.tile-style-5, .elespare-tile-wrap .elespare-posts-wrap.tile-style-4, .elespare-tile-wrap .elespare-posts-wrap.tile-style-3, .elespare-tile-wrap .elespare-posts-wrap.tile-style-2, .elespare-tile-wrap .elespare-posts-wrap.tile-style-1 {
    grid-template-columns: repeat(1, 1fr); }
    .elespare-tile-wrap .elespare-posts-wrap.tile-style-16 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-15 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-14 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-13 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-12 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-11 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-10 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-9 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-8 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-7 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-6 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-5 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-4 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-3 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-2 > *, .elespare-tile-wrap .elespare-posts-wrap.tile-style-1 > * {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
      min-height: 240px; }
    .elespare-tile-wrap .elespare-posts-wrap.tile-style-16 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-15 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-14 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-13 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-12 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-11 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-10 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-9 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-8 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-7 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-6 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-5 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-4 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-3 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-2 .elespare-content-wrapper .elespare-post-title, .elespare-tile-wrap .elespare-posts-wrap.tile-style-1 .elespare-content-wrapper .elespare-post-title {
      font-size: 18px; } }

/* ==========post tile container query========================== */
body.rtl .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-tile-wrap .elespare-posts-wrap .elespare-posts-tile-post-items .elespare-img-wrapper .elespare-post-format {
  left: 10px;
  right: unset; }
.elespare-slider-wrap {
  container-type: inline-size; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-content-wrapper-inner {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-4 {
    display: grid; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-4 .elespare-img-wrapper img {
      width: 100%; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-4 .elespare-posts-slider-post-items .elespare-content-wrapper {
      text-align: left;
      padding: 15px; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items, .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-2 .elespare-posts-slider-post-items {
    display: grid;
    justify-content: center;
    align-items: stretch;
    grid-template-columns: 1fr 0.75fr;
    grid-gap: 0; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-img-wrapper, .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-2 .elespare-posts-slider-post-items .elespare-img-wrapper {
      position: relative;
      margin: 0;
      line-height: 0; }
      .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-img-wrapper a, .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-2 .elespare-posts-slider-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
        .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-img-wrapper a img, .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-2 .elespare-posts-slider-post-items .elespare-img-wrapper a img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-content-wrapper, .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-2 .elespare-posts-slider-post-items .elespare-content-wrapper {
      justify-content: center; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items {
    grid-template-columns: 0.75fr 1fr; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-img-wrapper {
      grid-column-start: 2;
      grid-row-start: 1; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-content-wrapper {
      text-align: right;
      align-items: flex-end; }
      .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata {
        justify-content: flex-end; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-1 {
    display: grid; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-1 .elespare-posts-slider-post-items {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end; }
      .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-1 .elespare-posts-slider-post-items .elespare-img-wrapper {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0; }
        .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-1 .elespare-posts-slider-post-items .elespare-img-wrapper a {
          display: block;
          height: 100%;
          width: 100%; }
        .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-1 .elespare-posts-slider-post-items .elespare-img-wrapper img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-1 .elespare-posts-slider-post-items .elespare-img-wrapper > a:after {
        content: "";
        background: #222;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        filter: alpha(opacity=100);
        opacity: 0.85;
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 0)), color-stop(100%, black));
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
        background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, black 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0); }
      .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-1 .elespare-posts-slider-post-items .elespare-content-wrapper {
        position: relative;
        z-index: 2;
        text-align: left; }
        .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-1 .elespare-posts-slider-post-items .elespare-content-wrapper::after {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
          z-index: 0; }
        .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-1 .elespare-posts-slider-post-items .elespare-content-wrapper > * {
          position: relative;
          z-index: 1; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-5 .elespare-posts-slider-post-items {
    display: flex;
    flex-direction: column; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-5 .elespare-posts-slider-post-items .elespare-img-wrapper {
      order: 2; }
      .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-5 .elespare-posts-slider-post-items .elespare-img-wrapper img {
        width: 100%; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-5 .elespare-posts-slider-post-items .elespare-content-wrapper {
      order: 1; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-6 .elespare-posts-slider-post-items {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    padding-top: 50px;
    overflow: visible; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-6 .elespare-posts-slider-post-items .elespare-content-wrapper {
      position: relative;
      z-index: 2;
      width: 60%;
      left: 50%;
      transform: translateX(-50%);
      text-align: center; }
      .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-6 .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata {
        justify-content: center; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-6 .elespare-posts-slider-post-items .elespare-img-wrapper {
      height: 100%;
      width: 100%;
      background-size: cover;
      background-position: 50%;
      position: absolute;
      left: 0;
      bottom: 50px; }
      .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-6 .elespare-posts-slider-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
        .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-6 .elespare-posts-slider-post-items .elespare-img-wrapper a img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items {
    overflow: visible; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items .elespare-img-wrapper img {
      width: 100%; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items .elespare-img-wrapper ul.elespare-cat-links {
      top: inherit;
      left: 100px;
      bottom: 50px;
      width: calc(100% - 100px);
      margin-bottom: 10px !important;
      font-size: 0; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items .elespare-content-wrapper {
      position: relative;
      z-index: 1;
      width: calc(100% - 100px);
      margin-top: -50px;
      margin-left: 100px; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap a {
    text-decoration: none; }

.elespare-slider-wrap.slider-layout .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper {
  text-align: left; }

.elespare-slider-wrap.has-background .elespare-posts-wrap .elespare-posts-slider-post-items {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-slider-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-slider-post-items .elespare-img-wrapper .elespare-avatar-wrap {
  position: absolute;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid;
  background-color: #fff;
  left: 15px;
  bottom: 15px; }
  .elespare-slider-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-slider-post-items .elespare-img-wrapper .elespare-avatar-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover; }

.elespare-slider-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata {
  display: flex;
  align-items: center; }
  .elespare-slider-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata .post-author {
    display: flex;
    align-items: center; }
    .elespare-slider-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata .post-author a {
      display: flex;
      align-items: center; }
      .elespare-slider-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        overflow: hidden;
        line-height: 1;
        margin-right: 5px; }
        .elespare-slider-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-slider-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img {
          height: 100%;
          width: 100%;
          object-fit: cover; }

/* ==========Same height images========================== */
.elespare-slider-wrap.slider-layout.elespare-has-equal-height .elespare-img-wrapper a img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover; }

.elespare-slider-wrap.slider-layout.elespare-has-equal-height .slider-style-7 .elespare-posts-slider-post-items .elespare-img-wrapper,
.elespare-slider-wrap.slider-layout.elespare-has-equal-height .slider-style-5 .elespare-posts-slider-post-items .elespare-img-wrapper,
.elespare-slider-wrap.slider-layout.elespare-has-equal-height .slider-style-4 .elespare-posts-slider-post-items .elespare-img-wrapper {
  aspect-ratio: 3/2;
  overflow: hidden; }

.elespare-slider-wrap.slider-layout.elespare-has-equal-height .slider-style-3 .elespare-posts-slider-post-items,
.elespare-slider-wrap.slider-layout.elespare-has-equal-height .slider-style-2 .elespare-posts-slider-post-items {
  height: 580px; }

.elespare-slider-wrap.slider-layout .slider-style-6 .elespare-posts-slider-post-items,
.elespare-slider-wrap.slider-layout .slider-style-1 .elespare-posts-slider-post-items {
  aspect-ratio: 3/2;
  overflow: hidden; }

.elespare-slider-wrap .elespare-posts-wrap .elespare-posts-slider-post-items:not(:nth-child(1)) {
  display: none !important; }

.elespare-slider-wrap .elespare-posts-wrap .elespare-posts-slider-post-items.slick-slide:not(:nth-child(1)) {
  display: flex !important; }

.elespare-slider-wrap .elespare-posts-wrap.slider-style-2 .elespare-posts-slider-post-items.slick-slide:not(:nth-child(1)), .elespare-slider-wrap .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items.slick-slide:not(:nth-child(1)), .elespare-slider-wrap .elespare-posts-wrap.slider-style-4 .elespare-posts-slider-post-items.slick-slide:not(:nth-child(1)) {
  display: grid !important; }

.elespare-slider-wrap .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items.slick-slide:not(:nth-child(1)) {
  display: block !important; }

.elementor-widget-post-slider {
  width: 100%; }

@container (max-width: 768px) {
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-6 .elespare-posts-slider-post-items .elespare-content-wrapper {
    width: 90%; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items .elespare-img-wrapper ul.elespare-cat-links {
    left: 30px;
    width: calc(100% - 30px); }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items .elespare-content-wrapper {
    width: calc(100% - 30px);
    margin-left: 30px; } }

@container (max-width: 600px) {
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items, .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-2 .elespare-posts-slider-post-items {
    grid-template-columns: 1fr;
    grid-template-rows: max-content; }
    .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-content-wrapper, .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-2 .elespare-posts-slider-post-items .elespare-content-wrapper {
      justify-content: flex-start; }
  .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-img-wrapper {
    grid-column-start: 1; }
  .elespare-slider-wrap.slider-layout.elespare-has-equal-height .slider-style-3 .elespare-posts-slider-post-items,
  .elespare-slider-wrap.slider-layout.elespare-has-equal-height .slider-style-2 .elespare-posts-slider-post-items {
    height: auto;
    min-height: unset; }
    .elespare-slider-wrap.slider-layout.elespare-has-equal-height .slider-style-3 .elespare-posts-slider-post-items .elespare-img-wrapper,
    .elespare-slider-wrap.slider-layout.elespare-has-equal-height .slider-style-2 .elespare-posts-slider-post-items .elespare-img-wrapper {
      height: 240px; }
  .elespare-slider-wrap.slider-layout .slider-style-6 .elespare-posts-slider-post-items .elespare-content-wrapper {
    width: 90%; } }

/* ==========Same height images========================== */
body.rtl .elespare-slider-wrap.slider-layout .elespare-posts-wrap .elespare-posts-slider-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-6 .elespare-posts-slider-post-items .elespare-content-wrapper {
  left: unset;
  right: 50%;
  transform: translateX(50%);
  text-align: center; }

body.rtl .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items .elespare-img-wrapper ul.elespare-cat-links {
  text-align: right;
  left: unset;
  right: 100px; }

body.rtl .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items .elespare-content-wrapper {
  margin-right: 100px;
  margin-left: unset; }

body.rtl .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-3 .elespare-posts-slider-post-items .elespare-content-wrapper {
  text-align: left; }

@container (max-width: 768px) {
  body.rtl .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items .elespare-img-wrapper ul.elespare-cat-links {
    left: unset;
    right: 30px; }
  body.rtl .elespare-slider-wrap.slider-layout .elespare-posts-wrap.slider-style-7 .elespare-posts-slider-post-items .elespare-content-wrapper {
    margin-left: unset;
    margin-right: 30px; } }
.elespare-flash-wrap {
  container-type: inline-size; }
  .elespare-flash-wrap .elespare-exclusive-posts {
    font-size: 16px;
    line-height: 45px;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center; }
    .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-now {
      float: left;
      position: relative;
      line-height: normal;
      margin-right: 5px; }
      .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-now .elespare-exclusive-news-title {
        display: inline-block;
        font-weight: bold;
        color: #fff;
        background-color: #ff9800;
        height: 20px;
        font-size: 11px;
        line-height: 20px;
        text-align: center;
        position: relative;
        transform: translate(-50%, -50%);
        z-index: 2;
        position: absolute;
        top: 0;
        left: 50%;
        width: max-content;
        padding: 0 5px; }
        .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-now .elespare-exclusive-news-title:before {
          content: "";
          position: absolute;
          display: block;
          width: 0px;
          height: 0px;
          top: 0;
          left: -9px;
          border-left: 9px solid transparent;
          border-right: 1px solid transparent;
          border-top: 20px solid #ff9800; }
        .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-now .elespare-exclusive-news-title:after {
          content: "";
          position: absolute;
          display: block;
          width: 0px;
          height: 0px;
          right: -9px;
          top: 0;
          border-right: 9px solid transparent;
          border-left: 1px solid transparent;
          border-bottom: 20px solid #ff9800; }
      .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap {
        display: flex;
        align-items: center;
        padding: 0 15px;
        width: max-content; }
        .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap .elespare-exclusive-texts-wrapper {
          font-size: 14px;
          font-weight: bold; }
    .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides {
      padding: 0 5px;
      overflow: hidden; }
      .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .js-marquee,
      .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .marquee {
        display: flex;
        align-items: center; }
      .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .marquee {
        width: 10000px; }
        .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .marquee > div,
        .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .marquee .js-marquee-wrapper {
          display: flex;
          align-items: center; }
        .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .marquee h4.elespare-post-title {
          margin: 0;
          padding: 5px;
          margin-right: 10px; }
          .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .marquee h4.elespare-post-title a {
            padding: 0 5px;
            display: flex;
            align-items: center;
            font-size: 14px;
            line-height: normal;
            color: #fff;
            font-weight: 600;
            flex-shrink: 0; }
            .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .marquee h4.elespare-post-title a .elespare-circle-marq {
              width: 40px;
              min-width: 40px;
              height: 40px;
              min-height: 40px;
              overflow: hidden;
              display: inline-block;
              line-height: 1;
              margin-right: 15px;
              position: relative;
              background-color: #afafaf; }
              .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .marquee h4.elespare-post-title a .elespare-circle-marq .elespare-trending-no {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                color: #fff;
                background: rgba(28, 28, 28, 0.4);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px; }
              .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-slides .marquee h4.elespare-post-title a .elespare-circle-marq img {
                height: 40px;
                width: 40px;
                object-fit: cover;
                margin: 0; }
    .elespare-flash-wrap .elespare-exclusive-posts a {
      text-decoration: none; }

body:not(.rtl) .elespare-flash-wrap .elespare-exclusive-posts.ele-border-enabled .elespare-exclusive-now-txt-animation-wrap {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important; }

body:not(.rtl) .elespare-flash-wrap .elespare-exclusive-posts.ele-border-enabled .elespare-exclusive-slides {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important; }

.elespare-flash-wrap .elespare-exclusive-posts.ele-border-enabled.ele-solid {
  border-style: solid; }

.elespare-flash-wrap .elespare-exclusive-posts.ele-border-enabled.ele-double {
  border-style: double; }

.elespare-flash-wrap .elespare-exclusive-posts.ele-border-enabled.ele-dotted {
  border-style: dotted; }

.elespare-flash-wrap .elespare-exclusive-posts.ele-border-enabled.ele-dashed {
  border-style: dashed; }

.elespare-flash-wrap .elespare-exclusive-posts.ele-border-enabled.ele-groove {
  border-style: groove; }

.elespare-flash-wrap.flash-style-1 .elespare-exclusive-now {
  margin-right: 5px; }
  .elespare-flash-wrap.flash-style-1 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap {
    min-height: 50px; }

.elespare-flash-wrap.flash-style-2 .elespare-exclusive-now {
  margin-right: 0px; }
  .elespare-flash-wrap.flash-style-2 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap {
    position: relative;
    min-height: 50px; }
    .elespare-flash-wrap.flash-style-2 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap:after {
      content: "";
      position: absolute;
      top: 50%;
      z-index: 1;
      left: 100%;
      transform: translateY(-50%);
      border: 10px solid transparent; }

.elespare-flash-wrap.flash-style-3 .elespare-exclusive-now {
  margin-right: 2px; }
  .elespare-flash-wrap.flash-style-3 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap {
    position: relative;
    min-height: 50px; }
    .elespare-flash-wrap.flash-style-3 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap:after {
      content: "";
      width: 15px;
      height: 100%;
      position: absolute;
      z-index: 1;
      top: 0;
      right: -15px;
      -webkit-mask-image: url(/wp-content/plugins/elespare/dist/img/flash-style3.svg);
      mask-image: url(/wp-content/plugins/elespare/dist/img/flash-style3.svg);
      -webkit-mask-position: center center;
      mask-position: center center;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: cover; }

.elespare-flash-wrap.flash-style-4 .elespare-exclusive-now {
  margin-right: 0px; }
  .elespare-flash-wrap.flash-style-4 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap {
    position: relative;
    min-height: 50px; }
    .elespare-flash-wrap.flash-style-4 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap:after {
      content: "";
      width: 25px;
      height: 100%;
      position: absolute;
      z-index: 1;
      top: 0;
      right: -25px;
      -webkit-mask-image: url(/wp-content/plugins/elespare/dist/img/flash-style4.svg);
      mask-image: url(/wp-content/plugins/elespare/dist/img/flash-style4.svg);
      -webkit-mask-position: center center;
      mask-position: center center;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: cover; }

.elespare-spinner.spinner-style-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px; }
  .elespare-spinner.spinner-style-1 > div:nth-child(3),
  .elespare-spinner.spinner-style-1 > div:nth-child(2),
  .elespare-spinner.spinner-style-1 > div:nth-child(1) {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%; }
  .elespare-spinner.spinner-style-1 > div:nth-child(2),
  .elespare-spinner.spinner-style-1 > div:nth-child(1) {
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
    -webkit-animation: 2s elespare-spinner-1 infinite alternate;
    animation: 2s elespare-spinner-1 infinite alternate; }
  .elespare-spinner.spinner-style-1 > div:nth-child(1) {
    border-left-color: #ff9800;
    border-right-color: #fff; }
  .elespare-spinner.spinner-style-1 > div:nth-child(2) {
    border-top-color: #000;
    border-bottom-color: #000;
    opacity: 0.2;
    -webkit-animation-delay: 2s;
    animation-delay: 2s; }
  .elespare-spinner.spinner-style-1 > div:nth-child(3) {
    width: 16px;
    height: 16px;
    background: #000;
    opacity: 0.2; }

@keyframes elespare-spinner-1 {
  to {
    -webkit-transform: rotate(360deg) scale(0.6);
    transform: rotate(360deg) scale(0.6); } }

.elespare-spinner.spinner-style-2 {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  vertical-align: middle; }
  .elespare-spinner.spinner-style-2 > div:nth-child(2),
  .elespare-spinner.spinner-style-2 > div:nth-child(1) {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: elespare-spinner-2 2s infinite ease-in-out;
    animation: elespare-spinner-2 2s infinite ease-in-out; }
  .elespare-spinner.spinner-style-2 > div:nth-child(2) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s; }

@keyframes elespare-spinner-2 {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.elespare-spinner.spinner-style-3 {
  position: relative;
  min-width: 30px;
  width: 30px;
  min-height: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px; }
  .elespare-spinner.spinner-style-3 > div:nth-child(2),
  .elespare-spinner.spinner-style-3 > div:nth-child(1) {
    position: absolute;
    border: 2px solid #fff;
    opacity: 1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: elespare-spinner-3 1.3s cubic-bezier(0, 0.2, 0.8, 1) infinite; }
  .elespare-spinner.spinner-style-3 > div:nth-child(2) {
    animation-delay: -0.5s; }

@keyframes elespare-spinner-3 {
  0% {
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    width: 30px;
    height: 30px;
    opacity: 0; } }

.elespare-spinner svg {
  width: 15px;
  height: 15px;
  margin-right: 10px; }

.elespare-spinner i {
  margin-right: 10px; }

.elespare-spinner.animation-style-2 svg,
.elespare-spinner.animation-style-2 i {
  animation: animation-style-2 2s infinite linear; }

@keyframes animation-style-2 {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.elespare-spinner.animation-style-3 svg,
.elespare-spinner.animation-style-3 i {
  animation: animation-style-3 0.25s infinite alternate; }

@keyframes animation-style-3 {
  to {
    transform: scale(1.4); } }

.elementor-widget-post-flash {
  width: 100%; }

@container (max-width: 480px) {
  .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-now .elespare-exclusive-texts-wrapper,
  .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-now .elespare-exclusive-news-title {
    display: none; }
  .elespare-flash-wrap:not(.elespare_flash_enable) .elespare-exclusive-posts .elespare-exclusive-slides {
    padding: 0 5px; }
  .elespare-flash-wrap .elespare-exclusive-posts .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap {
    width: 100%; } }

body.rtl .elespare-flash-wrap .elespare-exclusive-posts.ele-border-enabled .elespare-exclusive-now-txt-animation-wrap {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important; }

body.rtl .elespare-flash-wrap .elespare-exclusive-posts.ele-border-enabled .elespare-exclusive-slides {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important; }

body.rtl .elespare-flash-wrap.flash-style-1 .elespare-exclusive-now {
  margin-right: 0px; }

body.rtl .elespare-flash-wrap.flash-style-2 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap:after {
  left: unset;
  right: 100%;
  display: none; }

body.rtl .elespare-flash-wrap.flash-style-2 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 1;
  right: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent; }

body.rtl .elespare-flash-wrap.flash-style-3 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap:after {
  display: none; }

body.rtl .elespare-flash-wrap.flash-style-3 .elespare-exclusive-now {
  margin-right: 2px; }
  body.rtl .elespare-flash-wrap.flash-style-3 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap {
    position: relative;
    min-height: 50px; }
    body.rtl .elespare-flash-wrap.flash-style-3 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap:before {
      content: "";
      position: absolute;
      top: 50%;
      z-index: 1;
      right: 100%;
      transform: translateY(-50%);
      border: 25px solid transparent;
      height: 50px; }

body.rtl .elespare-flash-wrap.flash-style-4 .elespare-exclusive-now {
  margin-right: 0px; }
  body.rtl .elespare-flash-wrap.flash-style-4 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap {
    position: relative;
    min-height: 50px; }
    body.rtl .elespare-flash-wrap.flash-style-4 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap:after {
      display: none; }

body.rtl .elespare-flash-wrap.flash-style-4 .elespare-exclusive-now {
  margin-right: 0px; }
  body.rtl .elespare-flash-wrap.flash-style-4 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap {
    position: relative;
    min-height: 50px; }
    body.rtl .elespare-flash-wrap.flash-style-4 .elespare-exclusive-now .elespare-exclusive-now-txt-animation-wrap:before {
      content: "";
      position: absolute;
      top: 0;
      z-index: 1;
      right: 100%;
      transform: translateY(-50%);
      border: 50px solid transparent;
      border-right: none;
      border-width: 50px; }

body.rtl .elespare-spinner.spinner-style-2 {
  margin-right: 0px;
  margin-left: 5px; }

body.rtl .elementor-column {
  overflow-x: hidden; }
.elespare-widget-auhtor-wrapper {
  container-type: inline-size; }

.elespare-author-wrapper .elespare-img-wrap {
  overflow: hidden;
  width: 150px;
  min-width: 150px;
  height: 150px; }
  .elespare-author-wrapper .elespare-img-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin: 0; }

.elespare-author-wrapper .elespare-author-info-wrap .elespare-infobox-title {
  margin: 0; }
  .elespare-author-wrapper .elespare-author-info-wrap .elespare-infobox-title a {
    text-decoration: none; }

.elespare-author-wrapper .elespare-author-info-wrap .elespare-infobox-desc {
  margin-bottom: 10px; }

.elespare-author-wrapper .elespare-author-info-wrap .elespare-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px; }
  .elespare-author-wrapper .elespare-author-info-wrap .elespare-social-links a {
    font-size: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; }
    .elespare-author-wrapper .elespare-author-info-wrap .elespare-social-links a i {
      font-size: 14px; }

.elespare-author-wrapper .elespare-author-info-wrap .elespare-social-links .es-facebook {
  background-color: #3b5999;
  color: #fff; }

.elespare-author-wrapper .elespare-author-info-wrap .elespare-social-links .es-twitter {
  background-color: #55acee;
  color: #fff; }

.elespare-author-wrapper .elespare-author-info-wrap .elespare-social-links .es-instagram {
  background-color: #3F729B;
  color: #fff; }

.elespare-author-wrapper .elespare-author-info-wrap .elespare-social-links .es-linkedin {
  background-color: #0077B5;
  color: #fff; }

.elespare-author-wrapper .elespare-author-info-wrap .elespare-social-links .es-youtube {
  background-color: #cd201f;
  color: #fff; }

.elespare-author-wrapper {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-author-wrapper {
  overflow: hidden; }
  .elespare-author-wrapper.author-style-4, .elespare-author-wrapper.author-style-1 {
    text-align: center; }
    .elespare-author-wrapper.author-style-4 .elespare-img-wrap, .elespare-author-wrapper.author-style-1 .elespare-img-wrap {
      margin: 0 auto;
      margin-bottom: 0px;
      border-radius: 50%; }
    .elespare-author-wrapper.author-style-4 .elespare-author-info-wrap .elespare-infobox-title, .elespare-author-wrapper.author-style-1 .elespare-author-info-wrap .elespare-infobox-title {
      margin-top: 0; }
    .elespare-author-wrapper.author-style-4 .elespare-author-info-wrap .elespare-social-links, .elespare-author-wrapper.author-style-1 .elespare-author-info-wrap .elespare-social-links {
      justify-content: center; }
      .elespare-author-wrapper.author-style-4 .elespare-author-info-wrap .elespare-social-links a, .elespare-author-wrapper.author-style-1 .elespare-author-info-wrap .elespare-social-links a {
        border-radius: 50%; }
  .elespare-author-wrapper.author-style-5, .elespare-author-wrapper.author-style-2 {
    display: flex;
    align-items: center;
    column-gap: 15px; }
    .elespare-author-wrapper.author-style-5 .elespare-img-wrap, .elespare-author-wrapper.author-style-2 .elespare-img-wrap {
      border-radius: 50%;
      align-self: start; }
    .elespare-author-wrapper.author-style-5 .elespare-author-info-wrap, .elespare-author-wrapper.author-style-2 .elespare-author-info-wrap {
      justify-content: flex-start; }
      .elespare-author-wrapper.author-style-5 .elespare-author-info-wrap .elespare-infobox-title, .elespare-author-wrapper.author-style-2 .elespare-author-info-wrap .elespare-infobox-title {
        margin-top: 0; }
      .elespare-author-wrapper.author-style-5 .elespare-author-info-wrap .elespare-social-links a, .elespare-author-wrapper.author-style-2 .elespare-author-info-wrap .elespare-social-links a {
        border-radius: 50%; }
  .elespare-author-wrapper.author-style-6, .elespare-author-wrapper.author-style-3 {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    text-align: right;
    column-gap: 15px; }
    .elespare-author-wrapper.author-style-6 .elespare-img-wrap, .elespare-author-wrapper.author-style-3 .elespare-img-wrap {
      border-radius: 50%;
      align-self: start; }
    .elespare-author-wrapper.author-style-6 .elespare-author-info-wrap .elespare-infobox-title, .elespare-author-wrapper.author-style-3 .elespare-author-info-wrap .elespare-infobox-title {
      margin-top: 0; }
    .elespare-author-wrapper.author-style-6 .elespare-author-info-wrap .elespare-social-links, .elespare-author-wrapper.author-style-3 .elespare-author-info-wrap .elespare-social-links {
      justify-content: flex-end; }
      .elespare-author-wrapper.author-style-6 .elespare-author-info-wrap .elespare-social-links a, .elespare-author-wrapper.author-style-3 .elespare-author-info-wrap .elespare-social-links a {
        border-radius: 50%; }
  .elespare-author-wrapper.author-style-6 .elespare-img-wrap, .elespare-author-wrapper.author-style-5 .elespare-img-wrap, .elespare-author-wrapper.author-style-4 .elespare-img-wrap {
    border-radius: 0; }
  .elespare-author-wrapper.author-style-6 .elespare-author-info-wrap .elespare-social-links a, .elespare-author-wrapper.author-style-5 .elespare-author-info-wrap .elespare-social-links a, .elespare-author-wrapper.author-style-4 .elespare-author-info-wrap .elespare-social-links a {
    border-radius: 0; }
  .elespare-author-wrapper.author-style-7 {
    position: relative;
    width: calc(100% - 68px);
    padding-left: 80px !important;
    margin-left: 68px;
    overflow: visible; }
    .elespare-author-wrapper.author-style-7 .elespare-img-wrap {
      height: 120px;
      width: 120px;
      min-width: 120px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      left: -68px; }
    .elespare-author-wrapper.author-style-7 .elespare-author-info-wrap .elespare-infobox-title {
      margin-top: 0; }
  .elespare-author-wrapper.author-style-8 {
    position: relative;
    width: calc(100% - 68px);
    padding-right: 80px !important;
    margin-right: 68px;
    text-align: right;
    overflow: visible; }
    .elespare-author-wrapper.author-style-8 .elespare-img-wrap {
      height: 120px;
      width: 120px;
      min-width: 120px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      right: -68px; }
    .elespare-author-wrapper.author-style-8 .elespare-author-info-wrap .elespare-infobox-title {
      margin-top: 0; }
    .elespare-author-wrapper.author-style-8 .elespare-author-info-wrap .elespare-social-links {
      justify-content: flex-end; }

.elementor-widget-post-author {
  width: 100%; }

/* ========== container query========================== */
@container (max-width: 480px) {
  .elespare-author-wrapper.author-style-6, .elespare-author-wrapper.author-style-5, .elespare-author-wrapper.author-style-3, .elespare-author-wrapper.author-style-2 {
    flex-wrap: wrap;
    align-items: center; }
  .elespare-author-wrapper.author-style-7 {
    position: relative;
    width: 100%;
    padding-left: 15px !important;
    margin: 0; }
    .elespare-author-wrapper.author-style-7 .elespare-img-wrap {
      height: 150px;
      width: 150px;
      position: unset;
      top: unset;
      -webkit-transform: translateY(0);
      transform: translateY(0);
      left: unset;
      right: unset; }
    .elespare-author-wrapper.author-style-7 .elespare-author-info-wrap {
      width: 10; }
      .elespare-author-wrapper.author-style-7 .elespare-author-info-wrap .elespare-infobox-title {
        margin-top: 0; }
      .elespare-author-wrapper.author-style-7 .elespare-author-info-wrap .elespare-social-links {
        justify-content: flex-start; }
  .elespare-author-wrapper.author-style-8 {
    position: relative;
    width: 100%;
    padding-right: 15px !important;
    margin: 0;
    text-align: right; }
    .elespare-author-wrapper.author-style-8 .elespare-img-wrap {
      height: 150px;
      width: 150px;
      position: unset;
      top: unset;
      -webkit-transform: translateY(0);
      transform: translateY(0);
      left: unset;
      right: unset;
      margin-left: auto; }
    .elespare-author-wrapper.author-style-8 .elespare-author-info-wrap {
      width: 100%; }
      .elespare-author-wrapper.author-style-8 .elespare-author-info-wrap .elespare-infobox-title {
        margin-top: 0; }
      .elespare-author-wrapper.author-style-8 .elespare-author-info-wrap .elespare-social-links {
        justify-content: flex-end; } }

/* ========== container query========================== */
body.rtl .elespare-author-wrapper.author-style-2 .elespare-author-info-wrap, body.rtl .elespare-author-wrapper.author-style-5 .elespare-author-info-wrap {
  text-align: right; }

body.rtl .elespare-author-wrapper.author-style-3 .elespare-author-info-wrap, body.rtl .elespare-author-wrapper.author-style-6 .elespare-author-info-wrap {
  text-align: left; }

body.rtl .elespare-author-wrapper.author-style-7 {
  padding-right: 80px !important;
  padding-left: unset !important;
  margin-right: 68px;
  margin-left: unset;
  text-align: right; }
  body.rtl .elespare-author-wrapper.author-style-7 .elespare-img-wrap {
    right: -68px;
    left: unset; }

body.rtl .elespare-author-wrapper.author-style-8 {
  padding-left: 80px !important;
  padding-right: unset !important;
  margin-left: 68px;
  margin-right: unset;
  text-align: left; }
  body.rtl .elespare-author-wrapper.author-style-8 .elespare-img-wrap {
    left: -68px;
    right: unset; }

@container (max-width: 480px) {
  body.rtl .elespare-author-wrapper.author-style-7 {
    padding-right: 15px !important;
    padding-left: unset !important;
    margin: 0; }
    body.rtl .elespare-author-wrapper.author-style-7 .elespare-img-wrap {
      right: unset;
      left: unset;
      margin-right: unset;
      margin-left: auto; }
  body.rtl .elespare-author-wrapper.author-style-8 {
    padding-left: 15px !important;
    padding-right: unset !important;
    margin: 0; }
    body.rtl .elespare-author-wrapper.author-style-8 .elespare-img-wrap {
      right: unset;
      left: unset;
      margin-left: unset;
      margin-right: auto; } }
.elespare-banner-one-wrap {
  container-type: inline-size;
  display: flex;
  flex-wrap: wrap; }
  .elespare-banner-one-wrap .elespare-content-wrapper a {
    text-decoration: none; }
  .elespare-banner-one-wrap .elespare-posts-trending-post-items .elespare-img-wrapper {
    overflow: hidden; }
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider {
    width: 50%; }
    .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap {
      overflow: hidden;
      position: relative; }
      .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items {
        position: relative; }
        .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper {
          height: 390px; }
          .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper a {
            display: block;
            height: 100%;
            width: 100%; }
            .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper a img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              margin: 0; }
        .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper {
          position: absolute;
          padding: 15px;
          width: 100%;
          left: 0;
          bottom: 0;
          z-index: 1; }
          .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper::after, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper::after, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
            z-index: 0; }
          .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper > *, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper > *, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper > * {
            position: relative;
            z-index: 1; }
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid {
    width: 25%;
    flex: 1; }
    .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap {
      display: grid;
      grid-gap: 10px; }
      .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
        position: relative; }
        .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
          position: relative;
          height: 190px; }
          .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
          position: absolute;
          padding: 15px;
          width: 100%;
          left: 0;
          bottom: 0;
          z-index: 1; }
          .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
            z-index: 0; }
          .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper > * {
            position: relative;
            z-index: 1; }
  .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid {
    width: 25%;
    flex: 1; }
    .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap {
      display: grid;
      grid-gap: 10px; }
      .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
        position: relative; }
        .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
          position: relative;
          height: 190px; }
          .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
          position: absolute;
          padding: 15px;
          width: 100%;
          left: 0;
          bottom: 0;
          z-index: 1; }
          .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
            z-index: 0; }
          .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper > * {
            position: relative;
            z-index: 1; }
  .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid {
    width: 25%;
    flex: 1; }
    .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap {
      display: grid;
      grid-gap: 10px; }
      .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
        position: relative; }
        .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
          position: relative;
          height: 190px; }
          .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
          position: absolute;
          padding: 15px;
          width: 100%;
          left: 0;
          bottom: 0;
          z-index: 1; }
          .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
            z-index: 0; }
          .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper > * {
            position: relative;
            z-index: 1; }
  .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending {
    width: 25%;
    overflow: hidden; }
    .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap {
      overflow: hidden; }
      .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items {
        display: flex !important;
        align-items: center;
        margin-bottom: 10px;
        min-height: 123px; }
        .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper {
          width: 45%;
          max-width: 123px;
          position: relative;
          align-self: flex-start;
          aspect-ratio: 1/1;
          overflow: hidden; }
          .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count {
            position: absolute;
            bottom: 5px;
            left: 5px;
            width: 25px;
            height: 25px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1;
            background-color: #bb191a;
            color: white;
            border-radius: 100%;
            font-weight: 700; }
            .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-post-count-square {
              border-radius: 0;
              bottom: 0;
              left: 0; }
            .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-tl {
              top: 5px;
              bottom: inherit; }
            .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-tr {
              top: 5px;
              bottom: inherit;
              left: inherit;
              right: 5px; }
            .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-br {
              left: inherit;
              right: 5px; }
          .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper a {
            display: block;
            height: 100%;
            width: 100%; }
            .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper a img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              margin: 0; }
        .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-content-wrapper {
          flex: 1;
          padding: 10px; }
          .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-post-title {
            font-size: 14px; }
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending {
    width: 25%;
    overflow: hidden; }
    .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap {
      overflow: hidden; }
      .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items {
        display: flex !important;
        align-items: center;
        margin-bottom: 10px;
        min-height: 123px; }
        .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper {
          align-self: flex-start;
          width: 45%;
          max-width: 123px;
          position: relative;
          aspect-ratio: 1/1;
          overflow: hidden; }
          .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count {
            position: absolute;
            bottom: 5px;
            left: 5px;
            width: 25px;
            height: 25px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1;
            background-color: #bb191a;
            color: white;
            border-radius: 100%;
            font-weight: 700; }
            .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-post-count-square {
              border-radius: 0;
              bottom: 0;
              left: 0; }
            .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-tl {
              top: 5px;
              bottom: inherit; }
            .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-tr {
              top: 5px;
              bottom: inherit;
              left: inherit;
              right: 5px; }
            .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-br {
              left: inherit;
              right: 5px; }
          .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper a {
            display: block;
            height: 100%;
            width: 100%; }
            .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper a img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              margin: 0; }
        .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-content-wrapper {
          flex: 1;
          padding: 10px; }
          .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-post-title {
            font-size: 14px; }
  .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending {
    width: 25%;
    overflow: hidden; }
    .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap {
      overflow: hidden; }
      .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items {
        display: flex !important;
        align-items: center;
        margin-bottom: 10px;
        min-height: 123px; }
        .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper {
          align-self: flex-start;
          width: 45%;
          max-width: 123px;
          position: relative;
          aspect-ratio: 1/1;
          overflow: hidden; }
          .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count {
            position: absolute;
            bottom: 5px;
            left: 5px;
            width: 25px;
            height: 25px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1;
            background-color: #bb191a;
            color: white;
            border-radius: 100%;
            font-weight: 700; }
            .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-post-count-square {
              border-radius: 0;
              bottom: 0;
              left: 0; }
            .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-tl {
              top: 5px;
              bottom: inherit; }
            .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-tr {
              top: 5px;
              bottom: inherit;
              left: inherit;
              right: 5px; }
            .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-br {
              left: inherit;
              right: 5px; }
          .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper a {
            display: block;
            height: 100%;
            width: 100%; }
            .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper a img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              margin: 0; }
        .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-content-wrapper {
          flex: 1;
          padding: 10px; }
          .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-content-wrapper .elespare-post-title {
            font-size: 14px; }
  .elespare-banner-one-wrap.banner-style-1, .elespare-banner-one-wrap.banner-style-2, .elespare-banner-one-wrap.banner-style-3 {
    column-gap: 10px;
    row-gap: 20px; }
    .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap > div, .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap > div, .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap > div {
      margin-bottom: -10px; }
  .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid {
    order: 3; }
  .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider {
    order: 2; }
  .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending {
    order: 1; }
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid {
    order: 2; }
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider {
    order: 1; }
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending {
    order: 3; }

.elespare-banner-one-wrap
.elespare-section-trending.has-background
.elespare-posts-wrap.elespare-light
.elespare-posts-trending-post-items {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-slider-wrap.has-background .elespare-posts-wrap .elespare-posts-slider-post-items {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-banner-one-wrap.elespare-gravatar .elespare-section-slider .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata,
.elespare-banner-one-wrap.elespare-gravatar .elespare-section-grid .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata {
  display: flex;
  align-items: center; }
  .elespare-banner-one-wrap.elespare-gravatar .elespare-section-slider .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata .post-author,
  .elespare-banner-one-wrap.elespare-gravatar .elespare-section-grid .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata .post-author {
    display: flex;
    align-items: center; }
    .elespare-banner-one-wrap.elespare-gravatar .elespare-section-slider .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata .post-author a,
    .elespare-banner-one-wrap.elespare-gravatar .elespare-section-grid .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata .post-author a {
      display: flex;
      align-items: center; }
      .elespare-banner-one-wrap.elespare-gravatar .elespare-section-slider .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap,
      .elespare-banner-one-wrap.elespare-gravatar .elespare-section-grid .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        overflow: hidden;
        line-height: 1;
        margin-right: 5px; }
        .elespare-banner-one-wrap.elespare-gravatar .elespare-section-slider .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img,
        .elespare-banner-one-wrap.elespare-gravatar .elespare-section-grid .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img {
          height: 100%;
          width: 100%;
          object-fit: cover; }

.elespare-banner-one-wrap .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper {
  text-align: left; }

.elespare-banner-one-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
  text-align: left; }

.elespare-banner-one-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-content-wrapper {
  text-align: left; }

.elespare-banner-one-wrap .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items:not(:nth-child(1)) {
  display: none !important; }

.elespare-banner-one-wrap .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items.slick-slide:not(:nth-child(1)) {
  display: block !important; }

.elespare-banner-one-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items:not(:nth-child(1)), .elespare-banner-one-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items:not(:nth-child(2)), .elespare-banner-one-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items:not(:nth-child(3)) {
  display: none !important; }

.elespare-banner-one-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items.slick-slide:not(:nth-child(1)), .elespare-banner-one-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items.slick-slide:not(:nth-child(2)), .elespare-banner-one-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items.slick-slide:not(:nth-child(3)) {
  display: flex !important; }

.elementor-widget-main-banner-1 .elespare-main-banner-wrap {
  container-type: inline-size;
  width: 100%; }

.elementor-widget-post-banner,
.elespare-banner-one-wrap {
  width: 100%; }

@container (max-width: 1024px) {
  .elespare-main-banner-wrap {
    flex-wrap: wrap; }
  .elespare-banner-one-wrap {
    flex-wrap: wrap; }
    .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid, .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid, .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid {
      flex: 1; }
    .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider {
      flex: 2; }
    .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending, .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending, .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending {
      width: 100%; }
    .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap:not(.slick-vertical) .elespare-posts-trending-post-items, .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap:not(.slick-vertical) .elespare-posts-trending-post-items, .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap:not(.slick-vertical) .elespare-posts-trending-post-items {
      margin-bottom: 0;
      margin-right: 10px; }
    .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending .elespare-trending-wrap:not(.slick-vertical) > div, .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending .elespare-trending-wrap:not(.slick-vertical) > div, .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending .elespare-trending-wrap:not(.slick-vertical) > div {
      margin-bottom: 0;
      margin-right: -10px; } }

@media screen and (max-width: 768px) {
  .elespare-banner-one-wrap {
    flex-wrap: wrap; } }

@container (max-width: 768px) {
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid, .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid, .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid {
    width: 100%; }
    .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap, .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap, .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap {
      grid-template-columns: repeat(2, 1fr); }
      .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
        height: 240px; }
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider {
    width: 100%; }
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending, .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending, .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending {
    width: 100%; }
  .elespare-banner-one-wrap.banner-style-1 .elespare-trending-wrap > div, .elespare-banner-one-wrap.banner-style-2 .elespare-trending-wrap > div, .elespare-banner-one-wrap.banner-style-3 .elespare-trending-wrap > div {
    margin-right: 0; } }

@container (max-width: 480px) {
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid, .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid, .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid {
    width: 100%; }
    .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap, .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap, .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap {
      grid-template-columns: 1fr; }
      .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
        height: 240px; }
  .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider {
    width: 100%; }
    .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items {
      position: relative; }
      .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper {
        height: 240px; }
  .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid,
  .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid,
  .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid,
  .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid,
  .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid,
  .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid,
  .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid,
  .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid,
  .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid,
  .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid {
    width: 100%; }
    .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap,
    .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap,
    .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap,
    .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap,
    .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap,
    .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap,
    .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap,
    .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap,
    .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap,
    .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap {
      grid-template-columns: 1fr; }
      .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
      .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
      .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
      .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
      .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
      .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
      .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
      .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
      .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
      .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
        height: 240px; }
  .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider,
  .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider,
  .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider,
  .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider,
  .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider,
  .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider,
  .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider,
  .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider,
  .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider,
  .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider {
    width: 100%; }
    .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
    .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
    .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
    .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
    .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
    .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
    .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
    .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
    .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper,
    .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper {
      height: 240px; }
  .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending, .elementor-column.elementor-col-66 .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending,
  .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending,
  .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending,
  .elementor-column[data-col="66"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending,
  .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending,
  .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending,
  .elementor-column.elementor-col-50 .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending,
  .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-3 .elespare-section-trending,
  .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-2 .elespare-section-trending,
  .elementor-column[data-col="50"] .elespare-banner-one-wrap.banner-style-1 .elespare-section-trending {
    width: 100%; } }

body.rtl .elespare-banner-one-wrap .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-banner-one-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-banner-one-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-banner-one-wrap.elespare-gravatar .elespare-section-grid .elespare-posts-wrap .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
  margin-right: 0px; }

body.rtl .elespare-banner-one-wrap .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-banner-one-wrap .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format {
  left: 10px;
  right: unset; }
.elespare-express-list-wrap {
  container-type: inline-size; }
  .elespare-express-list-wrap .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper ul.elespare-cat-links {
    margin-bottom: 0 !important; }
  .elespare-express-list-wrap .elespare-posts-wrap .elespare-posts-express-post-items .elespare-img-wrapper {
    overflow: hidden; }
  .elespare-express-list-wrap .elespare-posts-wrap a {
    text-decoration: none; }

.elementor-widget-post-express-list {
  width: 100%; }

.elespare-express-list-wrap .elespare-posts-wrap.express-style-1 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr); }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items {
    display: flex;
    justify-content: flex-start; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items .elespare-img-wrapper {
      align-self: flex-start;
      margin: 0;
      max-width: 123px;
      width: 45%;
      aspect-ratio: 1/1;
      overflow: hidden; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items .elespare-content-wrapper {
      width: 100%;
      align-self: center; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
        padding: 0; }
        .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
          content: "\2219";
          color: inherit;
          font-weight: bold;
          padding: 0 0 0 2px; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
        display: none; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items .elespare-content-wrapper .elespare-post-title {
        font-size: 14px; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items .elespare-img-wrapper + .elespare-content-wrapper {
      flex: 1; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items.post-has-no-image {
      grid-template-columns: 1fr; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items.post-has-no-image .elespare-content-wrapper {
        padding: 20px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items:first-child {
    display: grid;
    grid-row-end: span 4;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items:first-child .elespare-img-wrapper {
      align-self: flex-start;
      flex: auto;
      max-width: none;
      width: 100%;
      height: auto;
      aspect-ratio: 3/2; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items:first-child .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items:first-child .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items:first-child .elespare-img-wrapper + .elespare-content-wrapper {
      width: 100%; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 .elespare-posts-express-post-items:first-child .elespare-content-wrapper {
      align-self: flex-start; }

.elespare-express-list-wrap .elespare-posts-wrap.express-style-2 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr); }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items {
    display: flex;
    justify-content: flex-start; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items .elespare-img-wrapper {
      align-self: flex-start;
      margin: 0;
      max-width: 123px;
      width: 45%;
      aspect-ratio: 1/1;
      overflow: hidden; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items .elespare-content-wrapper {
      align-self: center; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
        padding: 0; }
        .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
          content: "\2219";
          color: inherit;
          font-weight: bold;
          padding: 0 0 0 2px; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
        display: none; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items .elespare-content-wrapper .elespare-post-title {
        line-height: 1.3;
        font-size: 14px; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items .elespare-img-wrapper + .elespare-content-wrapper {
      flex: 1; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items.post-has-no-image {
      grid-template-columns: 1fr; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:nth-child(2),
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:first-child {
    display: grid;
    grid-row-end: span 4;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:nth-child(2) .elespare-img-wrapper,
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:first-child .elespare-img-wrapper {
      height: auto;
      aspect-ratio: 3/2;
      width: 100%;
      max-width: none; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:nth-child(2) .elespare-img-wrapper > a,
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:first-child .elespare-img-wrapper > a {
        display: block;
        height: 100%; }
        .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:nth-child(2) .elespare-img-wrapper > a img,
        .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:first-child .elespare-img-wrapper > a img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:nth-child(2) .elespare-img-wrapper + .elespare-content-wrapper,
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:first-child .elespare-img-wrapper + .elespare-content-wrapper {
      width: 100%; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:nth-child(2) .elespare-content-wrapper,
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-2 .elespare-posts-express-post-items:first-child .elespare-content-wrapper {
      align-self: flex-start; }

.elespare-express-list-wrap .elespare-posts-wrap.express-style-3 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr); }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items {
    display: flex;
    justify-content: flex-start; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items .elespare-img-wrapper {
      align-self: flex-start;
      margin: 0;
      max-width: 123px;
      width: 45%;
      aspect-ratio: 1/1;
      overflow: hidden; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items .elespare-content-wrapper {
      align-self: center; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items .elespare-img-wrapper + .elespare-content-wrapper {
      flex: 1; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items.post-has-no-image {
      grid-template-columns: 1fr; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:not(:nth-child(1)) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
    padding: 0; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:not(:nth-child(1)) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
      content: "\2219";
      color: inherit;
      font-weight: bold;
      padding: 0 0 0 2px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:not(:nth-child(1)) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
    display: none; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:not(:nth-child(1)) .elespare-post-title {
    line-height: 1.3;
    font-size: 14px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) {
    position: relative;
    min-height: 395px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-row-end: span 3; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) .elespare-img-wrapper {
      position: absolute;
      width: 100%;
      max-width: none;
      height: 100%;
      top: 0;
      left: 0; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) .elespare-img-wrapper .elespare-post-format {
        z-index: 1; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) .elespare-img-wrapper > a::after {
      content: "";
      background: #222;
      position: absolute;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      filter: alpha(opacity=100);
      opacity: 0.85;
      background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
      background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 0)), color-stop(100%, black));
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
      background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
      background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, black 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0); }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) .elespare-content-wrapper {
      position: relative;
      z-index: 2;
      width: 100%;
      align-self: flex-start;
      justify-content: flex-end; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) .elespare-content-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
        z-index: 0; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) .elespare-content-wrapper > * {
        position: relative;
        z-index: 1; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1) .elespare-img-wrapper + .elespare-content-wrapper {
      width: 100%; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:nth-child(1).post-has-no-image {
      background-color: #afafaf; }

.elespare-express-list-wrap .elespare-posts-wrap.express-style-4 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr); }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items {
    display: flex;
    justify-content: flex-start; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items .elespare-img-wrapper {
      align-self: flex-start;
      margin: 0;
      max-width: 123px;
      width: 45%;
      aspect-ratio: 1/1;
      overflow: hidden; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items .elespare-content-wrapper {
      padding: 15px;
      align-self: center; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items.post-has-no-image {
      grid-template-columns: 1fr; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:not(:first-child):not(:nth-child(2)) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
    padding: 0; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:not(:first-child):not(:nth-child(2)) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
      content: "\2219";
      color: inherit;
      font-weight: bold;
      padding: 0 0 0 2px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:not(:first-child):not(:nth-child(2)) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
    display: none; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:not(:first-child):not(:nth-child(2)) .elespare-content-wrapper .elespare-post-title {
    line-height: 1.3;
    font-size: 14px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:not(:first-child):not(:nth-child(2)) .elespare-img-wrapper + .elespare-content-wrapper {
    flex: 1; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2),
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child {
    position: relative;
    min-height: 355px;
    grid-row-end: span 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) .elespare-img-wrapper,
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child .elespare-img-wrapper {
      position: absolute;
      width: 100%;
      max-width: none;
      height: 100%;
      top: 0;
      left: 0; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) .elespare-img-wrapper a,
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) .elespare-img-wrapper img,
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) .elespare-img-wrapper .elespare-post-format,
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child .elespare-img-wrapper .elespare-post-format {
        z-index: 1; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) .elespare-img-wrapper > a::after,
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child .elespare-img-wrapper > a::after {
      content: "";
      background: #222;
      position: absolute;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      filter: alpha(opacity=100);
      opacity: 0.85;
      background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
      background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 0)), color-stop(100%, black));
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
      background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
      background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 40%, black 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, black 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0); }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) .elespare-content-wrapper,
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child .elespare-content-wrapper {
      position: relative;
      z-index: 2;
      width: 100%;
      align-self: flex-start; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) .elespare-content-wrapper::after,
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child .elespare-content-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
        z-index: 0; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) .elespare-content-wrapper > *,
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child .elespare-content-wrapper > * {
        position: relative;
        z-index: 1; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2).post-has-no-image,
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child.post-has-no-image {
      background-color: #afafaf; }

.elespare-express-list-wrap .elespare-posts-wrap.express-style-5 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr); }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items {
    display: flex;
    justify-content: flex-start; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items .elespare-img-wrapper {
      align-self: flex-start;
      margin: 0;
      max-width: 123px;
      width: 45%;
      aspect-ratio: 1/1;
      overflow: hidden; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items .elespare-content-wrapper {
      align-self: center; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
        padding: 0;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        padding-bottom: 1px;
        line-height: 1.5;
        display: block; }
        .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
          display: none; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items .elespare-content-wrapper .elespare-post-title {
        line-height: 1.3;
        font-size: 14px; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items .elespare-img-wrapper + .elespare-content-wrapper {
      flex: 1; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items.post-has-no-image {
      grid-template-columns: 1fr; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items.post-has-no-image .elespare-content-wrapper {
        padding: 20px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items:first-child {
    display: grid;
    grid-row-end: span 4;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items:first-child .elespare-img-wrapper {
      align-self: flex-start;
      flex: auto;
      width: 100%;
      max-width: none;
      height: auto;
      aspect-ratio: 3/2; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items:first-child .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items:first-child .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items:first-child .elespare-img-wrapper + .elespare-content-wrapper {
      width: 100%; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-5 .elespare-posts-express-post-items:first-child .elespare-content-wrapper {
      align-self: flex-start; }

.elespare-express-list-wrap .elespare-posts-wrap.express-style-6 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr); }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items {
    display: flex;
    justify-content: flex-start; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items .elespare-img-wrapper {
      align-self: flex-start;
      margin: 0;
      max-width: 123px;
      width: 45%;
      aspect-ratio: 1/1;
      overflow: hidden; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items .elespare-content-wrapper {
      align-self: center; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items .elespare-img-wrapper + .elespare-content-wrapper {
      flex: 1; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items.post-has-no-image {
      grid-template-columns: 1fr; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items.post-has-no-image .elespare-content-wrapper {
        padding: 20px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories {
    padding: 0; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category a.elespare-categories::after {
      content: "\2219";
      color: inherit;
      font-weight: bold;
      padding: 0 0 0 2px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:not(:first-child) .elespare-content-wrapper ul.elespare-cat-links li.elespare-meta-category:last-child a.elespare-categories::after {
    display: none; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:not(:first-child) .elespare-content-wrapper .elespare-post-title {
    line-height: 1.3;
    font-size: 14px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:first-child {
    display: grid;
    grid-row-end: span 4;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:first-child .elespare-img-wrapper {
      align-self: flex-start;
      flex: auto;
      width: 100%;
      max-width: none;
      height: auto;
      aspect-ratio: 3/2; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:first-child .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 100%; }
      .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:first-child .elespare-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:first-child .elespare-img-wrapper + .elespare-content-wrapper {
      width: 100%; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items:first-child .elespare-content-wrapper {
      align-self: flex-start; }

.elespare-express-list-wrap.has-no-background .express-style-6 .elespare-posts-express-post-items:first-child .elespare-content-wrapper,
.elespare-express-list-wrap.has-no-background .express-style-5 .elespare-posts-express-post-items:first-child .elespare-content-wrapper,
.elespare-express-list-wrap.has-no-background .express-style-1 .elespare-posts-express-post-items:first-child .elespare-content-wrapper {
  padding: 15px 0; }

.elespare-express-list-wrap.has-no-background .express-style-6 .elespare-posts-express-post-items:not(:first-child) .elespare-img-wrapper,
.elespare-express-list-wrap.has-no-background .express-style-5 .elespare-posts-express-post-items:not(:first-child) .elespare-img-wrapper,
.elespare-express-list-wrap.has-no-background .express-style-1 .elespare-posts-express-post-items:not(:first-child) .elespare-img-wrapper {
  margin-right: 15px; }

.elespare-express-list-wrap.has-no-background .express-style-2 .elespare-posts-express-post-items:nth-child(2) .elespare-content-wrapper,
.elespare-express-list-wrap.has-no-background .express-style-2 .elespare-posts-express-post-items:first-child .elespare-content-wrapper {
  padding: 15px 0; }

.elespare-express-list-wrap.has-no-background .express-style-2 .elespare-posts-express-post-items:not(:first-child):not(:nth-child(2)) .elespare-img-wrapper {
  margin-right: 15px; }

.elespare-express-list-wrap.has-no-background .express-style-3 .elespare-posts-express-post-items:first-child .elespare-content-wrapper {
  padding: 15px; }

.elespare-express-list-wrap.has-no-background .express-style-3 .elespare-posts-express-post-items:not(:first-child) .elespare-img-wrapper {
  margin-right: 15px; }

.elespare-express-list-wrap.has-no-background .express-style-4 .elespare-posts-express-post-items:nth-child(2) .elespare-content-wrapper,
.elespare-express-list-wrap.has-no-background .express-style-4 .elespare-posts-express-post-items:first-child .elespare-content-wrapper {
  padding: 15px; }

.elespare-express-list-wrap.has-no-background .express-style-4 .elespare-posts-express-post-items:not(:first-child):not(:nth-child(2)) .elespare-img-wrapper {
  margin-right: 0px; }

.elespare-express-list-wrap.has-background .elespare-posts-express-post-items {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-express-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-express-post-items .elespare-img-wrapper .elespare-avatar-wrap {
  position: absolute;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  left: 15px;
  bottom: 15px; }
  .elespare-express-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-express-post-items .elespare-img-wrapper .elespare-avatar-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover; }

.elespare-express-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata {
  display: flex;
  align-items: center; }
  .elespare-express-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata .post-author {
    display: flex;
    align-items: center; }
    .elespare-express-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata .post-author a {
      display: flex;
      align-items: center; }
      .elespare-express-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        line-height: 1;
        overflow: hidden;
        margin-right: 5px; }
        .elespare-express-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap img {
          height: 100%;
          width: 100%;
          object-fit: cover; }

.slick-vertical .slick-slide {
  border: none !important; }

.elementor-widget-post-express-list .elespare-widget-title-section.title-style-2 .elespare-widget-title span.elespare-section-title {
  padding-top: 0px;
  margin-top: 0px; }

.elespare-express-list-wrap .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper {
  text-align: left; }

@container (max-width: 1080px) {
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-6, .elespare-express-list-wrap .elespare-posts-wrap.express-style-5, .elespare-express-list-wrap .elespare-posts-wrap.express-style-4, .elespare-express-list-wrap .elespare-posts-wrap.express-style-3, .elespare-express-list-wrap .elespare-posts-wrap.express-style-2, .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 {
    grid-template-columns: 1fr 1fr; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:first-child {
    min-height: 360px; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:first-child img {
      min-height: 360px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2),
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child {
    min-height: 360px; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) img,
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child img {
      min-height: 360px; } }

@container (max-width: 520px) {
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-6, .elespare-express-list-wrap .elespare-posts-wrap.express-style-5, .elespare-express-list-wrap .elespare-posts-wrap.express-style-4, .elespare-express-list-wrap .elespare-posts-wrap.express-style-3, .elespare-express-list-wrap .elespare-posts-wrap.express-style-2, .elespare-express-list-wrap .elespare-posts-wrap.express-style-1 {
    grid-template-columns: 1fr; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:first-child {
    min-height: 240px; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-3 .elespare-posts-express-post-items:first-child img {
      min-height: 240px; }
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2),
  .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child {
    min-height: 240px; }
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:nth-child(2) img,
    .elespare-express-list-wrap .elespare-posts-wrap.express-style-4 .elespare-posts-express-post-items:first-child img {
      min-height: 240px; } }

body.rtl .elespare-express-list-wrap .elespare-posts-wrap .elespare-posts-express-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-express-list-wrap .elespare-posts-wrap.elespare-gravatar .elespare-posts-express-post-items .elespare-content-wrapper .elespare-metadata .post-author a .elespare-avatar-wrap {
  margin-right: 0px; }

body.rtl .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items .elespare-img-wrapper .elespare-post-format {
  left: 10px;
  right: unset; }

body.rtl .elespare-posts-wrap.express-style-6 .elespare-posts-express-post-items .elespare-img-wrapper ul {
  right: 10px;
  left: unset;
  text-align: right; }
.elespare-social-link-wrapper .elespare-social-links a {
  text-decoration: none; }

.elespare-social-link-wrapper .elespare-social-links .es-facebook {
  background-color: #3b5999;
  border-color: #3b5999; }

.elespare-social-link-wrapper .elespare-social-links .es-twitter {
  background-color: #55acee;
  border-color: #55acee; }

.elespare-social-link-wrapper .elespare-social-links .es-instagram {
  background-color: #3F729B;
  border-color: #3F729B; }

.elespare-social-link-wrapper .elespare-social-links .es-linkedin {
  background-color: #0077B5;
  border-color: #0077B5; }

.elespare-social-link-wrapper .elespare-social-links .es-youtube {
  background-color: #cd201f;
  border-color: #cd201f; }

.elespare-social-link-wrapper .elespare-social-links .es-vkontakte {
  background-color: #4c75a3;
  border-color: #4c75a3; }

.elespare-social-link-wrapper .elespare-social-links .es-vimeo {
  background-color: #1ab7ea;
  border-color: #1ab7ea; }

.elespare-social-link-wrapper .elespare-social-links .es-tumblr {
  background-color: #34465d;
  border-color: #34465d; }

.elespare-social-link-wrapper .elespare-social-links .es-reddit-alien {
  background-color: #ff5700;
  border-color: #ff5700; }

.elespare-social-link-wrapper .elespare-social-links .es-pinterest {
  background-color: #bd081c;
  border-color: #bd081c; }

.elespare-social-link-wrapper .elespare-social-links .es-houzz {
  background-color: #7ac142;
  border-color: #7ac142; }

.elespare-social-link-wrapper .elespare-social-links .es-github {
  background-color: #00405d;
  border-color: #00405d; }

.elespare-social-link-wrapper .elespare-social-links .es-flickr {
  background-color: #ff0084;
  border-color: #ff0084; }

.elespare-social-link-wrapper .elespare-social-links .es-dribbble {
  background-color: #ea4c89;
  border-color: #ea4c89; }

.elespare-social-link-wrapper .elespare-social-links .es-digg {
  background-color: #005be2;
  border-color: #005be2; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-facebook:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-facebook:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-facebook:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-facebook:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-facebook:hover {
  background-color: #3b5999;
  border-color: #3b5999; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-twitter:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-twitter:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-twitter:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-twitter:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-twitter:hover {
  background-color: #55acee;
  border-color: #55acee; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-instagram:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-instagram:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-instagram:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-instagram:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-instagram:hover {
  background-color: #3F729B;
  border-color: #3F729B; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-linkedin:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-linkedin:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-linkedin:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-linkedin:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-linkedin:hover {
  background-color: #0077B5;
  border-color: #0077B5; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-youtube:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-youtube:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-youtube:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-youtube:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-youtube:hover {
  background-color: #cd201f;
  border-color: #cd201f; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-vkontakte:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-vkontakte:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-vkontakte:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-vkontakte:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-vkontakte:hover {
  background-color: #4c75a3;
  border-color: #4c75a3; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-vimeo:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-vimeo:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-vimeo:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-vimeo:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-vimeo:hover {
  background-color: #1ab7ea;
  border-color: #1ab7ea; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-tumblr:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-tumblr:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-tumblr:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-tumblr:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-tumblr:hover {
  background-color: #34465d;
  border-color: #34465d; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-reddit-alien:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-reddit-alien:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-reddit-alien:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-reddit-alien:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-reddit-alien:hover {
  background-color: #ff5700;
  border-color: #ff5700; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-pinterest:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-pinterest:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-pinterest:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-pinterest:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-pinterest:hover {
  background-color: #bd081c;
  border-color: #bd081c; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-houzz:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-houzz:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-houzz:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-houzz:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-houzz:hover {
  background-color: #7ac142;
  border-color: #7ac142; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-github:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-github:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-github:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-github:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-github:hover {
  background-color: #00405d;
  border-color: #00405d; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-flickr:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-flickr:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-flickr:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-flickr:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-flickr:hover {
  background-color: #ff0084;
  border-color: #ff0084; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-dribbble:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-dribbble:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-dribbble:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-dribbble:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-dribbble:hover {
  background-color: #ea4c89;
  border-color: #ea4c89; }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links .es-digg:hover, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-digg:hover, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-digg:hover, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-digg:hover, .elespare-social-link-wrapper.social-style-4 .elespare-social-links .es-digg:hover {
  background-color: #005be2;
  border-color: #005be2; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-facebook, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-facebook, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-facebook, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-facebook {
  color: #3b5999; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-twitter, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-twitter, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-twitter, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-twitter {
  color: #55acee; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-instagram, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-instagram, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-instagram, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-instagram {
  color: #3F729B; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-linkedin, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-linkedin, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-linkedin, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-linkedin {
  color: #0077B5; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-youtube, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-youtube, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-youtube, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-youtube {
  color: #cd201f; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-vkontakte, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-vkontakte, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-vkontakte, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-vkontakte {
  color: #4c75a3; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-vimeo, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-vimeo, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-vimeo, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-vimeo {
  color: #1ab7ea; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-tumblr, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-tumblr, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-tumblr, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-tumblr {
  color: #34465d; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-reddit-alien, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-reddit-alien, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-reddit-alien, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-reddit-alien {
  color: #ff5700; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-pinterest, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-pinterest, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-pinterest, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-pinterest {
  color: #bd081c; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-houzz, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-houzz, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-houzz, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-houzz {
  color: #7ac142; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-github, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-github, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-github, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-github {
  color: #00405d; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-flickr, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-flickr, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-flickr, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-flickr {
  color: #ff0084; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-dribbble, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-dribbble, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-dribbble, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-dribbble {
  color: #ea4c89; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-digg, .elespare-social-link-wrapper.social-style-8 .elespare-social-links .es-digg, .elespare-social-link-wrapper.social-style-6 .elespare-social-links .es-digg, .elespare-social-link-wrapper.social-style-5 .elespare-social-links .es-digg {
  color: #005be2; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-facebook:hover .elespare-social-item-name {
  background-color: #3b5999; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-twitter:hover .elespare-social-item-name {
  background-color: #55acee; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-instagram:hover .elespare-social-item-name {
  background-color: #3F729B; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-linkedin:hover .elespare-social-item-name {
  background-color: #0077B5; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-youtube:hover .elespare-social-item-name {
  background-color: #cd201f; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-vkontakte:hover .elespare-social-item-name {
  background-color: #4c75a3; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-vimeo:hover .elespare-social-item-name {
  background-color: #1ab7ea; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-tumblr:hover .elespare-social-item-name {
  background-color: #34465d; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-reddit-alien:hover .elespare-social-item-name {
  background-color: #ff5700; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-pinterest:hover .elespare-social-item-name {
  background-color: #bd081c; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-houzz:hover .elespare-social-item-name {
  background-color: #7ac142; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-github:hover .elespare-social-item-name {
  background-color: #00405d; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-flickr:hover .elespare-social-item-name {
  background-color: #ff0084; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-dribbble:hover .elespare-social-item-name {
  background-color: #ea4c89; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links .es-digg:hover .elespare-social-item-name {
  background-color: #005be2; }

.elespare-social-link-wrapper.social-style-12 .elespare-social-links, .elespare-social-link-wrapper.social-style-11 .elespare-social-links, .elespare-social-link-wrapper.social-style-10 .elespare-social-links, .elespare-social-link-wrapper.social-style-9 .elespare-social-links, .elespare-social-link-wrapper.social-style-8 .elespare-social-links, .elespare-social-link-wrapper.social-style-7 .elespare-social-links, .elespare-social-link-wrapper.social-style-6 .elespare-social-links, .elespare-social-link-wrapper.social-style-5 .elespare-social-links, .elespare-social-link-wrapper.social-style-4 .elespare-social-links, .elespare-social-link-wrapper.social-style-3 .elespare-social-links, .elespare-social-link-wrapper.social-style-2 .elespare-social-links, .elespare-social-link-wrapper.social-style-1 .elespare-social-links {
  display: flex;
  flex-wrap: wrap; }
  .elespare-social-link-wrapper.social-style-12 .elespare-social-links a, .elespare-social-link-wrapper.social-style-11 .elespare-social-links a, .elespare-social-link-wrapper.social-style-10 .elespare-social-links a, .elespare-social-link-wrapper.social-style-9 .elespare-social-links a, .elespare-social-link-wrapper.social-style-8 .elespare-social-links a, .elespare-social-link-wrapper.social-style-7 .elespare-social-links a, .elespare-social-link-wrapper.social-style-6 .elespare-social-links a, .elespare-social-link-wrapper.social-style-5 .elespare-social-links a, .elespare-social-link-wrapper.social-style-4 .elespare-social-links a, .elespare-social-link-wrapper.social-style-3 .elespare-social-links a, .elespare-social-link-wrapper.social-style-2 .elespare-social-links a, .elespare-social-link-wrapper.social-style-1 .elespare-social-links a {
    font-size: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 35px; }
    .elespare-social-link-wrapper.social-style-12 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-11 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-10 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-9 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-8 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-7 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-6 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-5 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-4 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-3 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-2 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-1 .elespare-social-links a i {
      font-size: 18px; }

.elespare-social-link-wrapper.social-style-3 .elespare-social-links a, .elespare-social-link-wrapper.social-style-2 .elespare-social-links a {
  border-radius: 50%; }

.elespare-social-link-wrapper.social-style-3 .elespare-social-links a {
  padding: 5px;
  position: relative; }
  .elespare-social-link-wrapper.social-style-3 .elespare-social-links a::before {
    position: absolute;
    content: '';
    top: -5px;
    left: -5px;
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    border-radius: 50%;
    border: 2px dashed;
    border-color: inherit;
    transition: transform 3s; }
  .elespare-social-link-wrapper.social-style-3 .elespare-social-links a:hover::before {
    transform: rotate(180deg); }

.elespare-social-link-wrapper.social-style-4 .elespare-social-links a {
  background: #e4e4e4;
  border-radius: 10px;
  transition: all 0.15s ease-in-out; }
  .elespare-social-link-wrapper.social-style-4 .elespare-social-links a i {
    color: #535353;
    font-size: 18px;
    transform: scale(0.8);
    transition: all 0.15s ease-in-out; }
  .elespare-social-link-wrapper.social-style-4 .elespare-social-links a:hover i {
    color: #fff;
    transform: scale(1); }

.elespare-social-link-wrapper.social-style-6 .elespare-social-links a, .elespare-social-link-wrapper.social-style-5 .elespare-social-links a {
  background: #fff;
  border-style: solid;
  border-width: 2px;
  border-radius: 0;
  transition: all 0.15s ease-in-out; }
  .elespare-social-link-wrapper.social-style-6 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-5 .elespare-social-links a i {
    font-size: 18px;
    transform: scale(0.8);
    transition: all 0.15s ease-in-out; }
  .elespare-social-link-wrapper.social-style-6 .elespare-social-links a:hover i, .elespare-social-link-wrapper.social-style-5 .elespare-social-links a:hover i {
    color: #fff;
    transform: scale(1); }

.elespare-social-link-wrapper.social-style-6 .elespare-social-links a {
  border-radius: 50%; }

.elespare-social-link-wrapper.social-style-9 .elespare-social-links a, .elespare-social-link-wrapper.social-style-8 .elespare-social-links a, .elespare-social-link-wrapper.social-style-7 .elespare-social-links a {
  font-size: 14px;
  padding: 15px 20px 15px 20px;
  width: auto;
  height: auto;
  color: #fff;
  line-height: 1;
  border-radius: 4px; }
  .elespare-social-link-wrapper.social-style-9 .elespare-social-links a .elespare-social-item-name, .elespare-social-link-wrapper.social-style-8 .elespare-social-links a .elespare-social-item-name, .elespare-social-link-wrapper.social-style-7 .elespare-social-links a .elespare-social-item-name {
    margin: 0 0 0 10px; }
  .elespare-social-link-wrapper.social-style-9 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-8 .elespare-social-links a i, .elespare-social-link-wrapper.social-style-7 .elespare-social-links a i {
    font-size: 20px; }

.elespare-social-link-wrapper.social-style-8 .elespare-social-links a {
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease-in-out; }
  .elespare-social-link-wrapper.social-style-8 .elespare-social-links a i {
    font-size: 18px; }
  .elespare-social-link-wrapper.social-style-8 .elespare-social-links a:hover {
    color: #fff; }

.elespare-social-link-wrapper.social-style-9 .elespare-social-links a {
  padding: 0;
  min-width: 150px;
  font-size: 14px;
  height: 40px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden; }
  .elespare-social-link-wrapper.social-style-9 .elespare-social-links a .elespare-social-item-name {
    margin: 0 0 0 10px; }
  .elespare-social-link-wrapper.social-style-9 .elespare-social-links a i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-social-link-wrapper.social-style-10 .elespare-social-links a {
  padding: 0;
  background-color: #fff;
  font-size: 14px;
  min-width: 150px;
  height: 50px;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: #e4e4e4;
  border-radius: 4px; }
  .elespare-social-link-wrapper.social-style-10 .elespare-social-links a .elespare-social-item-name {
    color: #535353;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 32px;
    letter-spacing: .5px;
    position: relative;
    top: 0;
    transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all; }
  .elespare-social-link-wrapper.social-style-10 .elespare-social-links a i {
    color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all; }
    .elespare-social-link-wrapper.social-style-10 .elespare-social-links a i::before {
      position: relative;
      top: 100%;
      transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all; }
  .elespare-social-link-wrapper.social-style-10 .elespare-social-links a:hover .elespare-social-item-name {
    top: -40px;
    transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all; }
  .elespare-social-link-wrapper.social-style-10 .elespare-social-links a:hover i::before {
    top: 0;
    transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all; }

.elespare-social-link-wrapper.social-style-11 .elespare-social-links a {
  padding: 0;
  background-color: transparent;
  font-size: 14px;
  width: 80px;
  height: 80px;
  color: #28262b;
  text-align: center;
  position: relative; }
  .elespare-social-link-wrapper.social-style-11 .elespare-social-links a .elespare-social-item-name {
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
    opacity: 0;
    transform: translateY(40px) rotateX(-90deg);
    background: #000;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 5em;
    transition: all 0.3s; }
  .elespare-social-link-wrapper.social-style-11 .elespare-social-links a i {
    font-size: 20px;
    background: #f2f2f2;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s; }
  .elespare-social-link-wrapper.social-style-11 .elespare-social-links a:hover .elespare-social-item-name {
    opacity: 1;
    transform: rotateX(0); }
  .elespare-social-link-wrapper.social-style-11 .elespare-social-links a:hover i {
    opacity: 0;
    transform: translateY(-40px) rotateX(90deg); }

.elespare-social-link-wrapper.social-style-12 .elespare-social-links a {
  padding: 0;
  font-size: 14px;
  width: 120px;
  height: 80px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative; }
  .elespare-social-link-wrapper.social-style-12 .elespare-social-links a .elespare-social-item-name {
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
    display: block; }
  .elespare-social-link-wrapper.social-style-12 .elespare-social-links a i {
    font-size: 20px;
    display: block; }

.elespare-widget-social-link-wrapper .elespare-social-link-wrapper .elespare-social-links > a {
  margin-right: 5px; }

.elespare-widget-social-link-wrapper .elespare-social-link-wrapper .elespare-social-links > a:last-child {
  margin-right: 0px; }

.elespare-social-link-wrapper.elespare-small.social-style-6 .elespare-social-links a, .elespare-social-link-wrapper.elespare-small.social-style-5 .elespare-social-links a, .elespare-social-link-wrapper.elespare-small.social-style-4 .elespare-social-links a, .elespare-social-link-wrapper.elespare-small.social-style-3 .elespare-social-links a, .elespare-social-link-wrapper.elespare-small.social-style-2 .elespare-social-links a, .elespare-social-link-wrapper.elespare-small.social-style-1 .elespare-social-links a {
  width: 35px;
  height: 35px; }
  .elespare-social-link-wrapper.elespare-small.social-style-6 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-small.social-style-5 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-small.social-style-4 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-small.social-style-3 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-small.social-style-2 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-small.social-style-1 .elespare-social-links a i {
    font-size: 14px; }

.elespare-social-link-wrapper.elespare-small.social-style-8 .elespare-social-links a, .elespare-social-link-wrapper.elespare-small.social-style-7 .elespare-social-links a {
  font-size: 14px;
  padding: 10px 15px; }
  .elespare-social-link-wrapper.elespare-small.social-style-8 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-small.social-style-7 .elespare-social-links a i {
    font-size: 14px; }

.elespare-social-link-wrapper.elespare-small.social-style-9 .elespare-social-links a {
  font-size: 14px;
  min-width: 130px;
  height: 35px; }
  .elespare-social-link-wrapper.elespare-small.social-style-9 .elespare-social-links a i {
    font-size: 14px;
    width: 35px;
    height: 35px; }

.elespare-social-link-wrapper.elespare-small.social-style-10 .elespare-social-links a {
  font-size: 14px;
  min-width: 120px;
  height: 35px; }
  .elespare-social-link-wrapper.elespare-small.social-style-10 .elespare-social-links a i {
    font-size: 14px; }

.elespare-social-link-wrapper.elespare-small.social-style-11 .elespare-social-links a {
  font-size: 14px;
  width: 45px;
  height: 45px; }
  .elespare-social-link-wrapper.elespare-small.social-style-11 .elespare-social-links a i {
    font-size: 14px; }
  .elespare-social-link-wrapper.elespare-small.social-style-11 .elespare-social-links a .elespare-social-item-name {
    font-size: 8px; }

.elespare-social-link-wrapper.elespare-small.social-style-12 .elespare-social-links a {
  font-size: 14px;
  width: 80px;
  height: 70px; }
  .elespare-social-link-wrapper.elespare-small.social-style-12 .elespare-social-links a i {
    font-size: 14px; }
  .elespare-social-link-wrapper.elespare-small.social-style-12 .elespare-social-links a .elespare-social-item-name {
    font-size: 14px; }

.elespare-social-link-wrapper.elespare-large.social-style-6 .elespare-social-links a, .elespare-social-link-wrapper.elespare-large.social-style-5 .elespare-social-links a, .elespare-social-link-wrapper.elespare-large.social-style-4 .elespare-social-links a, .elespare-social-link-wrapper.elespare-large.social-style-3 .elespare-social-links a, .elespare-social-link-wrapper.elespare-large.social-style-2 .elespare-social-links a, .elespare-social-link-wrapper.elespare-large.social-style-1 .elespare-social-links a {
  width: 80px;
  height: 80px; }
  .elespare-social-link-wrapper.elespare-large.social-style-6 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-large.social-style-5 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-large.social-style-4 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-large.social-style-3 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-large.social-style-2 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-large.social-style-1 .elespare-social-links a i {
    font-size: 22px; }

.elespare-social-link-wrapper.elespare-large.social-style-8 .elespare-social-links a, .elespare-social-link-wrapper.elespare-large.social-style-7 .elespare-social-links a {
  font-size: 18px;
  padding: 20px 25px; }
  .elespare-social-link-wrapper.elespare-large.social-style-8 .elespare-social-links a i, .elespare-social-link-wrapper.elespare-large.social-style-7 .elespare-social-links a i {
    font-size: 22px; }

.elespare-social-link-wrapper.elespare-large.social-style-9 .elespare-social-links a {
  font-size: 20px;
  min-width: 180px;
  height: 50px; }
  .elespare-social-link-wrapper.elespare-large.social-style-9 .elespare-social-links a i {
    font-size: 24px;
    width: 50px;
    height: 50px; }

.elespare-social-link-wrapper.elespare-large.social-style-10 .elespare-social-links a {
  font-size: 22px;
  min-width: 160px;
  height: 60px; }
  .elespare-social-link-wrapper.elespare-large.social-style-10 .elespare-social-links a i {
    font-size: 24px; }

.elespare-social-link-wrapper.elespare-large.social-style-11 .elespare-social-links a {
  font-size: 14px;
  width: 120px;
  height: 120px; }
  .elespare-social-link-wrapper.elespare-large.social-style-11 .elespare-social-links a i {
    font-size: 30px; }
  .elespare-social-link-wrapper.elespare-large.social-style-11 .elespare-social-links a .elespare-social-item-name {
    font-size: 20px; }

.elespare-social-link-wrapper.elespare-large.social-style-12 .elespare-social-links a {
  font-size: 14px;
  width: 140px;
  height: 100px; }
  .elespare-social-link-wrapper.elespare-large.social-style-12 .elespare-social-links a i {
    font-size: 24px; }
  .elespare-social-link-wrapper.elespare-large.social-style-12 .elespare-social-links a .elespare-social-item-name {
    font-size: 20px; }

.elementor-widget-post-social-links.elespare-grid-elespare-left .elespare-social-link-wrapper .elespare-social-links {
  justify-content: flex-start; }

.elementor-widget-post-social-links.elespare-grid-elespare-center .elespare-social-link-wrapper .elespare-social-links {
  justify-content: center; }

.elementor-widget-post-social-links.elespare-grid-elespare-right .elespare-social-link-wrapper .elespare-social-links {
  justify-content: flex-end; }

.elementor-column.elementor-col-50 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a, .elementor-column.elementor-col-50 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a, .elementor-column.elementor-col-50 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a, .elementor-column.elementor-col-50 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a, .elementor-column.elementor-col-50 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a, .elementor-column.elementor-col-50 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a,
.elementor-column[data-col="50"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a,
.elementor-column[data-col="50"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a,
.elementor-column[data-col="50"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a,
.elementor-column[data-col="50"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a,
.elementor-column[data-col="50"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a,
.elementor-column[data-col="50"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a {
  margin-bottom: 5px; }

.elementor-column.elementor-col-15 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a, .elementor-column.elementor-col-15 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a, .elementor-column.elementor-col-15 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a, .elementor-column.elementor-col-15 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a, .elementor-column.elementor-col-15 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a, .elementor-column.elementor-col-15 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a,
.elementor-column[data-col="15"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a,
.elementor-column[data-col="15"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a,
.elementor-column[data-col="15"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a,
.elementor-column[data-col="15"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a,
.elementor-column[data-col="15"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a,
.elementor-column[data-col="15"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a,
.elementor-column.elementor-col-20 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a,
.elementor-column.elementor-col-20 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a,
.elementor-column.elementor-col-20 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a,
.elementor-column.elementor-col-20 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a,
.elementor-column.elementor-col-20 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a,
.elementor-column.elementor-col-20 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a,
.elementor-column[data-col="20"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a,
.elementor-column[data-col="20"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a,
.elementor-column[data-col="20"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a,
.elementor-column[data-col="20"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a,
.elementor-column[data-col="20"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a,
.elementor-column[data-col="20"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a,
.elementor-column.elementor-col-25 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a,
.elementor-column.elementor-col-25 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a,
.elementor-column.elementor-col-25 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a,
.elementor-column.elementor-col-25 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a,
.elementor-column.elementor-col-25 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a,
.elementor-column.elementor-col-25 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a,
.elementor-column[data-col="25"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a,
.elementor-column[data-col="25"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a,
.elementor-column[data-col="25"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a,
.elementor-column[data-col="25"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a,
.elementor-column[data-col="25"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a,
.elementor-column[data-col="25"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a,
.elementor-column.elementor-col-33 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a,
.elementor-column.elementor-col-33 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a,
.elementor-column.elementor-col-33 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a,
.elementor-column.elementor-col-33 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a,
.elementor-column.elementor-col-33 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a,
.elementor-column.elementor-col-33 .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a,
.elementor-column[data-col="33"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-7 .elespare-social-links > a,
.elementor-column[data-col="33"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-8 .elespare-social-links > a,
.elementor-column[data-col="33"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-9 .elespare-social-links > a,
.elementor-column[data-col="33"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-10 .elespare-social-links > a,
.elementor-column[data-col="33"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-11 .elespare-social-links > a,
.elementor-column[data-col="33"] .elespare-widget-social-link-wrapper .elespare-social-link-wrapper.social-style-12 .elespare-social-links > a {
  margin-bottom: 5px; }

.elementor-column.elementor-col-15 .elespare-social-link-wrapper.social-style-12 .elespare-social-links a,
.elementor-column[data-col="15"] .elespare-social-link-wrapper.social-style-12 .elespare-social-links a,
.elementor-column.elementor-col-20 .elespare-social-link-wrapper.social-style-12 .elespare-social-links a,
.elementor-column[data-col="20"] .elespare-social-link-wrapper.social-style-12 .elespare-social-links a,
.elementor-column.elementor-col-25 .elespare-social-link-wrapper.social-style-12 .elespare-social-links a,
.elementor-column[data-col="25"] .elespare-social-link-wrapper.social-style-12 .elespare-social-links a,
.elementor-column.elementor-col-33 .elespare-social-link-wrapper.social-style-12 .elespare-social-links a,
.elementor-column[data-col="33"] .elespare-social-link-wrapper.social-style-12 .elespare-social-links a {
  width: 101px;
  height: 75px; }

@media (max-width: 1024px) {
  .elementor-widget-post-social-links.elespare-grid-tablet-elespare-left .elespare-social-link-wrapper .elespare-social-links {
    justify-content: flex-start; }
  .elementor-widget-post-social-links.elespare-grid-tablet-elespare-center .elespare-social-link-wrapper .elespare-social-links {
    justify-content: center; }
  .elementor-widget-post-social-links.elespare-grid-tablet-elespare-right .elespare-social-link-wrapper .elespare-social-links {
    justify-content: flex-end; } }

@media (max-width: 767px) {
  .elementor-widget-post-social-links.elespare-grid-mobile-elespare-left .elespare-social-link-wrapper .elespare-social-links {
    justify-content: flex-start; }
  .elementor-widget-post-social-links.elespare-grid-mobile-elespare-center .elespare-social-link-wrapper .elespare-social-links {
    justify-content: center; }
  .elementor-widget-post-social-links.elespare-grid-mobile-elespare-right .elespare-social-link-wrapper .elespare-social-links {
    justify-content: flex-end; } }

body.rtl .elespare-social-link-wrapper.social-style-9 .elespare-social-links a .elespare-social-item-name, body.rtl .elespare-social-link-wrapper.social-style-8 .elespare-social-links a .elespare-social-item-name, body.rtl .elespare-social-link-wrapper.social-style-7 .elespare-social-links a .elespare-social-item-name {
  margin: 0 10px 0 0; }
.elespare-widget-title-section.title-style-1 .elespare-widget-title {
  position: relative;
  margin-bottom: 15px;
  margin-top: 0px;
  padding-bottom: 10px;
  line-height: 1.2; }

.elespare-widget-title-section .elespare-widget-title {
  font-size: 20px; }

.elespare-widget-title-section.title-style-2 .elespare-widget-title span.elespare-section-title {
  padding: 0px 0px 10px;
  display: inline-block;
  position: relative;
  margin: 0px 0 15px;
  line-height: 1.2; }

.elespare-widget-title-section.title-style-3 .elespare-widget-title {
  margin: 0 0 15px; }

body.rtl .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-3 .elespare-section-title {
  padding: 5px 0px 7px 10px; }

body.rtl .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-4 .elespare-widget-title {
  flex-direction: row-reverse; }

body.rtl .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-5 .elespare-widget-title {
  flex-direction: row-reverse; }

body.rtl .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-6 .elespare-widget-title {
  flex-direction: row-reverse; }
  body.rtl .elementor-element.elespare-section-title-elespare-left .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
    margin: 0 0 0 10px; }

body.rtl .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title {
  flex-direction: row; }
  body.rtl .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-4 .elespare-widget-title .elespare-section-title-before {
    margin: 0 0 0 10px; }

body.rtl .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-5 .elespare-widget-title {
  flex-direction: row-reverse; }

body.rtl .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-6 .elespare-widget-title {
  flex-direction: row; }
  body.rtl .elementor-element.elespare-section-title-elespare-right .elespare-widget-title-section.title-style-6 .elespare-widget-title .elespare-section-title-after {
    margin: 0 10px 0 0px; }
.elespare-popular-taxonomies-lists {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; }
  .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
    display: flex;
    overflow: hidden; }
    .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
      display: flex;
      align-items: center; }
      .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper .elespare-primary-icon {
        text-decoration: none !important; }
    .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
      align-self: center; }
  .elespare-popular-taxonomies-lists ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px; }
    .elespare-popular-taxonomies-lists ul li {
      margin: 0;
      padding: 0; }
      .elespare-popular-taxonomies-lists ul li .elespare-secondry-wrap {
        display: flex;
        align-items: center;
        gap: 5px; }
        .elespare-popular-taxonomies-lists ul li .elespare-secondry-wrap .elespare-secondary-icon {
          text-decoration: none !important; }
      .elespare-popular-taxonomies-lists ul li a {
        text-decoration: none; }

.popular-tag-style-1 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  gap: 5px; }

.popular-tag-style-2 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  gap: 10px;
  padding: 5px 10px; }

.popular-tag-style-3 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  gap: 10px;
  padding: 5px 10px;
  border-radius: 6px; }

.popular-tag-style-4 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 0 6px 0 6px; }
  .popular-tag-style-4 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    padding: 5px 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.15); }
  .popular-tag-style-4 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
    padding: 5px 10px;
    display: inline-block; }

.popular-tag-style-5 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 100px;
  overflow: hidden; }
  .popular-tag-style-5 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    padding: 5px 10px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .popular-tag-style-5 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
    padding: 5px 10px;
    display: inline-block; }

.popular-tag-style-6 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  gap: 10px;
  border-radius: 0 6px 6px 6px;
  overflow: hidden; }
  .popular-tag-style-6 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.15);
    position: relative; }
    .popular-tag-style-6 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper::after {
      content: "";
      border: 8px solid;
      border-color: transparent transparent transparent rgba(0, 0, 0, 0.15);
      position: absolute;
      top: 50%;
      left: 100%;
      transform: translateY(-50%); }
  .popular-tag-style-6 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
    padding: 5px 10px;
    display: inline-block; }

.popular-tag-style-7 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 6px 0 0 0;
  overflow: hidden; }
  .popular-tag-style-7 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    padding: 5px 20px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .popular-tag-style-7 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
    padding: 5px 10px;
    display: inline-block; }

.popular-tag-style-8 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 100px;
  overflow: hidden; }
  .popular-tag-style-8 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    padding: 5px 20px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .popular-tag-style-8 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
    padding: 5px 10px;
    display: inline-block; }

.popular-tag-style-9 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  align-items: flex-start;
  border-radius: 6px; }
  .popular-tag-style-9 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    padding: 0 0 5px 10px; }
    .popular-tag-style-9 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper i {
      background-color: rgba(0, 0, 0, 0.15);
      border-radius: 0 0 100px 100px;
      padding: 15px 10px 10px 10px;
      display: inline-block;
      text-align: center;
      line-height: 1; }
  .popular-tag-style-9 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
    padding: 5px 10px;
    display: inline-block; }

.popular-tag-style-10 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 6px;
  overflow: hidden; }
  .popular-tag-style-10 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    clip-path: polygon(0% 0%, 75% 0, 100% 50%, 75% 100%, 0% 100%);
    padding: 5px 20px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .popular-tag-style-10 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
    padding: 5px 10px;
    display: inline-block; }

.popular-tag-style-11 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 6px 0 6px 0;
  overflow: hidden; }
  .popular-tag-style-11 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    padding: 3px 0 3px 5px; }
    .popular-tag-style-11 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper i {
      clip-path: circle(45% at 50% 50%);
      padding: 12px;
      background-color: rgba(0, 0, 0, 0.15);
      display: inline-block;
      line-height: 1; }
  .popular-tag-style-11 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
    padding: 5px 10px;
    display: inline-block; }

.popular-tag-style-12 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 6px 6px 0 0;
  overflow: hidden; }
  .popular-tag-style-12 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    padding: 5px 0 5px 5px; }
    .popular-tag-style-12 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper i {
      clip-path: circle(50% at 50% 50%);
      padding: 7px 8px;
      border: 2px solid currentColor;
      display: inline-block;
      line-height: 1;
      border-radius: 50%; }
  .popular-tag-style-12 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-tag-title-wrapper {
    padding: 5px 10px;
    display: inline-block; }

.elespare-popular-taxonomies-lists.popular-tag-rounded .elespare-popular-tags-text {
  border-radius: 6px; }

.elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text {
  border-radius: 100px; }

.elespare-popular-taxonomies-lists.popular-tag-rectangular .elespare-popular-tags-text {
  border-radius: 0; }

div .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding-left: 12px; }

div.popular-tag-style-2 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper, div.popular-tag-style-3 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding-left: 2px; }

div.popular-tag-style-11 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper, div.popular-tag-style-12 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding-left: 7px; }

.elespare-popular-taxonomies-lists.popular-vertical {
  flex-direction: column;
  align-items: flex-start; }
  .elespare-popular-taxonomies-lists.popular-vertical .elespare-popular-tags-text {
    width: 100%; }
  .elespare-popular-taxonomies-lists.popular-vertical ul {
    width: 100%; }

.elespare-popular-taxonomies-lists.popular-vertical .popular-vertical {
  flex-direction: column;
  align-items: flex-start; }

.elespare-popular-taxonomies-lists.popular-vertical .elespare-column-2 li {
  width: calc(100% / 2 - 10px); }

.elespare-popular-taxonomies-lists.popular-vertical .elespare-column-3 li {
  width: calc(100% / 3 - 10px); }

.elespare-popular-taxonomies-lists.popular-vertical .elespare-column-4 li {
  width: calc(100% / 4 - 10px); }

body.rtl .popular-tag-style-4 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 6px 0 6px 0; }
  body.rtl .popular-tag-style-4 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    border-right: none;
    border-left: 1px solid rgba(0, 0, 0, 0.15); }

body.rtl .popular-tag-style-5 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding: 5px 12px 5px 10px; }

body.rtl .popular-tag-style-6 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 6px 0 6px 6px; }
  body.rtl .popular-tag-style-6 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper::after {
    border-color: transparent rgba(0, 0, 0, 0.15) transparent transparent;
    left: auto;
    right: 100%; }

body.rtl .popular-tag-style-7 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 0 6px 0 0; }
  body.rtl .popular-tag-style-7 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    padding: 5px 12px 5px 20px; }

body.rtl .popular-tag-style-8 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  padding: 5px 12px 5px 20px; }

body.rtl .popular-tag-style-9 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding: 0 10px 5px 0; }

body.rtl .popular-tag-style-10 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  padding: 5px 12px 5px 20px; }

body.rtl .popular-tag-style-11 .elespare-popular-taxonomies-lists .elespare-popular-tags-text {
  border-radius: 0 6px 0 6px; }
  body.rtl .popular-tag-style-11 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
    padding: 3px 5px 3px 0; }

body.rtl .popular-tag-style-12 .elespare-popular-taxonomies-lists .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding: 5px 5px 5px 0; }

body.rtl .elespare-popular-taxonomies-lists.popular-tag-rounded .elespare-popular-tags-text {
  border-radius: 6px; }

body.rtl .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text {
  border-radius: 100px; }

body.rtl .elespare-popular-taxonomies-lists.popular-tag-rectangular .elespare-popular-tags-text {
  border-radius: 0; }

body.rtl div.popular-tag-style-2 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper, body.rtl div .popular-tag-style-3 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding-left: 0;
  padding-right: 2px; }

body.rtl div.popular-tag-style-4 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper, body.rtl div.popular-tag-style-5 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper, body.rtl div.popular-tag-style-6 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper, body.rtl div.popular-tag-style-9 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding-left: 10px;
  padding-right: 12px; }

body.rtl div.popular-tag-style-7 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper, body.rtl div.popular-tag-style-8 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper, body.rtl div.popular-tag-style-10 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding-left: 20px;
  padding-right: 12px; }

body.rtl div.popular-tag-style-11 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper, body.rtl div.popular-tag-style-12 .elespare-popular-taxonomies-lists.popular-tag-circular .elespare-popular-tags-text .elespare-primary-icon-wrapper {
  padding-left: 0;
  padding-right: 7px; }
.elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul,
.elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul > li,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu > li {
    margin: 0;
    display: flex;
    align-items: center;
    position: relative; }
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul > li > a,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu > li > a {
      line-height: 50px;
      display: block;
      font-weight: 600;
      padding: 0 10px;
      display: flex;
      align-items: center; }
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .elespare-menu-child,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .elespare-menu-child {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden; }
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .sub-menu,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .sub-menu {
    list-style: none;
    min-width: 245px;
    padding: 0;
    margin: 0;
    background-color: #fff;
    box-shadow: 1px 5px 15px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 15px;
    z-index: 9999;
    overflow: visible; }
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .children li > a,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .sub-menu li > a,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .children li > a,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .sub-menu li > a {
      line-height: 1.6;
      display: block; }
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .children li a,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .sub-menu li a,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .children li a,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .sub-menu li a {
      border-style: solid; }
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .children .children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .children .elespare-menu-child,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .sub-menu .children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .sub-menu .elespare-menu-child,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .children .children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .children .elespare-menu-child,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .sub-menu .children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .sub-menu .elespare-menu-child {
      left: 100%; }
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .children li.page_item_has_children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .children li.menu-item-has-children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .sub-menu li.page_item_has_children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul .sub-menu li.menu-item-has-children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .children li.page_item_has_children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .children li.menu-item-has-children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .sub-menu li.page_item_has_children,
    .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu .sub-menu li.menu-item-has-children {
      position: relative; }
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children > a:after,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children > a:after,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children > a:after,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children > a:after {
    padding-left: 10px; }
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children > a > button.elespare-dropdwon-toggle,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children > a > button.elespare-dropdwon-toggle,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children > a > button.elespare-dropdwon-toggle,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle {
    display: none; }
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children .page_item_has_children a,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children .menu-item-has-children a,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children .page_item_has_children a,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children .menu-item-has-children a,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children .page_item_has_children a,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children .menu-item-has-children a,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children .page_item_has_children a,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children .menu-item-has-children a {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children .page_item_has_children .sub-menu,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children .menu-item-has-children .sub-menu,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children .page_item_has_children .sub-menu,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children .menu-item-has-children .sub-menu,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children .page_item_has_children .sub-menu,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children .menu-item-has-children .sub-menu,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children .page_item_has_children .sub-menu,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children .menu-item-has-children .sub-menu {
    left: 0;
    top: 0; }
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children .page_item_has_children .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children .page_item_has_children .elespare-menu-child,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children .menu-item-has-children .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.page_item_has_children .menu-item-has-children .elespare-menu-child,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children .page_item_has_children .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children .page_item_has_children .elespare-menu-child,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children .menu-item-has-children .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation div.elespare-menu > ul li.menu-item-has-children .menu-item-has-children .elespare-menu-child,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children .page_item_has_children .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children .page_item_has_children .elespare-menu-child,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children .menu-item-has-children .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.page_item_has_children .menu-item-has-children .elespare-menu-child,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children .page_item_has_children .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children .page_item_has_children .elespare-menu-child,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children .menu-item-has-children .children,
  .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children .menu-item-has-children .elespare-menu-child {
    top: 0; }

.elespare-navigation-wrapper.horizontal span.elespare-menu-item-description {
  font-size: 12px;
  line-height: normal;
  padding: 0 5px;
  font-style: italic;
  font-weight: normal;
  display: none; }

.elespare-navigation-wrapper.horizontal a {
  text-decoration: none; }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.page_item_has_children:hover > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.page_item_has_children:hover > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.page_item_has_children:hover > .elespare-menu-child,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.menu-item-has-children:hover > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.menu-item-has-children:hover > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.menu-item-has-children:hover > .elespare-menu-child {
  visibility: visible;
  opacity: 1;
  z-index: 9999999;
  transition-delay: 0s, 0s, 0.3s;
  -webkit-transition: all 0.3s ease 0s, opacity 0.3s;
  transition: all 0.3s ease 0s, opacity 0.3s; }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.page_item_has_children:focus-within > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.page_item_has_children:focus-within > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.page_item_has_children:focus-within > .elespare-menu-child,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.menu-item-has-children:focus-within > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.menu-item-has-children:focus-within > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu li.menu-item-has-children:focus-within > .elespare-menu-child {
  visibility: visible;
  opacity: 1;
  z-index: 9999999;
  transition-delay: 0s, 0s, 0.3s;
  -webkit-transition: all 0.3s ease 0s, opacity 0.3s;
  transition: all 0.3s ease 0s, opacity 0.3s; }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 .elespare-menu-child .sub-menu {
  transform: translateY(-15px); }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 .children {
  transform: translateY(-15px); }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.page_item_has_children:hover > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.page_item_has_children:hover > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.page_item_has_children:hover > .elespare-menu-child,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.menu-item-has-children:hover > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.menu-item-has-children:hover > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.menu-item-has-children:hover > .elespare-menu-child {
  transform: translateY(0%); }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.page_item_has_children:focus-within > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.page_item_has_children:focus-within > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.page_item_has_children:focus-within > .elespare-menu-child,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.menu-item-has-children:focus-within > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.menu-item-has-children:focus-within > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-1 li.menu-item-has-children:focus-within > .elespare-menu-child {
  transform: translateY(0%); }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-2 .elespare-menu-child .sub-menu {
  transform: translateY(15px); }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-2 .children {
  transform: translateY(15px); }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-2 li.menu-item-has-children:hover > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-2 li.menu-item-has-children:hover > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-2 li.menu-item-has-children:hover > .elespare-menu-child {
  transform: translateY(0%); }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-2 li.menu-item-has-children:focus-within > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-2 li.menu-item-has-children:focus-within > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-2 li.menu-item-has-children:focus-within > .elespare-menu-child {
  transform: translateY(0%); }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 .elespare-menu-child .sub-menu {
  transform: scaleY(0);
  transform-origin: top; }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 .children {
  transform: scaleY(0);
  transform-origin: top; }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.page_item_has_children:hover > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.page_item_has_children:hover > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.page_item_has_children:hover > .elespare-menu-child,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.menu-item-has-children:hover > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.menu-item-has-children:hover > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.menu-item-has-children:hover > .elespare-menu-child {
  transform: scaleY(1); }

.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.page_item_has_children:focus-within > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.page_item_has_children:focus-within > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.page_item_has_children:focus-within > .elespare-menu-child,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.menu-item-has-children:focus-within > .children,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.menu-item-has-children:focus-within > .elespare-menu-child > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-hover .elespare-main-navigation .elespare-menu.animation-3 li.menu-item-has-children:focus-within > .elespare-menu-child {
  transform: scaleY(1); }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.page_item_has_children > .children.active,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.page_item_has_children > .elespare-menu-child.active > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.page_item_has_children > .elespare-menu-child.active,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.menu-item-has-children > .children.active,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.menu-item-has-children > .elespare-menu-child.active > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.menu-item-has-children > .elespare-menu-child.active {
  visibility: visible;
  opacity: 1;
  z-index: 9999999;
  transition-delay: 0s, 0s, 0.3s;
  transition: all 0.3s ease 0s, opacity 0.3s; }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.page_item_has_children > a:after,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.menu-item-has-children > a:after {
  display: none; }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.page_item_has_children > a > button.elespare-dropdwon-toggle,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle {
  padding-left: 10px;
  display: inline-block;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  color: inherit;
  line-height: 1.2; }
  .elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.page_item_has_children > a > button.elespare-dropdwon-toggle:hover,
  .elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:hover {
    background-color: transparent;
    border: none;
    color: inherit; }
  .elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.page_item_has_children > a > button.elespare-dropdwon-toggle:focus,
  .elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:focus {
    background-color: transparent;
    border: none;
    color: inherit;
    outline: none; }
  .elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.page_item_has_children > a > button.elespare-dropdwon-toggle:focus-visible,
  .elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:focus-visible {
    outline: 1px solid; }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-1 .elespare-menu-child .sub-menu {
  transform: translateY(-15px); }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-1 .children {
  transform: translateY(-15px); }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-1 li.page_item_has_children > .children,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-1 li.page_item_has_children > .elespare-menu-child.active > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-1 li.page_item_has_children > .elespare-menu-child.active,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-1 li.menu-item-has-children > .children,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-1 li.menu-item-has-children > .elespare-menu-child.active > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-1 li.menu-item-has-children > .elespare-menu-child.active {
  transform: translateY(0%); }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-2 .elespare-menu-child .sub-menu {
  transform: translateY(15px); }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-2 .children {
  transform: translateY(15px); }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-2 li.menu-item-has-children > .children,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-2 li.menu-item-has-children > .elespare-menu-child.active > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-2 li.menu-item-has-children > .elespare-menu-child.active {
  transform: translateY(0%); }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-3 .elespare-menu-child .sub-menu {
  transform: scaleY(0);
  transform-origin: top; }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-3 .children {
  transform: scaleY(0);
  transform-origin: top; }

.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-3 li.menu-item-has-children > .children,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-3 li.menu-item-has-children > .elespare-menu-child.active > .sub-menu,
.elespare-navigation-wrapper.horizontal.sub-click .elespare-main-navigation .elespare-menu.animation-3 li.menu-item-has-children > .elespare-menu-child.active {
  transform: scaleY(1); }

.elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-toggle {
  display: none;
  font-size: 48px; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-toggle .elespare-close-toggle {
    display: none; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-toggle .elespare-open-toggle {
    display: block; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-toggle.elespare-nav-menu-toggle .elespare-close-toggle {
    display: block; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-toggle.elespare-nav-menu-toggle .elespare-open-toggle {
    display: none; }

.elespare-navigation-wrapper.horizontal.drawer .elespare-menu-toggle {
  display: none;
  font-size: 48px; }
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-toggle .elespare-close-toggle {
    display: none; }
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-toggle .elespare-open-toggle {
    display: block; }

@media (max-width: 1025px) {
  .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-toggle, .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-toggle {
    display: block; }
  .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.drawer .elespare-overlay, .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 999998;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-out; }
  .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.drawer .elespare-overlay.show, .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-overlay.show {
    display: block;
    transition: all 0.3s ease-out; }
  .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar.show, .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar.show {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
    display: block; }
  .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.drawer .elespare-main-navigation, .elesapre-nav-menu__breakpoint-tablet-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-main-navigation {
    display: none; } }

@media (max-width: 992px) {
  .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-toggle, .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-toggle {
    display: block; }
  .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.drawer .elespare-overlay, .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 999998;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-out; }
  .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.drawer .elespare-overlay.show, .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-overlay.show {
    display: block;
    transition: all 0.3s ease-out; }
  .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar.show, .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar.show {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
    display: block; }
  .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.drawer .elespare-main-navigation, .elesapre-nav-menu__breakpoint-tablet-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-main-navigation {
    display: none; } }

@media (max-width: 768px) {
  .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-toggle, .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-toggle {
    display: block; }
  .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.drawer .elespare-overlay, .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 999998;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-out; }
  .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.drawer .elespare-overlay.show, .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-overlay.show {
    display: block;
    transition: all 0.3s ease-out; }
  .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar.show, .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar.show {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
    display: block; }
  .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.drawer .elespare-main-navigation, .elesapre-nav-menu__breakpoint-mobile-large .elespare-navigation-wrapper.horizontal.dropdown .elespare-main-navigation {
    display: none; } }

@media (max-width: 480px) {
  .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-toggle, .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-toggle {
    display: block; }
  .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.drawer .elespare-overlay, .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 999998;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-out; }
  .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.drawer .elespare-overlay.show, .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-overlay.show {
    display: block;
    transition: all 0.3s ease-out; }
  .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar.show, .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar.show {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
    display: block; }
  .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.drawer .elespare-main-navigation, .elesapre-nav-menu__breakpoint-mobile-small .elespare-navigation-wrapper.horizontal.dropdown .elespare-main-navigation {
    display: none; } }

.elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar {
  position: fixed;
  left: 0;
  width: 300px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  top: 0;
  bottom: 0;
  z-index: 999999;
  background-color: #fff;
  display: none; }
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare--close-menu-side-bar {
    font-size: 30px;
    display: block;
    padding: 5px 10px;
    text-align: right; }
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper {
    padding: 0 0 20px 0px;
    height: 100vh; }
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper .elespare-menu-dropdown {
      list-style: none;
      margin: 0;
      padding: 20px;
      height: 100%;
      overflow-y: scroll;
      width: 100%; }
      .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper .elespare-menu-dropdown ul {
        list-style: none;
        margin: 0;
        padding: 0; }
        .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper .elespare-menu-dropdown ul li.page_item a,
        .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper .elespare-menu-dropdown ul li.menu-item a {
          display: flex;
          justify-content: flex-start;
          align-items: center;
          line-height: 50px;
          border-bottom: 1px solid #eee; }
      .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper .elespare-menu-dropdown .children,
      .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper .elespare-menu-dropdown .sub-menu {
        display: none;
        padding-left: 10px; }
      .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper .elespare-menu-dropdown::-webkit-scrollbar {
        width: 5px; }
      .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper .elespare-menu-dropdown::-webkit-scrollbar-thumb {
        background: #1f3d70;
        border-radius: 50px; }
      .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .elespare-menu-sidebar--wrapper .elespare-menu-dropdown::-webkit-scrollbar-thumb:hover {
        background: #fc1550; }
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children a,
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children a {
    display: flex;
    justify-content: space-between; }
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children a::after,
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children a::after {
      display: none; }
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle,
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle {
    display: inline-block;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
    width: 30px;
    height: 30px; }
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle:hover,
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle:hover {
      background-color: transparent;
      border: none;
      color: inherit; }
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle:focus,
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle:focus {
      outline: 1px dotted;
      background: transparent;
      border: none; }
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle:after,
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
      transition: all 0.3s;
      display: inline-block; }
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle.up:after,
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle.up:after {
    transition: all 0.3s; }
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar.elespare-menu-right {
    right: 0;
    left: auto;
    transform: translateX(100%); }
    .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar.elespare-menu-right .elespare--close-menu-side-bar {
      text-align: left; }

.elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 12;
  background-color: #fff;
  margin-top: 10px;
  padding: 0 20px 20px;
  -webkit-transition: max-height 0.3s, -webkit-transform 0.3s;
  transition: max-height 0.3s, -webkit-transform 0.3s;
  -o-transition: max-height 0.3s, transform 0.3s;
  transition: max-height 0.3s, transform 0.3s;
  transition: max-height 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  overflow: auto;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  max-height: 0; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown ul li.page_item,
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown ul li.menu-item {
      margin: 0; }
      .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown ul li.page_item a,
      .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown ul li.menu-item a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        line-height: 50px;
        border-bottom: 1px solid #eee; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children a,
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children a {
    display: flex;
    justify-content: space-between; }
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children a::after,
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children a::after {
      display: none; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle,
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle {
    display: inline-block;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
    width: 30px;
    height: 30px; }
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle:hover,
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle:hover {
      background-color: transparent;
      border: none;
      color: inherit; }
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle:focus,
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle:focus {
      outline: 1px dotted;
      background: transparent;
      border: none; }
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle:after,
    .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
      transition: all 0.3s;
      display: inline-block; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle.up:after,
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle.up:after {
    transition: all 0.3s; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .children,
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .sub-menu {
    display: none; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown.show {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    max-height: 100vh; }

.elespare-overlay {
  display: none; }

.elespare--hover-background ul.elespare-menu > li:hover > a,
.elespare--hover-background div.elespare-menu ul > li:hover > a {
  color: #aa3166; }

.elespare--hover-overline .elespare-menu li a:before,
.elespare--hover-underline .elespare-menu li a:before {
  position: absolute;
  display: block;
  content: "";
  height: 3px;
  width: 0;
  transition: width 0.3s linear; }

.elespare--hover-overline div.elespare-menu ul > li:hover > a,
.elespare--hover-overline ul.elespare-menu > li:hover > a,
.elespare--hover-underline div.elespare-menu ul > li:hover > a,
.elespare--hover-underline ul.elespare-menu > li:hover > a {
  position: relative; }

.elespare--hover-overline div.elespare-menu ul > li:hover > a:before,
.elespare--hover-overline ul.elespare-menu > li:hover > a:before,
.elespare--hover-underline div.elespare-menu ul > li:hover > a:before,
.elespare--hover-underline ul.elespare-menu > li:hover > a:before {
  width: 50px;
  background-color: #000; }

.elespare--hover-overline .elespare-menu li .sub-menu > li a,
.elespare--hover-underline .elespare-menu li .sub-menu > li a {
  position: relative; }

.elespare--hover-overline .elespare-menu li .sub-menu > li a:after,
.elespare--hover-underline .elespare-menu li .sub-menu > li a:after {
  top: auto;
  bottom: 12px; }

.elespare--hover-underline li a:before {
  bottom: 0; }

.elespare--hover-overline .elespare-menu li a:before {
  top: 0; }

.elespare--hover-overline div.elespare-menu ul > li:hover > a,
.elespare--hover-overline ul.elespare-menu > li:hover > a {
  position: relative; }

.elespare--hover-overline div.elespare-menu ul > li:hover > a:before,
.elespare--hover-overline ul.elespare-menu > li:hover > a:before {
  width: 80px;
  background-color: #000; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal .elespare-menu li.page_item_has_children > a:after,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal .elespare-menu li.menu-item-has-children > a:after {
  content: "\f107";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal .elespare-menu .elespare-menu-child .sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal .elespare-menu .children li.page_item_has_children > a:after {
  content: "\f105";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu li.page_item_has_children > a:after,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu li.menu-item-has-children > a:after {
  display: none; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu li.page_item_has_children > a > button.elespare-dropdwon-toggle:after,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
  content: "\f107";
  font-family: "elespare-icons";
  padding-left: 10px; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu .elespare-menu-child .sub-menu li.menu-item-has-children > a:after {
  display: none; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu .elespare-menu-child .sub-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
  content: "\f105";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu .children li.page_item_has_children > a:after {
  display: none; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu .children li.page_item_has_children > a > button.elespare-dropdwon-toggle:after {
  content: "\f105";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle {
  margin-left: auto; }
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle:after,
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
    content: "\f107";
    font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle.up:after,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle.up:after {
  content: "\f106"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle {
  margin-left: auto; }
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle:after,
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
    content: "\f107";
    font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle.up:after,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle.up:after {
  content: "\f106"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal .elespare-menu li.page_item_has_children > a:after,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal .elespare-menu li.menu-item-has-children > a:after {
  content: "\e82e";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle {
  margin-left: auto; }
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle:after,
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
    content: "\e82e";
    font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle {
  margin-left: auto; }
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle:after,
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
    content: "\e82e";
    font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal .elespare-menu li.page_item_has_children > a:after {
  content: "\e82d";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal .elespare-menu li.menu-item-has-children > a:first-child:after {
  content: "\e82d";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal .elespare-menu .elespare-menu-child .sub-menu li.menu-item-has-children > a:after {
  content: "\e82d";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal .elespare-menu .children li.page_item_has_children > a:after {
  content: "\e82d";
  font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle {
  margin-left: auto; }
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle:after,
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
    content: "\e82d";
    font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle.up:after,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle.up:after {
  content: "\e821"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle {
  margin-left: auto; }
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle:after,
  .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
    content: "\e82d";
    font-family: "elespare-icons"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle.up:after,
.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle.up:after {
  content: "\e821"; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
  content: "\e82e";
  font-family: "elespare-icons";
  padding-left: 10px; }

.elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
  content: "\e82d";
  font-family: "elespare-icons";
  padding-left: 10px; }

.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul,
.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu {
  justify-content: flex-start; }

.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.center .elespare-main-navigation div.elespare-menu > ul,
.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.center .elespare-main-navigation ul.elespare-menu {
  justify-content: center; }

.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul,
.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu {
  justify-content: flex-end; }

.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child,
.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child,
.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child,
.elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child {
  left: auto;
  right: 0; }
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .sub-menu,
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .sub-menu,
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .sub-menu,
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .sub-menu {
    left: auto;
    right: 0; }
    .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .sub-menu .menu-item-has-children a::after,
    .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .sub-menu .menu-item-has-children a::after,
    .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .sub-menu .menu-item-has-children a::after,
    .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .sub-menu .menu-item-has-children a::after {
      transform: scaleX(-1);
      padding-left: 0;
      padding-right: 10px; }
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .elespare-menu-child,
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .elespare-menu-child,
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .elespare-menu-child,
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .elespare-menu-child {
    left: auto;
    right: 100%; }

@media (max-width: 1025px) {
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.elespare-mobile-none-left .elespare-main-navigation div.elespare-menu > ul,
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.elespare-mobile-none-left .elespare-main-navigation ul.elespare-menu {
    justify-content: flex-start; }
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.elespare-mobile-none-center .elespare-main-navigation div.elespare-menu > ul,
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.elespare-mobile-none-center .elespare-main-navigation ul.elespare-menu {
    justify-content: center; }
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.elespare-mobile-none-right .elespare-main-navigation div.elespare-menu > ul,
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.elespare-mobile-none-right .elespare-main-navigation ul.elespare-menu {
    justify-content: flex-end; } }

@media (max-width: 1025px) {
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.elespare-mobile-responsive-left .elespare-menu-toggle {
    text-align: left; }
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.elespare-mobile-responsive-center .elespare-menu-toggle {
    text-align: center; }
  .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.elespare-mobile-responsive-right .elespare-menu-toggle {
    text-align: right; } }

.elementor-align-justify .elespare-menu-toggle-vertical {
  width: 100%; }

@media (max-width: 480px) {
  .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar {
    width: 100%; }
  .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown.show {
    width: calc(100vw - 20px); } }

.elespare-navigation-wrapper.horizontal a:focus {
  outline: none; }

.elespare-navigation-wrapper.horizontal a:focus-visible {
  outline: 1px dotted; }

body.rtl .elementor-column {
  overflow-x: visible; }

body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul,
body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu {
  justify-content: flex-end; }

body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation div.elespare-menu > ul,
body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-end .elespare-main-navigation ul.elespare-menu {
  justify-content: flex-start; }

body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal .elespare-menu .elespare-menu-child .sub-menu li.menu-item-has-children > a:after {
  transform: scale(-1); }

body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child,
body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child,
body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child,
body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child {
  left: 0;
  right: auto; }
  body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .sub-menu,
  body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .sub-menu,
  body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .sub-menu,
  body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .sub-menu {
    left: 0;
    right: auto; }
    body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .sub-menu .menu-item-has-children a::after,
    body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .sub-menu .menu-item-has-children a::after,
    body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .sub-menu .menu-item-has-children a::after,
    body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .sub-menu .menu-item-has-children a::after {
      transform: scaleX(1);
      padding-left: 0;
      padding-right: 10px; }
  body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .elespare-menu-child,
  body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation div.elespare-menu > ul > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .elespare-menu-child,
  body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu > li.menu-item:nth-last-child(2):has(.elespare-menu-child) > .elespare-menu-child .elespare-menu-child,
  body.rtl .elementor-widget-elespare-nav-horziontal-menu .elespare-navigation-wrapper.horizontal.flex-start .elespare-main-navigation ul.elespare-menu > li.menu-item:last-child:has(.elespare-menu-child) > .elespare-menu-child .elespare-menu-child {
    left: 100%;
    right: auto; }

body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children > a:after {
  padding-left: 0px;
  padding-right: 10px; }

body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle,
body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle, body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle,
body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle, body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .page_item_has_children > a > button.elespare-dropdwon-toggle,
body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.drawer .elespare-menu-sidebar .menu-item-has-children > a > button.elespare-dropdwon-toggle {
  margin-left: unset;
  margin-right: auto; }

body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle,
body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle, body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle,
body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle, body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .page_item_has_children > a > button.elespare-dropdwon-toggle,
body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.dropdown .elespare-menu-sidebar-dropdown .menu-item-has-children > a > button.elespare-dropdwon-toggle {
  margin-left: unset;
  margin-right: auto; }

body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-plus .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:after, body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-classic .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:after, body.rtl .elementor-widget-elespare-nav-horziontal-menu.elespare-submenu-icon-elespare-submenu-icon-arrow .elespare-navigation-wrapper.horizontal.sub-click .elespare-menu li.menu-item-has-children > a > button.elespare-dropdwon-toggle:after {
  padding-left: unset;
  padding-right: 10px; }

body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation ul.elespare-menu li.menu-item-has-children > a:after {
  padding-left: 0px;
  padding-right: 10px; }

body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation .elespare-menu-child {
  left: unset;
  right: 0; }

body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation .children,
body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation .sub-menu {
  right: 15px;
  left: unset; }
  body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation .children .children,
  body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation .children .elespare-menu-child,
  body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation .sub-menu .children,
  body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation .sub-menu .elespare-menu-child {
    right: 100%;
    left: unset; }

body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation li.page_item_has_children > a:after,
body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation li.menu-item-has-children > a:after {
  padding-left: 0px;
  padding-right: 10px; }

body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation li.page_item_has_children .page_item_has_children .sub-menu,
body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation li.page_item_has_children .menu-item-has-children .sub-menu,
body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation li.menu-item-has-children .page_item_has_children .sub-menu,
body.rtl .elespare-navigation-wrapper.horizontal .elespare-main-navigation li.menu-item-has-children .menu-item-has-children .sub-menu {
  left: unset;
  right: 0; }
.elespare-date-time-widget {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px; }
  .elespare-date-time-widget .elespare-date-time {
    display: flex;
    overflow: hidden; }
    .elespare-date-time-widget .elespare-date-time .elespare-icon-wrapper {
      display: flex;
      align-items: center; }
    .elespare-date-time-widget .elespare-date-time .elespare-date {
      align-self: center; }

.elespare-date-time-widget.date-time-style-1 .elespare-date-time {
  gap: 5px; }

.elespare-date-time-widget.date-time-style-2 .elespare-date-time {
  gap: 10px;
  padding: 5px 10px; }

.elespare-date-time-widget.date-time-style-3 .elespare-date-time {
  gap: 10px;
  padding: 5px 10px;
  border-radius: 6px; }

.elespare-date-time-widget.date-time-style-4 .elespare-date-time {
  border-radius: 0 6px 0 6px; }
  .elespare-date-time-widget.date-time-style-4 .elespare-date-time .elespare-icon-wrapper {
    padding: 5px 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.15); }
  .elespare-date-time-widget.date-time-style-4 .elespare-date-time .elespare-date, .elespare-date-time-widget.date-time-style-4 .elespare-date-time .elespare-time-text {
    padding: 5px 10px;
    display: inline-block; }

.elespare-date-time-widget.date-time-style-5 .elespare-date-time {
  border-radius: 100px;
  overflow: hidden; }
  .elespare-date-time-widget.date-time-style-5 .elespare-date-time .elespare-icon-wrapper {
    padding: 5px 10px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .elespare-date-time-widget.date-time-style-5 .elespare-date-time .elespare-date, .elespare-date-time-widget.date-time-style-5 .elespare-date-time .elespare-time-text {
    padding: 5px 10px;
    display: inline-block; }

.elespare-date-time-widget.date-time-style-6 .elespare-date-time {
  gap: 10px;
  border-radius: 0 6px 6px 6px;
  overflow: hidden; }
  .elespare-date-time-widget.date-time-style-6 .elespare-date-time .elespare-icon-wrapper {
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.15);
    position: relative; }
    .elespare-date-time-widget.date-time-style-6 .elespare-date-time .elespare-icon-wrapper::after {
      content: "";
      border: 8px solid;
      border-color: transparent transparent transparent rgba(0, 0, 0, 0.15);
      position: absolute;
      top: 50%;
      left: 100%;
      transform: translateY(-50%); }
  .elespare-date-time-widget.date-time-style-6 .elespare-date-time .elespare-date, .elespare-date-time-widget.date-time-style-6 .elespare-date-time .elespare-time-text {
    padding: 5px 10px;
    display: inline-block; }

.elespare-date-time-widget.date-time-style-7 .elespare-date-time {
  border-radius: 6px 0 0 0;
  overflow: hidden; }
  .elespare-date-time-widget.date-time-style-7 .elespare-date-time .elespare-icon-wrapper {
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    padding: 5px 20px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .elespare-date-time-widget.date-time-style-7 .elespare-date-time .elespare-date, .elespare-date-time-widget.date-time-style-7 .elespare-date-time .elespare-time-text {
    padding: 5px 10px;
    display: inline-block; }

.elespare-date-time-widget.date-time-style-8 .elespare-date-time {
  border-radius: 100px;
  overflow: hidden; }
  .elespare-date-time-widget.date-time-style-8 .elespare-date-time .elespare-icon-wrapper {
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    padding: 5px 20px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .elespare-date-time-widget.date-time-style-8 .elespare-date-time .elespare-date, .elespare-date-time-widget.date-time-style-8 .elespare-date-time .elespare-time-text {
    padding: 5px 10px;
    display: inline-block; }

.elespare-date-time-widget.date-time-style-9 .elespare-date-time {
  align-items: flex-start;
  border-radius: 6px; }
  .elespare-date-time-widget.date-time-style-9 .elespare-date-time .elespare-icon-wrapper {
    padding: 0 0 5px 10px; }
    .elespare-date-time-widget.date-time-style-9 .elespare-date-time .elespare-icon-wrapper i {
      background-color: rgba(0, 0, 0, 0.15);
      border-radius: 0 0 100px 100px;
      padding: 15px 10px 10px 10px;
      display: inline-block;
      text-align: center;
      line-height: 1; }
  .elespare-date-time-widget.date-time-style-9 .elespare-date-time .elespare-date, .elespare-date-time-widget.date-time-style-9 .elespare-date-time .elespare-time-text {
    padding: 5px 10px;
    display: inline-block; }

.elespare-date-time-widget.date-time-style-10 .elespare-date-time {
  border-radius: 6px;
  overflow: hidden; }
  .elespare-date-time-widget.date-time-style-10 .elespare-date-time .elespare-icon-wrapper {
    clip-path: polygon(0% 0%, 75% 0, 100% 50%, 75% 100%, 0% 100%);
    padding: 5px 20px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .elespare-date-time-widget.date-time-style-10 .elespare-date-time .elespare-date, .elespare-date-time-widget.date-time-style-10 .elespare-date-time .elespare-time-text {
    padding: 5px 10px;
    display: inline-block; }

.elespare-date-time-widget.date-time-style-11 .elespare-date-time {
  border-radius: 6px 0 6px 0;
  overflow: hidden; }
  .elespare-date-time-widget.date-time-style-11 .elespare-date-time .elespare-icon-wrapper {
    padding: 3px 0 3px 5px; }
    .elespare-date-time-widget.date-time-style-11 .elespare-date-time .elespare-icon-wrapper i {
      clip-path: circle(45% at 50% 50%);
      padding: 12px;
      background-color: rgba(0, 0, 0, 0.15);
      display: inline-block;
      line-height: 1; }
  .elespare-date-time-widget.date-time-style-11 .elespare-date-time .elespare-date, .elespare-date-time-widget.date-time-style-11 .elespare-date-time .elespare-time-text {
    padding: 5px 10px;
    display: inline-block; }

.elespare-date-time-widget.date-time-style-12 .elespare-date-time {
  border-radius: 6px 6px 0 0;
  overflow: hidden; }
  .elespare-date-time-widget.date-time-style-12 .elespare-date-time .elespare-icon-wrapper {
    padding: 5px 0 5px 5px; }
    .elespare-date-time-widget.date-time-style-12 .elespare-date-time .elespare-icon-wrapper i {
      clip-path: circle(50% at 50% 50%);
      padding: 7px 8px;
      border: 2px solid currentColor;
      display: inline-block;
      line-height: 1;
      border-radius: 50%; }
  .elespare-date-time-widget.date-time-style-12 .elespare-date-time .elespare-date, .elespare-date-time-widget.date-time-style-12 .elespare-date-time .elespare-time-text {
    padding: 5px 10px;
    display: inline-block; }

.elespare-date-time-widget.date-time-rounded .elespare-date-time {
  border-radius: 6px; }

.elespare-date-time-widget.date-time-circular .elespare-date-time {
  border-radius: 100px; }

.elespare-date-time-widget.date-time-circular .elespare-date-time .elespare-icon-wrapper {
  padding-left: 12px; }

.elespare-date-time-widget.date-time-circular.date-time-style-2 .elespare-date-time .elespare-icon-wrapper, .elespare-date-time-widget.date-time-circular.date-time-style-3 .elespare-date-time .elespare-icon-wrapper {
  padding-left: 2px; }

.elespare-date-time-widget.date-time-circular.date-time-style-11 .elespare-date-time .elespare-icon-wrapper, .elespare-date-time-widget.date-time-circular.date-time-style-12 .elespare-date-time .elespare-icon-wrapper {
  padding-left: 7px; }

.elespare-date-time-widget.date-time-rectangular .elespare-date-time {
  border-radius: 0; }

.elespare-date-time-widget.date-time-order-2 .elespare-date-wrapper {
  order: 1; }

.elespare-date-time-widget.date-time-vertical {
  flex-direction: column;
  align-items: flex-start; }

.elespare-section-title-elespare-left .elespare-date-time-widget {
  justify-content: flex-start; }
  .elespare-section-title-elespare-left .elespare-date-time-widget.date-time-vertical {
    align-items: flex-start; }

.elespare-section-title-elespare-center .elespare-date-time-widget {
  justify-content: center; }
  .elespare-section-title-elespare-center .elespare-date-time-widget.date-time-vertical {
    justify-content: flex-start;
    align-items: center; }

.elespare-section-title-elespare-right .elespare-date-time-widget {
  justify-content: flex-end; }
  .elespare-section-title-elespare-right .elespare-date-time-widget.date-time-vertical {
    justify-content: flex-start;
    align-items: flex-end; }

@media screen and (max-width: 768px) {
  .elespare-section-title-tablet-elespare-left .elespare-date-time-widget {
    justify-content: flex-start; }
    .elespare-section-title-tablet-elespare-left .elespare-date-time-widget.date-time-vertical {
      align-items: flex-start; }
  .elespare-section-title-tablet-elespare-center .elespare-date-time-widget {
    justify-content: center; }
    .elespare-section-title-tablet-elespare-center .elespare-date-time-widget.date-time-vertical {
      justify-content: flex-start;
      align-items: center; }
  .elespare-section-title-tablet-elespare-right .elespare-date-time-widget {
    justify-content: flex-end; }
    .elespare-section-title-tablet-elespare-right .elespare-date-time-widget.date-time-vertical {
      justify-content: flex-start;
      align-items: flex-end; } }

@media screen and (max-width: 480px) {
  .elespare-section-title-mobile-elespare-left .elespare-date-time-widget {
    justify-content: flex-start; }
    .elespare-section-title-mobile-elespare-left .elespare-date-time-widget.date-time-vertical {
      align-items: flex-start; }
  .elespare-section-title-mobile-elespare-center .elespare-date-time-widget {
    justify-content: center; }
    .elespare-section-title-mobile-elespare-center .elespare-date-time-widget.date-time-vertical {
      justify-content: flex-start;
      align-items: center; }
  .elespare-section-title-mobile-elespare-right .elespare-date-time-widget {
    justify-content: flex-end; }
    .elespare-section-title-mobile-elespare-right .elespare-date-time-widget.date-time-vertical {
      justify-content: flex-start;
      align-items: flex-end; } }

body.rtl .elespare-date-time-widget.date-time-style-4 .elespare-date-time {
  border-radius: 6px 0 6px 0; }
  body.rtl .elespare-date-time-widget.date-time-style-4 .elespare-date-time .elespare-icon-wrapper {
    border-right: none;
    border-left: 1px solid rgba(0, 0, 0, 0.15); }

body.rtl .elespare-date-time-widget.date-time-style-5 .elespare-date-time .elespare-icon-wrapper {
  padding: 5px 12px 5px 10px; }

body.rtl .elespare-date-time-widget.date-time-style-6 .elespare-date-time {
  border-radius: 6px 0 6px 6px; }
  body.rtl .elespare-date-time-widget.date-time-style-6 .elespare-date-time .elespare-icon-wrapper::after {
    border-color: transparent rgba(0, 0, 0, 0.15) transparent transparent;
    left: auto;
    right: 100%; }

body.rtl .elespare-date-time-widget.date-time-style-7 .elespare-date-time {
  border-radius: 0 6px 0 0; }
  body.rtl .elespare-date-time-widget.date-time-style-7 .elespare-date-time .elespare-icon-wrapper {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    padding: 5px 12px 5px 20px; }

body.rtl .elespare-date-time-widget.date-time-style-8 .elespare-date-time .elespare-icon-wrapper {
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  padding: 5px 12px 5px 20px; }

body.rtl .elespare-date-time-widget.date-time-style-9 .elespare-date-time .elespare-icon-wrapper {
  padding: 0 10px 5px 0; }

body.rtl .elespare-date-time-widget.date-time-style-10 .elespare-date-time .elespare-icon-wrapper {
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  padding: 5px 12px 5px 20px; }

body.rtl .elespare-date-time-widget.date-time-style-11 .elespare-date-time {
  border-radius: 0 6px 0 6px; }
  body.rtl .elespare-date-time-widget.date-time-style-11 .elespare-date-time .elespare-icon-wrapper {
    padding: 3px 5px 3px 0; }

body.rtl .elespare-date-time-widget.date-time-style-12 .elespare-date-time .elespare-icon-wrapper {
  padding: 5px 5px 5px 0; }

body.rtl .elespare-date-time-widget.date-time-rounded .elespare-date-time {
  border-radius: 6px; }

body.rtl .elespare-date-time-widget.date-time-circular .elespare-date-time {
  border-radius: 100px; }

body.rtl .elespare-date-time-widget.date-time-circular.date-time-style-2 .elespare-date-time .elespare-icon-wrapper, body.rtl .elespare-date-time-widget.date-time-circular.date-time-style-3 .elespare-date-time .elespare-icon-wrapper {
  padding-left: 0;
  padding-right: 2px; }

body.rtl .elespare-date-time-widget.date-time-circular .date-time-style-4 .elespare-date-time .elespare-icon-wrapper, body.rtl .elespare-date-time-widget.date-time-circular .date-time-style-5 .elespare-date-time .elespare-icon-wrapper, body.rtl .elespare-date-time-widget.date-time-circular .date-time-style-6 .elespare-date-time .elespare-icon-wrapper, body.rtl .elespare-date-time-widget.date-time-circular .date-time-style-9 .elespare-date-time .elespare-icon-wrapper {
  padding-left: 10px;
  padding-right: 12px; }

body.rtl .elespare-date-time-widget.date-time-circular .date-time-style-7 .elespare-date-time .elespare-icon-wrapper, body.rtl .elespare-date-time-widget.date-time-circular .date-time-style-8 .elespare-date-time .elespare-icon-wrapper, body.rtl .elespare-date-time-widget.date-time-circular .date-time-style-10 .elespare-date-time .elespare-icon-wrapper {
  padding-left: 20px;
  padding-right: 12px; }

body.rtl .elespare-date-time-widget.date-time-circular.date-time-style-11 .elespare-date-time .elespare-icon-wrapper, body.rtl .elespare-date-time-widget.date-time-circular.date-time-style-12 .elespare-date-time .elespare-icon-wrapper {
  padding-left: 0;
  padding-right: 7px; }

body.rtl .elespare-date-time-widget.date-time-rectangular .elespare-date-time {
  border-radius: 0; }

body.rtl .elespare-section-title-elespare-left .elespare-date-time-widget {
  justify-content: flex-end; }
  body.rtl .elespare-section-title-elespare-left .elespare-date-time-widget.date-time-vertical {
    align-items: flex-end; }

body.rtl .elespare-section-title-elespare-center .elespare-date-time-widget {
  justify-content: center; }
  body.rtl .elespare-section-title-elespare-center .elespare-date-time-widget.date-time-vertical {
    justify-content: flex-end;
    align-items: center; }

body.rtl .elespare-section-title-elespare-right .elespare-date-time-widget {
  justify-content: flex-start; }
  body.rtl .elespare-section-title-elespare-right .elespare-date-time-widget.date-time-vertical {
    justify-content: flex-end;
    align-items: flex-start; }

@media screen and (max-width: 768px) {
  body.rtl .elespare-section-title-tablet-elespare-left .elespare-date-time-widget {
    justify-content: flex-end; }
    body.rtl .elespare-section-title-tablet-elespare-left .elespare-date-time-widget.date-time-vertical {
      align-items: flex-end; }
  body.rtl .elespare-section-title-tablet-elespare-center .elespare-date-time-widget {
    justify-content: center; }
    body.rtl .elespare-section-title-tablet-elespare-center .elespare-date-time-widget.date-time-vertical {
      justify-content: flex-end;
      align-items: center; }
  body.rtl .elespare-section-title-tablet-elespare-right .elespare-date-time-widget {
    justify-content: flex-start; }
    body.rtl .elespare-section-title-tablet-elespare-right .elespare-date-time-widget.date-time-vertical {
      justify-content: flex-end;
      align-items: flex-start; } }

@media screen and (max-width: 480px) {
  body.rtl .elespare-section-title-mobile-elespare-left .elespare-date-time-widget {
    justify-content: flex-end; }
    body.rtl .elespare-section-title-mobile-elespare-left .elespare-date-time-widget.date-time-vertical {
      align-items: flex-end; }
  body.rtl .elespare-section-title-mobile-elespare-center .elespare-date-time-widget {
    justify-content: center; }
    body.rtl .elespare-section-title-mobile-elespare-center .elespare-date-time-widget.date-time-vertical {
      justify-content: flex-end;
      align-items: center; }
  body.rtl .elespare-section-title-mobile-elespare-right .elespare-date-time-widget {
    justify-content: flex-start; }
    body.rtl .elespare-section-title-mobile-elespare-right .elespare-date-time-widget.date-time-vertical {
      justify-content: flex-end;
      align-items: flex-start; } }
.elespare-custom-link-button .elespare-button-link {
  display: inline-flex;
  overflow: hidden;
  text-decoration: none; }
  .elespare-custom-link-button .elespare-button-link .elespare-custom-link-icon {
    display: flex;
    align-items: center; }
  .elespare-custom-link-button .elespare-button-link .elespare-custom-link-text {
    align-self: center; }

.elespare-custom-link-button.elespare-button-style-1 .elespare-button-link {
  gap: 5px; }

.elespare-custom-link-button.elespare-button-style-2 .elespare-button-link {
  gap: 10px;
  padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-3 .elespare-button-link {
  gap: 10px;
  padding: 5px 10px;
  border-radius: 6px; }

.elespare-custom-link-button.elespare-button-style-4 .elespare-button-link {
  border-radius: 0 6px 0 6px; }
  .elespare-custom-link-button.elespare-button-style-4 .elespare-button-link .elespare-custom-link-icon {
    padding: 5px 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.15); }
  .elespare-custom-link-button.elespare-button-style-4 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-5 .elespare-button-link {
  border-radius: 100px;
  overflow: hidden; }
  .elespare-custom-link-button.elespare-button-style-5 .elespare-button-link .elespare-custom-link-icon {
    padding: 5px 10px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .elespare-custom-link-button.elespare-button-style-5 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-5 .elespare-button-link {
  border-radius: 100px;
  overflow: hidden; }
  .elespare-custom-link-button.elespare-button-style-5 .elespare-button-link .elespare-custom-link-icon {
    padding: 5px 10px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .elespare-custom-link-button.elespare-button-style-5 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-6 .elespare-button-link {
  gap: 10px;
  border-radius: 0 6px 6px 6px;
  overflow: hidden; }
  .elespare-custom-link-button.elespare-button-style-6 .elespare-button-link .elespare-custom-link-icon {
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.15);
    position: relative; }
    .elespare-custom-link-button.elespare-button-style-6 .elespare-button-link .elespare-custom-link-icon::after {
      content: "";
      border: 8px solid;
      border-color: transparent transparent transparent rgba(0, 0, 0, 0.15);
      position: absolute;
      top: 50%;
      left: 100%;
      transform: translateY(-50%); }
  .elespare-custom-link-button.elespare-button-style-6 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-7 .elespare-button-link {
  border-radius: 6px 0 0 0;
  overflow: hidden; }
  .elespare-custom-link-button.elespare-button-style-7 .elespare-button-link .elespare-custom-link-icon {
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    padding: 5px 20px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .elespare-custom-link-button.elespare-button-style-7 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-8 .elespare-button-link {
  border-radius: 100px;
  overflow: hidden; }
  .elespare-custom-link-button.elespare-button-style-8 .elespare-button-link .elespare-custom-link-icon {
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    padding: 5px 20px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .elespare-custom-link-button.elespare-button-style-8 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-9 .elespare-button-link {
  align-items: flex-start;
  border-radius: 6px; }
  .elespare-custom-link-button.elespare-button-style-9 .elespare-button-link .elespare-custom-link-icon {
    padding: 0 0 5px 10px; }
    .elespare-custom-link-button.elespare-button-style-9 .elespare-button-link .elespare-custom-link-icon i {
      background-color: rgba(0, 0, 0, 0.15);
      border-radius: 0 0 100px 100px;
      padding: 15px 10px 10px 10px;
      display: inline-block;
      text-align: center;
      line-height: 1; }
  .elespare-custom-link-button.elespare-button-style-9 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-10 .elespare-button-link {
  border-radius: 6px;
  overflow: hidden; }
  .elespare-custom-link-button.elespare-button-style-10 .elespare-button-link .elespare-custom-link-icon {
    clip-path: polygon(0% 0%, 75% 0, 100% 50%, 75% 100%, 0% 100%);
    padding: 5px 20px 5px 12px;
    background-color: rgba(0, 0, 0, 0.15); }
  .elespare-custom-link-button.elespare-button-style-10 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-11 .elespare-button-link {
  border-radius: 6px 0 6px 0;
  overflow: hidden; }
  .elespare-custom-link-button.elespare-button-style-11 .elespare-button-link .elespare-custom-link-icon {
    padding: 3px 0 3px 5px; }
    .elespare-custom-link-button.elespare-button-style-11 .elespare-button-link .elespare-custom-link-icon i {
      clip-path: circle(45% at 50% 50%);
      padding: 12px;
      background-color: rgba(0, 0, 0, 0.15);
      display: inline-block;
      line-height: 1; }
  .elespare-custom-link-button.elespare-button-style-11 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.elespare-button-style-12 .elespare-button-link {
  border-radius: 6px 6px 0 0;
  overflow: hidden; }
  .elespare-custom-link-button.elespare-button-style-12 .elespare-button-link .elespare-custom-link-icon {
    padding: 5px 0 5px 5px; }
    .elespare-custom-link-button.elespare-button-style-12 .elespare-button-link .elespare-custom-link-icon i {
      clip-path: circle(50% at 50% 50%);
      padding: 7px 8px;
      border: 2px solid currentColor;
      display: inline-block;
      line-height: 1;
      border-radius: 50%; }
  .elespare-custom-link-button.elespare-button-style-12 .elespare-button-link .elespare-custom-link-text {
    padding: 5px 10px; }

.elespare-custom-link-button.rounded .elespare-button-link {
  border-radius: 6px; }

.elespare-custom-link-button.circular .elespare-button-link {
  border-radius: 100px; }

.elespare-custom-link-button.circular .elespare-button-link .elespare-custom-link-icon {
  padding-left: 12px; }

.elespare-custom-link-button.circular.elespare-button-style-2 .elespare-button-link .elespare-custom-link-icon, .elespare-custom-link-button.circular.elespare-button-style-3 .elespare-button-link .elespare-custom-link-icon {
  padding-left: 2px; }

.elespare-custom-link-button.circular.elespare-button-style-11 .elespare-button-link .elespare-custom-link-icon, .elespare-custom-link-button.circular.elespare-button-style-12 .elespare-button-link .elespare-custom-link-icon {
  padding-left: 7px; }

.elespare-custom-link-button.rectangular .elespare-button-link {
  border-radius: 0; }

.elespare-custom-link-button.elespare-icon-position-right .elespare-button-link {
  flex-direction: row-reverse; }

.elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-4 .elespare-button-link {
  border-radius: 6px 0 6px 0; }
  .elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-4 .elespare-button-link .elespare-custom-link-icon {
    border-right: none;
    border-left: 1px solid rgba(0, 0, 0, 0.15); }

.elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-5 .elespare-button-link .elespare-custom-link-icon {
  padding: 5px 12px 5px 10px; }

.elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-6 .elespare-button-link {
  border-radius: 6px 0 6px 6px; }
  .elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-6 .elespare-button-link .elespare-custom-link-icon::after {
    border-color: transparent rgba(0, 0, 0, 0.15) transparent transparent;
    left: auto;
    right: 100%; }

.elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-7 .elespare-button-link {
  border-radius: 0 6px 0 0; }
  .elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-7 .elespare-button-link .elespare-custom-link-icon {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    padding: 5px 12px 5px 20px; }

.elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-8 .elespare-button-link .elespare-custom-link-icon {
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  padding: 5px 12px 5px 20px; }

.elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-9 .elespare-button-link .elespare-custom-link-icon {
  padding: 0 10px 5px 0; }

.elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-10 .elespare-button-link .elespare-custom-link-icon {
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  padding: 5px 12px 5px 20px; }

.elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-11 .elespare-button-link {
  border-radius: 0 6px 0 6px; }
  .elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-11 .elespare-button-link .elespare-custom-link-icon {
    padding: 3px 5px 3px 0; }

.elespare-custom-link-button.elespare-icon-position-right.elespare-button-style-12 .elespare-button-link .elespare-custom-link-icon {
  padding: 5px 5px 5px 0; }

.elespare-custom-link-button.elespare-icon-position-right.rounded .elespare-button-link {
  border-radius: 6px; }

.elespare-custom-link-button.elespare-icon-position-right.circular .elespare-button-link {
  border-radius: 100px; }

.elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-2 .elespare-button-link .elespare-custom-link-icon, .elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-3 .elespare-button-link .elespare-custom-link-icon {
  padding-left: 0;
  padding-right: 2px; }

.elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-4 .elespare-button-link .elespare-custom-link-icon, .elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-5 .elespare-button-link .elespare-custom-link-icon, .elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-6 .elespare-button-link .elespare-custom-link-icon, .elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-9 .elespare-button-link .elespare-custom-link-icon {
  padding-left: 10px;
  padding-right: 12px; }

.elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-7 .elespare-button-link .elespare-custom-link-icon, .elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-8 .elespare-button-link .elespare-custom-link-icon, .elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-10 .elespare-button-link .elespare-custom-link-icon {
  padding-left: 20px;
  padding-right: 12px; }

.elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-11 .elespare-button-link .elespare-custom-link-icon, .elespare-custom-link-button.elespare-icon-position-right.circular.elespare-button-style-12 .elespare-button-link .elespare-custom-link-icon {
  padding-left: 0;
  padding-right: 7px; }

.elespare-custom-link-button.elespare-icon-position-right.rectangular .elespare-button-link {
  border-radius: 0; }

body.rtl .elespare-custom-link-button .elespare-button-link {
  flex-direction: row-reverse; }

body.rtl .elespare-custom-link-button.elespare-icon-position-right .elespare-button-link {
  flex-direction: row; }
.elespare-copyright-wrapper .elespare-copyright-text a {
  text-decoration: none; }
.elespare-heading-wrapper .elespare-heading {
  margin: 0; }

.elespare-heading-wrapper.elespare-module-content a {
  text-decoration: none; }
.elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap {
  display: grid;
  column-gap: 10px;
  row-gap: 20px;
  grid-template-columns: repeat(4, 2fr); }
  .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-column-end: span 2;
    grid-row-end: span 1; }
  .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid {
    flex-direction: column;
    justify-content: flex-end;
    grid-column-end: span 2; }
    .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items {
      grid-template-columns: 1fr 1fr;
      grid-column-end: span 2; }
    .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper {
      border: none;
      padding: 15px;
      flex: 1; }
  .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid-lower {
    flex-direction: column;
    justify-content: flex-start;
    grid-column-end: span 4; }
    .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items {
      grid-template-columns: 1fr 1fr;
      grid-column-end: span 1; }
    .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper {
      border: none;
      flex: 1; }

.elespare-main-banner-wrap .elespare-section-trending {
  margin-top: 20px; }

.elespare-main-banner-wrap .main-banner-upper-section-wrap a, .elespare-main-banner-wrap .elespare-section-trending a {
  text-decoration: none; }

.elespare-main-banner-wrap .main-banner-upper-section-wrap .elespare-section-grid-lower {
  flex-direction: column;
  justify-content: flex-start;
  grid-column-end: span 4; }
  .elespare-main-banner-wrap .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items {
    grid-template-columns: 1fr 1fr;
    grid-column-end: span 1; }
  .elespare-main-banner-wrap .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper {
    border: none; }
  .elespare-main-banner-wrap .main-banner-upper-section-wrap .elespare-section-grid-lower:not(.has-background) .elespare-img-wrapper {
    overflow: hidden; }

.elespare-main-banner-wrap .main-banner-upper-section-wrap .elespare-section-grid:not(.has-background) .elespare-img-wrapper {
  overflow: hidden; }

.elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid {
  grid-column-start: 1;
  grid-row-start: 1; }

.elespare-main-banner-wrap .elespare-section-slider .elespare-carousel-wrap {
  overflow: hidden; }
  .elespare-main-banner-wrap .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items:not(:nth-child(1)) {
    display: none !important; }
  .elespare-main-banner-wrap .elespare-section-slider .elespare-carousel-wrap .elespare-posts-carousel-post-items.slick-slide:not(:nth-child(1)) {
    display: block !important; }

.elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items:not(:nth-child(1)), .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items:not(:nth-child(2)), .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items:not(:nth-child(3)) {
  display: none !important; }

.elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items.slick-slide:not(:nth-child(1)), .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items.slick-slide:not(:nth-child(2)), .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items.slick-slide:not(:nth-child(3)) {
  display: flex !important; }

.elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-zoom .elespare-img-wrapper a {
  overflow: hidden;
  display: block;
  height: 100%;
  width: 100%; }
  .elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-zoom .elespare-img-wrapper a img {
    transition: transform 0.3s ease; }

.elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-zoom:hover .elespare-img-wrapper a img {
  transform: scale(1.05); }

.elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-zoom-tilt .elespare-img-wrapper a {
  overflow: hidden;
  display: block;
  height: 100%;
  width: 100%; }
  .elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-zoom-tilt .elespare-img-wrapper a img {
    transition: transform 0.5s ease; }

.elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-zoom-tilt .elespare-img-wrapper:hover a img {
  transform: scale(1.2) rotate(5deg); }

.elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-grayscale .elespare-img-wrapper a img {
  transition: filter 0.5s ease;
  filter: grayscale(100%); }

.elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-grayscale .elespare-img-wrapper:hover a img {
  filter: grayscale(0); }

.elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-brightness .elespare-img-wrapper a {
  overflow: hidden;
  display: block;
  height: 100%;
  width: 100%; }
  .elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-brightness .elespare-img-wrapper a img {
    transition: transform 2s, filter 1.5s ease-in-out;
    transform-origin: center center;
    filter: brightness(100%); }

.elespare-main-banner-wrap .elespare-carousel-wrap.elespare-image-brightness .elespare-img-wrapper:hover a img {
  filter: brightness(150%); }

.elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-zoom .elespare-posts-grid-post-items .elespare-img-wrapper a {
  overflow: hidden;
  display: block;
  height: 100%;
  width: 100%; }
  .elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-zoom .elespare-posts-grid-post-items .elespare-img-wrapper a img {
    transition: transform 0.3s ease; }

.elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-zoom .elespare-posts-grid-post-items:hover .elespare-img-wrapper a img {
  transform: scale(1.05); }

.elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-zoom-tilt .elespare-posts-grid-post-items .elespare-img-wrapper a {
  overflow: hidden;
  display: block;
  height: 100%;
  width: 100%; }
  .elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-zoom-tilt .elespare-posts-grid-post-items .elespare-img-wrapper a img {
    transition: transform 0.5s ease; }

.elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-zoom-tilt .elespare-posts-grid-post-items:hover .elespare-img-wrapper a img {
  transform: scale(1.2) rotate(5deg); }

.elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-grayscale .elespare-posts-grid-post-items .elespare-img-wrapper a img {
  transition: filter 0.5s ease;
  filter: grayscale(100%); }

.elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-grayscale .elespare-posts-grid-post-items:hover .elespare-img-wrapper a img {
  filter: grayscale(0); }

.elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-brightness .elespare-posts-grid-post-items .elespare-img-wrapper a {
  overflow: hidden;
  display: block;
  height: 100%;
  width: 100%; }
  .elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-brightness .elespare-posts-grid-post-items .elespare-img-wrapper a img {
    transition: transform 2s, filter 1.5s ease-in-out;
    transform-origin: center center;
    filter: brightness(100%); }

.elespare-main-banner-wrap .elespare-posts-wrap.elespare-image-brightness .elespare-posts-grid-post-items:hover .elespare-img-wrapper a img {
  filter: brightness(150%); }

.elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items {
  position: relative; }
  .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px; }
  .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
    height: 390px;
    position: relative;
    display: block;
    line-height: 1.35;
    background: #dcdcdc; }
    .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
        transition: transform 0.3s ease; }
  .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper {
    position: absolute;
    padding: 15px;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.5) 50%, #000 100%);
      z-index: 0; }
    .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt,
    .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata {
      position: relative;
      z-index: 1;
      color: #fff; }

.elespare-main-banner-wrap.main-banner-style-1 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-1 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-2 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-2 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-3 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-3 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-4 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-4 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-7 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-7 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-8 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-8 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-9 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-9 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-10 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-10 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-11 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-11 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-12 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-12 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-15 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-15 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-16 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-16 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-17 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-17 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-18 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-18 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-19 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-19 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-20 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-20 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-23 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-23 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-24 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-24 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-25 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-25 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-26 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-26 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-27 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-27 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-28 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-28 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-31 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-31 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-32 .has-background .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-32 .has-background .elespare-section-grid-lower .elespare-posts-grid-post-items {
  border: none; }

.elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
  height: 390px; }

.elespare-main-banner-wrap.main-banner-style-1 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img {
  object-fit: cover; }

.elespare-main-banner-wrap.main-banner-style-1 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-2 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-3 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-4 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-7 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-8 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-9 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-10 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-11 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-12 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-15 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-16 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-25 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-26 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-27 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-28 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-31 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-32 .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
  position: relative; }
  .elespare-main-banner-wrap.main-banner-style-1 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-2 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-3 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-4 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-7 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-8 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-9 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-10 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-11 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-12 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-15 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-16 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-25 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-26 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-27 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-28 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-31 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-32 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img {
    object-fit: cover; }

.elespare-main-banner-wrap .elespare-posts-grid-wrap .elespare-img-wrapper img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease; }

.elespare-main-banner-wrap.main-banner-style-1 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-2 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-3 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-4 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-5 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-6 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-7 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-8 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-11 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-12 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-13 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-14 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-15 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-16 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-25 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-26 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-27 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-28 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-29 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-30 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-31 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-32 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul {
  top: auto;
  bottom: 15px;
  left: 15px; }

.elespare-main-banner-wrap.main-banner-style-9 .elespare-posts-wrap
.elespare-posts-carousel-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-10 .elespare-posts-wrap
.elespare-posts-carousel-post-items
.elespare-img-wrapper
ul {
  left: 10px;
  top: 15px; }

.elespare-main-banner-wrap.main-banner-style-9 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul, .elespare-main-banner-wrap.main-banner-style-10 .elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-img-wrapper
ul {
  top: auto;
  bottom: 15px;
  left: 15px; }

.elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper ul {
  top: auto;
  bottom: 15px;
  left: 15px; }

.elespare-main-banner-wrap.main-banner-style-17 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-18 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-19 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-20 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-21 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-22 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-23 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-24 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul {
  left: 15px; }

.elespare-main-banner-wrap.main-banner-style-17 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-18 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-19 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-20 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-21 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-22 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-23 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-24 .elespare-post-format-disabled .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul {
  left: 15px; }

.elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul {
  left: 45px;
  top: 15px; }

.elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul {
  top: 15px;
  right: auto;
  left: 45px;
  align-items: flex-start; }

.elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul {
  top: 15px;
  right: auto;
  left: 45px;
  align-items: flex-start; }

.elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul {
  left: 10px;
  top: 15px; }

.elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format {
  right: auto;
  left: 10px; }

.elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format {
  right: auto;
  left: 10px; }

.elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul, .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul {
  left: 15px; }

.elespare-section-grid .elespare-content-wrapper,
.elespare-section-grid-lower .elespare-content-wrapper {
  padding: 15px 0;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1; }
  .elespare-section-grid .elespare-content-wrapper .elespare-cat-links,
  .elespare-section-grid-lower .elespare-content-wrapper .elespare-cat-links {
    position: relative;
    z-index: 1; }
  .elespare-section-grid .elespare-content-wrapper .elespare-post-title,
  .elespare-section-grid-lower .elespare-content-wrapper .elespare-post-title {
    position: relative;
    z-index: 1; }
  .elespare-section-grid .elespare-content-wrapper .elespare-metadata,
  .elespare-section-grid-lower .elespare-content-wrapper .elespare-metadata {
    position: relative;
    z-index: 1; }

.elespare-main-banner-wrap.main-banner-style-1 .elespare-section-grid .elespare-content-wrapper,
.elespare-main-banner-wrap.main-banner-style-1 .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-grid .elespare-content-wrapper,
.elespare-main-banner-wrap.main-banner-style-2 .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-grid .elespare-content-wrapper,
.elespare-main-banner-wrap.main-banner-style-9 .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-grid .elespare-content-wrapper,
.elespare-main-banner-wrap.main-banner-style-10 .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-grid .elespare-content-wrapper,
.elespare-main-banner-wrap.main-banner-style-17 .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-grid .elespare-content-wrapper,
.elespare-main-banner-wrap.main-banner-style-18 .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-grid .elespare-content-wrapper,
.elespare-main-banner-wrap.main-banner-style-25 .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-grid .elespare-content-wrapper,
.elespare-main-banner-wrap.main-banner-style-26 .elespare-section-grid-lower .elespare-content-wrapper {
  height: auto;
  padding: 15px 0; }

.elespare-main-banner-wrap.main-banner-style-1 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-2 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-9 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-10 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-25 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-26 .elespare-posts-grid-wrap {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr); }
  .elespare-main-banner-wrap.main-banner-style-1 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-2 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-9 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-10 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-25 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-26 .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
    position: relative;
    min-height: 390px;
    grid-template-columns: repeat(4, 1fr); }
    .elespare-main-banner-wrap.main-banner-style-1 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-2 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-9 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-10 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-25 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
      height: 190px;
      position: relative;
      display: block;
      line-height: 1;
      background: #dcdcdc; }
      .elespare-main-banner-wrap.main-banner-style-1 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-2 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-9 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-10 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-25 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-26 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a {
        overflow: hidden;
        display: block;
        height: 100%;
        width: 100%; }

.elespare-main-banner-wrap.main-banner-style-3 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-11 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-12 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-27 .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-28 .elespare-posts-grid-wrap {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr); }
  .elespare-main-banner-wrap.main-banner-style-3 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-11 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-12 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-27 .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-28 .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
    position: relative;
    min-height: 390px;
    grid-template-columns: repeat(4, 1fr); }
    .elespare-main-banner-wrap.main-banner-style-3 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-11 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-12 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-27 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-28 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
      height: 190px;
      position: relative;
      display: block;
      line-height: 1;
      background: #dcdcdc; }
      .elespare-main-banner-wrap.main-banner-style-3 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-11 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-12 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-27 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-28 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a {
        overflow: hidden;
        display: block;
        height: 100%;
        width: 100%; }

.elespare-main-banner-wrap.main-banner-style-4 .elespare-posts-grid-wrap {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr); }
  .elespare-main-banner-wrap.main-banner-style-4 .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
    position: relative;
    height: 390px;
    grid-template-columns: repeat(4, 1fr); }
    .elespare-main-banner-wrap.main-banner-style-4 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
      height: 190px;
      position: relative;
      display: block;
      line-height: 1;
      background: #dcdcdc; }
      .elespare-main-banner-wrap.main-banner-style-4 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a {
        overflow: hidden;
        display: block;
        height: 100%;
        width: 100%; }

.elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items,
.elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items {
  flex-direction: column-reverse;
  display: flex; }

.elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap {
  display: grid;
  column-gap: 10px;
  row-gap: 20px;
  grid-template-columns: repeat(4, 3fr); }
  .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-slider {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-column-end: span 3;
    grid-row-end: span 1; }
  .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid {
    flex-direction: column;
    justify-content: flex-end;
    grid-column-end: span 1; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items {
      grid-template-columns: 1fr 1fr;
      grid-column-end: span 1; }
      .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items .elespare-content-wrapper {
        min-height: 171px; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper {
      border: none; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap {
      display: grid;
      grid-gap: 10px;
      grid-template-columns: 1fr; }
      .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-img-wrapper {
        height: 178px; }
  .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower {
    flex-direction: column;
    justify-content: flex-start;
    grid-column-end: span 4; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap {
      display: grid;
      grid-gap: 10px;
      grid-template-columns: repeat(4, 1fr); }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items {
      grid-template-columns: 1fr 1fr;
      grid-column-end: span 1; }
      .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper {
        height: 178px; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-content-wrapper {
      min-height: 175px; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper {
      border: none; }

.elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-dark .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-dark .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-dark .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-dark .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-dark .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-dark .elespare-posts-carousel-post-items .elespare-exceprt p {
  color: #fff; }

.elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items {
  position: relative; }
  .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px; }
  .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
    height: 560px;
    position: relative;
    display: block;
    line-height: 1; }
    .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
        transition: transform 0.3s ease; }
  .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper {
    padding: 15px 0;
    width: 100%;
    left: 0;
    z-index: 1;
    min-height: 149px; }
    .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata {
      position: relative;
      z-index: 1; }
  .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-exceprt, .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-exceprt, .elespare-main-banner-wrap.main-banner-style-13 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-exceprt, .elespare-main-banner-wrap.main-banner-style-14 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-exceprt, .elespare-main-banner-wrap.main-banner-style-21 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-exceprt, .elespare-main-banner-wrap.main-banner-style-22 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-exceprt {
    position: relative;
    z-index: 1;
    color: #000; }

.elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap {
  display: grid;
  column-gap: 10px;
  row-gap: 20px;
  grid-template-columns: repeat(4, 3fr); }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-slider {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-column-end: span 3;
    grid-row-end: span 1; }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid {
    flex-direction: column;
    justify-content: flex-end;
    grid-column-end: span 1; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items {
      grid-template-columns: 1fr 1fr;
      grid-column-end: span 1; }
      .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items .elespare-content-wrapper {
        min-height: 197px; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper {
      border: none; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap {
      display: grid;
      grid-gap: 10px;
      grid-template-columns: 1fr; }
      .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap .elespare-img-wrapper {
        height: 178px; }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower {
    flex-direction: column;
    justify-content: flex-start;
    grid-column-end: span 4; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap {
      display: grid;
      grid-gap: 10px;
      grid-template-columns: repeat(4, 1fr); }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items {
      grid-template-columns: 1fr 1fr;
      grid-column-end: span 1; }
      .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper {
        height: 178px; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-content-wrapper {
      min-height: 175px; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-content-wrapper {
      border: none; }

.elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-dark .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-dark .elespare-posts-carousel-post-items .elespare-exceprt p {
  color: #fff; }

.elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items {
  position: relative; }
  .elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px; }
  .elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
    height: 570px;
    position: relative;
    display: block;
    line-height: 1; }
    .elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
        transition: transform 0.3s ease; }
  .elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper {
    padding: 10px;
    width: 100%;
    left: 0;
    z-index: 1;
    min-height: 140px; }
    .elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata {
      position: relative;
      z-index: 1; }
  .elespare-main-banner-wrap.main-banner-style-29 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-exceprt, .elespare-main-banner-wrap.main-banner-style-30 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-exceprt {
    position: relative;
    z-index: 1;
    color: #000; }

.elespare-posts-wrap ul.elespare-cat-links li {
  margin-bottom: 0px; }

.elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-exceprt p,
.elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-exceprt p {
  margin-bottom: 5px; }

.elespare-main-banner-wrap.main-banner-style-5 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-6 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-13 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-14 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-29 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-exceprt p, .elespare-main-banner-wrap.main-banner-style-30 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-exceprt p {
  color: #222; }

.elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-slider {
  position: relative; }

.elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper {
  border: none; }

.elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-img-wrapper img, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-post-items {
  position: relative;
  transition: transform 0.3s ease; }
  .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-post-items x .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-post-items x .elespare-img-wrapper {
    width: 100%; }
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-post-items x .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-post-items x .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-post-items x .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-post-items x .elespare-img-wrapper a img {
        object-fit: cover; }
  .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
    padding: 15px;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    min-height: 140px; }
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-cat-links {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-post-title {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata {
      position: relative;
      z-index: 1; }

.elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items {
  position: relative; }
  .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px; }
  .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
    height: 540px;
    position: relative;
    display: block;
    line-height: 1; }
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0; }
  .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper {
    padding: 15px 0;
    width: 100%;
    left: 0;
    z-index: 1;
    min-height: 168px; }
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata {
      position: relative;
      z-index: 1; }

.elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
  position: relative;
  height: auto;
  transition: transform 0.3s ease; }
  .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
    height: 178px; }
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img {
        object-fit: cover; }

.elespare-main-banner-wrap.main-banner-style-13 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-14 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul {
  top: auto;
  bottom: 15px;
  left: 15px; }

.elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-slider {
  position: relative; }

.elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper {
  border: none; }

.elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-img-wrapper img, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-post-items {
  position: relative;
  transition: transform 0.3s ease; }
  .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
    width: 100%; }
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img {
        object-fit: cover; }
  .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
    padding: 15px;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    min-height: 155px; }
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-cat-links {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-post-title {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata {
      position: relative;
      z-index: 1; }

.elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items {
  position: relative; }
  .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px; }
  .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
    height: 530px;
    position: relative;
    display: block;
    line-height: 1; }
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0; }
  .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper {
    padding: 15px 0;
    width: 100%;
    left: 0;
    z-index: 1;
    min-height: 179px; }
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata {
      position: relative;
      z-index: 1; }

.elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
  position: relative;
  height: auto;
  transition: transform 0.3s ease; }
  .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
    height: 178px; }
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img {
        object-fit: cover; }

.elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-slider {
  position: relative; }

.elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-content-wrapper {
  border: none; }

.elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-img-wrapper img, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-post-items {
  position: relative;
  transition: transform 0.3s ease; }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
    width: 100%; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img {
        object-fit: cover; }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
    padding: 15px 0;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    height: auto; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-cat-links {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-post-title {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-post-items .elespare-content-wrapper .elespare-metadata {
      position: relative;
      z-index: 1; }

.elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items {
  position: relative; }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px; }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
    height: 585px;
    position: relative;
    display: block;
    line-height: 1; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0; }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper {
    padding: 15px 0;
    width: 100%;
    left: 0;
    z-index: 1;
    min-height: 175px; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-cat-links {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-post-title {
      position: relative;
      z-index: 1; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata {
      position: relative;
      z-index: 1; }

.elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
  position: relative;
  transition: transform 0.3s ease; }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
    height: 178px; }
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a {
      overflow: hidden;
      display: block;
      height: 100%;
      width: 100%; }
      .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a img {
        object-fit: cover; }

.elespare-main-banner-wrap.main-banner-style-29 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, .elespare-main-banner-wrap.main-banner-style-30 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul {
  top: auto;
  bottom: 0px; }

.elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-posts-grid-wrap {
  display: grid;
  column-gap: 10px;
  row-gap: 20px;
  grid-template-columns: repeat(4, 1fr); }
  .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
    position: relative;
    min-height: 390px;
    grid-template-columns: repeat(4, 1fr); }
    .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even) {
      flex-direction: column-reverse;
      display: flex; }
    .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(odd), .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(odd), .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(odd), .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(odd), .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(odd), .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(odd), .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(odd), .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(odd) {
      flex-direction: column; }
    .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
      height: 190px;
      position: relative;
      display: block;
      line-height: 1;
      background: #dcdcdc; }
      .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper a {
        overflow: hidden;
        display: block;
        height: 100%;
        width: 100%; }

.elespare-avatar-wrap {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  line-height: 1;
  overflow: hidden;
  margin-right: 5px; }

.elespare-avatar-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: inline !important; }

.elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap {
  overflow: hidden; }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .slick-list {
    margin: 0 -5px; }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a,
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a {
    overflow: hidden;
    display: block;
    height: 100%;
    width: 100%; }
    .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom [class*="elespare-posts-single"] .elespare-img-wrapper a img,
    .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom [class*="elespare-posts-"] .elespare-img-wrapper a img {
      transition: transform 0.3s ease; }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom [class*="elespare-posts-single"]:hover .elespare-img-wrapper a img,
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom [class*="elespare-posts-"]:hover .elespare-img-wrapper a img {
    transform: scale(1.05); }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a,
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a {
    overflow: hidden;
    display: block;
    height: 100%;
    width: 100%; }
    .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper a img,
    .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper a img {
      transition: transform 0.5s ease; }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom-tilt [class*="elespare-posts-single"] .elespare-img-wrapper:hover a img,
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-zoom-tilt [class*="elespare-posts-"] .elespare-img-wrapper:hover a img {
    transform: scale(1.2) rotate(5deg); }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper a img,
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper a img {
    transition: filter 0.5s ease;
    filter: grayscale(100%); }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-grayscale [class*="elespare-posts-single"] .elespare-img-wrapper:hover a img,
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-grayscale [class*="elespare-posts-"] .elespare-img-wrapper:hover a img {
    filter: grayscale(0); }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a,
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a {
    overflow: hidden;
    display: block;
    height: 100%;
    width: 100%; }
    .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper a img,
    .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper a img {
      transition: transform 2s, filter 1.5s ease-in-out;
      transform-origin: center center;
      filter: brightness(100%); }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-brightness [class*="elespare-posts-single"] .elespare-img-wrapper:hover a img,
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap.elespare-image-brightness [class*="elespare-posts-"] .elespare-img-wrapper:hover a img {
    filter: brightness(150%); }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items {
    min-height: 120px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 5px; }
    .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper {
      height: 123px;
      position: relative;
      width: 123px;
      background-color: #eee;
      align-self: flex-start;
      overflow: hidden; }
      .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper a {
        display: block;
        height: 100%;
        width: 150px; }
        .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper a img {
          margin: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          position: relative; }
      .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count {
        position: absolute;
        bottom: 5px;
        left: 5px;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1;
        background-color: #bb191a;
        border-radius: 100%;
        font-weight: 700;
        font-size: 12px; }
        .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-post-count-square {
          border-radius: 0;
          bottom: 0;
          left: 0; }
        .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-tl {
          top: 5px;
          bottom: inherit; }
        .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-tr {
          top: 5px;
          bottom: inherit;
          left: inherit;
          right: 5px; }
        .elespare-main-banner-wrap .elespare-section-trending .elespare-trending-wrap .elespare-posts-trending-post-items .elespare-img-wrapper .elespare-post-count.elespare-pst-cnt-br {
          left: inherit;
          right: 5px; }

.elespare-main-banner-wrap .elespare-section-trending.has-background .elespare-trending-wrap.elespare-light .slick-list {
  margin: 0 -2.5px; }

.elespare-main-banner-wrap .elespare-section-trending .elespare-content-wrapper {
  padding: 10px;
  flex: 1; }
  .elespare-main-banner-wrap .elespare-section-trending .elespare-content-wrapper ul.elespare-cat-links {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1;
    margin-bottom: 5px; }

.elespare-main-banner-wrap .main-banner-upper-section-wrap .elespare-section-grid.has-background .elespare-posts-wrap.elespare-light .elespare-posts-grid-post-items, .elespare-main-banner-wrap .main-banner-upper-section-wrap .elespare-section-grid-lower.has-background .elespare-posts-wrap.elespare-light .elespare-posts-grid-post-items {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-main-banner-wrap .main-banner-upper-section-wrap .elespare-section-slider.has-background .elespare-carousel-wrap {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-main-banner-wrap .elespare-section-trending.has-background .elespare-posts-wrap.elespare-light {
  margin: -5px 0; }
  .elespare-main-banner-wrap .elespare-section-trending.has-background .elespare-posts-wrap.elespare-light .slick-track {
    margin: 5px 0; }
  .elespare-main-banner-wrap .elespare-section-trending.has-background .elespare-posts-wrap.elespare-light .elespare-posts-trending-post-items {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); }

.elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-content-wrapper .elespare-metadata span {
  vertical-align: middle; }

.elementor-section-full_width .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
  height: 700px; }

.elementor-section-full_width .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-grid-wrap .elespare-posts-grid-post-items {
  min-height: 700px; }
  .elementor-section-full_width .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
    height: 450px; }

.elespare-main-banner-wrap
.elespare-posts-wrap
.elespare-posts-carousel-post-items
.elespare-content-wrapper,
.elespare-main-banner-wrap
.elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-content-wrapper,
.elespare-main-banner-wrap
.elespare-section-trending
.elespare-content-wrapper {
  text-align: left; }

.elementor-widget-main-banner-1 {
  width: 100%; }

@container (max-width: 768px) {
  .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap {
    grid-template-columns: 1fr;
    column-gap: 0 !important; }
    .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid {
      justify-content: flex-start;
      grid-column-end: span 4; }
    .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-slider {
      height: auto; }
    .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper {
      height: 240px; }
    .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap {
      grid-template-columns: repeat(2, 1fr); }
  .elespare-main-banner-wrap.main-banner-style-1 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-2 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-3 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-4 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-7 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-8 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-9 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-10 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-11 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-12 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-15 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-16 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-17 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-18 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-19 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-20 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-23 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-24 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-25 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-27 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-28 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-31 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-32 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
    height: 498px; }
  .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid {
    grid-column-start: auto;
    grid-row-start: auto; }
  .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap {
    grid-template-columns: 1fr;
    column-gap: 0; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid {
      flex-direction: column;
      justify-content: flex-start;
      grid-column-end: span 4; }
      .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
        display: grid; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-slider, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-slider {
      height: auto; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
      height: 495px; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
    .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-post-items .elespare-img-wrapper {
      height: 243px; }
    .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap {
      grid-template-columns: repeat(2, 1fr); }
  .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper,
  .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap .elespare-posts-grid-post-items .elespare-img-wrapper {
    height: 243px; } }

@container (max-width: 480px) {
  .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
    height: 240px; }
  .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap {
    grid-template-columns: 1fr; }
  .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items {
    grid-column-end: span 4; }
  .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap {
    grid-template-columns: 1fr; }
  .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap {
    grid-template-columns: 1fr; }
  .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper {
    height: 240px; }
  .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even), .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-posts-grid-wrap .elespare-posts-grid-post-items:nth-child(even) {
    flex-direction: column; } }

@container (max-width: 360px) {
  .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap {
    grid-template-columns: 1fr; }
  .elespare-main-banner-wrap.main-banner-style-1 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-2 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-3 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-4 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-7 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-8 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-9 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-10 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-11 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-12 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-15 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-16 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-17 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-18 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-19 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-20 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-23 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-24 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-25 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-26 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-27 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-28 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-31 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items, .elespare-main-banner-wrap.main-banner-style-32 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-post-items {
    grid-column-end: span 4; }
  .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid .elespare-posts-grid-wrap {
    grid-template-columns: 1fr; }
  .elespare-main-banner-wrap.main-banner-style-5 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-6 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-13 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-14 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-21 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-22 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-29 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap, .elespare-main-banner-wrap.main-banner-style-30 .main-banner-upper-section-wrap .elespare-section-grid-lower .elespare-posts-grid-wrap {
    grid-template-columns: 1fr; } }

body.rtl .elespare-main-banner-wrap .main-banner-upper-section-wrap {
  text-align: right; }

body.rtl .elespare-main-banner-wrap
.elespare-posts-wrap
.elespare-posts-carousel-post-items
.elespare-content-wrapper,
body.rtl .elespare-main-banner-wrap
.elespare-posts-wrap
.elespare-posts-grid-post-items
.elespare-content-wrapper,
body.rtl .elespare-main-banner-wrap
.elespare-section-trending
.elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-main-banner-wrap.main-banner-style-1 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-2 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-3 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-4 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-5 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-6 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-7 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-8 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-11 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-12 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-15 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-16 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-25 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-26 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-27 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-28 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-29 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-30 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-31 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-32 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul {
  right: 15px;
  left: unset; }

body.rtl .elespare-main-banner-wrap.main-banner-style-1 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-meta-category {
  padding-right: 0px; }

body.rtl .elespare-main-banner-wrap .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-content-wrapper {
  text-align: right; }

body.rtl .elespare-main-banner-wrap .elespare-section-trending-title .elespare-trending-wrap .slick-list {
  margin: 0 -10px; }

body.rtl .elespare-main-banner-wrap.main-banner-style-5 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-6 .elespare-section-carousel-title .elespare-posts-carousel-post-items .elespare-img-wrapper ul {
  right: 15px;
  left: unset; }

body.rtl .elespare-main-banner-wrap.main-banner-style-9 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-10 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul {
  right: 15px;
  left: unset; }

body.rtl .elespare-main-banner-wrap.main-banner-style-13 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-13 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-14 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-14 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul {
  right: 15px;
  left: unset; }

body.rtl .elespare-main-banner-wrap .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-main-banner-wrap .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format {
  right: auto;
  left: 10px; }

body.rtl .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, body.rtl .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, body.rtl .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, body.rtl .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, body.rtl .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, body.rtl .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, body.rtl .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul, body.rtl .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper.has-no-post-format ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper.has-no-post-format ul {
  right: 15px;
  left: unset; }

body.rtl .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper ul,
body.rtl .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul {
  right: 45px;
  left: auto; }

body.rtl .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, body.rtl .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, body.rtl .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, body.rtl .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, body.rtl .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, body.rtl .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, body.rtl .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format, body.rtl .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-grid-post-items .elespare-img-wrapper .elespare-post-format,
body.rtl .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper .elespare-post-format {
  right: 15px;
  left: auto; }

body.rtl .elespare-main-banner-wrap .elespare-section-trending-title .elespare-trending-wrap .elespare-posts-trending-post-items {
  padding-right: 0px; }

body.rtl .elespare-main-banner-wrap.main-banner-style-17 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-18 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-19 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-20 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-21 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-22 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-23 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul, body.rtl .elespare-main-banner-wrap.main-banner-style-24 .elespare-posts-wrap .elespare-posts-carousel-post-items .elespare-img-wrapper ul {
  left: auto;
  top: 15px;
  right: 45px; }

/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiIuL2VsZXNwYXJlLnN0eWxlLmJ1aWxkLm1pbi5jc3MiLCJzb3VyY2VSb290IjoiIn0=*/@charset "UTF-8";.ultp-accordion-item{display:flex;flex-direction:column}.ultp-accordion-item .ultp-listicon-bg{display:flex}.ultp-accordion-new{cursor:pointer;display:flex;align-items:center;justify-content:center;min-height:64px;border:2px dashed #070707;margin-top:12px}.ultp-accordion-new__wrapper{color:#070707;font-size:12px;display:flex;align-items:center;justify-content:center;gap:4px;border:1px solid #070707;padding:0 6px;border-radius:4px}.ultp-accordion-new__wrapper svg{height:16px;width:16px}.ultp-accordion-wrapper>.block-editor-inner-blocks>.block-editor-block-list__layout{display:flex;flex-direction:column}.ultp-accordion-wrapper .ultp-accordion-subtitle,.ultp-accordion-wrapper .ultp-accordion-title{-webkit-user-select:none;-moz-user-select:none;user-select:none}.ultp-accordion-wrapper .ultp-accordion-subtitle span,.ultp-accordion-wrapper .ultp-accordion-title span{color:#848484}.ultp-accordion__subtitle-left .ultp-accordion-item__text-content{flex-direction:row-reverse}.ultp-accordion__subtitle-right .ultp-accordion-item__text-content{flex-direction:row}.ultp-accordion__subtitle-top .ultp-accordion-item__text-content{flex-direction:column-reverse;align-items:flex-start}.ultp-accordion__subtitle-bottom .ultp-accordion-item__text-content{flex-direction:column;align-items:flex-start}.postx-page .wp-block-ultimate-post-accordion>.ultp-accordion-wrapper{display:flex;flex-direction:column}.wp-block-ultimate-post-accordion div[data-type="ultimate-post/accordion-item"]{width:100%;margin-top:0!important;margin-bottom:0!important}.ultp-filter-block{display:flex;flex-wrap:wrap}.ultp-search-inputwrap{display:flex;align-items:center;position:relative}.ultp-search-button{cursor:pointer}.ultp-backend-viewmore{text-align:center}.ultp-search-button__text{width:-moz-max-content;width:max-content}.ultp-searchpopup-icon{gap:10px;cursor:pointer;width:-moz-fit-content;width:fit-content}.ultp-searchform-content{position:relative}.ultp-search-button,.ultp-searchform-content,.ultp-searchpopup-icon{display:flex;align-items:center}.ultp-search-button svg,.ultp-searchpopup-active svg{height:20px;width:20px}.ultp-canvas-header,.ultp-search-inputwrap,.ultp-search-inputwrap input,.ultp-searchform-content input{width:100%}.ultp-search-inputwrap input{box-sizing:border-box!important}.ultp-search-inputwrap input::-moz-placeholder{color:#9e9e9e}.ultp-search-inputwrap input::placeholder{color:#9e9e9e}.ultp-search-inputwrap input:focus{outline:0!important;box-shadow:none!important}.ultp-searchform-content .ultp-search-clear{display:none;position:absolute}.ultp-searchform-content .ultp-search-clear.active{display:block}.ultp-searchform-content .ultp-search-clear svg{width:20px;height:13px;cursor:pointer;color:#8b8b8b}.ultp-searchform-input2 .ultp-search-clear,.ultp-searchform-input3 .ultp-search-clear{right:110px}.ultp-searchform-input2 .ultp-search-button,.ultp-searchform-input3 .ultp-search-button{position:absolute;bottom:auto!important;top:auto!important}.ultp-searchform-input2 .ultp-searchres-input,.ultp-searchform-input3 .ultp-searchres-input{padding-right:140px}.ultp-searchform-input1 .ultp-searchres-input,.ultp-searchform-input3 .ultp-searchres-input{height:46px}.ultp-searchform-input1 .ultp-search-clear{right:16px}.ultp-searchform-input1 .ultp-searchres-input{padding-right:40px}.ultp-searchform-input2 .ultp-searchres-input{height:60px}.ultp-searchform-input3 .ultp-search-button{height:100%;box-sizing:border-box;right:-1px;left:auto}.ultp-search-result{overflow:hidden;overflow-y:auto;position:relative;box-sizing:border-box;scrollbar-width:none;opacity:0!important;visibility:hidden!important}.ultp-search-result::-webkit-scrollbar{display:none}.ultp-search-result img.ultp-searchresult-image{max-width:-moz-max-content;max-width:max-content}.ultp-search-result .ultp-result-data{opacity:0;overflow:hidden;overflow-y:auto;transform:translateY(-106px);transition:all 1s ease}.ultp-search-result .ultp-search-result__item{display:flex;align-items:center;animation:searchAnimation .5s ease}.ultp-search-result:has(.ultp-result-data>.ultp-search-result__item) .ultp-result-data{opacity:1;transform:translateY(0);transition:all .5s ease}.ultp-search-result:has(.active),.ultp-search-result:has(.ultp-result-data>.ultp-search-result__item){opacity:1!important;visibility:visible!important}.ultp-search-result .ultp-searchresult-category a{margin-right:3px}.ultp-search-result .ultp-searchresult-category a:last-child{margin-right:0}.ultp-search-result .ultp-viewall-results{cursor:pointer;display:none;justify-content:center;-moz-column-gap:5px!important;column-gap:5px!important;border-bottom:none!important;min-height:40px}.ultp-search-result .ultp-viewall-results.active{display:flex!important}.ultp-search-dropdown{position:relative}.ultp-search-dropdown .ultp-search-result{width:100%;position:absolute;z-index:99}.ultp-rescontent-meta{display:flex;align-items:center;flex-wrap:wrap}.ultp-rescontent-meta>a,.ultp-rescontent-meta>div{display:flex;align-items:center}.ultp-rescontent-meta>a::after,.ultp-rescontent-meta>div::after{content:"";display:flex;align-items:center;border-radius:50%}.ultp-rescontent-meta>a:last-child::after,.ultp-rescontent-meta>div:last-child::after{display:none}.ultp-searchresult-excerpt{word-break:break-all}.ultp-search-canvas{width:100%;box-sizing:border-box;position:relative;z-index:9}.ultp-search-canvas .ultp-search-result,.ultp-search-canvas .ultp-searchform-content{width:100%;margin:0 auto}.ultp-search-noresult{display:none!important;min-height:40px}.ultp-search-noresult.active{display:flex!important;align-items:center;justify-content:center}.ultp-popupclose-icon{cursor:pointer;display:none;max-width:unset;height:30px;position:absolute;top:50px;right:80px;z-index:9999}.ultp-popupclose-icon.active{display:block!important}.ultp-popupclose-icon svg{width:30px}.ultp-result-loader,.ultp-viewmore-loader{height:15px;width:15px;display:none!important;margin:30px auto;transition:all 1s;padding:15px!important;box-sizing:border-box;border:none!important}.ultp-result-loader.active,.ultp-viewmore-loader.active{display:block!important;border-bottom:none!important;position:relative;animation:around 5.4s infinite}.ultp-result-loader.active:before,.ultp-viewmore-loader.active:before{content:"";width:100%;height:100%;display:inline-block;border-width:2px;border-color:#333 #333 transparent transparent;border-style:solid;box-sizing:border-box;border-radius:50%;position:absolute;top:0;left:0;animation:rotate .7s ease-in-out infinite;-webkit-animation:rotate .7s ease-in-out infinite}.ultp-result-loader.viewmore-active,.ultp-viewmore-loader.viewmore-active{opacity:1!important;visibility:visible!important;display:block!important}.ultp-result-loader{margin:15px auto 15px!important}.ultp-search-animation-fullwidth .ultp-search-canvas,.ultp-search-animation-top .ultp-search-canvas{display:flex;align-items:center;justify-content:center;flex-direction:column;visibility:hidden;z-index:999;top:-100%!important;transition:all 1s ease}.ultp-search-animation-fullwidth.popup-active,.ultp-search-animation-top.popup-active{top:0!important}.ultp-search-animation-fullwidth.popup-active .ultp-search-canvas,.ultp-search-animation-top.popup-active .ultp-search-canvas{visibility:visible;top:0!important}.ultp-search-animation-fullwidth.popup-active .ultp-popupclose-icon,.ultp-search-animation-top.popup-active .ultp-popupclose-icon{display:block!important}.ultp-search-animation-top .ultp-canvas-header{padding:80px 0 0}.ultp-search-animation-fullwidth .ultp-canvas-wrapper,.ultp-search-animation-fullwidth .ultp-search-canvas{height:100%}.ultp-search-animation-fullwidth .ultp-search-result{transition:all .5s ease!important}.ultp-search-animation-fullwidth .ultp-search-result:not(:has(.ultp-result-data>div)){display:flex;align-items:center;justify-content:center;flex-direction:column}.ultp-search-animation-fullwidth .ultp-search-result:has(.ultp-result-data>.ultp-search-result__item) .ultp-result-data{transition:all 1s ease-in-out!important}.ultp-search-animation-fullwidth .ultp-search-canvas:has(.ultp-search-clear.active) .ultp-search-result{box-shadow:8px 5px 26px -6px #8d8d8d;transition:all .5s ease-in-out}.ultp-search-popup{position:relative}.ultp-search-popup:has(.ultp-search-result>.ultp-result-data>div) .ultp-search-canvas{justify-content:flex-start!important}.ultp-search-popup .ultp-search-canvas{overflow-y:auto}.wp-block-ultimate-post-advanced-search.aligncenter .ultp-searchform-content{margin:0 auto}.wp-block-ultimate-post-advanced-search .ultp-pro-helper{background-color:#797add!important}.wp-block-ultimate-post-advanced-search .ultp-search-animation-fullwidth .ultp-canvas-wrapper,.wp-block-ultimate-post-advanced-search .ultp-search-animation-top .ultp-canvas-wrapper{display:flex;align-items:flex-start;width:100%;opacity:0;overflow:hidden!important;transition:.7s ease;box-sizing:border-box;background-color:#e2e2e2;position:absolute;z-index:999;right:0;top:0}.wp-block-ultimate-post-advanced-search .ultp-search-animation-fullwidth .ultp-canvas-wrapper .ultp-search-canvas,.wp-block-ultimate-post-advanced-search .ultp-search-animation-top .ultp-canvas-wrapper .ultp-search-canvas{position:static!important;transition:.7s ease;animation:topSlideAnimation 1s ease!important}.wp-block-ultimate-post-advanced-search .ultp-search-animation-fullwidth .ultp-canvas-wrapper .ultp-search-canvas:has(.ultp-result-data>.ultp-search-result__item),.wp-block-ultimate-post-advanced-search .ultp-search-animation-top .ultp-canvas-wrapper .ultp-search-canvas:has(.ultp-result-data>.ultp-search-result__item){animation:none}.wp-block-ultimate-post-advanced-search .ultp-search-animation-popup .ultp-canvas-wrapper{height:0}.wp-block-ultimate-post-advanced-search .ultp-search-animation-popup .ultp-canvas-wrapper.canvas-popup-active{opacity:1!important;visibility:visible!important;height:100%;transition:.7s}.wp-block-ultimate-post-advanced-search .ultp-search-animation-popup .ultp-canvas-wrapper,.wp-block-ultimate-post-advanced-search .ultp-search-animation-popup .ultp-search-canvas{opacity:0!important;visibility:hidden!important;transition:all .3s}.wp-block-ultimate-post-advanced-search .ultp-search-animation-popup.popup-active .ultp-search-canvas{transition:all .3s;opacity:1!important;visibility:visible!important}.wp-block-ultimate-post-advanced-search .ultp-search-animation-top .ultp-canvas-wrapper{height:0!important}.wp-block-ultimate-post-advanced-search .ultp-search-animation-top .ultp-canvas-wrapper .ultp-search-canvas{margin:20px 20px 0}.wp-block-ultimate-post-advanced-search .ultp-search-animation-top .ultp-canvas-wrapper.canvas-popup-active{opacity:1!important;height:20rem!important;overflow-y:auto!important;padding-bottom:40px}.wp-block-ultimate-post-advanced-search .ultp-search-animation-fullwidth .ultp-canvas-wrapper{height:0!important;display:flex;align-items:stretch}.wp-block-ultimate-post-advanced-search .ultp-search-animation-fullwidth .ultp-canvas-wrapper.canvas-popup-active{opacity:1!important;height:25rem!important;padding:40px}.wp-block-ultimate-post-advanced-search .ultp-search-animation-fullwidth .ultp-canvas-wrapper .ultp-search-canvas{height:auto!important}.ultp-search-container:has(.ultp-canvas-wrapper) .ultp-popupclose-icon{position:absolute!important}body:is(.admin-bar) .ultp-search-animation-top.popup-active .ultp-popupclose-icon{top:55px!important;right:55px!important}body .ultp-search-frontend .ultp-popupclose-icon,body .ultp-search-frontend .ultp-search-canvas{display:none!important}body .result-data{position:absolute;z-index:9999;visibility:hidden}body .result-data:not(.ultp-search-animation-popup,.ultp-search-animation-top,.ultp-search-animation-fullwidth) .ultp-search-result:has(.active),body .result-data:not(.ultp-search-animation-popup,.ultp-search-animation-top,.ultp-search-animation-fullwidth) .ultp-search-result:has(.ultp-result-data>.ultp-search-result__item){opacity:0!important;visibility:hidden!important}body .result-data.popup-active:not(.ultp-search-animation-popup,.ultp-search-animation-top,.ultp-search-animation-fullwidth){visibility:visible!important}body .result-data.popup-active:not(.ultp-search-animation-popup,.ultp-search-animation-top,.ultp-search-animation-fullwidth) .ultp-search-result:has(.active),body .result-data.popup-active:not(.ultp-search-animation-popup,.ultp-search-animation-top,.ultp-search-animation-fullwidth) .ultp-search-result:has(.ultp-result-data>.ultp-search-result__item){opacity:1!important;visibility:visible!important}body .result-data.ultp-search-animation-fullwidth,body .result-data.ultp-search-animation-top{position:fixed!important}body .result-data.ultp-search-animation-fullwidth .ultp-popupclose-icon,body .result-data.ultp-search-animation-top .ultp-popupclose-icon{width:-moz-fit-content!important;width:fit-content!important}body>.ultp-search-animation-fullwidth{width:100vw;position:fixed!important;top:0;height:0%;transition:5s ease;animation:topAnimation 1.5s ease;z-index:999}body>.ultp-search-animation-fullwidth .ultp-search-result:has(.active),body>.ultp-search-animation-fullwidth .ultp-search-result:has(.ultp-result-data>.ultp-search-result__item){opacity:0!important;visibility:hidden!important}body>.ultp-search-animation-fullwidth.popup-active{height:100%;transition:3s ease}body>.ultp-search-animation-fullwidth.popup-active .ultp-popupclose-icon{top:85px!important;right:80px!important}body>.ultp-search-animation-fullwidth.popup-active .ultp-search-result:has(.active),body>.ultp-search-animation-fullwidth.popup-active .ultp-search-result:has(.ultp-result-data>.ultp-search-result__item){opacity:1!important;visibility:visible!important}body>.ultp-search-animation-top{height:0%;width:100vw;top:-100%;transition:2s ease;animation:topAnimation .7s ease;z-index:999}body>.ultp-search-animation-top .ultp-search-result{padding-bottom:80px}body>.ultp-search-animation-top .ultp-search-result:has(.ultp-result-data>div){padding-bottom:0}body>.ultp-search-animation-top.popup-active{visibility:visible;height:-moz-fit-content;height:fit-content;transition:.9s ease}body>.ultp-search-animation-top.popup-active .ultp-popupclose-icon{top:25px!important;right:55px!important}body>.ultp-search-animation-popup{width:-moz-fit-content;width:fit-content;opacity:0;transition:.7s!important;animation:searchAnimation .4s ease!important}body>.ultp-search-animation-popup.popup-active{transition:.7s;opacity:1!important;visibility:visible!important}header .wp-block-ultimate-post-advanced-search:not(:has(.ultp-search-animation-top,.ultp-search-animation-fullwidth,.ultp-search-animation-popup)) .ultp-search-result,header .wp-block-ultimate-post-advanced-search:not(:has(.ultp-search-animation-top,.ultp-search-animation-fullwidth,.ultp-search-animation-popup)) .ultp-searchform-content{width:25vw}@keyframes searchAnimation{0%{opacity:0}100%{opacity:1}}@keyframes rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes topAnimation{0%{transform:translateY(-100%)}100%{transform:translateY(0)}}@keyframes topSlideAnimation{0%{transform:translateY(-100%);opacity:0}100%{transform:translateY(0);opacity:1}}@media only screen and (max-width:600px){body .popup-active.result-data .ultp-popupclose-icon{top:25px!important;right:36px!important}body.admin-bar .popup-active.result-data .ultp-popupclose-icon{top:35px!important;right:46px!important}}.popup-active .ultp-search-result.ultp-search-show,.ultp-search-result.ultp-result-show{opacity:1!important;visibility:visible!important;box-shadow:8px 5px 26px -6px #8d8d8d}.popup-active .ultp-search-result.ultp-search-show .ultp-result-data.ultp-result-show,.ultp-search-result.ultp-result-show .ultp-result-data.ultp-result-show{opacity:1;transform:translateY(0);transition:all .5s ease;opacity:1!important;visibility:visible!important}.ultp-search-result:not(:has(.active,.ultp-result-data>.ultp-search-result__item)){opacity:0!important;visibility:hidden!important}.wp-block-ultimate-post-advanced-list a{text-decoration:none!important}.wp-block-ultimate-post-advanced-list .ultp-list-separator{display:block}.wp-block-ultimate-post-advanced-list .ultp-list-wrapper{list-style:none;transition:.3s}.wp-block-ultimate-post-advanced-list .ultp-list-wrapper:hover{transition:.3s}.wp-block-ultimate-post-advanced-list .ultp-list-wrapper:has(.block-editor-block-list__layout){padding:0!important}.wp-block-ultimate-post-advanced-list .ultp-list-wrapper:has(>.wp-block-ultimate-post-list){width:-moz-max-content;width:max-content;max-width:-moz-fit-content;max-width:fit-content}.wp-block-ultimate-post-advanced-list .ultp-list-wrapper>li:last-child{border:none;padding-bottom:0;margin-bottom:0}.wp-block-ultimate-post-advanced-list .ultp-listicon-bg{width:-moz-fit-content;width:fit-content;display:flex;align-items:center;justify-content:center;transition:.3s}.wp-block-ultimate-post-advanced-list .ultp-listicon-bg:hover{transition:.3s}.wp-block-ultimate-post-advanced-list .ultp-listicon-bg svg{transition:.3s}.wp-block-ultimate-post-advanced-list .ultp-listicon-bg svg:hover{transition:.3s}.wp-block-ultimate-post-advanced-list .ultp-list-content{width:100%;box-sizing:border-box;justify-content:flex-start;transition:.3s}.wp-block-ultimate-post-advanced-list .ultp-list-content:hover{transition:.3s}.wp-block-ultimate-post-advanced-list .block-editor-block-list__layout{width:-moz-max-content;width:max-content;max-width:-moz-fit-content;max-width:fit-content;transition:.3s}.wp-block-ultimate-post-advanced-list .block-editor-block-list__layout:hover{transition:.3s}.wp-block-ultimate-post-advanced-list .block-editor-block-list__layout>.block-editor-block-list__block{margin:0!important;width:100%}.wp-block-ultimate-post-advanced-list .block-editor-inner-blocks:has(.block-list-appender)>.block-editor-block-list__layout>div{margin:0}.wp-block-ultimate-post-advanced-list .block-editor-inner-blocks:has(.block-list-appender)>.block-editor-block-list__layout>div:nth-last-child(2) li{border:none;padding-bottom:0!important;margin-bottom:0!important;padding-right:0!important;margin-right:0!important}.wp-block-ultimate-post-advanced-list .block-editor-inner-blocks>.block-editor-block-list__layout>div{margin:0}.wp-block-ultimate-post-advanced-list .block-editor-inner-blocks>.block-editor-block-list__layout>div:last-child li{border:none;padding-bottom:0!important;margin-bottom:0!important;padding-right:0!important;margin-right:0!important}.ultp-list-layout1,.ultp-list-layout3{list-style:none}.ultp-list-layout2{list-style:none;justify-content:flex-end}.ultp-list-layout2 .ultp-list-content{text-align:right;flex-direction:row-reverse}.ultp-list-layout2 .ultp-list-content:has(>.ultp-list-heading){flex-direction:row}.ultp-list-layout2 .ultp-list-heading{flex-direction:row-reverse!important}.ultp-list-layout3 li{list-style:none;color:#070c1a;border-width:0}.ultp-block-wrapper{transition:.4s;position:relative}.ultp-block-wrapper.ultp-loading-active .ultp-block-item{opacity:.2;transition:.4s}.ultp-block-wrapper.ultp-loading-active .ultp-loading{display:block}.ultp-block-wrapper .ultp-block-items-wrap .ultp-taxonomy-items{list-style:none;padding:0;margin:0;display:grid}.ultp-block-wrapper .ultp-block-items-wrap .ultp-taxonomy-items .ultp-taxonomy-item{list-style:none;line-height:0;margin-top:0}.ultp-block-wrapper .ultp-block-items-wrap .ultp-taxonomy-items .ultp-taxonomy-item a{width:100%;height:100%;line-height:0;overflow:hidden;transition:.4s;text-decoration:none!important;background-repeat:no-repeat;background-size:cover;background-position:center center;position:relative;box-sizing:border-box}.ultp-block-wrapper .ultp-block-items-wrap .ultp-taxonomy-items .ultp-taxonomy-item a .ultp-taxonomy-name{transition:.4s}.ultp-block-wrapper .ultp-filter-active-icon .filter-active::before{content:"<< "}.ultp-block-wrapper .ultp-filter-active-icon .filter-active::after{content:" >>"}.ultp-block-row{display:grid}.ultp-block-content-wrap{transition:.4s;overflow:hidden}.ultp-block-items-wrap{backface-visibility:hidden}.ultp-block-image{position:relative;overflow:hidden}.ultp-block-image img{display:block}.ultp-block-image .ultp-category-bottomLeft,.ultp-block-image .ultp-category-bottomRight,.ultp-block-image .ultp-category-centerCenter,.ultp-block-image .ultp-category-topLeft,.ultp-block-image .ultp-category-topRight{position:absolute;left:0;top:0;bottom:0;right:0;display:flex}.ultp-block-image .ultp-category-bottomLeft .ultp-category-in,.ultp-block-image .ultp-category-bottomRight .ultp-category-in,.ultp-block-image .ultp-category-centerCenter .ultp-category-in,.ultp-block-image .ultp-category-topLeft .ultp-category-in,.ultp-block-image .ultp-category-topRight .ultp-category-in{position:relative;z-index:2}.ultp-block-image .ultp-category-topLeft{-webkit-box-align:start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}.ultp-block-image .ultp-category-topRight{justify-content:flex-end;text-align:right;-webkit-box-align:start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}.ultp-block-image .ultp-category-topRight.ultp-category-grid a{margin-right:0}.ultp-block-image .ultp-category-bottomLeft{justify-content:flex-start;text-align:left;-webkit-box-align:end;-ms-flex-align:end;-ms-grid-row-align:flex-end;align-items:flex-end}.ultp-block-image .ultp-category-bottomRight{justify-content:flex-end;text-align:right;-webkit-box-align:end;-ms-flex-align:end;-ms-grid-row-align:flex-end;align-items:flex-end}.ultp-block-image .ultp-category-centerCenter{align-items:center;justify-content:center;text-align:center}.wp-block-ultimate-post-button-group .ultp-button-wrapper{position:relative}.wp-block-ultimate-post-button-group .ultp-button-wrapper.ultp-button-frontend{display:flex}.wp-block-ultimate-post-button-group .ultp-button-wrapper a{color:#fff;text-decoration:none!important}.wp-block-ultimate-post-button-group .ultp-button-wrapper .block-editor-inner-blocks{width:100%}.wp-block-ultimate-post-button-group .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout{display:flex}.wp-block-ultimate-post-button-group .ultp-button-wrapper .block-editor-inner-blocks .block-editor-block-list__layout>div{margin:0}.ultp-anim-style1 .wp-block-ultimate-post-button:before{opacity:1;width:10px}.ultp-anim-style1 .wp-block-ultimate-post-button:hover:before{width:100%}.ultp-anim-style1 .wp-block-ultimate-post-button.ultp-button-layout4:hover{background:#ffbf2f}.ultp-anim-style1 .wp-block-ultimate-post-button.ultp-button-layout4:before{background:#ffbf2f}.ultp-anim-style2 .wp-block-ultimate-post-button:before{width:100%;opacity:1}.ultp-anim-style2 .wp-block-ultimate-post-button:hover:before{opacity:1;width:10px}.ultp-anim-style2 .wp-block-ultimate-post-button.ultp-button-layout4{background:0 0}.ultp-anim-style2 .wp-block-ultimate-post-button.ultp-button-layout4:before{background:#ffbf2f}.ultp-anim-style3 .wp-block-ultimate-post-button{box-shadow:3px 3px 0 #ffb714}.ultp-anim-style3 .wp-block-ultimate-post-button:hover{box-shadow:none}.ultp-anim-style4 .wp-block-ultimate-post-button{box-shadow:none}.ultp-anim-style4 .wp-block-ultimate-post-button:hover{box-shadow:5px 5px 0 0 #000}.ultp-anim-style1 .wp-block-ultimate-post-button.ultp-button-layout2:before,.ultp-anim-style2 .wp-block-ultimate-post-button.ultp-button-layout2:before{background:#004cf7}.ultp-anim-style1 .wp-block-ultimate-post-button.ultp-button-layout3:before,.ultp-anim-style2 .wp-block-ultimate-post-button.ultp-button-layout3:before{background:#62adff}.wp-block-ultimate-post-dark-light .ultp-pro-helper{background-color:#2728e4;margin-bottom:10px}.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content .ultp-dl-con,.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content .ultp-dl-svg{display:flex;align-items:center;justify-content:space-between;width:-moz-fit-content;width:fit-content;height:-moz-fit-content;height:fit-content;flex-direction:row;cursor:pointer}.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content .ultp-dl-after-before-con{display:flex;justify-content:space-between;align-items:center;width:-moz-fit-content;width:fit-content}.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content .ultp-dl-after-before-con.ultp-dl-reverse{flex-direction:row-reverse}.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content .ultp-dl-after-before-con.inactive{display:none}.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content.layout5 .ultp-dl-con.ultp-dl-reverse,.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content.layout6 .ultp-dl-con.ultp-dl-reverse,.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content.layout7 .ultp-dl-con.ultp-dl-reverse{flex-direction:row-reverse}.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content.layout5 .ultp-dl-democircle.ultphidden,.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content.layout6 .ultp-dl-democircle.ultphidden,.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content.layout7 .ultp-dl-democircle.ultphidden{visibility:hidden}.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content.layout5 .ultp-dl-democircle,.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content.layout6 .ultp-dl-democircle,.ultp-dark-light-block-wrapper .ultp-dark-light-block-wrapper-content.layout7 .ultp-dl-democircle{border-radius:50%}.ultp-gallery-container{position:relative}.ultp-gallery-container .ultp-gallery-item{transition:top .3s,left .3s}.ultp-gallery-container .ultp-gallery-item img{box-sizing:border-box;display:block;height:100%;max-width:100%;width:100%;-o-object-fit:cover;object-fit:cover}.ultp-gallery-grid{display:grid!important}.ultp-gallery-masonry .ultp-gallery-item{position:absolute;width:100%}.ultp-gallery-media{position:relative;display:flex;flex-direction:column;height:100%}.ultp-gallery-media.ultp-action-onHover .ultp-gallery-action{display:none}.ultp-gallery-media.ultp-action-onHover:hover .ultp-gallery-action{display:flex!important}.ultp-gallery-media.ultp-action-offHover:hover .ultp-gallery-action{display:none!important}.ultp-gallery-media__caption{width:100%;display:flex;height:-moz-fit-content;height:fit-content}.ultp-gallery-media__caption-container{display:flex;position:absolute;top:0;left:0;height:100%;width:100%}.ultp-gallery-media.ultp-caption-onHover:hover .ultp-gallery-media__caption{display:flex!important}.ultp-gallery-media.ultp-caption-onHover .ultp-gallery-media__caption{display:none}.ultp-gallery-media.ultp-caption-offHover:hover .ultp-gallery-media__caption{display:none!important}.ultp-gallery-media.ultp-caption-offHover .ultp-gallery-media__caption{display:flex!important}.ultp-gallery-media.ultp-caption-top .ultp-gallery-media__caption-container{display:flex}.ultp-gallery-media.ultp-caption-middle .ultp-gallery-media__caption-container{display:flex;align-items:center}.ultp-gallery-media.ultp-caption-bottom .ultp-gallery-media__caption-container{display:flex;align-items:flex-end}.ultp-gallery-media.ultp-caption-outside-below .ultp-gallery-media__caption-container{position:static;height:-moz-fit-content;height:fit-content}.ultp-gallery-media.ultp-caption-outside-top .ultp-gallery-media__caption-container{position:static;order:-1}.ultp-gallery-media .ultp-image-block,.ultp-gallery-media__img-container{height:100%;width:100%}.ultp-gallery-action{display:flex;width:100%}.ultp-gallery-action>a{display:contents}.ultp-gallery-action>*{cursor:pointer;pointer-events:auto!important}.ultp-gallery-action svg{cursor:pointer;box-sizing:content-box}.ultp-gallery-action-container{position:absolute;top:0;left:0;height:100%;width:100%}.ultp-gallery-action-container.ultp-action-middle{display:flex;align-items:center}.ultp-gallery-action-container.ultp-action-bottom{display:flex;align-items:flex-end}.ultp-gallery-action-container.ultp-action-outside-below{position:static!important}.ultp-gallery-action-container.ultp-action-outside-top{order:-1;position:static!important}.ultp-gallery-grayscale img{filter:grayscale(1)}.ultp-gallery-sepia img{filter:sepia(.5)}.ultp-gallery-saturate img{filter:saturate(1.6)}.ultp-gallery-vintage img{filter:sepia(.2) brightness(1.1) contrast(1.3)}.ultp-gallery-earlybird img{filter:contrast(.9) sepia(.2)}.ultp-gallery-toaster img{filter:contrast(1.5) brightness(.9)}.ultp-gallery-myfair img{filter:contrast(1.1) saturate(1.1)}.ultp-gallery-settings__content-item{cursor:grab;transition:opacity .2s ease}.ultp-gallery-settings__content-item:active{cursor:grabbing}.ultp-gallery-settings__content-item.dragging{opacity:.5;cursor:grabbing!important}.ultp-gallery-settings__content-item.target{opacity:.6;border:2px dashed #037fff}.ultp-gallery-settings__modal .components-modal__header{height:45px!important;padding:24px 24px 8px!important}.ultp-gallery-settings__modal .components-modal__content{margin-top:52px;padding:4px 24px 24px;max-width:626px}.ultp-gallery-settings__heading{display:flex;align-items:center;justify-content:space-between;margin-bottom:21px}.ultp-gallery-settings__add-media{color:#fff;background-color:#037fff;padding:11px 24px;border-radius:4px;font-size:14px;line-height:16px;font-weight:500;display:flex;align-items:center;gap:5px;cursor:pointer}.ultp-gallery-settings__media-count{color:#585858;font-size:14px;line-height:16px}.ultp-gallery-settings__content{display:grid;grid-template-columns:1fr 1fr;gap:4px;overflow-y:scroll;overflow-x:hidden;max-height:300px}.ultp-gallery-settings__content-item{display:flex;position:relative;align-items:flex-end;justify-content:center;cursor:grab;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ultp-gallery-settings__content-item:active{cursor:grabbing}.ultp-gallery-settings__content-item.dragging{cursor:grabbing;opacity:1;box-shadow:0 0 10px rgba(0,0,0,.3)}.ultp-gallery-settings__content-item-action{position:absolute;color:#fff;padding:4px 5px;border:1px solid rgba(255,255,255,.5);background-color:rgba(7,7,7,.6980392157);border-radius:16px;margin-bottom:10px;display:flex;align-items:center;gap:1px;box-sizing:border-box}.ultp-gallery-settings__content-item-action span{font-size:16px;cursor:pointer;height:-moz-fit-content;height:fit-content}.ultp-gallery-link label{display:none!important}.ultp-gallery-query-tag{display:flex;gap:24px}.ultp-gallery-query-tag__get-tag-store{background-color:#ececec;font-size:11px;line-height:22px;padding:0 8px;width:-moz-fit-content;width:fit-content;border-radius:4px;cursor:pointer;margin-top:24px;display:flex;align-items:center;gap:3px;font-weight:500}.ultp-gallery-query-tag__get-tag-store span{font-size:15px;height:-moz-fit-content;height:fit-content}.ultp-gallery-query-tag__image-container{display:flex;flex-direction:column}.ultp-gallery-query-tag__image-container img{max-width:150px}.ultp-gallery-query-tag__image-container span{font-size:14px;margin-bottom:11px;color:#000;display:inline-block;max-width:141px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ultp-gallery-query-tag__new{display:flex;gap:10px;width:100%;margin-bottom:4px}.ultp-gallery-query-tag__new button{white-space:nowrap;color:#fff;background-color:#037fff;padding:11px 24px;border-radius:4px;font-size:14px;line-height:16px;font-weight:500;cursor:pointer;border-color:#037fff}.ultp-gallery-query-tag__new button.add-new-tag-btn{pointer-events:none;opacity:.5;cursor:not-allowed}.ultp-gallery-query-tag__new input{width:100%}.ultp-gallery-query-tag__new-help{font-style:italic;color:#333;font-size:10px;font-weight:500}.ultp-gallery-query-tag__tag-store{font-size:14px;color:#000;border-bottom:1px solid #000;margin-bottom:10px;padding-bottom:4px}.ultp-gallery-query-tag__tag-store span{font-size:12px;font-weight:600}.ultp-gallery-query-tag__selected-list{margin-bottom:20px}.ultp-gallery-query-tag__selected-list span{color:#037fff}.ultp-gallery-query-tag__selected-list span span{height:10px}.ultp-gallery-query-tag__selected-list span:hover span{color:red}.ultp-gallery-query-tag__selected-list>div{font-size:14px;font-weight:500;color:red}.ultp-gallery-query-tag__existing-tag{color:rgba(3,127,255,.8392156863)!important}.ultp-gallery-query-tag__existing-tag:hover{color:#0050a3!important}.ultp-gallery-query-tag__existing-tag.tag-disable{pointer-events:none;cursor:not-allowed;color:#000!important;opacity:.6}.ultp-gallery-query-tag__existing-tag,.ultp-gallery-query-tag__selected-list>span{border-radius:4px;display:flex;gap:3px;width:-moz-fit-content;width:fit-content;box-sizing:border-box;cursor:pointer;color:#000;opacity:.3s}.ultp-gallery-query-tag__existing-tag-container{background-color:#f7f7ff;padding:15px;margin-top:18px;border-radius:10px}.ultp-gallery-query-tag__existing-tag-container.remove-tag-active .ultp-gallery-query-tag__existing-tag span{color:red!important}.ultp-gallery-query-tag__existing-tag-container span:hover{color:#037fff}.ultp-gallery-query-tag__existing-tag-container,.ultp-gallery-query-tag__selected-list{display:flex;flex-wrap:wrap;gap:11px}.ultp-gallery-query-tag__existing-tag-container span{border:0!important}.ultp-gallery-query-tag__existing-tag-container span:hover{border-color:#037fff}.ultp-gallery-query-tag__existing-tag-container span span{transform:scale(.8)}.ultp-gallery-query-tag__remove-tag{display:flex;align-items:center;background-color:#ececec;font-size:11px;line-height:22px;padding:0 8px;width:-moz-fit-content;width:fit-content;border-radius:4px;cursor:pointer;margin-top:24px;display:flex;align-items:center;gap:3px;font-weight:500}.ultp-gallery-query-tag__remove-tag.removing-done span{color:#037fff!important}.ultp-gallery-query-tag__remove-tag span{color:red;height:14px;font-size:14px}.ultp-gallery-loadMore{width:-moz-fit-content;width:fit-content;margin:0 auto;transition:.3s;cursor:pointer}.ultp-gallery-query-link{min-width:350px}.ultp-gallery-query-link__bottom-content{display:flex;justify-content:space-between;align-items:center;margin-top:15px}.ultp-gallery-query-link__bottom-content__cancel{color:#fff;background-color:#037fff;padding:11px 24px;border-radius:4px;font-size:14px;line-height:16px;font-weight:500;display:flex;align-items:center;gap:5px;cursor:pointer;background-color:unset!important;border:1px solid #037fff;color:#037fff}.ultp-gallery-query-link__bottom-content__add-link{color:#fff;background-color:#037fff;padding:11px 24px;border-radius:4px;font-size:14px;line-height:16px;font-weight:500;display:flex;align-items:center;gap:5px;cursor:pointer}.ultp-gallery-link-page{max-height:200px;background:#e7e4f1;overflow-y:scroll;overflow-x:hidden;padding:10px 0;margin:12px 0 20px 0}.ultp-gallery-link-page__single-page{padding:0 10px;cursor:pointer}.ultp-gallery-link-page__label{color:#000;font-weight:500;text-align:center;margin-top:20px}.ultp-gallery-link__no-page{color:red;text-align:center;font-weight:500;margin-top:9px;margin-bottom:20px}.ultp-gallery-filter{display:flex;align-items:center;flex-wrap:wrap}.ultp-gallery-filter__item{cursor:pointer}.postx-admin-page .ultp-gallery-lightbox{position:fixed;top:0;left:0;width:100%;width:100%;height:100%;background:rgba(0,0,0,.9490196078);display:flex;align-items:center;justify-content:center;z-index:999}.postx-admin-page .ultp-gallery-lightbox__content{position:relative;margin-bottom:10px;display:flex;align-items:center;width:100%}.postx-admin-page .ultp-gallery-lightbox__content img{height:480px;transition:transform .3s ease}.postx-admin-page .ultp-gallery-lightbox__inside{width:100%}.postx-admin-page .ultp-gallery-lightbox__right-icon{margin-left:auto;pointer-events:auto;margin-right:50px}.postx-admin-page .ultp-gallery-lightbox__left-icon{margin-right:auto;margin-left:50px}.postx-admin-page .ultp-gallery-lightbox__gallery{display:flex;justify-content:center}.postx-admin-page .ultp-gallery-lightbox__gallery-item{max-width:50px;border:1px solid rgba(255,255,255,0)}.postx-admin-page .ultp-gallery-lightbox__gallery-item.lightbox-active{border:1px solid #fff}.postx-admin-page .ultp-gallery-lightbox__control{top:61px;display:flex!important}.ultp-gallery-lightbox__control{position:fixed;top:0;background:#333;display:none;align-items:center;width:-moz-fit-content;width:fit-content;gap:17px;right:0;padding:6px;z-index:10000000000000000}.ultp-gallery-lightbox__control>div{display:flex;align-items:center}.ultp-gallery-lightbox__control svg{cursor:pointer;color:#fff;fill:transparent!important;height:25px;width:25px;pointer-events:auto!important}.ultp-gallery-lightbox__close{cursor:pointer;pointer-events:auto;z-index:999}.ultp-gallery-lightbox__close svg{height:16px;width:16px;top:35px;right:30px;z-index:9999999999;cursor:pointer}.ultp-gallery-lightbox__close svg path{fill:#fff}.ultp-gallery-lightbox__indicator-control{height:20px;width:20px}.ultp-lightbox{position:fixed;top:0;left:0;height:100%;width:100%;z-index:999999999;background-color:rgba(0,0,0,.9490196078);display:flex;align-items:center;justify-content:center}.ultp-lightbox img{margin:auto;height:430px;transition:transform .3s ease}.ultp-lightbox__inside{display:flex;align-items:center;justify-content:space-between}.ultp-lightbox__container{width:100%}.ultp-lightbox__left-icon{margin-left:20px;cursor:pointer}.ultp-lightbox__right-icon{margin-right:20px;cursor:pointer}.ultp-lightbox-indicator{display:flex;justify-content:center;max-width:1100px;margin:0 auto;margin-top:20px}.ultp-lightbox-indicator__item{cursor:pointer}.ultp-lightbox-indicator__item img{width:50px!important;border:1px solid rgba(255,255,255,0);height:50px!important}.ultp-lightbox-indicator__item.lightbox-active img{border:1px solid #fff}.ultp-lightbox__img{pointer-events:all!important}.ultp-lightbox__caption{position:absolute;bottom:0;z-index:999999999999;width:100%;background:#d7d7d7}.ultp-lightbox__img-container{position:relative;display:flex;text-align:center}.ultp-lightbox__img-container img{height:500px!important}.postx-admin-page .ultp-gallery-lightbox__left-icon,.postx-admin-page .ultp-gallery-lightbox__right-icon{display:flex;pointer-events:all!important;cursor:pointer}.postx-admin-page .ultp-gallery-lightbox__left-icon svg,.postx-admin-page .ultp-gallery-lightbox__right-icon svg{pointer-events:none!important}.postx-admin-page .ultp-gallery-lightbox__close svg{height:18px;width:18px}.ultp-gallery-toolbar-group.ultp-menu-toolbar-group{align-items:center}.ultp-gallery-toolbar-group.ultp-menu-toolbar-group .ultp-menu-toolbar-add-item{height:-moz-fit-content;height:fit-content}.ultp-gallery-img-data__content{display:flex;width:100%;gap:20px;min-width:415px;margin-top:8px}.ultp-gallery-img-data__content-img-container{max-width:100px}.ultp-gallery-img-data__content-img-container img{width:100%;height:100%}.ultp-gallery-img-data__content-field-container{width:100%}.ultp-gallery-img-data__caption{margin-bottom:18px}.ultp-no-gallery-message{display:none;text-align:center;padding:0 10px 40px;font-size:18px;font-weight:500;color:#777}.ultp-gallery-lightbox__left-icon,.ultp-gallery-lightbox__right-icon,.ultp-lightbox__left-icon,.ultp-lightbox__right-icon{background-color:#333;height:50px;width:50px;display:flex;align-items:center;justify-content:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ultp-gallery-lightbox__left-icon svg,.ultp-gallery-lightbox__right-icon svg,.ultp-lightbox__left-icon svg,.ultp-lightbox__right-icon svg{color:#fff;height:30px;width:30px}.ultp-gallery-item:hover .ultp-gallery-opacity img{opacity:.5}.gallery-postx{display:none;gap:16px;position:absolute;top:0;width:100%}.gallery-postx.gallery-active{display:grid;grid-template-columns:1fr 1fr 1fr 1fr}.gallery-img,.skeleton-box{width:100%;padding-top:75%;border-radius:8px;position:relative;overflow:hidden;background:#eee}.skeleton-box::before{content:"";position:absolute;top:0;bottom:0;right:0;left:0;background:linear-gradient(90deg,#eee,#f5f5f5,#eee);background-size:200% 100%;animation:shimmer 1.2s infinite linear}@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}.gallery-img{position:absolute;top:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover;opacity:0;transition:opacity .3s ease-in}.loaded{opacity:1}.ultp-gallery-wrapper{position:relative;transition:opacity .3s}.postx-page .ultp-gallery-container{animation:ultpGalleryOpacity 2s ease-in}@keyframes ultpGalleryOpacity{0%{opacity:.1}100%{opacity:1}}body:has(.ultp-builder-container):has(.alignfull),body:has(.ultp-template-container):has(.alignfull){overflow-x:hidden}.wp-block-ultimate-post-image .ultp-image-button{pointer-events:none}.wp-block-ultimate-post-image .ultp-image-button a{pointer-events:auto}.wp-block-ultimate-post-image .ultp-image-block img.inactive{display:none!important}.ultp-template-container{box-sizing:border-box}.ultp-template-container .ultp-image{max-width:100%}.ultp-template-container .ultp-block-image img{max-width:100%}.ultp-template-container .alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);width:100vw;max-width:100vw;left:0;right:0}.ultp-image{max-width:100%}.ultp-block-image img{max-width:100%}.ultp-gallery-media .ultp-image-block.ultp-block-image-roateLeft img,.ultp-gallery-media .ultp-image-block.ultp-block-image-rotateRight img,.ultp-gallery-media .ultp-image-block.ultp-block-image-slideLeft img,.ultp-gallery-media .ultp-image-block.ultp-block-image-slideRight img,.ultp-gallery-media .ultp-image-block.ultp-block-image-zoomIn img,.ultp-gallery-media .ultp-image-block.ultp-block-image-zoomOut img{transition:.4s!important}.ultp-image-block.ultp-block-image-zoomOut img,.ultp-image-block.ultp-image-block-roateLeft img,.ultp-image-block.ultp-image-block-rotateRight img,.ultp-image-block.ultp-image-block-zoomIn img,.ultp-image-block.ultp-image-block-zoomOut img{transition:.4s}.ultp-gallery-item .ultp-image-block,.ultp-image-block{display:inline-block;overflow:hidden;position:relative;transition:.4s}.ultp-gallery-item .ultp-image-block.ultp-loading-active,.ultp-image-block.ultp-loading-active{position:relative}.ultp-gallery-item .ultp-image-block.ultp-loading-active img,.ultp-image-block.ultp-loading-active img{opacity:.5!important}.ultp-gallery-item .ultp-image-block.ultp-loading-active svg,.ultp-image-block.ultp-loading-active svg{height:50px;width:50px;position:absolute;top:calc(50% - 25px);left:calc(50% - 25px);z-index:999}.ultp-gallery-item .ultp-image-block .ultp-imag-empty,.ultp-image-block .ultp-imag-empty{background:#f5f5f5;width:400px;height:250px;position:relative;border:1px solid #e5e5e5;border-radius:0}.ultp-gallery-item .ultp-image-block .ultp-imag-empty>span,.ultp-image-block .ultp-imag-empty>span{right:0;top:20px;position:absolute;width:100%;display:inline-block;text-align:center;cursor:pointer;z-index:3}.ultp-gallery-item .ultp-image-block .ultp-imag-empty>span span,.ultp-image-block .ultp-imag-empty>span span{position:relative;border:2px dashed #c3c3c3;padding:8px 20px 8px 30px;border-radius:4px;background:#dadada;font-size:18px!important;display:inline-block}.ultp-gallery-item .ultp-image-block .ultp-imag-empty>span span:before,.ultp-image-block .ultp-imag-empty>span span:before{content:"\f317";font-family:dashicons;position:absolute;left:8px;top:6px;font-size:20px}.ultp-gallery-item .ultp-image-block .ultp-image-button,.ultp-image-block .ultp-image-button{position:absolute;left:0;top:0;bottom:0;right:0;display:flex;z-index:2}.ultp-gallery-item .ultp-image-block .ultp-image-button a,.ultp-image-block .ultp-image-button a{height:-moz-fit-content;height:fit-content;display:inline-block;transition:.4s}.ultp-gallery-item .ultp-image-block .ultp-image-button a:hover,.ultp-image-block .ultp-image-button a:hover{text-decoration:none}.ultp-gallery-item .ultp-image-block .ultp-image-button.ultp-image-button-centerCenter,.ultp-image-block .ultp-image-button.ultp-image-button-centerCenter{align-items:center;justify-content:center;text-align:center}.ultp-gallery-item .ultp-image-block .ultp-image-button.ultp-image-button-leftTop,.ultp-image-block .ultp-image-button.ultp-image-button-leftTop{-webkit-box-align:start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}.ultp-gallery-item .ultp-image-block .ultp-image-button.ultp-image-button-rightTop,.ultp-image-block .ultp-image-button.ultp-image-button-rightTop{justify-content:flex-end;text-align:right;-webkit-box-align:start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}.ultp-gallery-item .ultp-image-block .ultp-image-button.ultp-image-button-bottomLeft,.ultp-image-block .ultp-image-button.ultp-image-button-bottomLeft{justify-content:flex-start;text-align:left;-webkit-box-align:end;-ms-flex-align:end;-ms-grid-row-align:flex-end;align-items:flex-end}.ultp-gallery-item .ultp-image-block .ultp-image-button.ultp-image-button-bottomRight,.ultp-image-block .ultp-image-button.ultp-image-button-bottomRight{justify-content:flex-end;text-align:right;-webkit-box-align:end;-ms-flex-align:end;-ms-grid-row-align:flex-end;align-items:flex-end}.ultp-gallery-item .ultp-image-block a,.ultp-image-block a{display:contents}.ultp-gallery-item .ultp-image-block.ultp-image-block-opacity,.ultp-image-block.ultp-image-block-opacity{overflow:hidden}.ultp-gallery-item .ultp-image-block.ultp-image-block-opacity img,.ultp-image-block.ultp-image-block-opacity img{transition:opacity .4s ease-in-out}.ultp-gallery-item .ultp-image-block.ultp-image-block-zoomIn img,.ultp-image-block.ultp-image-block-zoomIn img{transform:scale(1)}.ultp-gallery-item .ultp-image-block.ultp-image-block-zoomOut img,.ultp-image-block.ultp-image-block-zoomOut img{transform:scale(1.3)}.ultp-gallery-item .ultp-image-block.ultp-image-block-roateLeft img,.ultp-image-block.ultp-image-block-roateLeft img{transform:rotate(0) scale(1)}.ultp-gallery-item .ultp-image-block.ultp-image-block-rotateRight img,.ultp-image-block.ultp-image-block-rotateRight img{transform:rotate(0) scale(1)}.ultp-gallery-item .ultp-image-block.ultp-image-block-opacity img,.ultp-image-block.ultp-image-block-opacity img{opacity:1}.ultp-gallery-item .ultp-image-block.ultp-image-block-overlay:before,.ultp-image-block.ultp-image-block-overlay:before{bottom:0;content:"";display:block;width:100%;position:absolute;z-index:1;pointer-events:none}.ultp-gallery-item .ultp-image-block.ultp-image-block-overlay.ultp-image-block-custom:before,.ultp-image-block.ultp-image-block-overlay.ultp-image-block-custom:before{height:100%}.ultp-gallery-item .ultp-image-block.ultp-image-block-overlay.ultp-image-block-default:before,.ultp-image-block.ultp-image-block-overlay.ultp-image-block-default:before{background-color:#000;opacity:.6;height:100%}.ultp-gallery-item .ultp-image-block.ultp-image-block-overlay.ultp-image-block-simgleGradient:before,.ultp-image-block.ultp-image-block-overlay.ultp-image-block-simgleGradient:before{background:linear-gradient(to bottom,rgba(0,0,0,.4) 20%,#000 90%);opacity:.6;height:100%}.ultp-gallery-item .ultp-image-block.ultp-image-block-overlay.ultp-image-block-multiColour:before,.ultp-image-block.ultp-image-block-overlay.ultp-image-block-multiColour:before{opacity:.75;box-shadow:inset 0 0 50px 0 rgba(0,0,0,.4);height:100%;background:#d760b7;background:-webkit-gradient(left top,right bottom,color-stop(0,#d760b7),color-stop(100%,#3b78b4));background:linear-gradient(135deg,#d760b7 0,#3b78b4 100%)}.ultp-gallery-item .ultp-image-block.ultp-image-block-overlay.ultp-image-block-flat:before,.ultp-image-block.ultp-image-block-overlay.ultp-image-block-flat:before{opacity:.8;height:100%;background:#292484;background:-webkit-gradient(left bottom,right top,color-stop(0,#292484),color-stop(100%,#dc4225));background:linear-gradient(20deg,#292484 0,#dc4225 100%)}.ultp-gallery-container,.ultp-image-block-wrapper{margin:0!important;display:inline-block;width:100%}.ultp-gallery-container .ultp-image,.ultp-image-block-wrapper .ultp-image{display:block!important}.ultp-gallery-container .ultp-image-block,.ultp-image-block-wrapper .ultp-image-block{vertical-align:middle}.ultp-gallery-container .ultp-image-caption,.ultp-image-block-wrapper .ultp-image-caption{line-height:normal}.ultp-gallery-container .ultp-image-block:hover.ultp-image-block-zoomIn img,.ultp-image-block-wrapper .ultp-image-block:hover.ultp-image-block-zoomIn img{transform:scale(1.3)}.ultp-gallery-container .ultp-image-block:hover.ultp-image-block-zoomOut img,.ultp-image-block-wrapper .ultp-image-block:hover.ultp-image-block-zoomOut img{transform:scale(1)}.ultp-gallery-container .ultp-image-block:hover.ultp-image-block-roateLeft img,.ultp-image-block-wrapper .ultp-image-block:hover.ultp-image-block-roateLeft img{transform:rotate(5deg) scale(1.3)}.ultp-gallery-container .ultp-image-block:hover.ultp-image-block-rotateRight img,.ultp-image-block-wrapper .ultp-image-block:hover.ultp-image-block-rotateRight img{transform:rotate(-5deg) scale(1.3)}.ultp-gallery-container .ultp-image-block:hover.ultp-image-block-opacity img,.ultp-image-block-wrapper .ultp-image-block:hover.ultp-image-block-opacity img{opacity:.5}.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content,.wp-block-ultimate-post-menu .ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout{display:flex;flex-direction:column;flex-wrap:wrap}.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content .hasMenuParent>.ultp-menu-item-wrapper>.ultp-menu-item-label-container .ultp-menu-item-label-text,.wp-block-ultimate-post-menu .ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout .hasMenuParent>.ultp-menu-item-wrapper>.ultp-menu-item-label-container .ultp-menu-item-label-text{white-space:nowrap!important}.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.block-editor-block-list__block,.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.wp-block-ultimate-post-menu-item,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-editor-block-list__block,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block-ultimate-post-menu-item{height:auto!important}.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.block-editor-block-list__block>.wp-block-ultimate-post-menu-item,.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.wp-block-ultimate-post-menu-item>.wp-block-ultimate-post-menu-item,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-editor-block-list__block>.wp-block-ultimate-post-menu-item,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block-ultimate-post-menu-item>.wp-block-ultimate-post-menu-item{height:100%}.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.block-editor-block-list__block>.ultp-menu-item-wrapper,.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.block-editor-block-list__block>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper,.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper,.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.wp-block-ultimate-post-menu-item>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-editor-block-list__block>.ultp-menu-item-wrapper,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-editor-block-list__block>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block-ultimate-post-menu-item>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper{height:100%}.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.block-editor-block-list__block>.ultp-menu-item-wrapper>.ultp-menu-item-label-container,.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.block-editor-block-list__block>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-label-container,.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-label-container,.postx-page .wp-block-ultimate-post-menu .ultp-menu-wrapper>.ultp-menu-content>.wp-block-ultimate-post-menu-item>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-label-container,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-editor-block-list__block>.ultp-menu-item-wrapper>.ultp-menu-item-label-container,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-editor-block-list__block>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-label-container,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-label-container,.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block-ultimate-post-menu-item>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-label-container{height:100%;box-sizing:border-box}.ultp-menu-wrapper._left>.ultp-menu-content{margin-right:auto;justify-content:start}.ultp-menu-wrapper._left>.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout{justify-content:start}.ultp-menu-wrapper._center>.ultp-menu-content{margin-left:auto;margin-right:auto;justify-content:center}.ultp-menu-wrapper._center>.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout{justify-content:center}.ultp-menu-wrapper._right>.ultp-menu-content{margin-left:auto;justify-content:end}.ultp-menu-wrapper._right>.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout{justify-content:end}.wp-block-ultimate-post-menu:has(>.ultp-menu-wrapper._left) .ultp-mv-ham-icon{margin-right:auto}.wp-block-ultimate-post-menu:has(>.ultp-menu-wrapper._center) .ultp-mv-ham-icon{margin-left:auto;margin-right:auto}.wp-block-ultimate-post-menu:has(>.ultp-menu-wrapper._right) .ultp-mv-ham-icon{margin-left:auto}.wp-block-ultimate-post-menu .ultp-mv-ham-icon{width:-moz-fit-content;width:fit-content}.ultp-menu-content{width:-moz-fit-content;width:fit-content}.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender{right:-34px}.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-content>.block-editor-inner-blocks{display:none}.wp-block-ultimate-post-menu-item{height:auto;cursor:pointer;position:relative}.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-content>.block-editor-inner-blocks{position:absolute;width:-moz-max-content;width:max-content;z-index:9}.ultp-menu-wrapper .wp-block.has-child-selected>.wp-block-ultimate-post-list-menu>.ultp-list-menu-wrapper>.ultp-list-menu-content>.block-editor-inner-blocks,.ultp-menu-wrapper .wp-block.is-selected>.wp-block-ultimate-post-list-menu>.ultp-list-menu-wrapper>.ultp-list-menu-content>.block-editor-inner-blocks{display:block}.ultp-menu-wrapper .wp-block.has-child-selected>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-content>.block-editor-inner-blocks,.ultp-menu-wrapper .wp-block.is-selected>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-content>.block-editor-inner-blocks{display:block}.postx-page .wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-content{visibility:hidden;opacity:0;transform:translateY(20px);pointer-events:none;transition-property:opacity,visibility,transform;transition-timing-function:ease-in;transition-duration:.28s;z-index:-99}.postx-page .wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-content>*{height:0;overflow:hidden}.postx-page .wp-block-ultimate-post-menu:is(:not(.ultp-mobile-menu)) .wp-block-ultimate-post-menu-item:hover{z-index:999}.postx-page .wp-block-ultimate-post-menu:is(:not(.ultp-mobile-menu)) .wp-block-ultimate-post-menu-item:hover>.ultp-menu-item-wrapper>.ultp-menu-item-content{visibility:visible;opacity:1;transform:translateY(0);pointer-events:visible;z-index:0}.postx-page .wp-block-ultimate-post-menu:is(:not(.ultp-mobile-menu)) .wp-block-ultimate-post-menu-item:hover>.ultp-menu-item-wrapper>.ultp-menu-item-content>*{height:unset;overflow:unset}.postx-page .wp-block-ultimate-post-menu-item{height:-moz-fit-content;height:fit-content;cursor:pointer;position:relative;z-index:0}.postx-page .wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-content{position:absolute;width:-moz-max-content;width:max-content;z-index:1}.postx-page .wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-content::before{content:"";position:absolute;min-height:100%;min-width:100%;background:0 0;z-index:-4}.ultp-mega-menu-wrapper{cursor:auto;box-sizing:border-box}.ultp-menu-item-label-container{justify-content:space-between}.ultp-menu-item-label-container a.ultp-menu-item-label{text-decoration:none!important}.ultp-mobile-view-container .ultp-mv-icons{display:none}.ultp-mv-ham-icon{cursor:pointer;display:none}.wp-block[data-type="ultimate-post/list-menu"],.wp-block[data-type="ultimate-post/mega-menu"],.wp-block[data-type="ultimate-post/menu-item"]{margin:0!important}.ultp-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-label-container:not(:has(.ultp-menu-item-dropdown>svg)),.ultp-menu-content>.wp-block-ultimate-post-menu-item>.ultp-menu-item-wrapper>.ultp-menu-item-label-container:not(:has(.ultp-menu-item-dropdown>svg)){gap:0}.wp-block-ultimate-post-column>.ultp-column-wrapper>.block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block[data-type="ultimate-post/menu"]{width:100%}ul.ultp-news-ticker,ul.ultp-news-ticker li{width:100%;padding:0!important;margin-bottom:0;list-style-type:none!important}.ultp-newsTicker-wrap{overflow:hidden;position:relative;border:none;background:unset}.ultp-block-items-wrap>.ultp-newsTicker-wrap{box-sizing:content-box}.ultp-newstick-marquee .ultp-news-ticker li{margin-top:0!important;margin-right:0!important}.ultp-newstick-horizontal .ultp-news-ticker li{margin-top:0!important}.ultp-newstick-typewriter .ultp-news-ticker li,.ultp-newstick-vertical .ultp-news-ticker li{margin:0}.ultp-news-ticker-label{position:relative;width:auto;color:#fff;line-height:normal;display:flex;align-items:center;position:absolute;z-index:11;top:0;bottom:0;left:auto;float:left;background:#1974d2;border-bottom-right-radius:0;border-top-right-radius:0;margin:0;padding-top:0!important;padding-bottom:0!important;padding:0 10px}.ultp-news-ticker-label::after{content:"";display:block;width:0;height:0;border-top:22.7px solid;border-left:24px solid;border-bottom:22.7px solid;position:absolute;z-index:1}.editor-styles-wrapper .ultp-newsTicker-wrap ul li,.ultp-news-ticker li{display:inline-block}.editor-styles-wrapper .ultp-newsTicker-wrap ul li a,.ultp-news-ticker li a{display:flex;align-items:center}.editor-styles-wrapper .ultp-newsTicker-wrap ul li img,.ultp-news-ticker li img{height:30px!important;-o-object-fit:cover;object-fit:cover;display:inline}.editor-styles-wrapper .ultp-newsTicker-wrap ul li div,.ultp-news-ticker li div{position:relative;width:-moz-max-content;width:max-content;height:100%;white-space:nowrap;display:flex;align-items:center;justify-content:flex-start}.editor-styles-wrapper .ultp-newsTicker-wrap ul li div img,.ultp-news-ticker li div img{height:30px!important;-o-object-fit:cover;object-fit:cover;display:block}.editor-styles-wrapper .ultp-newsTicker-wrap ul li div span,.ultp-news-ticker li div span{display:block}.editor-styles-wrapper .ultp-newsTicker-wrap ul li div .ultp-ticker-timebadge,.ultp-news-ticker li div .ultp-ticker-timebadge{margin-left:7px}.rtl .ultp-ticker-timebadge{margin-left:auto;margin-right:7px}.ultp-news-ticker-box{height:100%;overflow:hidden}.ultp-news-ticker-box ul{width:100%;list-style-type:none!important;padding:0;margin:0!important}.ultp-news-ticker-box ul li a{text-decoration:none}.ultp-news-ticker-controls{display:flex;display:-ms-flexbox;align-items:center;position:absolute;height:100%;right:0;top:0}.ultp-news-ticker-controls button{display:inline-block;height:45px;width:40px;border:none;border-radius:0;padding:0;cursor:pointer;background:0 0}.ultp-news-ticker-controls button.ultp-news-ticker-arrow{display:inline-block;border:none;margin:0;position:relative}.ultp-news-ticker-controls button.ultp-news-ticker-pause{position:relative;display:inline-block}.ultp-news-ticker-controls .ultp-news-ticker-arrow{border-radius:0}.ultp-news-ticker-controls .ultp-news-ticker-pause{border:none!important}.rtl .ultp-news-ticker-controls{left:0!important;right:auto}.ultp-list-box{position:relative}.ultp-list-box::before{content:" ";position:absolute;width:7px;height:7px;border:none;left:-24px;box-sizing:border-box}.ultp-list-circle::before{content:" ";position:absolute;width:7px;height:7px;border:none;left:-24px;border-radius:50px}.ultp-list-hand::before{transition:.4s;content:"☞";padding-right:15px;font-size:20px}.ultp-list-right-sign::before{transition:.4s;content:"➢";padding-right:15px;font-size:20px}.ultp-list-right-bold::before{transition:.4s;content:"▶";padding-right:15px;font-size:20px}.ultp-newstick-marquee ul{display:flex;align-items:center}.ultp-newstick-marquee ul li{width:-moz-fit-content;width:fit-content;display:block!important}.ultp-newstick-marquee ul li a{white-space:nowrap}.ultp-newstick-marquee ul li span{white-space:nowrap}.ultp-nav-Angle2 button.ultp-news-ticker-arrow{display:flex;align-items:center;justify-content:center}.ultp-nav-Angle2 svg{width:17px;display:block}.ultp-nav-Angle2 button.ultp-news-ticker-pause:before{position:absolute;content:"";width:10px;height:13px;border-color:#999;border-style:solid;border-width:0 2px 0;transform:translate(-50%,-50%);left:50%;top:50%;box-sizing:border-box}.ultp-nav-icon2 svg{width:20px}.ultp-nav-icon2 button.ultp-news-ticker-pause:before{position:absolute;content:"";width:12px;height:17px;border-style:solid;border-width:0 3.5px;box-sizing:border-box;transform:translate(-50%,-50%);left:50%;top:50%}.ultp-nav-icon2 .ultp-news-ticker-prev::before{content:" ";width:0;height:0;display:block;border-top:10px solid transparent;border-right:13px solid;border-bottom:10px solid transparent;margin-left:auto}.ultp-nav-icon2 .ultp-news-ticker-next::before{content:" ";width:0;height:0;border-top:10px solid transparent;border-left:13px solid;border-bottom:10px solid transparent;display:block;margin-right:auto}.ultp-nav-Angle button.ultp-news-ticker-arrow{display:flex;align-items:center;justify-content:center}.ultp-nav-Angle svg{width:20px;display:block}.ultp-nav-Angle button.ultp-news-ticker-pause:before{position:absolute;content:"";width:12px;height:15px;border-style:solid;border-width:0 3.5px;box-sizing:border-box;transform:translate(-50%,-50%);left:50%;top:50%}.ultp-nav-ArrowLg button.ultp-news-ticker-arrow{display:flex;align-items:center;justify-content:center}.ultp-nav-ArrowLg svg{width:20px;display:block}.ultp-nav-ArrowLg button.ultp-news-ticker-pause:before{position:absolute;content:"";width:12px;height:15px;border-style:solid;border-width:0 3.5px;box-sizing:border-box;transform:translate(-50%,-50%);left:50%;top:50%}.ultp-news-ticker-nav1 .ultp-news-ticker-next::before,.ultp-news-ticker-nav1 .ultp-news-ticker-prev::before{margin:0 auto}.ultp-news-ticker-nav1 .ultp-news-ticker-controls{padding-left:0}.ultp-news-ticker-nav2 .ultp-news-ticker-arrow{width:28px;height:26px!important;border-radius:2px;margin:0 5px!important}.ultp-news-ticker-nav2 .ultp-news-ticker-controls{padding:0 10px}.ultp-news-ticker-nav2 .ultp-news-ticker-next::before,.ultp-news-ticker-nav2 .ultp-news-ticker-prev::before{margin:0 auto}.ultp-news-ticker-nav3 .ultp-news-ticker-controls button.ultp-news-ticker-prev:after{right:-2px;left:auto}.ultp-news-ticker-nav3 .ultp-news-ticker-controls button.ultp-news-ticker-next:after{left:7px;right:auto}.ultp-news-ticker-nav3 .ultp-news-ticker-controls button.ultp-news-ticker-next:after{left:7px;right:auto}.ultp-news-ticker-nav3 .ultp-news-ticker-controls button.ultp-news-ticker-pause:before{width:8px;border-width:0 3px;box-sizing:border-box}.ultp-news-ticker-nav3 .ultp-news-ticker-pause:after{content:"";width:25px;height:25px;display:block;border-width:0 4px;border-radius:26px;background:rgba(0,0,0,.14);margin:0 auto}.ultp-news-ticker-nav3 .ultp-news-ticker-arrow{width:26px}.ultp-news-ticker-nav3 .ultp-news-ticker-next::before{margin-left:5px}.ultp-news-ticker-nav3 .ultp-news-ticker-prev::before{margin-right:5px}.ultp-news-ticker-nav3.ultp-nav-icon2 button.ultp-news-ticker-pause:before{height:10px}.ultp-news-ticker-nav4 .ultp-news-ticker-controls{padding-right:10px;padding-left:10px}.ultp-news-ticker-nav4 .ultp-news-ticker-controls button{width:auto;height:auto;background-color:transparent;margin:0 8px}.ultp-news-ticker-nav4 .ultp-news-ticker-controls button.ultp-news-ticker-arrow{background:0 0}.ultp-news-ticker-controls.ultp-news-ticker-horizontal-controls button.ultp-news-ticker-prev:after{transform:translate(-50%,-50%) rotate(135deg)}.ultp-news-ticker-controls.ultp-news-ticker-horizontal-controls button.ultp-news-ticker-next:after{transform:translate(-50%,-50%) rotate(315deg)}.ultp-news-ticker-controls.ultp-news-ticker-vertical-controls button.ultp-news-ticker-prev:after{transform:translate(-50%,-50%) rotate(133deg)}.ultp-news-ticker-controls.ultp-news-ticker-vertical-controls button.ultp-news-ticker-next:after{transform:translate(-50%,-50%) rotate(317deg)}.rtl .ultp-news-ticker-controls.ultp-news-ticker-horizontal-controls button.ultp-news-ticker-prev:after{transform:translate(-50%,-50%) rotate(135deg)}.rtl .ultp-news-ticker-controls.ultp-news-ticker-horizontal-controls button.ultp-news-ticker-next:after{transform:translate(-50%,-50%) rotate(315deg)}.rtl .ultp-news-ticker-controls.ultp-news-ticker-vertical-controls button.ultp-news-ticker-prev:after{transform:translate(-50%,-50%) rotate(133deg)}.rtl .ultp-news-ticker-controls.ultp-news-ticker-vertical-controls button.ultp-news-ticker-next:after{transform:translate(-50%,-50%) rotate(317deg)}.rtl .ultp-nav-Angle2 svg,.rtl .ultp-news-ticker-controls button.ultp-news-ticker-arrow svg{transform:rotate(180deg)}.rtl .ultp-nav-icon2 .ultp-news-ticker-prev::before{transform:rotate(180deg)}.rtl .ultp-nav-icon2 .ultp-news-ticker-next::before{transform:rotate(-180deg)}.ultp-newstick-marquee .ultp-news-ticker{width:-moz-fit-content!important;width:fit-content!important}.ultp-newstick-marquee .active{display:block!important;animation:none!important}.ultp-newstick-typewriter .active .title-text{height:100%;overflow:hidden;white-space:nowrap;letter-spacing:.1px!important;padding:2px 5px 2px 0;width:-moz-fit-content;width:fit-content;animation:typing 3.5s steps(40,end),blink-caret .75s step-end infinite;border-right:.15em solid #000}.ultp-newstick-typewriter .ultp-animation-normal .active{display:block!important}.ultp-newstick-typewriter .ultp-animation-fadein .active{display:block!important;animation:FadeIn 5s}.ultp-newstick-typewriter .ultp-animation-fadeout .active{display:block!important;animation:FadeOut ease-out 1s}.rtl .ultp-newstick-typewriter .title-text{border-left:.15em solid #000;border-right:none;padding-left:5px}.ultp-news-ticker{position:relative}.ultp-news-ticker li{display:none}ul.ultp-news-ticker .active{display:block!important}.ultp-animation-slide.ultp-sliderDir-left .active{display:block!important;animation:left-animation 3s}.rtl .ultp-animation-slide.ultp-sliderDir-left .active{display:block!important;animation:left-rtl 3s!important}.ultp-animation-slide.ultp-sliderDir-right .active{display:block!important;animation:right-animation 3s}.rtl .ultp-animation-slide.ultp-sliderDir-right .active{display:block!important;animation:right-rtl 3s}.ultp-animation-slide.ultp-sliderDir-up .active{display:block!important;animation:up-animation 1s}.ultp-animation-slide.ultp-sliderDir-down .active{display:block!important;animation:down-animation 1s}.ultp-animation-fadein .active{display:block!important;animation:FadeIn 2s}.ultp-animation-fadeout .active{display:block!important;animation:FadeOut 1s}@keyframes left-animation{from{margin-left:-100%}to{margin-left:0}}@keyframes left-rtl{from{margin-right:100%}to{margin-right:0}}@keyframes right-animation{from{margin-left:100%}to{margin-left:0}}@keyframes right-rtl{from{margin-right:-100%}to{margin-right:0}}@keyframes up-animation{from{margin-top:-100px}to{margin-top:0;margin-bottom:0}}@keyframes down-animation{from{margin-top:100px}to{margin-top:0;margin-bottom:0}}@keyframes FadeIn{from{opacity:0}to{opacity:1}}@keyframes FadeOut{from{opacity:1}to{opacity:0}}@keyframes typing{from{width:0}to{width:100%}}@keyframes blink-caret{50%{border-color:transparent}}@media (min-width:768px){.ultp-newsTicker-wrap{margin-top:0}}@media (max-width:575px){.ultp-news-ticker-label{display:none!important}.ultp-news-ticker-box{padding-left:10px!important;padding-right:120px}.ultp-newsTicker-wrap{margin:0}}.ultp-builder-container{margin:0 auto}.ultp-builder-container.ultp-widget-right{display:grid;grid-column-gap:30px;grid-template-columns:70% auto}.ultp-builder-container.ultp-widget-left{display:grid;grid-column-gap:30px;grid-template-columns:auto 70%}.ultp-builder-container .alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);width:100vw;max-width:100vw;left:0;right:0}@media (max-width:992px){.ultp-builder-container.ultp-widget-left,.ultp-builder-container.ultp-widget-right{grid-template-columns:100%;grid-row-gap:40px}.ultp-builder-container .ultp-sidebar-left{grid-row:2}}.elementor-editor-active .ultp-progressbar-top,.ultp-progressbar-top{top:0;left:0}.admin-bar .ultp-progressbar-top{top:32px}.ultp-progressbar-bottom{bottom:0;left:0}.wp-block-ultimate-post-post-grid-1 .ultp-block-image{display:block;width:-moz-fit-content;width:fit-content}.ultp-pg1a-style2.ultp-block-column-2 .ultp-block-item:first-child{grid-column:1/3;grid-row:1}.ultp-pg1a-style2.ultp-block-column-3 .ultp-block-item:first-child{grid-column:1/4;grid-row:1}.ultp-pg1a-style2.ultp-block-column-4 .ultp-block-item:first-child{grid-column:1/5;grid-row:1}.ultp-pg1a-style2.ultp-block-column-5 .ultp-block-item:first-child{grid-column:1/6;grid-row:1}.ultp-pg1a-style3 .ultp-block-item:nth-child(1){grid-column:1/3;grid-row:1}.ultp-pg1a-style3 .ultp-block-item:nth-child(4){grid-column:1/3;grid-row:3}.ultp-pg1a-style3 .ultp-block-item:nth-child(7){grid-column:1/3;grid-row:5}.ultp-pg1a-style3 .ultp-block-item:nth-child(10){grid-column:1/3;grid-row:7}.ultp-pg1a-style3 .ultp-block-item:nth-child(13){grid-column:1/3;grid-row:9}.ultp-pg1a-style3 .ultp-block-item:nth-child(16){grid-column:1/3;grid-row:11}.ultp-pg1a-style3 .ultp-block-item:nth-child(19){grid-column:1/3;grid-row:13}.ultp-pg1a-style3 .ultp-block-item:nth-child(22){grid-column:1/3;grid-row:15}.ultp-pg1a-style3 .ultp-block-item:nth-child(25){grid-column:1/3;grid-row:17}.ultp-pg1a-style3 .ultp-block-item:nth-child(28){grid-column:1/3;grid-row:19}.ultp-pg1a-style3 .ultp-block-item:nth-child(31){grid-column:1/3;grid-row:21}.ultp-pg1a-style3 .ultp-block-item:nth-child(34){grid-column:1/3;grid-row:23}.ultp-pg1a-style4{grid-template-columns:repeat(6,1fr)!important}.ultp-pg1a-style4 .ultp-block-item:nth-child(1){grid-column-start:1;grid-column-end:4;grid-row-start:1;grid-row-end:2}.ultp-pg1a-style4 .ultp-block-item:nth-child(2){grid-column-start:4;grid-column-end:7;grid-row-start:1;grid-row-end:2}.ultp-pg1a-style4 .ultp-block-item:nth-child(3){grid-column-start:1;grid-column-end:3;grid-row-start:2;grid-row-end:3}.ultp-pg1a-style4 .ultp-block-item:nth-child(4){grid-column-start:3;grid-column-end:5;grid-row-start:2;grid-row-end:3}.ultp-pg1a-style4 .ultp-block-item:nth-child(5){grid-column-start:5;grid-column-end:7;grid-row-start:2;grid-row-end:3}.ultp-pg1a-style4 .ultp-block-item:nth-child(6){grid-column:1/3;grid-row:3}.ultp-pg1a-style4 .ultp-block-item:nth-child(7){grid-column:3/5;grid-row:3}.ultp-pg1a-style4 .ultp-block-item:nth-child(8){grid-column:5/7;grid-row:3}.ultp-pg1a-style4 .ultp-block-item:nth-child(9){grid-column:1/3;grid-row:4}.ultp-pg1a-style4 .ultp-block-item:nth-child(10){grid-column:3/5;grid-row:4}.ultp-pg1a-style4 .ultp-block-item:nth-child(11){grid-column:5/7;grid-row:4}.ultp-pg1a-style4 .ultp-block-item:nth-child(12){grid-column:1/3;grid-row:5}.ultp-pg1a-style4 .ultp-block-item:nth-child(13){grid-column:3/5;grid-row:5}.ultp-pg1a-style4 .ultp-block-item:nth-child(14){grid-column:5/7;grid-row:5}.ultp-pg1a-style4 .ultp-block-item:nth-child(15){grid-column:1/3;grid-row:6}.ultp-pg1a-style4 .ultp-block-item:nth-child(16){grid-column:3/5;grid-row:6}.ultp-pg1a-style4 .ultp-block-item:nth-child(17){grid-column:5/7;grid-row:6}.ultp-pg1a-style4 .ultp-block-item:nth-child(18){grid-column:1/3;grid-row:7}.ultp-pg1a-style4 .ultp-block-item:nth-child(19){grid-column:3/5;grid-row:7}.ultp-pg1a-style4 .ultp-block-item:nth-child(20){grid-column:5/7;grid-row:7}.ultp-pg1a-style4 .ultp-block-item:nth-child(21){grid-column:1/3;grid-row:8}.ultp-pg1a-style4 .ultp-block-item:nth-child(22){grid-column:3/5;grid-row:8}.ultp-pg1a-style4 .ultp-block-item:nth-child(23){grid-column:5/7;grid-row:8}.ultp-pg1a-style4 .ultp-block-item:nth-child(24){grid-column:1/3;grid-row:9}.ultp-pg1a-style4 .ultp-block-item:nth-child(25){grid-column:3/5;grid-row:9}.ultp-pg1a-style4 .ultp-block-item:nth-child(26){grid-column:5/7;grid-row:9}.ultp-pg1a-style4 .ultp-block-item:nth-child(27){grid-column:1/3;grid-row:10}.ultp-pg1a-style4 .ultp-block-item:nth-child(28){grid-column:3/5;grid-row:10}.ultp-pg1a-style4 .ultp-block-item:nth-child(29){grid-column:5/7;grid-row:10}@media (min-width:768px){.ultp-block-column-1:not(.ultp-sm-column-2) div.ultp-block-item:last-child,.ultp-block-column-2:not(.ultp-sm-column-2) div.ultp-block-item:nth-last-of-type(-n+2),.ultp-block-column-3:not(.ultp-sm-column-2) div.ultp-block-item:nth-last-of-type(-n+3),.ultp-block-column-4:not(.ultp-sm-column-2) div.ultp-block-item:nth-last-of-type(-n+4),.ultp-block-column-5:not(.ultp-sm-column-2) div.ultp-block-item:nth-last-of-type(-n+5),.ultp-block-column-6:not(.ultp-sm-column-2) div.ultp-block-item:nth-last-of-type(-n+6),.ultp-block-column-7:not(.ultp-sm-column-2) div.ultp-block-item:nth-last-of-type(-n+7){border:none!important}}@media (max-width:768px){.ultp-pg1a-style2.ultp-block-column-2 .ultp-block-item:first-child,.ultp-pg1a-style2.ultp-block-column-3 .ultp-block-item:first-child,.ultp-pg1a-style2.ultp-block-column-4 .ultp-block-item:first-child,.ultp-pg1a-style2.ultp-block-column-5 .ultp-block-item:first-child{grid-column:1/1;grid-row:1}.ultp-pg1a-style3 .ultp-block-item:nth-child(1),.ultp-pg1a-style3 .ultp-block-item:nth-child(10),.ultp-pg1a-style3 .ultp-block-item:nth-child(13),.ultp-pg1a-style3 .ultp-block-item:nth-child(16),.ultp-pg1a-style3 .ultp-block-item:nth-child(19),.ultp-pg1a-style3 .ultp-block-item:nth-child(22),.ultp-pg1a-style3 .ultp-block-item:nth-child(25),.ultp-pg1a-style3 .ultp-block-item:nth-child(28),.ultp-pg1a-style3 .ultp-block-item:nth-child(31),.ultp-pg1a-style3 .ultp-block-item:nth-child(34),.ultp-pg1a-style3 .ultp-block-item:nth-child(4),.ultp-pg1a-style3 .ultp-block-item:nth-child(7){grid-column-start:inherit;grid-column-end:inherit;grid-row-start:inherit;grid-row-end:inherit}.ultp-pg1a-style4{grid-template-columns:repeat(1,1fr)!important}.ultp-pg1a-style4 .ultp-block-item:nth-child(1),.ultp-pg1a-style4 .ultp-block-item:nth-child(10),.ultp-pg1a-style4 .ultp-block-item:nth-child(11),.ultp-pg1a-style4 .ultp-block-item:nth-child(12),.ultp-pg1a-style4 .ultp-block-item:nth-child(13),.ultp-pg1a-style4 .ultp-block-item:nth-child(14),.ultp-pg1a-style4 .ultp-block-item:nth-child(15),.ultp-pg1a-style4 .ultp-block-item:nth-child(16),.ultp-pg1a-style4 .ultp-block-item:nth-child(17),.ultp-pg1a-style4 .ultp-block-item:nth-child(18),.ultp-pg1a-style4 .ultp-block-item:nth-child(19),.ultp-pg1a-style4 .ultp-block-item:nth-child(2),.ultp-pg1a-style4 .ultp-block-item:nth-child(20),.ultp-pg1a-style4 .ultp-block-item:nth-child(21),.ultp-pg1a-style4 .ultp-block-item:nth-child(22),.ultp-pg1a-style4 .ultp-block-item:nth-child(23),.ultp-pg1a-style4 .ultp-block-item:nth-child(24),.ultp-pg1a-style4 .ultp-block-item:nth-child(25),.ultp-pg1a-style4 .ultp-block-item:nth-child(26),.ultp-pg1a-style4 .ultp-block-item:nth-child(27),.ultp-pg1a-style4 .ultp-block-item:nth-child(28),.ultp-pg1a-style4 .ultp-block-item:nth-child(29),.ultp-pg1a-style4 .ultp-block-item:nth-child(3),.ultp-pg1a-style4 .ultp-block-item:nth-child(4),.ultp-pg1a-style4 .ultp-block-item:nth-child(5),.ultp-pg1a-style4 .ultp-block-item:nth-child(6),.ultp-pg1a-style4 .ultp-block-item:nth-child(7),.ultp-pg1a-style4 .ultp-block-item:nth-child(8),.ultp-pg1a-style4 .ultp-block-item:nth-child(9){grid-column-start:inherit;grid-column-end:inherit;grid-row-start:inherit;grid-row-end:inherit}}.ultp-block-column-1 .ultp-block-item:last-of-type{padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-block-item:last-child{border:0}.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content{padding:20px;position:relative}.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap{height:100%;position:relative}.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap .ultp-block-content-image{position:absolute;content:"";left:0;right:0;top:0;bottom:0;width:100%;height:100%;background-repeat:no-repeat;background-position:center top;background-size:cover;background-color:rgba(0,0,0,.2);z-index:0;opacity:0;transition:.4s}.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap .ultp-block-content-image:before{position:absolute;content:"";left:0;right:0;top:0;bottom:0;width:100%;height:100%;background:rgba(0,0,0,.5);transition:.4s}.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap:hover .ultp-block-content-image{opacity:1}.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap:hover .ultp-block-content .ultp-block-title a,.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap:hover .ultp-block-excerpt,.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap:hover .ultp-block-meta span,.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap:hover .ultp-block-meta span a,.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap:hover .ultp-block-readmore a{color:#fff}.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap:hover .ultp-block-meta span svg,.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content-wrap:hover .ultp-block-readmore a svg{color:#fff}.wp-block-ultimate-post-post-grid-1 .ultp-layout3 .ultp-block-content-wrap .ultp-block-content,.wp-block-ultimate-post-post-grid-1 .ultp-layout4 .ultp-block-content-wrap .ultp-block-content,.wp-block-ultimate-post-post-grid-1 .ultp-layout5 .ultp-block-content-wrap .ultp-block-content{margin:-110px auto 0;max-width:85%;background:#fff;z-index:1;position:relative}.wp-block-ultimate-post-post-grid-1 .ultp-layout3 .ultp-block-content-wrap .ultp-block-content .ultp-category-grid,.wp-block-ultimate-post-post-grid-1 .ultp-layout4 .ultp-block-content-wrap .ultp-block-content .ultp-category-grid,.wp-block-ultimate-post-post-grid-1 .ultp-layout5 .ultp-block-content-wrap .ultp-block-content .ultp-category-grid{display:inline-block}.wp-block-ultimate-post-post-grid-1 .ultp-layout4 .ultp-block-content-wrap{clear:both}.wp-block-ultimate-post-post-grid-1 .ultp-layout4 .ultp-block-content-wrap .ultp-block-content{float:left}.wp-block-ultimate-post-post-grid-1 .ultp-layout5 .ultp-block-content-wrap{clear:both}.wp-block-ultimate-post-post-grid-1 .ultp-layout5 .ultp-block-content-wrap .ultp-block-content{float:right}.wp-block-ultimate-post-post-grid-1 .ultp-layout3 .ultp-block-content{padding:0 20px}.block-editor-page .ultp-heading-filter .ultp-filter-navigation{margin:auto 0 0 0!important}.modal_active{visibility:visible!important}.modal_active .ultp-video-modal__Wrapper{transform:translate(-50%,-50%)!important;transition:all .3s;opacity:1!important}.modal_active .ultp-video-wrapper{visibility:visible!important}.ultp-block-video-content iframe,.ultp-block-video-content video{background-color:#000}.ultp-video-modal{visibility:hidden}.ultp-video-modal .ultp-embaded-video{position:relative}.ultp-video-modal .ultp-video-modal__Wrapper{height:auto;opacity:0;transition:all .3s;margin:0 auto;position:fixed;top:50%;left:50%;transform:translate(-50%,-60%);-o-transform:translate(-50%,-60%);-ms-transform:translate(-50%,-60%);-moz-transform:translate(-50%,-60%);-webkit-transform:translate(-50%,-60%);z-index:9999999}.ultp-video-modal .ultp-video-modal__Wrapper .ultp-video-modal__content{text-align:center;position:relative;padding:40px 80px;background-color:#000}.ultp-video-modal .ultp-video-modal__Wrapper .ultp-video-modal__content a{font-size:17px!important;display:block;width:-moz-fit-content;width:fit-content;margin:0 auto 9px}.ultp-video-modal .ultp-video-modal__Wrapper .ultp-video-modal__content a:hover{text-decoration:underline}.ultp-video-modal .ultp-video-modal__Wrapper .ultp-video-modal__content .ultp-video-wrapper{visibility:hidden}.ultp-video-modal .ultp-video-modal__overlay{width:100%;height:100%;background-color:rgba(0,0,0,.788);position:fixed;z-index:9999;top:10px;left:0;right:0}.ultp-video-modal .ultp-video-close{line-height:0;cursor:pointer;position:fixed;top:60px;right:60px;z-index:99999;transition:.3s}.ultp-video-modal .ultp-video-close::before{display:inline-block;content:"×";font-weight:200}.ultp-video-icon{cursor:pointer;position:absolute;z-index:999}.ultp-video-icon svg{transition:.3s;display:block}@media only screen and (max-width:768px){.ultp-video-modal .ultp-video-modal__Wrapper .ultp-video-modal__content{padding:15px 20px}.ultp-video-modal .ultp-video-modal__Wrapper .ultp-video-modal__content a{font-size:11px!important}}.ultp-video-modal__content:has(.ultp-embaded-video) .ultp-loader-container{height:100%;width:100%;display:flex;justify-content:center}.ultp-video-modal__content:has(.ultp-embaded-video) .ultp-popup-loader{position:absolute;top:50%;display:inline-block;width:50px;height:50px;border:3px solid rgba(255,255,255,.3);border-radius:50%;border-top-color:#fff;animation:loader 1s ease-in-out infinite;-webkit-animation:loader 1s ease-in-out infinite}@keyframes loader{to{-webkit-transform:rotate(360deg)}}.ultp-not-found-message{font-size:18px;font-weight:400;text-align:center;padding:15px 0;color:var(--postx_preset_Contrast_1_color,#1e1e1e);border:1px solid var(--postx_preset_Contrast_1_color,#1e1e1e);border-radius:4px;margin-top:1rem;margin-bottom:1rem}.postx-page .ast-container:has(.ultp-builder-container){max-width:unset!important}.ultp-custom-meta-inline svg{width:auto;height:12px;margin-right:5px}.ultp-custom-meta-block{flex-basis:100%;padding:0}.ultp-custom-meta-block svg{width:auto;height:12px;margin-right:5px}.ultp-meta-author-no-link{cursor:text}@media (min-width:990px){.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-block-column-1 .ultp-block-item:nth-last-child(-n+1){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-block-column-2 .ultp-block-item:nth-last-child(-n+2){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-block-column-3 .ultp-block-item:nth-last-child(-n+3){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-block-column-4 .ultp-block-item:nth-last-child(-n+4){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}}@media (min-width:787px) and (max-width:990px){.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-sm-column-1 .ultp-block-item:nth-last-child(-n+1){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-sm-column-2 .ultp-block-item:nth-last-child(-n+2){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-sm-column-3 .ultp-block-item:nth-last-child(-n+3){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-sm-column-4 .ultp-block-item:nth-last-child(-n+4){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}}@media (max-width:767px){.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-xs-column-1 .ultp-block-item:nth-last-child(-n+1){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-xs-column-2 .ultp-block-item:nth-last-child(-n+2){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-xs-column-3 .ultp-block-item:nth-last-child(-n+3){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}.wp-block-ultimate-post-post-grid-1 .ultp-grid1-responsive.ultp-xs-column-4 .ultp-block-item:nth-last-child(-n+4){border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}}.ultp-block-content-overlay{position:relative;transition:.4s;height:100%}.ultp-block-content-overlay .ultp-block-image{height:100%}.ultp-block-content-overlay .ultp-block-image>a{height:100%}.ultp-block-content-overlay .ultp-block-content{position:absolute;top:0;left:0;height:100%;width:100%;pointer-events:none;display:flex;z-index:2}.ultp-block-content-overlay .ultp-block-content .ultp-block-content-inner{width:100%}.ultp-block-content-overlay .ultp-block-content .ultp-block-readmore a,.ultp-block-content-overlay .ultp-block-content .ultp-block-title a,.ultp-block-content-overlay .ultp-block-content .ultp-category-grid{pointer-events:auto}.wp-block-ultimate-post-post-grid-2 .ultp-block-item .ultp-block-empty-image,.wp-block-ultimate-post-post-grid-3 .ultp-block-item .ultp-block-empty-image,.wp-block-ultimate-post-post-grid-4 .ultp-block-item .ultp-block-empty-image,.wp-block-ultimate-post-post-grid-5 .ultp-block-item .ultp-block-empty-image,.wp-block-ultimate-post-post-grid-6 .ultp-block-item .ultp-block-empty-image,.wp-block-ultimate-post-post-grid-7 .ultp-block-item .ultp-block-empty-image{width:100%;-o-object-fit:cover;object-fit:cover;background:#353535}.block-editor-autocompleters__block[aria-selected=true] .ultp-block-icon,.block-editor-list-view-block__contents-cell[aria-selected=true] .ultp-block-icon{filter:brightness(0) saturate(100%) invert(91%) sepia(100%) saturate(39%) hue-rotate(255deg) brightness(108%) contrast(100%)}.wp-block-ultimate-post-post-grid-3 .ultp-block-column2 .ultp-block-item:first-child{grid-column:1/3;grid-row:1}.wp-block-ultimate-post-post-grid-3 .ultp-block-column3 .ultp-block-item:first-child{grid-column:1/4;grid-row:1}.wp-block-ultimate-post-post-grid-3 .ultp-layout2 .ultp-block-item:first-child{grid-row:2}.wp-block-ultimate-post-post-grid-3 .ultp-layout3 .ultp-block-item:first-child{grid-column:1/3}.wp-block-ultimate-post-post-grid-3 .ultp-layout4 .ultp-block-item:first-child{grid-row:1/span 1;grid-column:2/span 2}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5{grid-template-columns:repeat(6,1fr);grid-template-rows:1fr 1fr}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:first-child{grid-column-start:1;grid-column-end:4;grid-row-start:1;grid-row-end:2}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(2){grid-column-start:4;grid-column-end:7;grid-row-start:1;grid-row-end:2}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(3){grid-column-start:1;grid-column-end:3;grid-row-start:2;grid-row-end:3}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(4){grid-column-start:3;grid-column-end:5;grid-row-start:2;grid-row-end:3}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(5){grid-column-start:5;grid-column-end:7;grid-row-start:2;grid-row-end:3}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(3n+6){grid-column-start:1;grid-column-end:3}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(3n+7){grid-column-start:3;grid-column-end:5}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(3n+8){grid-column-start:5;grid-column-end:7}.ultp-loadmore .ultp-loadmore-action{transition:.4s;text-decoration:none;cursor:pointer;display:inline-flex}.ultp-loadmore .ultp-loadmore-action:hover{text-decoration:none}.ultp-loadmore .ultp-loadmore-action.ultp-disable{display:none}.ultp-loadmore .ultp-loadmore-action svg{width:16px;height:20px}.ultp-next-prev-wrap .ultp-next-action,.ultp-next-prev-wrap .ultp-prev-action{cursor:pointer}.ultp-next-prev-wrap .ultp-next-action svg,.ultp-next-prev-wrap .ultp-prev-action svg{width:10px;height:100%}.ultp-next-prev-wrap .ultp-next-action.ultp-disable,.ultp-next-prev-wrap .ultp-prev-action.ultp-disable{opacity:.4;cursor:not-allowed}.ultp-spin{animation:ultp-spin 1s linear infinite;font-size:inherit;line-height:inherit;width:auto;height:auto;vertical-align:baseline;margin-left:2px;position:relative;top:1px;display:none}.ultp-loading-active .ultp-spin{display:flex}.rotate{animation:ultp-spin 1.5s linear infinite}@keyframes ultp-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.ultp-heading-filter{position:relative}.ultp-heading-filter .ultp-filter-navigation{position:absolute;top:0;height:100%;right:0;margin:auto 0;opacity:1;z-index:3;text-align:right;display:flex;align-items:flex-start;margin:auto 0 0 200px}.ultp-heading-filter .ultp-filter-wrap+.ultp-next-prev-wrap{margin-left:20px}.ultp-filter-wrap .ultp-flex-menu{margin-bottom:0!important;margin-top:0!important}.ultp-filter-wrap ul{padding:0;margin:0;list-style:none}.ultp-filter-wrap ul li{display:inline-block}.ultp-filter-wrap ul li:first-child{margin-left:0!important}.ultp-filter-wrap ul li .dashicons{font-size:14px;width:auto;height:auto;vertical-align:baseline}.ultp-filter-wrap ul li a{display:inline-block;transition:.4s;text-decoration:none}.ultp-filter-wrap ul li a:hover{text-decoration:none}.ultp-filter-wrap ul li.filter-dropdown-item{position:relative}.ultp-filter-wrap ul li.filter-dropdown-item>a{padding-left:15px;display:flex;align-items:center}.ultp-filter-wrap ul li.filter-dropdown-item>a .dashicons{margin-left:3px}.ultp-filter-wrap ul li.filter-dropdown-item .filter-dropdown{position:absolute;right:0;top:100%;background-color:#fff;min-width:120px;z-index:999;box-shadow:0 0 5px rgba(0,0,0,.2);display:block;padding:10px 15px 10px;display:none}.ultp-filter-wrap ul li.filter-dropdown-item .filter-dropdown li{display:block}.ultp-filter-wrap ul li.filter-dropdown-item:hover .filter-dropdown{display:block}.ultp-next-prev-wrap ul{padding:0!important;margin:0;list-style:none;line-height:1}.ultp-next-prev-wrap ul li{display:inline-block;margin-right:5px;margin-left:0}.ultp-next-prev-wrap ul li:last-child{margin-right:0}.ultp-next-prev-wrap ul li .dashicons{font-size:inherit;line-height:1;width:auto;height:auto;vertical-align:baseline}.ultp-next-prev-wrap ul li a{display:flex;text-decoration:none;transition:.4s}.ultp-next-prev-wrap ul li a:hover{text-decoration:none}.ultp-filter-navigation .ultp-next-prev-wrap ul li{margin-top:0}.ultp-heading-inner{width:100%}.ultp-heading-inner span{display:inline-block}.ultp-heading-wrap .ultp-heading-inner{margin:0}.ultp-heading-style2 .ultp-heading-inner span{padding:3px 12px}.ultp-heading-style3 .ultp-heading-inner{border-bottom-style:solid}.ultp-heading-style3 .ultp-heading-inner span{padding:3px 12px}.ultp-heading-style4 .ultp-heading-inner{border-style:solid}.ultp-heading-style4 .ultp-heading-inner span{padding:3px 12px}.ultp-heading-style5 .ultp-heading-inner span{position:relative;padding:3px 12px}.ultp-heading-style5 .ultp-heading-inner span:before{margin:0;content:"";position:absolute;top:100%;left:10px;width:0;height:0;border-style:solid;border-width:7px 7px 0 7px;border-color:#2c2d2f transparent transparent transparent}.ultp-heading-style5.ultp-heading-center .ultp-heading-inner span:before{left:50%;margin-left:-3px}.ultp-heading-style5.ultp-heading-right .ultp-heading-inner span:before{right:10px;left:auto}.ultp-heading-style6 .ultp-heading-inner span{position:relative;padding:0 12px}.ultp-heading-style6 .ultp-heading-inner span:before{content:"";position:absolute;top:0;left:0;height:100%;margin:0}.ultp-heading-style6.ultp-heading-right .ultp-heading-inner span:before{right:0;left:auto}.ultp-heading-style7 .ultp-heading-inner{position:relative;overflow:hidden}.ultp-heading-style7 .ultp-heading-inner span{position:relative;padding-right:12px}.ultp-heading-style7 .ultp-heading-inner span:before{content:"";display:block;position:absolute;top:50%;margin-top:0;width:2000px;left:100%;margin:0}.ultp-heading-style7 .ultp-heading-inner span:after{content:"";display:block;position:absolute;top:50%;margin-top:0;width:2000px;right:100%;margin-right:12px}.ultp-heading-style7.ultp-heading-right .ultp-heading-inner span{padding-right:0;padding-left:12px}.ultp-heading-style7.ultp-heading-right .ultp-heading-inner span:before{right:100%;left:auto}.ultp-heading-style8 .ultp-heading-inner{position:relative}.ultp-heading-style8 .ultp-heading-inner span{padding-bottom:8px}.ultp-heading-style8 .ultp-heading-inner:before{content:"";width:100%;position:absolute;top:100%;left:0;margin:0}.ultp-heading-style8 .ultp-heading-inner:after{content:"";width:50px;position:absolute;top:100%;left:0}.ultp-heading-style8.ultp-heading-center .ultp-heading-inner:after{left:50%;margin-left:-25px}.ultp-heading-style8.ultp-heading-right .ultp-heading-inner:after{left:auto;right:0}.ultp-heading-style9 .ultp-heading-inner{position:relative}.ultp-heading-style9 .ultp-heading-inner span{padding-bottom:8px}.ultp-heading-style9 .ultp-heading-inner:before{content:"";width:100%;position:absolute;top:100%;left:0;margin:0}.ultp-heading-style10 .ultp-heading-inner{position:relative}.ultp-heading-style10 .ultp-heading-inner span{padding-top:8px;padding-bottom:8px}.ultp-heading-style10 .ultp-heading-inner:before{content:"";width:100%;position:absolute;left:0;top:100%;margin:0}.ultp-heading-style10 .ultp-heading-inner:after{content:"";width:100%;position:absolute;left:0;bottom:100%}.ultp-heading-style11{position:relative}.ultp-heading-style11 .ultp-heading-inner{position:relative}.ultp-heading-style11 .ultp-heading-btn{position:absolute;right:0;top:50%;margin:auto 0;display:flex;text-decoration:none;line-height:1;font-size:14px;margin-top:-8px;transition:.4s}.ultp-heading-style11 .ultp-heading-btn svg{width:14px;margin-left:5px;vertical-align:middle;display:inline-block}.ultp-heading-style11 .ultp-heading-btn:hover{text-decoration:none}.ultp-heading-style11 .ultp-heading-btn i{margin-left:6px;width:auto;height:auto;font-size:inherit;transition:.4s}.ultp-heading-style11.ultp-heading-right .ultp-heading-btn{right:auto;left:0}.ultp-heading-style12{position:relative}.ultp-heading-style12 .ultp-heading-inner span{padding:3px 12px}.ultp-heading-style13{position:relative}.ultp-heading-style13 .ultp-heading-inner{border-style:solid}.ultp-heading-style13 .ultp-heading-inner span{padding:3px 12px}.ultp-heading-style14{position:relative}.ultp-heading-style14 .ultp-heading-inner{position:relative}.ultp-heading-style14 .ultp-heading-inner:before{content:"";width:100%;position:absolute;left:0;bottom:-12px;margin:0}.ultp-heading-style14 .ultp-heading-inner:after{content:"";width:100%;position:absolute;left:0;bottom:-8px}.ultp-heading-style15 .ultp-heading-inner span{position:relative;padding-bottom:5px}.ultp-heading-style15 .ultp-heading-inner span:before{content:"";z-index:10;position:absolute;bottom:-2px;left:0;width:40px;margin:0}.ultp-heading-style15.ultp-heading-center .ultp-heading-inner span:before{left:50%;margin-left:-20px}.ultp-heading-style15.ultp-heading-right .ultp-heading-inner span:before{left:auto;right:0}.ultp-heading-style16 .ultp-heading-inner span{position:relative;padding-right:12px}.ultp-heading-style16 .ultp-heading-inner span:before{position:absolute;content:"";width:50px;top:50%;left:100%;margin-top:-1px;margin:0}.ultp-heading-style16.ultp-heading-right .ultp-heading-inner span{padding-right:0;padding-left:12px}.ultp-heading-style16.ultp-heading-right .ultp-heading-inner span:before{left:auto;right:100%}.ultp-heading-style17 .ultp-heading-inner{position:relative}.ultp-heading-style17 .ultp-heading-inner span{padding-top:8px}.ultp-heading-style17 .ultp-heading-inner:before{right:0;left:0;content:"";display:block;position:absolute;top:0;width:100%;margin:0}.ultp-heading-style18 .ultp-heading-inner{position:relative}.ultp-heading-style18 .ultp-heading-inner:after{content:"";position:absolute;top:0;left:0;height:100%}.ultp-heading-style18 .ultp-heading-inner span{padding:3px 12px}.ultp-heading-style18.ultp-heading-right .ultp-heading-inner:after{right:0;left:auto}.ultp-heading-style19 .ultp-heading-inner{position:relative}.ultp-heading-style19 .ultp-heading-inner:before{content:"";width:100%;height:100%;position:absolute;left:0;right:0;border-width:1px;border-style:solid;margin:0}.ultp-heading-style19 .ultp-heading-inner:after{content:"";position:absolute;top:0;left:0;width:4px;height:100%}.ultp-heading-style19 .ultp-heading-inner span{padding:3px 12px;position:relative}.ultp-heading-style19.ultp-heading-right .ultp-heading-inner:after{right:0;left:auto}.ultp-heading-style20 .ultp-heading-inner span{position:relative;padding:3px 12px}.ultp-heading-style20 .ultp-heading-inner span:before{content:"";position:absolute;top:100%;left:15px;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;margin:0}.ultp-heading-style20.ultp-heading-center .ultp-heading-inner span:before{left:50%;margin-left:-3px}.ultp-heading-style20.ultp-heading-right .ultp-heading-inner span:before{right:15px;left:auto}.ultp-heading-style21 .ultp-heading-inner span{padding:3px 12px;position:relative}.ultp-heading-style21 .ultp-heading-inner span:after{content:"";height:100%;width:20px;position:absolute;top:0;right:-19.5px;clip-path:polygon(0 0,0 100%,100% 0)}.ultp-block-title{padding:0;margin:0!important;word-break:break-word}.ultp-block-title a{line-height:1;text-decoration:none;transition:.4s;box-shadow:none}.ultp-block-title a:hover{text-decoration:none}.ultp-category-grid{line-height:1;font-size:12px}.ultp-category-grid a{text-decoration:none;box-shadow:none;transition:.4s;display:inline-block;margin-right:5px;margin-bottom:5px}.ultp-category-grid a:focus{text-decoration:none}.ultp-category-grid a:last-child{margin-right:0}.ultp-category-grid a:hover{text-decoration:none!important}.ultp-category-in.ultp-cat-color-1 a,.ultp-category-in.ultp-cat-color-true a{transition:.4s}.ultp-category-in.ultp-cat-color-1:hover a,.ultp-category-in.ultp-cat-color-true:hover a{opacity:.85}.ultp-category-borderBoth,.ultp-category-borderLeft,.ultp-category-borderRight{display:inline-block}.ultp-category-borderBoth .ultp-category-in,.ultp-category-borderLeft .ultp-category-in,.ultp-category-borderRight .ultp-category-in{position:relative}.ultp-category-borderBoth .ultp-category-in:before,.ultp-category-borderLeft .ultp-category-in:before,.ultp-category-borderRight .ultp-category-in:before{content:"";position:absolute;top:50%;width:30px;height:2px;margin-top:-1px;transform:translateY(-50%);transition:.4s}.ultp-category-borderBoth .ultp-category-in{position:relative}.ultp-category-borderBoth .ultp-category-in:after{content:"";position:absolute;top:50%;width:30px;height:2px;margin-top:-1px;transform:translateY(-50%)}.ultp-category-borderLeft .ultp-category-in{padding-left:40px;position:relative}.ultp-category-borderLeft .ultp-category-in:before{left:0}.ultp-category-borderRight .ultp-category-in{padding-right:40px;position:relative}.ultp-category-borderRight .ultp-category-in:before{right:0}.ultp-category-borderBoth .ultp-category-in{padding-right:40px;padding-left:40px;position:relative}.ultp-category-borderBoth .ultp-category-in:before{right:0}.ultp-category-borderBoth .ultp-category-in:after{left:0}.ultp-block-meta{line-height:1;display:flex;align-items:center;flex-wrap:wrap}.ultp-block-meta.ultp-block-meta-style3,.ultp-block-meta.ultp-block-meta-style6{align-items:center}.ultp-block-meta.ultp-block-meta-style5{align-items:center}.ultp-block-meta.ultp-block-meta-icon span,.ultp-block-meta.ultp-block-meta-style4 span{display:flex;align-items:center}.ultp-block-meta.ultp-block-meta-icon .ultp-block-author,.ultp-block-meta.ultp-block-meta-icon .ultp-block-date,.ultp-block-meta.ultp-block-meta-style4 .ultp-block-author,.ultp-block-meta.ultp-block-meta-style4 .ultp-block-date{align-items:baseline}.ultp-block-meta span{pointer-events:all;padding-left:16px;margin-right:16px;position:relative;vertical-align:middle}.ultp-block-meta span.ultp-block-author a{margin-left:5px;font-weight:500;pointer-events:all;transition:.4s}.ultp-block-meta span a{transition:.4s;display:inline}.ultp-block-meta span:after{color:#dedede;position:absolute}.ultp-block-meta span i{width:auto;height:auto;font-size:14px;line-height:1;margin-right:4px;vertical-align:middle;position:relative;top:0;font-style:normal}.ultp-block-meta.ultp-block-meta-style4 span:nth-child(2){flex-grow:1}.ultp-block-meta.ultp-block-meta-style4 span:not(:nth-child(2)):after{display:none}.ultp-block-meta.ultp-block-meta-style6 span:nth-child(3){flex-grow:1}.ultp-block-meta.ultp-block-meta-style6 span:not(:nth-child(3)):after{display:none}.ultp-block-meta.ultp-block-meta-style6 span:first-child{margin-right:6px!important}.ultp-block-meta.ultp-block-meta-style6 span:nth-child(2){padding-left:0!important}.ultp-block-meta.ultp-block-meta-style6 span:nth-child(2):after{display:none!important}.ultp-block-meta span:first-child{padding-left:0!important}.ultp-block-meta span:last-child{margin-right:0!important}.ultp-block-meta span:first-child:after{display:none}.ultp-block-meta.ultp-block-meta-dot span:after{content:"";left:-1px;top:50%;bottom:auto;width:2px;margin-top:0;height:2px;border-radius:100%}.ultp-block-meta.ultp-block-meta-slash span:after{content:"/";left:-2px;top:1px;font-size:12px}.ultp-block-meta.ultp-block-meta-doubleslash span:after{content:"//";left:-4px;top:1px;font-size:12px}.ultp-block-meta.ultp-block-meta-close span:after{content:"x";left:-4px;top:-1px;font-size:10px}.ultp-block-meta.ultp-block-meta-dash span:after{content:"-";left:-3px;top:0;font-size:18px}.ultp-block-meta.ultp-block-meta-verticalbar span:after{content:"|";left:-1px;top:0;font-size:12px}.ultp-block-meta.ultp-block-meta-emptyspace span{padding-left:0}.ultp-block-meta.ultp-block-meta-noIcon.ultp-block-meta-dash span:after,.ultp-block-meta.ultp-block-meta-noIcon.ultp-block-meta-doubleslash span:after,.ultp-block-meta.ultp-block-meta-noIcon.ultp-block-meta-slash span:after,.ultp-block-meta.ultp-block-meta-noIcon.ultp-block-meta-verticalbar span:after{top:0}.ultp-block-meta.ultp-block-meta-noIcon.ultp-block-meta-close span:after{top:-1px}.ultp-block-meta.ultp-block-meta-style5 .ultp-meta-media{float:left}.ultp-block-meta.ultp-block-meta-style5 .ultp-meta-media span{margin-right:5px}.ultp-block-meta.ultp-block-meta-style5 .ultp-meta-media .ultp-meta-author-img{width:40px;height:auto}.ultp-block-meta.ultp-block-meta-style5 .ultp-meta-body{position:relative;top:0}.ultp-block-meta.ultp-block-meta-style5 .ultp-meta-body span:first-child{display:block}.ultp-block-meta.ultp-block-meta-style5 .ultp-meta-body span:nth-child(2){padding-left:0}.ultp-block-meta.ultp-block-meta-style5 .ultp-meta-body span:nth-child(2):after{display:none}.ultp-block-meta-style5.ultp-block-meta.ultp-block-meta-doubleslash span:after{top:-4px}.ultp-block-meta-style5.ultp-block-meta.ultp-block-meta-dash span:after,.ultp-block-meta-style5.ultp-block-meta.ultp-block-meta-slash span:after,.ultp-block-meta-style5.ultp-block-meta.ultp-block-meta-verticalbar span:after{top:-3px}.ultp-block-meta-style5.ultp-block-meta.ultp-block-meta-dot span:after{margin-top:-1px}.ultp-block-meta-style5.ultp-block-meta.ultp-block-meta-close span:after{top:-2px}.ultp-meta-author-img{width:25px;height:25px;border-radius:100px;position:relative;margin-right:10px}.ultp-block-meta span svg{width:auto;height:12px;color:#929292;stroke-width:7px;margin-right:5px;position:relative;top:0;display:inline-block}.ultp-block-meta span.ultp-block-view svg{height:14px;top:3px}.ultp-block-meta span.ultp-block-comment svg{top:2px}.ultp-block-meta span.ultp-block-author{display:flex;align-items:center}.ultp-block-items-wrap .ultp-block-item.ultp-block-media>.ultp-block-image.ultp-block-image-opacity img,.ultp-block-items-wrap .ultp-block-item.ultp-block-media>.ultp-block-image.ultp-block-image-roateLeft img,.ultp-block-items-wrap .ultp-block-item.ultp-block-media>.ultp-block-image.ultp-block-image-rotateRight img,.ultp-block-items-wrap .ultp-block-item.ultp-block-media>.ultp-block-image.ultp-block-image-slideLeft img,.ultp-block-items-wrap .ultp-block-item.ultp-block-media>.ultp-block-image.ultp-block-image-slideRight img,.ultp-block-items-wrap .ultp-block-item.ultp-block-media>.ultp-block-image.ultp-block-image-zoomIn img,.ultp-block-items-wrap .ultp-block-item.ultp-block-media>.ultp-block-image.ultp-block-image-zoomOut img,.ultp-block-items-wrap .ultp-block-item>.ultp-block-content-wrap .ultp-block-image.ultp-block-image-opacity img,.ultp-block-items-wrap .ultp-block-item>.ultp-block-content-wrap .ultp-block-image.ultp-block-image-roateLeft img,.ultp-block-items-wrap .ultp-block-item>.ultp-block-content-wrap .ultp-block-image.ultp-block-image-rotateRight img,.ultp-block-items-wrap .ultp-block-item>.ultp-block-content-wrap .ultp-block-image.ultp-block-image-slideLeft img,.ultp-block-items-wrap .ultp-block-item>.ultp-block-content-wrap .ultp-block-image.ultp-block-image-slideRight img,.ultp-block-items-wrap .ultp-block-item>.ultp-block-content-wrap .ultp-block-image.ultp-block-image-zoomIn img,.ultp-block-items-wrap .ultp-block-item>.ultp-block-content-wrap .ultp-block-image.ultp-block-image-zoomOut img,.wp-block-ultimate-post-gallery .ultp-gallery-container .ultp-gallery-media img{transition:310ms}.ultp-block-image>a,.ultp-gallery-media .ultp-image-block>a,.ultp-gallery-media>a{display:block;position:relative;z-index:1}.ultp-block-image.ultp-block-image-opacity,.ultp-block-image.ultp-block-image-roateLeft,.ultp-block-image.ultp-block-image-rotateRight,.ultp-block-image.ultp-block-image-slideLeft,.ultp-block-image.ultp-block-image-slideRight,.ultp-block-image.ultp-block-image-zoomIn,.ultp-block-image.ultp-block-image-zoomOut,.ultp-gallery-media .ultp-image-block.ultp-block-image-opacity,.ultp-gallery-media .ultp-image-block.ultp-block-image-roateLeft,.ultp-gallery-media .ultp-image-block.ultp-block-image-rotateRight,.ultp-gallery-media .ultp-image-block.ultp-block-image-slideLeft,.ultp-gallery-media .ultp-image-block.ultp-block-image-slideRight,.ultp-gallery-media .ultp-image-block.ultp-block-image-zoomIn,.ultp-gallery-media .ultp-image-block.ultp-block-image-zoomOut,.ultp-gallery-media.ultp-block-image-opacity,.ultp-gallery-media.ultp-block-image-roateLeft,.ultp-gallery-media.ultp-block-image-rotateRight,.ultp-gallery-media.ultp-block-image-slideLeft,.ultp-gallery-media.ultp-block-image-slideRight,.ultp-gallery-media.ultp-block-image-zoomIn,.ultp-gallery-media.ultp-block-image-zoomOut{overflow:hidden}.ultp-block-image.ultp-block-image-opacity img,.ultp-block-image.ultp-block-image-roateLeft img,.ultp-block-image.ultp-block-image-rotateRight img,.ultp-block-image.ultp-block-image-slideLeft img,.ultp-block-image.ultp-block-image-slideRight img,.ultp-block-image.ultp-block-image-zoomIn img,.ultp-block-image.ultp-block-image-zoomOut img,.ultp-gallery-media .ultp-image-block.ultp-block-image-opacity img,.ultp-gallery-media .ultp-image-block.ultp-block-image-roateLeft img,.ultp-gallery-media .ultp-image-block.ultp-block-image-rotateRight img,.ultp-gallery-media .ultp-image-block.ultp-block-image-slideLeft img,.ultp-gallery-media .ultp-image-block.ultp-block-image-slideRight img,.ultp-gallery-media .ultp-image-block.ultp-block-image-zoomIn img,.ultp-gallery-media .ultp-image-block.ultp-block-image-zoomOut img,.ultp-gallery-media.ultp-block-image-opacity img,.ultp-gallery-media.ultp-block-image-roateLeft img,.ultp-gallery-media.ultp-block-image-rotateRight img,.ultp-gallery-media.ultp-block-image-slideLeft img,.ultp-gallery-media.ultp-block-image-slideRight img,.ultp-gallery-media.ultp-block-image-zoomIn img,.ultp-gallery-media.ultp-block-image-zoomOut img{transition:opacity .2s ease-in-out}.ultp-block-image.ultp-block-image-zoomIn img,.ultp-gallery-media .ultp-image-block.ultp-block-image-zoomIn img,.ultp-gallery-media.ultp-block-image-zoomIn img{transform:scale(1)}.ultp-block-image.ultp-block-image-zoomOut img,.ultp-gallery-media .ultp-image-block.ultp-block-image-zoomOut img,.ultp-gallery-media.ultp-block-image-zoomOut img{transform:scale(1.2)}.ultp-block-image.ultp-block-image-roateLeft img,.ultp-gallery-media .ultp-image-block.ultp-block-image-roateLeft img,.ultp-gallery-media.ultp-block-image-roateLeft img{transform:rotate(0) scale(1)}.ultp-block-image.ultp-block-image-slideLeft img,.ultp-gallery-media .ultp-image-block.ultp-block-image-slideLeft img,.ultp-gallery-media.ultp-block-image-slideLeft img{transform:translateX(8px) scale(1.15)}.ultp-block-image.ultp-block-image-slideRight img,.ultp-gallery-media .ultp-image-block.ultp-block-image-slideRight img,.ultp-gallery-media.ultp-block-image-slideRight img{transform:translateX(-8px) scale(1.15)}.ultp-block-image.ultp-block-image-rotateRight img,.ultp-gallery-media .ultp-image-block.ultp-block-image-rotateRight img,.ultp-gallery-media.ultp-block-image-rotateRight img{transform:rotate(0) scale(1)}.ultp-block-image.ultp-block-image-opacity img,.ultp-gallery-media .ultp-image-block.ultp-block-image-opacity img,.ultp-gallery-media.ultp-block-image-opacity img{opacity:1}.ultp-block-image.ultp-block-image-overlay>a:before,.ultp-gallery-media .ultp-image-block.ultp-block-image-overlay>a:before,.ultp-gallery-media.ultp-block-image-overlay>a:before{bottom:0;content:"";display:block;width:100%;position:absolute;z-index:1}.ultp-block-image.ultp-block-image-overlay.ultp-block-image-custom>a:before,.ultp-gallery-media .ultp-image-block.ultp-block-image-overlay.ultp-block-image-custom>a:before,.ultp-gallery-media.ultp-block-image-overlay.ultp-block-image-custom>a:before{height:100%}.ultp-block-image.ultp-block-image-overlay.ultp-block-image-default>a:before,.ultp-gallery-media .ultp-image-block.ultp-block-image-overlay.ultp-block-image-default>a:before,.ultp-gallery-media.ultp-block-image-overlay.ultp-block-image-default>a:before{background-color:#000;opacity:.6;height:100%}.ultp-block-image.ultp-block-image-overlay.ultp-block-image-simgleGradient>a:before,.ultp-gallery-media .ultp-image-block.ultp-block-image-overlay.ultp-block-image-simgleGradient>a:before,.ultp-gallery-media.ultp-block-image-overlay.ultp-block-image-simgleGradient>a:before{background:linear-gradient(to bottom,rgba(0,0,0,.01) 30%,#000 70%);opacity:.6;height:100%}.ultp-block-image.ultp-block-image-overlay.ultp-block-image-multiColour>a:before,.ultp-gallery-media .ultp-image-block.ultp-block-image-overlay.ultp-block-image-multiColour>a:before,.ultp-gallery-media.ultp-block-image-overlay.ultp-block-image-multiColour>a:before{opacity:.7;box-shadow:inset 0 0 50px 0 rgba(0,0,0,.5);height:100%;background:#d760b7;background:-webkit-gradient(left top,right bottom,color-stop(0,#d760b7),color-stop(100%,#3b78b4));background:linear-gradient(135deg,#d760b7 0,#3b78b4 100%)}.ultp-block-image.ultp-block-image-overlay.ultp-block-image-flat>a:before,.ultp-gallery-media .ultp-image-block.ultp-block-image-overlay.ultp-block-image-flat>a:before,.ultp-gallery-media.ultp-block-image-overlay.ultp-block-image-flat>a:before{opacity:.8;height:100%;background:#292484;background:-webkit-gradient(left bottom,right top,color-stop(0,#292484),color-stop(100%,#dc4225));background:linear-gradient(20deg,#292484 0,#dc4225 100%)}.ultp-block-row .ultp-block-item:nth-child(n+1) .ultp-block-image-flat>a:before,.ultp-block-row .ultp-block-item:nth-child(n+1) .ultp-block-image-multiColour>a:before{background:#4db2ec;background:-webkit-gradient(left bottom,right top,color-stop(0,#4db2ec),color-stop(100%,#4a8f5e));background:linear-gradient(45deg,#4db2ec 0,#4a8f5e 100%)}.ultp-block-row .ultp-block-item:nth-child(2n+2) .ultp-block-image-flat>a:before,.ultp-block-row .ultp-block-item:nth-child(2n+2) .ultp-block-image-multiColour>a:before{background:#d17646;background:-webkit-gradient(left bottom,right top,color-stop(0,#d17646),color-stop(100%,#c63939));background:linear-gradient(45deg,#d17646 0,#c63939 100%)}.ultp-block-row .ultp-block-item:nth-child(3n+3) .ultp-block-image-flat>a:before,.ultp-block-row .ultp-block-item:nth-child(3n+3) .ultp-block-image-multiColour>a:before{background:#d760b7;background:-webkit-gradient(left top,right bottom,color-stop(0,#d760b7),color-stop(100%,#3b78b4));background:linear-gradient(135deg,#d760b7 0,#3b78b4 100%)}.ultp-block-row .ultp-block-item:nth-child(4n+4) .ultp-block-image-flat>a:before,.ultp-block-row .ultp-block-item:nth-child(4n+4) .ultp-block-image-multiColour>a:before{background:#d760b7;background:-webkit-gradient(left top,right bottom,color-stop(0,#d760b7),color-stop(100%,#3b78b4));background:linear-gradient(135deg,#d760b7 0,#3b78b4 100%)}.ultp-block-row .ultp-block-item:nth-child(5n+5) .ultp-block-image-flat>a:before,.ultp-block-row .ultp-block-item:nth-child(5n+5) .ultp-block-image-multiColour>a:before{background:#0016be;background:-webkit-gradient(left bottom,right top,color-stop(0,#0016be),color-stop(100%,#2aec74));background:linear-gradient(20deg,#0016be 0,#2aec74 100%)}.ultp-block-row .ultp-block-item:nth-child(6n+6) .ultp-block-image-flat>a:before,.ultp-block-row .ultp-block-item:nth-child(6n+6) .ultp-block-image-multiColour>a:before{background:#e0be00;background:-webkit-gradient(left bottom,right top,color-stop(0,#e0be00),color-stop(100%,#dc4225));background:linear-gradient(20deg,#e0be00 0,#dc4225 100%)}.ultp-block-row .ultp-block-item:nth-child(7n+7) .ultp-block-image-flat>a:before,.ultp-block-row .ultp-block-item:nth-child(7n+7) .ultp-block-image-multiColour>a:before{background:#292484;background:-webkit-gradient(left bottom,right top,color-stop(0,#292484),color-stop(100%,#dc4225));background:linear-gradient(20deg,#292484 0,#dc4225 100%)}.ultp-block-item:hover .ultp-block-image-zoomIn img,.ultp-gallery-container .ultp-gallery-item:hover .ultp-block-image-zoomIn img{transform:scale(1.2)}.ultp-block-item:hover .ultp-block-image-zoomOut img,.ultp-gallery-container .ultp-gallery-item:hover .ultp-block-image-zoomOut img{transform:scale(1)}.ultp-block-item:hover .ultp-block-image-roateLeft img,.ultp-gallery-container .ultp-gallery-item:hover .ultp-block-image-roateLeft img{transform:rotate(5deg) scale(1.2)}.ultp-block-item:hover .ultp-block-image-slideLeft img,.ultp-gallery-container .ultp-gallery-item:hover .ultp-block-image-slideLeft img{transform:translateX(-8px) scale(1.15)}.ultp-block-item:hover .ultp-block-image-slideRight img,.ultp-gallery-container .ultp-gallery-item:hover .ultp-block-image-slideRight img{transform:translateX(8px) scale(1.15)}.ultp-block-item:hover .ultp-block-image-rotateRight img,.ultp-gallery-container .ultp-gallery-item:hover .ultp-block-image-rotateRight img{transform:rotate(-5deg) scale(1.2)}.ultp-block-item:hover .ultp-block-image-opacity img,.ultp-gallery-container .ultp-gallery-item:hover .ultp-block-image-opacity img{opacity:.5}.ultp-pagination-wrap .ultp-pagination{display:inline-flex;align-items:center;padding:0;list-style:none;flex-wrap:wrap}.ultp-pagination-wrap .ultp-pagination li{padding:0 2px;display:inline-block;font-size:14px;line-height:20px;margin:0 0 4px;height:-moz-fit-content;height:fit-content}.ultp-pagination-wrap .ultp-pagination li a{text-decoration:none;display:inline-block;transition:.4s;padding:10px 20px}.ultp-pagination-wrap .ultp-pagination li a svg{width:10px;display:inline-block}.ultp-pagination-wrap .ultp-pagination li a.ultp-next-page-numbers,.ultp-pagination-wrap .ultp-pagination li a.ultp-prev-page-numbers{display:flex!important;align-items:center;gap:4px}.ultp-pagination-wrap .ultp-pagination li.ultp-prev-page-numbers a{display:flex;align-items:center;gap:5px}.ultp-pagination-wrap .ultp-pagination li.ultp-next-page-numbers a{display:flex;align-items:center;gap:5px}.ultp-pagination-wrap .ultp-pagination li i{font-size:inherit;line-height:inherit;font-style:normal;width:auto;height:auto}.ultp-pagination-wrap .ultp-pagination li span.current{display:inline-block;padding:10px 20px}.ultp-block-media .ultp-block-content-wrap{display:flex}.ultp-block-media .ultp-block-image{overflow:hidden;position:relative;display:inline-block}.ultp-block-media .ultp-block-content{flex:1}.flexMenu-viewMore{position:relative}.flexMenu-viewMore>a{display:flex!important;align-items:center;justify-content:space-between;gap:13px}.flexMenu-viewMore>a:before{content:"";border:solid #000;border-width:0 1px 1px 0;display:block;padding:3px;transform:rotate(45deg);-webkit-transform:rotate(45deg);margin-top:1px;transition:.4s;order:1}.flexMenu-viewMore.active>a:before{transform:rotate(-135deg);-webkit-transform:rotate(-135deg);margin-top:5px}.ultp-filter-wrap .flexMenu-popup{position:absolute;display:block;width:170px;background:#f9f9f9;z-index:2;padding:15px;text-align:left;box-shadow:0 20px 40px -4px rgba(9,30,66,.2);right:0}.ultp-filter-wrap .flexMenu-popup a{display:block}.ultp-filter-wrap .flexMenu-popup li{margin:0!important}.ultp-filter-wrap .flexMenu-popup li{display:block;line-height:1}@media (max-width:992px){.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout3,.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout4{grid-template-columns:repeat(2,1fr)}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout4 .ultp-block-item:first-child{grid-row:inherit;grid-column:1/3}}@media (max-width:768px){.ultp-heading-filter .ultp-filter-navigation{position:relative;margin:auto 0 10px;height:auto}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout4 .ultp-block-item:first-child{grid-row:inherit;grid-column:1/2}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(2),.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(3),.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(3n+6),.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(3n+7),.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(3n+8),.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(4),.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-layout5 .ultp-block-item:nth-child(5){grid-column-start:inherit;grid-column-end:inherit;grid-row-start:inherit;grid-row-end:inherit}}@media (max-width:768px){.wp-block-ultimate-post-post-grid-3 .ultp-block-row .ultp-block-item .ultp-block-content-overlay{height:100%!important}}@media (max-width:600px){.ultp-heading-filter .ultp-filter-navigation{justify-content:flex-end}}.wp-block-ultimate-post-post-grid-4 .ultp-block-row{grid-template-columns:60% auto}.wp-block-ultimate-post-post-grid-4 .ultp-block-row .ultp-block-item:first-child{grid-column-start:1;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-layout4 .ultp-block-item:first-child{grid-row-end:4}.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-block-content-1,.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-block-content-true{grid-template-columns:auto 60%}.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-block-content-1 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-block-content-true .ultp-block-item:first-child{grid-column:2}@media (max-width:768px){.wp-block-ultimate-post-post-grid-4 .ultp-block-row{grid-template-columns:repeat(1,1fr);max-height:100%!important}.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-layout1 .ultp-block-item,.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-layout2 .ultp-block-item,.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-layout3 .ultp-block-item,.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-layout4 .ultp-block-item{max-height:100%!important}.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-layout1 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-layout2 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-layout3 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-4 .ultp-block-row.ultp-layout4 .ultp-block-item .ultp-block-content-overlay{height:100%!important}}.ultp-animation-slideup .ultp-block-content .ultp-block-content-inner{transition:.4s;transform:translateY(0)}.ultp-animation-slideup:hover .ultp-block-content .ultp-block-content-inner{transform:translateY(-10px)}.ultp-animation-slidedown .ultp-block-content .ultp-block-content-inner{transition:.4s;transform:translateY(0)}.ultp-animation-slidedown:hover .ultp-block-content .ultp-block-content-inner{transform:translateY(10px)}.wp-block-ultimate-post-post-grid-5 .ultp-block-row{grid-template-columns:50% 1fr 1fr}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child{grid-column-start:1;grid-row-start:1;grid-row-end:3;height:100%}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay{height:100%}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout1 .ultp-block-item:nth-child(2){grid-column-start:2;grid-column-end:4;grid-row:2}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child{grid-column-start:1;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay{height:100%}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout2 .ultp-block-item:nth-child(2){grid-column-start:2;grid-column-end:4;grid-row:1}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout1{grid-template-columns:1fr 1fr 50%}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:first-child{grid-column-start:3;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:nth-child(2){grid-column-start:1;grid-column-end:3;grid-row:2}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout2{grid-template-columns:1fr 1fr 50%}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:first-child{grid-column-start:3;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:nth-child(2){grid-column-start:1;grid-column-end:3;grid-row:1}.wp-block-ultimate-post-post-grid-5 .ultp-block-content-false.ultp-layout3{grid-template-columns:40% 1fr 40%}.wp-block-ultimate-post-post-grid-5 .ultp-block-content-false.ultp-layout3 .ultp-block-item{height:100%}.wp-block-ultimate-post-post-grid-5 .ultp-block-content-false.ultp-layout3 .ultp-block-item:first-child{grid-column-start:1;grid-column-end:3}.wp-block-ultimate-post-post-grid-5 .ultp-block-content-false.ultp-layout3 .ultp-block-item:nth-child(4){grid-column-start:2;grid-column-end:4}.wp-block-ultimate-post-post-grid-5 .ultp-block-content-true.ultp-layout3{grid-template-columns:40% 1fr 40%}.wp-block-ultimate-post-post-grid-5 .ultp-block-content-true.ultp-layout3 .ultp-block-item{height:100%}.wp-block-ultimate-post-post-grid-5 .ultp-block-content-true.ultp-layout3 .ultp-block-item:first-child{grid-column-start:2;grid-row-start:1;grid-row-end:1;grid-column-end:4}.wp-block-ultimate-post-post-grid-5 .ultp-block-content-true.ultp-layout3 .ultp-block-item:nth-child(3){grid-column-start:3;grid-row-start:2;grid-row-end:2;grid-column-end:4}.wp-block-ultimate-post-post-grid-5 .ultp-block-content-true.ultp-layout3 .ultp-block-item:nth-child(4){grid-column-start:1;grid-row-start:2;grid-row-end:2;grid-column-end:3}@media (max-width:768px){.wp-block-ultimate-post-post-grid-5 .ultp-block-row{max-height:100%!important}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout1,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout2,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout1,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout2{grid-template-columns:1fr}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout1 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout2 .ultp-block-item .ultp-block-content-overlay{height:100%}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child{height:100%;max-height:100%!important;grid-column-start:initial;grid-row-start:initial;grid-row-end:initial}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay{height:100%!important}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:nth-child(2),.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:nth-child(2),.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout1 .ultp-block-item:nth-child(2),.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout2 .ultp-block-item:nth-child(2){grid-column-start:initial;grid-column-end:initial;grid-row:initial}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:nth-child(2) .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:nth-child(2) .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout1 .ultp-block-item:nth-child(2) .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout2 .ultp-block-item:nth-child(2) .ultp-block-content-overlay{height:100%!important}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout3,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout3{grid-template-columns:1fr}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout3 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout3 .ultp-block-item:first-child{height:100%;max-height:100%!important;grid-column:1;grid-row:1}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout3 .ultp-block-item:first-child .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout3 .ultp-block-item:first-child .ultp-block-content-overlay{height:100%!important}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout3 .ultp-block-item:nth-child(3),.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout3 .ultp-block-item:nth-child(3){grid-column:initial;grid-row:initial}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout3 .ultp-block-item:nth-child(4),.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout3 .ultp-block-item:nth-child(4){grid-column:1;grid-row:2}.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-block-content-true.ultp-layout3 .ultp-block-item:nth-child(4) .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-5 .ultp-block-row.ultp-layout3 .ultp-block-item:nth-child(4) .ultp-block-content-overlay{height:100%!important}}.wp-block-ultimate-post-post-grid-6 .ultp-block-row{grid-template-columns:50% 1fr 1fr}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child{grid-column-start:1;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay{max-height:100%}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout2{grid-template-columns:1fr 40% 1fr}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child{grid-column-start:2;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay{max-height:100%}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout1{grid-template-columns:1fr 1fr 50%}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:first-child{grid-column-start:3;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout2{grid-template-columns:1fr 1fr 50%}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:first-child{grid-column-start:3;grid-row-start:1;grid-row-end:3}@media (max-width:768px){.wp-block-ultimate-post-post-grid-6 .ultp-block-row{max-height:100%!important}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout1,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout2,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout1,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout2{grid-template-columns:1fr}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout1 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout2 .ultp-block-item .ultp-block-content-overlay{height:100%!important}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child{grid-column-start:initial;grid-row-start:initial;grid-row-end:initial;max-height:100%!important}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay{height:100%!important}.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay img,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-block-content-true.ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay img,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child .ultp-block-content-overlay img,.wp-block-ultimate-post-post-grid-6 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child .ultp-block-content-overlay img{min-height:100%!important}}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout1{grid-template-columns:40% 30% 1fr}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child{grid-column-start:1;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout1 .ultp-block-item:nth-child(2){grid-column-start:2;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout2{grid-template-columns:40% 32% 1fr}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout3{grid-template-columns:1fr 45% 1fr}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout4{grid-template-columns:40% 30% 1fr}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout4 .ultp-block-item:first-child{grid-column-start:1;grid-row-start:1;grid-row-end:3}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout4 .ultp-block-item:nth-child(4){grid-column-start:3;grid-row-start:1;grid-row-end:3}@media (max-width:768px){.wp-block-ultimate-post-post-grid-7 .ultp-block-row{max-height:100%!important}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout1,.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout2,.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout3{grid-template-columns:1fr}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout1 .ultp-block-item,.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout2 .ultp-block-item,.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout3 .ultp-block-item{max-height:100%!important}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout1 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout2 .ultp-block-item .ultp-block-content-overlay,.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout3 .ultp-block-item .ultp-block-content-overlay{height:100%!important}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout1 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout2 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout3 .ultp-block-item:first-child{grid-column-start:initial;grid-row-start:initial;grid-row-end:initial;min-height:100%}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout1 .ultp-block-item:nth-child(2),.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout2 .ultp-block-item:nth-child(2),.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout3 .ultp-block-item:nth-child(2){grid-column-start:initial;grid-row-start:initial;grid-row-end:initial;min-height:100%}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout4{grid-template-columns:1fr}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout4 .ultp-block-item:first-child{grid-column:1;grid-row:1;min-height:100%}.wp-block-ultimate-post-post-grid-7 .ultp-block-row.ultp-layout4 .ultp-block-item:nth-child(4){grid-column:1;grid-row:2;min-height:100%}}.wp-block-ultimate-post-post-list-1 .ultp-block-meta span,.wp-block-ultimate-post-post-list-2 .ultp-block-meta span,.wp-block-ultimate-post-post-list-3 .ultp-block-meta span,.wp-block-ultimate-post-post-list-4 .ultp-block-meta span{margin-bottom:5px}.wp-block-ultimate-post-post-list-1 .ultp-block-content-wrap{height:100%}.wp-block-ultimate-post-post-list-1 .ultp-block-image{display:inline-block}.wp-block-ultimate-post-post-list-1 .ultp-block-content-wrap{box-sizing:border-box}.wp-block-ultimate-post-post-list-1 .ultp-block-content-wrap .ultp-block-entry-content{line-height:0}.ultp-post-list1-layout2 .ultp-block-content-wrap,.ultp-post-list1-layout3 .ultp-block-content-wrap,.ultp-post-list1-layout4 .ultp-block-content-wrap{transition:.4s;overflow:visible}.ultp-post-list1-layout2 .ultp-block-entry-content,.ultp-post-list1-layout3 .ultp-block-entry-content,.ultp-post-list1-layout4 .ultp-block-entry-content{position:relative;overflow:inherit;height:-moz-fit-content;height:fit-content}.ultp-post-list1-layout2 .ultp-block-item,.ultp-post-list1-layout3 .ultp-block-item,.ultp-post-list1-layout4 .ultp-block-item{margin-top:30px}.ultp-post-list1-layout2 .ultp-block-entry-heading,.ultp-post-list1-layout3 .ultp-block-entry-heading,.ultp-post-list1-layout4 .ultp-block-entry-heading{padding:20px;position:absolute;top:-30px;width:100%;z-index:2;margin:0 auto;transition:.4s;height:-moz-fit-content;height:fit-content}.ultp-post-list1-layout1 .ultp-block-entry-heading{padding-bottom:0!important}.ultp-post-list1-layout2 .ultp-block-entry-heading{left:30px;right:auto}.ultp-post-list1-layout3 .ultp-block-entry-heading{left:50%;right:auto;transform:translateX(-50%)}.ultp-post-list1-layout4 .ultp-block-entry-heading{left:auto;right:30px}.ultp-post-list1-layout1.ultp-pl1a-style1 .ultp-block-item .ultp-block-content,.ultp-post-list1-layout1.ultp-pl1a-style2 .ultp-block-item .ultp-block-content,.ultp-post-list1-layout1.ultp-pl1a-style3 .ultp-block-item .ultp-block-content{padding-top:0!important}.ultp-post-list1-layout1.ultp-pl1a-style3 .ultp-block-item:first-child .ultp-block-entry-heading{padding-bottom:0!important}.ultp-pl1a-style3.ultp-post-list1-layout2 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-post-list1-layout3 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-post-list1-layout4 .ultp-block-item:first-child{margin-top:0!important}.ultp-pl1a-style3.ultp-post-list1-layout2 .ultp-block-item:first-child .ultp-block-entry-heading,.ultp-pl1a-style3.ultp-post-list1-layout3 .ultp-block-item:first-child .ultp-block-entry-heading,.ultp-pl1a-style3.ultp-post-list1-layout4 .ultp-block-item:first-child .ultp-block-entry-heading{top:auto!important}.ultp-pl1a-style2.ultp-block-column-2 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-block-column-2 .ultp-block-item:first-child{grid-column:1/3;grid-row:1}.ultp-pl1a-style2.ultp-block-column-3 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-block-column-3 .ultp-block-item:first-child{grid-column:1/4;grid-row:1}.ultp-pl1a-style2.ultp-block-column-4 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-block-column-4 .ultp-block-item:first-child{grid-column:1/5;grid-row:1}.ultp-pl1a-style2.ultp-block-column-5 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-block-column-5 .ultp-block-item:first-child{grid-column:1/6;grid-row:1}@media (max-width:768px){.ultp-pl1a-style2.ultp-block-column-2 .ultp-block-item:first-child,.ultp-pl1a-style2.ultp-block-column-3 .ultp-block-item:first-child,.ultp-pl1a-style2.ultp-block-column-4 .ultp-block-item:first-child,.ultp-pl1a-style2.ultp-block-column-5 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-block-column-2 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-block-column-3 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-block-column-4 .ultp-block-item:first-child,.ultp-pl1a-style3.ultp-block-column-5 .ultp-block-item:first-child{grid-column:1/1;grid-row:1}.wp-block-ultimate-post-post-grid-3 .ultp-block-row.ultp-block-items-wrap{grid-template-columns:repeat(1,1fr)}.wp-block-ultimate-post-post-grid-1 .ultp-block-column2 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-1 .ultp-block-column3 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-3 .ultp-block-column2 .ultp-block-item:first-child,.wp-block-ultimate-post-post-grid-3 .ultp-block-column3 .ultp-block-item:first-child{grid-column:1/1;grid-row:1}}.rtl .ultp-block-meta span svg{margin-right:0;margin-left:5px}.ultp-block-media{display:flex}.ultp-block-media .ultp-block-image{overflow:hidden;position:relative}.ultp-block-media .ultp-block-content{flex:1}.wp-block-ultimate-post-post-list-2 .ultp-block-item .ultp-block-content{display:block}.wp-block-ultimate-post-post-list-2 .ultp-block-item:not(:first-child) .ultp-block-title{font-size:16px;line-height:1}.wp-block-ultimate-post-post-list-2 .ultp-block-item:first-child{margin-bottom:50px}.wp-block-ultimate-post-post-list-2 .ultp-block-item:first-child .ultp-block-content-wrap{display:block}.wp-block-ultimate-post-post-list-2 .ultp-block-item:first-child .ultp-block-title{font-size:22px;line-height:1}.wp-block-ultimate-post-post-list-2 .ultp-block-item:first-child .ultp-block-image img{max-width:100%}.wp-block-ultimate-post-post-list-2 .ultp-block-item:first-child .ultp-block-content{flex:auto;margin-left:0}.wp-block-ultimate-post-post-list-2 .ultp-block-item:last-of-type{margin-bottom:0!important;padding-bottom:0!important;border-bottom:none!important}.wp-block-ultimate-post-post-list-2{counter-reset:post-list2-counter}.wp-block-ultimate-post-post-list-2 .ultp-block-wrapper{counter-reset:post-list2-counter2}.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2{position:relative}.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content{position:absolute;bottom:0;padding:25px}.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-excerpt,.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-meta span,.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-meta span a,.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-readmore a,.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-title a{color:#fff}.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-meta span a:hover,.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-readmore a:hover,.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-title a:hover{color:rgba(255,255,255,.9)}.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-readmore a:hover svg{color:rgba(255,255,255,.9)}.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-content .ultp-block-meta span svg{color:#fff}.wp-block-ultimate-post-post-list-2 .ultp-post-block2-even .ultp-first-postlist-2 .ultp-block-image>a:after{content:"";background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,0) 60%,rgba(0,0,0,0));position:absolute;bottom:0;left:0;width:100%;height:100%;transition:background-color .3s ease}.wp-block-ultimate-post-post-list-2 .ultp-layout4 .ultp-block-item{position:relative}.wp-block-ultimate-post-post-list-2 .ultp-layout4 .ultp-block-item::before{counter-increment:post-list2-counter2;content:counter(post-list2-counter2,decimal);display:flex;align-items:center;justify-content:center;width:50px;height:50px;position:absolute;z-index:2;top:20px;left:-17px;text-align:center;font-size:14px;font-weight:600;line-height:31px;border:2px solid #fff;background:#141414;color:#fff;border-radius:100%}.wp-block-ultimate-post-post-list-2 .ultp-block-content-true.ultp-layout4 .ultp-block-item::before{left:auto;right:-15px}.wp-block-ultimate-post-post-list-2 .ultp-layout2 .ultp-block-item:not(:first-child) .ultp-block-image{margin-right:0;margin-left:0}.wp-block-ultimate-post-post-list-2 .ultp-layout3 .ultp-block-content{position:relative}.wp-block-ultimate-post-post-list-2 .ultp-layout3 .ultp-block-content::before{counter-increment:post-list2-counter;content:"0" counter(post-list2-counter,decimal);position:absolute;font-size:18px;text-align:center;top:23px;left:0;width:50px;height:50px;display:flex;align-items:center;justify-content:center;line-height:24px;font-style:italic;background:#eaeaea;padding:10px;box-sizing:border-box;border-radius:100%;transition:all .3s}.wp-block-ultimate-post-post-list-2 .ultp-layout3 .ultp-block-item .ultp-block-image{margin-right:0;margin-left:0}.wp-block-ultimate-post-post-list-2 .ultp-layout3 .ultp-block-item .ultp-block-content{padding-left:80px;position:relative}.ultp-block-content-wrap.ultp-all-postlist-2{width:100%}.rtl .wp-block-ultimate-post-post-list-2 .ultp-layout4 .ultp-block-item::before{left:auto;right:-15px}.rtl .wp-block-ultimate-post-post-list-2 .ultp-block-content-true.ultp-layout4 .ultp-block-item::before{right:auto;left:-15px}.rtl .wp-block-ultimate-post-post-list-2 .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content{padding-left:0;padding-right:60px}.rtl .wp-block-ultimate-post-post-list-2 .ultp-layout3 .ultp-block-content::before{right:0;left:auto}.ultp-block-column-2:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(2n+1):nth-last-child(-n+2),.ultp-block-column-2:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(2n+1):nth-last-child(-n+2)~.ultp-block-item{margin-bottom:0!important;padding-bottom:0!important}.ultp-block-column-3:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(3n+1):nth-last-child(-n+3),.ultp-block-column-3:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(3n+1):nth-last-child(-n+3)~.ultp-block-item{margin-bottom:0!important;padding-bottom:0!important}.ultp-block-column-4:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(4n+1):nth-last-child(-n+4),.ultp-block-column-4:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(4n+1):nth-last-child(-n+4)~.ultp-block-item{margin-bottom:0!important;padding-bottom:0!important}.ultp-block-column-5:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(5n+1):nth-last-child(-n+5),.ultp-block-column-5:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(5n+1):nth-last-child(-n+5)~.ultp-block-item{margin-bottom:0!important;padding-bottom:0!important}.ultp-block-column-6:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(6n+1):nth-last-child(-n+6),.ultp-block-column-6:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(6n+1):nth-last-child(-n+6)~.ultp-block-item{margin-bottom:0!important;padding-bottom:0!important}.ultp-block-column-7:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(7n+1):nth-last-child(-n+7),.ultp-block-column-7:not(.ultp-grid1-responsive) .ultp-block-item:nth-child(7n+1):nth-last-child(-n+7)~.ultp-block-item{margin-bottom:0!important;padding-bottom:0!important}.wp-block-ultimate-post-post-list-3 .ultp-block-content{display:block;align-self:center}.ultp-block-content .ultp-block-readmore a{display:inline-flex;align-items:center}.ultp-block-content .ultp-block-readmore a:hover{text-decoration:none}.ultp-block-content .ultp-block-excerpt{overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word}.ultp-block-content .ultp-block-excerpt p{margin:0;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word}.wp-block-ultimate-post-post-list-3 .ultp-block-wrapper{counter-reset:post-list3-counter}.wp-block-ultimate-post-post-list-3 .ultp-layout1 .ultp-block-content-wrap,.wp-block-ultimate-post-post-list-3 .ultp-layout2 .ultp-block-content-wrap,.wp-block-ultimate-post-post-list-3 .ultp-layout3 .ultp-block-content-wrap{width:100%}.wp-block-ultimate-post-post-list-3 .ultp-layout2 .ultp-block-item{position:relative}.wp-block-ultimate-post-post-list-3 .ultp-layout2 .ultp-block-item::before{counter-increment:post-list3-counter;content:counter(post-list3-counter,decimal);display:block;width:50px;height:50px;position:absolute;z-index:2;top:20px;left:-17px;text-align:center;font-size:14px;font-weight:600;line-height:46px;border:2px solid #fff;background:#000;color:#fff;border-radius:100%}.wp-block-ultimate-post-post-list-3 .ultp-layout2.ultp-block-content-true .ultp-block-item::before{left:auto;right:-15px}.wp-block-ultimate-post-post-list-3 .ultp-layout3 .ultp-block-image+.ultp-block-content{margin-left:-140px;z-index:1;background:#fff;padding:30px;transition:.4s}.wp-block-ultimate-post-post-list-3 .ultp-layout3.ultp-block-content-true .ultp-block-image+.ultp-block-content{margin-left:auto;margin-right:-140px}.wp-block-ultimate-post-post-list-3 .ultp-layout4 .ultp-block-item .ultp-block-content-wrap,.wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item .ultp-block-content-wrap{width:100%}.wp-block-ultimate-post-post-list-3 .ultp-layout4 .ultp-block-item:nth-child(even),.wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item:nth-child(even){flex-direction:row-reverse}.wp-block-ultimate-post-post-list-3 .ultp-layout4 .ultp-block-item:nth-child(even) .ultp-block-content-wrap,.wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item:nth-child(even) .ultp-block-content-wrap{flex-direction:row-reverse}.wp-block-ultimate-post-post-list-3 .ultp-layout4 .ultp-block-item:nth-child(even) .ultp-block-content-wrap .ultp-block-image,.wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item:nth-child(even) .ultp-block-content-wrap .ultp-block-image{margin-right:0}.wp-block-ultimate-post-post-list-3 .ultp-layout4 .ultp-block-item:nth-child(odd),.wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item:nth-child(odd){flex-direction:row}.wp-block-ultimate-post-post-list-3 .ultp-layout4 .ultp-block-item:nth-child(odd) .ultp-block-content-wrap .ultp-block-image,.wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item:nth-child(odd) .ultp-block-content-wrap .ultp-block-image{margin-left:0}.wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item .ultp-block-image+.ultp-block-content{z-index:1;background:#fff;padding:40px;transition:.4s}.wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item:nth-child(even) .ultp-block-image+.ultp-block-content{margin-right:-140px}.wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item:nth-child(odd) .ultp-block-image+.ultp-block-content{margin-left:-140px}.ultp-block-content-1 .ultp-block-media .ultp-block-content-wrap,.ultp-block-content-true .ultp-block-media .ultp-block-content-wrap{flex-direction:row-reverse;width:100%}.rtl .wp-block-ultimate-post-post-list-3 .ultp-layout2 .ultp-block-item::before{right:-15px;left:auto}.rtl .wp-block-ultimate-post-post-list-3 .ultp-block-content-true.ultp-layout2 .ultp-block-item::before{left:-15px;right:auto}.rtl .wp-block-ultimate-post-post-list-3 .ultp-layout3 .ultp-block-image+.ultp-block-content{margin-right:-140px;margin-left:0}.rtl .wp-block-ultimate-post-post-list-3 .ultp-layout3.ultp-block-content-true .ultp-block-image+.ultp-block-content{margin-right:0;margin-left:-140px}.rtl .wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item:nth-child(odd) .ultp-block-image+.ultp-block-content{margin-left:0;margin-right:-140px}.rtl .wp-block-ultimate-post-post-list-3 .ultp-layout5 .ultp-block-item:nth-child(even) .ultp-block-image+.ultp-block-content{margin-right:0;margin-left:-140px}.ultp-title-style1 a:hover{background-size:100% 2px!important}.ultp-title-style3 a:hover{transition:all 1s;background-size:0 2px}.ultp-title-style4 a:hover{background-size:0 2px!important}.ultp-title-style5 a:hover{text-decoration:none;position:relative;transition:all .35s ease-out;padding-bottom:3px;border-bottom:none;padding-bottom:2px;background-position:0 100%;background-repeat:repeat;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 10 18'%3E%3Cstyle type='text/css'%3E.squiggle%7Banimation:shift .5s linear infinite;%7D@keyframes shift %7Bfrom %7Btransform:translateX(-10px);%7Dto %7Btransform:translateX(0);%7D%7D%3C/style%3E%3Cpath fill='none' stroke-width='1' class='squiggle' d='M0,17.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5 c 2.5,0,2.5,-1.5,5,-1.5 s 2.5,1.5,5,1.5' /%3E%3C/svg%3E")}.ultp-title-style6 a:hover{background-size:100% 88%!important}.ultp-title-style7 a:hover{background-size:100% 2px!important}.ultp-title-style8 a:hover{background-size:100% 2px!important}.ultp-title-style9 a:hover{background-size:100% 88%!important}.ultp-title-style10:hover{transition:all .35s}.ultp-title-style10:hover a{letter-spacing:.4px!important;transition:all .35s}.ultp-title-style11{word-spacing:0;transition:all .35s}.ultp-title-style11:hover{word-spacing:3px}.ultp-block-media{display:flex}.ultp-block-media .ultp-block-image{overflow:hidden;position:relative}.ultp-block-media .ultp-block-content{flex:1}.wp-block-ultimate-post-post-list-4 .ultp-block-item .ultp-block-content{display:block}.wp-block-ultimate-post-post-list-4 .ultp-block-item:not(:first-child) .ultp-block-title{font-size:16px;line-height:1}.wp-block-ultimate-post-post-list-4 .ultp-block-item:first-child{margin-bottom:40px}.wp-block-ultimate-post-post-list-4 .ultp-block-item:first-child .ultp-block-content-wrap{display:block}.wp-block-ultimate-post-post-list-4 .ultp-block-item:first-child .ultp-block-title{font-size:22px;line-height:1}.wp-block-ultimate-post-post-list-4 .ultp-block-item:first-child .ultp-block-image img{max-width:100%}.wp-block-ultimate-post-post-list-4 .ultp-block-item:first-child .ultp-block-content{flex:auto;margin-left:0}.wp-block-ultimate-post-post-list-4 .ultp-block-item:last-of-type{margin-bottom:0!important;padding-bottom:0!important;border-bottom:none!important}.wp-block-ultimate-post-post-list-4{counter-reset:post-list2-counter}.wp-block-ultimate-post-post-list-4 .ultp-block-wrapper{counter-reset:post-list2-counter2}.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2{position:relative;line-height:0;width:100%}.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content{position:absolute;bottom:0;padding:30px}.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-excerpt,.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-excerpt p,.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-meta span,.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-meta span a,.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-readmore a,.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-title a{color:#fff}.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-meta span a:hover,.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-readmore a:hover,.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-title a:hover{color:rgba(255,255,255,.9)}.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-readmore a:hover svg{color:rgba(255,255,255,.9)}.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-content .ultp-block-meta span svg{color:#fff}.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-image{width:100%}.wp-block-ultimate-post-post-list-4 .ultp-first-postlist-2 .ultp-block-image>a:after{content:"";background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,0) 80%,rgba(0,0,0,0));position:absolute;bottom:0;left:0;width:100%;height:100%;transition:background-color .3s ease}.wp-block-ultimate-post-post-list-4 .ultp-layout4 .ultp-block-item{position:relative}.wp-block-ultimate-post-post-list-4 .ultp-layout4 .ultp-block-item::before{counter-increment:post-list2-counter2;content:counter(post-list2-counter2,decimal);width:50px;height:50px;position:absolute;z-index:2;top:10px;left:-15px;text-align:center;font-size:14px;font-weight:600;line-height:31px;border:2px solid #fff;background:#000;display:flex;align-items:center;justify-content:center;box-sizing:border-box;color:#fff;border-radius:100%}.wp-block-ultimate-post-post-list-4 .ultp-block-content-true.ultp-layout4 .ultp-block-item::before{left:auto;right:-15px}.wp-block-ultimate-post-post-list-4 .ultp-layout2 .ultp-block-item:not(:first-child) .ultp-block-image{margin-right:0;margin-left:0}.wp-block-ultimate-post-post-list-4 .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-image{margin-right:0;margin-left:0}.wp-block-ultimate-post-post-list-4 .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content{padding-left:85px;position:relative}.wp-block-ultimate-post-post-list-4 .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before{counter-increment:post-list2-counter;content:"0" counter(post-list2-counter,decimal);position:absolute;font-size:18px;text-align:center;left:0;width:50px;height:50px;line-height:24px;font-style:italic;background:#eee;display:flex;align-items:center;justify-content:center;padding:10px;border-radius:100%;box-sizing:border-box;transition:all .3s}@media (max-width:992px){.wp-block-ultimate-post-post-list-4 .ultp-block-media{display:block}}.rtl .wp-block-ultimate-post-post-list-4 .ultp-layout4 .ultp-block-item::before{left:auto;right:-15px}.rtl .wp-block-ultimate-post-post-list-4 .ultp-block-content-true.ultp-layout4 .ultp-block-item::before{left:-15px;right:auto}.rtl .wp-block-ultimate-post-post-list-4 .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content{padding-right:60px;padding-left:0}.rtl .wp-block-ultimate-post-post-list-4 .ultp-layout3 .ultp-block-item:not(:first-child) .ultp-block-content::before{right:0;left:auto}.ultp-cat-only-color-1,.ultp-cat-only-color-true{padding:2px 8px}.ultp-block-post-module1{margin:0 -15px;clear:both;display:inline-block}.ultp-block-post-module1 .ultp-big-post-module1,.ultp-block-post-module1 .ultp-small-post-module1{width:50%;float:left;padding:0 15px;box-sizing:border-box}.ultp-block-post-module1.ultp-block-content-true .ultp-big-post-module1,.ultp-block-post-module1.ultp-block-content-true .ultp-small-post-module1{float:right}.ultp-block-post-module1.ultp-layout2 .ultp-small-post-module1 .ultp-block-item .ultp-block-content-wrap{flex-direction:row-reverse}.ultp-small-post-module1 .ultp-block-item .ultp-block-content-wrap{display:flex!important;position:relative}.ultp-layout1 .ultp-small-post-module1 .ultp-block-item .ultp-block-image{margin-right:0!important;margin-left:0!important}.wp-block-ultimate-post-post-module-1{counter-reset:post-list2-counter}.wp-block-ultimate-post-post-module-1 .ultp-block-image{transition:.3s}.wp-block-ultimate-post-post-module-1 .ultp-block-content-wrap .ultp-block-image{height:-moz-fit-content;height:fit-content}.wp-block-ultimate-post-post-module-1 .ultp-layout4 .ultp-small-post-module1 .ultp-block-content{position:relative}.wp-block-ultimate-post-post-module-1 .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before{counter-increment:post-list2-counter;content:counter(post-list2-counter,decimal);position:absolute;font-size:18px;text-align:center;left:0;width:24px;height:24px;line-height:24px;font-style:italic;background:#eee;padding:10px;border-radius:100%;box-sizing:content-box;transition:all .3s}.wp-block-ultimate-post-post-module-1 .ultp-layout4 .ultp-small-post-module1 .ultp-block-item .ultp-block-image{margin-right:0;margin-left:0}.wp-block-ultimate-post-post-module-1 .ultp-layout4 .ultp-small-post-module1 .ultp-block-item .ultp-block-content{padding-left:60px;position:relative}.wp-block-ultimate-post-post-module-1 .ultp-layout5 .ultp-small-post-module1 .ultp-block-item{position:relative}.wp-block-ultimate-post-post-module-1 .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before{counter-increment:post-list2-counter;content:counter(post-list2-counter,decimal);display:block;width:35px;height:35px;position:absolute;z-index:2;top:10px;left:-15px;text-align:center;font-size:14px;font-weight:600;line-height:31px;border:2px solid #fff;background:#000;color:#fff;border-radius:100%}@media (max-width:768px){.ultp-block-post-module1 .ultp-big-post-module1,.ultp-block-post-module1 .ultp-small-post-module1{width:100%}.ultp-block-post-module1 .ultp-big-post-module1{margin-bottom:30px}}.ultp-small-post-module1 .ultp-block-content{width:100%}.rtl .wp-block-ultimate-post-post-module-1 .ultp-layout5 .ultp-small-post-module1 .ultp-block-item::before{right:-15px}.rtl .wp-block-ultimate-post-post-module-1 .ultp-layout4 .ultp-small-post-module1 .ultp-block-item .ultp-block-content{padding-right:60px;padding-left:0}.rtl .wp-block-ultimate-post-post-module-1 .ultp-layout4 .ultp-small-post-module1 .ultp-block-content::before{right:0}.ultp-block-post-module2{margin:0 -15px;clear:both;display:inline-block}.ultp-block-post-module2 .ultp-block-content-wrap{overflow:visible!important}.ultp-block-post-module2 .ultp-block-content-wrap .ultp-block-image{height:-moz-fit-content;height:fit-content}.ultp-block-post-module2 .ultp-big-post-module2,.ultp-block-post-module2 .ultp-small-post-module2{width:50%;float:left;padding:0 15px;box-sizing:border-box}.ultp-block-post-module2.ultp-block-content-true .ultp-big-post-module2,.ultp-block-post-module2.ultp-block-content-true .ultp-small-post-module2{float:right}.ultp-block-post-module2.ultp-layout2 .ultp-small-post-module2 .ultp-block-item .ultp-block-content-wrap{flex-direction:row-reverse}.ultp-big-post-module2 .ultp-block-content-wrap{position:relative}.ultp-big-post-module2 .ultp-block-content-wrap .ultp-block-image{position:relative}.ultp-big-post-module2 .ultp-block-content-wrap .ultp-block-image>a:after{content:"";background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,0) 60%,rgba(0,0,0,0));position:absolute;bottom:0;left:0;width:100%;height:100%;transition:background-color .3s ease}.ultp-big-post-module2 .ultp-block-content-wrap .ultp-block-content{position:absolute;bottom:0;padding:25px}.ultp-small-post-module2 .ultp-block-item .ultp-block-content-wrap{display:flex!important;position:relative}.ultp-layout1 .ultp-small-post-module2 .ultp-block-item .ultp-block-image{margin-right:0!important;margin-left:0!important}.wp-block-ultimate-post-post-module-2{counter-reset:post-list2-counter}.wp-block-ultimate-post-post-module-2 .ultp-layout4 .ultp-small-post-module2 .ultp-block-content{position:relative}.wp-block-ultimate-post-post-module-2 .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before{counter-increment:post-list2-counter;content:counter(post-list2-counter,decimal);position:absolute;font-size:18px;text-align:center;left:0;width:24px;height:24px;line-height:24px;font-style:italic;background:#eee;padding:10px;border-radius:100%;box-sizing:content-box;transition:all .3s}.wp-block-ultimate-post-post-module-2 .ultp-layout4 .ultp-small-post-module2 .ultp-block-item .ultp-block-image{margin-right:0;margin-left:0}.wp-block-ultimate-post-post-module-2 .ultp-layout4 .ultp-small-post-module2 .ultp-block-item .ultp-block-content{padding-left:60px;position:relative}.wp-block-ultimate-post-post-module-2 .ultp-layout5 .ultp-small-post-module2 .ultp-block-item{position:relative}.wp-block-ultimate-post-post-module-2 .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before{counter-increment:post-list2-counter;content:counter(post-list2-counter,decimal);display:block;width:35px;height:35px;position:absolute;z-index:2;top:10px;left:-15px;text-align:center;font-size:14px;font-weight:600;line-height:31px;border:2px solid #fff;background:#000;color:#fff;border-radius:100%}@media (max-width:768px){.ultp-block-post-module2 .ultp-big-post-module2,.ultp-block-post-module2 .ultp-small-post-module2{width:100%}.ultp-block-post-module2 .ultp-big-post-module2{margin-bottom:30px}}.ultp-small-post-module2 .ultp-block-content{width:100%}.rtl .wp-block-ultimate-post-post-module-2 .ultp-layout4 .ultp-small-post-module2 .ultp-block-content::before{left:auto;right:0}.rtl .wp-block-ultimate-post-post-module-2 .ultp-layout4 .ultp-small-post-module2 .ultp-block-item .ultp-block-content{padding-right:60px;padding-left:0}.rtl .wp-block-ultimate-post-post-module-2 .ultp-layout5 .ultp-small-post-module2 .ultp-block-item::before{right:-15px;left:auto}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap,.wp-block-ultimate-post-post-slider-2 .ultp-block-slider-wrap{position:relative}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap .ultp-block-content,.wp-block-ultimate-post-post-slider-2 .ultp-block-slider-wrap .ultp-block-content{display:flex;position:absolute;top:0;left:0;bottom:0;right:0;z-index:10}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap .ultp-block-content .ultp-block-content-inner,.wp-block-ultimate-post-post-slider-2 .ultp-block-slider-wrap .ultp-block-content .ultp-block-content-inner{transition:.4s}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap,.wp-block-ultimate-post-post-slider-2 .ultp-block-slider-wrap{position:relative}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap .ultp-block-image-inner,.wp-block-ultimate-post-post-slider-2 .ultp-block-slider-wrap .ultp-block-image-inner{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2;background-size:cover;background-repeat:no-repeat;background-position:center}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap .ultp-block-image-inner .ultp-block-image>a,.wp-block-ultimate-post-post-slider-2 .ultp-block-slider-wrap .ultp-block-image-inner .ultp-block-image>a{height:100%}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap .ultp-block-image-inner .ultp-block-image img,.wp-block-ultimate-post-post-slider-2 .ultp-block-slider-wrap .ultp-block-image-inner .ultp-block-image img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap .ultp-block-image-inner img.ultp-block-img,.wp-block-ultimate-post-post-slider-2 .ultp-block-slider-wrap .ultp-block-image-inner img.ultp-block-img{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;min-width:100%;max-width:none;min-height:100%}.wp-block-ultimate-post-post-slider-1 .slick-arrow,.wp-block-ultimate-post-post-slider-2 .slick-arrow{transition:.4s;text-align:center;display:flex!important;justify-content:center;cursor:pointer}.wp-block-ultimate-post-post-slider-1 .slick-arrow:before,.wp-block-ultimate-post-post-slider-2 .slick-arrow:before{display:none}.wp-block-ultimate-post-post-slider-1 .slick-arrow:before,.wp-block-ultimate-post-post-slider-2 .slick-arrow:before{opacity:1;transition:.4s}.wp-block-ultimate-post-post-slider-1 .slick-dots li,.wp-block-ultimate-post-post-slider-2 .slick-dots li{margin:0;width:auto;height:auto}.wp-block-ultimate-post-post-slider-1 .slick-dots li button,.wp-block-ultimate-post-post-slider-2 .slick-dots li button{display:inline-block;transition:.4s;padding:0}.wp-block-ultimate-post-post-slider-1 .slick-dots li button:before,.wp-block-ultimate-post-post-slider-2 .slick-dots li button:before{display:none}.ultp-block-readmore a{transition:.4s;display:inline-block}.ultp-block-readmore a:hover{text-decoration:none}.ultp-block-readmore a svg{height:auto;width:15px;margin-left:6px;vertical-align:sub;display:inline-block}.ultp-loading{display:none;position:absolute;top:0;left:0;width:100%;height:100%;margin-top:0;margin-left:0;transition:all .4s cubic-bezier(.55,0,.1,1);overflow:hidden}.ultp-loading .ultp-loading-blocks{position:absolute;left:50%;top:50%;margin-left:-31px;margin-top:-31px}.ultp-loading .ultp-loading-blocks div{position:absolute;width:20px;height:20px;background:var(--loading-block-color);animation:loading-blocks .8s linear infinite}.ultp-loading .ultp-loading-spinner{position:absolute;left:50%;top:50%;margin-left:-35px;margin-top:-33px}.ultp-loading .ultp-loading-spinner div{left:0;top:0;position:absolute;animation:loading-spinner linear 1s infinite;background:calc(var(--loading-block-color) * .8);width:5px;height:15px;border-radius:40%;transform-origin:5px 35px}.ultp-loading .ultp-loading-spinner div:nth-child(1){transform:rotate(0);animation-delay:-.9166666667s}.ultp-loading .ultp-loading-spinner div:nth-child(2){transform:rotate(30deg);animation-delay:-.8333333333s}.ultp-loading .ultp-loading-spinner div:nth-child(3){transform:rotate(60deg);animation-delay:-.75s}.ultp-loading .ultp-loading-spinner div:nth-child(4){transform:rotate(90deg);animation-delay:-.6666666667s}.ultp-loading .ultp-loading-spinner div:nth-child(5){transform:rotate(120deg);animation-delay:-.5833333333s}.ultp-loading .ultp-loading-spinner div:nth-child(6){transform:rotate(150deg);animation-delay:-.5s}.ultp-loading .ultp-loading-spinner div:nth-child(7){transform:rotate(180deg);animation-delay:-.4166666667s}.ultp-loading .ultp-loading-spinner div:nth-child(8){transform:rotate(210deg);animation-delay:-.3333333333s}.ultp-loading .ultp-loading-spinner div:nth-child(9){transform:rotate(240deg);animation-delay:-.25s}.ultp-loading .ultp-loading-spinner div:nth-child(10){transform:rotate(270deg);animation-delay:-.1666666667s}.ultp-loading .ultp-loading-spinner div:nth-child(11){transform:rotate(300deg);animation-delay:-83.3333333ms}.ultp-loading .ultp-loading-spinner div:nth-child(12){transform:rotate(330deg);animation-delay:0s}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap{overflow:hidden;height:550px}.wp-block-ultimate-post-post-slider-1 .ultp-block-slider-wrap .ultp-block-image-inner{overflow:hidden}.wp-block-ultimate-post-post-slider-1 .slick-arrow svg{width:16px}@keyframes loading-spinner{0%{opacity:1}100%{opacity:0}}@keyframes loading-blocks{0%{background:var(--loading-block-color)}12.5%{background:var(--loading-block-color)}12.625%{background:var(--loading-block-color)}100%{background:calc(var(--loading-block-color) * .8)}}.ultp-block-items-wrap .fade.in{animation-name:fadeIn;animation-duration:1s;-webkit-animation-duration:1s;animation-timing-function:linear;-webkit-animation-timing-function:linear}.ultp-block-items-wrap .fade.out{animation-name:fadeOut;animation-duration:1s;-webkit-animation-duration:1s;animation-timing-function:linear;-webkit-animation-timing-function:linear}@keyframes fadeIn{0%{opacity:0;transform:translateY(-10px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeOut{0%{opacity:1;transform:translateY(10px)}100%{opacity:0;transform:translateY(0)}}.rtl .wp-block-ultimate-post-post-slider-1 .slick-next svg,.rtl .wp-block-ultimate-post-post-slider-1 .slick-prev svg,.rtl .wp-block-ultimate-post-post-slider-2 .slick-next svg,.rtl .wp-block-ultimate-post-post-slider-2 .slick-prev svg{transform:rotate(180deg)}.wp-block-ultimate-post-post-slider-1:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-block-items-wrap .ultp-block-item,.wp-block-ultimate-post-post-slider-2:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-block-items-wrap .ultp-block-item{position:relative}.wp-block-ultimate-post-post-slider-1:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-block-items-wrap .ultp-block-item:not(:first-child),.wp-block-ultimate-post-post-slider-2:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-block-items-wrap .ultp-block-item:not(:first-child){display:none}.wp-block-ultimate-post-post-slider-1:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-block-items-wrap .ultp-block-item .ultp-block-slider-wrap,.wp-block-ultimate-post-post-slider-2:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-block-items-wrap .ultp-block-item .ultp-block-slider-wrap{visibility:hidden}.wp-block-ultimate-post-post-slider-1:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-post-slider-loader-container,.wp-block-ultimate-post-post-slider-2:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-post-slider-loader-container{position:absolute;top:40%;right:0;left:0;bottom:50%;height:80px}.wp-block-ultimate-post-post-slider-1:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-post-slider-loader-container .ultp-loading,.wp-block-ultimate-post-post-slider-2:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-post-slider-loader-container .ultp-loading{display:block}.wp-block-ultimate-post-post-slider-1:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-post-slider-loader-container .ultp-loading .ultp-loading-spinner>div,.wp-block-ultimate-post-post-slider-2:has(.ultp-post-slider-loader-container) .ultp-block-wrapper:not(:has(.slick-initialized)) .ultp-post-slider-loader-container .ultp-loading .ultp-loading-spinner>div{background:var(--loading-block-color)}.wp-block-ultimate-post-post-slider-2 .ultp-wrapper-pro{position:relative}.wp-block-ultimate-post-post-slider-2 .ultp-wrapper-pro::before{content:"";background:rgba(35,37,255,.2);width:100%;position:absolute;height:100%;left:0;top:0;border-radius:4px;z-index:9;pointer-events:none}.wp-block-ultimate-post-post-slider-2 .ultp-wrapper-pro{position:relative}.wp-block-ultimate-post-post-slider-2 .ultp-wrapper-pro::before{height:calc(100% - 8px)!important}.wp-block-ultimate-post-post-slider-2 .ultp-pro-helper{background-color:#2728e4}.wp-block-ultimate-post-post-slider-2 .slick-dots{margin:0!important}.wp-block-ultimate-post-post-slider-2 .ultp-block-image{height:100%}.wp-block-ultimate-post-post-slider-2 .ultp-block-content-inner{box-sizing:border-box}.ultp-slide-slide1 .slick-slide .ultp-block-slider-wrap>.ultp-block-content{transition:.3s all;opacity:0}.ultp-slide-slide1 .slick-slide .ultp-block-image-inner{transition:.3s all;opacity:.5}.ultp-slide-slide1 .slick-center{z-index:999!important;width:800px}.ultp-slide-slide1 .slick-center .ultp-block-slider-wrap>.ultp-block-content{transition:.3s all;opacity:1}.ultp-slide-slide1 .slick-center .ultp-block-image-inner{opacity:1;transition:.3s all}.ultp-slide-slide2 .ultp-block-slider-wrap{display:flex;align-items:center;justify-content:space-between;flex-direction:row-reverse}.ultp-slide-slide2 .ultp-block-slider-wrap .ultp-block-content,.ultp-slide-slide2 .ultp-block-slider-wrap .ultp-block-image-inner{position:static!important}.ultp-slide-slide3 .ultp-block-slider-wrap .ultp-block-image-inner{height:auto}.ultp-slide-slide3 .ultp-block-slider-wrap .ultp-block-content{box-sizing:border-box}.ultp-slide-slide3 .ultp-block-slider-wrap .ultp-block-content,.ultp-slide-slide3 .ultp-block-slider-wrap .ultp-block-image-inner{position:static!important}.ultp-slide-slide3 .ultp-block-slider-wrap .ultp-block-image{height:100%}.ultp-slide-slide3 .ultp-block-slider-wrap .ultp-block-content-inner{height:100%;width:100%}.ultp-slide-slide3 .ultp-block-slider-wrap .ultp-block-content-inner .ultp-cat-new-world{position:relative;z-index:999}.ultp-slide-slide3 .ultp-block-slider-wrap .ultp-block-content{height:-webkit-fill-available}.ultp-slide-slide4 .slick-slide .ultp-block-content-inner{transition:all .4s ease-in-out;opacity:0}.ultp-slide-slide4 .slick-center .ultp-block-content-inner{opacity:1}.ultp-slide-slide5 .slick-slide{transition:all .4s ease-in-out}.ultp-pro-helper{text-align:center;font-size:16px;padding:7px 27px;color:#fff}.ultp-pro-helper div{display:flex;justify-content:space-between;align-items:center}.ultp-pro-helper div span{margin-right:auto}.ultp-pro-helper div a{color:#fff;text-decoration:underline}.ultp-pro-helper div a:hover{color:#eee}.ultp-pro-helper div .ultp-upgrade-pro{color:#ffca27!important;margin-right:20px}.ultp-pro-helper div .ultp-upgrade-pro:hover{color:#d4a619!important}@media only screen and (max-width:767px){.ultp-slide-slide6 .ultp-block-slider-wrap{height:-webkit-fill-available!important}.ultp-slide-slide6 .ultp-block-slider-wrap .ultp-block-content-inner,.ultp-slide-slide6 .ultp-block-slider-wrap>.ultp-block-content{width:100%!important}.ultp-slide-slide6 .ultp-block-slider-wrap .ultp-block-content-inner,.ultp-slide-slide6 .ultp-block-slider-wrap>.ultp-block-content,.ultp-slide-slide6 .ultp-block-slider-wrap>.ultp-block-image-inner{position:static!important;height:-webkit-fill-available!important}.ultp-slide-slide6 .slick-next,.ultp-slide-slide6 .slick-prev{left:unset!important;right:0!important}.ultp-slide-slide6 .slick-prev{right:50px!important}}.wp-block-ultimate-post-row{position:relative}.wp-block-ultimate-post-row>.ultp-row-wrapper{transition:.3s;position:relative}.wp-block-ultimate-post-row>.ultp-row-wrapper:hover{transition:.3s}.wp-block-ultimate-post-row>.ultp-row-wrapper>.wp-block-ultimate-post-column{transition:.3s}.wp-block-ultimate-post-row>.ultp-row-wrapper>.wp-block-ultimate-post-column:hover{transition:.3s}.wp-block-ultimate-post-row>.ultp-row-wrapper .alignfull{margin-left:unset;margin-right:unset;width:unset;max-width:unset}.wp-block-ultimate-post-row>.ultp-row-wrapper>.ultp-row-content{display:flex;flex-wrap:wrap;box-sizing:border-box;width:100%}.ultp-rowbg-video{width:100%;height:100%;overflow:hidden;position:absolute;top:0;bottom:0;right:0;left:0}.ultp-rowbg-video iframe{height:100vh;width:100vw;pointer-events:none;transform:translateX(-50%) translateY(-50%);position:absolute;left:50%;top:50%}.ultp-rowbg-video video{height:auto;width:auto;min-width:100%;min-height:100%;max-width:unset;transform:translate(-50%,-50%);position:absolute;top:50%;left:50%}.ultp-row-shape{width:100%;height:-moz-fit-content;height:fit-content;pointer-events:none;line-height:0;display:block;overflow:hidden;position:absolute;top:-1px;left:0;z-index:0}.ultp-row-shape.ultp-shape-bottom{bottom:0;top:auto!important}.ultp-row-shape.ultp-shape-bottom svg{transform:rotate(180deg)}.ultp-rowwrap-url{cursor:pointer;width:100%;height:100%;display:block;position:absolute;top:0;left:0;z-index:999999999}.ultp-column-overlay,.ultp-row-overlay{width:100%;height:100%;transition:.3s;box-sizing:border-box;position:absolute;top:0;left:0}.ultp-column-overlay:hover,.ultp-row-overlay:hover{transition:.3s}@media only screen and (min-width:991px){body .wp-block-ultimate-post-row.ultpBgPadding.lgL>.ultp-row-wrapper>.block-editor-inner-blocks,body .wp-block-ultimate-post-row.ultpBgPadding.lgL>.ultp-row-wrapper>.ultp-row-content{padding-left:15px}body .wp-block-ultimate-post-row.ultpBgPadding.lgR>.ultp-row-wrapper>.block-editor-inner-blocks,body .wp-block-ultimate-post-row.ultpBgPadding.lgR>.ultp-row-wrapper>.ultp-row-content{padding-right:15px}}@media only screen and (max-width:991px) and (min-width:768px){body .wp-block-ultimate-post-row.ultpBgPadding.smL>.ultp-row-wrapper>.block-editor-inner-blocks,body .wp-block-ultimate-post-row.ultpBgPadding.smL>.ultp-row-wrapper>.ultp-row-content{padding-left:15px}body .wp-block-ultimate-post-row.ultpBgPadding.smR>.ultp-row-wrapper>.block-editor-inner-blocks,body .wp-block-ultimate-post-row.ultpBgPadding.smR>.ultp-row-wrapper>.ultp-row-content{padding-right:15px}}@media only screen and (max-width:767px){body .wp-block-ultimate-post-row.ultpBgPadding.xsL>.ultp-row-wrapper>.block-editor-inner-blocks,body .wp-block-ultimate-post-row.ultpBgPadding.xsL>.ultp-row-wrapper>.ultp-row-content{padding-left:15px}body .wp-block-ultimate-post-row.ultpBgPadding.xsR>.ultp-row-wrapper>.block-editor-inner-blocks,body .wp-block-ultimate-post-row.ultpBgPadding.xsR>.ultp-row-wrapper>.ultp-row-content{padding-right:15px}}.postx-page .wp-block-ultimate-post-row.row_scrollToStickyTop{position:fixed;top:0;left:0;width:100vw;max-width:unset!important}.postx-page .wp-block-ultimate-post-row.row_scrollToStickyTop,.postx-page .wp-block-ultimate-post-row.row_scrollToStickyTop.stickyTopDeActive{opacity:1;overflow:visible;transition:.1s}.postx-page .wp-block-ultimate-post-row.row_scrollToStickyTop.stickyTopActive{opacity:0;overflow:hidden;transition:.1s}.postx-page .wp-block-ultimate-post-row.row_sticky{top:0;width:-moz-available;width:-webkit-fill-available}.postx-page .wp-block-ultimate-post-row.row_sticky.stickyTopDeActive{height:auto!important;position:static;animation:stickyDeActive .1s}.postx-page .wp-block-ultimate-post-row.row_sticky.stickyTopActive{height:-moz-max-content!important;height:max-content!important;position:fixed;animation:stickyActive .1s}.postx-page .wp-block-ultimate-post-row.row_sticky_active{z-index:999}@keyframes stickyActive{0%{opacity:.3}100%{opacity:1}}@keyframes stickyDeActive{0%{opacity:.3}100%{opacity:1}}body:has(#wpadminbar) .wp-block-ultimate-post-row.row_scrollToStickyTop,body:has(#wpadminbar) .wp-block-ultimate-post-row.stickyTopActive.row_sticky{top:32px!important}@media screen and (max-width:600px){body:has(#wpadminbar) .wp-block-ultimate-post-row.row_scrollToStickyTop,body:has(#wpadminbar) .wp-block-ultimate-post-row.stickyTopActive.row_sticky{top:0!important}}.wp-block-ultimate-post-social-icons a{text-decoration:none!important}.wp-block-ultimate-post-social-icons .ultp-social-icons-separator{display:block}.wp-block-ultimate-post-social-icons .ultp-social-icons-wrapper{list-style:none;transition:.3s}.wp-block-ultimate-post-social-icons .ultp-social-icons-wrapper:hover{transition:.3s}.wp-block-ultimate-post-social-icons .ultp-social-icons-wrapper:has(.block-editor-block-list__layout){padding:0!important}.wp-block-ultimate-post-social-icons .ultp-social-icons-wrapper:has(>.wp-block-ultimate-post-social){width:-moz-max-content;width:max-content;max-width:-moz-fit-content;max-width:fit-content}.wp-block-ultimate-post-social-icons .ultp-social-icons-wrapper>li:last-child{border:none;padding-bottom:0;margin-bottom:0}.wp-block-ultimate-post-social-icons .ultp-social-bg{width:-moz-fit-content;width:fit-content;display:flex;align-items:center;justify-content:center;transition:.3s}.wp-block-ultimate-post-social-icons .ultp-social-bg:hover{transition:.3s}.wp-block-ultimate-post-social-icons .ultp-social-bg svg{transition:.3s}.wp-block-ultimate-post-social-icons .ultp-social-bg svg:hover{transition:.3s}.wp-block-ultimate-post-social-icons .ultp-social-content{width:100%;box-sizing:border-box;justify-content:flex-start;transition:.3s}.wp-block-ultimate-post-social-icons .ultp-social-content:hover{transition:.3s}.wp-block-ultimate-post-social-icons .block-editor-block-list__layout{width:-moz-max-content;width:max-content;max-width:-moz-fit-content;max-width:fit-content;transition:.3s}.wp-block-ultimate-post-social-icons .block-editor-block-list__layout:hover{transition:.3s}.wp-block-ultimate-post-social-icons .block-editor-block-list__layout>.block-editor-block-list__block{margin:0!important;width:100%}.wp-block-ultimate-post-social-icons .block-editor-inner-blocks:has(.block-list-appender)>.block-editor-block-list__layout>div{margin:0}.wp-block-ultimate-post-social-icons .block-editor-inner-blocks:has(.block-list-appender)>.block-editor-block-list__layout>div:nth-last-child(2) li{border:none;padding-bottom:0!important;margin-bottom:0!important;padding-right:0!important;margin-right:0!important}.wp-block-ultimate-post-social-icons .block-editor-inner-blocks>.block-editor-block-list__layout>div{margin:0}.wp-block-ultimate-post-social-icons .block-editor-inner-blocks>.block-editor-block-list__layout>div:last-child li{border:none;padding-bottom:0!important;margin-bottom:0!important;padding-right:0!important;margin-right:0!important}.ultp-social-icons-layout2{list-style:none;justify-content:flex-end}.ultp-social-icons-layout2 .ultp-social-content{text-align:right;flex-direction:row-reverse}.wp-block-ultimate-post-star-rating{display:flex}.wp-block-ultimate-post-star-rating .ultp-rating-block,.wp-block-ultimate-post-star-rating .ultp-rating-icon{display:flex;align-items:center}.ultp-toc-header{display:flex;align-items:center}.ultp-toc-header .ultp-toc-heading{margin-right:10px}.ultp-toc-header .ultp-collapsible-toggle>a{transition:.4s}.ultp-toc-header .ultp-collapsible-toggle>a svg{width:16px}.ultp-toc-header .ultp-collapsible-toggle>a.ultp-collapsible-icon{line-height:16px}.ultp-toc-header .ultp-collapsible-toggle .ultp-collapsible-open{display:none}.ultp-toc-header .ultp-collapsible-toggle.ultp-toggle-collapsed .ultp-collapsible-hide{display:none}.ultp-toc-header .ultp-collapsible-toggle.ultp-toggle-collapsed .ultp-collapsible-open{display:inline-block}.ultp-toc-header .ultp-collapsible-toggle.ultp-toggle-collapsed .ultp-collapsible-open.ultp-collapsible-icon{transform:rotate(180deg);position:relative;top:3px}.ultp-toc-sticky{overflow:hidden;z-index:999;opacity:1;transition:.4s}.ultp-toc-sticky .ultp-block-toc-body{width:100%;max-height:400px;overflow-x:hidden}.ultp-toc-sticky.ultp-toc-scroll{transition:.4s;opacity:1;position:fixed;top:80px;max-height:480px;max-width:350px;width:350px;right:0}.block-editor-block-list__block .ultp-toc-sticky.ultp-toc-scroll{top:inherit;right:inherit;position:relative;max-height:inherit;max-width:inherit;overflow:visible}.block-editor-block-list__block .ultp-toc-sticky.ultp-toc-scroll .ultp-block-toc-body{width:inherit;max-height:initial;overflow-x:initial}.ultp-toc-backtotop{position:fixed;bottom:40px;right:40px;z-index:99999999;background:red;text-align:center;text-decoration:none!important;opacity:0;visibility:hidden;transition:.3s;line-height:0}.ultp-toc-backtotop.tocshow{opacity:1;visibility:visible}.editor-styles-wrapper .ultp-toc-backtotop{opacity:1;visibility:visible}.ultp-block-toc-body ul.ultp-toc-lists{margin-left:0}.ultp-block-toc-body ul.ultp-toc-lists li{list-style:none}.ultp-block-toc-body ul.ultp-toc-lists li a{border:none;transition:color .3s;text-decoration:none}.ultp-block-toc-body ul.ultp-toc-lists{padding-left:0}.ultp-block-toc-body ul.ultp-toc-lists li{margin-bottom:0}.ultp-block-toc-body ul.ultp-toc-lists li ul.ultp-toc-lists{margin-left:15px}.ultp-block-toc-body.ultp-block-toc-style1 .ultp-toc-lists{padding-left:25px;list-style:disc}.ultp-block-toc-body.ultp-block-toc-style1 .ultp-toc-lists li{list-style:initial}.ultp-block-toc-body.ultp-block-toc-style2 .ultp-toc-lists{counter-reset:item;list-style:none!important;margin-left:0;padding-left:25px}.ultp-block-toc-body.ultp-block-toc-style2 .ultp-toc-lists>li{counter-increment:item;list-style-type:none}.ultp-block-toc-body.ultp-block-toc-style2 .ultp-toc-lists li a{transition:.4s;text-decoration:none;position:relative}.ultp-block-toc-body.ultp-block-toc-style2 .ultp-toc-lists li a::before{content:counters(item, ".") ". ";position:absolute;right:calc(100% + 8px);word-break:initial}.ultp-block-toc-body.ultp-block-toc-style2 .ultp-toc-lists li ol>li a::before{content:counters(item, ".") " ";word-break:initial}.ultp-block-toc-body.ultp-block-toc-style3 .ultp-toc-lists li a::before{transition:.4s;content:"☞";padding-right:5px}.ultp-block-toc-body.ultp-block-toc-style4 .ultp-toc-lists li a::before{transition:.4s;content:"▶";padding-right:5px;font-size:13px}.ultp-block-toc-body.ultp-block-toc-style5 .ultp-toc-lists li a::before{transition:.4s;content:"➢";padding-right:5px}.ultp-block-toc-body.ultp-block-toc-style6 .ultp-toc-lists li a::before{transition:.4s;content:"➞";padding-right:5px}.ultp-block-toc-body.ultp-block-toc-style7 .ultp-toc-lists li a::before{transition:.4s;content:"▷";padding-right:5px;font-size:14px}.ultp-block-toc-body.ultp-block-toc-style8 .ultp-toc-lists li a::before{transition:.4s;content:"→";margin-right:5px}.ultp-block-toc-body>.ultp-toc-lists{margin:0}.ultp-block-toc-body>.ultp-toc-lists>li:first-of-type{margin-top:0}@media (max-width:992px){.ultp-toc-sticky.ultp-toc-scroll{top:inherit;right:inherit;position:relative;max-height:inherit;width:inherit;max-width:inherit;overflow:visible;z-index:initial}.ultp-toc-sticky.ultp-toc-scroll .ultp-block-toc-body{width:inherit;max-height:initial;overflow-x:initial}}.ultp-tab-wrapper{display:flex}.ultp-tab-wrapper>.block-editor-inner-blocks{width:100%}.ultp-tab-wrapper>.ultp-tabs-nav-wrapper{box-sizing:border-box;display:flex;align-items:center;flex-shrink:0;position:relative;height:-moz-fit-content;height:fit-content}.ultp-tabs-nav{display:flex;align-items:stretch;width:-moz-fit-content;width:fit-content;box-sizing:border-box;transition:.5s}.ultp-tabs-nav-icon{display:flex}.ultp-tabs-nav-inner{position:relative;display:flex;align-items:center}.ultp-tab-normal.ultp-nav-top.ultp-tab-fill-width>.ultp-tabs-nav-wrapper{width:100%}.ultp-tab-normal.ultp-nav-top.ultp-tab-fill-width>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{width:100%}.ultp-tab-normal.ultp-nav-top.ultp-tab-fill-width>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{width:100%;flex-wrap:wrap}.ultp-tab-normal>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{width:100%;flex-wrap:wrap}.ultp-tab-normal.ultp-nav-top.ultp-tab-full-width>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner,.ultp-tab-normal.ultp-nav-top.ultp-tab-full-width>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{justify-content:inherit;width:100%}.ultp-tab-slider.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{overflow:hidden;padding-bottom:10px}.ultp-tab-slider.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-add-new-tab{position:absolute;right:0;top:0}.ultp-tab-slider.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.ultp-tab-slider.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow{top:calc(50% - 10px);transform:translateY(-50%)}.ultp-tab-slider.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{overflow:hidden;padding-top:10px}.ultp-tab-slider.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-add-new-tab{position:absolute;right:0;top:0}.ultp-tab-slider.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.ultp-tab-slider.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow{top:calc(50% - 0px);transform:translateY(-50%)}.ultp-tab-slider>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{position:relative}.ultp-tab-slider>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element{flex-shrink:0;flex:1}.ultp-nav-bottom,.ultp-nav-top{flex-direction:column}.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner,.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{gap:8px}.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow,.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow{top:calc(50% + 15px);transform:translateY(-50%)}.ultp-nav-left{flex-direction:row}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{align-self:flex-start}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{width:100%!important;flex-direction:column}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element::after{top:calc(50% - 10px);transform:rotate(-90deg);left:100%}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element:last-child>.ultp-tabs-setting>.ultp-individual-settings{bottom:100%}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element>.ultp-tabs-setting>.ultp-individual-settings{top:auto!important}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element>.ultp-tabs-setting>.ultp-individual-settings>.ultp-individual-settings-position{gap:10px;top:auto!important}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element>.ultp-tabs-setting>.ultp-individual-settings>.ultp-individual-settings-position>div:last-child{margin-top:-3px;transform:rotate(90deg)}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element>.ultp-tabs-setting>.ultp-individual-settings>.ultp-individual-settings-position>div:first-child{margin-top:3px;transform:rotate(90deg)}.ultp-nav-right{flex-direction:row-reverse}.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{align-self:flex-start}.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{width:100%!important;flex-direction:column}.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element:last-child>.ultp-tabs-setting>.ultp-individual-settings{bottom:100%}.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element::after{top:calc(50% - 10px);transform:rotate(90deg);left:auto;right:100%}.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element>.ultp-tabs-setting>.ultp-individual-settings{top:auto!important}.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element>.ultp-tabs-setting>.ultp-individual-settings>.ultp-individual-settings-position{gap:10px}.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element>.ultp-tabs-setting>.ultp-individual-settings>.ultp-individual-settings-position>div:last-child{margin-top:-3px;transform:rotate(90deg)}.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element>.ultp-tabs-setting>.ultp-individual-settings>.ultp-individual-settings-position>div:first-child{margin-top:3px;transform:rotate(90deg)}.ultp-nav-bottom{flex-direction:column-reverse}.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element::after{bottom:100%;top:auto;transform:rotate(-180deg)}.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element>.ultp-tabs-setting>.ultp-individual-settings{top:auto;bottom:-28px}.ultp-nav-left>.ultp-tabs-nav-wrapper,.ultp-nav-right>.ultp-tabs-nav-wrapper{width:100%}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner,.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{width:100%;max-height:400px;align-items:flex-start;overflow:hidden}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-add-new-tab,.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-add-new-tab{position:absolute;right:0}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow,.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow{left:50%;transform:translateX(-50%);right:auto!important;box-sizing:border-box}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow{top:0;bottom:auto}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow>svg,.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow>svg{transform:rotate(90deg)!important}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow,.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow{top:auto;bottom:0}.ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow>svg,.ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow>svg{transform:rotate(90deg)}.ultp-add-new-tab{cursor:pointer;height:24px;width:24px;border-radius:2px;display:flex;justify-content:center;align-items:center;align-self:center;background-color:#070707}.ultp-add-new-tab svg{color:#fff;height:18px;width:18px}.ultp-tabs-nav{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important;pointer-events:auto!important}.ultp-tabs-nav-element{cursor:pointer;position:relative;box-sizing:border-box;-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important;pointer-events:auto!important}.ultp-tabs-nav-element:hover{z-index:999}.ultp-tabs-nav-element::after{content:"";width:20px;height:20px;text-align:center;clip-path:polygon(0 0,50% 50%,100% 0);position:absolute;top:99%;left:calc(50% - 7px);display:none}.ultp-tabs-nav-element.ultp-tab-active::after,.ultp-tabs-nav-element:hover::after{display:block}.ultp-tabs-nav-element.ultp-tab-active{z-index:999}.ultp-tabs-nav-element.ultp-tab-active::after,.ultp-tabs-nav-element.ultp-tab-active:hover:after{display:block}.ultp-tabs-nav-element>.tab-progressbar{height:5px;width:auto;top:calc(100% - 5px);position:absolute;left:0;border-radius:inherit;transition:3s;visibility:hidden;border-top-left-radius:0;border-top-right-radius:0;animation-timing-function:ease}.ultp-tabs-nav-element.tab-progressbar-active .tab-progressbar{visibility:visible;transition:1s;animation-name:progressbarWidth;animation-timing-function:ease}.ultp-tab-content{width:100%}.ultp-tab-title{min-width:1px;white-space:pre-wrap;margin:0!important}.ultp-tab-title-content{display:flex;align-items:center}.ultp-tab-left-arrow,.ultp-tab-right-arrow{display:none;cursor:pointer;background:#beb9ff;padding:0 13px 0 4px;box-sizing:border-box;border-radius:50%;position:absolute!important;right:0;z-index:999}.ultp-tab-left-arrow.ultp-arrow-active,.ultp-tab-right-arrow.ultp-arrow-active{display:flex;justify-content:center;align-items:center}.ultp-tab-left-arrow{left:0;right:auto!important;padding:0 3px 0 13px}.ultp-tab-left-arrow:after{transform:rotate(318deg)!important}.ultp-tab-right-arrow{position:relative}@keyframes progressbarWidth{0%{width:100%}100%{width:0%}}.ultp-tab-arrow-off .ultp-tabs-nav-element::after{display:none}.ultp-tab-full-width:not(.ultp-tab-slider)>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{flex-wrap:wrap}.ultp-tab-fill-width:not(.ultp-tab-slider)>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{flex-wrap:wrap}.ultp-tab-fill-width:not(.ultp-tab-slider)>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element{flex:1}.ultp-individual-settings{display:flex;justify-content:center;align-items:center;height:100%;max-height:24px;width:-moz-fit-content;width:fit-content;box-sizing:border-box;border:1px solid;border-radius:18px;padding:0 12px;background-color:#070707;transform:translateX(-50%);position:absolute;z-index:999;top:-28px;left:50%}.ultp-individual-settings path,.ultp-individual-settings svg{color:#fff}.ultp-individual-settings-position{border-right:1px solid #4a4a4a;display:flex;align-items:center;gap:4px;padding-right:10px}.ultp-individual-settings-position path,.ultp-individual-settings-position svg{height:11px;width:12px;display:none}.ultp-individual-settings-position>div{cursor:pointer}.ultp-individual-settings-position>div:first-child::after,.ultp-individual-settings-position>div:last-child::after{content:"";display:block;width:5px;height:5px;border-top:2px solid #fff;border-left:2px solid #fff;border-radius:0}.ultp-individual-settings-position>div:first-child::after{transform:rotate(-45deg)}.ultp-individual-settings-position>div:last-child::after{transform:rotate(135deg)}.ultp-individual-settings-position>div:hover:after{border-color:#ff176b!important}.ultp-individual-settings-action{display:flex;align-items:center;border-right:1px solid #4a4a4a;padding:0 10px;gap:13px}.ultp-individual-settings-action path,.ultp-individual-settings-action svg{height:14px;width:14px}.ultp-individual-settings-action>div{cursor:pointer}.ultp-individual-settings-action>div:last-child path{color:#fff}.ultp-individual-settings-action div:hover:has(>svg) path,.ultp-individual-settings-action div:hover:has(>svg) svg{color:#ff176b!important}.ultp-individual-settings-delete{padding:0 5px 0 8px}.ultp-individual-settings-delete path,.ultp-individual-settings-delete svg{cursor:pointer;color:none;color:#ff176b;height:16px;width:16px}.ultp-individual-settings-icon svg path{fill:none!important;color:#fff}.ultp-individual-settings div{height:100%;display:flex;align-items:center}.ultp-tab-wrapper-backend.ultp-tab-normal.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{padding-top:10px}.ultp-tab-wrapper-backend .tab-progressbar-actives>.tab-progressbar{visibility:visible;width:100%}.ultp-tab-wrapper-backend .wp-block-ultimate-post-tab-item>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender>.block-editor-inserter>button.block-editor-button-block-appender{min-height:160px;border-radius:4px;border:1px solid #070707}.ultp-tab-toolbar{display:flex;align-items:center}.ultp-tab-toolbar .ultp-tab-toolbar-icon svg{fill:none}.wp-block-ultimate-post-tabs:has(.ultp-nav-top){padding-top:20px}.wp-block-ultimate-post-tabs .block-editor-block-list__layout>.block-list-appender{width:100%;max-width:auto!important}.wp-block-ultimate-post-tabs:has(.wp-block-ultimate-post-tabs)>.ultp-block-wrapper>.ultp-tab-wrapper>.block-editor-inner-blocks{overflow:hidden}.postx-admin-page .ultp-tab-slider.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{overflow:hidden;padding-bottom:10px;padding-top:30px}.postx-admin-page .ultp-tab-slider.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.postx-admin-page .ultp-tab-slider.ultp-nav-top>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow{top:calc(50% + 15px);transform:translateY(-50%)}.postx-admin-page .ultp-tab-slider.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{overflow:hidden;padding-top:10px;padding-bottom:30px}.postx-admin-page .ultp-tab-slider.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.postx-admin-page .ultp-tab-slider.ultp-nav-bottom>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow{top:50%}.postx-admin-page .ultp-tab-slider .ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{position:relative}.postx-admin-page .ultp-tab-slider .ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element{flex-shrink:0;flex:1}.postx-page .ultp-tabs-nav-wrapper{flex-shrink:0}.postx-page .ultp-tab-slider>.ultp-tabs-nav-wrapper{overflow:hidden;padding-bottom:10px}.postx-page .ultp-nav-left>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.postx-page .ultp-nav-right>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow{top:0}@media only screen and (max-width:600px){.wp-block-ultimate-post-tabs>.ultp-block-wrapper>.ultp-tab-wrapper>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element{width:100%;min-width:none!important;max-width:none!important}.ultp-tab-accordion>.ultp-tabs-nav-wrapper{display:contents!important}.ultp-tab-accordion>.ultp-tabs-nav-wrapper>.ultp-tab-left-arrow,.ultp-tab-accordion>.ultp-tabs-nav-wrapper>.ultp-tab-right-arrow{display:none}.ultp-tab-slider>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav{flex-wrap:nowrap}.ultp-tab-mobile-stack{flex-direction:column}.ultp-tab-mobile-stack>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{padding:0!important}.ultp-tab-mobile-stack>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element::after{top:99%;left:calc(50% - 7px);transform:rotate(0)}.ultp-nav-left.ultp-tab-accordion,.ultp-nav-right.ultp-tab-accordion{flex-direction:column}.ultp-nav-left.ultp-tab-accordion>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner,.ultp-nav-right.ultp-tab-accordion>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner{max-height:unset}.ultp-nav-left.ultp-tab-accordion>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element:after,.ultp-nav-right.ultp-tab-accordion>.ultp-tabs-nav-wrapper>.ultp-tabs-nav-inner>.ultp-tabs-nav>.ultp-tabs-nav-element:after{top:99%;left:calc(50% - 7px);transform:rotate(0)}}.ultp-taxonomy-layout-1 li a{color:#000;display:flex;flex-wrap:wrap}.ultp-taxonomy-layout-1 li a .ultp-taxonomy-count{margin-left:auto}.ultp-taxonomy-layout-1 li a .ultp-taxonomy-name{color:#333}.ultp-taxonomy-layout-1 li a .ultp-taxonomy-count{color:#333;text-align:center;display:inline-block}.ultp-taxonomy-layout-1 li a .ultp-taxonomy-desc{color:#757575;width:100%}.ultp-taxonomy-layout-2 li a{color:#fff;padding:15px;display:inline-block}.ultp-taxonomy-layout-2 li a .ultp-taxonomy-bar{height:1px;width:100%;margin:0 20px;border-bottom:1px dashed #fff}.ultp-taxonomy-layout-2 li a .ultp-taxonomy-name{flex-basis:auto;flex-shrink:0;color:#fff}.ultp-taxonomy-layout-2 li a .ultp-taxonomy-count{color:#fff;text-align:center;display:inline-block;white-space:nowrap}.ultp-taxonomy-layout-2 li a .ultp-taxonomy-desc{color:#fff;z-index:1;position:relative}.ultp-taxonomy-layout-2 li a .ultp-taxonomy-lt2-content{display:flex;align-items:center;width:100%;z-index:1;position:relative}.ultp-taxonomy-layout-2 li a .ultp-taxonomy-lt2-overlay{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;height:100%;transition:.4s}.ultp-taxonomy-layout-2 li a:hover .ultp-taxonomy-lt2-overlay{background:rgba(0,0,0,.7)}.ultp-taxonomy-layout-3 li a{padding:15px;border:1px solid #e5e5e5;color:#000;display:inline-block}.ultp-taxonomy-layout-3 li a .ultp-taxonomy-bar{height:1px;width:100%;margin:0 20px;border-bottom:1px dashed #ccc}.ultp-taxonomy-layout-3 li a .ultp-taxonomy-lt3-img{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.1);background-size:cover;background-position:center;background-repeat:no-repeat;opacity:0;transition:opacity .4s;pointer-events:none}.ultp-taxonomy-layout-3 li a .ultp-taxonomy-lt3-overlay{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;height:100%;transition:.4s;opacity:0}.ultp-taxonomy-layout-3 li a:hover .ultp-taxonomy-lt3-overlay{opacity:1;background:rgba(0,0,0,.7)}.ultp-taxonomy-layout-3 li a .ultp-taxonomy-desc,.ultp-taxonomy-layout-3 li a span{z-index:2;position:relative}.ultp-taxonomy-layout-3 li a .ultp-taxonomy-lt3-content{display:flex;align-items:center}.ultp-taxonomy-layout-3 li a:hover .ultp-taxonomy-lt3-img{opacity:1}.ultp-taxonomy-layout-3 li a .ultp-taxonomy-name{flex-basis:auto;flex-shrink:0;color:#333}.ultp-taxonomy-layout-3 li a .ultp-taxonomy-count{color:#333;text-align:center;display:inline-block;white-space:nowrap}.ultp-taxonomy-layout-3 li a .ultp-taxonomy-desc{color:#757575}.ultp-taxonomy-layout-3 li a:hover .ultp-taxonomy-name{color:#fff}.ultp-taxonomy-layout-3 li a:hover .ultp-taxonomy-count{color:#fff}.ultp-taxonomy-layout-3 li a:hover .ultp-taxonomy-desc{color:#fff}.ultp-taxonomy-layout-4 li a{color:#000;padding:20px;border:1px solid #e5e5e5;text-align:center;display:inline-block}.ultp-taxonomy-layout-4 li a img{max-width:50px;display:inline-block}.ultp-taxonomy-layout-4 li a .ultp-taxonomy-name{color:#333}.ultp-taxonomy-layout-4 li a .ultp-taxonomy-count{color:#333;margin-left:4px;display:inline-block;text-align:center}.ultp-taxonomy-layout-4 li a .ultp-taxonomy-desc{color:#757575}.ultp-taxonomy-layout-5 li a{color:#000;text-align:center;display:flex;flex-wrap:wrap;line-height:0}.ultp-taxonomy-layout-5 li a img{width:100%;height:auto;-o-object-fit:cover;object-fit:cover}.ultp-taxonomy-layout-5 li a .ultp-taxonomy-lt5-content{padding:10px;background:#e5e5e5;line-height:normal;width:100%;display:block}.ultp-taxonomy-layout-5 li a .ultp-taxonomy-name{color:#333}.ultp-taxonomy-layout-5 li a .ultp-taxonomy-count{color:#333;margin-left:4px;display:inline-block;text-align:center}.ultp-taxonomy-layout-5 li a .ultp-taxonomy-desc{color:#757575;line-height:normal}.ultp-taxonomy-layout-6 li a{color:#000;padding:15px;text-align:center;display:inline-block}.ultp-taxonomy-layout-6 li a .ultp-taxonomy-name{color:#fff;position:relative;z-index:1}.ultp-taxonomy-layout-6 li a .ultp-taxonomy-count{color:#fff;margin-left:4px;display:inline-block;position:relative;z-index:1}.ultp-taxonomy-layout-6 li a .ultp-taxonomy-desc{color:#fff;position:relative;z-index:1}.ultp-taxonomy-layout-6 li a .ultp-taxonomy-lt6-overlay{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;height:100%;transition:.4s}.ultp-taxonomy-layout-6 li a:hover .ultp-taxonomy-lt6-overlay{background:rgba(0,0,0,.7)}.ultp-taxonomy-layout-7 li a{color:#000;padding:20px 15px;text-align:center;display:inline-block}.ultp-taxonomy-layout-7 li a .ultp-taxonomy-name{padding:8px 20px;background:#fff;border-radius:100px;color:#333;display:inline-block;position:relative;z-index:1}.ultp-taxonomy-layout-7 li a .ultp-taxonomy-desc{color:#fff;margin-top:10px;position:relative;z-index:1}.ultp-taxonomy-layout-7 li a .ultp-taxonomy-count{margin-left:4px;display:inline-block;position:relative;z-index:1}.ultp-taxonomy-layout-7 li a .ultp-taxonomy-lt7-overlay{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;height:100%;transition:.4s}.ultp-taxonomy-layout-7 li a:hover .ultp-taxonomy-lt7-overlay{background:rgba(0,0,0,.7)}.ultp-taxonomy-layout-8 li a{color:#000;padding:20px 15px;text-align:center;display:inline-block}.ultp-taxonomy-layout-8 li a .ultp-taxonomy-name{padding:8px 20px;background:#fff;border-radius:100px;color:#333;position:relative;display:inline-block;z-index:1}.ultp-taxonomy-layout-8 li a .ultp-taxonomy-count{position:absolute;background:#000;border-radius:100px;width:22px;height:22px;top:-5px;right:-12px;text-align:center;color:#fff;z-index:1}.ultp-taxonomy-layout-8 li a .ultp-taxonomy-desc{color:#fff;margin-top:10px;position:relative;z-index:1}.ultp-taxonomy-layout-8 li a .ultp-taxonomy-lt8-overlay{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;height:100%;transition:.4s}.ultp-taxonomy-layout-8 li a:hover .ultp-taxonomy-lt8-overlay{background:rgba(0,0,0,.7)}.ultp-taxonomy-animation-zoomIn li a{transition:transform .3s cubic-bezier(.6,0,.3,1);transform:scale(1);backface-visibility:hidden}.ultp-taxonomy-animation-zoomIn li a *,.ultp-taxonomy-animation-zoomIn li a :after,.ultp-taxonomy-animation-zoomIn li a :before{box-sizing:border-box;backface-visibility:hidden}.ultp-taxonomy-animation-zoomIn li:hover a{transform:scale(1.03)}.ultp-taxonomy-animation-zoomOut li a{transition:transform .3s cubic-bezier(.6,0,.3,1);backface-visibility:hidden;transform:scale(1)}.ultp-taxonomy-animation-zoomOut li a *,.ultp-taxonomy-animation-zoomOut li a :after,.ultp-taxonomy-animation-zoomOut li a :before{box-sizing:border-box;backface-visibility:hidden}.ultp-taxonomy-animation-zoomOut li:hover a{transform:scale(.97)}.ultp-taxonomy-animation-slideLeft li a{transition:transform .3s cubic-bezier(.6,0,.3,1);transform:translateX(0);backface-visibility:hidden}.ultp-taxonomy-animation-slideLeft li a *,.ultp-taxonomy-animation-slideLeft li a :after,.ultp-taxonomy-animation-slideLeft li a :before{box-sizing:border-box;backface-visibility:hidden}.ultp-taxonomy-animation-slideLeft li:hover a{transform:translateX(-5px)}.ultp-taxonomy-animation-slideRight li a{transition:transform .3s cubic-bezier(.6,0,.3,1);transform:translateX(0);backface-visibility:hidden}.ultp-taxonomy-animation-slideRight li a *{box-sizing:border-box;backface-visibility:hidden}.ultp-taxonomy-animation-slideRight li:hover a{transform:translateX(5px)}.wp-block-ultimate-post-youtube-gallery{margin:0!important}.wp-block-ultimate-post-youtube-gallery .ultp-ytg-loadmore-btn{width:-moz-fit-content;width:fit-content;margin-left:auto;margin-right:auto;transition:.3s}.wp-block-ultimate-post-youtube-gallery .ultp-layout-classic>.ultp-ytg-item{position:relative}.wp-block-ultimate-post-youtube-gallery .ultp-layout-classic>.ultp-ytg-item:first-child{grid-column:1/-1}.wp-block-ultimate-post-youtube-gallery .ultp-layout-classic>.ultp-ytg-item:first-child .ultp-gallery-main-video{padding-bottom:0!important;height:600px!important;width:100%}.wp-block-ultimate-post-youtube-gallery .ultp-layout-classic>.ultp-ytg-item:first-child .ultp-gallery-main-video img{width:100%}.wp-block-ultimate-post-youtube-gallery .ultp-layout-classic.ultp-gallery-overlay>.ultp-ytg-item:first-child .ultp-gallery-main-video{max-width:100%!important}.wp-block-ultimate-post-youtube-gallery .ultp-layout-classic.ultp-gallery-overlay>.ultp-ytg-item:first-child .ultp-ytg-title{font-size:24px}.wp-block-ultimate-post-youtube-gallery .ultp-layout-classic.ultp-gallery-overlay>.ultp-ytg-item:first-child .ultp-ytg-description{font-size:14px;line-height:24px}.wp-block-ultimate-post-youtube-gallery .ultp-layout-classic.ultp-gallery-overlay>.ultp-ytg-item:first-child .ultp-ytg-inside{position:absolute;top:0;display:flex;align-items:flex-end;justify-content:center;height:100%;pointer-events:none;width:100%;margin-top:5px!important}.wp-block-ultimate-post-youtube-gallery .ultp-layout-classic.ultp-gallery-list-view>div:first-child{flex-direction:column}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-list-view>div{display:flex;gap:20px}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-list-view>div:first-child{margin-bottom:0!important}@media (max-width:768px){.wp-block-ultimate-post-youtube-gallery .ultp-gallery-list-view>div{flex-direction:column}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-list-view>div .ultp-gallery-main-video{flex:none}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-list-view>div .ultp-ytg-description,.wp-block-ultimate-post-youtube-gallery .ultp-gallery-list-view>div .ultp-ytg-title{margin-left:0;margin-top:10px}}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-main-video{width:100%}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-overlay.ultp-ytg-grid .ultp-ytg-inside{display:flex;align-items:flex-end;z-index:999;position:relative;margin-top:-66px}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-overlay.ultp-ytg-grid .ultp-ytg-content{max-width:85%;margin:0 auto}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-overlay.ultp-gallery-list-view .ultp-ytg-inside{position:absolute;top:0;display:flex;align-items:center;justify-content:end;height:100%;pointer-events:none}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-overlay.ultp-gallery-list-view .ultp-ytg-content{width:70%}.wp-block-ultimate-post-youtube-gallery .ultp-gallery-overlay.ultp-gallery-list-view .ultp-gallery-main-video{max-width:50%}.ultp-ratio-height .ultp-gallery-main-video{position:relative;height:0;overflow:hidden}.ultp-ratio-height .ultp-gallery-main-video img{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.ultp-ytg-popup{box-shadow:13px 19px 104px 41px #c7c7c7;margin:50px;padding:33px;max-height:400px;overflow-x:scroll}.ultp-layout-classic.ultp-gallery-list-view.ultp-gallery-overlay .ultp-ytg-item:not(:first-child) .ultp-gallery-main-video,.ultp-layout-classic.ultp-ytg-grid.ultp-gallery-overlay .ultp-ytg-item:not(:first-child) .ultp-gallery-main-video,.ultp-layout-inline.ultp-ytg-grid.ultp-gallery-overlay .ultp-ytg-item:not(:first-child) .ultp-gallery-main-video,.ultp-ytg-grid.ultp-layout-classic.ultp-gallery-list-view.ultp-gallery-overlay .ultp-ytg-item:not(:first-child) .ultp-gallery-main-video{position:relative;transform:scale(1);transition:all .3s ease-in-out}.ultp-layout-classic.ultp-gallery-list-view.ultp-gallery-overlay .ultp-ytg-item:not(:first-child):hover .ultp-gallery-main-video,.ultp-layout-classic.ultp-ytg-grid.ultp-gallery-overlay .ultp-ytg-item:not(:first-child):hover .ultp-gallery-main-video,.ultp-layout-inline.ultp-ytg-grid.ultp-gallery-overlay .ultp-ytg-item:not(:first-child):hover .ultp-gallery-main-video,.ultp-ytg-grid.ultp-layout-classic.ultp-gallery-list-view.ultp-gallery-overlay .ultp-ytg-item:not(:first-child):hover .ultp-gallery-main-video{position:relative;z-index:999999;transform:scale(1.03);box-shadow:0 5px 15px rgba(0,0,0,.2);transition:all .3s ease-in-out}.ultp-layout-playlist{display:flex;gap:20px;margin-bottom:20px}.ultp-layout-playlist .ultp-ytg-main{flex:2;min-width:0}.ultp-layout-playlist .ultp-ytg-playlist-sidebar{flex:1;min-width:300px}.ultp-layout-playlist .ultp-ytg-playlist-items{height:600px;overflow-y:auto;background:#f5f5f5;border-radius:8px;padding:15px}.ultp-layout-playlist .ultp-ytg-playlist-item{display:flex;gap:12px;padding:10px;cursor:pointer;transition:background .3s ease;border-radius:4px;margin-bottom:10px}.ultp-layout-playlist .ultp-ytg-playlist-item.active,.ultp-layout-playlist .ultp-ytg-playlist-item:hover{background:rgba(0,0,0,.05)}.ultp-layout-playlist .ultp-ytg-playlist-item img{width:120px;height:68px;-o-object-fit:cover;object-fit:cover;border-radius:4px}.ultp-layout-playlist .ultp-ytg-playlist-item-title{font-size:14px;line-height:1.4;margin:0}@media (max-width:768px){.ultp-layout-playlist{flex-direction:column}.ultp-layout-playlist .ultp-ytg-main,.ultp-layout-playlist .ultp-ytg-playlist-sidebar{width:100%}.ultp-layout-playlist .ultp-ytg-playlist-items{height:400px}}.ultp-ytg-playlist-input{max-width:400px;margin:0 auto}.ultp-ytg-playlist-input .components-base-control__label{color:#fff}.ultp-ytg-playlist-input input{padding:20px 20px!important;font-size:15px;font-weight:400;border-radius:4px;border:1px solid #f03}.ultp-ytg-playlist-title{margin-bottom:16px;color:#fff;font-size:18px;font-weight:500}.ultp-ytg-playlist-help{color:#fff;font-size:12px;line-height:16px;max-width:708px;margin:0 auto;margin-top:13px;font-style:italic;font-weight:400}.ultp-ytg-playlist-help a{color:#000!important;font-weight:700}.ultp-ytg-container.ultp-layout-playlist{display:flex;flex-wrap:wrap;gap:20px;position:relative}.ultp-ytg-container.ultp-layout-playlist .ultp-ytg-main{flex:1;min-width:calc(var(--main-video-width,65%) - 10px)}.ultp-ytg-container.ultp-layout-playlist .ultp-ytg-playlist-sidebar{flex:1;max-width:calc(100% - var(--main-video-width,65%) - 10px)}.ultp-ytg-playlist-items{height:var(--playlist-height,600px);overflow-y:auto;background:#f5f5f5;border-radius:8px;padding:15px}.ultp-ytg-playlist-item{display:flex;gap:12px;padding:10px;cursor:pointer;transition:background .3s ease;border-radius:4px;margin-bottom:10px}.ultp-ytg-playlist-item.active,.ultp-ytg-playlist-item:hover{background:rgba(0,0,0,.05)}.ultp-ytg-playlist-item img{width:120px;height:68px;-o-object-fit:cover;object-fit:cover;border-radius:4px}.ultp-ytg-playlist-item-content{flex:1;min-width:0}.ultp-ytg-playlist-item-title{font-size:14px;line-height:1.4;margin:0 0 5px;color:#333;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.ultp-ytg-playlist-item-desc{font-size:12px;color:#666;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.ultp-ytg-playlist-items::-webkit-scrollbar{width:8px}.ultp-ytg-playlist-items::-webkit-scrollbar-track{background:#f1f1f1;border-radius:4px}.ultp-ytg-playlist-items::-webkit-scrollbar-thumb{background:#888;border-radius:4px}.ultp-ytg-playlist-items::-webkit-scrollbar-thumb:hover{background:#555}@media (max-width:768px){.ultp-ytg-container.ultp-layout-playlist{flex-direction:column}.ultp-ytg-container.ultp-layout-playlist .ultp-ytg-main,.ultp-ytg-container.ultp-layout-playlist .ultp-ytg-playlist-sidebar{min-width:100%;max-width:100%}.ultp-ytg-playlist-items{height:400px}}.ultp-youtube-gallery{display:grid;gap:20px}.ultp-youtube-gallery.playlist-view{grid-template-columns:2fr 1fr}.ultp-youtube-gallery .player-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}.ultp-youtube-gallery .player-container iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}.ultp-youtube-gallery .playlist-container{display:flex;flex-direction:column;gap:10px;max-height:600px;overflow-y:auto}.ultp-youtube-gallery .playlist-item{display:flex;gap:10px;cursor:pointer;padding:10px;border-radius:4px;transition:background-color .2s}.ultp-youtube-gallery .playlist-item:hover{background-color:#f0f0f0}.ultp-youtube-gallery .playlist-item.active{background-color:#e3e3e3}.ultp-youtube-gallery .playlist-thumbnail{width:120px;min-width:120px;position:relative}.ultp-youtube-gallery .playlist-thumbnail img{width:100%;height:auto;border-radius:4px}.ultp-youtube-gallery .playlist-info{display:flex;flex-direction:column;gap:5px}.ultp-youtube-gallery .playlist-title{font-size:14px;font-weight:500;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.ultp-youtube-gallery .playlist-duration{font-size:12px;color:#666}.ultp-youtube-gallery .duration-badge{position:absolute;bottom:5px;right:5px;background:rgba(0,0,0,.8);color:#fff;padding:2px 4px;border-radius:2px;font-size:12px}.wp-block-ultimate-post-youtube-gallery{max-width:100%;margin:0 auto}.ultp-ytg-grid{position:relative;width:100%}.ultp-ytg-player-container{margin-bottom:20px;width:100%}.ultp-ytg-playlist-item{display:grid;grid-template-columns:120px 1fr;gap:15px;padding:10px;cursor:pointer;transition:background-color .3s ease;border-radius:4px}.ultp-ytg-playlist-item:hover{background-color:rgba(0,0,0,.05)}.ultp-ytg-playlist-item.ultp-ytg-active{background-color:rgba(0,0,0,.1)}.ultp-ytg-playlist-item .ultp-gallery-main-video{position:relative;width:120px;height:67.5px;margin:0}.ultp-ytg-playlist-item .ultp-video-details{flex:1}.ultp-ytg-playlist-title{font-size:14px;line-height:1.3}.ultp-ytg-play-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;background:rgba(0,0,0,.7);border-radius:50%;display:flex;align-items:center;justify-content:center}.ultp-ytg-play-icon:before{content:"";width:0;height:0;border-style:solid;border-width:8px 0 8px 12px;border-color:transparent transparent transparent #fff;margin-left:3px}.ultp-ytg-item:not(.ultp-ytg-playlist-item){display:flex;flex-direction:column}.ultp-ytg-item:not(.ultp-ytg-playlist-item) .ultp-gallery-main-video{margin-bottom:10px}@media (max-width:768px){.ultp-ytg-playlist-item{grid-template-columns:90px 1fr;gap:10px}.ultp-ytg-playlist-item .ultp-gallery-main-video{width:90px;height:50.625px}}.ultp-wrapper-block{transition:.4s;position:relative}.ultp-advance-post-meta{display:flex;flex-wrap:wrap;gap:10px}.ultp-advance-post-meta>div{display:flex;align-items:center;flex-wrap:wrap}.ultp-advance-post-meta .ultp-auth-heading,.ultp-advance-post-meta .ultp-post-auth{display:flex;align-items:center}.ultp-advance-post-meta .ultp-auth-heading img,.ultp-advance-post-meta .ultp-post-auth img{display:block}.ultp-advance-post-meta .ultp-meta-separator{display:flex;align-items:center}.ultp-date-prefix{margin-right:5px}.ultp-contentMeta-align{justify-content:space-between!important}.ultp-readTime-wrap{display:flex;align-items:center}.ultp-readTime-wrap{white-space:nowrap}.ultp-date-meta{display:inline-flex;align-items:center}.ultp-date-meta span{line-height:0}.ultp-authMeta-label{margin-right:5px}.ultp-authMeta-count,.ultp-authMeta-wrap{display:inline-flex;align-items:center}.ultp-authMeta-avatar{line-height:0}.ultp-authMeta-avatar img{max-width:inherit}.ultp-authMeta-count .ultp-authMeta-name{white-space:nowrap;transition:.4s;text-decoration:none}.ultp-builder-category{display:flex;align-items:center;flex-wrap:wrap}.ultp-builder-category .cat-builder-content{display:block}.ultp-builder-category .cat-builder-content a{transition:.4s;margin:5px auto;display:inline-block}.cat-builder-label{white-space:nowrap;display:block;font-size:14px}.cat-builder-content a{text-decoration:none;font-size:12px}.cat-builder-content a:hover{text-decoration:none}.ultp-meta-separator span{white-space:nowrap}.ultp-comment-count,.ultp-comment-wrap{display:inline-flex;align-items:center}.ultp-read-count,.ultp-read-wrap{display:inline-flex;align-items:center}.ultp-view-count,.ultp-view-wrap{display:inline-flex;align-items:center}.ultp-post-meta-dot .ultp-meta-separator:not(:last-child)::after{content:"";bottom:auto;width:3px;margin-top:0;height:3px;border-radius:100%;left:-1px;top:50%;font-size:unset}.ultp-post-meta-slash .ultp-meta-separator:not(:last-child)::after{content:"/";left:-2px;top:1px;font-size:12px}.ultp-post-meta-doubleslash .ultp-meta-separator:not(:last-child)::after{content:"//";left:-4px;top:1px;font-size:12px}.ultp-post-meta-close .ultp-meta-separator:not(:last-child)::after{content:"x";left:-4px;top:-1px;font-size:10px}.ultp-post-meta-dash .ultp-meta-separator:not(:last-child)::after{content:"-";left:-3px;top:0;font-size:18px}.ultp-post-meta-verticalbar .ultp-meta-separator:not(:last-child)::after{content:"|";left:-1px;top:0;font-size:12px}.ultp-post-meta-emptyspace .ultp-meta-separator{padding-left:0}.ultp-meta-wrapper{display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.ultp-meta-wrapper svg{width:20px;margin-right:5px}.ultp-meta-wrapper .ultp-cat-wrap,.ultp-meta-wrapper .ultp-comment-count,.ultp-meta-wrapper .ultp-comment-wrap,.ultp-meta-wrapper .ultp-date-meta,.ultp-meta-wrapper .ultp-post-auth,.ultp-meta-wrapper .ultp-tag-wrap{display:flex;justify-content:unset;align-items:center}.ultp-meta-wrapper .ultp-auth-heading{margin-right:5px;display:flex;justify-content:unset;align-items:center}.ultp-meta-wrapper .ultp-auth-heading img{margin:0 3px}.ultp-post-cat,.ultp-post-tag{display:flex;align-items:center;flex-wrap:wrap;gap:2px}.ultp-post-cat a,.ultp-post-tag a{display:block}.ultp-comment-count,.ultp-comment-wrap,.ultp-date-icon,.ultp-readTime-wrap{display:flex;align-items:center}.ultp-comment-count svg,.ultp-comment-wrap svg,.ultp-date-icon svg,.ultp-readTime-wrap svg{margin-right:5px}.ultp-meta-style2-left,.ultp-post-meta{display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.ultp-meta-style2{display:flex;justify-content:space-between;align-items:unset}.ultp-block-archive-title .ultp-archive-content{width:100%;height:auto;box-sizing:border-box;line-height:0;overflow:hidden;transition:.4s;text-decoration:none!important;background-repeat:no-repeat;background-size:cover;background-position:center center;position:relative}.ultp-block-archive-title .ultp-archive-content .ultp-archive-desc,.ultp-block-archive-title .ultp-archive-content .ultp-archive-name,.ultp-block-archive-title .ultp-archive-content .ultp-archive-prefix{transition:.4s;position:relative;z-index:1;margin:0}.ultp-block-archive-title .ultp-archive-content .ultp-archive-overlay{position:absolute;left:0;top:0;background:rgba(0,0,0,.1);width:100%;height:100%;transition:.4s}.ultp-block-archive-title .ultp-archive-content:hover .ultp-archive-overlay{background:rgba(0,0,0,.7)}.ultp-archive-layout-2 .ultp-archive-desc,.ultp-archive-layout-2 .ultp-archive-name,.ultp-archive-layout-2 .ultp-archive-prefix{color:#fff}.ultp-author-box{box-sizing:border-box;width:100%}.ultp-author-box img{display:inline-block!important}.ultp-post-author-image{display:inline!important}.ultp-post-author-title{display:block}.ultp-post-author-title span:first-child{margin-right:5px}.ultp-post-author-name{margin:0!important}.ultp-post-author-name a{text-decoration:none;transition:.4s}.ultp-post-author-name a:hover{text-decoration:none}.ultp-post-author-meta{display:block}.ultp-post-author-meta span:first-child{margin-right:5px}.ultp-author-box-layout2-content,.ultp-author-box-layout4-content{display:grid;grid-template-columns:max-content auto;align-items:center}.ultp-author-box-layout4-content{grid-template-columns:auto max-content!important}.ultp-author-box-layout4-content .ultp-post-author-details{text-align:right}.ultp-block-nav{display:flex;justify-content:space-between;align-items:unset}.ultp-block-nav .ultp-next-title,.ultp-block-nav .ultp-prev-title{transition:.4s;margin-bottom:4px}.ultp-block-nav span{display:block;line-height:0}.ultp-block-nav a{text-decoration:none;transition:.4s}.ultp-block-nav a:hover{text-decoration:none}.ultp-block-nav .ultp-nav-block-prev{width:100%;justify-content:start}.ultp-block-nav .ultp-nav-block-prev .ultp-nav-inside{justify-content:start}.ultp-block-nav .ultp-nav-block-next{width:100%;justify-content:end}.ultp-block-nav .ultp-nav-block-next .ultp-nav-inside{justify-content:end}.ultp-block-nav .ultp-nav-text-content{display:flex;flex-direction:column}.ultp-block-nav svg{height:auto}.ultp-nav-img,.ultp-nav-inside,.ultp-nav-inside-container{display:flex;justify-content:unset;align-items:center}.ultp-nav-img img{max-width:150px;max-height:150px;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.ultp-nav-img svg{width:30px}.ultp-nav-next-style1,.ultp-nav-next-style2{text-align:right}.ultp-nav-next-style1,.ultp-nav-prev-style1{display:flex;justify-content:unset;align-items:center}.ultp-nav-next-style1 .ultp-nav-inside,.ultp-nav-prev-style1 .ultp-nav-inside{display:block}.ultp-nav-next-style1 .ultp-nav-inside-container,.ultp-nav-prev-style1 .ultp-nav-inside-container{display:flex;justify-content:unset;align-items:center}.ultp-nav-next-style2 .ultp-nav-inside .ultp-nav-img,.ultp-nav-prev-style2 .ultp-nav-inside .ultp-nav-img{position:relative;display:flex;justify-content:center;align-items:unset}.ultp-nav-next-style2 .ultp-nav-inside .ultp-nav-img.ultp-npb-overlay::after,.ultp-nav-prev-style2 .ultp-nav-inside .ultp-nav-img.ultp-npb-overlay::after{position:absolute;left:0;top:0;right:0;bottom:0;content:"";z-index:0;border-radius:50%;background-color:rgba(0,0,0,.6)}.ultp-nav-next-style2 .ultp-nav-inside .ultp-nav-img.ultp-npb-overlay:hover::after,.ultp-nav-prev-style2 .ultp-nav-inside .ultp-nav-img.ultp-npb-overlay:hover::after{position:absolute;left:0;top:0;right:0;bottom:0;content:"";z-index:0;border-radius:50%;background-color:rgba(0,0,0,.75)}.ultp-nav-next-style2 .ultp-nav-inside .ultp-nav-img img,.ultp-nav-prev-style2 .ultp-nav-inside .ultp-nav-img img{border-radius:50%}.ultp-nav-next-style2 .ultp-nav-inside .ultp-nav-img .ultp-icon,.ultp-nav-prev-style2 .ultp-nav-inside .ultp-nav-img .ultp-icon{position:absolute;z-index:1;top:0;bottom:0;display:flex;justify-content:center;align-items:center}.ultp-nav-next-style2 .ultp-icon svg,.ultp-nav-prev-style2 .ultp-icon svg{color:#fff;transition:.4s}.ultp-nav-next-style2 .ultp-icon svg:hover,.ultp-nav-prev-style2 .ultp-icon svg:hover{color:#fff}.ultp-nav-next-style3,.ultp-nav-prev-style3{display:flex;justify-content:unset;align-items:center}.ultp-nav-next-style3 .ultp-nav-inside,.ultp-nav-prev-style3 .ultp-nav-inside{display:block}.ultp-nav-next-style3 .ultp-nav-inside .ultp-nav-text-content,.ultp-nav-prev-style3 .ultp-nav-inside .ultp-nav-text-content{display:flex}.ultp-nav-next-style3 .ultp-nav-inside .ultp-nav-text-content .ultp-next-prev-title,.ultp-nav-prev-style3 .ultp-nav-inside .ultp-nav-text-content .ultp-next-prev-title{order:3!important}.ultp-nav-next-style3 .ultp-nav-date,.ultp-nav-prev-style3 .ultp-nav-date{order:1}.ultp-nav-next-style3 .ultp-nav-inside-container{justify-content:left}@media only screen and (max-width:600px){.next-prev-img{flex-wrap:wrap}}.ultp-builder-breadcrumb{display:flex;flex-wrap:wrap;align-items:center;padding:0!important;margin:0!important}.ultp-builder-breadcrumb li{display:inline-block;padding-right:0;padding-left:0;margin-top:0!important;margin-bottom:0!important;color:#888;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:380px}.ultp-builder-breadcrumb li:first-child{margin-left:0!important}.ultp-builder-breadcrumb li a{transition:.4s;text-decoration:none}.ultp-builder-breadcrumb li a:hover{text-decoration:none}.ultp-builder-breadcrumb lili.ultp-breadcrumb-separator{margin:0!important;line-height:0;position:relative}.editor-styles-wrapper .ultp-builder-breadcrumb li,.nv-content-wrap .ultp-builder-breadcrumb li{margin-top:0}.ultp-breadcrumb-dot .ultp-breadcrumb-separator{border-radius:100%}.ultp-breadcrumb-dot .ultp-breadcrumb-separator:after{content:"";bottom:auto;width:3px;margin-top:0;height:3px;left:-1px;top:50%;font-size:unset;display:block}.ultp-breadcrumb-slash .ultp-breadcrumb-separator:after{content:"/";left:-2px;top:1px;font-size:12px;line-height:normal}.ultp-breadcrumb-doubleslash .ultp-breadcrumb-separator:after{content:"//";left:-4px;top:1px;font-size:12px;line-height:normal}.ultp-breadcrumb-close .ultp-breadcrumb-separator:after{content:"x";left:-4px;top:-1px;font-size:10px;line-height:normal}.ultp-breadcrumb-dash .ultp-breadcrumb-separator:after{content:"-";left:-3px;top:0;font-size:18px;line-height:normal}.ultp-breadcrumb-verticalbar .ultp-breadcrumb-separator:after{content:"|";left:-1px;top:0;font-size:12px;line-height:normal}.ultp-breadcrumb-greaterThan .ultp-breadcrumb-separator:after{content:">";left:-1px;top:0;font-size:12px;line-height:normal}.ultp-breadcrumb-emptyspace .ultp-breadcrumb-separator{padding-left:0}.wp-block-ultimate-post-post-category .cat-builder-content{display:flex;align-items:center;flex-wrap:wrap;-moz-column-gap:3px;column-gap:3px}.wp-block-ultimate-post-post-category .cat-builder-content a{margin-left:0!important;margin-right:0!important}.ultp-comment-email,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form>input#email{grid-area:email}.ultp-comment-name,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form>input#author{grid-area:author}.ultp-comment-website,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form>input#url{grid-area:url}.wp-block-ultimate-post-post-comments{display:block;margin-top:30px;text-align:left}.wp-block-ultimate-post-post-comments .comment-meta,.wp-block-ultimate-post-post-comments .comment-metadata{display:none}.wp-block-ultimate-post-post-comments .form-submit>input#submit,.wp-block-ultimate-post-post-comments .ultp-comment-btn{transition:.4s}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .comment-reply-title{display:block!important;padding:0;margin:0}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .comment-reply-title a{padding-left:0!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .comment-reply-title small a{float:none!important;cursor:pointer;display:block;background:0 0!important;border:none!important;margin-top:15px!important;padding:0!important;margin-left:0!important;text-decoration:none}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form-container{padding:0!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form{display:block;margin-top:15px}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form h3{margin:auto!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form label{display:inline-flex!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form input{box-sizing:border-box!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form textarea{min-height:150px;width:100%;box-sizing:border-box}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form input,.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form textarea{transition:.4s;margin-bottom:0!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form input:hover,.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form textarea:hover{outline:0;box-shadow:none}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-notes{grid-area:heading;padding:0;margin:12px 0 0 0;line-height:normal!important;margin:0!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .ultp-comment-btn{cursor:pointer;width:-moz-fit-content!important;width:fit-content!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .ultp-comment-input{width:100%!important;line-height:normal!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .ultp-comment-input label{margin-top:0!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .ultp-field-control label{margin-bottom:3px!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .ultp-field-control input{width:100%!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .form-submit{float:none!important;width:-moz-fit-content!important;width:fit-content!important;grid-area:btn}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .form-submit input{width:-moz-fit-content!important;width:fit-content!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-form-comment{width:100%!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-input-wrap>p{display:flex;flex-direction:column}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-input-wrap>p input{order:1}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-input-wrap>p label{order:-1}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-form-cookies-consent{display:flex;align-items:center;margin:20px 0 10px;grid-area:cookies;width:100%!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-form-cookies-consent label{display:inline;margin:0 15px!important;padding:0 0 0 5px!important;padding-left:0!important;margin-bottom:0!important;margin-left:16px!important;padding-left:0!important;width:100%!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-form-cookies-consent input[type=checkbox]:checked:after{opacity:0}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-form-cookies-consent input{width:-moz-fit-content!important;width:fit-content!important;margin-right:0!important;padding:0!important;border-width:1px!important;display:block!important;-webkit-appearance:auto!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comment-form .comment-form-cookies-consent input:before{display:block!important;align-items:center;justify-content:center}.wp-block-ultimate-post-post-comments .ultp-block-wrapper .ultp-comments-subtitle{display:block}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form{display:flex;flex-direction:column}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form .comment-notes{order:-2}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form .ultp-comment-input{order:-1}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form .ultp-field-control:not(.comment-form-comment),.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form div:not(.comment-form-comment,.ast-comment-formwrap,.comment-input-wrap,.comment-form-cookies-consent,.comment-notes),.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form p:not(.comment-form-cookies-consent,.comment-notes),.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form>input{width:50%!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form>input{display:block}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form div{padding-right:0!important;padding-left:0!important;float:none!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form div p{width:100%;float:none;margin:0}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container .ultp-comment-form div>label>label{position:unset!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form{display:grid!important;grid-template-areas:"heading  heading heading" "comment comment comment" "meta meta meta" "author email url" "cookies cookies cookies" "btn btn btn";align-items:center;-moz-column-gap:32px;column-gap:32px}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form input{width:100%}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form .wp-block-button{grid-area:btn;max-width:-moz-fit-content;max-width:fit-content}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form>p{width:100%!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form{display:grid!important;grid-template-areas:"heading  heading heading" "author email url" "meta meta meta" "comment comment comment" "cookies cookies cookies" "btn btn btn";align-items:center;-moz-column-gap:32px;column-gap:32px}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form input{width:100%}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form .wp-block-button{grid-area:btn;max-width:-moz-fit-content;max-width:fit-content}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form>p{width:100%!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form>div label{position:unset!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 label,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 label{display:inline-block}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 div,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 p,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 div,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 p{width:100%!important}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-input,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-input{grid-area:comment}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-input textarea,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-input textarea{width:100%;height:192px;transition:all .1s;min-width:auto;min-height:auto;display:block}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form-container .ultp-comment-form .logged-in-as,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form-container .ultp-comment-form .logged-in-as{margin-top:0}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form-container .ultp-comment-form textarea,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form-container .ultp-comment-form textarea{width:100%}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form-container .ultp-comment-form div:not(.comment-form-comment,.ultp-field-control,.comment-form-author,.comment-form-email,.comment-form-url),.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form-container .ultp-comment-form div:not(.comment-form-comment,.ultp-field-control,.comment-form-author,.comment-form-email,.comment-form-url){grid-area:meta!important;display:flex!important;-moz-column-gap:32px;column-gap:32px;align-items:center;justify-content:space-between;margin:0}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form-container .ultp-comment-form div:not(.comment-form-comment,.ultp-field-control,.comment-form-author,.comment-form-email,.comment-form-url) p,.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form-container .ultp-comment-form div:not(.comment-form-comment,.ultp-field-control,.comment-form-author,.comment-form-email,.comment-form-url) p{float:none;width:100%;padding:0;margin-bottom:0}.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form-container .ultp-comment-form div:not(.comment-form-comment,.comment-form-author,.comment-form-email,.comment-form-url),.wp-block-ultimate-post-post-comments .ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form-container .ultp-comment-form div:not(.comment-form-comment,.comment-form-author,.comment-form-email,.comment-form-url){grid-area:auto;display:block;margin:0!important}.ultp-builder-comment-reply>li:after{content:" ";width:100%;height:1px;display:none;background-color:red;margin:50px 0}.ultp-builder-comment-reply li>.comment-body{display:block!important}.ultp-builder-comment-reply .reply{background-color:transparent!important;margin-top:0!important;margin-bottom:0!important;cursor:pointer!important;width:-moz-fit-content!important;width:fit-content!important}.ultp-builder-comment-reply .comment{list-style-type:none}.ultp-builder-comment-reply .comment .children{padding:0!important}.ultp-builder-comment-reply .comment .children li .comment-body{display:block!important;position:relative;margin-left:34px;padding:5px}.ultp-builder-comment-reply .comment .children li .comment-body p{margin:0}.ultp-builder-comment-reply .comment .children li .comment-body::before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNC4zMzEiIGhlaWdodD0iMTQuMTY3IiB2aWV3Qm94PSIwIDAgMjQuMzMxIDE0LjE2NyI+CiAgPHBhdGggaWQ9IlBhdGhfMTk3IiBkYXRhLW5hbWU9IlBhdGggMTk3IiBkPSJNLTEwMzYuNTg4LTQxLjFsLTcuNTc3LTYuMzVhLjQ4Ny40ODcsMCwwLDAtLjguMzczdjMuNTg2YS44MDcuODA3LDAsMCwxLS44MDcuODA3aC05LjJhNS42NTEsNS42NTEsMCwwLDEtNC0xLjY1NUwtMTA2MC42My00NlYtNDIuMmEzLjkxNCwzLjkxNCwwLDAsMCwzLjkxNCwzLjkxNGgxMC45NDVhLjgwOC44MDgsMCwwLDEsLjgwNy44MDd2My42YS40ODcuNDg3LDAsMCwwLC44LjM3M2w3LjU3Ny02LjM1QS44MDguODA4LDAsMCwwLTEwMzYuNTg4LTQxLjFaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMDYwLjYzIDQ3LjU2MykiIGZpbGw9IiNiYWJhYmEiLz4KPC9zdmc+Cg==);width:30px;height:30px;display:block;margin-top:10px;position:absolute;left:-30px}.ultp-builder-comment-reply .comment-metadata{padding:0!important;line-height:normal!important;margin-bottom:0!important}.ultp-builder-comment-reply .comment-content,.ultp-builder-comment-reply .comment-content p{margin-top:0!important;margin-bottom:0!important;padding:0!important}.ultp-builder-comment-reply .comment-body{padding:0!important;margin-bottom:0!important;border:none!important}.ultp-builder-comment-reply .comment-body>p{margin-top:0!important;margin-bottom:0!important}.ultp-builder-comment-reply .comment-author{display:flex;align-items:center;gap:10px;margin-bottom:3px}.ultp-builder-comment-reply .comment-author .avatar{position:unset!important}.ultp-builder-comment-reply .comment-author img{display:none;position:normal!important;margin-right:0!important;margin-bottom:0!important}.ultp-builder-comment-reply .comment-author .says{color:#888}.ultp-builder-comment-reply .comment-author .fn{margin-left:0!important}.ultp-builder-comment-reply .ultp-reply-btn{border:none;background:0 0}.ultp-builder-comment-reply .comment-reply-link{cursor:pointer;display:inline-flex;width:-moz-fit-content;width:fit-content;float:none!important}.ultp-builder-comment-reply .ultp-comment-reply-heading{display:inline-block}.ultp-builder-comment-reply .ultp-reply-wrapper{margin:30px 0;padding:0;list-style-type:none}.ultp-builder-comment-reply .ultp-reply-wrapper .ultp-reply-content{display:flex;justify-content:flex-start;align-items:flex-start;gap:10px}.ultp-builder-comment-reply .ultp-reply-wrapper .ultp-reply-content:not(:last-child){margin:30px 0}.ultp-builder-comment-reply .ultp-reply-wrapper .ultp-reply-content>img{padding-top:10px}.ultp-builder-comment-reply .ultp-comment-wrapper{margin:0;padding:0;list-style-type:none}.ultp-builder-comment-reply .ultp-comment-wrapper .ultp-comment-content-heading{display:flex;justify-content:flex-start;align-items:center}.ultp-builder-comment-reply .ultp-comment-wrapper .ultp-comment-content-heading .ultp-comment-meta div{margin-bottom:5px}.ultp-builder-comment-reply .ultp-comment-wrapper .ultp-comment-content-heading .ultp-comment-meta div span{padding:1px 5px 3px;border-radius:2px;margin-left:7px}.ultp-builder-comment-reply .ultp-comment-wrapper .ultp-comment-content-heading img{width:36px;height:36px;margin-right:10px;display:none}.oceanwp-theme .ultp-comments-layout2 label{position:static!important}.ast-single-post .ultp-comments-layout1 .ultp-comment-form div input{width:100%!important}.ast-single-post .ultp-comments-layout1 .ast-comment-formwrap label>label{position:absolute!important}.ast-single-post .ultp-comments-layout1 .ast-comment-formwrap{width:100%;flex-direction:column}.ast-single-post .ultp-comments-layout3 .ast-comment-formwrap{padding:0!important;margin:0!important}.ast-single-post .ultp-comments-layout3 .ast-comment-formwrap label{display:block!important}.ast-single-post .ultp-comments-layout3 .ultp-comment-form>div label{width:100%}.ast-single-post .ultp-comments-layout1 .ast-comment-formwrap,.ast-single-post .ultp-comments-layout2 .ast-comment-formwrap{padding:0!important;margin:0!important}.ast-single-post .ultp-comments-layout1 .ast-comment-formwrap .comment-form-url label,.ast-single-post .ultp-comments-layout2 .ast-comment-formwrap .comment-form-url label{width:100%}@media only screen and (max-width:768px){.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout2>.ultp-builder-comments .ultp-comment-form,.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3>.ultp-builder-comments .ultp-comment-form{display:flex!important;flex-direction:column}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout2>.ultp-builder-comments .ultp-comment-form>p,.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3>.ultp-builder-comments .ultp-comment-form>p{width:100%!important}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout2>.ultp-builder-comments .ultp-comment-form>div,.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3>.ultp-builder-comments .ultp-comment-form>div{display:block!important}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout2>.ultp-builder-comments .ultp-comment-form>div p,.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3>.ultp-builder-comments .ultp-comment-form>div p{width:100%!important}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout2>.ultp-builder-comments>.ultp-comment-form-container>.ultp-comment-form,.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3>.ultp-builder-comments>.ultp-comment-form-container>.ultp-comment-form{display:flex!important;flex-direction:column}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout2>.ultp-builder-comments>.ultp-comment-form-container>.ultp-comment-form>p,.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3>.ultp-builder-comments>.ultp-comment-form-container>.ultp-comment-form>p{width:100%!important}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout2>.ultp-builder-comments>.ultp-comment-form-container>.ultp-comment-form>div,.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3>.ultp-builder-comments>.ultp-comment-form-container>.ultp-comment-form>div{display:block!important}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout2>.ultp-builder-comments>.ultp-comment-form-container>.ultp-comment-form>div p,.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3>.ultp-builder-comments>.ultp-comment-form-container>.ultp-comment-form>div p{width:100%!important}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container>.ultp-comment-form .ultp-field-control:not(.comment-form-comment),.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container>.ultp-comment-form div:not(.comment-form-comment,.ast-comment-formwrap,.comment-input-wrap,.comment-form-cookies-consent,.comment-notes,.ast-comment-formwrap),.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container>.ultp-comment-form p:not(.comment-form-cookies-consent,.comment-notes),.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout1 .ultp-comment-form-container>.ultp-comment-form>input{width:85%!important}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout2 .ultp-comment-form-container>.ultp-comment-form>.ultp-comment-input{order:-1}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form-container>.ultp-comment-form>.ultp-comment-input{order:97}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form-container>.ultp-comment-form>.comment-form-cookies-consent{order:98}.wp-block-ultimate-post-post-comments>.ultp-block-wrapper.ultp-comments-layout3 .ultp-comment-form-container>.ultp-comment-form>.form-submit{order:99}}.et_divi_theme .ultp-builder-content li,.et_divi_theme .ultp-builder-content ol,.et_divi_theme .ultp-builder-content ul{list-style:revert}.ultp-builder-image{width:100%}.ultp-builder-image img{max-width:100%;width:100%;display:block}.ultp-builder-image .ultp-image-block{display:block}.ultp-featureImg-caption{display:block;box-sizing:border-box}.ultp-builder-video{width:100%;position:relative;height:100%}.ultp-sticky-video.ultp-sticky-active{padding:15px 0}.ultp-sticky-video.ultp-sticky-active video{max-height:100%!important}.ultp-sticky-active{position:fixed;z-index:99999;visibility:visible;transition:all .3s;animation:fade-in-up .3s ease forwards}.ultp-sticky-active .ultp-embaded-video{width:100%!important;max-height:100%!important}@keyframes fade-in-up{0%{transform:translateY(200px);opacity:0}100%{transform:translateY(0);opacity:1}}.ultp-sticky-active .ultp-sticky-close{display:flex}.ultp-sticky-close{display:none;color:#fff;font-size:29px;line-height:normal;cursor:pointer;width:50px;height:50px;align-items:center;justify-content:center;background:#2b2b2b;border-radius:50%;padding:0;position:absolute;top:-19px;right:-12px}.ultp-sticky-close::after{content:"✕"}.ultp-builder-video .ultp-video-wrapper,.ultp-builder-video iframe,.ultp-builder-video video,.ultp-sticky-video .ultp-embaded-video .ultp-video-wrapper,.ultp-sticky-video .ultp-embaded-video iframe,.ultp-sticky-video .ultp-embaded-video video,.ultp-video-modal__content .ultp-video-wrapper,.ultp-video-modal__content iframe,.ultp-video-modal__content video{width:100%;height:100%}.ultp-builder-video .ultp-embaded-video,.ultp-sticky-video .ultp-embaded-video,.ultp-video-modal__content .ultp-embaded-video{width:100%;height:100%;display:inline-block;position:relative;padding:0}.ultp-builder-video .ultp-embaded-video:before,.ultp-sticky-video .ultp-embaded-video:before,.ultp-video-modal__content .ultp-embaded-video:before{content:"";padding-top:56.25%;display:block}.ultp-builder-video .ultp-embaded-video iframe,.ultp-sticky-video .ultp-embaded-video iframe,.ultp-video-modal__content .ultp-embaded-video iframe{border:0;position:absolute;top:0;bottom:0;left:0}.wp-block-ultimate-post-post_share .ultp-post-share .ultp-post-share-layout{display:flex;align-items:center}.wp-block-ultimate-post-post_share .ultp-post-share .ultp-post-share-layout:is(.remove-sticky){position:absolute;bottom:unset;top:unset;left:unset;right:unset}.wp-block-ultimate-post-post_share .ultp-post-share .ultp-post-share-layout .ultp-post-share-item{display:block;margin:5px}.ultp-post-share-item{height:-moz-fit-content;height:fit-content}.ultp-post-share-item a{display:flex!important;align-items:center;line-height:0;text-decoration:none!important;border-radius:5px}.ultp-post-share-item a:hover span{color:#ddd}.ultp-post-share-item a:hover svg{color:#ddd}.ultp-post-share-item a svg{height:20px;width:20px}.ultp-post-share-item-label{color:#fff;white-space:nowrap;margin:0 0 0 8px!important}.ultp-share-more-section{display:-webkit-inline-box;height:-moz-fit-content;height:fit-content}.ultp-share-more-section a{display:block;margin-right:5px}.ultp-share-more-section img{width:30px}.ultp-post-share-count-section{width:-moz-fit-content;width:fit-content;height:-moz-fit-content;height:fit-content;word-break:normal;margin-right:15px}.ultp-post-share-item-icon svg{color:#fff}.ultp-post-share-item-icon img{height:25px;width:25px;margin-right:8px}.ultp-post-share-icon-section img{width:23px}.ultp-post-share .block-editor-block-list__block{display:flex;width:unset!important}.ultp-post-share .block-editor-block-list__block:empty{display:none}.ultp-post-share-item-inner-block{display:block;flex-wrap:wrap;height:-moz-fit-content;height:fit-content}.ultp-post-share-count-section-style1,.ultp-post-share-count-section-style3{position:relative;text-align:center;padding:2.5px 23.2px 5.5px 14px;border:solid 1px #070c1a;border-radius:11px}.ultp-post-share-count-section-style1 span,.ultp-post-share-count-section-style3 span{display:block}.ultp-post-share-count-section-style1::after{content:" ";height:15px;width:15px;display:inline-block;border-top:1px solid #000;border-right:1px solid #000;transform:rotate(44deg);position:absolute;top:40%;right:-9px}.ultp-post-share-count-section-style2{line-height:0}.ultp-post-share-count-section-style3{border-radius:2px!important;border:none!important}.ultp-post-share-count-section-style3::after{border-color:transparent!important}.ultp-post-share-count-section-style3{margin-bottom:10px}.ultp-post-share-count-section-style4::after{display:none}.ultp-post-share-count-section-style4 span:not(:last-child){margin-right:10px}.ultp-inline-false{display:inline-block!important}.ultp-inline-false .ultp-post-share-item{width:-moz-fit-content;width:fit-content}.ultp-inline-false .ultp-post-share-count-section-style1:after{right:40%;bottom:-9px;transform:rotate(136deg);top:auto}.ultp-inline-false .ultp-post-share-count-section-style1{margin-bottom:15px}.ultp-inline-true .ultp-post-share-item-inner-block{display:flex!important}.rtl .ultp-inline-true .ultp-post-share-count-section-style1::after{border-bottom:1px solid #000;border-top:none;border-right:none;border-left:1px solid #000;left:-9px;right:auto}.rtl .ultp-post-share-item-label{margin:0 8px 0 0!important}.rtl .ultp-inline-false .ultp-post-share-count-section-style1:after{border-right:1px solid #000;border-top:1px solid #000}.ultp-builder-tag{display:flex;align-items:center;flex-wrap:wrap;row-gap:5px}.ultp-builder-tag .tag-builder-label{display:block;white-space:nowrap}.ultp-builder-tag .tag-builder-content a{transition:.4s;display:inline-block}.tag-builder-label{display:block;font-size:14px;white-space:nowrap}.tag-builder-content{display:flex;align-items:center;flex-wrap:wrap;row-gap:6px}.tag-builder-content a{font-size:12px;text-decoration:none}.tag-builder-content a:hover{text-decoration:none}.ultp-dynamic-content-group-common{width:100%;display:flex;flex-wrap:wrap;transition-duration:.3s;transition-timing-function:ease;pointer-events:all}.ultp-dynamic-content-field-common{display:flex;flex-direction:row;align-items:center;flex-wrap:wrap;transition-duration:.3s;transition-timing-function:ease}.ultp-dynamic-content-field-common .ultp-dynamic-content-field-icon{display:flex;align-items:center;justify-content:center;margin-right:8px}.ultp-dynamic-content-field-common p{margin-top:0!important;margin-bottom:0!important}.ultp-dynamic-content-field-anchor{all:unset!important;text-decoration:unset!important;color:unset!important}.ultp-dynamic-content-field-anchor .ultp-dynamic-content-field-common{cursor:pointer}.ultp-accordion-item__nav-content,.ultp-accordion-item__navigation{display:flex;align-items:center;cursor:pointer}.ultp-accordion-item__nav-content{width:100%;transition:.1s;justify-content:flex-start}.ultp-accordion-item__content-inside>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender.wp-block>.block-editor-inserter>.block-editor-button-block-appender,.ultp-accordion-item__content-inside>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender>.block-editor-inserter>.block-editor-button-block-appender{min-height:120px;box-shadow:inset 0 0 0 1px #dedede!important}.ultp-accordion-item__content-inside>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender.wp-block>.block-editor-inserter>.block-editor-button-block-appender>svg,.ultp-accordion-item__content-inside>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender>.block-editor-inserter>.block-editor-button-block-appender>svg{height:32px;width:32px}.ultp-accordion-item__text-content,.ultp-accordion-item__title-wrapper{display:flex;align-items:center}.ultp-accordion-item__control{cursor:pointer}.ultp-accordion-item__control svg{transition:.3s ease}.ultp-accordion-item__nav-icon{display:flex;align-items:center}.ultp-accordion__icon-right .ultp-accordion-item__title-wrapper{flex-direction:row-reverse}.postx-page .wp-block-ultimate-post-accordion-item>.ultp-accordion-item>.ultp-accordion-item__content{display:none}.postx-page .wp-block-ultimate-post-accordion-item>.ultp-accordion-item .ultp-accordion-item__navigation{transition:.3s}.postx-page .wp-block-ultimate-post-accordion-item.active .ultp-accordion-item__navigation{transition:0s!important}.wp-block-ultimate-post-accordion-item>.ultp-accordion-item>.ultp-accordion-item__navigation>.ultp-accordion-item__control svg:first-child{display:none}.wp-block-ultimate-post-accordion-item>.ultp-accordion-item>.ultp-accordion-item__navigation>.ultp-accordion-item__control svg:last-child{display:block;box-sizing:content-box}.wp-block-ultimate-post-accordion-item>.ultp-accordion-item.ultp-accordion__trigger-right .ultp-accordion-item__navigation{flex-direction:row-reverse}.wp-block-ultimate-post-accordion-item.active>.ultp-accordion-item>.ultp-accordion-item__navigation>.ultp-accordion-item__control svg:first-child{display:block;box-sizing:content-box}.wp-block-ultimate-post-accordion-item.active>.ultp-accordion-item>.ultp-accordion-item__navigation>.ultp-accordion-item__control svg:last-child{display:none}.block-editor-block-list__layout .ultp-accordion-item>.ultp-accordion-item__content{display:grid;grid-template-rows:0fr;transition:.5s ease;overflow:hidden}.block-editor-block-list__layout .ultp-accordion-item>.ultp-accordion-item__content>.ultp-accordion-item__content-inside{overflow:hidden}.block-editor-block-list__layout .wp-block-ultimate-post-accordion-item .ultp-accordion-item>.ultp-accordion-item__content.active{grid-template-rows:1fr!important}.ultp-filter-clear{transition:background-color .2s ease-in-out}.ultp-filter-clear.ultp-filter-clear{margin-inline:0!important;margin-left:0!important;margin-right:0!important}.ultp-filter-clear .ultp-clear-button{text-align:center;margin:0!important;transition-duration:.2s;transition-timing-function:ease-in-out;cursor:pointer}.ultp-filter-clear .ultp-clear-button:focus{outline:0}.ultp-selected-filter{transition:background-color .2s ease-in-out;display:flex;justify-content:space-between;align-items:center;gap:10px}.ultp-selected-filter-text{flex-grow:1;-webkit-user-select:none;-moz-user-select:none;user-select:none;word-wrap:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ultp-selected-filter-icon{cursor:pointer}.ultp-filter-search input[type=search]::-webkit-search-cancel-button,.ultp-filter-search input[type=search]::-webkit-search-decoration,.ultp-filter-search input[type=search]::-webkit-search-results-button,.ultp-filter-search input[type=search]::-webkit-search-results-decoration{display:none}.ultp-filter-search-input{display:flex;justify-content:space-between;align-items:center;transition:color .3s ease,border-color .3s ease,background-color .3s ease}.ultp-filter-search-input input[type=search]{border:none;background-color:transparent;margin:0;outline:0;flex-grow:1;padding:0 8px;min-height:30px;height:auto!important}.ultp-filter-search-input input[type=search]:focus{outline:0;border:none;box-shadow:none}.ultp-filter-search-input-icon{display:flex;justify-content:center;align-items:center;cursor:pointer}.ultp-filter-search-input-icon svg{width:20px;height:20px}.ultp-filter-select{height:-moz-fit-content;height:fit-content;position:relative}.ultp-filter-select-field{display:flex;justify-content:space-between;align-items:center;gap:10px;padding-block:.5rem;padding-inline:1rem;border:1px solid #000;cursor:pointer}.ultp-filter-select-field-selected{flex-grow:1;-webkit-user-select:none;-moz-user-select:none;user-select:none;word-wrap:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ultp-filter-select-field-icon{display:flex;justify-content:center;align-items:center;transition:transform .3s ease;width:10px;height:10px}.ultp-filter-select-options{position:absolute;top:calc(100% + 5px);list-style-type:none;overflow:hidden;margin:0!important;z-index:2147483647;overflow-y:auto;max-height:300px}.ultp-filter-select-options::-webkit-scrollbar{width:3px}.ultp-filter-select-options::-webkit-scrollbar-track{background:0 0}.ultp-filter-select-options li{box-sizing:border-box;padding-inline:.5rem;white-space:nowrap;color:#fff;width:100%;cursor:pointer}.ultp-filter-select-options li.disabled{color:#6c757d;cursor:not-allowed}.ultp-filter-select-options li.disabled:hover{background-color:transparent}.ultp-dropdown-icon-rotate{transform:rotate(180deg)}.ultp-filter-button{display:flex;justify-content:center;align-items:center;cursor:pointer;transition:background-color .3s ease!important}input[type=search].ultp-filter-select-search{transition:all .3s ease;width:100%;height:unset;min-height:30px}input[type=search].ultp-filter-select-search::-ms-clear{display:none;width:0;height:0}input[type=search].ultp-filter-select-search::-ms-reveal{display:none;width:0;height:0}input[type=search].ultp-filter-select-search::-webkit-search-cancel-button,input[type=search].ultp-filter-select-search::-webkit-search-decoration,input[type=search].ultp-filter-select-search::-webkit-search-results-button,input[type=search].ultp-filter-select-search::-webkit-search-results-decoration{display:none}.wp-block-ultimate-post-list{position:relative;width:100%;transition:.3s}.wp-block-ultimate-post-list:hover{transition:.3s}.wp-block-ultimate-post-list .ultp-list-content{display:flex;align-items:center;text-decoration:none;transition:.3s}.wp-block-ultimate-post-list .ultp-list-content .ultp-list-texticon{grid-area:a;box-sizing:border-box}.wp-block-ultimate-post-list .ultp-list-content .ultp-listicon-bg,.wp-block-ultimate-post-list .ultp-list-content .ultp-listicon-dropdown{grid-area:a}.wp-block-ultimate-post-list .ultp-list-content .ultp-list-title,.wp-block-ultimate-post-list .ultp-list-content a{grid-area:b}.wp-block-ultimate-post-list .ultp-list-content .ultp-list-subtext{grid-area:c}.wp-block-ultimate-post-list .ultp-list-content .ultp-list-textcontent a{text-decoration:none}.wp-block-ultimate-post-list .ultp-list-content .ultp-listicon-bg{flex-shrink:0}.wp-block-ultimate-post-list .ultp-list-texticon,.wp-block-ultimate-post-list .ultp-listicon-bg{box-sizing:border-box}.ultp-list-heading{display:flex;align-items:center;justify-content:flex-start}.wp-block-ultimate-post-button{color:#fff;cursor:pointer;width:-moz-fit-content;width:fit-content;display:flex;align-items:center;overflow:hidden;position:relative;z-index:0;transition:all .4s}.wp-block-ultimate-post-button:before{content:"";width:100%;height:100%;display:block;position:absolute;top:0;left:0;z-index:-1;transition:all .4s;opacity:0}.wp-block-ultimate-post-button:hover{transition:all .4s}.wp-block-ultimate-post-button:hover:before{transition:all .4s;opacity:1}.wp-block-ultimate-post-button .ultp-button-text{line-height:normal}.wp-block-ultimate-post-button .ultp-btnIcon-wrap{line-height:0}.wp-block-ultimate-post-button .ultp-btnIcon-wrap svg{transition:.3s}.wp-block-ultimate-post-button.ultp-button-layout1{background:#354cff;border-radius:4px}.wp-block-ultimate-post-button.ultp-button-layout1:before{background:#152ff0}.wp-block-ultimate-post-button.ultp-button-layout2{border-radius:100px;background-image:linear-gradient(0deg,#354cff 10%,#7485ff 80%)}.wp-block-ultimate-post-button.ultp-button-layout2:before{background-image:linear-gradient(0deg,#7485ff 0,#354cff 100%)}.wp-block-ultimate-post-button.ultp-button-layout3{color:#004cf7;font-weight:500;background:#fff;border-radius:100px;box-shadow:4px 4px 17px 0 rgba(53,76,255,.2196078431)}.wp-block-ultimate-post-button.ultp-button-layout3:hover{color:#004cf7;box-shadow:15px 15px 20px 0 rgba(53,76,255,.2196078431)}.wp-block-ultimate-post-button.ultp-button-layout4{color:#101010;border-radius:0;font-weight:500;border:solid 4px #354cff}.wp-block-ultimate-post-button.ultp-button-layout4:before{background:#e3e7ff}.ultp-mobile-view-container-preview{height:832px;width:412px;padding-top:82px;border:10px solid #070707;border-radius:56px;box-sizing:border-box;overflow:hidden;margin:auto auto}.ultp-mobile-view-container-preview .ultp-mobile-view-container.ultp-editor{max-width:393px;height:100%}.ultp-mobile-view-container-preview .ultp-mobile-view-body,.ultp-mobile-view-container-preview .ultp-mobile-view-wrapper{height:100%}.wp-block-ultimate-post-menu[data-rstr=mv_accordian] .ultp-mobile-view-wrapper .ultp-menu-item-content::before{min-height:0!important;height:0!important}.ultp-mobile-view-container .ultp-mobile-view-head{display:flex;justify-content:space-between;align-items:center;position:relative;gap:15px}.ultp-mobile-view-container .ultp-mobile-view-body{display:flex;flex-direction:column}.ultp-mobile-view-container .ultp-mv-back-label-con.ultpmenu-dnone svg{display:none}.ultp-mobile-view-container .ultp-mv-back-label-con,.ultp-mobile-view-container .ultp-mv-close{display:flex;align-items:center}.ultp-mobile-view-container .ultp-mv-close{position:absolute;right:0!important}.ultp-mobile-view-container .ultp-menu-item-badge.ultp-menu-editor{left:calc(100% + 8px);top:-4px;bottom:unset}.ultp-mobile-view-container .ultp-menu-item-badge{left:calc(100% + 8px)!important;top:-12px!important;bottom:unset!important}.ultp-mobile-view-container .wp-block-ultimate-post-mega-menu .ultp-mega-menu-wrapper{width:100%;max-width:100%!important}.ultp-mobile-view-container .wp-block-ultimate-post-mega-menu .ultp-mega-menu-wrapper .ultp-mega-menu-content{max-width:100%!important}.ultp-mobile-view-container .ultp-menu-content{flex-direction:column!important;width:100%}.ultp-mobile-view-container.ultp-editor .ultp-mobile-view-wrapper{max-width:100%;box-sizing:border-box;display:flex;flex-direction:column}.ultp-mobile-view-container.ultp-editor .ultp-mobile-view-body{border-radius:0 0 0 46px}.ultp-mv-back-label-con,.ultp-mv-close{cursor:pointer}.ultp-mobile-view-container:is(:not(.ultp-editor)){height:0;box-sizing:border-box}.ultp-mobile-view-container:is(:not(.ultp-editor)).ultp-mv-active{height:100vh;display:flex!important;position:fixed;justify-content:start;left:0;right:0;top:0;z-index:9999999}.ultp-mobile-view-container:is(:not(.ultp-editor)) .ultp-mobile-view-wrapper{visibility:hidden;opacity:.3;transform:translateX(-100%);pointer-events:none;z-index:-99}.ultp-mobile-view-container:is(:not(.ultp-editor)).ultp-mv-active .ultp-mobile-view-wrapper{visibility:visible;opacity:1;transform:translateX(0);pointer-events:visible;z-index:0}.ultp-mobile-view-container:is(:not(.ultp-editor)) .ultp-mobile-view-wrapper{height:100%;box-sizing:border-box;display:flex;flex-direction:column}.ultp-mobile-view-container:is(:not(.ultp-editor)) .ultp-mobile-view-wrapper .ultp-mobile-view-body{overflow-x:hidden;overflow-y:scroll;max-width:100%;height:100%}.ultp-mobile-view-container:is(:not(.ultp-editor)) .ultp-mobile-view-wrapper .ultp-mobile-view-body::-webkit-scrollbar{background-color:transparent;width:3px;border-radius:0}.ultp-mobile-view-container:is(:not(.ultp-editor)) .ultp-mobile-view-wrapper .ultp-mobile-view-body:hover::-webkit-scrollbar{width:3px;border-radius:0;-webkit-transition:.4s;transition:.4s;height:3px}.ultp-mobile-view-container:is(:not(.ultp-editor)) .ultp-mobile-view-wrapper .ultp-mobile-view-body:hover::-webkit-scrollbar-thumb{border-radius:0;width:3px;background-color:#037fff}.ultp-mobile-view-container:is(:not(.ultp-editor)) .ultp-mobile-view-wrapper .ultp-mobile-view-body .wp-block-ultimate-post-menu-item .ultp-menu-item-content{display:none;transform:translateX(0) translateY(0);position:unset;box-sizing:border-box}.ultp-mobile-view-container:is(:not(.ultp-editor)) .ultp-mobile-view-wrapper .ultp-mobile-view-body .wp-block-ultimate-post-menu-item.ultp-menu-res-css>.ultp-menu-item-wrapper>.ultp-menu-item-content{display:block;opacity:1;visibility:visible;width:100%;pointer-events:auto;transition-property:opacity,visibility,transform}.ultp-mobile-view-container:is(:not(.ultp-editor)) .ultp-mobile-view-wrapper .ultp-mobile-view-body .wp-block-ultimate-post-menu-item.ultp-menu-res-css>.ultp-menu-item-wrapper>.ultp-menu-item-content>*{height:-moz-fit-content;height:fit-content}.ultp-mega-menu-content._left{margin-right:auto}.ultp-mega-menu-content._center{margin-left:auto;margin-right:auto}.ultp-mega-menu-content._right{margin-left:auto}.ultp-mega-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender>.block-editor-inserter>.block-editor-button-block-appender{border:1px solid #070707;border-radius:4px;box-shadow:none}.postx-page .wp-block-ultimate-post-list-menu .ultp-list-menu-content,.wp-block-ultimate-post-list-menu .ultp-list-menu-content>.block-editor-inner-blocks>.block-editor-block-list__layout{display:flex;flex-direction:column}.ultp-menu-item-label-container,.ultp-menu-item-label-container .ultp-menu-item-dropdown,.ultp-menu-item-label-container .ultp-menu-item-icon{display:flex;align-items:center}.ultp-menu-item-label-container .ultp-menu-item-label{display:flex;align-items:center}.ultp-menu-item-label-container .ultp-menu-item-label.ultp-menuitem-pos-bef{flex-direction:row-reverse}.ultp-menu-item-label-container .ultp-menu-item-label:has(>.ultp-menu-item-badge){position:relative}.ultp-menu-item-label-container .ultp-menu-item-label:has(>.ultp-menu-item-badge)>.ultp-menu-item-badge{position:absolute;z-index:9;width:-moz-max-content;width:max-content}.wp-block-ultimate-post-menu-item .ultp-menu-item-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender>.block-editor-inserter>.block-editor-button-block-appender{padding:2px;background-color:#000;color:#fff}.wp-block-ultimate-post-menu-item .ultp-menu-item-content>.block-editor-inner-blocks>.block-editor-block-list__layout>.block-list-appender{margin-top:6px;margin-left:6px}.ultp-menu-item-content>.block-editor-inner-blocks:has(>.block-editor-block-list__layout>.block-list-appender){top:100%!important;left:unset!important}.hasListMenuParent>.ultp-menu-item-wrapper>.ultp-menu-item-content>.block-editor-inner-blocks:has(>.block-editor-block-list__layout>.block-list-appender){top:0!important;left:100%!important}.ultp-toolbar-menu-block-items{display:flex;gap:6px;padding:10px}.ultp-toolbar-menu-block-items .ultp-toolbar-menu-block-item{display:flex;flex-direction:column;align-items:center;background-color:none;padding:4px 26px 14px 26px;cursor:pointer;border-radius:4px}.ultp-toolbar-menu-block-items .ultp-toolbar-menu-block-item .ultp-toolbar-menu-block-label{white-space:nowrap}.ultp-toolbar-menu-block-items .ultp-toolbar-menu-block-item:hover{background-color:#f5fafc}.ultp-toolbar-menu-block-items img{max-height:22px;min-width:auto;min-height:auto}.ultp-toolbar-menu-block-items .ultp-toolbar-menu-block-img{padding:12px 20px;position:relative}.ultp-toolbar-menu-block-items .ultp-toolbar-menu-block-img .ultp-pro-block{top:2px;right:-8px;font-size:10px}.wp-block-ultimate-post-column{position:relative;height:-moz-max-content;height:max-content;width:100%;min-width:0}.wp-block-ultimate-post-column>.ultp-column-wrapper{height:100%;position:relative;transition:.3s}.wp-block-ultimate-post-column>.ultp-column-wrapper .block-editor-block-list__layout,.wp-block-ultimate-post-column>.ultp-column-wrapper .block-editor-inner-blocks{height:100%}.wp-block-ultimate-post-column .ultp-column-overlay{z-index:-1}.wp-block-ultimate-post-column .ultp-column-link{position:absolute;top:0;display:block;width:100%;height:100%;z-index:9999}.ultp-row-content .ultp-column-wrapper>*{max-width:100%}.wp-block-ultimate-post-social{position:relative;width:100%;transition:.3s}.wp-block-ultimate-post-social:hover{transition:.3s}.wp-block-ultimate-post-social .ultp-social-content{display:flex;height:100%;align-items:center;text-decoration:none;transition:.3s;cursor:pointer;text-decoration:none}.block-editor-block-list__block li.wp-block-ultimate-post-social{height:100%}.wp-block-ultimate-post-tab-item{display:none}.wp-block-ultimate-post-tab-item.active{display:block}.postx-page .wp-block-ultimate-post-tab-item:empty{font-size:14px;font-weight:500;text-align:center;border:2px solid #000;border-radius:6px;background-color:#fff!important;padding:20px}.postx-page .wp-block-ultimate-post-tab-item:empty:after{content:"No Content Found";display:block}.ultp-block-wrapper .slick-loading .slick-list{background:#fff url(/wp-content/plugins/ultimate-post/assets/css/../img/loading.gif) center center no-repeat}.ultp-block-wrapper .slick-next,.ultp-block-wrapper .slick-prev{font-size:0;line-height:0;position:absolute;top:50%;display:block;z-index:9;padding:0;transform:translate(0,-50%);cursor:pointer;color:transparent;border:none;outline:0}.ultp-block-wrapper .slick-next:hover,.ultp-block-wrapper .slick-prev:hover{color:transparent;outline:0;background:0 0}.ultp-block-wrapper .slick-next:hover:before,.ultp-block-wrapper .slick-prev:hover:before{opacity:1}.ultp-block-wrapper .slick-next.slick-disabled:before,.ultp-block-wrapper .slick-prev.slick-disabled:before{opacity:.25}.ultp-block-wrapper .slick-next:before,.ultp-block-wrapper .slick-prev:before{font-family:dashicons;font-size:20px;line-height:1;opacity:.75;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ultp-block-wrapper .slick-prev{left:-25px}[dir=rtl] .ultp-block-wrapper .slick-prev{right:-25px;left:auto}.ultp-block-wrapper .slick-prev:before{content:"\f341"}[dir=rtl] .ultp-block-wrapper .slick-prev:before{content:"\f345"}.ultp-block-wrapper .slick-next{right:-25px}[dir=rtl] .ultp-block-wrapper .slick-next{right:auto;left:-25px}.ultp-block-wrapper .slick-next:before{content:"\f345"}[dir=rtl] .ultp-block-wrapper .slick-next:before{content:"\f341"}.ultp-block-wrapper .slick-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.ultp-block-wrapper .slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.ultp-block-wrapper .slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:0;background:0 0}.ultp-block-wrapper .slick-dots li button:focus,.ultp-block-wrapper .slick-dots li button:hover{outline:0}.ultp-block-wrapper .slick-dots li button:focus:before,.ultp-block-wrapper .slick-dots li button:hover:before{opacity:1}.ultp-block-wrapper .slick-dots li button:before{font-family:dashicons;font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:"\f159";text-align:center;opacity:.25;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ultp-block-wrapper .slick-dots li.slick-active button:before{opacity:.75;color:#000}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;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{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:auto;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}[dir=rtl] .slick-slide{float:left}.slick-slider .slick-list,.slick-slider .slick-track{direction:ltr}body.rtl{direction:rtl;unicode-bidi:embed}.rtl .ultp-popup-select .ultp-search-icon{position:absolute;right:auto;left:10px}.rtl .ultp-field-color2 .ultp-sub-field{margin-right:auto;margin-left:0}.rtl .ultp-button-group .ultp-base-control-btn{margin-right:0;margin-left:8px}.rtl .ultp-button-group span{border-radius:0 3px 3px 0}.rtl .ultp-button-group span:last-child{border-right:none;border-left:1px solid #d4d4d4;border-radius:3px 0 0 3px}.rtl .ultp-field-toggle .ultp-sub-field{float:left}.rtl .components-toggle-control .components-base-control__field .components-form-toggle{margin-left:0;margin-right:16px}.rtl .ultp-label-control label{margin-right:0;margin-left:5px}.rtl .ultp-edit-btn .ultp-base-control-btn.dashicons-image-rotate,.rtl .ultp-field-color .ultp-clear,.rtl .ultp-field-select .ultp-multiple-value>span{margin-right:0;margin-left:4px}.rtl .ultp-field-select .ultp-multiple-value>span span.ultp-select-close{margin-left:0;margin-right:4px}.rtl .ultp-heading-filter .ultp-filter-navigation{left:0;justify-content:flex-end;right:auto}.rtl .ultp-next-prev-wrap ul li{margin-right:0;margin-left:5px}.rtl .ultp-heading-filter .ultp-next-prev-wrap{margin-left:0;margin-right:15px}.rtl .ultp-next-prev-wrap ul li:last-child{margin-left:0}.rtl .ultp-heading-style11 .ultp-heading-btn svg{transform:rotate(180deg);margin-left:0;margin-right:5px}.rtl .ultp-next-page-numbers svg{transform:rotate(180deg)}.rtl .ultp-prev-page-numbers svg{transform:rotate(180deg)}.rtl .ultp-prev-action svg{transform:rotate(180deg)}.rtl .ultp-next-action svg{transform:rotate(180deg)}.rtl .ultp-block-meta span:first-child,.ultp-block-meta.ultp-block-meta-style6 span:nth-child(2){padding-right:0!important}.rtl .ultp-block-meta.ultp-block-meta-dot span:after,.rtl .ultp-block-meta.ultp-block-meta-verticalbar span:after{left:auto;right:-1px}.rtl .ultp-block-meta.ultp-block-meta-slash span:after{left:auto;right:-2px}.rtl .ultp-block-meta.ultp-block-meta-close span:after,.rtl .ultp-block-meta.ultp-block-meta-doubleslash span:after{left:auto;right:-4px}.rtl .ultp-block-meta.ultp-block-meta-dash span:after{left:auto;right:-3px}.rtl .ultp-block-meta span i{margin-right:0;margin-left:4px}.rtl .ultp-meta-author-img{margin-right:0;margin-left:5px}.rtl .ultp-block-meta.ultp-block-meta-style5 .ultp-meta-body span:nth-child(2){padding-left:inherit;padding-right:0}.rtl .ultp-heading-filter .ultp-filter-navigation{margin:auto 200px 0 0}/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-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-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-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/css/../webfonts/fa-brands-400.eot);src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-brands-400.woff2) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-brands-400.woff) format("woff"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-brands-400.ttf) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-regular-400.eot);src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-regular-400.woff2) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-regular-400.woff) format("woff"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-regular-400.ttf) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fab,.far{font-weight:400}@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/css/../webfonts/fa-solid-900.eot);src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.woff2) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.woff) format("woff"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.ttf) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f884"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cab:before{content:"\f1ba"}.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var( --container-widget-align-self,initial );--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer,.e-con>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer:not(:has(>.elementor-widget-container))>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{min-height:22px;min-width:22px;position:relative}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{height:22px;inset:0;margin:auto;padding:0;position:absolute;width:22px}.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}@keyframes elementor-animation-pop{50%{transform:scale(1.2)}}.elementor-animation-pop:active,.elementor-animation-pop:focus,.elementor-animation-pop:hover{animation-name:elementor-animation-pop;animation-duration:.3s;animation-timing-function:linear;animation-iteration-count:1}.elementor-15361 .elementor-element.elementor-element-9d542eb{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-65469ff{--spacer-size:50px;}.elementor-15361 .elementor-element.elementor-element-c278088{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-end;--align-items:stretch;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-15361 .elementor-element.elementor-element-98bcc40{--display:flex;--min-height:100px;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:25px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-98bcc40.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-e318aa2{text-align:left;}.elementor-15361 .elementor-element.elementor-element-d4dfbb1{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:15px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:15px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-086f268{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-b8cb5bd{--spacer-size:20px;}.elementor-15361 .elementor-element.elementor-element-d14c272{--spacer-size:22px;}.elementor-15361 .elementor-element.elementor-element-b2a671e .elementor-heading-title{font-family:"Inter", Inter;font-size:100px;font-weight:600;color:var( --e-global-color-secondary );}.elementor-15361 .elementor-element.elementor-element-398381c{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-43c9b15{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-8454e5f{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-15361 .elementor-element.elementor-element-e0ed35d{--display:flex;--min-height:100px;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:25px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-e0ed35d.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-5212666{text-align:left;}.elementor-15361 .elementor-element.elementor-element-6a2a64e{--spacer-size:50px;}.elementor-15361 .elementor-element.elementor-element-611b97a{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:15px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:15px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-0aa8967{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-53c0067{--spacer-size:20px;}.elementor-15361 .elementor-element.elementor-element-23a358f{--spacer-size:22px;}.elementor-15361 .elementor-element.elementor-element-308bf48 .elementor-heading-title{font-family:"Inter", Inter;font-size:105px;font-weight:600;}.elementor-15361 .elementor-element.elementor-element-1e41161{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-f0b0910{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-e759c08{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-c710082{--spacer-size:25px;}.elementor-15361 .elementor-element.elementor-element-b98502d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-15361 .elementor-element.elementor-element-c937266{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-3a72399{--spacer-size:75px;}.elementor-15361 .elementor-element.elementor-element-bccbcec{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-41a835c{--display:flex;}.elementor-15361 .elementor-element.elementor-element-c622d07 > .elementor-widget-container{margin:3px 0px -15px 0px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-c622d07.elementor-element{--align-self:center;--order:-99999 /* order start hack */;}.elementor-15361 .elementor-element.elementor-element-c622d07{text-align:center;font-family:"Inter", Inter;font-size:19px;font-weight:500;}.elementor-15361 .elementor-element.elementor-element-c622d07 p{margin-block-end:0px;}.elementor-15361 .elementor-element.elementor-element-6c310ef{--spacer-size:50px;}.elementor-15361 .elementor-element.elementor-element-b572afe{--display:flex;border-style:none;--border-style:none;--border-radius:0px 0px 0px 0px;--margin-top:0px;--margin-bottom:50px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-b572afe:not(.elementor-motion-effects-element-type-background), .elementor-15361 .elementor-element.elementor-element-b572afe > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}.elementor-15361 .elementor-element.elementor-element-a6f53e0{--spacer-size:2px;}.elementor-15361 .elementor-element.elementor-element-26f0846{--display:flex;--min-height:0px;}.elementor-15361 .elementor-element.elementor-element-1a13c80{--spacer-size:2px;}.elementor-15361 .elementor-element.elementor-element-05a2c02{--display:flex;}.elementor-15361 .elementor-element.elementor-element-6fe9480.elementor-element{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-6fe9480 .eael-fancy-text-container{text-align:left;}.elementor-15361 .elementor-element.elementor-element-6fe9480 .eael-fancy-text-prefix{color:var( --e-global-color-551c13c );font-family:"Inter", Inter;font-size:40px;font-weight:600;line-height:1px;}.elementor-15361 .elementor-element.elementor-element-6fe9480 .eael-fancy-text-strings, .elementor-15361 .elementor-element.elementor-element-6fe9480 .typed-cursor{font-family:"Inter", Inter;font-size:40px;font-weight:600;}.elementor-15361 .elementor-element.elementor-element-6fe9480 .eael-fancy-text-strings{color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-6fe9480 .eael-fancy-text-suffix{color:#FDFEFE;font-size:22px;font-weight:600;line-height:1px;}.elementor-15361 .elementor-element.elementor-element-ac49bce{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 20px;--row-gap:0px;--column-gap:20px;border-style:none;--border-style:none;--border-radius:-20px -20px -20px -20px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:-5px;--padding-bottom:-5px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-ac49bce.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-9dc6f0b{--display:flex;--min-height:0px;border-style:none;--border-style:none;--margin-top:0px;--margin-bottom:0px;--margin-left:10px;--margin-right:0px;--padding-top:10px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-9dc6f0b.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-b04a4ec .elementor-icon-wrapper{text-align:center;}.elementor-15361 .elementor-element.elementor-element-f950799{text-align:center;}.elementor-15361 .elementor-element.elementor-element-f950799 .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;color:#FFFFFF;}.elementor-15361 .elementor-element.elementor-element-2ae6e6f > .elementor-widget-container{margin:-30px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-2ae6e6f{text-align:center;font-family:"Inter", Inter;font-size:16px;font-weight:300;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-5a10c1c{--display:flex;border-style:none;--border-style:none;--margin-top:0px;--margin-bottom:0px;--margin-left:-10px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-5a10c1c.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-acd7a50 .elementor-icon-wrapper{text-align:center;}.elementor-15361 .elementor-element.elementor-element-34ba37b{text-align:center;}.elementor-15361 .elementor-element.elementor-element-34ba37b .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-a38af64{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;text-align:center;font-family:"Inter", Inter;font-size:16px;font-weight:300;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-a38af64 > .elementor-widget-container{margin:-30px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-a38af64.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-121a3e0{--display:flex;--min-height:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:-10px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-121a3e0.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-b433629 .elementor-icon-wrapper{text-align:center;}.elementor-15361 .elementor-element.elementor-element-b433629.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );}.elementor-15361 .elementor-element.elementor-element-b433629.elementor-view-framed .elementor-icon, .elementor-15361 .elementor-element.elementor-element-b433629.elementor-view-default .elementor-icon{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-15361 .elementor-element.elementor-element-b433629.elementor-view-framed .elementor-icon, .elementor-15361 .elementor-element.elementor-element-b433629.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-primary );}.elementor-15361 .elementor-element.elementor-element-d595fae{text-align:center;}.elementor-15361 .elementor-element.elementor-element-d595fae .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-da1b997{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;text-align:center;font-family:"Inter", Inter;font-size:16px;font-weight:300;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-da1b997 > .elementor-widget-container{margin:-30px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-da1b997.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-6540c7b{--display:flex;--min-height:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:-10px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-6540c7b.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-03827d8 .elementor-icon-wrapper{text-align:center;}.elementor-15361 .elementor-element.elementor-element-03827d8.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );}.elementor-15361 .elementor-element.elementor-element-03827d8.elementor-view-framed .elementor-icon, .elementor-15361 .elementor-element.elementor-element-03827d8.elementor-view-default .elementor-icon{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-15361 .elementor-element.elementor-element-03827d8.elementor-view-framed .elementor-icon, .elementor-15361 .elementor-element.elementor-element-03827d8.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-primary );}.elementor-15361 .elementor-element.elementor-element-c0609b4{text-align:center;}.elementor-15361 .elementor-element.elementor-element-c0609b4 .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-c083be0{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;text-align:center;font-family:"Inter", Inter;font-size:16px;font-weight:300;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-c083be0 > .elementor-widget-container{margin:-30px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-c083be0.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-c92d09e{--display:flex;--min-height:0px;}.elementor-15361 .elementor-element.elementor-element-a19c32f{--spacer-size:2px;}.elementor-15361 .elementor-element.elementor-element-a9e9238{--display:flex;border-style:none;--border-style:none;--border-radius:0px 0px 0px 0px;--margin-top:0px;--margin-bottom:50px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-a9e9238:not(.elementor-motion-effects-element-type-background), .elementor-15361 .elementor-element.elementor-element-a9e9238 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}.elementor-15361 .elementor-element.elementor-element-a9e9238.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-16103aa{--spacer-size:2px;}.elementor-15361 .elementor-element.elementor-element-1356848{--display:flex;}.elementor-15361 .elementor-element.elementor-element-923ec72.elementor-element{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-923ec72 .eael-fancy-text-container{text-align:left;}.elementor-15361 .elementor-element.elementor-element-923ec72 .eael-fancy-text-prefix{color:var( --e-global-color-551c13c );font-family:"Inter", Inter;font-size:40px;font-weight:600;line-height:1px;}.elementor-15361 .elementor-element.elementor-element-923ec72 .eael-fancy-text-strings, .elementor-15361 .elementor-element.elementor-element-923ec72 .typed-cursor{font-family:"Inter", Inter;font-size:40px;font-weight:600;}.elementor-15361 .elementor-element.elementor-element-923ec72 .eael-fancy-text-strings{color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-923ec72 .eael-fancy-text-suffix{color:#FDFEFE;font-family:"Inter", Inter;font-size:22px;font-weight:600;line-height:1px;}.elementor-15361 .elementor-element.elementor-element-161ce36{--spacer-size:50px;}.elementor-15361 .elementor-element.elementor-element-ac3a8b5{--display:flex;}.elementor-15361 .elementor-element.elementor-element-b989f55{--display:flex;border-style:none;--border-style:none;--margin-top:0px;--margin-bottom:0px;--margin-left:-10px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-b989f55.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-1e459c1 .elementor-icon-wrapper{text-align:center;}.elementor-15361 .elementor-element.elementor-element-23413b0{text-align:center;}.elementor-15361 .elementor-element.elementor-element-23413b0 .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-6b0852a{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;text-align:center;font-family:"Inter", Inter;font-size:16px;font-weight:300;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-6b0852a > .elementor-widget-container{margin:-30px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-6b0852a.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-886f0b8{--display:flex;border-style:none;--border-style:none;--margin-top:0px;--margin-bottom:0px;--margin-left:-10px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-886f0b8.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-2f72cb9 .elementor-icon-wrapper{text-align:center;}.elementor-15361 .elementor-element.elementor-element-e10d888{text-align:center;}.elementor-15361 .elementor-element.elementor-element-e10d888 .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-2e52a9c{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;text-align:center;font-family:"Inter", Inter;font-size:16px;font-weight:300;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-2e52a9c > .elementor-widget-container{margin:-30px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-2e52a9c.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-5276692{--display:flex;}.elementor-15361 .elementor-element.elementor-element-516ca4f{--display:flex;border-style:none;--border-style:none;--margin-top:0px;--margin-bottom:0px;--margin-left:-10px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-516ca4f.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-1c9e583 .elementor-icon-wrapper{text-align:center;}.elementor-15361 .elementor-element.elementor-element-0acfc48{text-align:center;}.elementor-15361 .elementor-element.elementor-element-0acfc48 .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-9333430{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;text-align:center;font-family:"Inter", Inter;font-size:16px;font-weight:300;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-9333430 > .elementor-widget-container{margin:-30px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-9333430.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-d6093e9{--display:flex;border-style:none;--border-style:none;--margin-top:0px;--margin-bottom:0px;--margin-left:-10px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-d6093e9.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-2a6e96d .elementor-icon-wrapper{text-align:center;}.elementor-15361 .elementor-element.elementor-element-baa3a68{text-align:center;}.elementor-15361 .elementor-element.elementor-element-baa3a68 .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-1875f31{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;text-align:center;font-family:"Inter", Inter;font-size:16px;font-weight:300;color:var( --e-global-color-551c13c );}.elementor-15361 .elementor-element.elementor-element-1875f31 > .elementor-widget-container{margin:-30px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-1875f31.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-382e977{--display:flex;--min-height:0px;}.elementor-15361 .elementor-element.elementor-element-7dad1d9{--spacer-size:2px;}.elementor-15361 .elementor-element.elementor-element-c6c177b{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-1cfa030{--spacer-size:25px;}.elementor-15361 .elementor-element.elementor-element-c20a165{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-start;--align-items:stretch;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-7812693 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 025px;}.elementor-15361 .elementor-element.elementor-element-7812693 .elementor-heading-title{font-family:"Inter", Inter;font-size:40px;font-weight:700;}.elementor-15361 .elementor-element.elementor-element-4b6b537{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-7ca203d{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-68a31f1{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-around;--align-items:stretch;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-15361 .elementor-element.elementor-element-4e50c07{--display:flex;--background-transition:0.3s;}.elementor-15361 .elementor-element.elementor-element-4e50c07.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-e47e97c{width:var( --container-widget-width, 104.188% );max-width:104.188%;--container-widget-width:104.188%;--container-widget-flex-grow:0;text-align:left;}.elementor-15361 .elementor-element.elementor-element-e47e97c.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-e47e97c img{width:100%;height:373px;object-fit:cover;object-position:top left;}.elementor-15361 .elementor-element.elementor-element-c1b1db5 .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:600;}.elementor-15361 .elementor-element.elementor-element-f027d08{--display:flex;--margin-top:-15px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-a3bf3cf > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-a3bf3cf.elementor-element{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-a61793d{--display:flex;}.elementor-15361 .elementor-element.elementor-element-a61793d.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-be27761{width:var( --container-widget-width, 104.188% );max-width:104.188%;--container-widget-width:104.188%;--container-widget-flex-grow:0;text-align:left;}.elementor-15361 .elementor-element.elementor-element-be27761.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-be27761 img{width:100%;height:373px;object-fit:cover;object-position:top left;}.elementor-15361 .elementor-element.elementor-element-3507719 .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;}.elementor-15361 .elementor-element.elementor-element-6c59e59{--display:flex;--margin-top:-15px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-42ae0d4 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-42ae0d4.elementor-element{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-d420332{--display:flex;}.elementor-15361 .elementor-element.elementor-element-5f981ea{width:var( --container-widget-width, 104.188% );max-width:104.188%;--container-widget-width:104.188%;--container-widget-flex-grow:0;text-align:left;}.elementor-15361 .elementor-element.elementor-element-5f981ea.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-5f981ea img{width:100%;height:373px;object-fit:cover;object-position:top left;}.elementor-15361 .elementor-element.elementor-element-e37d0ef .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;}.elementor-15361 .elementor-element.elementor-element-5a85042{--display:flex;--margin-top:-15px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-481e57a{width:var( --container-widget-width, 98.296% );max-width:98.296%;--container-widget-width:98.296%;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-481e57a > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-481e57a.elementor-element{--align-self:flex-start;--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-403554a{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-around;--align-items:stretch;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-15361 .elementor-element.elementor-element-cd4f781{--display:flex;--background-transition:0.3s;}.elementor-15361 .elementor-element.elementor-element-cd4f781.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-6ac491c{width:var( --container-widget-width, 104.188% );max-width:104.188%;--container-widget-width:104.188%;--container-widget-flex-grow:0;text-align:left;}.elementor-15361 .elementor-element.elementor-element-6ac491c.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-6ac491c img{width:100%;height:373px;object-fit:cover;object-position:top left;}.elementor-15361 .elementor-element.elementor-element-5032cbe .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:600;}.elementor-15361 .elementor-element.elementor-element-cbe947e{--display:flex;--margin-top:-15px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-e487acf > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-e487acf.elementor-element{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-323e803{--display:flex;}.elementor-15361 .elementor-element.elementor-element-323e803.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-2f19471{--spacer-size:50px;}.elementor-15361 .elementor-element.elementor-element-5bcbe31{width:var( --container-widget-width, 104.188% );max-width:104.188%;--container-widget-width:104.188%;--container-widget-flex-grow:0;text-align:left;}.elementor-15361 .elementor-element.elementor-element-5bcbe31.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-5bcbe31 img{width:100%;height:373px;object-fit:cover;object-position:top left;}.elementor-15361 .elementor-element.elementor-element-2e94c08 .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;}.elementor-15361 .elementor-element.elementor-element-024a7ee{--display:flex;--margin-top:-15px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-6e39d48 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-6e39d48.elementor-element{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-8f4b3d9{--spacer-size:50px;}.elementor-15361 .elementor-element.elementor-element-9e13efe{--display:flex;}.elementor-15361 .elementor-element.elementor-element-84402e6{width:var( --container-widget-width, 104.188% );max-width:104.188%;--container-widget-width:104.188%;--container-widget-flex-grow:0;text-align:left;}.elementor-15361 .elementor-element.elementor-element-84402e6.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-84402e6 img{width:100%;height:373px;object-fit:cover;object-position:top left;}.elementor-15361 .elementor-element.elementor-element-a4f3a8f .elementor-heading-title{font-family:"Inter", Inter;font-size:20px;font-weight:500;}.elementor-15361 .elementor-element.elementor-element-024bb3c{--display:flex;--margin-top:-15px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-99efe67{width:var( --container-widget-width, 98.296% );max-width:98.296%;--container-widget-width:98.296%;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-99efe67 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-99efe67.elementor-element{--align-self:flex-start;--flex-grow:0;--flex-shrink:0;}.elementor-15361 .elementor-element.elementor-element-bef9a8d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-68b81e2{--spacer-size:90px;}.elementor-15361 .elementor-element.elementor-element-070618a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-5ff20c2{--spacer-size:90px;}:root{--page-title-display:none;}@media(max-width:1400px){.elementor-15361 .elementor-element.elementor-element-b2a671e .elementor-heading-title{font-size:100px;}.elementor-15361 .elementor-element.elementor-element-b98502d{--justify-content:center;}.elementor-15361 .elementor-element.elementor-element-b572afe{--border-radius:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-ac49bce{--min-height:0px;--justify-content:center;--align-items:flex-start;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-15361 .elementor-element.elementor-element-9dc6f0b.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-a38af64{width:var( --container-widget-width, 269.797px );max-width:269.797px;--container-widget-width:269.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-da1b997{width:var( --container-widget-width, 269.797px );max-width:269.797px;--container-widget-width:269.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-c083be0{width:var( --container-widget-width, 269.797px );max-width:269.797px;--container-widget-width:269.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-a9e9238{--border-radius:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-6b0852a{width:var( --container-widget-width, 269.797px );max-width:269.797px;--container-widget-width:269.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-2e52a9c{width:var( --container-widget-width, 269.797px );max-width:269.797px;--container-widget-width:269.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-9333430{width:var( --container-widget-width, 269.797px );max-width:269.797px;--container-widget-width:269.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-1875f31{width:var( --container-widget-width, 269.797px );max-width:269.797px;--container-widget-width:269.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-4e50c07{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-4e50c07.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-f027d08{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-f027d08.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-a61793d{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-a61793d.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-6c59e59{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-6c59e59.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-d420332{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-d420332.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-5a85042{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-5a85042.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-cd4f781{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-cd4f781.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-cbe947e{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-cbe947e.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-323e803{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-323e803.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-024a7ee{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-024a7ee.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-9e13efe{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-9e13efe.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-024bb3c{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-024bb3c.e-con{--align-self:flex-start;}}@media(max-width:1200px){.elementor-15361 .elementor-element.elementor-element-d4dfbb1{--padding-top:0px;--padding-bottom:0px;--padding-left:15px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-b8cb5bd{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-d14c272{--spacer-size:2px;}.elementor-15361 .elementor-element.elementor-element-b2a671e .elementor-heading-title{font-size:90px;}.elementor-15361 .elementor-element.elementor-element-43c9b15{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-611b97a{--padding-top:0px;--padding-bottom:0px;--padding-left:15px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-53c0067{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-23a358f{--spacer-size:2px;}.elementor-15361 .elementor-element.elementor-element-308bf48 .elementor-heading-title{font-size:90px;}.elementor-15361 .elementor-element.elementor-element-f0b0910{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-b572afe{--padding-top:30px;--padding-bottom:40px;--padding-left:40px;--padding-right:30px;}.elementor-15361 .elementor-element.elementor-element-ac49bce{--gap:12px 12px;--row-gap:12px;--column-gap:12px;}.elementor-15361 .elementor-element.elementor-element-a9e9238{--padding-top:30px;--padding-bottom:40px;--padding-left:40px;--padding-right:30px;}}@media(max-width:1024px){.elementor-15361 .elementor-element.elementor-element-98bcc40{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-d4dfbb1{--margin-top:0px;--margin-bottom:0px;--margin-left:6px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-d4dfbb1.e-con{--align-self:flex-start;}.elementor-15361 .elementor-element.elementor-element-086f268{--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:flex-start;}.elementor-15361 .elementor-element.elementor-element-b2a671e > .elementor-widget-container{margin:0px 0px 0px -41px;padding:0px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-b2a671e .elementor-heading-title{font-size:80px;}.elementor-15361 .elementor-element.elementor-element-e0ed35d{--min-height:100px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-5212666{text-align:left;}.elementor-15361 .elementor-element.elementor-element-5212666 img{width:100%;max-width:100%;}.elementor-15361 .elementor-element.elementor-element-611b97a{--margin-top:0px;--margin-bottom:0px;--margin-left:15px;--margin-right:0px;--padding-top:15px;--padding-bottom:15px;--padding-left:15px;--padding-right:15px;}.elementor-15361 .elementor-element.elementor-element-0aa8967{--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-308bf48.elementor-element{--align-self:flex-start;--order:-99999 /* order start hack */;}.elementor-15361 .elementor-element.elementor-element-308bf48 .elementor-heading-title{font-size:70px;}.elementor-15361 .elementor-element.elementor-element-6b03888 p{margin-block-end:0px;}.elementor-15361 .elementor-element.elementor-element-bccbcec.e-con{--align-self:center;}.elementor-15361 .elementor-element.elementor-element-6c310ef{--spacer-size:20px;}.elementor-15361 .elementor-element.elementor-element-a9e9238.e-con{--align-self:center;}.elementor-15361 .elementor-element.elementor-element-1356848{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-923ec72.elementor-element{--align-self:center;}.elementor-15361 .elementor-element.elementor-element-923ec72 .eael-fancy-text-prefix{font-size:30px;}.elementor-15361 .elementor-element.elementor-element-923ec72 .eael-fancy-text-strings, .elementor-15361 .elementor-element.elementor-element-923ec72 .typed-cursor{font-size:30px;}.elementor-15361 .elementor-element.elementor-element-923ec72 .eael-fancy-text-suffix{font-size:20px;}.elementor-15361 .elementor-element.elementor-element-ac3a8b5{--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-around;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-b989f55{--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--flex-wrap:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-6b0852a{width:var( --container-widget-width, 334.797px );max-width:334.797px;--container-widget-width:334.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-6b0852a > .elementor-widget-container{margin:-30px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-886f0b8{--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-2e52a9c{width:var( --container-widget-width, 334.797px );max-width:334.797px;--container-widget-width:334.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-2e52a9c > .elementor-widget-container{margin:-30px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-5276692{--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-around;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-516ca4f{--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--flex-wrap:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-9333430{width:var( --container-widget-width, 334.797px );max-width:334.797px;--container-widget-width:334.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-9333430 > .elementor-widget-container{margin:-30px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-d6093e9{--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-1875f31{width:var( --container-widget-width, 334.797px );max-width:334.797px;--container-widget-width:334.797px;--container-widget-flex-grow:0;}.elementor-15361 .elementor-element.elementor-element-1875f31 > .elementor-widget-container{margin:-30px 0px 0px 0px;}.elementor-15361 .elementor-element.elementor-element-382e977{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-4e50c07{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-e47e97c img{height:250px;}.elementor-15361 .elementor-element.elementor-element-be27761{text-align:left;}.elementor-15361 .elementor-element.elementor-element-be27761 img{width:100%;height:250px;}.elementor-15361 .elementor-element.elementor-element-5f981ea img{height:250px;}.elementor-15361 .elementor-element.elementor-element-cd4f781{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-6ac491c img{height:250px;}.elementor-15361 .elementor-element.elementor-element-5bcbe31{text-align:left;}.elementor-15361 .elementor-element.elementor-element-5bcbe31 img{width:100%;height:250px;}.elementor-15361 .elementor-element.elementor-element-84402e6{text-align:left;}.elementor-15361 .elementor-element.elementor-element-84402e6 img{width:100%;height:250px;}}@media(max-width:767px){.elementor-15361 .elementor-element.elementor-element-e0ed35d{--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}.elementor-15361 .elementor-element.elementor-element-6a2a64e{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-611b97a{--min-height:100px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-308bf48.elementor-element{--order:-99999 /* order start hack */;}.elementor-15361 .elementor-element.elementor-element-308bf48 .elementor-heading-title{font-size:80px;}.elementor-15361 .elementor-element.elementor-element-05a2c02{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-ac49bce{--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-9dc6f0b{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-5a10c1c{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-1356848{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-161ce36{--spacer-size:20px;}.elementor-15361 .elementor-element.elementor-element-ac3a8b5{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-b989f55{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-886f0b8{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-5276692{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-516ca4f{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-d6093e9{--flex-wrap:wrap;}.elementor-15361 .elementor-element.elementor-element-7812693 > .elementor-widget-container{padding:0px 0px 0px 03px;}.elementor-15361 .elementor-element.elementor-element-68a31f1{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-4e50c07{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-403554a{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-cd4f781{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-6ac491c img{height:100%;}.elementor-15361 .elementor-element.elementor-element-2f19471{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-5bcbe31 img{height:100%;}.elementor-15361 .elementor-element.elementor-element-8f4b3d9{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-84402e6 img{height:100%;}}@media(max-width:540px){.elementor-15361 .elementor-element.elementor-element-611b97a{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15361 .elementor-element.elementor-element-0aa8967{--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-15361 .elementor-element.elementor-element-308bf48 .elementor-heading-title{font-size:70px;}.elementor-15361 .elementor-element.elementor-element-6c310ef{--spacer-size:5px;}.elementor-15361 .elementor-element.elementor-element-05a2c02{--min-height:0px;}.elementor-15361 .elementor-element.elementor-element-ac49bce{--width:300px;--justify-content:center;}.elementor-15361 .elementor-element.elementor-element-9dc6f0b{--width:266px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-b04a4ec .elementor-icon-wrapper{text-align:center;}.elementor-15361 .elementor-element.elementor-element-5a10c1c{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-121a3e0{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-6540c7b{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-1356848{--min-height:0px;}.elementor-15361 .elementor-element.elementor-element-ac3a8b5{--min-height:0px;}.elementor-15361 .elementor-element.elementor-element-b989f55{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-886f0b8{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-5276692{--min-height:0px;}.elementor-15361 .elementor-element.elementor-element-516ca4f{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-15361 .elementor-element.elementor-element-d6093e9{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(min-width:541px){.elementor-15361 .elementor-element.elementor-element-98bcc40{--width:40%;}.elementor-15361 .elementor-element.elementor-element-d4dfbb1{--width:55%;}.elementor-15361 .elementor-element.elementor-element-e0ed35d{--width:45%;}.elementor-15361 .elementor-element.elementor-element-611b97a{--width:50%;}.elementor-15361 .elementor-element.elementor-element-ac49bce{--width:100%;}.elementor-15361 .elementor-element.elementor-element-9dc6f0b{--width:23%;}.elementor-15361 .elementor-element.elementor-element-5a10c1c{--width:23%;}.elementor-15361 .elementor-element.elementor-element-121a3e0{--width:23%;}.elementor-15361 .elementor-element.elementor-element-6540c7b{--width:23%;}.elementor-15361 .elementor-element.elementor-element-a9e9238{--width:100.07%;}.elementor-15361 .elementor-element.elementor-element-b989f55{--width:23%;}.elementor-15361 .elementor-element.elementor-element-886f0b8{--width:23%;}.elementor-15361 .elementor-element.elementor-element-516ca4f{--width:23%;}.elementor-15361 .elementor-element.elementor-element-d6093e9{--width:23%;}.elementor-15361 .elementor-element.elementor-element-4e50c07{--width:30%;}.elementor-15361 .elementor-element.elementor-element-a61793d{--width:30%;}.elementor-15361 .elementor-element.elementor-element-d420332{--width:30%;}.elementor-15361 .elementor-element.elementor-element-cd4f781{--width:30%;}.elementor-15361 .elementor-element.elementor-element-323e803{--width:30%;}.elementor-15361 .elementor-element.elementor-element-9e13efe{--width:30%;}}@media(max-width:1400px) and (min-width:541px){.elementor-15361 .elementor-element.elementor-element-ac49bce{--width:1130px;}.elementor-15361 .elementor-element.elementor-element-9dc6f0b{--width:248.797px;}.elementor-15361 .elementor-element.elementor-element-5a10c1c{--width:270.797px;}.elementor-15361 .elementor-element.elementor-element-121a3e0{--width:242.797px;}.elementor-15361 .elementor-element.elementor-element-6540c7b{--width:242.797px;}.elementor-15361 .elementor-element.elementor-element-b989f55{--width:270.797px;}.elementor-15361 .elementor-element.elementor-element-886f0b8{--width:270.797px;}.elementor-15361 .elementor-element.elementor-element-516ca4f{--width:270.797px;}.elementor-15361 .elementor-element.elementor-element-d6093e9{--width:270.797px;}}@media(max-width:1200px) and (min-width:541px){.elementor-15361 .elementor-element.elementor-element-ac49bce{--width:935px;}.elementor-15361 .elementor-element.elementor-element-9dc6f0b{--width:205px;}.elementor-15361 .elementor-element.elementor-element-5a10c1c{--width:220px;}.elementor-15361 .elementor-element.elementor-element-121a3e0{--width:215px;}.elementor-15361 .elementor-element.elementor-element-6540c7b{--width:215px;}.elementor-15361 .elementor-element.elementor-element-b989f55{--width:220px;}.elementor-15361 .elementor-element.elementor-element-886f0b8{--width:220px;}.elementor-15361 .elementor-element.elementor-element-516ca4f{--width:220px;}.elementor-15361 .elementor-element.elementor-element-d6093e9{--width:220px;}}@media(max-width:1024px) and (min-width:541px){.elementor-15361 .elementor-element.elementor-element-e0ed35d{--width:40%;}.elementor-15361 .elementor-element.elementor-element-611b97a{--width:100%;}.elementor-15361 .elementor-element.elementor-element-1e41161{--width:100%;}.elementor-15361 .elementor-element.elementor-element-a9e9238{--width:100%;}.elementor-15361 .elementor-element.elementor-element-b989f55{--width:40%;}.elementor-15361 .elementor-element.elementor-element-886f0b8{--width:40%;}.elementor-15361 .elementor-element.elementor-element-516ca4f{--width:40%;}.elementor-15361 .elementor-element.elementor-element-d6093e9{--width:40%;}.elementor-15361 .elementor-element.elementor-element-382e977{--width:20%;}}@media(max-width:767px) and (min-width:541px){.elementor-15361 .elementor-element.elementor-element-e0ed35d{--width:100%;}.elementor-15361 .elementor-element.elementor-element-ac49bce{--width:450px;}.elementor-15361 .elementor-element.elementor-element-4e50c07{--width:100%;}.elementor-15361 .elementor-element.elementor-element-a61793d{--width:100%;}.elementor-15361 .elementor-element.elementor-element-403554a{--content-width:100%;}.elementor-15361 .elementor-element.elementor-element-cd4f781{--width:100%;}.elementor-15361 .elementor-element.elementor-element-323e803{--width:100%;}.elementor-15361 .elementor-element.elementor-element-9e13efe{--width:100%;}}@charset "UTF-8";:root{--wp-admin-theme-color:#3858e9;--wp-admin-theme-color--rgb:56,88,233;--wp-admin-theme-color-darker-10:#2145e6;--wp-admin-theme-color-darker-10--rgb:33,69,230;--wp-admin-theme-color-darker-20:#183ad6;--wp-admin-theme-color-darker-20--rgb:24,58,214;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}@media not (prefers-reduced-motion){.components-animate__appear{animation:components-animate__appear-animation .1s cubic-bezier(0,0,.2,1) 0s;animation-fill-mode:forwards}}.components-animate__appear.is-from-top,.components-animate__appear.is-from-top.is-from-left{transform-origin:top left}.components-animate__appear.is-from-top.is-from-right{transform-origin:top right}.components-animate__appear.is-from-bottom,.components-animate__appear.is-from-bottom.is-from-left{transform-origin:bottom left}.components-animate__appear.is-from-bottom.is-from-right{transform-origin:bottom right}@keyframes components-animate__appear-animation{0%{transform:translateY(-2em) scaleY(0) scaleX(0)}to{transform:translateY(0) scaleY(1) scaleX(1)}}@media not (prefers-reduced-motion){.components-animate__slide-in{animation:components-animate__slide-in-animation .1s cubic-bezier(0,0,.2,1);animation-fill-mode:forwards}.components-animate__slide-in.is-from-left{transform:translateX(100%)}.components-animate__slide-in.is-from-right{transform:translateX(-100%)}}@keyframes components-animate__slide-in-animation{to{transform:translateX(0)}}@media not (prefers-reduced-motion){.components-animate__loading{animation:components-animate__loading 1.6s ease-in-out infinite}}@keyframes components-animate__loading{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.components-autocomplete__popover .components-popover__content{min-width:200px;padding:8px}.components-autocomplete__result.components-button{display:flex;height:auto;min-height:36px;text-align:left;width:100%}.components-autocomplete__result.components-button:focus:not(:disabled){box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid #0000}.components-badge{align-items:center;background-color:color-mix(in srgb,#fff 90%,var(--base-color));border-radius:2px;box-sizing:border-box;color:color-mix(in srgb,#000 50%,var(--base-color));display:inline-flex;font-size:12px;font-weight:400;gap:2px;line-height:20px;max-width:100%;min-height:24px;padding:0 8px}.components-badge *,.components-badge :after,.components-badge :before{box-sizing:inherit}.components-badge:where(.is-default){background-color:#f0f0f0;color:#2f2f2f}.components-badge.has-icon{padding-inline-start:4px}.components-badge.is-info{--base-color:#3858e9}.components-badge.is-warning{--base-color:#f0b849}.components-badge.is-error{--base-color:#cc1818}.components-badge.is-success{--base-color:#4ab866}.components-badge__icon{flex-shrink:0}.components-badge__content{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.components-button-group{display:inline-block}.components-button-group .components-button{border-radius:0;box-shadow:inset 0 0 0 1px #1e1e1e;color:#1e1e1e;display:inline-flex}.components-button-group .components-button+.components-button{margin-left:-1px}.components-button-group .components-button:first-child{border-radius:2px 0 0 2px}.components-button-group .components-button:last-child{border-radius:0 2px 2px 0}.components-button-group .components-button.is-primary,.components-button-group .components-button:focus{position:relative;z-index:1}.components-button-group .components-button.is-primary{box-shadow:inset 0 0 0 1px #1e1e1e}.components-button{align-items:center;-webkit-appearance:none;background:none;border:0;border-radius:2px;box-sizing:border-box;color:var(--wp-components-color-foreground,#1e1e1e);cursor:pointer;display:inline-flex;font-family:inherit;font-size:13px;height:36px;margin:0;padding:6px 12px;text-decoration:none}@media not (prefers-reduced-motion){.components-button{transition:box-shadow .1s linear}}.components-button.is-next-40px-default-size{height:40px}.components-button:hover:not(:disabled,[aria-disabled=true]),.components-button[aria-expanded=true]{color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button:focus:not(:disabled){box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:3px solid #0000}.components-button.is-primary{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff);outline:1px solid #0000;text-decoration:none;text-shadow:none;white-space:nowrap}.components-button.is-primary:hover:not(:disabled){background:var(--wp-components-color-accent-darker-10,var(--wp-admin-theme-color-darker-10,#2145e6));color:var(--wp-components-color-accent-inverted,#fff)}.components-button.is-primary:active:not(:disabled){background:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6));border-color:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6));color:var(--wp-components-color-accent-inverted,#fff)}.components-button.is-primary:focus:not(:disabled){box-shadow:inset 0 0 0 1px var(--wp-components-color-background,#fff),0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button.is-primary:disabled,.components-button.is-primary:disabled:active:enabled,.components-button.is-primary[aria-disabled=true],.components-button.is-primary[aria-disabled=true]:active:enabled,.components-button.is-primary[aria-disabled=true]:enabled{background:var(--wp-components-color-gray-300,#ddd);border-color:var(--wp-components-color-gray-300,#ddd);color:var(--wp-components-color-foreground-inverted,#fff);outline:none}.components-button.is-primary:disabled:active:enabled:focus:enabled,.components-button.is-primary:disabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:active:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:enabled:focus:enabled,.components-button.is-primary[aria-disabled=true]:focus:enabled{box-shadow:inset 0 0 0 1px var(--wp-components-color-background,#fff),0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button.is-primary.is-busy,.components-button.is-primary.is-busy:disabled,.components-button.is-primary.is-busy[aria-disabled=true]{background-image:linear-gradient(-45deg,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 33%,var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6)) 33%,var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6)) 70%,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 70%);background-size:100px 100%;border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-accent-inverted,#fff)}.components-button.is-secondary,.components-button.is-tertiary{outline:1px solid #0000}.components-button.is-secondary:active:not(:disabled),.components-button.is-tertiary:active:not(:disabled){box-shadow:none}.components-button.is-secondary:disabled,.components-button.is-secondary[aria-disabled=true],.components-button.is-secondary[aria-disabled=true]:hover,.components-button.is-tertiary:disabled,.components-button.is-tertiary[aria-disabled=true],.components-button.is-tertiary[aria-disabled=true]:hover{background:#0000;color:#949494;transform:none}.components-button.is-secondary{background:#0000;box-shadow:inset 0 0 0 1px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)),0 0 0 currentColor;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:1px solid #0000;white-space:nowrap}.components-button.is-secondary:hover:not(:disabled,[aria-disabled=true],.is-pressed){background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000);box-shadow:inset 0 0 0 1px var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6));color:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6))}.components-button.is-secondary:disabled:not(:focus),.components-button.is-secondary[aria-disabled=true]:hover:not(:focus),.components-button.is-secondary[aria-disabled=true]:not(:focus){box-shadow:inset 0 0 0 1px #ddd}.components-button.is-secondary:focus:not(:disabled){box-shadow:0 0 0 currentColor inset,0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-button.is-tertiary{background:#0000;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));white-space:nowrap}.components-button.is-tertiary:hover:not(:disabled,[aria-disabled=true],.is-pressed){background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000);color:var(--wp-components-color-accent-darker-20,var(--wp-admin-theme-color-darker-20,#183ad6))}.components-button.is-tertiary:active:not(:disabled,[aria-disabled=true]){background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 8%,#0000)}p+.components-button.is-tertiary{margin-left:-6px}.components-button.is-tertiary:disabled:not(:focus),.components-button.is-tertiary[aria-disabled=true]:hover:not(:focus),.components-button.is-tertiary[aria-disabled=true]:not(:focus){box-shadow:none;outline:none}.components-button.is-destructive{--wp-components-color-accent:#cc1818;--wp-components-color-accent-darker-10:#9e1313;--wp-components-color-accent-darker-20:#710d0d}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link){color:#cc1818}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):hover:not(:disabled,[aria-disabled=true]){color:#710d0d}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #cc1818}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):active:not(:disabled,[aria-disabled=true]){background:#ccc}.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):disabled,.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link)[aria-disabled=true]{color:#949494}.components-button.is-destructive.is-secondary:hover:not(:disabled,[aria-disabled=true]),.components-button.is-destructive.is-tertiary:hover:not(:disabled,[aria-disabled=true]){background:#cc18180a}.components-button.is-destructive.is-secondary:active:not(:disabled,[aria-disabled=true]),.components-button.is-destructive.is-tertiary:active:not(:disabled,[aria-disabled=true]){background:#cc181814}.components-button.is-link{background:none;border:0;border-radius:0;box-shadow:none;color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));height:auto;margin:0;outline:none;padding:0;text-align:left;text-decoration:underline}@media not (prefers-reduced-motion){.components-button.is-link{transition-duration:.05s;transition-property:border,background,color;transition-timing-function:ease-in-out}}.components-button.is-link:focus{border-radius:2px}.components-button.is-link:disabled,.components-button.is-link[aria-disabled=true]{color:#949494}.components-button:not(:disabled,[aria-disabled=true]):active{color:var(--wp-components-color-foreground,#1e1e1e)}.components-button:disabled,.components-button[aria-disabled=true]{color:#949494;cursor:default}.components-button.is-busy,.components-button.is-secondary.is-busy,.components-button.is-secondary.is-busy:disabled,.components-button.is-secondary.is-busy[aria-disabled=true]{background-image:linear-gradient(-45deg,#fafafa 33%,#e0e0e0 0,#e0e0e0 70%,#fafafa 0);background-size:100px 100%}@media not (prefers-reduced-motion){.components-button.is-busy,.components-button.is-secondary.is-busy,.components-button.is-secondary.is-busy:disabled,.components-button.is-secondary.is-busy[aria-disabled=true]{animation:components-button__busy-animation 2.5s linear infinite}}.components-button.is-compact{height:32px}.components-button.is-compact.has-icon:not(.has-text){min-width:32px;padding:0}.components-button.is-small{font-size:11px;height:24px;line-height:22px;padding:0 8px}.components-button.is-small.has-icon:not(.has-text){min-width:24px;padding:0}.components-button.has-icon{justify-content:center;min-width:36px;padding:6px}.components-button.has-icon.is-next-40px-default-size{min-width:40px}.components-button.has-icon .dashicon{align-items:center;box-sizing:initial;display:inline-flex;justify-content:center;padding:2px}.components-button.has-icon.has-text{gap:4px;justify-content:start;padding-left:8px;padding-right:12px}.components-button.is-pressed,.components-button.is-pressed:hover{color:var(--wp-components-color-foreground-inverted,#fff)}.components-button.is-pressed:hover:not(:disabled,[aria-disabled=true]),.components-button.is-pressed:not(:disabled,[aria-disabled=true]){background:var(--wp-components-color-foreground,#1e1e1e)}.components-button.is-pressed:disabled,.components-button.is-pressed[aria-disabled=true]{color:#949494}.components-button.is-pressed:disabled:not(.is-primary):not(.is-secondary):not(.is-tertiary),.components-button.is-pressed[aria-disabled=true]:not(.is-primary):not(.is-secondary):not(.is-tertiary){background:#949494;color:var(--wp-components-color-foreground-inverted,#fff)}.components-button.is-pressed:focus:not(:disabled){box-shadow:inset 0 0 0 1px var(--wp-components-color-background,#fff),0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-button svg{fill:currentColor;outline:none}@media (forced-colors:active){.components-button svg{fill:CanvasText}}.components-button .components-visually-hidden{height:auto}@keyframes components-button__busy-animation{0%{background-position:200px 0}}.components-calendar{background-color:var(--wp-components-color-background,#fff);color:var(--wp-components-color-foreground,#1e1e1e);display:inline-block;font-size:13px;font-weight:400;position:relative;z-index:0}.components-calendar,.components-calendar *,.components-calendar :after,.components-calendar :before{box-sizing:border-box}.components-calendar__day{padding:0;position:relative}.components-calendar__day:has(.components-calendar__day-button:disabled){color:var(--wp-components-color-gray-600,#949494)}.components-calendar__day:has(.components-calendar__day-button:focus-visible),.components-calendar__day:has(.components-calendar__day-button:hover:not(:disabled)){color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-calendar__day-button{align-items:center;background:none;border:none;border-radius:2px;color:inherit;cursor:pointer;display:flex;font:inherit;font-variant-numeric:tabular-nums;height:32px;justify-content:center;margin:0;padding:0;position:relative;width:32px}.components-calendar__day-button:before{border:none;border-radius:2px;content:"";inset:0;position:absolute;z-index:-1}.components-calendar__day-button:after{content:"";inset:0;pointer-events:none;position:absolute;z-index:1}.components-calendar__day-button:disabled{cursor:revert}@media (forced-colors:active){.components-calendar__day-button:disabled{text-decoration:line-through}}.components-calendar__day-button:focus-visible{outline:var(--wp-admin-border-width-focus) solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline-offset:1px}.components-calendar__caption-label{align-items:center;border:0;display:inline-flex;position:relative;text-transform:capitalize;white-space:nowrap;z-index:1}.components-calendar__button-next,.components-calendar__button-previous{align-items:center;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;border-radius:2px;color:inherit;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin:0;padding:0;position:relative;width:32px}.components-calendar__button-next:disabled,.components-calendar__button-next[aria-disabled=true],.components-calendar__button-previous:disabled,.components-calendar__button-previous[aria-disabled=true]{color:var(--wp-components-color-gray-600,#949494);cursor:revert}.components-calendar__button-next:focus-visible,.components-calendar__button-previous:focus-visible{outline:var(--wp-admin-border-width-focus) solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-calendar__chevron{fill:currentColor;display:inline-block;height:16px;width:16px}.components-calendar[dir=rtl] .components-calendar__nav .components-calendar__chevron{transform:rotate(180deg);transform-origin:50%}.components-calendar__month-caption{align-content:center;display:flex;height:32px;justify-content:center;margin-bottom:12px}.components-calendar__months{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;max-width:fit-content;position:relative}.components-calendar__month-grid{border-collapse:initial;border-spacing:0 4px}.components-calendar__nav{align-items:center;display:flex;height:32px;inset-block-start:0;inset-inline-end:0;inset-inline-start:0;justify-content:space-between;position:absolute}.components-calendar__weekday{color:var(--wp-components-color-gray-700,#757575);height:32px;padding:0;text-align:center;text-transform:uppercase;width:32px}.components-calendar__day--today:after{border:2px solid;border-radius:50%;content:"";height:0;inset-block-start:2px;inset-inline-end:2px;position:absolute;width:0;z-index:1}.components-calendar__day--selected:not(.components-calendar__range-middle):has(.components-calendar__day-button,.components-calendar__day-button:hover:not(:disabled)){color:var(--wp-components-color-foreground-inverted,#fff)}.components-calendar__day--selected:not(.components-calendar__range-middle) .components-calendar__day-button:before{background-color:var(--wp-components-color-foreground,#1e1e1e);border:1px solid #0000}.components-calendar__day--selected:not(.components-calendar__range-middle) .components-calendar__day-button:disabled:before{background-color:var(--wp-components-color-gray-600,#949494)}.components-calendar__day--selected:not(.components-calendar__range-middle) .components-calendar__day-button:hover:not(:disabled):before{background-color:var(--wp-components-color-gray-800,#2f2f2f)}.components-calendar__day--hidden{visibility:hidden}.components-calendar__range-start:not(.components-calendar__range-end) .components-calendar__day-button,.components-calendar__range-start:not(.components-calendar__range-end) .components-calendar__day-button:before{border-end-end-radius:0;border-start-end-radius:0}.components-calendar__range-middle .components-calendar__day-button:before{background-color:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000);border-color:#0000;border-radius:0;border-style:solid;border-width:1px 0}.components-calendar__range-end:not(.components-calendar__range-start) .components-calendar__day-button,.components-calendar__range-end:not(.components-calendar__range-start) .components-calendar__day-button:before{border-end-start-radius:0;border-start-start-radius:0}.components-calendar__day--preview svg{color:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 16%,#0000);inset:0;pointer-events:none;position:absolute}@media (forced-colors:active){.components-calendar__day--preview svg{color:inherit}}.components-calendar[dir=rtl] .components-calendar__day--preview svg{transform:scaleX(-1)}.components-calendar__day--preview.components-calendar__range-middle .components-calendar__day-button:before{border:none}@keyframes slide-in-left{0%{transform:translateX(-100%)}to{transform:translateX(0)}}@keyframes slide-in-right{0%{transform:translateX(100%)}to{transform:translateX(0)}}@keyframes slide-out-left{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@keyframes slide-out-right{0%{transform:translateX(0)}to{transform:translateX(100%)}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.components-calendar__caption-after-enter,.components-calendar__caption-after-exit,.components-calendar__caption-before-enter,.components-calendar__caption-before-exit,.components-calendar__weeks-after-enter,.components-calendar__weeks-after-exit,.components-calendar__weeks-before-enter,.components-calendar__weeks-before-exit{animation-duration:0s;animation-fill-mode:forwards;animation-timing-function:cubic-bezier(.4,0,.2,1)}@media not (prefers-reduced-motion){.components-calendar__caption-after-enter,.components-calendar__caption-after-exit,.components-calendar__caption-before-enter,.components-calendar__caption-before-exit,.components-calendar__weeks-after-enter,.components-calendar__weeks-after-exit,.components-calendar__weeks-before-enter,.components-calendar__weeks-before-exit{animation-duration:.3s}}.components-calendar[dir=rtl] .components-calendar__weeks-after-enter,.components-calendar__weeks-before-enter{animation-name:slide-in-left}.components-calendar[dir=rtl] .components-calendar__weeks-after-exit,.components-calendar__weeks-before-exit{animation-name:slide-out-left}.components-calendar[dir=rtl] .components-calendar__weeks-before-enter,.components-calendar__weeks-after-enter{animation-name:slide-in-right}.components-calendar[dir=rtl] .components-calendar__weeks-before-exit,.components-calendar__weeks-after-exit{animation-name:slide-out-right}.components-calendar__caption-after-enter{animation-name:fade-in}.components-calendar__caption-after-exit{animation-name:fade-out}.components-calendar__caption-before-enter{animation-name:fade-in}.components-calendar__caption-before-exit{animation-name:fade-out}.components-checkbox-control{--checkbox-input-size:24px;--checkbox-input-margin:8px}@media (min-width:600px){.components-checkbox-control{--checkbox-input-size:16px}}.components-checkbox-control__label{cursor:pointer;line-height:var(--checkbox-input-size)}.components-checkbox-control__input[type=checkbox]{appearance:none;background:#fff;border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;clear:none;color:#1e1e1e;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;height:var(--checkbox-input-size);line-height:normal;line-height:0;margin:0 4px 0 0;outline:0;padding:6px 8px;padding:0!important;text-align:center;transition:none;vertical-align:top;width:var(--checkbox-input-size)}@media not (prefers-reduced-motion){.components-checkbox-control__input[type=checkbox]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-checkbox-control__input[type=checkbox]{font-size:13px;line-height:normal}}.components-checkbox-control__input[type=checkbox]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder{color:#1e1e1e9e}.components-checkbox-control__input[type=checkbox]::-moz-placeholder{color:#1e1e1e9e}.components-checkbox-control__input[type=checkbox]:-ms-input-placeholder{color:#1e1e1e9e}.components-checkbox-control__input[type=checkbox]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox]:checked::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{color:#fff;margin:-3px -5px}@media (min-width:782px){.components-checkbox-control__input[type=checkbox]:checked:before,.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{margin:-4px 0 0 -5px}}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f460";display:inline-block;float:left;font:normal 30px/1 dashicons;vertical-align:middle;width:16px}@media (min-width:782px){.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before{float:none;font-size:21px}}.components-checkbox-control__input[type=checkbox]:disabled,.components-checkbox-control__input[type=checkbox][aria-disabled=true]{background:#f0f0f0;border-color:#ddd;cursor:default;opacity:1}@media not (prefers-reduced-motion){.components-checkbox-control__input[type=checkbox]{transition:border-color .1s ease-in-out}}.components-checkbox-control__input[type=checkbox]:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);outline:2px solid #0000;outline-offset:2px}.components-checkbox-control__input[type=checkbox]:checked,.components-checkbox-control__input[type=checkbox]:indeterminate{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-checkbox-control__input[type=checkbox]:checked::-ms-check,.components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check{opacity:0}.components-checkbox-control__input[type=checkbox]:checked:before{content:none}.components-checkbox-control__input-container{aspect-ratio:1;display:inline-block;flex-shrink:0;line-height:1;margin-right:var(--checkbox-input-margin);position:relative;vertical-align:middle;width:var(--checkbox-input-size)}svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{--checkmark-size:var(--checkbox-input-size);fill:#fff;cursor:pointer;height:var(--checkmark-size);left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%);-webkit-user-select:none;user-select:none;width:var(--checkmark-size)}@media (min-width:600px){svg.components-checkbox-control__checked,svg.components-checkbox-control__indeterminate{--checkmark-size:calc(var(--checkbox-input-size) + 4px)}}.components-checkbox-control__help{display:inline-block;margin-inline-start:calc(var(--checkbox-input-size) + var(--checkbox-input-margin))}.components-circular-option-picker{display:inline-block;min-width:188px;width:100%}.components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper{display:flex;justify-content:flex-end;margin-top:12px}.components-circular-option-picker .components-circular-option-picker__swatches{display:flex;flex-wrap:wrap;gap:12px;position:relative;z-index:1}.components-circular-option-picker>:not(.components-circular-option-picker__swatches){position:relative;z-index:0}.components-circular-option-picker__option-wrapper{display:inline-block;height:28px;transform:scale(1);vertical-align:top;width:28px}@media not (prefers-reduced-motion){.components-circular-option-picker__option-wrapper{transition:transform .1s ease;will-change:transform}}.components-circular-option-picker__option-wrapper:hover{transform:scale(1.2)}.components-circular-option-picker__option-wrapper>div{height:100%;width:100%}.components-circular-option-picker__option-wrapper:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='none'%3E%3Cpath fill='%23555D65' d='M6 8V6H4v2h2zm2 0V6h2v2H8zm2 8H8v-2h2v2zm2 0v-2h2v2h-2zm0 2v-2h-2v2H8v2h2v-2h2zm2 0v2h-2v-2h2zm2 0h-2v-2h2v2z'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M18 18h2v-2h-2v-2h2v-2h-2v-2h2V8h-2v2h-2V8h-2v2h2v2h-2v2h2v2h2v2zm-2-4v-2h2v2h-2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555D65' d='M18 18v2h-2v-2h2z'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M8 10V8H6v2H4v2h2v2H4v2h2v2H4v2h2v2H4v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2v2h-2V4h-2v2h-2V4h-2v2h-2V4h-2v2h2v2h-2v2H8zm0 2v-2H6v2h2zm2 0v-2h2v2h-2zm0 2v-2H8v2H6v2h2v2H6v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2V6h-2v2h-2v2h2v2h-2v2h-2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M4 0H2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2H8V0H6v2H4V0zm0 4V2H2v2h2zm2 0V2h2v2H6zm0 2V4H4v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2H8v2H6z' clip-rule='evenodd'/%3E%3C/svg%3E");border-radius:50%;bottom:1px;content:"";left:1px;position:absolute;right:1px;top:1px;z-index:-1}.components-circular-option-picker__option{aspect-ratio:1;background:#0000;border:none;border-radius:50%;box-shadow:inset 0 0 0 14px;cursor:pointer;display:inline-block;height:100%!important;vertical-align:top}@media not (prefers-reduced-motion){.components-circular-option-picker__option{transition:box-shadow .1s ease}}.components-circular-option-picker__option:hover{box-shadow:inset 0 0 0 14px!important}.components-circular-option-picker__option[aria-pressed=true],.components-circular-option-picker__option[aria-selected=true]{box-shadow:inset 0 0 0 4px;overflow:visible;position:relative;z-index:1}.components-circular-option-picker__option[aria-pressed=true]+svg,.components-circular-option-picker__option[aria-selected=true]+svg{border-radius:50%;left:2px;pointer-events:none;position:absolute;top:2px;z-index:2}.components-circular-option-picker__option:after{border:1px solid #0000;border-radius:50%;bottom:-1px;box-shadow:inset 0 0 0 1px #0003;box-sizing:inherit;content:"";left:-1px;position:absolute;right:-1px;top:-1px}.components-circular-option-picker__option:focus:after{border:2px solid #757575;border-radius:50%;box-shadow:inset 0 0 0 2px #fff;content:"";height:calc(100% + 4px);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:calc(100% + 4px)}.components-circular-option-picker__option.components-button:focus{background-color:initial;box-shadow:inset 0 0 0 14px;outline:none}.components-circular-option-picker__button-action .components-circular-option-picker__option{background:#fff;color:#fff}.components-circular-option-picker__dropdown-link-action{margin-right:16px}.components-circular-option-picker__dropdown-link-action .components-button{line-height:22px}.components-palette-edit__popover-gradient-picker{padding:8px;width:260px}.components-dropdown-menu__menu .components-palette-edit__menu-button{width:100%}.component-color-indicator{background:#fff linear-gradient(-45deg,#0000 48%,#ddd 0,#ddd 52%,#0000 0);border-radius:50%;box-shadow:inset 0 0 0 1px #0003;display:inline-block;height:20px;padding:0;width:20px}.components-combobox-control{width:100%}input.components-combobox-control__input[type=text]{background:var(--wp-components-color-background,#fff);border:none;box-shadow:none;color:var(--wp-components-color-foreground,#1e1e1e);font-family:inherit;font-size:16px;line-height:inherit;margin:0;min-height:auto;padding:2px;width:100%}@media (min-width:600px){input.components-combobox-control__input[type=text]{font-size:13px}}input.components-combobox-control__input[type=text]:focus{box-shadow:none;outline:none}.components-combobox-control__suggestions-container{align-items:flex-start;border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;display:flex;flex-wrap:wrap;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;padding:0;width:100%}@media not (prefers-reduced-motion){.components-combobox-control__suggestions-container{transition:box-shadow .1s linear}}@media (min-width:600px){.components-combobox-control__suggestions-container{font-size:13px;line-height:normal}}.components-combobox-control__suggestions-container:focus{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-combobox-control__suggestions-container::-webkit-input-placeholder{color:#1e1e1e9e}.components-combobox-control__suggestions-container::-moz-placeholder{color:#1e1e1e9e}.components-combobox-control__suggestions-container:-ms-input-placeholder{color:#1e1e1e9e}.components-combobox-control__suggestions-container:focus-within{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-combobox-control__suggestions-container .components-spinner{margin:0}.components-color-palette__custom-color-wrapper{position:relative;z-index:0}.components-color-palette__custom-color-button{background:none;border:none;border-radius:4px 4px 0 0;box-shadow:inset 0 0 0 1px #0003;box-sizing:border-box;cursor:pointer;height:64px;outline:1px solid #0000;position:relative;width:100%}.components-color-palette__custom-color-button:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline-width:2px}.components-color-palette__custom-color-button:after{background-image:repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0),repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0);background-position:0 0,24px 24px;background-size:48px 48px;border-radius:3px 3px 0 0;content:"";inset:1px;position:absolute;z-index:-1}.components-color-palette__custom-color-text-wrapper{border-radius:0 0 4px 4px;box-shadow:inset 0 -1px 0 0 #0003,inset 1px 0 0 0 #0003,inset -1px 0 0 0 #0003;font-size:13px;padding:12px 16px;position:relative}.components-color-palette__custom-color-name{color:var(--wp-components-color-foreground,#1e1e1e);margin:0 1px}.components-color-palette__custom-color-value{color:#757575}.components-color-palette__custom-color-value--is-hex{text-transform:uppercase}.components-color-palette__custom-color-value:empty:after{content:"​";visibility:hidden}.components-custom-gradient-picker__gradient-bar{border-radius:2px;height:48px;position:relative;width:100%;z-index:1}.components-custom-gradient-picker__gradient-bar.has-gradient{background-image:repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0),repeating-linear-gradient(45deg,#e0e0e0 25%,#0000 0,#0000 75%,#e0e0e0 0,#e0e0e0);background-position:0 0,12px 12px;background-size:24px 24px}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__gradient-bar-background{inset:0;position:absolute}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container{margin-left:auto;margin-right:auto;position:relative;width:calc(100% - 48px)}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-dropdown{display:flex;height:16px;position:absolute;top:16px;width:16px}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown{background:#fff;border-radius:50%;color:#1e1e1e;height:inherit;min-width:16px!important;padding:2px;position:relative;width:inherit}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown svg{height:100%;width:100%}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button{border-radius:50%;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 2px 0 #00000040;height:inherit;outline:2px solid #0000;padding:0;width:inherit}.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active,.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus{box-shadow:inset 0 0 0 calc(var(--wp-admin-border-width-focus)*2) #fff,0 0 2px 0 #00000040;outline:1.5px solid #0000}.components-custom-gradient-picker__remove-control-point-wrapper{padding-bottom:8px}.components-custom-gradient-picker__inserter{direction:ltr}.components-custom-gradient-picker__liner-gradient-indicator{display:inline-block;flex:0 auto;height:20px;width:20px}.components-custom-gradient-picker__ui-line{position:relative;z-index:0}body.is-dragging-components-draggable{cursor:move;cursor:grabbing!important}.components-draggable__invisible-drag-image{height:50px;left:-1000px;position:fixed;width:50px}.components-draggable__clone{background:#0000;padding:0;pointer-events:none;position:fixed;z-index:1000000000}.components-drop-zone{border-radius:2px;bottom:0;left:0;opacity:0;position:absolute;right:0;top:0;visibility:hidden;z-index:40}.components-drop-zone.is-active{opacity:1;visibility:visible}.components-drop-zone .components-drop-zone__content{align-items:center;background-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));bottom:0;color:#fff;display:flex;height:100%;justify-content:center;left:0;opacity:0;pointer-events:none;position:absolute;right:0;text-align:center;top:0;width:100%;z-index:50}.components-drop-zone .components-drop-zone__content-inner{opacity:0;transform:scale(.9)}.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content{opacity:1}@media not (prefers-reduced-motion){.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content{transition:opacity .2s ease-in-out}}.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content-inner{opacity:1;transform:scale(1)}@media not (prefers-reduced-motion){.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content-inner{transition:opacity .1s ease-in-out .1s,transform .1s ease-in-out .1s}}.components-drop-zone__content-icon,.components-drop-zone__content-text{display:block}.components-drop-zone__content-icon{fill:currentColor;line-height:0;margin:0 auto 8px;pointer-events:none}.components-drop-zone__content-text{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-dropdown{display:inline-block}.components-dropdown__content .components-popover__content{padding:8px}.components-dropdown__content .components-popover__content:has(.components-menu-group){padding:0}.components-dropdown__content .components-popover__content:has(.components-menu-group) .components-dropdown-menu__menu>.components-menu-item__button,.components-dropdown__content .components-popover__content:has(.components-menu-group)>.components-menu-item__button{margin:8px;width:auto}.components-dropdown__content [role=menuitem]{white-space:nowrap}.components-dropdown__content .components-menu-group{padding:8px}.components-dropdown__content .components-menu-group+.components-menu-group{border-top:1px solid #ccc;padding:8px}.components-dropdown__content.is-alternate .components-menu-group+.components-menu-group{border-color:#1e1e1e}.components-dropdown-menu__toggle{vertical-align:top}.components-dropdown-menu__menu{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;line-height:1.4;width:100%}.components-dropdown-menu__menu .components-dropdown-menu__menu-item,.components-dropdown-menu__menu .components-menu-item{cursor:pointer;outline:none;padding:6px;white-space:nowrap;width:100%}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,.components-dropdown-menu__menu .components-menu-item.has-separator{margin-top:6px;overflow:visible;position:relative}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator:before,.components-dropdown-menu__menu .components-menu-item.has-separator:before{background-color:#ddd;box-sizing:initial;content:"";display:block;height:1px;left:0;position:absolute;right:0;top:-3px}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active .dashicon,.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active svg,.components-dropdown-menu__menu .components-menu-item.is-active .dashicon,.components-dropdown-menu__menu .components-menu-item.is-active svg{background:#1e1e1e;border-radius:1px;box-shadow:0 0 0 1px #1e1e1e;color:#fff}.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,.components-dropdown-menu__menu .components-menu-item.is-icon-only{width:auto}.components-dropdown-menu__menu .components-menu-item__button,.components-dropdown-menu__menu .components-menu-item__button.components-button{height:auto;min-height:40px;padding-left:8px;padding-right:8px;text-align:left}.components-duotone-picker__color-indicator:before{background:#0000}.components-duotone-picker__color-indicator>.components-button,.components-duotone-picker__color-indicator>.components-button.is-pressed:hover:not(:disabled){background:linear-gradient(-45deg,#0000 48%,#ddd 0,#ddd 52%,#0000 0);color:#0000}.components-duotone-picker__color-indicator>.components-button:hover:not(:disabled):not([aria-disabled=true]),.components-duotone-picker__color-indicator>.components-button:not([aria-disabled=true]):active{color:#0000}.components-color-list-picker,.components-color-list-picker__swatch-button{width:100%}.components-color-list-picker__color-picker{margin:8px 0}.components-color-list-picker__swatch-color{margin:2px}.components-external-link{text-decoration:none}.components-external-link__contents{text-decoration:underline}.components-external-link__icon{font-weight:400;margin-left:.5ch}.components-form-toggle{display:inline-block;height:16px;position:relative}.components-form-toggle .components-form-toggle__track{background-color:#fff;border:1px solid #949494;border-radius:8px;box-sizing:border-box;content:"";display:inline-block;height:16px;overflow:hidden;position:relative;vertical-align:top;width:32px}@media not (prefers-reduced-motion){.components-form-toggle .components-form-toggle__track{transition:background-color .2s ease,border-color .2s ease}}.components-form-toggle .components-form-toggle__track:after{border-top:16px solid #0000;box-sizing:border-box;content:"";inset:0;opacity:0;position:absolute}@media not (prefers-reduced-motion){.components-form-toggle .components-form-toggle__track:after{transition:opacity .2s ease}}.components-form-toggle .components-form-toggle__thumb{background-color:#1e1e1e;border:6px solid #0000;border-radius:50%;box-shadow:0 1px 1px #00000008,0 1px 2px #00000005,0 3px 3px #00000005,0 4px 4px #00000003;box-sizing:border-box;display:block;height:12px;left:2px;position:absolute;top:2px;width:12px}@media not (prefers-reduced-motion){.components-form-toggle .components-form-toggle__thumb{transition:transform .2s ease,background-color .2s ease-out}}.components-form-toggle.is-checked .components-form-toggle__track{background-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-form-toggle.is-checked .components-form-toggle__track:after{opacity:1}.components-form-toggle .components-form-toggle__input:focus+.components-form-toggle__track{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000;outline-offset:2px}.components-form-toggle.is-checked .components-form-toggle__thumb{background-color:#fff;border-width:0;transform:translateX(16px)}.components-disabled .components-form-toggle,.components-form-toggle.is-disabled{opacity:.3}.components-form-toggle input.components-form-toggle__input[type=checkbox]{border:none;height:100%;left:0;margin:0;opacity:0;padding:0;position:absolute;top:0;width:100%;z-index:1}.components-form-toggle input.components-form-toggle__input[type=checkbox]:checked{background:none}.components-form-toggle input.components-form-toggle__input[type=checkbox]:before{content:""}.components-form-toggle input.components-form-toggle__input[type=checkbox]:not(:disabled,[aria-disabled=true]){cursor:pointer}.components-form-token-field__input-container{border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;cursor:text;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;padding:0;width:100%}@media not (prefers-reduced-motion){.components-form-token-field__input-container{transition:box-shadow .1s linear}}@media (min-width:600px){.components-form-token-field__input-container{font-size:13px;line-height:normal}}.components-form-token-field__input-container:focus{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-form-token-field__input-container::-webkit-input-placeholder{color:#1e1e1e9e}.components-form-token-field__input-container::-moz-placeholder{color:#1e1e1e9e}.components-form-token-field__input-container:-ms-input-placeholder{color:#1e1e1e9e}.components-form-token-field__input-container.is-disabled{background:#ddd;border-color:#ddd}.components-form-token-field__input-container.is-active{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-form-token-field__input-container input[type=text].components-form-token-field__input{background:inherit;border:0;box-shadow:none;color:var(--wp-components-color-foreground,#1e1e1e);display:inline-block;flex:1;font-family:inherit;font-size:16px;margin-left:4px;max-width:100%;min-height:24px;min-width:50px;padding:0;width:100%}@media (min-width:600px){.components-form-token-field__input-container input[type=text].components-form-token-field__input{font-size:13px}}.components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input,.components-form-token-field__input-container input[type=text].components-form-token-field__input:focus{box-shadow:none;outline:none}.components-form-token-field__input-container .components-form-token-field__token+input[type=text].components-form-token-field__input{width:auto}.components-form-token-field__token{color:#1e1e1e;display:flex;font-size:13px;max-width:100%}.components-form-token-field__token.is-success .components-form-token-field__remove-token,.components-form-token-field__token.is-success .components-form-token-field__token-text{background:#4ab866}.components-form-token-field__token.is-error .components-form-token-field__remove-token,.components-form-token-field__token.is-error .components-form-token-field__token-text{background:#cc1818}.components-form-token-field__token.is-validating .components-form-token-field__remove-token,.components-form-token-field__token.is-validating .components-form-token-field__token-text{color:#757575}.components-form-token-field__token.is-borderless{padding:0 24px 0 0;position:relative}.components-form-token-field__token.is-borderless .components-form-token-field__token-text{background:#0000}.components-form-token-field__token.is-borderless:not(.is-disabled) .components-form-token-field__token-text{color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-form-token-field__token.is-borderless .components-form-token-field__remove-token{background:#0000;color:#757575;position:absolute;right:0;top:1px}.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text{color:#4ab866}.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text{color:#cc1818;padding:0 4px 0 6px}.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text{color:#1e1e1e}.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{background:#ddd;display:inline-block;height:auto;min-width:unset}@media not (prefers-reduced-motion){.components-form-token-field__remove-token.components-button,.components-form-token-field__token-text{transition:all .2s cubic-bezier(.4,1,.4,1)}}.components-form-token-field__token-text{border-radius:1px 0 0 1px;line-height:24px;overflow:hidden;padding:0 0 0 8px;text-overflow:ellipsis;white-space:nowrap}.components-form-token-field__remove-token.components-button{border-radius:0 1px 1px 0;color:#1e1e1e;line-height:10px;overflow:initial}.components-form-token-field__remove-token.components-button:hover:not(:disabled){color:#1e1e1e}.components-form-token-field__suggestions-list{box-shadow:inset 0 1px 0 0 #949494;flex:1 0 100%;list-style:none;margin:0;max-height:128px;min-width:100%;overflow-y:auto;padding:0}@media not (prefers-reduced-motion){.components-form-token-field__suggestions-list{transition:all .15s ease-in-out}}.components-form-token-field__suggestion{box-sizing:border-box;color:var(--wp-components-color-foreground,#1e1e1e);display:block;font-size:13px;margin:0;min-height:32px;padding:8px 12px}.components-form-token-field__suggestion.is-selected{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:var(--wp-components-color-foreground-inverted,#fff)}.components-form-token-field__suggestion[aria-disabled=true]{color:#949494;pointer-events:none}.components-form-token-field__suggestion[aria-disabled=true].is-selected{background:color-mix(in srgb,var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)) 4%,#0000)}.components-form-token-field__suggestion:not(.is-empty){cursor:pointer}@media (min-width:600px){.components-guide{width:600px}}.components-guide .components-modal__content{margin-top:0;padding:0}.components-guide .components-modal__content:before{content:none}.components-guide .components-modal__header{border-bottom:none;height:64px;padding:0;position:sticky}.components-guide .components-modal__header .components-button{align-self:flex-start;margin:8px 8px 0 0;position:static}.components-guide .components-modal__header .components-button:hover svg{fill:#fff}.components-guide .components-guide__container{display:flex;flex-direction:column;justify-content:space-between;margin-top:-64px;min-height:100%}.components-guide .components-guide__page{display:flex;flex-direction:column;justify-content:center;position:relative}@media (min-width:600px){.components-guide .components-guide__page{min-height:300px}}.components-guide .components-guide__footer{align-content:center;display:flex;height:36px;justify-content:center;margin:0 0 24px;padding:0 32px;position:relative;width:100%}.components-guide .components-guide__page-control{margin:0;text-align:center}.components-guide .components-guide__page-control li{display:inline-block;margin:0}.components-guide .components-guide__page-control .components-button{color:#e0e0e0;margin:-6px 0}.components-guide .components-guide__page-control li[aria-current=step] .components-button{color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-modal__frame.components-guide{border:none;max-height:575px;min-width:312px}@media (max-width:600px){.components-modal__frame.components-guide{margin:auto;max-width:calc(100vw - 32px)}}.components-button.components-guide__back-button,.components-button.components-guide__finish-button,.components-button.components-guide__forward-button{position:absolute}.components-button.components-guide__back-button{left:32px}.components-button.components-guide__finish-button,.components-button.components-guide__forward-button{right:32px}[role=region]{position:relative}.is-focusing-regions [role=region]:focus:after,[role=region].interface-interface-skeleton__content:focus-visible:after{bottom:0;content:"";left:0;pointer-events:none;position:absolute;right:0;top:0;z-index:1000000}.is-focusing-regions .editor-post-publish-panel,.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-entities-saved-states-panel,.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-publish-panel,.is-focusing-regions .interface-interface-skeleton__sidebar .editor-layout__toggle-sidebar-panel,.is-focusing-regions [role=region]:focus:after,.is-focusing-regions.is-distraction-free .interface-interface-skeleton__header .edit-post-header,[role=region].interface-interface-skeleton__content:focus-visible:after{outline-color:var(--wp-admin-theme-color);outline-offset:calc(((-1*var(--wp-admin-border-width-focus))/var(--wp-block-editor-iframe-zoom-out-scale, 1))*2);outline-style:solid;outline-width:calc((var(--wp-admin-border-width-focus)/var(--wp-block-editor-iframe-zoom-out-scale, 1))*2)}.components-menu-group+.components-menu-group{border-top:1px solid #1e1e1e;padding-top:8px}.components-menu-group+.components-menu-group.has-hidden-separator{border-top:none;margin-top:0;padding-top:0}.components-menu-group:has(>div:empty){display:none}.components-menu-group__label{color:#757575;font-size:11px;font-weight:500;margin-bottom:12px;margin-top:4px;padding:0 8px;text-transform:uppercase;white-space:nowrap}.components-menu-item__button,.components-menu-item__button.components-button{width:100%}.components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,.components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child{box-sizing:initial;padding-right:48px}.components-menu-item__button .components-menu-items__item-icon,.components-menu-item__button.components-button .components-menu-items__item-icon{display:inline-block;flex:0 0 auto}.components-menu-item__button .components-menu-items__item-icon.has-icon-right,.components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right{margin-left:24px;margin-right:-2px}.components-menu-item__button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right,.components-menu-item__button.components-button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right{margin-left:8px}.components-menu-item__button .block-editor-block-icon,.components-menu-item__button.components-button .block-editor-block-icon{margin-left:-2px;margin-right:8px}.components-menu-item__button.components-button.is-primary,.components-menu-item__button.is-primary{justify-content:center}.components-menu-item__button.components-button.is-primary .components-menu-item__item,.components-menu-item__button.is-primary .components-menu-item__item{margin-right:0}.components-menu-item__button.components-button:disabled.is-tertiary,.components-menu-item__button.components-button[aria-disabled=true].is-tertiary,.components-menu-item__button:disabled.is-tertiary,.components-menu-item__button[aria-disabled=true].is-tertiary{background:none;color:var(--wp-components-color-accent-darker-10,var(--wp-admin-theme-color-darker-10,#2145e6));opacity:.3}.components-menu-item__info-wrapper{display:flex;flex-direction:column;margin-right:auto}.components-menu-item__info{color:#757575;font-size:12px;margin-top:4px;white-space:normal}.components-menu-item__item{align-items:center;display:inline-flex;margin-right:auto;min-width:160px;white-space:nowrap}.components-menu-item__shortcut{align-self:center;color:currentColor;display:none;margin-left:auto;margin-right:0;padding-left:24px}@media (min-width:480px){.components-menu-item__shortcut{display:inline}}.components-menu-items-choice,.components-menu-items-choice.components-button{height:auto;min-height:40px}.components-menu-items-choice svg,.components-menu-items-choice.components-button svg{margin-right:12px}.components-menu-items-choice.components-button.has-icon,.components-menu-items-choice.has-icon{padding-left:12px}.components-modal__screen-overlay{background-color:#00000059;bottom:0;display:flex;left:0;position:fixed;right:0;top:0;z-index:100000}@keyframes __wp-base-styles-fade-in{0%{opacity:0}to{opacity:1}}@media not (prefers-reduced-motion){.components-modal__screen-overlay{animation:__wp-base-styles-fade-in .08s linear 0s;animation-fill-mode:forwards}}@keyframes __wp-base-styles-fade-out{0%{opacity:1}to{opacity:0}}@media not (prefers-reduced-motion){.components-modal__screen-overlay.is-animating-out{animation:__wp-base-styles-fade-out .08s linear 80ms;animation-fill-mode:forwards}}.components-modal__frame{animation-fill-mode:forwards;animation-name:components-modal__appear-animation;animation-timing-function:cubic-bezier(.29,0,0,1);background:#fff;border-radius:8px 8px 0 0;box-shadow:0 5px 15px #00000014,0 15px 27px #00000012,0 30px 36px #0000000a,0 50px 43px #00000005;box-sizing:border-box;display:flex;margin:40px 0 0;overflow:hidden;width:100%}.components-modal__frame *,.components-modal__frame :after,.components-modal__frame :before{box-sizing:inherit}@media not (prefers-reduced-motion){.components-modal__frame{animation-duration:var(--modal-frame-animation-duration)}}.components-modal__screen-overlay.is-animating-out .components-modal__frame{animation-name:components-modal__disappear-animation;animation-timing-function:cubic-bezier(1,0,.2,1)}@media (min-width:600px){.components-modal__frame{border-radius:8px;margin:auto;max-height:calc(100% - 128px);max-width:calc(100% - 32px);min-width:350px;width:auto}}@media (min-width:600px) and (min-width:600px){.components-modal__frame.is-full-screen{height:calc(100% - 32px);max-height:none;width:calc(100% - 32px)}}@media (min-width:600px) and (min-width:782px){.components-modal__frame.is-full-screen{height:calc(100% - 80px);max-width:none;width:calc(100% - 80px)}}@media (min-width:600px){.components-modal__frame.has-size-large,.components-modal__frame.has-size-medium,.components-modal__frame.has-size-small{width:100%}.components-modal__frame.has-size-small{max-width:384px}.components-modal__frame.has-size-medium{max-width:512px}.components-modal__frame.has-size-large{max-width:840px}}@media (min-width:960px){.components-modal__frame{max-height:70%}}@keyframes components-modal__appear-animation{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}@keyframes components-modal__disappear-animation{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.9)}}.components-modal__header{align-items:center;border-bottom:1px solid #0000;box-sizing:border-box;display:flex;flex-direction:row;height:72px;justify-content:space-between;left:0;padding:24px 32px 8px;position:absolute;top:0;width:100%;z-index:10}.components-modal__header .components-modal__header-heading{font-size:1.2rem;font-weight:600}.components-modal__header h1{line-height:1;margin:0}.components-modal__content.has-scrolled-content:not(.hide-header) .components-modal__header{border-bottom-color:#ddd}.components-modal__header+p{margin-top:0}.components-modal__header-heading-container{align-items:center;display:flex;flex-direction:row;flex-grow:1;justify-content:left}.components-modal__header-icon-container{display:inline-block}.components-modal__header-icon-container svg{max-height:36px;max-width:36px;padding:8px}.components-modal__content{flex:1;margin-top:72px;overflow:auto;padding:4px 32px 32px}.components-modal__content.hide-header{margin-top:0;padding-top:32px}.components-modal__content.is-scrollable:focus-visible{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000;outline-offset:-2px}.components-notice{align-items:center;background-color:#fff;border-left:4px solid var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));color:#1e1e1e;display:flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;padding:8px 12px}.components-notice.is-dismissible{position:relative}.components-notice.is-success{background-color:#eff9f1;border-left-color:#4ab866}.components-notice.is-warning{background-color:#fef8ee;border-left-color:#f0b849}.components-notice.is-error{background-color:#f4a2a2;border-left-color:#cc1818}.components-notice__content{flex-grow:1;margin:4px 25px 4px 0}.components-notice__actions{display:flex;flex-wrap:wrap}.components-notice__action.components-button{margin-right:8px}.components-notice__action.components-button,.components-notice__action.components-button.is-link{margin-left:12px}.components-notice__action.components-button.is-secondary{vertical-align:initial}.components-notice__dismiss{align-self:flex-start;color:#757575;flex-shrink:0}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):focus,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):active,.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{background-color:initial;color:#1e1e1e}.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover{box-shadow:none}.components-notice-list{box-sizing:border-box;max-width:100vw}.components-notice-list .components-notice__content{line-height:2;margin-bottom:12px;margin-top:12px}.components-notice-list .components-notice__action.components-button{display:block;margin-left:0;margin-top:8px}.components-panel{background:#fff;border:1px solid #e0e0e0}.components-panel>.components-panel__body:first-child,.components-panel>.components-panel__header:first-child{margin-top:-1px}.components-panel>.components-panel__body:last-child,.components-panel>.components-panel__header:last-child{border-bottom-width:0}.components-panel+.components-panel{margin-top:-1px}.components-panel__body{border-bottom:1px solid #e0e0e0;border-top:1px solid #e0e0e0}.components-panel__body h3{margin:0 0 .5em}.components-panel__body.is-opened{padding:16px}.components-panel__header{align-items:center;border-bottom:1px solid #ddd;box-sizing:initial;display:flex;flex-shrink:0;height:47px;justify-content:space-between;padding:0 16px}.components-panel__header h2{color:inherit;font-size:inherit;margin:0}.components-panel__body+.components-panel__body,.components-panel__body+.components-panel__header,.components-panel__header+.components-panel__body,.components-panel__header+.components-panel__header{margin-top:-1px}.components-panel__body>.components-panel__body-title{display:block;font-size:inherit;margin-bottom:0;margin-top:0;padding:0}@media not (prefers-reduced-motion){.components-panel__body>.components-panel__body-title{transition:background .1s ease-in-out}}.components-panel__body.is-opened>.components-panel__body-title{margin:-16px -16px 5px}.components-panel__body>.components-panel__body-title:hover{background:#f0f0f0;border:none}.components-panel__body-toggle.components-button{border:none;box-shadow:none;color:#1e1e1e;font-weight:500;height:auto;outline:none;padding:16px 48px 16px 16px;position:relative;text-align:left;width:100%}@media not (prefers-reduced-motion){.components-panel__body-toggle.components-button{transition:background .1s ease-in-out}}.components-panel__body-toggle.components-button:focus{border-radius:0;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-panel__body-toggle.components-button .components-panel__arrow{fill:currentColor;color:#1e1e1e;position:absolute;right:16px;top:50%;transform:translateY(-50%)}@media not (prefers-reduced-motion){.components-panel__body-toggle.components-button .components-panel__arrow{transition:color .1s ease-in-out}}body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right{-ms-filter:fliph;filter:FlipH;margin-top:-10px;transform:scaleX(-1)}.components-panel__icon{color:#757575;margin:-2px 0 -2px 6px}.components-panel__body-toggle-icon{margin-right:-5px}.components-panel__color-title{float:left;height:19px}.components-panel__row{align-items:center;display:flex;justify-content:space-between;margin-top:8px;min-height:36px}.components-panel__row select{min-width:0}.components-panel__row label{flex-shrink:0;margin-right:12px;max-width:75%}.components-panel__row:empty,.components-panel__row:first-of-type{margin-top:0}.components-panel .circle-picker{padding-bottom:20px}.components-placeholder.components-placeholder{-moz-font-smoothing:subpixel-antialiased;-webkit-font-smoothing:subpixel-antialiased;align-items:flex-start;background-color:#fff;border-radius:2px;box-shadow:inset 0 0 0 1px #1e1e1e;box-sizing:border-box;color:#1e1e1e;display:flex;flex-direction:column;font-size:13px;gap:16px;margin:0;outline:1px solid #0000;padding:24px;position:relative;text-align:left;width:100%}.components-placeholder__error,.components-placeholder__fieldset,.components-placeholder__instructions,.components-placeholder__label{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:400;letter-spacing:normal;line-height:normal;text-transform:none}.components-placeholder__label{align-items:center;display:flex;font-weight:600}.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{fill:currentColor;margin-right:4px}@media (forced-colors:active){.components-placeholder__label .block-editor-block-icon,.components-placeholder__label .dashicon,.components-placeholder__label>svg{fill:CanvasText}}.components-placeholder__label:empty{display:none}.components-placeholder__fieldset,.components-placeholder__fieldset form{display:flex;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:flex-start;width:100%}.components-placeholder__fieldset form p,.components-placeholder__fieldset p{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.components-placeholder__fieldset.is-column-layout,.components-placeholder__fieldset.is-column-layout form{flex-direction:column}.components-placeholder__input[type=url]{border:1px solid #949494;border-radius:2px;box-shadow:0 0 0 #0000;flex:1 1 auto;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;line-height:normal;padding:6px 8px}@media not (prefers-reduced-motion){.components-placeholder__input[type=url]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-placeholder__input[type=url]{font-size:13px;line-height:normal}}.components-placeholder__input[type=url]:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid #0000}.components-placeholder__input[type=url]::-webkit-input-placeholder{color:#1e1e1e9e}.components-placeholder__input[type=url]::-moz-placeholder{color:#1e1e1e9e}.components-placeholder__input[type=url]:-ms-input-placeholder{color:#1e1e1e9e}.components-placeholder__error{gap:8px;width:100%}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link{margin-left:10px;margin-right:10px}.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link:last-child{margin-right:0}.components-placeholder.is-medium .components-placeholder__instructions,.components-placeholder.is-small .components-placeholder__instructions{display:none}.components-placeholder.is-medium .components-placeholder__fieldset,.components-placeholder.is-medium .components-placeholder__fieldset form,.components-placeholder.is-small .components-placeholder__fieldset,.components-placeholder.is-small .components-placeholder__fieldset form{flex-direction:column}.components-placeholder.is-medium .components-button,.components-placeholder.is-medium .components-placeholder__fieldset>*,.components-placeholder.is-small .components-button,.components-placeholder.is-small .components-placeholder__fieldset>*{justify-content:center;width:100%}.components-placeholder.is-small{padding:16px}.components-placeholder.has-illustration{backdrop-filter:blur(100px);backface-visibility:hidden;background-color:initial;border-radius:0;box-shadow:none;color:inherit;display:flex;overflow:hidden}.is-dark-theme .components-placeholder.has-illustration{background-color:#0000001a}.components-placeholder.has-illustration .components-placeholder__fieldset{margin-left:0;margin-right:0}.components-placeholder.has-illustration .components-button,.components-placeholder.has-illustration .components-placeholder__instructions,.components-placeholder.has-illustration .components-placeholder__label{opacity:0;pointer-events:none}@media not (prefers-reduced-motion){.components-placeholder.has-illustration .components-button,.components-placeholder.has-illustration .components-placeholder__instructions,.components-placeholder.has-illustration .components-placeholder__label{transition:opacity .1s linear}}.is-selected>.components-placeholder.has-illustration .components-button,.is-selected>.components-placeholder.has-illustration .components-placeholder__instructions,.is-selected>.components-placeholder.has-illustration .components-placeholder__label{opacity:1;pointer-events:auto}.components-placeholder.has-illustration:before{background:currentColor;bottom:0;content:"";left:0;opacity:.1;pointer-events:none;position:absolute;right:0;top:0}.is-selected .components-placeholder.has-illustration{overflow:auto}.components-placeholder__preview{display:flex;justify-content:center}.components-placeholder__illustration{stroke:currentColor;box-sizing:initial;height:100%;left:50%;opacity:.25;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.components-popover{box-sizing:border-box;will-change:transform;z-index:1000000}.components-popover *,.components-popover :after,.components-popover :before{box-sizing:inherit}.components-popover.is-expanded{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1000000!important}.components-popover__content{background:#fff;border-radius:4px;box-shadow:0 0 0 1px #ccc,0 2px 3px #0000000d,0 4px 5px #0000000a,0 12px 12px #00000008,0 16px 16px #00000005;box-sizing:border-box;width:min-content}.is-alternate .components-popover__content{border-radius:2px;box-shadow:0 0 0 1px #1e1e1e}.is-unstyled .components-popover__content{background:none;border-radius:0;box-shadow:none}.components-popover.is-expanded .components-popover__content{box-shadow:0 -1px 0 0 #ccc;height:calc(100% - 48px);overflow-y:visible;position:static;width:auto}.components-popover.is-expanded.is-alternate .components-popover__content{box-shadow:0 -1px 0 #1e1e1e}.components-popover__header{align-items:center;background:#fff;display:flex;height:48px;justify-content:space-between;padding:0 8px 0 16px}.components-popover__header-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.components-popover__close.components-button{z-index:5}.components-popover__arrow{display:flex;height:14px;pointer-events:none;position:absolute;width:14px}.components-popover__arrow:before{background-color:#fff;content:"";height:2px;left:1px;position:absolute;right:1px;top:-1px}.components-popover__arrow.is-top{bottom:-14px!important;transform:rotate(0)}.components-popover__arrow.is-right{left:-14px!important;transform:rotate(90deg)}.components-popover__arrow.is-bottom{top:-14px!important;transform:rotate(180deg)}.components-popover__arrow.is-left{right:-14px!important;transform:rotate(-90deg)}.components-popover__triangle{display:block;flex:1}.components-popover__triangle-bg{fill:#fff}.components-popover__triangle-border{fill:#0000;stroke-width:1px;stroke:#ccc}.is-alternate .components-popover__triangle-border{stroke:#1e1e1e}.components-radio-control{border:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;margin:0;padding:0}.components-radio-control__group-wrapper.has-help{margin-block-end:12px}.components-radio-control__option{align-items:center;column-gap:8px;display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto minmax(0,max-content)}.components-radio-control__input[type=radio]{appearance:none;border:1px solid #1e1e1e;border-radius:50%;cursor:pointer;display:inline-flex;grid-column:1;grid-row:1;height:24px;margin:0;max-width:24px;min-width:24px;padding:0;position:relative;transition:none;width:24px}@media not (prefers-reduced-motion){.components-radio-control__input[type=radio]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-radio-control__input[type=radio]{height:16px;max-width:16px;min-width:16px;width:16px}}.components-radio-control__input[type=radio]:checked:before{background-color:#fff;border:4px solid #fff;box-sizing:inherit;height:12px;left:50%;margin:0;position:absolute;top:50%;transform:translate(-50%,-50%);width:12px}@media (min-width:600px){.components-radio-control__input[type=radio]:checked:before{height:8px;width:8px}}.components-radio-control__input[type=radio]:focus{box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color)}.components-radio-control__input[type=radio]:checked{background:var(--wp-admin-theme-color);border:none}.components-radio-control__input[type=radio]:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) #fff,0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);outline:2px solid #0000;outline-offset:2px}.components-radio-control__input[type=radio]:checked{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-radio-control__input[type=radio]:checked:before{border-radius:50%;content:""}.components-radio-control__label{cursor:pointer;grid-column:2;grid-row:1;line-height:24px}@media (min-width:600px){.components-radio-control__label{line-height:16px}}.components-radio-control__option-description{grid-column:2;grid-row:2;padding-block-start:4px}.components-radio-control__option-description.components-radio-control__option-description{margin-top:0}.components-resizable-box__handle{display:none;height:23px;width:23px;z-index:2}.components-resizable-box__container.has-show-handle .components-resizable-box__handle{display:block}.components-resizable-box__handle>div{height:100%;outline:none;position:relative;width:100%;z-index:2}.components-resizable-box__container>img{width:inherit}.components-resizable-box__handle:after{background:#fff;border-radius:50%;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9)),0 1px 1px #00000008,0 1px 2px #00000005,0 3px 3px #00000005,0 4px 4px #00000003;content:"";cursor:inherit;display:block;height:15px;outline:2px solid #0000;position:absolute;right:calc(50% - 8px);top:calc(50% - 8px);width:15px}.components-resizable-box__side-handle:before{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-radius:9999px;content:"";cursor:inherit;display:block;height:3px;opacity:0;position:absolute;right:calc(50% - 1px);top:calc(50% - 1px);width:3px}@media not (prefers-reduced-motion){.components-resizable-box__side-handle:before{transition:transform .1s ease-in;will-change:transform}}.components-resizable-box__corner-handle,.components-resizable-box__side-handle{z-index:2}.components-resizable-box__side-handle.components-resizable-box__handle-bottom,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:before,.components-resizable-box__side-handle.components-resizable-box__handle-top,.components-resizable-box__side-handle.components-resizable-box__handle-top:before{border-left:0;border-right:0;left:0;width:100%}.components-resizable-box__side-handle.components-resizable-box__handle-left,.components-resizable-box__side-handle.components-resizable-box__handle-left:before,.components-resizable-box__side-handle.components-resizable-box__handle-right,.components-resizable-box__side-handle.components-resizable-box__handle-right:before{border-bottom:0;border-top:0;height:100%;top:0}@media not (prefers-reduced-motion){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:components-resizable-box__top-bottom-animation .1s ease-out 0s;animation-fill-mode:forwards}.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before{animation:components-resizable-box__left-right-animation .1s ease-out 0s;animation-fill-mode:forwards}}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,.components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before{animation:none}}}@keyframes components-resizable-box__top-bottom-animation{0%{opacity:0;transform:scaleX(0)}to{opacity:1;transform:scaleX(1)}}@keyframes components-resizable-box__left-right-animation{0%{opacity:0;transform:scaleY(0)}to{opacity:1;transform:scaleY(1)}}.components-resizable-box__handle-right{right:-11.5px}.components-resizable-box__handle-left{left:-11.5px}.components-resizable-box__handle-top{top:-11.5px}.components-resizable-box__handle-bottom{bottom:-11.5px}.components-responsive-wrapper{align-items:center;display:flex;justify-content:center;max-width:100%;position:relative}.components-responsive-wrapper__content{display:block;max-width:100%;width:100%}.components-sandbox{overflow:hidden}iframe.components-sandbox{width:100%}body.lockscroll,html.lockscroll{overflow:hidden}.components-select-control__input{-webkit-tap-highlight-color:rgba(0,0,0,0)!important;outline:0}.components-snackbar{backdrop-filter:blur(16px) saturate(180%);background:#000000d9;border-radius:4px;box-shadow:0 1px 2px #0000000d,0 2px 3px #0000000a,0 6px 6px #00000008,0 8px 8px #00000005;box-sizing:border-box;color:#fff;cursor:pointer;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;max-width:600px;padding:12px 20px;pointer-events:auto;width:100%}@media (min-width:600px){.components-snackbar{width:fit-content}}.components-snackbar:focus{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9))}.components-snackbar.components-snackbar-explicit-dismiss{cursor:default}.components-snackbar .components-snackbar__content-with-icon{padding-left:24px;position:relative}.components-snackbar .components-snackbar__icon{left:-8px;position:absolute;top:-2.9px}.components-snackbar .components-snackbar__dismiss-button{cursor:pointer;margin-left:24px}.components-snackbar__action.components-button,.components-snackbar__action.components-external-link{color:#fff;flex-shrink:0;margin-left:32px}.components-snackbar__action.components-button:focus,.components-snackbar__action.components-external-link:focus{box-shadow:none;outline:1px dotted #fff}.components-snackbar__action.components-button:hover,.components-snackbar__action.components-external-link:hover{color:currentColor;text-decoration:none}.components-snackbar__content{align-items:baseline;display:flex;justify-content:space-between;line-height:1.4}.components-snackbar-list{box-sizing:border-box;pointer-events:none;position:absolute;width:100%;z-index:100000}.components-snackbar-list__notice-container{padding-top:8px;position:relative}.components-tab-panel__tabs{align-items:stretch;display:flex;flex-direction:row}.components-tab-panel__tabs[aria-orientation=vertical]{flex-direction:column}.components-tab-panel__tabs-item{background:#0000;border:none;border-radius:0;box-shadow:none;cursor:pointer;font-weight:500;height:48px!important;margin-left:0;padding:3px 16px;position:relative}.components-tab-panel__tabs-item:focus:not(:disabled){box-shadow:none;outline:none;position:relative}.components-tab-panel__tabs-item:after{background:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));border-radius:0;bottom:0;content:"";height:calc(var(--wp-admin-border-width-focus)*0);left:0;pointer-events:none;position:absolute;right:0}@media not (prefers-reduced-motion){.components-tab-panel__tabs-item:after{transition:all .1s linear}}.components-tab-panel__tabs-item.is-active:after{height:calc(var(--wp-admin-border-width-focus)*1);outline:2px solid #0000;outline-offset:-1px}.components-tab-panel__tabs-item:before{border-radius:2px;bottom:12px;box-shadow:0 0 0 0 #0000;content:"";left:12px;pointer-events:none;position:absolute;right:12px;top:12px}@media not (prefers-reduced-motion){.components-tab-panel__tabs-item:before{transition:all .1s linear}}.components-tab-panel__tabs-item:focus-visible:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-tab-panel__tab-content:focus{box-shadow:none;outline:none}.components-tab-panel__tab-content:focus-visible{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000;outline-offset:0}.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{background:var(--wp-components-color-background,#fff);border:1px solid #949494;border-color:var(--wp-components-color-gray-600,#949494);border-radius:2px;box-shadow:0 0 0 #0000;color:var(--wp-components-color-foreground,#1e1e1e);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:16px;height:32px;line-height:normal;margin:0;padding:6px 8px;width:100%}@media not (prefers-reduced-motion){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{transition:box-shadow .1s linear}}@media (min-width:600px){.components-text-control__input,.components-text-control__input[type=color],.components-text-control__input[type=date],.components-text-control__input[type=datetime-local],.components-text-control__input[type=datetime],.components-text-control__input[type=email],.components-text-control__input[type=month],.components-text-control__input[type=number],.components-text-control__input[type=password],.components-text-control__input[type=tel],.components-text-control__input[type=text],.components-text-control__input[type=time],.components-text-control__input[type=url],.components-text-control__input[type=week]{font-size:13px;line-height:normal}}.components-text-control__input:focus,.components-text-control__input[type=color]:focus,.components-text-control__input[type=date]:focus,.components-text-control__input[type=datetime-local]:focus,.components-text-control__input[type=datetime]:focus,.components-text-control__input[type=email]:focus,.components-text-control__input[type=month]:focus,.components-text-control__input[type=number]:focus,.components-text-control__input[type=password]:focus,.components-text-control__input[type=tel]:focus,.components-text-control__input[type=text]:focus,.components-text-control__input[type=time]:focus,.components-text-control__input[type=url]:focus,.components-text-control__input[type=week]:focus{border-color:var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));box-shadow:0 0 0 .5px var(--wp-components-color-accent,var(--wp-admin-theme-color,#3858e9));outline:2px solid #0000}.components-text-control__input::placeholder,.components-text-control__input[type=color]::placeholder,.components-text-control__input[type=date]::placeholder,.components-text-control__input[type=datetime-local]::placeholder,.components-text-control__input[type=datetime]::placeholder,.components-text-control__input[type=email]::placeholder,.components-text-control__input[type=month]::placeholder,.components-text-control__input[type=number]::placeholder,.components-text-control__input[type=password]::placeholder,.components-text-control__input[type=tel]::placeholder,.components-text-control__input[type=text]::placeholder,.components-text-control__input[type=time]::placeholder,.components-text-control__input[type=url]::placeholder,.components-text-control__input[type=week]::placeholder{color:color-mix(in srgb,var(--wp-components-color-foreground,#1e1e1e),#0000 38%)}.components-text-control__input.is-next-40px-default-size,.components-text-control__input[type=color].is-next-40px-default-size,.components-text-control__input[type=date].is-next-40px-default-size,.components-text-control__input[type=datetime-local].is-next-40px-default-size,.components-text-control__input[type=datetime].is-next-40px-default-size,.components-text-control__input[type=email].is-next-40px-default-size,.components-text-control__input[type=month].is-next-40px-default-size,.components-text-control__input[type=number].is-next-40px-default-size,.components-text-control__input[type=password].is-next-40px-default-size,.components-text-control__input[type=tel].is-next-40px-default-size,.components-text-control__input[type=text].is-next-40px-default-size,.components-text-control__input[type=time].is-next-40px-default-size,.components-text-control__input[type=url].is-next-40px-default-size,.components-text-control__input[type=week].is-next-40px-default-size{height:40px;padding-left:12px;padding-right:12px}.components-text-control__input[type=email],.components-text-control__input[type=url]{direction:ltr}.components-tip{color:#757575;display:flex}.components-tip svg{fill:#f0b849;align-self:center;flex-shrink:0;margin-right:16px}.components-tip p{margin:0}.components-toggle-control__label{line-height:16px}.components-toggle-control__label:not(.is-disabled){cursor:pointer}.components-toggle-control__help{display:inline-block;margin-inline-start:40px}.components-accessible-toolbar{border:1px solid var(--wp-components-color-foreground,#1e1e1e);border-radius:2px;display:inline-flex;flex-shrink:0}.components-accessible-toolbar>.components-toolbar-group:last-child{border-right:none}.components-accessible-toolbar.is-unstyled{border:none}.components-accessible-toolbar.is-unstyled>.components-toolbar-group{border-right:none}.components-accessible-toolbar[aria-orientation=vertical],.components-toolbar[aria-orientation=vertical]{align-items:center;display:flex;flex-direction:column}.components-accessible-toolbar .components-button,.components-toolbar .components-button{height:48px;padding-left:16px;padding-right:16px;position:relative;z-index:1}.components-accessible-toolbar .components-button:focus:not(:disabled),.components-toolbar .components-button:focus:not(:disabled){box-shadow:none;outline:none}.components-accessible-toolbar .components-button:before,.components-toolbar .components-button:before{border-radius:2px;content:"";display:block;height:32px;left:8px;position:absolute;right:8px;z-index:-1}@media not (prefers-reduced-motion){.components-accessible-toolbar .components-button:before,.components-toolbar .components-button:before{animation:components-button__appear-animation .1s ease;animation-fill-mode:forwards}}.components-accessible-toolbar .components-button svg,.components-toolbar .components-button svg{margin-left:auto;margin-right:auto;position:relative}.components-accessible-toolbar .components-button.is-pressed,.components-accessible-toolbar .components-button.is-pressed:hover,.components-toolbar .components-button.is-pressed,.components-toolbar .components-button.is-pressed:hover{background:#0000}.components-accessible-toolbar .components-button.is-pressed:before,.components-toolbar .components-button.is-pressed:before{background:var(--wp-components-color-foreground,#1e1e1e)}.components-accessible-toolbar .components-button:focus:before,.components-toolbar .components-button:focus:before{box-shadow:inset 0 0 0 1px #fff,0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid #0000}.components-accessible-toolbar .components-button.has-icon.has-icon,.components-toolbar .components-button.has-icon.has-icon{min-width:48px;padding-left:8px;padding-right:8px}@keyframes components-button__appear-animation{0%{transform:scaleY(0)}to{transform:scaleY(1)}}.components-toolbar__control.components-button{position:relative}.components-toolbar__control.components-button[data-subscript] svg{padding:5px 10px 5px 0}.components-toolbar__control.components-button[data-subscript]:after{bottom:10px;content:attr(data-subscript);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-weight:600;line-height:12px;position:absolute;right:8px}.components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]:after{color:#fff}.components-toolbar-group{background-color:var(--wp-components-color-background,#fff);border-right:1px solid var(--wp-components-color-foreground,#1e1e1e);display:inline-flex;flex-shrink:0;flex-wrap:wrap;line-height:0;min-height:48px;padding-left:6px;padding-right:6px}.components-toolbar-group .components-toolbar-group.components-toolbar-group{border-width:0;margin:0}.components-toolbar-group .components-button.components-button,.components-toolbar-group .components-button.has-icon.has-icon{justify-content:center;min-width:36px;padding-left:6px;padding-right:6px}.components-toolbar-group .components-button.components-button svg,.components-toolbar-group .components-button.has-icon.has-icon svg{min-width:24px}.components-toolbar-group .components-button.components-button:before,.components-toolbar-group .components-button.has-icon.has-icon:before{left:2px;right:2px}.components-toolbar{background-color:var(--wp-components-color-background,#fff);border:1px solid var(--wp-components-color-foreground,#1e1e1e);display:inline-flex;flex-shrink:0;flex-wrap:wrap;margin:0;min-height:48px}.components-toolbar .components-toolbar.components-toolbar{border-width:0;margin:0}div.components-toolbar>div{display:flex;margin:0}div.components-toolbar>div+div.has-left-divider{margin-left:6px;overflow:visible;position:relative}div.components-toolbar>div+div.has-left-divider:before{background-color:#ddd;box-sizing:initial;content:"";display:inline-block;height:20px;left:-3px;position:absolute;top:8px;width:1px}.components-tooltip{background:#000;border-radius:2px;box-shadow:0 1px 2px #0000000d,0 2px 3px #0000000a,0 6px 6px #00000008,0 8px 8px #00000005;color:#f0f0f0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:12px;line-height:1.4;padding:4px 8px;text-align:center;z-index:1000002}.components-tooltip__shortcut{margin-left:8px}.components-validated-control:has(:is(input,select):user-invalid) .components-input-control__backdrop{--wp-components-color-accent:$alert-red;border-color:#cc1818}.components-validated-control :is(textarea,input[type=text]):user-invalid{--wp-admin-theme-color:$alert-red;--wp-components-color-accent:$alert-red;border-color:#cc1818}.components-validated-control .components-combobox-control__suggestions-container:has(input:user-invalid):not(:has([aria-expanded=true])){border-color:#cc1818}.components-validated-control__wrapper-with-error-delegate{position:relative}.components-validated-control__wrapper-with-error-delegate:has(select:user-invalid) .components-input-control__backdrop{--wp-components-color-accent:$alert-red;border-color:#cc1818}.components-validated-control__wrapper-with-error-delegate:has(input[type=radio]:invalid){--wp-components-color-accent:$alert-red}.components-validated-control__error-delegate{height:100%;opacity:0;pointer-events:none;position:absolute;top:0;width:100%}.components-validated-control__indicator{align-items:flex-start;animation:components-validated-control__indicator-jump .2s cubic-bezier(.68,-.55,.27,1.55);color:var(--wp-components-color-gray-700,#757575);display:flex;font-family:-apple-system,"system-ui",Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:.75rem;gap:4px;line-height:16px;margin:8px 0 0}.components-validated-control__indicator.is-invalid{color:#cc1818}.components-validated-control__indicator.is-valid{color:color-mix(in srgb,#000 30%,#4ab866)}.components-validated-control__indicator-icon{flex-shrink:0}.components-validated-control__indicator-spinner{height:12px;margin:2px;width:12px}@keyframes components-validated-control__indicator-jump{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}#wpadminbar>.godaddy-styles *,.godaddy-styles *{font-family:GD Sherpa,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;line-height:1.4}#wpadminbar>.godaddy-styles .is-bigger,.godaddy-styles .is-bigger{font-size:1.1em!important;font-weight:500!important}#wpadminbar>.godaddy-styles .components-button,#wpadminbar>.godaddy-styles.components-button,.godaddy-styles .components-button,.godaddy-styles.components-button{border:0;border-radius:6px;box-shadow:none;font-size:1em;height:auto;line-height:1;padding:1.25em;transition:background-color,color,.2s ease-in-out}#wpadminbar>.godaddy-styles .components-button:disabled,#wpadminbar>.godaddy-styles.components-button:disabled,.godaddy-styles .components-button:disabled,.godaddy-styles.components-button:disabled{opacity:.5}#wpadminbar>.godaddy-styles .components-button>svg,#wpadminbar>.godaddy-styles.components-button>svg,.godaddy-styles .components-button>svg,.godaddy-styles.components-button>svg{height:24px;margin-left:.2em;position:relative;right:-5px;top:-1px;transform:scale(.75);width:24px}#wpadminbar>.godaddy-styles .components-button.no-padding,#wpadminbar>.godaddy-styles.components-button.no-padding,.godaddy-styles .components-button.no-padding,.godaddy-styles.components-button.no-padding{padding:0}#wpadminbar>.godaddy-styles .components-button.is-big,#wpadminbar>.godaddy-styles.components-button.is-big,.godaddy-styles .components-button.is-big,.godaddy-styles.components-button.is-big{font-size:1.1em;font-weight:600;padding:1.5em}#wpadminbar>.godaddy-styles .components-button.is-primary,#wpadminbar>.godaddy-styles.components-button.is-primary,.godaddy-styles .components-button.is-primary,.godaddy-styles.components-button.is-primary{background-color:#000;box-shadow:none;color:#fff}#wpadminbar>.godaddy-styles .components-button.is-primary:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.is-primary:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-primary:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-primary:hover:not([disabled]),.godaddy-styles .components-button.is-primary:active:not([disabled]),.godaddy-styles .components-button.is-primary:hover:not([disabled]),.godaddy-styles.components-button.is-primary:active:not([disabled]),.godaddy-styles.components-button.is-primary:hover:not([disabled]){background-color:#00a4a6}#wpadminbar>.godaddy-styles .components-button.is-secondary,#wpadminbar>.godaddy-styles.components-button.is-secondary,.godaddy-styles .components-button.is-secondary,.godaddy-styles.components-button.is-secondary{box-shadow:none;color:#111}#wpadminbar>.godaddy-styles .components-button.is-secondary:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.is-secondary:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-secondary:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-secondary:hover:not([disabled]),.godaddy-styles .components-button.is-secondary:active:not([disabled]),.godaddy-styles .components-button.is-secondary:hover:not([disabled]),.godaddy-styles.components-button.is-secondary:active:not([disabled]),.godaddy-styles.components-button.is-secondary:hover:not([disabled]){border:0;box-shadow:none;color:#000}#wpadminbar>.godaddy-styles .components-button.is-tertiary,#wpadminbar>.godaddy-styles.components-button.is-tertiary,.godaddy-styles .components-button.is-tertiary,.godaddy-styles.components-button.is-tertiary{border:1px solid #111;color:#111}#wpadminbar>.godaddy-styles .components-button.is-tertiary:hover,#wpadminbar>.godaddy-styles.components-button.is-tertiary:hover,.godaddy-styles .components-button.is-tertiary:hover,.godaddy-styles.components-button.is-tertiary:hover{background-color:#111;box-shadow:none;color:#fff}#wpadminbar>.godaddy-styles .components-button.is-link,#wpadminbar>.godaddy-styles.components-button.is-link,.godaddy-styles .components-button.is-link,.godaddy-styles.components-button.is-link{box-shadow:none;color:#00a4a6;padding:0;text-decoration:none}#wpadminbar>.godaddy-styles .components-button.is-link:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.is-link:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-link:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.is-link:hover:not([disabled]),.godaddy-styles .components-button.is-link:active:not([disabled]),.godaddy-styles .components-button.is-link:hover:not([disabled]),.godaddy-styles.components-button.is-link:active:not([disabled]),.godaddy-styles.components-button.is-link:hover:not([disabled]){color:#111;outline:none}#wpadminbar>.godaddy-styles .components-button.has-icon:active:not([disabled]),#wpadminbar>.godaddy-styles .components-button.has-icon:hover:not([disabled]),#wpadminbar>.godaddy-styles.components-button.has-icon:active:not([disabled]),#wpadminbar>.godaddy-styles.components-button.has-icon:hover:not([disabled]),.godaddy-styles .components-button.has-icon:active:not([disabled]),.godaddy-styles .components-button.has-icon:hover:not([disabled]),.godaddy-styles.components-button.has-icon:active:not([disabled]),.godaddy-styles.components-button.has-icon:hover:not([disabled]){background-color:transparent;color:#00a4a6}#wpadminbar>.godaddy-styles .components-modal__frame,#wpadminbar>.godaddy-styles.components-modal__frame,.godaddy-styles .components-modal__frame,.godaddy-styles.components-modal__frame{border-radius:1rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content,.godaddy-styles .components-modal__frame .components-modal__content,.godaddy-styles.components-modal__frame .components-modal__content{margin-top:0;padding:4.5rem 4.5rem 4.25rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content:before,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content:before,.godaddy-styles .components-modal__frame .components-modal__content:before,.godaddy-styles.components-modal__frame .components-modal__content:before{margin:0}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content p:last-child,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content p:last-child,.godaddy-styles .components-modal__frame .components-modal__content p:last-child,.godaddy-styles.components-modal__frame .components-modal__content p:last-child{margin-bottom:0}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header{border-bottom:0;font-size:2rem;height:unset;margin-bottom:.75em;padding:0;position:relative}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__icon-container{margin-right:8px}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-modal__header-heading{font-size:2rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon{font-size:1rem;left:auto;padding:.25em;position:absolute;right:-3.5rem;top:-3.25rem}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,.godaddy-styles .components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg,.godaddy-styles.components-modal__frame .components-modal__content .components-modal__header .components-button.has-icon>svg{margin-left:0;right:0;top:0;transform:scale(1)}#wpadminbar>.godaddy-styles .components-modal__frame .components-modal__content .components-text-control__input,#wpadminbar>.godaddy-styles.components-modal__frame .components-modal__content .components-text-control__input,.godaddy-styles .components-modal__frame .components-modal__content .components-text-control__input,.godaddy-styles.components-modal__frame .components-modal__content .components-text-control__input{margin-bottom:.5em}#wpadminbar>.godaddy-styles .ux-tag,.godaddy-styles .ux-tag{border-radius:4px;color:#000;font-size:.9em;font-weight:700;letter-spacing:.05625rem;line-height:1.5;padding-block:8px;padding-inline:8px;text-transform:uppercase;white-space:nowrap}#wpadminbar>.godaddy-styles .ux-tag-critical,.godaddy-styles .ux-tag-critical{background-color:#fbb}#wpadminbar>.godaddy-styles .ux-tag-highlight,.godaddy-styles .ux-tag-highlight{background-color:#a6fff8}#wpadminbar>.godaddy-styles .ux-tag-info,.godaddy-styles .ux-tag-info{background-color:#d3c1f7}#wpadminbar>.godaddy-styles .ux-tag-internal,.godaddy-styles .ux-tag-internal{background-color:#fbd9ed}#wpadminbar>.godaddy-styles .ux-tag-neutral,.godaddy-styles .ux-tag-neutral{background-color:#ddeaf8}#wpadminbar>.godaddy-styles .ux-tag-passive,.godaddy-styles .ux-tag-passive{background-color:#f4f8fc}#wpadminbar>.godaddy-styles .ux-tag-success,.godaddy-styles .ux-tag-success{background-color:#9fffb8}#wpadminbar>.godaddy-styles .ux-tag-warning,.godaddy-styles .ux-tag-warning{background-color:#ffeea9}#wpadminbar>.godaddy-styles .components-toggle-control,#wpadminbar>.godaddy-styles.components-toggle-control,.godaddy-styles .components-toggle-control,.godaddy-styles.components-toggle-control{align-items:flex-end;display:flex}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field,#wpadminbar>.godaddy-styles .components-toggle-control__field,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field,#wpadminbar>.godaddy-styles.components-toggle-control__field,.godaddy-styles .components-toggle-control .components-base-control__field,.godaddy-styles .components-toggle-control__field,.godaddy-styles.components-toggle-control .components-base-control__field,.godaddy-styles.components-toggle-control__field{margin:0}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field .components-form-toggle__track,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field .components-form-toggle__track,.godaddy-styles .components-toggle-control .components-base-control__field .components-form-toggle__track,.godaddy-styles.components-toggle-control .components-base-control__field .components-form-toggle__track{background-color:#f3f6f8}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,.godaddy-styles .components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track,.godaddy-styles.components-toggle-control .components-base-control__field .is-checked .components-form-toggle__track{background-color:#00a4a6}#wpadminbar>.godaddy-styles .components-toggle-control .components-base-control__help,#wpadminbar>.godaddy-styles.components-toggle-control .components-base-control__help,.godaddy-styles .components-toggle-control .components-base-control__help,.godaddy-styles.components-toggle-control .components-base-control__help{margin:0}
.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-16799 .elementor-element.elementor-element-c78bb44{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:0px 0px 12px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:12px;--border-left-width:0px;border-color:var( --e-global-color-secondary );--border-color:var( --e-global-color-secondary );}.elementor-16799 .elementor-element.elementor-element-c78bb44:not(.elementor-motion-effects-element-type-background), .elementor-16799 .elementor-element.elementor-element-c78bb44 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-413c604 );}.elementor-16799 .elementor-element.elementor-element-2f08cfc{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:none;--border-style:none;}.elementor-16799 .elementor-element.elementor-element-684c858{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-16799 .elementor-element.elementor-element-684c858.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-16799 .elementor-element.elementor-element-3447d7c.elementor-element{--align-self:flex-start;--order:-99999 /* order start hack */;}.elementor-16799 .elementor-element.elementor-element-3447d7c{text-align:left;}.elementor-16799 .elementor-element.elementor-element-70d713d{--display:grid;--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(2, 1fr);--grid-auto-flow:row;}.elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-input-focus .hfe-search-icon-toggle input[type=search]{width:98px;}.elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-search-icon-toggle input[type=search]{padding:0 calc( 15px / 2);}.elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-search-icon-toggle i.fa-search:before{font-size:15px;}.elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-search-icon-toggle i.fa-search, .elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-search-icon-toggle{width:15px;}.elementor-16799 .elementor-element.elementor-element-8f87fdc input[type="search"].hfe-search-form__input,.elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-search-icon-toggle{font-family:"Inter", Inter;font-size:16px;font-weight:300;}.elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-input-focus .hfe-search-form__input:focus{color:var( --e-global-color-secondary );background-color:var( --e-global-color-413c604 );}.elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-style:none;border-radius:3px;}.elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-search-icon-toggle i:hover{color:var( --e-global-color-3d4bcc3 );border-color:var( --e-global-color-3d4bcc3 );}.elementor-16799 .elementor-element.elementor-element-118065a .menu-item a.hfe-menu-item{padding-left:15px;padding-right:15px;}.elementor-16799 .elementor-element.elementor-element-118065a .menu-item a.hfe-sub-menu-item{padding-left:calc( 15px + 20px );padding-right:15px;}.elementor-16799 .elementor-element.elementor-element-118065a .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 40px );padding-right:15px;}.elementor-16799 .elementor-element.elementor-element-118065a .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 60px );padding-right:15px;}.elementor-16799 .elementor-element.elementor-element-118065a .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 80px );padding-right:15px;}.elementor-16799 .elementor-element.elementor-element-118065a .menu-item a.hfe-menu-item, .elementor-16799 .elementor-element.elementor-element-118065a .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-16799 .elementor-element.elementor-element-118065a ul.sub-menu{width:220px;}.elementor-16799 .elementor-element.elementor-element-118065a .sub-menu a.hfe-sub-menu-item,
						 .elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown li a.hfe-menu-item,
						 .elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown li a.hfe-sub-menu-item,
						 .elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible li a.hfe-menu-item,
						 .elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-16799 .elementor-element.elementor-element-118065a.elementor-element{--order:99999 /* order end hack */;}.elementor-16799 .elementor-element.elementor-element-118065a .hfe-nav-menu__toggle{margin-left:auto;}.elementor-16799 .elementor-element.elementor-element-118065a a.hfe-menu-item, .elementor-16799 .elementor-element.elementor-element-118065a a.hfe-sub-menu-item{font-family:"Roboto Mono", Inter;font-size:17px;font-weight:700;}.elementor-16799 .elementor-element.elementor-element-118065a .menu-item a.hfe-menu-item:hover,
								.elementor-16799 .elementor-element.elementor-element-118065a .sub-menu a.hfe-sub-menu-item:hover,
								.elementor-16799 .elementor-element.elementor-element-118065a .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-16799 .elementor-element.elementor-element-118065a .menu-item a.hfe-menu-item.highlighted,
								.elementor-16799 .elementor-element.elementor-element-118065a .menu-item a.hfe-menu-item:focus{color:var( --e-global-color-3d4bcc3 );}.elementor-16799 .elementor-element.elementor-element-118065a .sub-menu a.hfe-sub-menu-item,
								.elementor-16799 .elementor-element.elementor-element-118065a .elementor-menu-toggle,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown li a.hfe-menu-item,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown li a.hfe-sub-menu-item,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible li a.hfe-menu-item,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{color:var( --e-global-color-secondary );}.elementor-16799 .elementor-element.elementor-element-118065a .sub-menu,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown .menu-item a.hfe-menu-item,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:var( --e-global-color-413c604 );}.elementor-16799 .elementor-element.elementor-element-118065a .sub-menu a.hfe-sub-menu-item:hover,
								.elementor-16799 .elementor-element.elementor-element-118065a .elementor-menu-toggle:hover,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown li a.hfe-menu-item:hover,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown li a.hfe-sub-menu-item:hover,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible li a.hfe-menu-item:hover,
								.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible li a.hfe-sub-menu-item:hover{color:var( --e-global-color-80bbf57 );}
							.elementor-16799 .elementor-element.elementor-element-118065a .sub-menu li a.hfe-sub-menu-item,
							.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown li a.hfe-sub-menu-item,
							.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown li a.hfe-menu-item,
							.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible li a.hfe-menu-item,
							.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{font-family:"Roboto Mono", Inter;font-size:15px;font-weight:700;}.elementor-16799 .elementor-element.elementor-element-118065a .sub-menu li.menu-item:not(:last-child),
						.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown li.menu-item:not(:last-child),
						.elementor-16799 .elementor-element.elementor-element-118065a nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:none;}body.elementor-page-16799:not(.elementor-motion-effects-element-type-background), body.elementor-page-16799 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#D9D9D9;}:root{--page-title-display:none;}@media(max-width:1400px){.elementor-16799 .elementor-element.elementor-element-2f08cfc{--min-height:100px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16799 .elementor-element.elementor-element-684c858{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16799 .elementor-element.elementor-element-684c858.e-con{--align-self:center;}.elementor-16799 .elementor-element.elementor-element-70d713d{--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(2, 1fr);--grid-auto-flow:row;}.elementor-16799 .elementor-element.elementor-element-8f87fdc.elementor-element{--align-self:flex-end;}}@media(max-width:1200px){.elementor-16799 .elementor-element.elementor-element-70d713d{--grid-auto-flow:row;}}@media(max-width:1024px){.elementor-16799 .elementor-element.elementor-element-70d713d{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-16799 .elementor-element.elementor-element-70d713d{--grid-auto-flow:row;}}@media(max-width:540px){.elementor-16799 .elementor-element.elementor-element-684c858{--width:54%;}.elementor-16799 .elementor-element.elementor-element-70d713d{--width:37%;--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}.elementor-16799 .elementor-element.elementor-element-8f87fdc .hfe-input-focus .hfe-search-icon-toggle input[type=search]{width:87px;}}@media(min-width:541px){.elementor-16799 .elementor-element.elementor-element-684c858{--width:32.815%;}}@media(max-width:1400px) and (min-width:541px){.elementor-16799 .elementor-element.elementor-element-2f08cfc{--width:100%;}.elementor-16799 .elementor-element.elementor-element-684c858{--width:30%;}}@media(max-width:767px) and (min-width:541px){.elementor-16799 .elementor-element.elementor-element-70d713d{--width:65%;}}.elementor-16798 .elementor-element.elementor-element-3cd7e78{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-16798 .elementor-element.elementor-element-c9e3081{--spacer-size:50px;}.elementor-16798 .elementor-element.elementor-element-3f1b028{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-around;--gap:0px 0px;--row-gap:0px;--column-gap:0px;border-style:solid;--border-style:solid;border-width:12px 0px 0px 0px;--border-top-width:12px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;border-color:var( --e-global-color-secondary );--border-color:var( --e-global-color-secondary );--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:1px;--padding-bottom:1px;--padding-left:0px;--padding-right:0px;}.elementor-16798 .elementor-element.elementor-element-3f1b028:not(.elementor-motion-effects-element-type-background), .elementor-16798 .elementor-element.elementor-element-3f1b028 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-413c604 );}.elementor-16798 .elementor-element.elementor-element-d855fb9{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:flex-start;--align-items:flex-start;}.elementor-16798 .elementor-element.elementor-element-d855fb9.e-con{--align-self:flex-start;--flex-grow:0;--flex-shrink:0;}.elementor-16798 .elementor-element.elementor-element-d8a6327.elementor-element{--align-self:flex-start;--order:-99999 /* order start hack */;}.elementor-16798 .elementor-element.elementor-element-d8a6327{text-align:left;}.elementor-16798 .elementor-element.elementor-element-d466aba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:flex-start;}.elementor-16798 .elementor-element.elementor-element-7bd730e .menu-item a.hfe-menu-item{padding-left:15px;padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-7bd730e .menu-item a.hfe-sub-menu-item{padding-left:calc( 15px + 20px );padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-7bd730e .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 40px );padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-7bd730e .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 60px );padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-7bd730e .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 80px );padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-7bd730e .menu-item a.hfe-menu-item, .elementor-16798 .elementor-element.elementor-element-7bd730e .menu-item a.hfe-sub-menu-item{padding-top:10px;padding-bottom:10px;}body:not(.rtl) .elementor-16798 .elementor-element.elementor-element-7bd730e .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child){margin-right:5px;}body.rtl .elementor-16798 .elementor-element.elementor-element-7bd730e .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child){margin-left:5px;}.elementor-16798 .elementor-element.elementor-element-7bd730e nav:not(.hfe-nav-menu__layout-horizontal) .hfe-nav-menu > li.menu-item:not(:last-child){margin-bottom:5px;}.elementor-16798 .elementor-element.elementor-element-7bd730e .sub-menu a.hfe-sub-menu-item,
						 .elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown li a.hfe-menu-item,
						 .elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown li a.hfe-sub-menu-item,
						 .elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown-expandible li a.hfe-menu-item,
						 .elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:10px;padding-bottom:10px;}.elementor-16798 .elementor-element.elementor-element-7bd730e > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-16798 .elementor-element.elementor-element-7bd730e .hfe-nav-menu__toggle{margin:0 auto;}.elementor-16798 .elementor-element.elementor-element-7bd730e a.hfe-menu-item, .elementor-16798 .elementor-element.elementor-element-7bd730e a.hfe-sub-menu-item{font-family:"Roboto Mono", Inter;font-size:17px;font-weight:700;letter-spacing:0px;}.elementor-16798 .elementor-element.elementor-element-7bd730e .menu-item a.hfe-menu-item, .elementor-16798 .elementor-element.elementor-element-7bd730e .sub-menu a.hfe-sub-menu-item{color:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-7bd730e .menu-item a.hfe-menu-item:hover,
								.elementor-16798 .elementor-element.elementor-element-7bd730e .sub-menu a.hfe-sub-menu-item:hover,
								.elementor-16798 .elementor-element.elementor-element-7bd730e .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-16798 .elementor-element.elementor-element-7bd730e .menu-item a.hfe-menu-item.highlighted,
								.elementor-16798 .elementor-element.elementor-element-7bd730e .menu-item a.hfe-menu-item:focus{color:var( --e-global-color-3d4bcc3 );background-color:var( --e-global-color-413c604 );}.elementor-16798 .elementor-element.elementor-element-7bd730e .sub-menu a.hfe-sub-menu-item,
								.elementor-16798 .elementor-element.elementor-element-7bd730e .elementor-menu-toggle,
								.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown li a.hfe-menu-item,
								.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown li a.hfe-sub-menu-item,
								.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown-expandible li a.hfe-menu-item,
								.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{color:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-7bd730e .sub-menu,
								.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown,
								.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown-expandible,
								.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown .menu-item a.hfe-menu-item,
								.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:var( --e-global-color-413c604 );}
							.elementor-16798 .elementor-element.elementor-element-7bd730e .sub-menu li a.hfe-sub-menu-item,
							.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown li a.hfe-sub-menu-item,
							.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown li a.hfe-menu-item,
							.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown-expandible li a.hfe-menu-item,
							.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{font-family:"Roboto Mono", Inter;font-size:15px;}.elementor-16798 .elementor-element.elementor-element-7bd730e .sub-menu li.menu-item:not(:last-child),
						.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown li.menu-item:not(:last-child),
						.elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:none;}.elementor-16798 .elementor-element.elementor-element-730687b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:flex-start;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--padding-top:15px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16798 .elementor-element.elementor-element-730687b.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-16798 .elementor-element.elementor-element-a3298f5 .elementor-repeater-item-7fb560f.elementor-social-icon{background-color:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-a3298f5{--grid-template-columns:repeat(0, auto);--icon-size:17px;--grid-column-gap:5px;--grid-row-gap:0px;}.elementor-16798 .elementor-element.elementor-element-a3298f5 .elementor-widget-container{text-align:right;}.elementor-16798 .elementor-element.elementor-element-a3298f5 .elementor-social-icon{background-color:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-a3298f5 .elementor-social-icon:hover{background-color:var( --e-global-color-80bbf57 );}.elementor-16798 .elementor-element.elementor-element-d756120 .elespare-custom-link-button{text-align:right;font-family:"Roboto Mono", Inter;font-size:17px;font-weight:700;}.elementor-16798 .elementor-element.elementor-element-d756120 .elespare-custom-link-button .elespare-button-hover-color:hover{background-color:var( --e-global-color-7a54d6a );}.elementor-16798 .elementor-element.elementor-element-d756120 .elespare-custom-link-text{color:var( --e-global-color-551c13c );}.elementor-16798 .elementor-element.elementor-element-d756120 .elespare-custom-link-button .elespare-button-link{background:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-c85b3f7 .elespare-custom-link-button{text-align:right;font-family:"Roboto Mono", Inter;font-size:17px;font-weight:700;}.elementor-16798 .elementor-element.elementor-element-c85b3f7 .elespare-custom-link-button .elespare-button-hover-color:hover{background-color:var( --e-global-color-7a54d6a );}.elementor-16798 .elementor-element.elementor-element-c85b3f7 .elespare-custom-link-text{color:var( --e-global-color-551c13c );}.elementor-16798 .elementor-element.elementor-element-c85b3f7 .elespare-custom-link-button .elespare-button-link{background:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-b4351f5 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-16798 .elementor-element.elementor-element-b4351f5.elementor-element{--align-self:flex-end;--order:99999 /* order end hack */;--flex-grow:0;--flex-shrink:0;}.elementor-16798 .elementor-element.elementor-element-b4351f5 .elespare-copyright-wrapper{text-align:right;}.elementor-16798 .elementor-element.elementor-element-b4351f5{font-family:"Inter", Inter;font-size:17px;font-weight:400;}.elementor-16798 .elementor-element.elementor-element-b4351f5 .elespare-copyright-wrapper span.elespare-copyright-text .elespare-copyright-link-color{color:#000;}.elementor-16798 .elementor-element.elementor-element-ca72762{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-color:var( --e-global-color-secondary );--border-color:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-ca72762:not(.elementor-motion-effects-element-type-background), .elementor-16798 .elementor-element.elementor-element-ca72762 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-413c604 );}.elementor-16798 .elementor-element.elementor-element-f33f968{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:flex-start;--gap:7px 7px;--row-gap:7px;--column-gap:7px;}.elementor-16798 .elementor-element.elementor-element-f33f968.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-16798 .elementor-element.elementor-element-044b36a .elementor-repeater-item-7fb560f.elementor-social-icon{background-color:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-044b36a{--grid-template-columns:repeat(0, auto);--icon-size:17px;--grid-column-gap:5px;--grid-row-gap:0px;}.elementor-16798 .elementor-element.elementor-element-044b36a .elementor-widget-container{text-align:right;}.elementor-16798 .elementor-element.elementor-element-044b36a .elementor-social-icon{background-color:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-044b36a .elementor-social-icon:hover{background-color:var( --e-global-color-80bbf57 );}.elementor-16798 .elementor-element.elementor-element-68fb4f5 .elespare-custom-link-button{text-align:right;font-family:"Roboto Mono", Inter;font-size:16px;font-weight:700;}.elementor-16798 .elementor-element.elementor-element-68fb4f5 .elespare-custom-link-button .elespare-button-hover-color:hover{background-color:var( --e-global-color-7a54d6a );}.elementor-16798 .elementor-element.elementor-element-68fb4f5 .elespare-custom-link-text{color:var( --e-global-color-551c13c );}.elementor-16798 .elementor-element.elementor-element-68fb4f5 .elespare-custom-link-button .elespare-button-link{background:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-c0b5926 .elespare-custom-link-button{text-align:right;font-family:"Roboto Mono", Inter;font-size:16px;font-weight:700;}.elementor-16798 .elementor-element.elementor-element-c0b5926 .elespare-custom-link-button .elespare-button-hover-color:hover{background-color:var( --e-global-color-7a54d6a );}.elementor-16798 .elementor-element.elementor-element-c0b5926 .elespare-custom-link-text{color:var( --e-global-color-551c13c );}.elementor-16798 .elementor-element.elementor-element-c0b5926 .elespare-custom-link-button .elespare-button-link{background:var( --e-global-color-secondary );}.elementor-16798 .elementor-element.elementor-element-fb5b7cb{--display:flex;--align-items:flex-end;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-16798 .elementor-element.elementor-element-fb5b7cb.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-16798 .elementor-element.elementor-element-4e95fa4{width:var( --container-widget-width, 225.398% );max-width:225.398%;--container-widget-width:225.398%;--container-widget-flex-grow:0;text-align:left;}.elementor-16798 .elementor-element.elementor-element-4e95fa4.elementor-element{--align-self:flex-start;--order:-99999 /* order start hack */;--flex-grow:0;--flex-shrink:0;}.elementor-16798 .elementor-element.elementor-element-e0341ec{--display:flex;--align-items:flex-end;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-16798 .elementor-element.elementor-element-e0341ec.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-menu-item{padding-left:15px;padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-sub-menu-item{padding-left:calc( 15px + 20px );padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-11c20cf .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 40px );padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-11c20cf .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 60px );padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-11c20cf .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 80px );padding-right:15px;}.elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-menu-item, .elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-sub-menu-item{padding-top:10px;padding-bottom:10px;}body:not(.rtl) .elementor-16798 .elementor-element.elementor-element-11c20cf .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child){margin-right:0px;}body.rtl .elementor-16798 .elementor-element.elementor-element-11c20cf .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child){margin-left:0px;}.elementor-16798 .elementor-element.elementor-element-11c20cf nav:not(.hfe-nav-menu__layout-horizontal) .hfe-nav-menu > li.menu-item:not(:last-child){margin-bottom:0px;}.elementor-16798 .elementor-element.elementor-element-11c20cf .sub-menu a.hfe-sub-menu-item,
						 .elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown li a.hfe-menu-item,
						 .elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown li a.hfe-sub-menu-item,
						 .elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown-expandible li a.hfe-menu-item,
						 .elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:10px;padding-bottom:10px;}.elementor-16798 .elementor-element.elementor-element-11c20cf > .elementor-widget-container{margin:0px 0px 0px -10px;padding:0px 0px 0px -3px;}.elementor-16798 .elementor-element.elementor-element-11c20cf a.hfe-menu-item, .elementor-16798 .elementor-element.elementor-element-11c20cf a.hfe-sub-menu-item{font-family:"Roboto Mono", Inter;font-size:16px;font-weight:700;letter-spacing:0px;}.elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-menu-item:hover,
								.elementor-16798 .elementor-element.elementor-element-11c20cf .sub-menu a.hfe-sub-menu-item:hover,
								.elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item.current-menu-item a.hfe-menu-item,
								.elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-menu-item.highlighted,
								.elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-menu-item:focus{color:var( --e-global-color-3d4bcc3 );background-color:var( --e-global-color-413c604 );}.elementor-16798 .elementor-element.elementor-element-11c20cf .sub-menu,
								.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown,
								.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown-expandible,
								.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown .menu-item a.hfe-menu-item,
								.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:var( --e-global-color-413c604 );}
							.elementor-16798 .elementor-element.elementor-element-11c20cf .sub-menu li a.hfe-sub-menu-item,
							.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown li a.hfe-sub-menu-item,
							.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown li a.hfe-menu-item,
							.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown-expandible li a.hfe-menu-item,
							.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{font-family:"Roboto Mono", Inter;font-size:14px;}.elementor-16798 .elementor-element.elementor-element-11c20cf .sub-menu li.menu-item:not(:last-child),
						.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown li.menu-item:not(:last-child),
						.elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:none;}.elementor-16798 .elementor-element.elementor-element-57282e7{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-16798 .elementor-element.elementor-element-57282e7:not(.elementor-motion-effects-element-type-background), .elementor-16798 .elementor-element.elementor-element-57282e7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-413c604 );}.elementor-16798 .elementor-element.elementor-element-e8ab825{--display:flex;--align-items:flex-end;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-16798 .elementor-element.elementor-element-e8ab825.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-16798 .elementor-element.elementor-element-836f0f0 .hfe-copyright-wrapper, .elementor-16798 .elementor-element.elementor-element-836f0f0 .hfe-copyright-wrapper a{font-family:"Inter", Inter;}body.elementor-page-16798:not(.elementor-motion-effects-element-type-background), body.elementor-page-16798 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#D9D9D9;}@media(max-width:1400px){.elementor-16798 .elementor-element.elementor-element-b4351f5 > .elementor-widget-container{padding:0px 10px 0px 0px;}.elementor-16798 .elementor-element.elementor-element-fb5b7cb{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16798 .elementor-element.elementor-element-fb5b7cb.e-con{--align-self:flex-start;}.elementor-16798 .elementor-element.elementor-element-e0341ec{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16798 .elementor-element.elementor-element-e0341ec.e-con{--align-self:flex-start;}.elementor-16798 .elementor-element.elementor-element-e8ab825{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16798 .elementor-element.elementor-element-e8ab825.e-con{--align-self:flex-start;}}@media(max-width:1200px){.elementor-16798 .elementor-element.elementor-element-b4351f5{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-16798 .elementor-element.elementor-element-b4351f5 > .elementor-widget-container{padding:0px 0px 0px 0px;}}@media(max-width:1024px){body:not(.rtl) .elementor-16798 .elementor-element.elementor-element-7bd730e.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child){margin-right:0px;}body .elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-nav-menu__layout-vertical .hfe-nav-menu > li.menu-item:not(:last-child){margin-bottom:0px;}.elementor-16798 .elementor-element.elementor-element-b4351f5{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;font-size:16px;}.elementor-16798 .elementor-element.elementor-element-b4351f5 > .elementor-widget-container{padding:0px 10px 0px 0px;}.elementor-16798 .elementor-element.elementor-element-b4351f5 .elespare-copyright-wrapper{text-align:right;}body:not(.rtl) .elementor-16798 .elementor-element.elementor-element-11c20cf.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child){margin-right:0px;}body .elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-nav-menu__layout-vertical .hfe-nav-menu > li.menu-item:not(:last-child){margin-bottom:0px;}}@media(max-width:767px){.elementor-16798 .elementor-element.elementor-element-b4351f5{--container-widget-width:100%;--container-widget-flex-grow:0;width:var( --container-widget-width, 100% );max-width:100%;}.elementor-16798 .elementor-element.elementor-element-ca72762{--flex-direction:row-reverse;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap-reverse;--justify-content:flex-end;border-width:12px 0px 0px 0px;--border-top-width:12px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;}.elementor-16798 .elementor-element.elementor-element-f33f968{--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:flex-end;}.elementor-16798 .elementor-element.elementor-element-044b36a.elementor-element{--order:-99999 /* order start hack */;}.elementor-16798 .elementor-element.elementor-element-c0b5926.elementor-element{--order:-99999 /* order start hack */;}.elementor-16798 .elementor-element.elementor-element-fb5b7cb{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16798 .elementor-element.elementor-element-e0341ec{--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-start;--align-items:flex-start;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-menu-item, .elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-sub-menu-item{padding-top:10px;padding-bottom:10px;}.elementor-16798 .elementor-element.elementor-element-11c20cf > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-16798 .elementor-element.elementor-element-11c20cf.elementor-element{--order:99999 /* order end hack */;}.elementor-16798 .elementor-element.elementor-element-57282e7{--padding-top:4px;--padding-bottom:4px;--padding-left:0px;--padding-right:0px;}.elementor-16798 .elementor-element.elementor-element-836f0f0 .hfe-copyright-wrapper{text-align:center;}.elementor-16798 .elementor-element.elementor-element-836f0f0 > .elementor-widget-container{padding:4px 0px 0px 0px;}.elementor-16798 .elementor-element.elementor-element-836f0f0.elementor-element{--align-self:center;}}@media(max-width:540px){body:not(.rtl) .elementor-16798 .elementor-element.elementor-element-7bd730e.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child){margin-right:0px;}body .elementor-16798 .elementor-element.elementor-element-7bd730e nav.hfe-nav-menu__layout-vertical .hfe-nav-menu > li.menu-item:not(:last-child){margin-bottom:0px;}.elementor-16798 .elementor-element.elementor-element-ca72762{--flex-direction:row-reverse;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap-reverse;--justify-content:flex-end;--gap:3px 3px;--row-gap:3px;--column-gap:3px;}.elementor-16798 .elementor-element.elementor-element-f33f968{--width:30%;--justify-content:flex-start;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16798 .elementor-element.elementor-element-f33f968.e-con{--align-self:flex-start;}.elementor-16798 .elementor-element.elementor-element-044b36a .elementor-widget-container{text-align:center;}.elementor-16798 .elementor-element.elementor-element-68fb4f5 .elespare-custom-link-button{font-size:14px;}.elementor-16798 .elementor-element.elementor-element-c0b5926 .elespare-custom-link-button{font-size:14px;}.elementor-16798 .elementor-element.elementor-element-fb5b7cb{--width:30%;}.elementor-16798 .elementor-element.elementor-element-e0341ec{--width:30%;--justify-content:flex-end;--align-items:flex-end;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-16798 .elementor-element.elementor-element-e0341ec.e-con{--align-self:flex-start;}.elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-menu-item, .elementor-16798 .elementor-element.elementor-element-11c20cf .menu-item a.hfe-sub-menu-item{padding-top:7px;padding-bottom:7px;}body:not(.rtl) .elementor-16798 .elementor-element.elementor-element-11c20cf.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu > li.menu-item:not(:last-child){margin-right:0px;}body .elementor-16798 .elementor-element.elementor-element-11c20cf nav.hfe-nav-menu__layout-vertical .hfe-nav-menu > li.menu-item:not(:last-child){margin-bottom:0px;}.elementor-16798 .elementor-element.elementor-element-11c20cf > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-16798 .elementor-element.elementor-element-11c20cf.elementor-element{--align-self:flex-end;}.elementor-16798 .elementor-element.elementor-element-11c20cf a.hfe-menu-item, .elementor-16798 .elementor-element.elementor-element-11c20cf a.hfe-sub-menu-item{font-size:14px;}}@media(min-width:541px){.elementor-16798 .elementor-element.elementor-element-d855fb9{--width:22%;}.elementor-16798 .elementor-element.elementor-element-d466aba{--width:30%;}.elementor-16798 .elementor-element.elementor-element-730687b{--width:35%;}.elementor-16798 .elementor-element.elementor-element-f33f968{--width:35%;}}@media(max-width:1400px) and (min-width:541px){.elementor-16798 .elementor-element.elementor-element-d855fb9{--width:237px;}.elementor-16798 .elementor-element.elementor-element-730687b{--width:48%;}.elementor-16798 .elementor-element.elementor-element-f33f968{--width:48%;}}@media(max-width:1200px) and (min-width:541px){.elementor-16798 .elementor-element.elementor-element-d855fb9{--width:25%;}.elementor-16798 .elementor-element.elementor-element-730687b{--width:43.314%;}.elementor-16798 .elementor-element.elementor-element-f33f968{--width:43.314%;}}@media(max-width:1024px) and (min-width:541px){.elementor-16798 .elementor-element.elementor-element-730687b{--width:307px;}.elementor-16798 .elementor-element.elementor-element-f33f968{--width:307px;}}@media(max-width:767px) and (min-width:541px){.elementor-16798 .elementor-element.elementor-element-f33f968{--width:30%;}.elementor-16798 .elementor-element.elementor-element-fb5b7cb{--width:30%;}.elementor-16798 .elementor-element.elementor-element-e0341ec{--width:30%;}.elementor-16798 .elementor-element.elementor-element-e8ab825{--width:100%;}}/*
Theme Name: Archeo
Theme URI: https://wordpress.com/theme/archeo
Author: Automattic
Author URI: https://automattic.com
Description: A theme inspired by Mayan history and culture
Requires at least: 5.8
Tested up to: 5.9
Requires PHP: 5.7
Version: 1.0.21
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: archeo
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks

Archeo WordPress Theme, (C) 2022 Automattic, Inc.
Archeo is distributed under the terms of the GNU GPL.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/

/*
 * Font smoothing
 */

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

/*
 * Link Details
 */

a {
	text-decoration-thickness: 0.075ex;
	text-underline-offset: 0.125em;
}

a:hover:not(.wp-block-button__link),
.wp-block-site-title a:hover,
.wp-block-post-title a:hover,
.wp-block-post-date a:hover {
	text-decoration-line: underline;
	text-decoration-style: dotted;
}

a:active,
.wp-block-site-title a:active,
.wp-block-post-title a:active,
.wp-block-post-date a:active {
	text-decoration-style: solid;
}

.wp-block-navigation .wp-block-navigation-link a:hover,
.wp-block-navigation .wp-block-page-list a:hover,
.wp-block-navigation .wp-block-pages-list__item a:hover {
	text-decoration-line: underline;
}

/*
 * Button hover styles.
 * Necessary until the following issue is resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/27075
 */

.wp-block-file .wp-block-file__button:hover,
.wp-block-button__link:hover {
	background-color: var(--wp--preset--color--primary);
}

/*
 * Outline block button needs a padding tweak so it's the same size of normal buttons
 * https://github.com/WordPress/gutenberg/issues/27476
 */
.is-style-outline > :where(.wp-block-button__link),
:where(.wp-block-button__link).is-style-outline {
	padding-top: 0.667em;
	padding-bottom: 0.667em;
}

/*
 * Comment Form Fields
 */

.wp-block-post-comments input:not([type='submit']),
.wp-block-post-comments textarea {
	background-color: var(--wp--preset--color--foreground);
	border-color: var(--wp--preset--color--background);
	color: var(--wp--preset--color--background);
}

/*
 * Responsive menu container padding.
 * This ensures the responsive container inherits the same
 * spacing defined above. This behavior may be built into
 * the Block Editor in the future.
 */

.wp-block-navigation__responsive-container.is-menu-open {
	padding-top: var(--wp--custom--spacing--outer);
	padding-bottom: var(--wp--custom--spacing--large);
	padding-right: var(--wp--custom--spacing--outer);
	padding-left: var(--wp--custom--spacing--outer);
}

/*
 * Needed until https://github.com/WordPress/gutenberg/issues/37035 is fixed.
 */
.wp-block-navigation__responsive-container.is-menu-open ul {
	font-size: var(--wp--preset--font-size--large) !important;
	font-weight: 100;
	gap: var(--wp--style--block-gap);
}

.wp-block-post-navigation-link > a {
	text-decoration: none;
}

/*
 * Needed until https://github.com/WordPress/gutenberg/issues/38498 is fixed.
 */
.wp-block-group.simple-list-of-posts {
	align-items: baseline;
}

/*
 * Needed until https://github.com/WordPress/gutenberg/pull/38986 is merged.
 */
.wp-block-post-title a {
	text-decoration-line: none;
}

.wp-block-post-title a:hover {
	text-decoration-line: underline;
}
/**
 * Like Button toolbar button, loading text & container styles
 */

/* Master container */
#jp-post-flair {
	padding-top: 0.5em;
}

/* Overall Sharedaddy block title */
div.sharedaddy,
#content div.sharedaddy,
#main div.sharedaddy {
	clear: both;
}

div.sharedaddy h3.sd-title {
	margin: 0 0 1em 0;
	display: inline-block;
	line-height: 1.2;
	font-size: 9pt;
	font-weight: 700;
}

div.sharedaddy h3.sd-title::before {
	content: "";
	display: block;
	width: 100%;
	min-width: 30px;
	border-top: 1px solid #dcdcde;
	margin-bottom: 1em;
}


/* Toolbar */
div.jetpack-likes-widget-wrapper {
	width: 100%;
	min-height: 50px;	/* Previous height, 60px */
	position: relative; /* Need to abs position placeholder and iframe so there isn't a jarring jump */
}

div.jetpack-likes-widget-wrapper .sd-link-color {
	font-size: 12px;
}

div.jetpack-comment-likes-widget-wrapper {
	width: 100%;
	position: relative;
	min-height: 31px;
}

div.jetpack-comment-likes-widget-wrapper iframe {
	margin-bottom: 0;
}

#likes-other-gravatars {
	display: none;
	position: absolute;
	padding: 9px 12px 10px 12px;
	background-color: #fff;
	border: solid 1px #dcdcde;
	border-radius: 4px;
	box-shadow: none;
	min-width: 220px;
	max-height: 240px;
	height: auto;
	overflow: auto;
	z-index: 1000;
}

#likes-other-gravatars * {
	line-height: normal;
}

#likes-other-gravatars .likes-text {
	color: #101517;
	font-size: 12px;
	font-weight: 500;
	padding-bottom: 8px;
}

#likes-other-gravatars ul,
#likes-other-gravatars li {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style-type: none;
}

#likes-other-gravatars li::before {
	content: "";
}

#likes-other-gravatars ul.wpl-avatars {
	overflow: auto;
	display: block;
	max-height: 190px;
}

#likes-other-gravatars ul.wpl-avatars li {
	width: 196px;
	height: 28px;
	float: none;
	margin: 0 0 4px 0;
}

#likes-other-gravatars ul.wpl-avatars li a {
	margin: 0 2px 0 0;
	border-bottom: none !important;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

#likes-other-gravatars ul.wpl-avatars li a span {
	font-size: 12px;
	color: #2c3338;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#likes-other-gravatars ul.wpl-avatars li a img {
	background: none;
	border: none;
	border-radius: 50%;
	margin: 0 !important;
	padding: 1px !important;
	position: static;
	box-sizing: border-box;
}

div.sd-box {
	border-top: 1px solid #dcdcde;
	border-top: 1px solid rgba(0, 0, 0, 0.13);
}


.jetpack-likes-widget-unloaded .likes-widget-placeholder,
.jetpack-likes-widget-loading .likes-widget-placeholder,
.jetpack-likes-widget-loaded iframe {
	display: block;
}

.jetpack-likes-widget-loaded .likes-widget-placeholder,
.jetpack-likes-widget-unloaded iframe,
.jetpack-likes-widget-loading iframe {
	display: none;
}

.entry-content .post-likes-widget,
.post-likes-widget,
.comment-likes-widget {
	margin: 0;
	border-width: 0;
}

/* Loading text */
.post-likes-widget-placeholder,
.comment-likes-widget-placeholder {
	margin: 0;
	border-width: 0;
	position: relative;
}

.comment-likes-widget-placeholder {
	height: 18px;
	position: absolute;
	display: flex;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.comment-likes-widget-placeholder::before {
	color: #2ea2cc;
	width: 16px;
	height: 16px;
	content: "";
	display: inline-block;
	position: relative;
	top: 3px;
	padding-right: 5px;
	background-repeat: no-repeat;
	background-size: 16px 16px;
	/* stylelint-disable-next-line function-url-quotes -- quotes are required here. Bug report: https://github.com/stylelint/stylelint/issues/8544 */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='0' fill='none' width='24' height='24'/%3E%3Cg%3E%3Cpath fill='%232EA2CC' d='M12 2l2.582 6.953L22 9.257l-5.822 4.602L18.18 21 12 16.89 5.82 21l2.002-7.14L2 9.256l7.418-.304'/%3E%3C/g%3E%3C/svg%3E");
}

.post-likes-widget-placeholder .button {
	display: none;	/* Let's not show a dummy like button, let's just make a great button experience once it's loaded */
}

.post-likes-widget-placeholder .loading,
.comment-likes-widget-placeholder .loading {
	color: #999;
	font-size: 12px;
}

.comment-likes-widget-placeholder .loading {
	padding-left: 5px;
	margin-top: 4px;
	align-self: center;
	color: #4e4e4e;
}

/* Like Special cases (display on it's own) */
div.sharedaddy.sd-like-enabled .sd-like h3 {
	display: none;
}

div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget {
	width: 100%;
	float: none;
	position: absolute; /* Need to abs position placeholder and iframe so there isn't a jarring jump */
	top: 0;
}

.comment-likes-widget {
	width: 100%;
}


/* Make ratings block. @todo: remove inline style so !important is not needed */
.pd-rating,
.cs-rating {
	display: block !important;
}


/* Hide G+ title */
.sd-gplus .sd-title {
	display: none;
}

@media print {

	.jetpack-likes-widget-wrapper {
		display: none;
	}
}
/*! elementor-icons - v5.44.0 - 01-09-2025 */
@font-face{font-family:eicons;src:url(/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.eot?5.44.0);src:url(/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.eot?5.44.0#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.woff2?5.44.0) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.woff?5.44.0) format("woff"),url(/wp-content/plugins/elementor/assets/lib/eicons/css/../fonts/eicons.ttf?5.44.0) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/eicons/css/../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/css/../webfonts/fa-brands-400.eot);
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-brands-400.woff2) format("woff2"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-brands-400.woff) format("woff"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-brands-400.ttf) format("truetype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../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/css/../webfonts/fa-solid-900.eot);
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.woff2) format("woff2"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.woff) format("woff"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.ttf) format("truetype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/css/../webfonts/fa-solid-900.svg#fontawesome) format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }
/*  Elementor Custom Skin    */
/*  https://www.dudaster.com */
.swiper-container.swiper-initialized .ecs-posts{
   overflow:visible; 
}
.ecs-post-loop .elementor-page-title{
  display:block;
}

.ecs-loop-preview{
  height:100%;
  width:100%;
  background:lightgray;
  border:solid 1px gray;
  padding:5px;
}
.ecs-loop-preview h3{
  font-size:16px;
  font-weight:500;
  
}
.ecs-loop-preview span{
  font-size:12px;
}
.ecs-loop-preview .ecs-image-holder{
    width: 100%;
    line-height: 113px;
    background-color: #808080;
    font-size: 45px;
    text-align: center;
    vertical-align: middle;
    font-weight: 900;
    color: #929191;
}

.ecs-link-wrapper{
  cursor: pointer;
}
.elementor-widget-ele-loop-item, .elementor-widget-ele-loop-item > .elementor-widget-container,
.elementor-element-edit-mode.elementor-widget-ele-loop-item, .elementor-element-edit-mode.elementor-widget-ele-loop-item > .elementor-widget-container{
  
    height: 100%;

}
/* Fix for Elementor 3.4 */

.elementor-widget-posts .ecs-posts .elementor-button-wrapper {
    margin-top: 0;
}

/* Fix astra css issues */

.ecs-post-loop .ast-article-single{
    background-color: none;
    border-bottom:none;
    margin: 0;
    padding: 0;
}
.ecs-post-loop.ast-article-post{
    width:100%;
}
/* fix storeforent css issues*/

.theme-storefront.elementor-editor-active #primary.content-area{
	float:none;
} 

/* Lazy Load Animations */

.elementor-editor-active .ecs-lazyload a,.elementor-editor-preview .ecs-lazyload a{
  display:none;
}
.animation-hidden .ecs-lazy-load-animation{
  height:0;
  visibility:hidden;
}

/* loading bar progresion */
/*
<div class="barload-wrapper  ecs-lazy-load-animation"><div class="barload-border ecs-ll-brcolor"><div class="barload-whitespace"><div class="barload-line ecs-ll-bgcolor"></div></div></div></div>
*/
.barload-wrapper {
	width: 195px;
	height: 1em;
	position: relative;
	display:inline-block;
  font-size:16px;
  padding:10px;
}

.barload-border {
	border: 3px solid rgb(34,34,34);
	height: 100%;
	width: 100%;
	position: relative;
	
	top: -50%;
	padding: 4px 3px;
}

.barload-whitespace {
	overflow: hidden;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.barload-line {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgb(0,0,0);
	animation: barload-slide 2.75s steps(40) infinite;
		-o-animation: barload-slide 2.75s steps(40) infinite;
		-ms-animation: barload-slide 2.75s steps(40) infinite;
		-webkit-animation: barload-slide 2.75s steps(40) infinite;
		-moz-animation: barload-slide 2.75s steps(40) infinite;
}



@keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}

@-o-keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}

@-ms-keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}

@-webkit-keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}

@-moz-keyframes barload-slide {
	0% {
		left: -100%;
	}
	
	100% {
		left: 100%;
	}
}
/* four ball moving from left to right*/
/*
<div class="ballsload-container ecs-lazy-load-animation"><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div></div>
*/

.barload-wrapper ,.barload-wrapper * {
  box-sizing:content-box;
} 
.ballsload-container{
    font-size:16px;
    padding:10px;
    position:relative;
	}
	
.ballsload-container div {
	width: 1em;
	height: 1em;
	position: absolute;
	background-color: rgb(0,0,0);
	top: 0;
	border-radius: 50%;
}

.ballsload-container div:nth-child(1) {

	animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-o-animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-ms-animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-webkit-animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-moz-animation: ballsload-move 2.3s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
}

.ballsload-container div:nth-child(2) {

	animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-o-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-ms-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-webkit-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-moz-animation: ballsload-move 2.3s 172.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
}

.ballsload-container div:nth-child(3) {

	animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-o-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-ms-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-webkit-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-moz-animation: ballsload-move 2.3s 345ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
}

.ballsload-container div:nth-child(4) {

	animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-o-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-ms-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-webkit-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
		-moz-animation: ballsload-move 2.3s 517.5ms infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
}



@keyframes ballsload-move {
	0% {
		left: 0%;
	}
	100% {
		left: 100%;
	}
}

@-o-keyframes ballsload-move {
	0% {
		left: 0%;
	}
	100% {
		left: 100%;
	}
}

@-ms-keyframes ballsload-move {
	0% {
		left: 0%;
	}
	100% {
		left: 100%;
	}
}

@-webkit-keyframes ballsload-move {
	0% {
		left: 0%;
	}
	100% {
		left: 100%;
	}
}

@-moz-keyframes ballsload-move {
	0% {
		left: 0%;
	}
	100% {
		left: 100%;
	}
}


/* one ball sliding left to right */
/*
<div id="movingBallG" class="ecs-lazy-load-animation"><div class="movingBallLineG  ecs-ll-bgcolor"></div><div id="movingBallG_1" class="movingBallG ecs-ll-bgcolor"></div></div>
*/

#movingBallG{
	position:relative;
	width:250px;
	height:19px;
	display:inline-block;
  font-size:16px;
}

.movingBallLineG{
	position:absolute;
	left:0px;
	top:0.5em;
	height:0.25em;
	width:250px;
	background-color:rgb(0,0,0);
}

.movingBallG{
	background-color:rgb(0,0,0);
	position:absolute;
	top:0;
	left:0;
	width:1.188em;
	height:1.188em;
	border-radius:100px;
		-o-border-radius:100px;
		-ms-border-radius:100px;
		-webkit-border-radius:100px;
		-moz-border-radius:100px;
	animation-name:bounce_movingBallG;
		-o-animation-name:bounce_movingBallG;
		-ms-animation-name:bounce_movingBallG;
		-webkit-animation-name:bounce_movingBallG;
		-moz-animation-name:bounce_movingBallG;
	animation-duration:1.5s;
		-o-animation-duration:1.5s;
		-ms-animation-duration:1.5s;
		-webkit-animation-duration:1.5s;
		-moz-animation-duration:1.5s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-direction:normal;
		-o-animation-direction:normal;
		-ms-animation-direction:normal;
		-webkit-animation-direction:normal;
		-moz-animation-direction:normal;
}



@keyframes bounce_movingBallG{
	0%{
		left:0px;
	}

	50%{
		left:230px;
	}

	100%{
		left:0px;
	}
}

@-o-keyframes bounce_movingBallG{
	0%{
		left:0px;
	}

	50%{
		left:230px;
	}

	100%{
		left:0px;
	}
}

@-ms-keyframes bounce_movingBallG{
	0%{
		left:0px;
	}

	50%{
		left:230px;
	}

	100%{
		left:0px;
	}
}

@-webkit-keyframes bounce_movingBallG{
	0%{
		left:0px;
	}

	50%{
		left:230px;
	}

	100%{
		left:0px;
	}
}

@-moz-keyframes bounce_movingBallG{
	0%{
		left:0px;
	}

	50%{
		left:230px;
	}

	100%{
		left:0px;
	}
}


/* loading 3 dots moving form left to write */

/* 
<div class="lds-ellipsis ecs-lazy-load-animation"><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div><div class="ecs-ll-bgcolor"></div></div> 
*/

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 8em;
  height: 1em;
  font-size:13px;
}
.lds-ellipsis div {
  position: absolute;
  top: 0px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 1em;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 1em;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 4em;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 7em;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(3em, 0);
  }
}





.upk-slider .swiper-pagination,
.upk-dots-container .swiper-pagination,
.upk-arrows-dots-container .swiper-pagination {
  position: relative;
  display: flex;
  align-items: var(--upk-swiper-dots-align, center);
  justify-content: center;
}
.upk-slider .swiper-pagination .swiper-pagination-bullet,
.upk-dots-container .swiper-pagination .swiper-pagination-bullet,
.upk-arrows-dots-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  outline: none;
  transition: all 0.3s ease;
}
.upk-slider .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet,
.upk-dots-container .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet,
.upk-arrows-dots-container .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: var(--upk-swiper-dots-space-between, 5px);
  outline: none;
}
.upk-slider .swiper-pagination.swiper-pagination-fraction,
.upk-dots-container .swiper-pagination.swiper-pagination-fraction,
.upk-arrows-dots-container .swiper-pagination.swiper-pagination-fraction {
  bottom: auto;
  z-index: 1;
}
.upk-slider .swiper-pagination-bullets,
.upk-dots-container .swiper-pagination-bullets,
.upk-arrows-dots-container .swiper-pagination-bullets {
  min-height: var(--upk-swiper-dots-active-height, 10px);
}
.upk-slider .swiper-pagination-bullets .swiper-pagination-bullet,
.upk-dots-container .swiper-pagination-bullets .swiper-pagination-bullet,
.upk-arrows-dots-container .swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
}
.upk-slider .swiper-pagination-bullets .swiper-pagination-bullet:after,
.upk-dots-container .swiper-pagination-bullets .swiper-pagination-bullet:after,
.upk-arrows-dots-container .swiper-pagination-bullets .swiper-pagination-bullet:after {
  content: "";
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.upk-arrows-dots-container .swiper-pagination-bullets-dynamic,
.upk-slider .swiper-pagination-bullets-dynamic,
.upk-dots-container .swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  width: 100% !important;
  left: 0 !important;
  transform: translateX(0) !important;
}
.upk-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.upk-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.upk-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.upk-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.upk-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.upk-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.upk-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.upk-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.upk-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.upk-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.upk-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.upk-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.upk-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.upk-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.upk-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.upk-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.upk-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.upk-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.upk-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.upk-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.upk-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

[class*=upk-arrows-align-top] .upk-arrows-container {
  transform: translateY(-40px);
}

[class*=upk-arrows-align-bottom] .upk-arrows-container {
  transform: translateY(40px);
}

[class*=upk-dots-align-top] .upk-dots-container {
  transform: translateY(-30px);
}

[class*=upk-dots-align-bottom] .upk-dots-container {
  transform: translateY(30px);
}

[class*=upk-arrows-dots-align-top] .upk-arrows-dots-container {
  transform: translateY(-40px);
}

[class*=upk-arrows-dots-align-bottom] .upk-arrows-dots-container {
  transform: translateY(40px);
}

.upk-arrows-align-center .upk-position-center,
.upk-arrows-dots-align-center .upk-position-center {
  width: 100%;
}
.upk-arrows-align-center .upk-navigation-prev,
.upk-arrows-dots-align-center .upk-navigation-prev {
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.upk-arrows-align-center .upk-navigation-next,
.upk-arrows-dots-align-center .upk-navigation-next {
  right: 0;
  position: absolute;
  transform: translateY(-50%);
}

.rtl .upk-arrows-align-center .upk-navigation-prev,
.rtl .upk-arrows-dots-align-center .upk-navigation-prev {
  right: 0;
  left: inherit;
}
.rtl .upk-arrows-align-center .upk-navigation-next,
.rtl .upk-arrows-dots-align-center .upk-navigation-next {
  left: 0;
  right: inherit;
}

.upk-arrows-dots-align-center .upk-dots-container .swiper-pagination,
.upk-arrows-dots-align-center .upk-arrows-dots-container .swiper-pagination {
  position: absolute;
  width: 100% !important;
}

.upk-navigation-type-progress .swiper-pagination-progress {
  transform: translateY(15px);
  height: 5px;
  width: 100%;
}

[class*=" elementor-widget-upk-"] svg.e-font-icon-svg {
  height: 1em;
  width: 1em;
}

[class*=" elementor-widget-upk-"] .swiper-pagination-fraction, [class*=" elementor-widget-upk-"] .swiper-pagination-custom, [class*=" elementor-widget-upk-"] .swiper-horizontal > .swiper-pagination-bullets, [class*=" elementor-widget-upk-"] .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto;
}

[class*=elementor-widget-upk-] .upk-arrows-container {
  -webkit-transform: translate(var(--upk-swiper-carousel-arrows-ncx, 0), var(--upk-swiper-carousel-arrows-ncy, 40));
  transform: translate(var(--upk-swiper-carousel-arrows-ncx, 0), var(--upk-swiper-carousel-arrows-ncy, 40));
}
[class*=elementor-widget-upk-] .upk-dots-container {
  -webkit-transform: translate(var(--upk-swiper-carousel-dots-nnx, 0), var(--upk-swiper-carousel-dots-nny, 30));
  transform: translate(var(--upk-swiper-carousel-dots-nnx, 0), var(--upk-swiper-carousel-dots-nny, 30));
}
[class*=elementor-widget-upk-] .upk-arrows-dots-container {
  -webkit-transform: translate(var(--upk-swiper-carousel-both-ncx, 0), var(--upk-swiper-carousel-both-ncy, 40));
  transform: translate(var(--upk-swiper-carousel-both-ncx, 0), var(--upk-swiper-carousel-both-ncy, 40));
}
[class*=elementor-widget-upk-] .upk-arrows-fraction-container {
  -webkit-transform: translate(var(--upk-swiper-carousel-arrows-fraction-ncx, 0), var(--upk-swiper-carousel-arrows-fraction-ncy, 40));
  transform: translate(var(--upk-swiper-carousel-arrows-fraction-ncx, 0), var(--upk-swiper-carousel-arrows-fraction-ncy, 40));
}
[class*=elementor-widget-upk-] .upk-position-center-left .upk-arrows-container,
[class*=elementor-widget-upk-] .upk-position-center-right .upk-arrows-container {
  -webkit-transform: translate(var(--upk-swiper-carousel-arrows-ncx, 0), var(--upk-swiper-carousel-arrows-ncy, 0)) rotate(90deg);
  transform: translate(var(--upk-swiper-carousel-arrows-ncx, 0), var(--upk-swiper-carousel-arrows-ncy, 0)) rotate(90deg);
}
[class*=elementor-widget-upk-] .upk-position-center-left .upk-dots-container,
[class*=elementor-widget-upk-] .upk-position-center-right .upk-dots-container {
  -webkit-transform: translate(var(--upk-swiper-carousel-dots-nnx, 0), var(--upk-swiper-carousel-dots-nny, 0)) rotate(90deg);
  transform: translate(var(--upk-swiper-carousel-dots-nnx, 0), var(--upk-swiper-carousel-dots-nny, 0)) rotate(90deg);
}
[class*=elementor-widget-upk-] .upk-position-center-left .upk-arrows-dots-container,
[class*=elementor-widget-upk-] .upk-position-center-right .upk-arrows-dots-container {
  -webkit-transform: translate(var(--upk-swiper-carousel-both-ncx, 0), var(--upk-swiper-carousel-both-ncy, 0)) rotate(90deg);
  transform: translate(var(--upk-swiper-carousel-both-ncx, 0), var(--upk-swiper-carousel-both-ncy, 0)) rotate(90deg);
}
[class*=elementor-widget-upk-] .upk-position-center-left .upk-arrows-fraction-container,
[class*=elementor-widget-upk-] .upk-position-center-right .upk-arrows-fraction-container {
  -webkit-transform: translate(var(--upk-swiper-carousel-arrows-fraction-ncx, 0), var(--upk-swiper-carousel-arrows-fraction-ncy, 0)) rotate(90deg);
  transform: translate(var(--upk-swiper-carousel-arrows-fraction-ncx, 0), var(--upk-swiper-carousel-arrows-fraction-ncy, 0)) rotate(90deg);
}

[class*=elementor-widget-upk-] a:hover {
  text-decoration: none;
}
[class*=elementor-widget-upk-] .swiper-pagination .swiper-pagination-bullet {
  transition: all 350ms cubic-bezier(0.38, 0.91, 0.58, 1);
}
[class*=elementor-widget-upk-] .upk-title a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  font-style: inherit;
  text-decoration: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* Common Less */
.elementor-lightbox *, .elementor-lightbox *::before, .elementor-lightbox *::after {
  box-sizing: border-box;
}

.title-animation-middle-overline,
.title-animation-middle-underline,
.title-animation-overline,
.title-animation-underline {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
  display: inline;
}
.title-animation-middle-overline:hover,
.title-animation-middle-underline:hover,
.title-animation-overline:hover,
.title-animation-underline:hover {
  background-size: 100% 2px;
}
.title-animation-middle-overline:focus,
.title-animation-middle-underline:focus,
.title-animation-overline:focus,
.title-animation-underline:focus {
  background-size: 100% 2px;
}

.title-animation-underline {
  background-position: 0% 100%;
}

.title-animation-overline {
  background-position: 0% 0;
}

.title-animation-middle-overline {
  background-position: 50% 0%;
}

.title-animation-middle-underline {
  background-position: 50% 100%;
}

.title-animation-style-5 {
  background: linear-gradient(to right, currentColor 0%, currentColor 98%);
  background-size: 0px 2px;
  background-repeat: no-repeat;
  background-position: left 85%;
}
.title-animation-style-5:hover {
  background-size: 100% 2px;
}
@keyframes backgroundGradient {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}

.title-animation-style-6 {
  position: relative;
  text-decoration: none;
}
.title-animation-style-6:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.title-animation-style-6:hover:after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

[class*=elementor-widget-upk-] {
  /* swiper for 3rd party style */
}
[class*=elementor-widget-upk-] .swiper-pagination-fraction,
[class*=elementor-widget-upk-] .swiper-pagination-custom,
[class*=elementor-widget-upk-] .swiper-horizontal .swiper-pagination-bullets,
[class*=elementor-widget-upk-] .swiper-horizontal + .swiper-pagination-bullets {
  bottom: -50px;
  width: 100%;
}
[class*=elementor-widget-upk-] .swiper-pagination-fraction .swiper-pagination-bullet,
[class*=elementor-widget-upk-] .swiper-pagination-custom .swiper-pagination-bullet,
[class*=elementor-widget-upk-] .swiper-horizontal .swiper-pagination-bullets .swiper-pagination-bullet,
[class*=elementor-widget-upk-] .swiper-horizontal + .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.upk-navigation-type-arrows-fraction .swiper-pagination {
  position: initial;
}

.rtl .upk-arrows-container,
.rtl .upk-arrows-fraction-container,
.rtl .upk-arrows-dots-container {
  direction: rtl;
}
.rtl .upk-arrows-container .swiper-pagination,
.rtl .upk-arrows-fraction-container .swiper-pagination,
.rtl .upk-arrows-dots-container .swiper-pagination {
  direction: ltr;
}
.rtl .upk-news-ticker-controls {
  display: flex;
  flex-direction: row-reverse;
}

[class*=elementor-widget-upk-] {
  /* Swiper */
}
[class*=elementor-widget-upk-] .swiper .elementor-lightbox-content-source {
  display: none;
}
[class*=elementor-widget-upk-] .swiper-horizontal + .swiper-pagination-progressbar,
[class*=elementor-widget-upk-] .swiper-vertical + .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
}
[class*=elementor-widget-upk-] .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
[class*=elementor-widget-upk-] .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.upk-alert {
  padding: 20px;
  background: #2b2d42;
  color: #fff;
  border-radius: 4px;
}

/**
 * Ajax Loadmore
 */
.upk-loadmore-container {
  text-align: center;
  margin-top: 30px;
}
.upk-loadmore-container .upk-loadmore-btn {
  padding: 10px 20px;
  border-radius: 4px;
  background: #EF233C;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
}
.upk-loadmore-container .upk-loadmore-btn:hover {
  background: #EDF2F4;
  color: #EF233C;
}
.upk-loadmore-container .upk-ajax-loading,
.upk-loadmore-container .upk-ajax-loading:before,
.upk-loadmore-container .upk-ajax-loading:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.upk-loadmore-container .upk-ajax-loading {
  color: #EF233C;
  font-size: 5px;
  margin: 30px auto 40px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.upk-loadmore-container .upk-ajax-loading:before,
.upk-loadmore-container .upk-ajax-loading:after {
  content: "";
  position: absolute;
  top: 0;
}
.upk-loadmore-container .upk-ajax-loading:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.upk-loadmore-container .upk-ajax-loading:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

.ep-pagination .upk-pagination {
  margin: 20px 0;
}
.ep-pagination .upk-pagination li {
  list-style-type: none;
}
.ep-pagination .upk-pagination li:hover a, .ep-pagination .upk-pagination li.upk-active a {
  color: #ef233c;
}
.ep-pagination .upk-pagination li a {
  font-size: 16px;
  font-weight: 600;
  color: #8d99ae;
  line-height: 1;
}
.ep-pagination .upk-pagination li:nth-child(1) {
  padding-left: 0;
}
.ep-pagination .upk-pagination li.upk-pagination-previous a, .ep-pagination .upk-pagination li.upk-pagination-next a {
  border: 1px solid #8d99ae;
  padding: 10px;
  border-radius: 3px;
  display: inline-block;
}
.ep-pagination .upk-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  align-items: center;
}
.ep-pagination .upk-pagination > * {
  flex: none;
  padding-left: 20px;
  position: relative;
}
.ep-pagination .upk-pagination > * > * {
  color: #8d99ae;
}
.ep-pagination .upk-pagination > * > :hover,
.ep-pagination .upk-pagination > * > :focus {
  color: #8d99ae;
  text-decoration: none;
}
.ep-pagination .upk-pagination > .upk-active > * {
  color: #8d99ae;
}
.ep-pagination .upk-pagination > .upk-disabled > * {
  color: #8d99ae;
}
.ep-pagination .upk-pagination-dot-dot {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ep-pagination .upk-pagination-dot-dot span {
  line-height: 1px;
  height: 13px;
  color: #bbb !important;
}

[class*=elementor-widget-upk-] .upk-navigation-prev, [class*=elementor-widget-upk-] .upk-navigation-next {
  cursor: pointer;
}
[class*=elementor-widget-upk-] .swiper-coverflow {
  padding-top: 15px;
}
[class*=elementor-widget-upk-] .swiper-coverflow .swiper-slide {
  transition-property: transform, border, background;
}
[class*=elementor-widget-upk-] .swiper-horizontal > .swiper-pagination-progress {
  top: auto;
  bottom: 0;
}

.elementor-pagination-position-inside .swiper-pagination-fraction,
.elementor-pagination-position-inside .swiper-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
}

.elementor-pagination-position-outside .swiper {
  padding-bottom: 40px;
}
.elementor-pagination-position-outside .swiper-pagination-fraction,
.elementor-pagination-position-outside .swiper-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}

/* Button icon align */
.upk-button-icon-align-left {
  float: left;
}

.upk-button-icon-align-right {
  float: right;
}

.upk-flex-align-left {
  order: -1;
}

.upk-flex-align-right {
  order: 99;
}

.upk-display-inline-block {
  display: inline-block !important;
}

[class*=upk-position-top],
[class*=upk-position-bottom],
[class*=upk-position-left],
[class*=upk-position-right],
[class*=upk-position-center] {
  position: absolute !important;
  max-width: 100%;
}

.upk-position-top {
  top: 0;
  left: 0;
  right: 0;
}

.upk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

.upk-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}

.upk-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}

.upk-position-top-left {
  top: 0;
  left: 0;
}

.upk-position-top-right {
  top: 0;
  right: 0;
}

.upk-position-bottom-left {
  bottom: 0;
  left: 0;
}

.upk-position-bottom-right {
  bottom: 0;
  right: 0;
}

.upk-position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}

[class*=upk-position-center-left],
[class*=upk-position-center-right] {
  top: 50%;
  transform: translateY(-50%);
}

.upk-position-center-left {
  left: 0;
}

.upk-position-center-right {
  right: 0;
}

.upk-position-center-left-out {
  right: 100%;
  width: max-content;
}

.upk-position-center-right-out {
  left: 100%;
  width: max-content;
}

.upk-position-top-center,
.upk-position-bottom-center {
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}

.upk-position-top-center {
  top: 0;
}

.upk-position-bottom-center {
  bottom: 0;
}

.upk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.upk-position-relative {
  position: relative !important;
}

.upk-position-absolute {
  position: absolute !important;
}

.upk-position-fixed {
  position: fixed !important;
}

.upk-position-z-index {
  z-index: 1;
}

.upk-position-small {
  max-width: calc(100% - 30px);
  margin: 15px;
}

.upk-position-small.upk-position-center {
  transform: translate(-50%, -50%) translate(-15px, -15px);
}

.upk-position-small[class*=upk-position-center-left],
.upk-position-small[class*=upk-position-center-right] {
  transform: translateY(-50%) translateY(-15px);
}

.upk-position-small.upk-position-top-center,
.upk-position-small.upk-position-bottom-center {
  transform: translateX(-50%) translateX(-15px);
}

.upk-position-medium {
  max-width: calc(100% - 60px);
  margin: 30px;
}

.upk-position-medium.upk-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}

.upk-position-medium[class*=upk-position-center-left],
.upk-position-medium[class*=upk-position-center-right] {
  transform: translateY(-50%) translateY(-30px);
}

.upk-position-medium.upk-position-top-center,
.upk-position-medium.upk-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}

.upk-position-large {
  max-width: calc(100% - 60px);
  margin: 30px;
}

.upk-position-large.upk-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}

.upk-position-large[class*=upk-position-center-left],
.upk-position-large[class*=upk-position-center-right] {
  transform: translateY(-50%) translateY(-30px);
}

.upk-position-large.upk-position-top-center,
.upk-position-large.upk-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}

@media (min-width: 1200px) {
  .upk-position-large {
    max-width: calc(100% - 100px);
    margin: 50px;
  }
  .upk-position-large.upk-position-center {
    transform: translate(-50%, -50%) translate(-50px, -50px);
  }
  .upk-position-large[class*=upk-position-center-left],
  .upk-position-large[class*=upk-position-center-right] {
    transform: translateY(-50%) translateY(-50px);
  }
  .upk-position-large.upk-position-top-center,
  .upk-position-large.upk-position-bottom-center {
    transform: translateX(-50%) translateX(-50px);
  }
}
.upk-transition-toggle {
  -webkit-tap-highlight-color: transparent;
}

.upk-transition-toggle:focus {
  outline: none;
}

.upk-transition-fade,
[class*=upk-transition-scale],
[class*=upk-transition-slide] {
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
  opacity: 0;
}

.upk-transition-toggle:hover .upk-transition-fade,
.upk-transition-toggle:focus .upk-transition-fade,
.upk-transition-active.upk-active .upk-transition-fade {
  opacity: 1;
}

.upk-transition-scale-up {
  transform: scale(1, 1);
}

.upk-transition-scale-down {
  transform: scale(1.1, 1.1);
}

.upk-transition-toggle:hover .upk-transition-scale-up,
.upk-transition-toggle:focus .upk-transition-scale-up,
.upk-transition-active.upk-active .upk-transition-scale-up {
  opacity: 1;
  transform: scale(1.1, 1.1);
}

.upk-transition-toggle:hover .upk-transition-scale-down,
.upk-transition-toggle:focus .upk-transition-scale-down,
.upk-transition-active.upk-active .upk-transition-scale-down {
  opacity: 1;
  transform: scale(1, 1);
}

.upk-transition-slide-top {
  transform: translateY(-100%);
}

.upk-transition-slide-bottom {
  transform: translateY(100%);
}

.upk-transition-slide-left {
  transform: translateX(-100%);
}

.upk-transition-slide-right {
  transform: translateX(100%);
}

.upk-transition-slide-top-small {
  transform: translateY(-10px);
}

.upk-transition-slide-bottom-small {
  transform: translateY(10px);
}

.upk-transition-slide-left-small {
  transform: translateX(-10px);
}

.upk-transition-slide-right-small {
  transform: translateX(10px);
}

.upk-transition-slide-top-medium {
  transform: translateY(-50px);
}

.upk-transition-slide-bottom-medium {
  transform: translateY(50px);
}

.upk-transition-slide-left-medium {
  transform: translateX(-50px);
}

.upk-transition-slide-right-medium {
  transform: translateX(50px);
}

.upk-transition-toggle:hover [class*=upk-transition-slide],
.upk-transition-toggle:focus [class*=upk-transition-slide],
.upk-transition-active.upk-active [class*=upk-transition-slide] {
  opacity: 1;
  transform: translate(0, 0);
}

.upk-transition-opaque {
  opacity: 1;
}

.upk-transition-slow {
  transition-duration: 0.7s;
}

[hidden],
.upk-hidden {
  display: none !important;
}

@media (min-width: 640px) {
  .upk-hidden\@s {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .upk-hidden\@m {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .upk-hidden\@l {
    display: none !important;
  }
}
@media (min-width: 1600px) {
  .upk-hidden\@xl {
    display: none !important;
  }
}
@media (max-width: 639px) {
  .upk-visible\@s {
    display: none !important;
  }
}
@media (max-width: 959px) {
  .upk-visible\@m {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .upk-visible\@l {
    display: none !important;
  }
}
@media (max-width: 1599px) {
  .upk-visible\@xl {
    display: none !important;
  }
}
.upk-invisible {
  visibility: hidden !important;
}

.upk-flex {
  display: flex;
}

.upk-flex-inline {
  display: inline-flex;
}

.upk-flex::before,
.upk-flex::after,
.upk-flex-inline::before,
.upk-flex-inline::after {
  display: none;
}

.upk-flex-left {
  justify-content: flex-start;
}

.upk-flex-center {
  justify-content: center;
}

.upk-flex-right {
  justify-content: flex-end;
}

.upk-flex-between {
  justify-content: space-between;
}

.upk-flex-around {
  justify-content: space-around;
}

@media (min-width: 640px) {
  .upk-flex-left\@s {
    justify-content: flex-start;
  }
  .upk-flex-center\@s {
    justify-content: center;
  }
  .upk-flex-right\@s {
    justify-content: flex-end;
  }
  .upk-flex-between\@s {
    justify-content: space-between;
  }
  .upk-flex-around\@s {
    justify-content: space-around;
  }
}
@media (min-width: 960px) {
  .upk-flex-left\@m {
    justify-content: flex-start;
  }
  .upk-flex-center\@m {
    justify-content: center;
  }
  .upk-flex-right\@m {
    justify-content: flex-end;
  }
  .upk-flex-between\@m {
    justify-content: space-between;
  }
  .upk-flex-around\@m {
    justify-content: space-around;
  }
}
@media (min-width: 1200px) {
  .upk-flex-left\@l {
    justify-content: flex-start;
  }
  .upk-flex-center\@l {
    justify-content: center;
  }
  .upk-flex-right\@l {
    justify-content: flex-end;
  }
  .upk-flex-between\@l {
    justify-content: space-between;
  }
  .upk-flex-around\@l {
    justify-content: space-around;
  }
}
@media (min-width: 1600px) {
  .upk-flex-left\@xl {
    justify-content: flex-start;
  }
  .upk-flex-center\@xl {
    justify-content: center;
  }
  .upk-flex-right\@xl {
    justify-content: flex-end;
  }
  .upk-flex-between\@xl {
    justify-content: space-between;
  }
  .upk-flex-around\@xl {
    justify-content: space-around;
  }
}
.upk-flex-stretch {
  align-items: stretch;
}

.upk-flex-top {
  align-items: flex-start;
}

.upk-flex-middle {
  align-items: center;
}

.upk-flex-bottom {
  align-items: flex-end;
}

.upk-flex-row {
  flex-direction: row;
}

.upk-flex-row-reverse {
  flex-direction: row-reverse;
}

.upk-flex-column {
  flex-direction: column;
}

.upk-flex-column-reverse {
  flex-direction: column-reverse;
}

.upk-flex-nowrap {
  flex-wrap: nowrap;
}

.upk-flex-wrap {
  flex-wrap: wrap;
}

.upk-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.upk-flex-wrap-stretch {
  align-content: stretch;
}

.upk-flex-wrap-top {
  align-content: flex-start;
}

.upk-flex-wrap-middle {
  align-content: center;
}

.upk-flex-wrap-bottom {
  align-content: flex-end;
}

.upk-flex-wrap-between {
  align-content: space-between;
}

.upk-flex-wrap-around {
  align-content: space-around;
}

.upk-flex-first {
  order: -1;
}

.upk-flex-last {
  order: 99;
}

@media (min-width: 640px) {
  .upk-flex-first\@s {
    order: -1;
  }
  .upk-flex-last\@s {
    order: 99;
  }
}
@media (min-width: 960px) {
  .upk-flex-first\@m {
    order: -1;
  }
  .upk-flex-last\@m {
    order: 99;
  }
}
@media (min-width: 1200px) {
  .upk-flex-first\@l {
    order: -1;
  }
  .upk-flex-last\@l {
    order: 99;
  }
}
@media (min-width: 1600px) {
  .upk-flex-first\@xl {
    order: -1;
  }
  .upk-flex-last\@xl {
    order: 99;
  }
}
.upk-flex-none {
  flex: none;
}

.upk-flex-auto {
  flex: auto;
}

.upk-flex-1 {
  flex: 1;
}

.upk-slidenav {
  padding: 5px 10px;
  color: rgba(102, 102, 102, 0.5);
}

.upk-slidenav:hover,
.upk-slidenav:focus {
  color: rgba(102, 102, 102, 0.9);
  outline: none;
}

.upk-slidenav:active {
  color: rgba(102, 102, 102, 0.5);
}

.upk-slidenav-large {
  padding: 10px 10px;
}

.upk-slidenav-container {
  display: flex;
}

.upk-icon {
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-transform: none;
  padding: 0;
  background-color: transparent;
  display: inline-block;
  fill: currentcolor;
  line-height: 0;
}

/* ------------------------------------------------
  [1] Tooltip css Styles
-------------------------------------------------*/
[class*=elementor-widget-upk-] [aria-label][role~=tooltip] {
  position: relative;
}
[class*=elementor-widget-upk-] [aria-label][role~=tooltip]::before,
[class*=elementor-widget-upk-] [aria-label][role~=tooltip]::after {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}
[class*=elementor-widget-upk-] [aria-label][role~=tooltip]::before {
  background-size: 100% auto !important;
  content: "";
}
[class*=elementor-widget-upk-] [aria-label][role~=tooltip]::after {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #ffffff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: capitalize;
  padding: 10px 15px;
  box-sizing: content-box;
  width: 250px;
}
[class*=elementor-widget-upk-] [aria-label][role~=tooltip]:hover::before,
[class*=elementor-widget-upk-] [aria-label][role~=tooltip]:hover::after,
[class*=elementor-widget-upk-] [aria-label][role~=tooltip]:focus::before,
[class*=elementor-widget-upk-] [aria-label][role~=tooltip]:focus::after {
  opacity: 1;
  pointer-events: auto;
}

.upk-inline-block {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
}

/* ------------------------------------------------
    [2] Position Modifiers
  -------------------------------------------------*/
[class*=elementor-widget-upk-] {
  /* ------------------------------------------------
      [2.1] Top Left
    -------------------------------------------------*/
  /* ------------------------------------------------
      [2.2] Top Right
    -------------------------------------------------*/
  /* ------------------------------------------------
      [2.3] Bottom
    -------------------------------------------------*/
  /* ------------------------------------------------
      [2.4] Bottom Left
    -------------------------------------------------*/
  /* ------------------------------------------------
      [2.5] Bottom Right
    -------------------------------------------------*/
  /* ------------------------------------------------
      [2.6] Left
    -------------------------------------------------*/
  /* ------------------------------------------------
      [2.7] Right
    -------------------------------------------------*/
  /* ------------------------------------------------
      [3] Size
    -------------------------------------------------*/
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=top]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 6px;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=top]::after {
  margin-bottom: 11px;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=top]::before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=top]:hover::before {
  transform: translate3d(-50%, -5px, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=top]::after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=top]:hover::after {
  transform: translate3d(-50%, -5px, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=top-left]::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=top-left]:hover::after {
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=top-right]::after {
  transform: translate3d(calc(0% - 16px), 0, 0);
  bottom: 100%;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=top-right]:hover::after {
  transform: translate3d(calc(0% - 16px), -5px, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=bottom]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=bottom]::after {
  margin-top: 11px;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=bottom]::before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=bottom]:hover::before {
  transform: translate3d(-50%, 0, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position|=bottom]::after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=bottom]:hover::after {
  transform: translate3d(-50%, 0, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=bottom-left]::after {
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=bottom-left]:hover::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=bottom-right]::after {
  transform: translate3d(calc(0% - 16px), -10px, 0);
  top: 100%;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=bottom-right]:hover::after {
  transform: translate3d(calc(0% - 16px), 0, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=left]::before,
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=left]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=left]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=left]::after {
  margin-right: 11px;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=left]:hover::before,
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=left]:hover::after {
  transform: translate3d(0, -50%, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=right]::before,
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=right]::after {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=right]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=right]::after {
  margin-left: 11px;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=right]:hover::before,
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-position=right]:hover::after {
  transform: translate3d(0, -50%, 0);
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-size=small]::after {
  white-space: initial;
  width: 80px;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-size=medium]::after {
  white-space: initial;
  width: 150px;
}
[class*=elementor-widget-upk-] [role~=tooltip][data-microtip-size=large]::after {
  white-space: initial;
  width: 260px;
}

.upk-in-animation {
  perspective: var(--upk-perspective, 600px);
  -webkit-perspective: var(--upk-perspective, 600px);
}
.upk-in-animation .upk-item {
  opacity: 0;
  transform-origin: var(--upk-transform-origin, center top);
  transform-style: preserve-3d;
  transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate(var(--upk-translate-x, 0), var(--upk-translate-y, 100%)) rotateX(var(--upk-rotate-x, -80deg)) rotateY(var(--upk-rotate-y, 0)) rotateZ(var(--upk-rotate-z, 0)) scaleX(var(--upk-scale-x, 1)) scaleY(var(--upk-scale-y, 1)) skewX(var(--upk-skew-x, 0)) skewY(var(--upk-skew-y, 0));
  transform: translate(var(--upk-translate-x, 0), var(--upk-translate-y, 100%)) rotateX(var(--upk-rotate-x, -80deg)) rotateY(var(--upk-rotate-y, 0)) rotateZ(var(--upk-rotate-z, 0)) scaleX(var(--upk-scale-x, 1)) scaleY(var(--upk-scale-y, 1)) skewX(var(--upk-skew-x, 0)) skewY(var(--upk-skew-y, 0));
}
.upk-in-animation .upk-item.is-inview {
  transform: none;
  opacity: 1;
  transition-duration: var(--upk-transition-duration, 800ms) !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .upk-hide-orphan-yes .upk-hide-orphan-tablet {
    display: none !important;
  }
}/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.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: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.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: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.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: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.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: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.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: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.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: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.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: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.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: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l0uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l9uumjng.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l1uumjng.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l6uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l2uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l3uumjng.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: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc53fwrk3iltcvneqg7ca725jhhknnqk6l5uum.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: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.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: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.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: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.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: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.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: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.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: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.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: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.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: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.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: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.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: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.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: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.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: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.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: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.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: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.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: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.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: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.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: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2jl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia0zl7suc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2zl7suc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia2pl7suc.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: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia25l7suc.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: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/inter-ucc73fwrk3iltehus_nvmrmxcp50sjia1zl7.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 Mono';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3cwwokc.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 Mono';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3mwwokc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom36wwokc.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 Mono';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3kwwokc.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 Mono';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3owwokc.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 Mono';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom32wwg.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 Mono';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3cwwokc.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 Mono';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3mwwokc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom36wwokc.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 Mono';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3kwwokc.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 Mono';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3owwokc.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 Mono';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom32wwg.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 Mono';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3cwwokc.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 Mono';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3mwwokc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom36wwokc.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 Mono';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3kwwokc.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 Mono';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3owwokc.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 Mono';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom32wwg.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 Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3cwwokc.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 Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3mwwokc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom36wwokc.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 Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3kwwokc.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 Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3owwokc.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 Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom32wwg.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 Mono';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3cwwokc.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 Mono';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3mwwokc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom36wwokc.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 Mono';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3kwwokc.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 Mono';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3owwokc.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 Mono';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom32wwg.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 Mono';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3cwwokc.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 Mono';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3mwwokc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom36wwokc.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 Mono';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3kwwokc.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 Mono';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3owwokc.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 Mono';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom32wwg.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 Mono';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3cwwokc.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 Mono';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3mwwokc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom36wwokc.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 Mono';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3kwwokc.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 Mono';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom3owwokc.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 Mono';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x7df4xlvmf-bfr8bxmijhom32wwg.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 Mono';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhgq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhpq3-oxg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhiq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijheq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhfq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhlq38.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 Mono';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhgq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhpq3-oxg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhiq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijheq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhfq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhlq38.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 Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhgq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhpq3-oxg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhiq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijheq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhfq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhlq38.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 Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhgq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhpq3-oxg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhiq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijheq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhfq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhlq38.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 Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhgq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhpq3-oxg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhiq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijheq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhfq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhlq38.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 Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhgq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhpq3-oxg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhiq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijheq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhfq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhlq38.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 Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhgq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhpq3-oxg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhiq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijheq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhfq3-oxg.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 Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://staging-7e68-incluseum.wpcomstaging.com/wp-content/uploads/elementor/google-fonts/fonts/robotomono-l0x5df4xlvmf-bfr8bxmijhlq38.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;
}
