/**
 * 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;
	}
}
.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}}
img{max-width:100%;height:auto}.blossomthemes-email-newsletter-wrapper.bg-img{background-size:cover!important;position:relative}.blossomthemes-email-newsletter-wrapper.bg-img.has-overlay:before,.bten-popup-text-wraper.has-overlay:before{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);content:''}.blossomthemes-email-newsletter-wrapper.bg-img.no-overlay:before{background:0 0}.bten-popup-text-wraper.has-overlay{position:relative}.blossomthemes-email-newsletter-wrapper .img-holder{width:40%}.blossomthemes-email-newsletter-wrapper .img-holder img{height:100%;vertical-align:top;width:100%;object-fit:cover}.blossomthemes-email-newsletter-wrapper .bten-popup-text-wraper{width:60%;flex:initial;padding:30px}.blossomthemes-email-newsletter-wrapper .text-holder{margin:0 0 20px;position:relative;z-index:1}.blossomthemes-email-newsletter-wrapper form{position:relative;z-index:1}.blossomthemes-email-newsletter-wrapper form input[type=text]{margin:10px 0 0}.blossomthemes-email-newsletter-wrapper form label .check-mark{margin-right:10px;width:14px;height:14px;border-radius:2px;border:1px solid #dcdfe6;margin-top:3px;position:relative}.blossomthemes-email-newsletter-wrapper form label .check-mark:before{position:absolute;top:50%;left:50%;width:8px;height:12px;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 448 512'%3E%3Cpath d='M413.505 91.951L133.49 371.966l-98.995-98.995c-4.686-4.686-12.284-4.686-16.971 0L6.211 284.284c-4.686 4.686-4.686 12.284 0 16.971l118.794 118.794c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-11.314-11.314c-4.686-4.686-12.284-4.686-16.97 0z'/%3E%3C/svg%3E") center center no-repeat;content:'';display:none}.blossomthemes-email-newsletter-wrapper form label input[type=checkbox]:checked+.check-mark:before{display:block}.blossomthemes-email-newsletter-wrapper form label .text{flex-basis:0%;flex-grow:1}.blossomthemes-email-newsletter-wrapper form .subscribe-inner-wrap{display:flex;flex-wrap:wrap;align-items:flex-start}.blossomthemes-email-newsletter-wrapper form .subscribe-inner-wrap input[type=checkbox]{display:none}.blossomthemes-email-newsletter-wrapper form input[type=submit]{display:block;width:100%;text-align:center;margin-top:10px}.blossom-newsletter-popup-active{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.8);display:flex;align-items:center;justify-content:center;z-index:999999;opacity:0;visibility:hidden;-webkit-transition:.35s;-moz-transition:.35s;transition:.35s}.blossom-newsletter-popup-active.popup-open{opacity:1;visibility:visible}.blossom-newsletter-popup-active .blossomthemes-email-newsletter-wrapper{max-width:670px;padding:0;box-sizing:border-box;position:relative;display:flex;flex-wrap:wrap;width:calc(100% - 35px)}.blossom-newsletter-popup-active .blossomthemes-email-newsletter-wrapper .bten-del-icon{position:absolute;top:-15px;right:-15px;background:#000;width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#fff!important;z-index:2}.blossomthemes-email-newsletter-wrapper{padding:0;position:relative}.blossomthemes-email-newsletter-wrapper .bten-response{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.85);color:#fff!important;display:none;z-index:2}.blossomthemes-email-newsletter-wrapper .bten-response span{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.blossomthemes-email-newsletter-wrapper form>label{margin-top:10px;display:block}@media screen and (max-width:767px){.blossomthemes-email-newsletter-wrapper .bten-popup-text-wraper{padding-left:15px;padding-right:15px}.blossomthemes-email-newsletter-wrapper .bten-popup-text-wraper form input[type=submit]{padding-left:10px;padding-right:10px}}.widget_bttk_author_bio{text-align:center}.widget_bttk_author_bio .image-holder img{vertical-align:top}.widget_bttk_author_bio .image-holder{margin:0 0 30px}.widget_bttk_author_bio .title-holder{font-size:28px;line-height:32px;margin:0 0 20px}.widget_bttk_author_bio .text-signature{font-family:'Dancing Script',cursive;font-size:30px;color:#000;font-style:italic;line-height:1.3;margin-bottom:10px}.widget_bttk_author_bio .signature-holder{margin-bottom:10px}.widget_bttk_author_bio .readmore{display:inline-block;padding:10px 30px;background:#ccc;margin:0 0 30px}.widget_bttk_author_bio .author-socicons{margin:0;padding:0;list-style:none}.widget_bttk_author_bio .author-socicons li{display:inline-block;margin:0 3px}.widget_bttk_custom_categories ul li{background-size:cover;width:100%;height:100%;position:relative}.widget_bttk_custom_categories ul li:after{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.25);content:''}.widget_bttk_custom_categories ul li a{display:block;width:100%;height:100%;color:#fff;overflow:hidden;position:relative;z-index:1}.widget_bttk_custom_categories ul li .cat-title{float:left;font-size:14px;text-transform:uppercase}.widget_bttk_custom_categories ul li .post-count{float:right;font-size:13px;width:99px;height:48px;background:#111;text-align:center;line-height:48px;-webkit-transition:linear .2s;-moz-transition:linear .2s;transition:linear .2s}.widget_bttk_custom_categories ul li a:hover .post-count,.widget_bttk_custom_categories ul li a:hover:focus .post-count{width:124px}.widget_bttk_popular_post ul li,.widget_bttk_pro_recent_post ul li{overflow:hidden}.widget_bttk_popular_post ul li .post-thumbnail,.widget_bttk_pro_recent_post ul li .post-thumbnail{float:left;width:80px;height:80px;margin-right:20px}.widget_bttk_popular_post ul li .post-thumbnail img,.widget_bttk_pro_recent_post ul li .post-thumbnail img{vertical-align:top;width:100%;height:100%;object-fit:cover}.widget_bttk_popular_post ul li .entry-header,.widget_bttk_pro_recent_post ul li .entry-header{overflow:hidden}.widget_bttk_popular_post ul li .entry-header .entry-title,.widget_bttk_pro_recent_post ul li .entry-header .entry-title{font-size:18px;line-height:26px;margin:0}.widget_bttk_popular_post ul li .entry-header .entry-meta,.widget_bttk_pro_recent_post ul li .entry-header .entry-meta{font-size:14px;line-height:21px}.widget_bttk_popular_post .style-two li .post-thumbnail,.widget_bttk_pro_recent_post .style-two li .post-thumbnail{width:100%;margin-right:0;margin-bottom:20px;height:190px}.widget_bttk_popular_post .style-two li .entry-header,.widget_bttk_pro_recent_post .style-two li .entry-header{width:100%;text-align:center;padding:0 15px}.widget_bttk_popular_post .style-three li .post-thumbnail,.widget_bttk_pro_recent_post .style-three li .post-thumbnail{height:190px;margin:0 0 -40px;width:100%}.widget_bttk_popular_post .style-three li .entry-header,.widget_bttk_pro_recent_post .style-three li .entry-header{background:#fff none repeat scroll 0 0;margin:0 auto;max-width:92%;padding:13px 15px 0;position:relative;text-align:center;width:100%}.widget_bttk_popular_post ul li .entry-header .cat-links,.widget_bttk_pro_recent_post ul li .entry-header .cat-links{display:none}.widget_bttk_popular_post .style-three li .entry-header .cat-links,.widget_bttk_popular_post .style-two li .entry-header .cat-links,.widget_bttk_pro_recent_post .style-three li .entry-header .cat-links,.widget_bttk_pro_recent_post .style-two li .entry-header .cat-links{display:block;font-size:14px;font-weight:500}.widget_bttk_popular_post .style-three li .entry-header .cat-links a,.widget_bttk_popular_post .style-two li .entry-header .cat-links a,.widget_bttk_pro_recent_post .style-three li .entry-header .cat-links a,.widget_bttk_pro_recent_post .style-two li .entry-header .cat-links a{margin:0 3px}.widget_bttk_social_links ul{margin:0 -2px;overflow:hidden}.widget_bttk_social_links ul li{float:left;padding:0 2px;margin:0 0 4px}.widget_bttk_social_links ul li a{display:block;width:63px;height:63px;background:#111;color:#fff;text-align:center;line-height:63px}.widget_bttk_posts_category_slider_widget .owl-theme .owl-nav [class*=owl-]{margin:0;width:40px;height:40px;font-size:0;background:rgba(0,0,0,.75);border-radius:0;position:absolute;-webkit-transition:ease .2s;-moz-transition:ease .2s;transition:ease .2s}.widget_bttk_posts_category_slider_widget .owl-theme .owl-prev{top:75px;left:0}.widget_bttk_posts_category_slider_widget .owl-theme .owl-prev:after{content:'';background-image:url('data:image/svg+xml; utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path fill="%23fff" d="M4.2 247.5L151 99.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17L69.3 256l118.5 119.7c4.7 4.7 4.7 12.3 0 17L168 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 264.5c-4.7-4.7-4.7-12.3 0-17z"></path></svg>');background-repeat:no-repeat;width:10px;height:20px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.widget_bttk_posts_category_slider_widget .owl-next{top:75px;right:0}.widget_bttk_posts_category_slider_widget .owl-theme .owl-next:after{content:'';background-image:url('data:image/svg+xml; utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path fill="%23fff" d="M187.8 264.5L41 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 392.7c-4.7-4.7-4.7-12.3 0-17L122.7 256 4.2 136.3c-4.7-4.7-4.7-12.3 0-17L24 99.5c4.7-4.7 12.3-4.7 17 0l146.8 148c4.7 4.7 4.7 12.3 0 17z"></path></svg>');background-repeat:no-repeat;width:10px;height:20px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.widget_bttk_posts_category_slider_widget .post-thumbnail{display:block;margin-bottom:15px}.widget_bttk_posts_category_slider_widget .carousel-title{text-align:center}.widget_bttk_posts_category_slider_widget .carousel-title .cat-links{display:block;font-size:14px;font-weight:500}.widget_bttk_posts_category_slider_widget .carousel-title .cat-links a{margin:0 3px}.widget_bttk_posts_category_slider_widget .carousel-title .title{font-size:18px;line-height:26px;font-weight:400}.widget_bttk_posts_category_slider_widget .owl-theme .owl-dots .owl-dot span{margin:0 3px;background:#eee}.widget_bttk_posts_category_slider_widget .owl-theme .owl-dots .owl-dot span:hover{background:#111}.widget_bttk_posts_category_slider_widget .owl-theme .owl-dots .owl-dot.active span{background:#111}.widget_bttk_image_text_widget ul li{position:relative}.widget_bttk_image_text_widget ul li .btn-readmore{position:absolute;width:70%;text-align:center;top:50%;left:50%;color:#fff;background:#111;text-transform:uppercase;letter-spacing:1px;padding:12px 29px 9px 32px;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transition:ease .2s;-moz-transition:ease .2s;transition:ease .2s}.widget-area ul{margin:0;padding:0;list-style:none}.widget-area ul li{margin:0 0 20px}.widget_raratheme_companion_cta_widget .widget-content{position:relative}.widget_raratheme_companion_cta_widget .widget-content.bg-image:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.widget_raratheme_companion_cta_widget .widget-content .text-holder{position:relative;z-index:1;color:#fff;text-align:center;padding:30px 15px}.widget_raratheme_companion_cta_widget .widget-content .text-holder .btn-cta{display:inline-block;margin:0 3px;background:#f7f7f7;color:#555;border-radius:3px;padding:5px 15px;text-decoration:none;font-size:15px;border:1px solid #ccc;-webkit-transition:linear .2s;-moz-transition:linear .2s;transition:linear .2s}.widget_raratheme_companion_cta_widget .widget-content .text-holder .btn-cta:focus,.widget_raratheme_companion_cta_widget .widget-content .text-holder .btn-cta:hover{text-decoration:none;background:0 0;color:#fff}.widget_raratheme_featured_widget .img-holder{margin-bottom:30px}.widget_raratheme_featured_widget .img-holder a{display:block}.widget_raratheme_featured_widget .img-holder img{vertical-align:top}.widget_raratheme_featured_widget .text-holder .readmore{display:inline-block;background:#f7f7f7;color:#555;border-radius:3px;padding:5px 15px;text-decoration:none;font-size:15px;border:1px solid #ccc;-webkit-transition:linear .2s;-moz-transition:linear .2s;transition:linear .2s}.widget_raratheme_featured_widget .text-holder .readmore:focus,.widget_raratheme_featured_widget .text-holder .readmore:hover{background:0 0;text-decoration:none}.widget_raratheme_icon_text_widget .icon-holder{font-size:30px;margin:0 0 15px}.widget_raratheme_image_widget .image-holder{margin:0 0 20px}.widget_raratheme_image_widget .image-holder img{vertical-align:top}.widget_raratheme_image_widget .image-holder a{display:block}.widget_raratheme_image_widget .readmore{display:inline-block;background:#f7f7f7;color:#555;border-radius:3px;padding:5px 15px;text-decoration:none;font-size:15px;border:1px solid #ccc;-webkit-transition:linear .2s;-moz-transition:linear .2s;transition:linear .2s}.widget_raratheme_image_widget .readmore:focus,.widget_raratheme_image_widget .readmore:hover{background:0 0;text-decoration:none}.widget_raratheme_popular_post ul li,.widget_raratheme_recent_post ul li{overflow:hidden}.widget_raratheme_popular_post ul li .post-thumbnail,.widget_raratheme_recent_post ul li .post-thumbnail{float:left;width:68px;margin-right:15px}.widget_raratheme_popular_post ul li .post-thumbnail img,.widget_raratheme_recent_post ul li .post-thumbnail img{vertical-align:top}.widget_raratheme_popular_post ul li .entry-header,.widget_raratheme_recent_post ul li .entry-header{overflow:hidden}.widget_raratheme_popular_post ul li .entry-header .entry-title,.widget_raratheme_recent_post ul li .entry-header .entry-title{margin:0 0 5px;font-size:15px;line-height:18px}.widget_raratheme_popular_post ul li .entry-header .entry-title a,.widget_raratheme_recent_post ul li .entry-header .entry-title a{text-decoration:none}.widget_raratheme_popular_post ul li .entry-header .entry-meta,.widget_raratheme_recent_post ul li .entry-header .entry-meta{font-size:14px;line-height:18px}.widget_raratheme_popular_post ul li .entry-header .view-count{font-size:14px;line-height:18px}.widget_raratheme_popular_post ul li .entry-header .comment-count{font-size:14px;line-height:18px}.widget_raratheme_popular_post ul li .entry-header .comment-count .fa{margin-right:5px}.widget_raratheme_social_links ul{font-size:15px;overflow:hidden}.widget_raratheme_social_links ul li{float:left;margin-right:3px}.widget_raratheme_social_links ul li a{display:block;width:30px;height:30px;background:#000;color:#fff;text-align:center;line-height:30px;-webkit-transition:linear .2s;-moz-transition:linear .2s;transition:linear .2s}.widget_raratheme_social_links ul li a:focus,.widget_raratheme_social_links ul li a:hover{border-radius:50%}.widget_raratheme_social_links ul li a[href*=facebook]{background:#3b5998}.widget_raratheme_social_links ul li a[href*=twitter]{background:#1da1f2}.widget_raratheme_social_links ul li a[href*=flickr]{background:#0063db}.widget_raratheme_social_links ul li a[href*=vimeo]{background:#23b6ea}.widget_raratheme_social_links ul li a[href*=youtube]{background:#cb1f1f}.widget_raratheme_social_links ul li a[href*=google]{background:#d51f1e}.widget_raratheme_social_links ul li a[href*='ok.ru']{background:#ee8208}.widget_raratheme_social_links ul li a[href*=vk]{background:#466991}.widget_raratheme_social_links ul li a[href*=xing]{background:#005a5f}.widget_raratheme_social_links ul li a[href*=stumbleupon]{background:#eb4823}.widget_raratheme_social_links ul li a[href*=pinterest]{background:#cb2027}.widget_raratheme_social_links ul li a[href*=dribbble]{background:#e84c88}.widget_raratheme_social_links ul li a[href*=linkedin]{background:#0274b3}.widget_raratheme_social_links ul li a[href*=rss]{background:orange}.widget_raratheme_social_links ul li a[href*=tumblr]{background:#2e4f6e}.widget_raratheme_social_links ul li a[href*=instagram]{background:#895a4d}.widget_raratheme_companion_stat_counter_widget .icon-holder{font-size:30px;margin:0 0 15px}.odometer.odometer-theme-default,.widget_raratheme_companion_stat_counter_widget .odometer.odometer-auto-theme{font-size:25px;font-weight:700}ul.accordion{list-style:none}ul.accordion .inner{display:none}ul.accordion li{margin:.5em 0}ul.accordion li a.toggle{display:block}.odometer.odometer-auto-theme,.odometer.odometer-theme-default{vertical-align:middle;vertical-align:auto;zoom:1;display:inline;position:relative}.odometer.odometer-auto-theme .odometer-digit,.odometer.odometer-theme-default .odometer-digit{vertical-align:middle;vertical-align:auto;zoom:1;display:inline;position:relative}.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer{vertical-align:middle;vertical-align:auto;zoom:1;display:inline;visibility:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner{text-align:left;display:block;position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,.odometer.odometer-theme-default .odometer-digit .odometer-ribbon{display:block}.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner{display:block;-webkit-backface-visibility:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-value,.odometer.odometer-theme-default .odometer-digit .odometer-value{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);transform:translateZ(0)}.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value{position:absolute}.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner{-webkit-transition:-webkit-transform 2s;-moz-transition:-moz-transform 2s;-ms-transition:-ms-transform 2s;-o-transition:-o-transform 2s;transition:transform 2s}.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner{-webkit-transition:-webkit-transform 2s;-moz-transition:-moz-transform 2s;-ms-transition:-ms-transform 2s;-o-transition:-o-transform 2s;transition:transform 2s;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.odometer.odometer-auto-theme .odometer-value,.odometer.odometer-theme-default .odometer-value{text-align:center}.widget_blossom_client_logo_widget .image-holder img{max-width:190px}.portfolio-holder .portfolio-sorting{text-align:center;text-transform:uppercase}.portfolio-sorting .button{margin:0 30px 40px 30px;background:0 0;border:none;font-weight:400;font-size:16px;cursor:pointer;padding:0;color:#000}.portfolio-sorting .button.is-checked,.portfolio-sorting .button:hover{color:#777}.portfolio-img-holder .portfolio-item{float:left;width:33.33%;padding:15px}.portfolio-item img{vertical-align:top}.portfolio-item .portfolio-item-inner{position:relative;overflow:hidden}.portfolio-item .portfolio-text-holder{font-size:14px;font-weight:600;position:absolute;top:0;bottom:0;left:0;right:0;background:-webkit-linear-gradient(transparent,rgba(0,0,0,.65));background:-moz-linear-gradient(transparent,rgba(0,0,0,.65));background:-ms-linear-gradient(transparent,rgba(0,0,0,.65));background:-o-linear-gradient(transparent,rgba(0,0,0,.65));background:linear-gradient(transparent,rgba(0,0,0,.65));text-align:center;padding:0 20px;display:flex;flex-direction:column;flex:1;justify-content:flex-end;opacity:0;visibility:hidden;-webkit-transition:all ease .35s;-moz-transition:all ease .35s;transition:all ease .35s}.portfolio-item-inner:hover .portfolio-text-holder{padding-top:30px;padding-bottom:30px;opacity:1;visibility:visible}.portfolio-item .portfolio-cat a{color:#fff;text-decoration:none;padding-right:10px;display:inline-block;margin-bottom:5px}.portfolio-item .portfolio-cat a:last-child{padding-right:0}.portfolio-text-holder .portfolio-img-title{font-size:24px;font-weight:600}.portfolio-item .portfolio-img-title a{color:#fff;text-decoration:none}.portfolio-item a:hover{color:#ddd}.portfolio-holder .post-thumbnail{margin:0 0 35px 0;text-align:center}.portfolio-holder .entry-header{border-bottom:1px solid #eee;margin-bottom:30px;padding-bottom:30px}.entry-header .portfolio-cat a{color:#777;text-decoration:none;margin-right:10px}.entry-header .portfolio-cat a:last-child{margin-right:0}.portfolio-holder .entry-header .entry-title{color:#000;margin:10px 0 0 0;font-size:3em}.portfolio-holder .entry-content,.portfolio-holder .entry-header{margin-left:auto;margin-right:auto;max-width:80%}.portfolio-holder .entry-content{color:#555;line-height:1.6}.related-portfolio{margin-top:80px}.related-portfolio-title{text-align:center;margin-bottom:30px;font-size:22px}.related-portfolio .portfolio-img-holder:after,.related-portfolio .portfolio-img-holder:before{content:"";display:table;height:0;width:0;line-height:0}.related-portfolio .portfolio-img-holder:after{clear:both}.related-portfolio .portfolio-item .portfolio-text-holder{opacity:1;visibility:visible;padding:30px 20px}@media only screen and (max-width:1024px){.archive .trip-content-area .grid .btn-loadmore{grid-column:1/span 2}.portfolio-img-holder .portfolio-item{width:50%}}@media only screen and (max-width:767px){.archive .trip-content-area .grid .btn-loadmore{grid-column:1/span 1}.portfolio-img-holder .portfolio-item{width:100%;float:none;padding-left:0;padding-right:0}.portfolio-holder .entry-content,.portfolio-holder .entry-header{max-width:100%}}.is-menu a,.is-menu a:focus,.is-menu a:hover,.is-menu:hover>a{background:0 0!important;outline:0}.is-screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);color:#000;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}.is-menu,form .is-link-container{position:relative}.is-menu a{line-height:1}.is-menu a::after,.is-menu a::before{display:none!important}.is-menu.default form{max-width:310px}.is-menu.is-dropdown form{display:none;min-width:310px;max-width:100%;position:absolute;right:0;top:100%;z-index:9}.is-menu.full-width-menu form,.is-menu.sliding form{min-width:0!important;overflow:hidden;position:absolute;right:0;top:25%;width:0;z-index:99;padding:0;margin:0}.is-menu.full-width-menu form:not(.is-search-form) input[type=search],.is-menu.full-width-menu form:not(.is-search-form) input[type=text],.is-menu.is-dropdown form:not(.is-search-form) input[type=search],.is-menu.is-dropdown form:not(.is-search-form) input[type=text],.is-menu.sliding form:not(.is-search-form) input[type=search],.is-menu.sliding form:not(.is-search-form) input[type=text],.is-popup-search-form form:not(.is-search-form) input[type=search],.is-popup-search-form form:not(.is-search-form) input[type=text]{background:#fff;color:#000}.is-menu.is-first form{right:auto;left:0}.is-menu.full-width-menu.open .search-close,.is-menu.full-width-menu:not(.open) form,.is-menu.is-dropdown form[style="display: block;"]+.search-close,.is-menu.sliding.open .search-close,.is-menu.sliding:not(.open) form,form:hover+.is-link-container,form:hover>.is-link-container{display:block}.is-form-style-2 .is-search-submit,.is-link-container,.is-menu form .screen-reader-text,.search-close{display:none}.is-menu form label{margin:0;padding:0}.is-menu-wrapper{display:none;position:absolute;right:5px;top:5px;width:auto;z-index:9999}.popup-search-close,.search-close{cursor:pointer;width:20px;height:20px}.is-menu-wrapper.is-expanded{width:100%}.admin-bar .is-menu-wrapper{top:51px}.is-menu-wrapper .is-menu{float:right}.is-menu-wrapper .is-menu form{right:0;left:auto}.gsc-cse-search-menu{max-width:310px;float:right}.gsc-cse-search-menu .cse .gsc-control-cse,.gsc-cse-search-menu .gsc-control-cse{padding:0}.is-menu .search-icon-path{fill:#848484}.search-close{position:absolute;right:-22px;top:33%;z-index:99999}.is-menu.is-first .search-close{right:auto;left:-22px}.is-menu.is-dropdown .search-close{top:calc(100% + 7px)}.popup-search-close{z-index:99999;float:right;position:relative;margin:20px 20px 0 0}#is-popup-wrapper{width:100%;height:100%;position:fixed;top:0;left:0;background:rgba(4,4,4,.91);z-index:999999}.is-popup-search-form form{width:80%;margin:20% auto 0}.is-popup-search-form form.is-ajax-search{margin:10% auto 0}.popup-search-close:after,.search-close:after{border-left:2px solid #848484;content:'';height:20px;left:9px;position:absolute;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.popup-search-close:before,.search-close:before{border-left:2px solid #848484;content:'';height:20px;left:9px;position:absolute;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.is-highlight{background-color:#ffffb9;color:#222}@media screen and (max-width:910px){.is-menu form{left:0;min-width:50%;right:auto}.is-menu.default form{max-width:100%}.is-menu.full-width-menu.active-search{position:relative}.is-menu-wrapper{display:block}}.is-form-style label,.is-menu.full-width-menu.is-first button.is-search-submit,.is-menu.sliding.is-first button.is-search-submit{display:inline-block!important}form .is-link-container div{position:absolute;width:200px;bottom:-25px;left:5px;z-index:99999;height:auto;line-height:14px;padding:10px 15px}form .is-link-container a{text-decoration:none;font-size:14px;font-weight:100;font-family:arial;box-shadow:none}form .is-link-container a:hover{text-decoration:underline}form .is-link-container a.is-customize-link{margin-left:15px}.is-form-style label{padding:0;vertical-align:middle;margin:0;width:100%;line-height:1}.is-form-style{line-height:1;position:relative;padding:0!important}.is-form-style.is-form-style-3 label{width:calc(100% - 36px)!important}.is-form-style input.is-search-input{background:#fff;background-image:none!important;color:#333;padding:0 12px;margin:0;outline:0!important;font-size:14px!important;height:36px;min-height:0;line-height:1;border-radius:0;border:1px solid #ccc!important;font-family:arial;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-webkit-border-radius:0}.is-form-style input.is-search-input::-ms-clear{display:none;width:0;height:0}.is-form-style input.is-search-input::-ms-reveal{display:none;width:0;height:0}.is-form-style input.is-search-input::-webkit-search-cancel-button,.is-form-style input.is-search-input::-webkit-search-decoration,.is-form-style input.is-search-input::-webkit-search-results-button,.is-form-style input.is-search-input::-webkit-search-results-decoration{display:none}.is-form-style.is-form-style-3 input.is-search-input{border-right:0!important}.is-form-style button.is-search-submit{background:0 0;border:0;box-shadow:none!important;opacity:1;padding:0!important;margin:0;line-height:0;outline:0;vertical-align:middle;width:36px;height:36px}.is-menu.full-width-menu.is-first button.is-search-submit:not([style="display: inline-block;"]),.is-menu.sliding.is-first button.is-search-submit:not([style="display: inline-block;"]){visibility:hidden}.is-form-style .is-search-submit path{fill:#555}.is-form-style input.is-search-submit{text-decoration:none;position:absolute;top:0;right:0;padding:0 10px!important;width:auto}.is-search-icon{width:36px;padding-top:6px!important}.is-search-icon svg{width:22px;display:inline}.is-form-style input.is-search-submit,.is-search-icon{display:inline-block!important;color:#666;background:#ededed;box-shadow:none!important;outline:0;margin:0;font-size:14px!important;border:1px solid #ccc;border-radius:0;line-height:1;height:36px;text-transform:capitalize;vertical-align:middle;-webkit-transition:background-color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out;-o-transition:background-color .1s ease-in-out;transition:background-color .1s ease-in-out;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.is-search-icon:hover,form.is-form-style input.is-search-submit:hover{background:#dcdcdc}@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}
/*!
 * Font Awesome Free 5.15.4 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-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/themes/blossom-magazine/css/../webfonts/fa-brands-400.eot);src:url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-brands-400.woff2) format("woff2"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-brands-400.woff) format("woff"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-brands-400.ttf) format("truetype"),url(/wp-content/themes/blossom-magazine/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/themes/blossom-magazine/css/../webfonts/fa-regular-400.eot);src:url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-regular-400.woff2) format("woff2"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-regular-400.woff) format("woff"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-regular-400.ttf) format("truetype"),url(/wp-content/themes/blossom-magazine/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/themes/blossom-magazine/css/../webfonts/fa-solid-900.eot);src:url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-solid-900.woff2) format("woff2"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-solid-900.woff) format("woff"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-solid-900.ttf) format("truetype"),url(/wp-content/themes/blossom-magazine/css/../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/wp-content/themes/blossom-magazine/css/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.hinge{animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{animation-duration:.75s}@keyframes bounce{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{transform:translate3d(0,-4px,0)}}.bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.pulse{animation-name:pulse}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.rubberBand{animation-name:rubberBand}@keyframes shake{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.shake{animation-name:shake}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.tada{animation-name:tada}@keyframes wobble{0%{transform:none}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:none}}.wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:none}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{animation-name:jello;transform-origin:center}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.bounceIn{animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}.bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}.bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}.bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}.bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}.fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:none}}.fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:none}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:none}}.fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:none}}.fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:none}}.fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:none}}.fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes flip{0%{transform:perspective(400px) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95);animation-timing-function:ease-in}to{transform:perspective(400px);animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedIn{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg);opacity:1}to{transform:none;opacity:1}}.lightSpeedIn{animation-name:lightSpeedIn;animation-timing-function:ease-out}@keyframes lightSpeedOut{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{animation-name:lightSpeedOut;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform-origin:center;transform:rotate(-200deg);opacity:0}to{transform-origin:center;transform:none;opacity:1}}.rotateIn{animation-name:rotateIn}@keyframes rotateInDownLeft{0%{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}.rotateInDownLeft{animation-name:rotateInDownLeft}@keyframes rotateInDownRight{0%{transform-origin:right bottom;transform:rotate(45deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}.rotateInDownRight{animation-name:rotateInDownRight}@keyframes rotateInUpLeft{0%{transform-origin:left bottom;transform:rotate(45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}.rotateInUpLeft{animation-name:rotateInUpLeft}@keyframes rotateInUpRight{0%{transform-origin:right bottom;transform:rotate(-90deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}.rotateInUpRight{animation-name:rotateInUpRight}@keyframes rotateOut{0%{transform-origin:center;opacity:1}to{transform-origin:center;transform:rotate(200deg);opacity:0}}.rotateOut{animation-name:rotateOut}@keyframes rotateOutDownLeft{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{animation-name:rotateOutDownLeft}@keyframes rotateOutDownRight{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{animation-name:rotateOutDownRight}@keyframes rotateOutUpLeft{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{animation-name:rotateOutUpLeft}@keyframes rotateOutUpRight{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(90deg);opacity:0}}.rotateOutUpRight{animation-name:rotateOutUpRight}@keyframes hinge{0%{transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.hinge{animation-name:hinge}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:none}}.rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{animation-name:zoomOutDown}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{animation-name:zoomOutLeft}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{animation-name:zoomOutRight}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{animation-name:zoomOutUp}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.slideOutUp{animation-name:slideOutUp}.magazine-pro-has-blocks.full-width .wp-block-cover .wp-block-cover__inner-container,.magazine-pro-has-blocks.full-width .wp-block-cover-image .wp-block-cover__inner-container,.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover .wp-block-cover__inner-container,.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover-image .wp-block-cover__inner-container{max-width:1170px;width:100%;margin-left:auto;margin-right:auto}.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover .wp-block-cover__inner-container,.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover-image .wp-block-cover__inner-container{max-width:670px}.wp-has-aspect-ratio .wp-block-embed__wrapper{position:relative;height:0;overflow:hidden}.wp-has-aspect-ratio.wp-embed-aspect-16-9 .wp-block-embed__wrapper{padding-top:56.25%}.wp-has-aspect-ratio.wp-embed-aspect-4-3 .wp-block-embed__wrapper{padding-top:75%}.wp-has-aspect-ratio.wp-embed-aspect-3-2 .wp-block-embed__wrapper{padding-top:66.67%}.wp-has-aspect-ratio.wp-embed-aspect-21-9 .wp-block-embed__wrapper{padding-top:42.86%}.wp-has-aspect-ratio .wp-block-embed__wrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.wp-block-separator{background-color:rgba(var(--black-color-rgb),.05);height:5px;margin:2em 0}.magazine-pro-has-blocks .entry-content .alignfull{position:relative}.wp-block-code{color:var(--black-color);background:rgba(var(--black-color-rgb),.05);border-color:rgba(var(--black-color-rgb),.2)}pre{background:rgba(var(--black-color-rgb),.05)}.wp-block-embed{margin:0}.wp-block-quote{background:rgba(var(--primary-color-rgb),.03);margin:2em 0;padding-left:50px;border-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{padding:10% 5%}.wp-block-pullquote{margin:50px 0;padding:45px;background:rgba(var(--primary-color-rgb),.03);color:var(--white-color);position:relative;z-index:1}.wp-block-pullquote blockquote{border:none;margin:0;padding:0}.wp-block-pullquote blockquote p{font-size:1.3333333333em;font-family:var(--secondary-font);line-height:1.75}.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{font-size:.89em;color:rgba(var(--font-color-rgb),.5)}.entry-content a.wp-block-button__link,.entry-summary a.wp-block-button__link,.page-content a.wp-block-button__link{text-decoration:none}.wp-block-group .wp-block-quote{padding:0 1em}.wp-block-group .wp-block-quote::before{display:none}.wp-block-group .wp-block-quote.has-text-align-center cite{text-align:center}.wp-block-group .wp-block-quote.has-text-align-left cite{text-align:left}.magazine-pro-has-blocks .wp-block-embed figcaption,.magazine-pro-has-blocks .wp-block-gallery .blocks-gallery-caption,.magazine-pro-has-blocks .wp-block-image figcaption{margin:.8075em 0 0 0;font-size:.8888em;color:rgba(var(--black-color-rgb),.5);letter-spacing:.1px;line-height:1.5;text-align:center}.magazine-pro-has-blocks .wp-block-gallery .blocks-gallery-caption{width:100%;margin-top:0;margin-bottom:1.5em}.page .site-main .entry-content .wp-block-gallery .blocks-gallery-item,.single .site-main .entry-content .wp-block-gallery .blocks-gallery-item{background:0 0;padding-left:0}.site-main .entry-content ul.blocks-gallery-grid>li::before{display:none}.wp-block-file{background:rgba(var(--primary-color-rgb),.1);padding:2% 4%;margin-bottom:.7em}.wp-block-file.aligncenter{display:table;margin-left:auto;margin-right:auto}.wp-block-file.alignfull{text-align:center}.wp-block-file a{display:inline-block;color:var(--black-color)}.wp-block-file .wp-block-file__button{background:var(--primary-color);padding:.7em 1.5em;font-size:.9em;line-height:1.3}.wp-block-table.is-style-stripes{border-bottom:none}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background:rgba(var(--primary-color-rgb),.35)}.site-main .entry-content ul.wp-block-categories,.site-main .entry-content ul.wp-block-latest-comments,.site-main .entry-content ul.wp-block-rss,.site-main .entry-content ul.wp-blocks-archives,.wp-block-archives,.wp-block-categories,.wp-block-latest-comments,.wp-block-rss{margin:0;padding:0;list-style:none}.site-main .entry-content ul.wp-block-categories>li,.site-main .entry-content ul.wp-block-latest-comments>li,.site-main .entry-content ul.wp-block-rss>li,.site-main .entry-content ul.wp-blocks-archives>li,.wp-block-archives li,.wp-block-categories li,.wp-block-latest-comments li,.wp-block-rss li{margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid rgba(var(--primary-color-rgb),.2);font-weight:400;position:relative;padding-left:20px}.site-main .entry-content ul.wp-block-latest-comments>li,.wp-block-latest-comments li{padding-left:0}.site-main .entry-content ul.wp-block-categories>li:last-child,.site-main .entry-content ul.wp-block-latest-comments>li:last-child,.site-main .entry-content ul.wp-block-rss>li:last-child,.site-main .entry-content ul.wp-blocks-archives>li:last-child,.wp-block-archives li:last-child,.wp-block-categories li:last-child,.wp-block-latest-comments li:last-child,.wp-block-rss li:last-child{border-bottom:none;padding-bottom:0;margin-bottom:0}.widget_nav_menu ul ul{margin-top:15px}.wp-block-archives li a,.wp-block-categories li a,.wp-block-latest-comments li a,.wp-block-rss li a{color:rgba(var(--black-color-rgb),.8);text-decoration:none}.wp-block-archives li a:hover,.wp-block-categories li a:hover,.wp-block-latest-comments li a:hover,.wp-block-rss li a:hover{color:var(--primary-color)}.block-editor .wp-block-latest-comments p{margin-bottom:0}.site-main .entry-content ol.wp-block-latest-comments{counter-reset:none}.site-main .entry-content ol.wp-block-latest-comments>li{counter-increment:none;padding-left:0}.site-main .entry-content ol.wp-block-latest-comments>li::before{display:none}.wp-block-search{display:flex;flex:1;flex-wrap:wrap}.wp-block-search .wp-block-search__input{width:calc(100% - 50px);border-radius:0;height:50px;font-size:.7778em;border-color:rgba(var(--primary-color-rgb),.3)}.site-main .entry-content ul.wp-block-latest-posts,.wp-block-latest-posts{margin:0;padding:0;list-style:none}.site-main .entry-content ul.wp-block-latest-posts>li,.wp-block-latest-posts li{margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid rgba(var(--primary-color-rgb),.2);font-size:1em;font-weight:400;position:relative;padding-left:20px}.wp-block-latest-posts li a{color:rgba(var(--black-color-rgb),.8);text-decoration:none}.wp-block-latest-posts li a:hover{color:var(--primary-color)}.site-main .wp-block-social-links:not(.is-style-logos-only) .wp-social-link{margin-bottom:5px;padding-left:0}.site-main .wp-block-social-links:not(.is-style-logos-only) .wp-social-link::before{display:none}.wp-block-calendar .wp-calendar-table{position:relative;margin:0;padding:0 10px;border-collapse:initial;border:1px solid rgba(var(--primary-color-rgb),.11)}.wp-block-calendar table tbody{color:var(--black-color)}.wp-block-calendar table caption{background:rgba(var(--secondary-color-rgb),.1);color:var(--black-color);font-family:var(--secondary-font);font-size:.8888em;padding:6px 40px}.wp-block-calendar table tr td,.wp-block-calendar table tr th{padding-left:0;padding-right:0;text-align:center;font-weight:400;font-size:.7778em;line-height:1.5;font-family:var(--secondary-font);background:0 0;border:none}.wp-block-calendar table tr td{border-bottom:none}.wp-block-calendar table tbody tr td#today{background:var(--primary-color);color:var(--white-color)}.wp-block-calendar table tr td a{display:block}.wp-block-calendar table tr td a:hover{text-decoration:none;color:var(--black-color)}.wp-block-calendar .wp-calendar-nav>span:not(.pad){position:absolute;top:12px;left:10px;width:20px;height:20px;white-space:nowrap;line-height:20px}.wp-block-calendar .wp-calendar-nav>span.wp-calendar-nav-next:not(.pad){left:auto;right:10px}.wp-block-calendar .wp-calendar-nav>span:not(.pad) a{font-size:0;background-image:url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M152.485 396.284l19.626-19.626c4.753-4.753 4.675-12.484-.173-17.14L91.22 282H436c6.627 0 12-5.373 12-12v-28c0-6.627-5.373-12-12-12H91.22l80.717-77.518c4.849-4.656 4.927-12.387.173-17.14l-19.626-19.626c-4.686-4.686-12.284-4.686-16.971 0L3.716 247.515c-4.686 4.686-4.686 12.284 0 16.971l131.799 131.799c4.686 4.685 12.284 4.685 16.97-.001z"></path></svg>');background-repeat:no-repeat;background-position:center;background-size:15px;display:block}.wp-block-calendar .wp-calendar-nav>span.wp-calendar-nav-next:not(.pad) a{background-image:url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M295.515 115.716l-19.626 19.626c-4.753 4.753-4.675 12.484.173 17.14L356.78 230H12c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h344.78l-80.717 77.518c-4.849 4.656-4.927 12.387-.173 17.14l19.626 19.626c4.686 4.686 12.284 4.686 16.971 0l131.799-131.799c4.686-4.686 4.686-12.284 0-16.971L312.485 115.716c-4.686-4.686-12.284-4.686-16.97 0z"></path></svg>')}.wp-block-calendar .wp-calendar-nav>span:not(.pad) a:hover{background-color:rgba(var(--primary-color-rgb),.4)}.wp-block-tag-cloud{letter-spacing:.1px;color:rgba(var(--black-color-rgb),.8);line-height:1.3;text-transform:uppercase}.wp-block-tag-cloud a{font-size:.94em!important;position:relative;margin-top:10px;margin-left:20px;padding:0 3px;display:inline-block;color:rgba(var(--black-color-rgb),.8);text-decoration:none}.wp-block-tag-cloud a:last-child{margin-right:0}.wp-block-tag-cloud a:hover{color:rgba(var(--black-color-rgb),1)}.wp-block-tag-cloud a::before{content:"";background:rgba(var(--primary-color-rgb),.2);width:100%;height:35%;position:absolute;bottom:0;left:0;-webkit-transition:all ease .35s;-moz-transition:all ease .35s;transition:all ease .35s}.wp-block-tag-cloud a:hover::before{background:rgba(var(--primary-color-rgb),.4);height:100%}.wp-block-tag-cloud a::after{content:"";background:var(--primary-color);width:4px;height:4px;border-radius:100%;position:absolute;top:11px;left:-13px}.magazine-pro-has-blocks .site-footer .widget .blossomthemes-email-newsletter-wrapper,.magazine-pro-has-blocks .widget-area .widget .blossomthemes-email-newsletter-wrapper{padding:40px 20px}.magazine-pro-has-blocks .site-footer .widget .blossomthemes-email-newsletter-wrapper .img-holder,.magazine-pro-has-blocks .widget-area .widget .blossomthemes-email-newsletter-wrapper .img-holder{width:60px;height:60px;border-radius:100%;overflow:hidden;margin:0 auto 20px auto;position:relative}.magazine-pro-has-blocks .site-footer .widget_blossomthemes_email_newsletter_widget .text-holder,.magazine-pro-has-blocks .widget-area .widget_blossomthemes_email_newsletter_widget .text-holder{text-align:center}.magazine-pro-has-blocks .site-footer .widget_blossomthemes_email_newsletter_widget .text-holder span,.magazine-pro-has-blocks .widget-area .widget_blossomthemes_email_newsletter_widget .text-holder span{display:block}.magazine-pro-has-blocks .site-footer .widget_blossomthemes_email_newsletter_widget form label .check-mark,.magazine-pro-has-blocks .widget-area .widget_blossomthemes_email_newsletter_widget form label .check-mark{border-color:rgba(var(--black-color-rgb),.4);background:var(--white-color)}.magazine-pro-has-blocks .site-footer .widget_blossomthemes_email_newsletter_widget form input[type=submit],.magazine-pro-has-blocks .widget-area .widget_blossomthemes_email_newsletter_widget form input[type=submit]{letter-spacing:1px}@media screen and (max-width:1199px){.magazine-pro-has-blocks.full-width .wp-block-cover .wp-block-cover__inner-container,.magazine-pro-has-blocks.full-width .wp-block-cover-image .wp-block-cover__inner-container,.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover .wp-block-cover__inner-container,.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover-image .wp-block-cover__inner-container{max-width:1000px}}@media screen and (max-width:1024px){.magazine-pro-has-blocks.full-width .wp-block-cover .wp-block-cover__inner-container,.magazine-pro-has-blocks.full-width .wp-block-cover-image .wp-block-cover__inner-container,.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover .wp-block-cover__inner-container,.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover-image .wp-block-cover__inner-container{max-width:768px;padding-left:15px;padding-right:15px}}@media screen and (max-width:767px){.magazine-pro-has-blocks.full-width .wp-block-cover .wp-block-cover__inner-container,.magazine-pro-has-blocks.full-width .wp-block-cover-image .wp-block-cover__inner-container,.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover .wp-block-cover__inner-container,.magazine-pro-has-blocks.fullwidth-centered .wp-block-cover-image .wp-block-cover__inner-container{max-width:420px}}/*
Theme Name: Blossom Magazine
Theme URI: https://blossomthemes.com/wordpress-themes/blossom-magazine/
Author: Blossom Themes
Author URI: https://blossomthemes.com/
Description: Blossom Magazine is a multipurpose, feature-rich and easy to use theme for creating professional websites. This theme is optimized to load fast to rank better on search engines. With Blossom Magazine, you can create websites for any blogging niche, such as magazine, travel, lifestyle, fashion, food, fitness, journal, health, parenting, makeup, and several other types. In this theme, you can choose from unlimited colors and 1000+ Google fonts to change your website look and feel with a single click. With the Instagram section, you can flaunt your latest posts to increase your followers. The strategically placed newsletter helps you to generate more leads and grow your subscribers. This theme is also WooCommerce compatible so you can start an online store. Blossom Magazine is translation-ready, schema-friendly and RTL compatible. Check demo at https://blossomthemes.com/theme-demo/?theme=blossom-magazine, read the documentation at https://docs.blossomthemes.com/blossom-magazine/, and get support at https://blossomthemes.com/support-ticket/.
Version: 1.1.0
Requires at least: 6.2
Requires PHP: 7.3
Tested up to: 6.6
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: blossom-magazine
Tags: blog, one-column, two-columns, right-sidebar, left-sidebar, footer-widgets, custom-background, custom-header, custom-menu, custom-logo, featured-images, threaded-comments, full-width-template, rtl-language-support, translation-ready, theme-options, e-commerce, news

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Blossom Magazine is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

:root {
  --primary-color: #A60505;
  --primary-color-rgb: 166,5,5;
  --secondary-color: #1A0101;
  --secondary-color-rgb: 26,1,1;
  --font-color: #1A0101;
  --font-color-rgb: 26,1,1;
  --background-color: #fff;
  --background-color-rgb: 255,255,255;
  --white-color: #ffffff;
  --white-color-rgb: 255,255,255;
  --black-color: #000;
  --black-color-rgb: 0,0,0;
  --primary-font: Questrial, sans-serif;
  --secondary-font: "Source Serif 4", serif;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2.222em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  -moz-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation li {
  position: relative;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}


/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: rgba(var(--font-color-rgb), 0.9);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  font-weight: 400;
  margin-bottom: 0.5em;
  line-height: 1.55;
}

h1 {
  font-size: 2.666em;
}

h2 {
  font-size: 2.222em;
}

h3 {
  font-size: 1.9444em;
}

h4 {
  font-size: 1.666em;
}

h5 {
  font-size: 1.444em;
}

h6 {
  font-size: 1.222em;
}


p:not(.elementor-page p) {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}



/* Elements
--------------------------------------------- */
body {
  background: var(--background-color);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(var(--font-color-rgb), 0.9);
  font-family: var(--primary-font);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.post,
body.page {
  margin-bottom: 0;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


.section-devider hr {
  margin: 0;
  height: 0;
  background: none;
  border-top: 1px solid rgba(var(--font-color-rgb), 0.1);
}


/* Elements
--------------------------------------------- */
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

.entry-content li > ul,
.entry-content li > ol {
  margin-top: 10px;
}
.entry-content ul > li, .entry-content ol > li {
  margin-bottom: 10px;
}


/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

img, iframe, svg {
  vertical-align: top;
}

iframe {
  margin-bottom: 60px;
  width: 100%;
}

figure {
  margin: 1em 0;
}


table {
  margin: 0 0 1.5em;
  width: 100%;
  text-align: left;
}
table tbody tr:nth-child(odd) {
  background-color: rgba(var(--primary-color-rgb), 0.02);
}
table thead {
  border-bottom: 0 !important;
}
table thead th {
  font-weight: 600;
}

table,
tr {
  border-collapse: collapse;
}

td {
  color: var(--font-color);
}

th,
td {
  border: 0;
  padding: 8px;
  text-align: left;
  font-weight: normal;
}

caption,
th,
td {
  padding: 14px 30px !important;
  border: 0 !important;
}

th a {
  color: var(--font-color);
  text-decoration: none;
}
th a:hover {
  color: var(--primary-color);
}


/* Quote */
.wp-block-quote.alignleft p:last-of-type,
.wp-block-quote.alignright p:last-of-type {
  margin-bottom: 0;
}

.wp-block-quote cite {
  color: inherit;
  font-size: inherit;
}

.entry-content .wp-block-quote {
  border-left: 0;
  margin: 50px 0;
  padding-left: 45px;
}

blockquote {
  margin: 50px 0;
  padding: 45px;
  background: rgba(var(--primary-color-rgb), 0.03);
  color: var(--font-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
blockquote::before {
  content: "";
  width: 127px;
  height: 110px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='127.432' height='110.665' viewBox='0 0 127.432 110.665'%3E%3Cg id='Group_1443' data-name='Group 1443' transform='translate(0 0)' opacity='0.3'%3E%3Cpath id='Path_5841' data-name='Path 5841' d='M194.147,345.773c-3.28,2.743-6.38,5.4-9.538,7.955-2.133,1.724-4.343,3.3-6.522,4.934-6.576,4.932-13.3,5.586-20.243,1.173-2.939-1.868-4.314-5.268-5.477-8.714a68.381,68.381,0,0,1-2.375-9.783c-.994-5.555-2.209-11.138-1.557-16.906.577-5.112,1.16-10.251,2.163-15.248a23.117,23.117,0,0,1,3.01-7.026c2.8-4.7,5.735-9.276,8.779-13.732a23.928,23.928,0,0,1,4.793-5.371c2.207-1.72,3.608-4.17,5.148-6.6,3.216-5.068,6.556-10.013,9.8-15.052a28.681,28.681,0,0,0,1.475-3.084c.163-.338.31-.795.563-.943,2.775-1.632,5.518-3.377,8.376-4.752,2.016-.97,3.528,1.238,5.25,2.057a3.4,3.4,0,0,1-.148,1.769c-1.535,3.621-3.138,7.2-4.71,10.8-3.534,8.085-7.357,16-10.514,24.308-3.248,8.542-6.275,17.324-6.5,27.026-.065,2.869.266,5.75.374,8.627.065,1.753,1.017,1.914,2.044,1.753a11.21,11.21,0,0,0,7.146-4.324c1.41-1.752,2.246-1.821,3.817-.239,2.013,2.029,3.923,4.218,5.856,6.367a1.677,1.677,0,0,1,.429,1.023c-.151,3.187-.352,6.379-2.323,8.826C191.077,343.331,191.107,343.7,194.147,345.773Z' transform='translate(-70.424 -252.194)' fill='%23f2cab3'/%3E%3Cpath id='Path_5842' data-name='Path 5842' d='M259.193,344.341c-4.6,5.231-8.984,10.521-15.185,12.561a11.207,11.207,0,0,0-3.233,2.286c-5.3,4.46-11.216,4.268-17.085,2.977-4.218-.928-6.7-5.277-7.252-10.588-.948-9.07.893-17.566,3.187-26,.1-.381.287-.73.373-1.114,1.88-8.435,5.937-15.587,9.2-23.164,2.257-5.249,5.674-9.732,8.694-14.758.6,1.231.936,2.1,1.4,2.854.947,1.552,2.144,1.065,2.942-.529a12.559,12.559,0,0,0,.69-2.028c.39-1.313,1.017-1.885,2.24-.981-.207-2.706-.034-5.343,2.121-6.4.81-.4,2.093.691,3.288,1.15.659-1.414,1.61-3.271,2.38-5.236a4.422,4.422,0,0,0-.234-2.1c-.3-1.353-.733-2.666-.974-4.032a11.511,11.511,0,0,1,1.917-8.21c1.1-1.825,2.033-3.8,3.059-5.687,2.014-3.709,4.517-4.035,7.155-.948a17.668,17.668,0,0,0,2.386,2.7,5.03,5.03,0,0,0,2.526.767,7.3,7.3,0,0,0,2.09-.458c-.477,1.277-.81,2.261-1.2,3.2-4.945,11.79-10.1,23.454-14.784,35.4-3.468,8.844-6.331,18.054-9.458,27.1a6.573,6.573,0,0,0-.226.964c-.649,3.651.393,4.769,3.4,4.056,2.592-.618,4.313-3.327,6.743-4.071a16.177,16.177,0,0,1,5.847-.563c1.236.087,2.6,3.97,2.248,6.047-.7,4.12-1.9,8.009-4.311,11.09C258.068,341.977,257.566,343.062,259.193,344.341Z' transform='translate(-216.183 -252.301)' fill='%23A60505'/%3E%3C/g%3E%3C/svg%3E%0A");
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  bottom: -16px;
  z-index: -1;
  opacity: 0.05;
}
blockquote p {
  font-size: 1.3333333333em;
  font-family: var(--secondary-font);
  line-height: 1.75;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote.wp-block-quote cite {
  font-size: 1em;
  letter-spacing: 1.5px;
  margin-left: 10px;
}


/* Links
--------------------------------------------- */
/* Links
--------------------------------------------- */
.site a {
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: all 0.234s ease-in-out;
  -o-transition: all 0.234s ease-in-out;
  transition: all 0.234s ease-in-out;
}
.site .entry-content a,
.site p:not(.site-title) a {
  color: var(--primary-color);
  text-decoration: underline;
}
.site .entry-content a:focus,
.site p:not(.site-title) a:focus {
  outline: thin dotted;
}
.site .entry-content a:hover, .site .entry-content a:active,
.site p:not(.site-title) a:hover,
.site p:not(.site-title) a:active {
  outline: 0;
}


/* Forms
--------------------------------------------- */
input[type=submit] {
  border-radius: 0;
  border: none;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.36px;
  text-align: center;
  text-decoration: none;
  padding: 20px 36.71px;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  white-space: nowrap;
  background: var(--secondary-color);
  color: var(--white-color);
  font-family: var(--secondary-font);
  cursor: pointer;
}
input[type=submit]:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.btn-readmore, .btn-link {
  font-size: 0.88em;
  line-height: 1;
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  padding-right: 17px;
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
}
.btn-readmore::before, .btn-link::before {
  content: "";
  width: 8px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.106' height='9.573' viewBox='0 0 6.106 9.573'%3E%3Cpath id='Path_29322' data-name='Path 29322' d='M0,0,4.9,4.083,0,8.165' transform='translate(0.704 0.704)' fill='none' stroke='%23a60505' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  top: 2px;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
}
.btn-readmore:hover::before, .btn-link:hover::before {
  right: -3px;
}

.wc-btn, .btn-cta {
  border-radius: 0;
  font-size: 0.722em;
  line-height: 1;
  display: inline-block;
  position: relative;
  text-align: center;
  text-decoration: none;
  padding: 17px 30px;
  color: var(--white-color);
  background: var(--secondary-color);
  letter-spacing: 0.6px;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  font-family: var(--secondary-font);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wc-btn, .btn-cta {
    font-size: 1em;
    padding: 17px 30px;
    width: unset;
    white-space: nowrap;
  }
}
.wc-btn::after, .btn-cta::after {
  content: "";
}
.wc-btn:hover, .btn-cta:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.wc-btn.wc-btn-sm, .btn-cta.wc-btn-sm {
  font-size: 0.888em;
  padding: 15px 36.71px;
}
.wc-btn.wc-btn-one, .wc-btn.btn-1, .btn-cta.wc-btn-one, .btn-cta.btn-1 {
  color: var(--white-color);
  background: var(--secondary-color);
}
.wc-btn.wc-btn-one:hover, .wc-btn.btn-1:hover, .btn-cta.wc-btn-one:hover, .btn-cta.btn-1:hover {
  color: var(--white-color);
  background: var(--primary-color);
}
.wc-btn.wc-btn-two, .wc-btn.btn-2, .btn-cta.wc-btn-two, .btn-cta.btn-2 {
  color: var(--white-color);
  background: var(--primary-color);
}
.wc-btn.wc-btn-two:hover, .wc-btn.btn-2:hover, .btn-cta.wc-btn-two:hover, .btn-cta.btn-2:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.toggle-btn {
  width: 22.64px;
  height: 16.79px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.125s ease;
  -o-transition: all 0.125s ease;
  transition: all 0.125s ease;
}
.toggle-btn .toggle-bar {
  width: 22.64px;
  height: 2.29px;
  background: #001A1A;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10px;
  -webkit-transition: all 0.125s ease;
  -o-transition: all 0.125s ease;
  transition: all 0.125s ease;
  opacity: 0.7;
}
.toggle-btn .toggle-bar:first-child {
  margin-top: 0px;
}
.toggle-btn .toggle-bar:last-child {
  margin-bottom: 0px;
}
.toggle-btn:hover .toggle-bar {
  opacity: 1;
  background: var(--primary-color);
}

.submenu-toggle-btn {
  all: unset;
  cursor: pointer;
  margin-left: 10px;
  color: var(--primary-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 15px;
  line-height: 1;
  background: none !important;
}
.submenu-toggle-btn.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (min-width: 1200px) {
  .submenu-toggle-btn {
    pointer-events: none;
  }
}

.close-btn {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  display: block;
  cursor: pointer;
  padding: 5px;
  position: relative;
}
.close-btn::before, .close-btn::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #001A1A;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close-btn::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.close-btn:hover {
  text-decoration: none;
}
.close-btn:hover::before, .close-btn:hover::after {
  background: var(--secondary-color);
}

.woocommerce-Reviews #review_form input[type=submit],
.woocommerce .button,
.woocommerce .woocommerce-message .button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce-cart #primary .page .entry-content table.shop_table td.actions .button,
.woocommerce-cart #primary .page .entry-content table.shop_table td.actions .button,
.button:not(.page-template-blossom-portfolio .button) {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  border-radius: 0 !important;
  padding: 18px 30px 18px 30px !important;
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
  line-height: 1.1;
  text-decoration: none !important;
}
.woocommerce-Reviews #review_form input[type=submit]:hover,
.woocommerce .button:hover,
.woocommerce .woocommerce-message .button:hover,
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
.woocommerce-cart #primary .page .entry-content table.shop_table td.actions .button:hover,
.woocommerce-cart #primary .page .entry-content table.shop_table td.actions .button:hover,
.button:not(.page-template-blossom-portfolio .button):hover {
  background-color: var(--secondary-color) !important;
  color: var(--white-color) !important;
}

.single_add_to_cart_button.button,
.product_type_grouped,
.btn-add-to-cart,
.product_type_external,
.added_to_cart,
.add_to_cart_button {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  border-radius: 0 !important;
  padding: 18px 35px 18px 35px !important;
  position: relative;
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
  line-height: 1.1;
  margin-top: 0;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.single_add_to_cart_button.button::before,
.product_type_grouped::before,
.btn-add-to-cart::before,
.product_type_external::before,
.added_to_cart::before,
.add_to_cart_button::before {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.138' height='13.575' viewBox='0 0 13.138 13.575'%3E%3Cg id='Group_8507' data-name='Group 8507' transform='translate(-9.911 -56.079)' opacity='0.8'%3E%3Cpath id='Path_29300' data-name='Path 29300' d='M16.111,89.606a.8.8,0,0,1-.806.806.806.806,0,1,1,0-1.611A.834.834,0,0,1,16.111,89.606Z' transform='translate(-2.744 -20.758)' fill='%23001a1a'/%3E%3Cpath id='Path_29301' data-name='Path 29301' d='M32.111,89.606a.8.8,0,0,1-.806.806.806.806,0,1,1,0-1.611A.834.834,0,0,1,32.111,89.606Z' transform='translate(-13.961 -20.758)' fill='%23001a1a'/%3E%3Cpath id='Path_29302' data-name='Path 29302' d='M21.138,54.5v.816H19.857c-.131.392-.328,1.077-.558,1.861-.164.49-.3,1.045-.46,1.535-.394,1.371-1.117,3.657-1.478,4.767L17.2,64a1.515,1.515,0,0,1-1.642,1.078H9.642v-.816h5.912c.624,0,.788-.163.887-.522l.164-.522c.033-.131.1-.261.131-.424H10.3c-.46,0-.657-.294-.821-.816L8,57.177H18.445c.361-1.273.755-2.384.755-2.384l.1-.294Z' transform='translate(1.911 1.579)' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
  margin-right: 10px;
}
.single_add_to_cart_button.button:hover,
.product_type_grouped:hover,
.btn-add-to-cart:hover,
.product_type_external:hover,
.added_to_cart:hover,
.add_to_cart_button:hover {
  background: var(--secondary-color) !important;
  color: var(--white-color) !important;
}
.single_add_to_cart_button.button:hover::before,
.product_type_grouped:hover::before,
.btn-add-to-cart:hover::before,
.product_type_external:hover::before,
.added_to_cart:hover::before,
.add_to_cart_button:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.138' height='13.575' viewBox='0 0 13.138 13.575'%3E%3Cg id='Group_8507' data-name='Group 8507' transform='translate(-9.911 -56.079)' opacity='0.8'%3E%3Cpath id='Path_29300' data-name='Path 29300' d='M16.111,89.606a.8.8,0,0,1-.806.806.806.806,0,1,1,0-1.611A.834.834,0,0,1,16.111,89.606Z' transform='translate(-2.744 -20.758)' fill='%23ffffff'/%3E%3Cpath id='Path_29301' data-name='Path 29301' d='M32.111,89.606a.8.8,0,0,1-.806.806.806.806,0,1,1,0-1.611A.834.834,0,0,1,32.111,89.606Z' transform='translate(-13.961 -20.758)' fill='%23ffffff'/%3E%3Cpath id='Path_29302' data-name='Path 29302' d='M21.138,54.5v.816H19.857c-.131.392-.328,1.077-.558,1.861-.164.49-.3,1.045-.46,1.535-.394,1.371-1.117,3.657-1.478,4.767L17.2,64a1.515,1.515,0,0,1-1.642,1.078H9.642v-.816h5.912c.624,0,.788-.163.887-.522l.164-.522c.033-.131.1-.261.131-.424H10.3c-.46,0-.657-.294-.821-.816L8,57.177H18.445c.361-1.273.755-2.384.755-2.384l.1-.294Z' transform='translate(1.911 1.579)' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
}
.single_add_to_cart_button.button::after,
.product_type_grouped::after,
.btn-add-to-cart::after,
.product_type_external::after,
.added_to_cart::after,
.add_to_cart_button::after {
  content: none !important;
}


/* field
--------------------------------------------- */
input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(var(--font-color-rgb), 0.15);
  background-color: var(--white-color);
}
input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.747' height='16.42' viewBox='0 0 17.747 16.42'%3E%3Cg id='layer1' transform='translate(0)'%3E%3Cg id='layer1-2' transform='translate(0 0)'%3E%3Cpath id='path4068' d='M-838.971-494.409l5.659,6.568a51.977,51.977,0,0,1,12.088-16.42c-4.247,2.4-8.927,6.946-12.926,12.577Z' transform='translate(838.971 504.261)' fill='%2317be8a'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  -webkit-background-size: 10px 10px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  border-color: var(--background-color);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.736' height='6.204' viewBox='0 0 9.736 6.204'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M5,0,0,4.164,5,8.328' transform='translate(0.704 5.704) rotate(-90)' fill='none' stroke='%231a0101' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  -webkit-background-size: 15px 8px;
  background-size: 15px 8px;
  background-repeat: no-repeat;
  background-position: right 22px center;
  padding-right: 45px;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
select {
  height: 50px;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  border: 1px solid rgba(var(--primary-color-rgb), 0.15);
  background: rgba(var(--white-color-rgb), 1);
  border-radius: 0;
  padding: 10px 15px;
  width: 100%;
  margin-bottom: 15px;
  font-size: 0.778em;
  color: var(--font-color);
  font-family: var(--primary-font);
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=range]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=month]::-webkit-input-placeholder,
input[type=week]::-webkit-input-placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=datetime]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=color]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(var(--font-color-rgb), 0.7);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=range]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=month]::-moz-placeholder,
input[type=week]::-moz-placeholder,
input[type=time]::-moz-placeholder,
input[type=datetime]::-moz-placeholder,
input[type=datetime-local]::-moz-placeholder,
input[type=color]::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgba(var(--font-color-rgb), 0.7);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=range]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=week]:-ms-input-placeholder,
input[type=time]:-ms-input-placeholder,
input[type=datetime]:-ms-input-placeholder,
input[type=datetime-local]:-ms-input-placeholder,
input[type=color]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgba(var(--font-color-rgb), 0.7);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder {
  color: rgba(var(--font-color-rgb), 0.7);
}



.container {
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
  max-width: 530px;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 990px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.page-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.grid-item {
  padding: 0 15px;
  width: 100%;
}


/* --------------------------------------------------------------
# Components
-------------------------------------------------------------- */
/* heading
--------------------------------------------- */
/* sticky-t-bar
--------------------------------------------- */
/*==========================================
sticky-t-bar
==========================================*/
.sticky-t-bar {
  position: relative;
}
.sticky-t-bar .sticky-bar-content {
  padding: 8px 0;
  background: rgba(var(--primary-color-rgb), 0.1);
}
.sticky-t-bar .sticky-bar-content .container {
  line-height: 1.5;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sticky-t-bar .sticky-bar-content .container p {
  margin: 0;
}
.sticky-t-bar .sticky-bar-content .container .btn-readmore {
  margin-left: 4%;
  outline: none;
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 10px 18px;
  white-space: nowrap;
}
.sticky-t-bar .sticky-bar-content .container .btn-readmore:hover {
  background: var(--primary-color);
  color: var(--white-color);
  outline: none;
}
.sticky-t-bar .sticky-bar-content .container .btn-readmore::before, .sticky-t-bar .sticky-bar-content .container .btn-readmore::after {
  content: none;
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: left;
  grid-row-gap: 16px;
  grid-column-gap: 64px;
}
@media (max-width: 1100px) {
  .sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 40px;
  }
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container .text-holder {
  text-align: left;
  margin-bottom: 0;
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container .text-holder h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container .text-holder h3::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11.64' viewBox='0 0 12 11.64'%3E%3Cg id='Group_9193' data-name='Group 9193' transform='translate(0 0.001)' opacity='0.7'%3E%3Cpath id='Path_29319' data-name='Path 29319' d='M.329,5.75c-.454.233-.436.573.041.757l1.412.545a1.847,1.847,0,0,0,1.6-.224l6.13-4.716c.4-.309.446-.264.1.1L4.765,7.274A.567.567,0,0,0,5,8.266l.165.063c.478.18,1.258.484,1.733.672l1.566.622a.814.814,0,0,0,1.119-.517L11.965.55c.135-.483-.127-.688-.581-.456Z' transform='translate(0 0)' fill='%231a0101'/%3E%3Cpath id='Path_29320' data-name='Path 29320' d='M9.231,25.3c-.032.1,1.1-1.643,1.1-1.643a.849.849,0,0,0-.4-1.3l-1.238-.507c-.542-.222-.8.039-.578.58C8.116,22.429,9.264,25.2,9.231,25.3Z' transform='translate(-4.977 -13.66)' fill='%231a0101'/%3E%3C/g%3E%3C/svg%3E%0A");
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 11px;
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container .text-holder span {
  font-size: 0.8333333333em;
  line-height: 1.3;
  display: inline-block;
  margin-top: 5px;
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: 1em;
}
@media screen and (min-width: 1400px) {
  .sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 43%;
    -ms-flex: 0 0 43%;
    flex: 0 0 43%;
  }
}
@media (max-width: 1100px) {
  .sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form {
    width: 100%;
  }
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form .check-mark {
  border: 1px solid rgba(var(--primary-color-rgb), 0.5);
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form input:not(input[type=checkbox]) {
  margin: 0;
  height: 41px;
  min-height: 41px;
  padding-top: 0;
  padding-bottom: 0;
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form input:not(input[type=checkbox], input[type=submit]) {
  border: 1px solid rgba(var(--font-color-rgb), 0.1);
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form input[type=submit] {
  line-height: 41px;
  font-family: var(--secondary-font);
  letter-spacing: 0.6px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 0.7777777778em;
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form > label {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    grid-gap: 2px;
  }
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap input[type=checkbox]:checked + .check-mark {
  background-color: #fff;
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap .check-mark {
  margin-top: 0px;
  margin-right: 4px;
}
.sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap .text {
  font-size: 0.88888889em;
  line-height: 1.2em;
  margin-left: 4px;
  color: rgba(var(--font-color-rgb), 0.78);
}
@media (min-width: 768px) {
  .sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form input {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  .sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form > label {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 558px) {
  .sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .sticky-t-bar .sticky-bar-content .blossomthemes-email-newsletter-wrapper .container form input:not(input[type=checkbox]) {
    width: 100%;
  }
}
.sticky-t-bar .close {
  background: none;
  padding: 0;
  width: 25px;
  height: 25px;
  min-height: auto;
  position: absolute;
  top: 10px;
  border-radius: 0;
  right: 4%;
  cursor: pointer;
  z-index: 2;
  border: 0;
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
.sticky-t-bar .close::before, .sticky-t-bar .close::after {
  content: "";
  background: rgba(var(--font-color-rgb), 0.5);
  width: 13px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
.sticky-t-bar .close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sticky-t-bar.has-newsletter .sticky-bar-content {
  background: none;
  padding: 0;
}
.sticky-t-bar.has-newsletter .sticky-bar-content .blossomthemes-email-newsletter-wrapper {
  padding: 20px 0 20px;
}
@media (min-width: 768px) {
  .sticky-t-bar.has-newsletter .sticky-bar-content .blossomthemes-email-newsletter-wrapper {
    padding: 10px 0;
  }
}
.sticky-t-bar:not(.active) .close {
  top: 0;
  background: rgba(var(--primary-color-rgb), 0.8);
}
.sticky-t-bar:not(.active) .close::before, .sticky-t-bar:not(.active) .close::after {
  width: 8px;
  left: -5px;
  height: 2px;
  background: rgba(var(--white-color-rgb), 0.5);
}
.sticky-t-bar:not(.active) .close::after {
  left: 0;
  right: -5px;
}
@media (max-width: 767px) {
  .sticky-t-bar .sticky-bar-content {
    padding: 25px 0;
  }
  .sticky-t-bar .sticky-bar-content .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sticky-t-bar .sticky-bar-content .container .btn-readmore {
    margin-left: 0;
    margin-top: 10px;
  }
  .sticky-t-bar .close {
    top: 4px;
  }
}
@media (max-width: 1300px) and (min-width: 1200px) {
  .sticky-t-bar .sticky-bar-content {
    padding: 25px 0 19px;
  }
  .sticky-t-bar .close {
    top: 4px;
  }
}
@media (max-width: 1120px) and (min-width: 992px) {
  .sticky-t-bar .sticky-bar-content {
    padding: 25px 0 19px;
  }
  .sticky-t-bar .close {
    top: 4px;
  }
}
@media (max-width: 900px) and (min-width: 767px) {
  .sticky-t-bar .sticky-bar-content {
    padding: 25px 0 19px;
  }
  .sticky-t-bar .close {
    top: 4px;
  }
}

/*-----------------------------
  bottom sticky bar
------------------------------*/
.sticky-b-bar {
  position: relative;
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
.sticky-b-bar .bottom-bar-content {
  padding: 10px 0;
  border-top: 4px solid var(--primary-color);
}
.sticky-b-bar .bottom-bar-content .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.sticky-b-bar .bottom-bar-content .container a, .sticky-b-bar .bottom-bar-content .container p {
  margin: 5px 0;
}
.sticky-b-bar .bottom-bar-content .container p {
  font-size: 1.1em;
  font-family: var(--secondary-font);
}
.sticky-b-bar .bottom-bar-content .container .btn-readmore {
  margin-left: 0;
  outline: none;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 15px;
  padding: 14px 25px;
  white-space: nowrap;
}
.sticky-b-bar .bottom-bar-content .container .btn-readmore:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  outline: none;
}
.sticky-b-bar .bottom-bar-content .container .btn-readmore::before, .sticky-b-bar .bottom-bar-content .container .btn-readmore::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .sticky-b-bar .bottom-bar-content .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sticky-b-bar .bottom-bar-content .container .btn-readmore {
    margin-left: 4%;
    font-size: 17px;
    padding: 16px 28px;
  }
}
.sticky-b-bar .close {
  background: var(--white-color);
  padding: 0;
  width: 32px;
  height: 30px;
  min-height: auto;
  position: absolute;
  top: -15px;
  border-radius: 50%;
  right: 4%;
  cursor: pointer;
  z-index: 2;
  border: 0;
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
.sticky-b-bar .close::before, .sticky-b-bar .close::after {
  content: "";
  background: rgba(var(--font-color-rgb), 0.6);
  width: 8px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -5px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
.sticky-b-bar .close::after {
  left: 0;
  right: -5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sticky-b-bar:not(.active) .close {
  top: -23px;
  background: rgba(var(--primary-color-rgb), 0.8);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sticky-b-bar:not(.active) .close::before, .sticky-b-bar:not(.active) .close::after {
  background: rgba(var(--white-color-rgb), 0.8);
}

/*-----------------------------
  bottom sticky bar
------------------------------*/

/* sticky-heading
--------------------------------------------- */
.sticky-header {
  padding: 5px 0;
  background: var(--background-color);
  -webkit-box-shadow: 0 3px 5px rgba(var(--black-color-rgb), 0.05);
  box-shadow: 0 3px 5px rgba(var(--black-color-rgb), 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
.sticky-header .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sticky-header .container .nav-plus-btn-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 20px;
}
.sticky-header .container .nav-plus-btn-wrapper .toggle-btn-wrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.sticky-header .container .nav-plus-btn-wrapper .toggle-btn .toggle-bar {
  background-color: var(--font-color) !important;
}
@media (min-width: 1200px) {
  .sticky-header .container .nav-plus-btn-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .sticky-header .container .nav-plus-btn-wrapper .toggle-btn {
    display: none !important;
  }
  .sticky-header .container .nav-plus-btn-wrapper .main-navigation {
    grid-gap: 0;
    margin-left: 0;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .sticky-header .container .nav-plus-btn-wrapper .main-navigation .nav-menu > li:nth-last-child(3) .sub-menu, .sticky-header .container .nav-plus-btn-wrapper .main-navigation .nav-menu > li:nth-last-child(2) .sub-menu, .sticky-header .container .nav-plus-btn-wrapper .main-navigation .nav-menu > li:last-child .sub-menu {
    left: 0;
    right: auto;
  }
  .sticky-header .container .nav-plus-btn-wrapper .main-navigation .nav-menu > li:nth-last-child(3) .sub-menu .submenu-toggle-btn, .sticky-header .container .nav-plus-btn-wrapper .main-navigation .nav-menu > li:nth-last-child(2) .sub-menu .submenu-toggle-btn, .sticky-header .container .nav-plus-btn-wrapper .main-navigation .nav-menu > li:last-child .sub-menu .submenu-toggle-btn {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .sticky-header .container .nav-plus-btn-wrapper .main-navigation .nav-menu > li:nth-last-child(3) .sub-menu .sub-menu, .sticky-header .container .nav-plus-btn-wrapper .main-navigation .nav-menu > li:nth-last-child(2) .sub-menu .sub-menu, .sticky-header .container .nav-plus-btn-wrapper .main-navigation .nav-menu > li:last-child .sub-menu .sub-menu {
    left: auto;
    right: 100%;
  }
}
@media (max-width: 992px) {
  .sticky-header .container .nav-plus-btn-wrapper .header-button-wrap {
    display: none;
  }
}
.sticky-header .container .site-branding .site-logo .custom-logo-link img {
  max-width: 150px;
  width: 100%;
}
.sticky-header .container .site-branding p {
  color: var(--font-color);
}
.sticky-header.is-sticky {
  visibility: visible;
  display: block;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media (max-width: 1200px) {
  .sticky-header {
    padding: 10px 0;
  }
  .sticky-header .container .header-button-wrap {
    display: none;
  }
  .sticky-header .container #sticky-navigation.main-navigation {
    max-width: 100%;
    display: none;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--white-color);
    -webkit-box-shadow: -5px 0 15px rgba(var(--black-color-rgb), 0.1);
    box-shadow: -5px 0 15px rgba(var(--black-color-rgb), 0.1);
    width: 320px;
    z-index: 9999;
    margin: 0;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .sticky-header .container #sticky-navigation.main-navigation > div {
    height: 100vh;
    overflow-y: scroll;
  }
  .sticky-header .container #sticky-navigation.main-navigation > div ul {
    padding: 0;
  }
  .sticky-header .container #sticky-navigation.main-navigation > div ul li a {
    white-space: nowrap;
    color: rgba(var(--nav-font-color-rgb), 0.8);
  }
  .sticky-header .container #sticky-navigation.main-navigation > div ul .sub-menu li {
    padding-bottom: 0;
  }
}


/* navigation
--------------------------------------------- */
.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 0.9444444444em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  position: relative;
  padding: 10px;
}
.nav-menu li a {
  color: #001a1a;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--secondary-font);
  font-size: 0.888em;
}
.nav-menu li a:focus {
  outline: none;
  text-decoration: none;
}
.nav-menu li a:hover {
  text-decoration: none;
}
.nav-menu li > .submenu-toggle-btn {
  color: rgba(0, 26, 26, 0.8);
}
.nav-menu li > .submenu-toggle-btn .svg-inline--fa.fa-w-10 {
  width: 0.55em;
}
@media screen and (min-width: 1200px) {
  .nav-menu li:focus, .nav-menu li.focus {
    outline: 2px solid rgba(var(--black-color-rgb), 0.8);
  }
  .nav-menu li:hover > a, .nav-menu li:focus > a, .nav-menu li.hover > a, .nav-menu li.focus > a {
    color: var(--primary-color);
  }
  .nav-menu li:hover > .submenu-toggle-btn, .nav-menu li:focus > .submenu-toggle-btn, .nav-menu li.hover > .submenu-toggle-btn, .nav-menu li.focus > .submenu-toggle-btn {
    color: var(--primary-color);
  }
  .nav-menu li:hover > .sub-menu, .nav-menu li:focus > .sub-menu, .nav-menu li.hover > .sub-menu, .nav-menu li.focus > .sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    z-index: 99998;
  }
}
.nav-menu li .sub-menu, .nav-menu li ul {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: static;
  padding-top: 20px;
  list-style: none;
}
@media screen and (min-width: 1200px) {
  .nav-menu li .sub-menu, .nav-menu li ul {
    background: var(--white-color);
    -webkit-transition: all 0.235s ease;
    -o-transition: all 0.235s ease;
    transition: all 0.235s ease;
    padding-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-box-shadow: 0 5px 15px rgba(var(--black-color-rgb), 0.05);
    box-shadow: 0 5px 15px rgba(var(--black-color-rgb), 0.05);
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
  }
}
.nav-menu li .sub-menu li:not(:last-child), .nav-menu li ul li:not(:last-child) {
  border-bottom: 1px solid rgba(var(--black-color-rgb), 0.05);
}
@media screen and (min-width: 1200px) {
  .nav-menu li .sub-menu li.menu-item-has-children > .submenu-toggle-btn, .nav-menu li ul li.menu-item-has-children > .submenu-toggle-btn {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
.nav-menu li .sub-menu .sub-menu, .nav-menu li .sub-menu ul, .nav-menu li ul .sub-menu, .nav-menu li ul ul {
  left: 100%;
  top: 0;
}
.nav-menu li.current_page_item > a {
  color: var(--primary-color);
}

.main-navigation {
  display: none;
  z-index: 111;
  margin-left: 40px;
}
@media screen and (max-width: 1199px) {
  .main-navigation {
    max-width: 100%;
    overflow-y: auto;
    width: 320px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    -webkit-box-shadow: 5px 0 25px rgba(var(--black-color-rgb), 0.1);
    box-shadow: 5px 0 25px rgba(var(--black-color-rgb), 0.1);
    padding-top: 50px;
  }
  .main-navigation .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
  }
  .main-navigation .nav-menu li a {
    color: var(--white-color);
  }
}
@media screen and (min-width: 1200px) {
  .main-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 20px;
  }
  .main-navigation .close-btn {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .main-navigation {
    grid-gap: 50px;
  }
}
@media screen and (min-width: 1199px) {
  .main-navigation .nav-menu {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main-navigation .nav-menu li {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-navigation .nav-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(var(--black-color-rgb), 0.05);
}
@media screen and (min-width: 1200px) {
  .main-navigation .nav-menu li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
  }
  .main-navigation .nav-menu li:not(:last-child) {
    border: none;
  }
}
@media screen and (min-width: 1400px) {
  .main-navigation .nav-menu li {
    padding: 22px 30px;
  }
}
@media screen and (max-width: 1199px) {
  .main-navigation .nav-menu li .submenu-toggle-btn {
    position: absolute;
    right: 15px;
    top: 20px;
  }
}

.site-header:not(.style-ten, .style-eight) .secondary-nav > div {
  max-width: 100%;
  display: none;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--white-color);
  -webkit-box-shadow: -5px 0 15px rgba(var(--black-color-rgb), 0.1);
  box-shadow: -5px 0 15px rgba(var(--black-color-rgb), 0.1);
  width: 320px;
  z-index: 99999;
}
.site-header:not(.style-ten, .style-eight) .secondary-nav > div .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
.site-header:not(.style-ten, .style-eight) .secondary-nav > div .nav-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(var(--black-color-rgb), 0.05);
}
.site-header:not(.style-ten, .style-eight) .secondary-nav > div .nav-menu li.menu-item-has-children .submenu-toggle-btn {
  position: absolute;
  right: 20px;
  top: 18px;
  pointer-events: all;
}
.site-header:not(.style-ten, .style-eight) .secondary-nav > div .nav-menu li .sub-menu {
  all: unset;
  display: none;
}
.site-header:not(.style-ten, .style-eight) .secondary-nav > div .nav-menu li .sub-menu .menu-item-has-children .submenu-toggle-btn {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

@media screen and (min-width: 1200px) {
  .main-navigation .submenu-toggle-btn {
    display: none;
  }
  .main-navigation .nav-menu > li.menu-item-has-children > a::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg class='svg-inline--fa fa-caret-down fa-w-10' aria-hidden='true' data-prefix='fas' data-icon='caret-down' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' data-fa-i2svg=''%3E%3Cpath fill='%23222222' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    background-repeat: no-repeat;
    margin-left: 13px;
    position: absolute;
    right: 0;
    top: 22px;
  }
  .main-navigation .nav-menu > li.menu-item-has-children.hover > a::after,
  .main-navigation .nav-menu > li.menu-item-has-children:hover > a::after {
    background-image: url("data:image/svg+xml,%3Csvg class='svg-inline--fa fa-caret-down fa-w-10' aria-hidden='true' data-prefix='fas' data-icon='caret-down' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' data-fa-i2svg=''%3E%3Cpath fill='%23A60505' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
  }
  .main-navigation .nav-menu li .sub-menu li.menu-item-has-children > a {
    position: relative;
  }
  .main-navigation .nav-menu li .sub-menu li.menu-item-has-children > a::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg class='svg-inline--fa fa-caret-down fa-w-10' aria-hidden='true' data-prefix='fas' data-icon='caret-down' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' data-fa-i2svg=''%3E%3Cpath fill='%23222222' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
    position: absolute;
    right: -10px;
    top: 1px;
    width: 0.9em;
    height: 0.9em;
    background-repeat: no-repeat;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .main-navigation .nav-menu li .sub-menu li.menu-item-has-children.hover > a::after,
  .main-navigation .nav-menu li .sub-menu li.menu-item-has-children:hover > a::after {
    background-image: url("data:image/svg+xml,%3Csvg class='svg-inline--fa fa-caret-down fa-w-10' aria-hidden='true' data-prefix='fas' data-icon='caret-down' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' data-fa-i2svg=''%3E%3Cpath fill='%23A60505' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
  }
  .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:nth-last-child(3) .sub-menu li a::after,
  .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:nth-last-child(2) .sub-menu li a::after,
  .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:last-child .sub-menu li a::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .keyboard-nav-on .footer-navigation .nav-menu .sub-menu,
  .keyboard-nav-on .secondary-nav .nav-menu .sub-menu,
  .keyboard-nav-on .main-navigation .nav-menu .sub-menu {
    visibility: visible !important;
  }
}
.mobile-menu-active .site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner {
  visibility: visible;
}


/* one-page-navigation
--------------------------------------------- */
/*==========================================
one page navigation
==========================================*/

.site-branding .site-title {
  line-height: 1.3;
  margin: 0;
}
.site-branding .site-logo a {
  line-height: 1;
}
.site-branding .site-description {
  margin-bottom: 0;
}
.site-branding a {
  text-decoration: none;
  font-weight: bold;
  color: var(--primary-color);
  display: inline-block;
}
.site-branding a:hover {
  color: var(--primary-color);
  text-decoration: none;
}
.site-branding.has-image-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-branding.has-image-text .site-title-wrap {
  margin-left: 18px;
}
@media (max-width: 458px) {
  .site-branding.has-image-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: 15px;
  }
  .site-branding.has-image-text .site-title-wrap {
    margin-left: 0;
  }
}

.site-header {
  position: relative;
  -webkit-box-shadow: 0 17px 16px rgba(var(--font-color-rgb), 0.03);
  box-shadow: 0 17px 16px rgba(var(--font-color-rgb), 0.03);
  /* header style one
  --------------------------------------------- */
}
.site-header .header-left-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header .secondary-nav + .random-post-search {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(var(--font-color-rgb), 0.05);
}
.site-header .random-post-search {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.site-header .random-post-search a {
  color: rgba(var(--font-color-rgb), 0.7);
  font-size: 22px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.site-header .random-post-search a:hover {
  color: var(--primary-color);
}
.site-header .header-block {
  font-size: 15px;
}
.site-header .header-block i,
.site-header .header-block .fas,
.site-header .header-block .fa,
.site-header .header-block .svg-inline--fa,
.site-header .header-block svg {
  color: #17be8a;
  margin-right: 10px;
}
.site-header .header-block .fa-phone {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.site-header .header-block a {
  text-decoration: none;
  color: #232323;
}
.site-header .header-block a:hover {
  color: var(--primary-color);
}
.site-header .header-social .social-list li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.site-header .header-social .social-list a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  color: rgba(0, 26, 26, 0.9);
}
.site-header .header-social .social-list a:hover {
  color: var(--primary-color);
}
.site-header .header-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header .header-right .header-search + .header-cart {
  border-left: 1px solid rgba(var(--primary-color-rgb), 0.5);
  padding-left: 14px;
  margin-left: 14px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.site-header .header-search .search-toggle {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 26, 26, 0.9);
  line-height: 1;
}
.site-header .header-search .search-toggle path {
  fill: rgba(0, 26, 26, 0.9);
  stroke: rgba(0, 26, 26, 0.9);
}
.site-header .header-search .search-toggle:hover {
  color: var(--primary-color);
}
.site-header .header-search .search-toggle:hover path {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}
.site-header .header-search-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--white-color-rgb), 0.95);
  z-index: 999999999;
}
.site-header .header-search-wrap .header-search-inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.site-header .header-search-wrap .header-search-inner .search-form {
  max-width: 900px;
  padding: 0 15px;
}
@media screen and (min-width: 576px) {
  .site-header .header-search-wrap .header-search-inner .search-form .search-field {
    height: 80px;
    font-size: 2em;
    padding: 0 20px;
  }
  .site-header .header-search-wrap .header-search-inner .search-form .search-submit {
    width: 80px;
    padding: 16px;
    -webkit-background-size: 30px 30px;
    background-size: 30px;
  }
}
.site-header .header-search-wrap .header-search-inner .close {
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 0;
  width: 40px;
  height: 40px;
}
.site-header .header-search-wrap .header-search-inner .close::before, .site-header .header-search-wrap .header-search-inner .close::after {
  content: "";
  background: var(--font-color);
  width: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.235s ease;
  -o-transition: all 0.235s ease;
  transition: all 0.235s ease;
}
.site-header .header-search-wrap .header-search-inner .close::before {
  background: var(--font-color);
  width: 40px;
}
.site-header .header-search-wrap .header-search-inner .close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: var(--font-color);
  width: 40px;
}
.site-header .header-search-wrap .header-search-inner .close:hover::before, .site-header .header-search-wrap .header-search-inner .close:hover::after {
  background: var(--primary-color);
}
.site-header .header-cart a {
  color: rgba(var(--font-color-rgb), 0.9);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  text-decoration: none;
}
.site-header .header-cart a path {
  fill: rgba(var(--font-color-rgb), 0.9);
}
.site-header .header-cart a .number,
.site-header .header-cart a .cart-count {
  background: rgba(var(--primary-color-rgb), 0.8);
  color: rgba(var(--font-color-rgb), 0.9);
  text-align: center;
  font-size: 12px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -10px;
}
.site-header .header-cart a:hover path {
  fill: var(--primary-color);
}
.site-header .secondary-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.site-header .header-top .container,
.site-header .header-top .container > [class*=header-] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 30px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.site-header .header-top > .container {
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(var(--black-color-rgb), 0.05);
}
@media screen and (max-width: 767px) {
  .site-header .header-top .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 10px;
  }
  .site-header .header-top .container .header-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.site-header > .header-main {
  padding: 20px 0;
}
.site-header > .header-main .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .site-header > .header-main .container > .toggle-btn {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:nth-last-child(3) .sub-menu, .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:nth-last-child(2) .sub-menu, .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:last-child .sub-menu {
    left: 0;
    right: auto;
  }
  .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:nth-last-child(3) .sub-menu .submenu-toggle-btn, .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:nth-last-child(2) .sub-menu .submenu-toggle-btn, .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:last-child .sub-menu .submenu-toggle-btn {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:nth-last-child(3) .sub-menu .sub-menu, .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:nth-last-child(2) .sub-menu .sub-menu, .site-header:not(.style-two, .style-four, .style-six) .header-main .main-navigation .nav-menu > li:last-child .sub-menu .sub-menu {
    left: auto;
    right: 100%;
  }
}
.site-header.style-one > .header-top .container {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.site-header.style-one > .header-middle {
  padding: 20px 0;
}
.site-header.style-one > .header-middle .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header.style-one > .header-middle .site-branding {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.site-header.style-one .header-main {
  padding: 15px 0;
}
.site-header.style-one .header-main .container {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 1200px) {
  .site-header.style-one .header-main .main-navigation {
    width: unset;
  }
  .site-header.style-one .header-main .main-navigation .nav-menu > li:not(.menu-item-has-children):last-child {
    padding-right: 0;
  }
}
.site-header.style-one .header-main .secondary-nav > div {
  right: 0;
  left: unset;
}

/* mobile header
--------------------------------------------- */
@media (max-width: 1199px) {
  .site-header > .header-top,
  .site-header > .header-main,
  .site-header > .header-bottom,
  .site-header > .header-middle {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .mobile-header {
    display: none;
  }
  .site-header .mobile-header .toggle-btn {
    display: none;
  }
}
.site-header .mobile-header .header-top {
  background-color: unset;
}
.site-header .mobile-header .toggle-btn {
  display: inline-block;
}
.site-header .mobile-header .header-main .container {
  display: block;
}
.site-header .mobile-header .header-main .container .mob-nav-site-branding-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.site-header .mobile-header .header-main .container .mob-nav-site-branding-wrap .header-center {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .site-header .mobile-header .header-main .container .mob-nav-site-branding-wrap .header-center .custom-logo-link img {
    width: 350px;
    max-width: 100%;
  }
}
.site-header .mobile-header .header-main .container .mob-nav-site-branding-wrap .header-left {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header .mobile-header .header-main .container .mob-nav-site-branding-wrap .header-left .header-search + .toggle-btn-wrap {
  padding-left: 15px;
  margin-left: 14px;
  border-left: 1px solid rgba(var(--primary-color-rgb), 0.5);
}
.site-header .mobile-header .header-main .container .mob-nav-site-branding-wrap .header-left .toggle-btn-wrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.site-header .mobile-header .header-main .container .mob-nav-site-branding-wrap .header-left .toggle-btn-wrap .toggle-btn .toggle-bar {
  background-color: var(--font-color);
}
.site-header .mobile-header .header-main .container .header-right .header-button-wrap {
  display: block !important;
}
@media (max-width: 500px) {
  .site-header .mobile-header .header-main .container .header-right .header-button-wrap {
    display: none !important;
  }
}
.site-header .mobile-header .header-main {
  padding: 20px 0;
}
.site-header .mobile-header .header-main .container .main-navigation {
  -webkit-box-flex: unset !important;
  -webkit-flex: unset !important;
  -ms-flex: unset !important;
  flex: unset !important;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 370px;
  height: 100%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  background-color: var(--white-color);
  -webkit-box-shadow: 10px 0 20px rgba(var(--font-color-rgb), 0.15);
  box-shadow: 10px 0 20px rgba(var(--font-color-rgb), 0.15);
  overflow-y: auto;
  z-index: 99999;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 558px) {
  .site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner {
    width: 100%;
  }
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container {
  background-color: rgba(var(--primary-color-rgb), 0.05);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  max-width: 100%;
  min-height: 100%;
  padding-bottom: 100px;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mobile-header-wrap {
  background: #fff;
  padding: 22px 15px 25px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2222;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mobile-header-wrap > .close {
  position: relative;
  padding: 0;
  padding: 0;
  width: 25px;
  height: 25px;
  min-height: auto;
  background: none;
  cursor: pointer;
  border: 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mobile-header-wrap > .close::before, .site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mobile-header-wrap > .close::after {
  content: "";
  background: var(--font-color);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mobile-header-wrap > .close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mobile-header-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 15px;
  padding: 0 22px;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mob-ctc-btn {
  padding: 0 15px 77px;
  margin: 39px 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mob-ctc-btn .header-block {
  margin: 23px 0 23px 0;
  padding-left: 0;
  margin-left: 0;
  text-align: center;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mob-ctc-btn .header-block:first-child {
  margin: 49px 0 0 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mob-ctc-btn .header-button-wrap {
  margin-left: 0;
  text-align: center;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .mob-ctc-btn a {
  width: 100%;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-cart {
  margin-top: 25px;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-social ul li a {
  padding: unset;
  line-height: 1;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-social ul li a svg {
  -webkit-transition: all 0.03s ease;
  -o-transition: all 0.03s ease;
  transition: all 0.03s ease;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-social ul li a:hover {
  color: var(--primary-color);
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-left .close-btn,
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-left .toggle-btn {
  display: none;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-left .main-navigation {
  display: block;
  position: static;
  width: unset;
  height: unset;
  background-color: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  z-index: 3;
  padding-top: 0;
  overflow: unset;
  margin: 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-left .main-navigation > div .nav-menu {
  overflow: unset;
  margin-top: 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-left .main-navigation > div .nav-menu li {
  border: 0;
  padding: 40px 0px 0 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-left .main-navigation > div .nav-menu li a {
  font-family: var(--secondary-font);
  font-size: 1em;
  color: var(--font-color);
  width: unset;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-left .main-navigation > div .nav-menu li ul {
  padding-top: 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-left .main-navigation > div .nav-menu li .sub-menu {
  background-color: unset;
  padding-top: 0;
  padding-left: 20px;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-left .main-navigation > div .nav-menu li .submenu-toggle-btn {
  right: 0;
  top: 40px;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
  -webkit-align-items: unset;
  -ms-flex-align: unset;
  align-items: unset;
  border-top: 1px solid rgba(var(--font-color-rgb), 0.05);
  margin-top: 35px;
  width: 100%;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .close-btn,
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .toggle-btn {
  display: none;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav {
  width: 100%;
  display: block;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div {
  height: unset;
  display: block;
  position: static;
  width: unset;
  height: unset;
  background-color: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  z-index: 3;
  padding: 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu {
  width: unset;
  padding: 0;
  overflow: unset;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu li {
  border: 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu li a {
  font-family: var(--secondary-font);
  text-align: left;
  font-size: 1em;
  font-weight: 400;
  color: var(--font-color);
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu li .sub-menu {
  padding-left: 10px;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu li .submenu-toggle-btn {
  top: 33px;
  right: 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu > li {
  padding: 27px 0 0 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu > li:first-child a {
  padding-top: 0 !important;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu ul {
  padding-top: 12px;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu ul li {
  padding: 7px 14px;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu ul li:last-child {
  padding-bottom: 0;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu ul li a {
  width: auto;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-right .secondary-nav > div .nav-menu ul li .submenu-toggle-btn {
  top: 14px;
}
.site-header .mobile-header .header-bottom-slide .header-bottom-slide-inner .container .header-social-wrapper {
  margin-top: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}


/* Front pages
--------------------------------------------- */
.site-banner {
  position: relative;
  /*--------------------------------------------------------------
  # Banner slider overlay
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Slider One
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # static Cta
  --------------------------------------------------------------*/
}
.site-banner .item .banner-img-wrap svg {
  width: 100%;
}
.site-banner .caption-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  padding: 0;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .site-banner .caption-wrapper {
    position: absolute;
  }
}
.site-banner .large-width .banner-caption .banner-title {
  font-size: 1.6666666667em;
  line-height: 1.37;
  font-weight: normal;
  margin-top: 13px;
}
.site-banner .item-post {
  position: relative;
}
.site-banner .banner-caption {
  padding: 17px 15px;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .site-banner .banner-caption {
    padding: 34px 30px;
  }
}
.site-banner .banner-caption .entry-meta .cat-links {
  color: var(--white-color);
}
.site-banner .banner-caption .entry-meta .cat-links a {
  color: var(--white-color);
}
.site-banner .banner-caption .entry-meta .cat-links a::before {
  top: 8px;
}
.site-banner .banner-caption .entry-meta .cat-links a:hover {
  color: var(--primary-color);
}
.site-banner .banner-caption .entry-meta .cat-links a + a {
  margin-left: 6px;
}
.site-banner .banner-caption .banner-title {
  font-size: 1.333em;
  line-height: 1.37;
  font-weight: normal;
  margin-top: 11px;
}
.site-banner .banner-caption .banner-title a {
  color: var(--white-color);
  text-decoration: none;
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
.site-banner .banner-caption .banner-title a:hover {
  color: var(--primary-color);
}
.site-banner .banner-caption .banner-title span {
  font-family: var(--signature-font-one);
}
.site-banner .banner-caption .banner-desc {
  margin-bottom: 36px;
  letter-spacing: 0.2px;
  font-size: 1em;
  line-height: 1.75;
}
.site-banner .banner-caption .banner-button-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .site-banner .banner-caption .banner-button-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.site-banner .banner-caption .entry-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}
.site-banner .banner-caption .entry-footer .byline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-banner .banner-caption .entry-footer .byline span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.site-banner .banner-caption .entry-footer .byline a {
  color: var(--white-color);
}
.site-banner .banner-caption .entry-footer .byline a.fn {
  font-weight: normal;
  font-size: 0.7777em;
  color: var(--white-color);
  font-family: var(--secondary-font);
  text-transform: capitalize;
}
.site-banner .banner-caption .entry-footer .byline a.fn:hover {
  color: var(--primary-color);
}
.site-banner .banner-caption .entry-footer .posted-on {
  margin-left: 15px;
  line-height: unset;
}
.site-banner .banner-caption .entry-footer .posted-on a {
  color: var(--white-color);
}
.site-banner .banner-caption .entry-footer .posted-on a:hover {
  color: var(--primary-color);
}
.site-banner .banner-caption .entry-content {
  margin-bottom: 0;
  margin-top: 25px;
}
.site-banner .banner-caption .entry-content p:last-child {
  margin-bottom: 0;
}
.site-banner .owl-carousel .owl-item {
  overflow: hidden;
}
.site-banner .owl-carousel .owl-nav button.owl-prev,
.site-banner .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.site-banner .owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
.site-banner .owl-carousel .owl-nav button.owl-next {
  right: 0;
}
.site-banner .owl-carousel .owl-dots {
  margin-top: 30px;
}
.site-banner.slider-one .banner-wrapper .item .banner-caption::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), color-stop(50%, rgba(0, 0, 0, 0.7)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.site-banner.slider-one .banner-wrapper {
  padding-bottom: 74px;
}
@media screen and (min-width: 768px) {
  .site-banner.slider-one .banner-wrapper {
    padding-bottom: 0;
  }
}
.site-banner.slider-one .banner-wrapper .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: -14.9px;
  margin: -3px;
}
@media screen and (min-width: 768px) {
  .site-banner.slider-one .banner-wrapper .item {
    margin: -14.9px;
  }
}
.site-banner.slider-one .banner-wrapper .item .banner-caption {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translatex(-50%);
  -ms-transform: translatex(-50%);
  -o-transform: translatex(-50%);
  transform: translatex(-50%);
  padding-top: 50px;
  margin: 0;
}
.site-banner.slider-one .banner-wrapper .item .banner-caption .banner-title {
  margin-bottom: 0;
}
.site-banner.slider-one .banner-wrapper .item .item-post {
  margin: 3px;
}
@media screen and (min-width: 768px) {
  .site-banner.slider-one .banner-wrapper .item .item-post {
    margin: 14.9px;
  }
}
.site-banner.slider-one .banner-wrapper .item .item-post.large-width {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .site-banner.slider-one .banner-wrapper .item .item-post.large-width {
    -webkit-flex-basis: 58%;
    -ms-flex-preferred-size: 58%;
    flex-basis: 58%;
    max-width: 58%;
  }
}
@media screen and (min-width: 1200px) {
  .site-banner.slider-one .banner-wrapper .item .item-post.large-width {
    -webkit-flex-basis: 64.9%;
    -ms-flex-preferred-size: 64.9%;
    flex-basis: 64.9%;
    max-width: 64.9%;
  }
}
.site-banner.slider-one .banner-wrapper .item .item-post:not(.large-width) {
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .site-banner.slider-one .banner-wrapper .item .item-post:not(.large-width) {
    max-width: 45.7%;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .site-banner.slider-one .banner-wrapper .item .item-post:not(.large-width) {
    max-width: 365px;
  }
}
@media (max-width: 992px) {
  .site-banner.slider-one .banner-wrapper .item .item-post .banner-img-wrap img {
    height: 427px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 992px) and (min-width: 576px) {
  .site-banner.slider-one .banner-wrapper .item .item-post:nth-child(4) .banner-img-wrap img, .site-banner.slider-one .banner-wrapper .item .item-post:nth-child(5) .banner-img-wrap img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 1200px) and (min-width: 992px) {
  .site-banner.slider-one .banner-wrapper .item .item-post:nth-child(3), .site-banner.slider-one .banner-wrapper .item .item-post:nth-child(4), .site-banner.slider-one .banner-wrapper .item .item-post:nth-child(5) {
    max-width: 300px;
  }
  .site-banner.slider-one .banner-wrapper .item .item-post:nth-child(3) .banner-img-wrap img, .site-banner.slider-one .banner-wrapper .item .item-post:nth-child(4) .banner-img-wrap img, .site-banner.slider-one .banner-wrapper .item .item-post:nth-child(5) .banner-img-wrap img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .site-banner.slider-one .banner-wrapper .item .item-post.large-width .banner-img-wrap {
    height: 100%;
  }
  .site-banner.slider-one .banner-wrapper .item .item-post.large-width .banner-img-wrap img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.site-banner.slider-one .owl-carousel .owl-nav button.owl-prev,
.site-banner.slider-one .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  bottom: 10px;
  top: unset;
  -webkit-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
  transform: unset;
}
@media screen and (min-width: 768px) {
  .site-banner.slider-one .owl-carousel .owl-nav button.owl-prev,
  .site-banner.slider-one .owl-carousel .owl-nav button.owl-next {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: unset;
  }
}
.site-banner.slider-one .owl-carousel .owl-nav button.owl-prev {
  left: 15px;
}
.site-banner.slider-one .owl-carousel .owl-nav button.owl-next {
  left: 75px;
}
@media screen and (min-width: 768px) {
  .site-banner.slider-one .owl-carousel .owl-nav button.owl-prev {
    left: 0px;
  }
  .site-banner.slider-one .owl-carousel .owl-nav button.owl-next {
    right: 0px;
    left: unset;
  }
}
@media screen and (min-width: 1400px) {
  .site-banner.slider-one .owl-carousel .owl-nav button.owl-prev {
    left: -65px;
  }
  .site-banner.slider-one .owl-carousel .owl-nav button.owl-next {
    right: -65px;
  }
}
.site-banner.slider-one .owl-carousel .owl-dots {
  margin-top: 30px;
}
.site-banner.static-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.site-banner.static-cta .wp-custom-header {
  height: 323px;
}
.site-banner.static-cta .wp-custom-header img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.site-banner.static-cta .wp-custom-header .wp-custom-header-video-button {
  display: none;
}
@media screen and (min-width: 768px) {
  .site-banner.static-cta .item {
    height: 650px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .site-banner.static-cta .item .wp-custom-header {
    height: unset;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
  }
}
.site-banner.static-cta .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.site-banner.static-cta .banner-caption {
  max-width: 580px;
  padding: 50px 60px;
  background: var(--white-color);
  position: relative;
  z-index: 1;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .site-banner.static-cta .banner-caption {
    padding: 30px 30px 0 30px;
  }
}
.site-banner.static-cta .banner-caption .subtitle {
  margin-bottom: 10px;
  font-size: 0.8333333333em;
  font-family: var(--primary-font);
  color: rgba(var(--primary-color-rgb), 0.8);
  letter-spacing: 2.75px;
}
.site-banner.static-cta .banner-caption > h2 {
  font-size: 2.22em;
  line-height: 1.37;
  font-weight: normal;
}
.site-banner.static-cta .banner-caption .banner-desc p:last-child {
  margin-bottom: 0;
}
.site-banner.static-cta .banner-caption .btn-wrap {
  margin-top: 30px;
}
.site-banner.static-cta .banner-caption .btn-wrap a {
  margin: 10px 0;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .site-banner.static-cta .banner-caption .btn-wrap a + a {
    margin-left: 20px;
  }
}
.site-banner.static-cta .item {
  position: relative;
  width: 100%;
}
.site-banner.static-cta .item.center .banner-caption {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.site-banner.static-cta .item.right .banner-caption {
  margin-left: auto;
  margin-right: 0;
}


/* Front pages
--------------------------------------------- */
/*-----------------------------
	cta section
------------------------------*/
.cta-section .cta-section-wrapper {
  background-color: rgba(var(--primary-color-rgb), 0.02);
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .cta-section .cta-section-wrapper {
    padding: 15px 50px;
  }
}
@media screen and (min-width: 1200px) {
  .cta-section .cta-section-wrapper {
    padding: 15px 132px;
  }
}
.cta-section .cta-section-wrapper .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cta-section .cta-section-wrapper .grid .grid-item {
  padding: 0;
  margin: 15px 0;
  width: unset;
}
.cta-section .cta-section-wrapper .grid .grid-item .section-titl {
  font-size: 1em;
  letter-spacing: 0.36px;
  font-family: var(--primary-font);
  font-weight: 400;
  margin-bottom: 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.cta-section .cta-section-wrapper .grid .grid-item .cta-image {
  padding-right: 18px;
}
.cta-section .cta-section-wrapper .grid .grid-item .cta-image svg {
  opacity: 0.7;
}
@media screen and (min-width: 992px) {
  .cta-section .cta-section-wrapper .grid .grid-item:first-child {
    max-width: 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 72%;
    -ms-flex: 0 0 72%;
    flex: 0 0 72%;
    width: 100%;
    margin-right: 48px;
  }
}

/*-----------------------------
	feature section
------------------------------*/
.feature-section {
  position: relative;
  /* feature-section style-four
  --------------------------------------------- */
}
.feature-section .grid .small-post {
  padding-left: 0;
  padding-right: 0;
}
.feature-section .grid .small-post article .post-thumbnail {
  width: 100%;
  margin-bottom: 25px;
  margin-top: 0;
  text-align: center;
}
.feature-section .grid .small-post article .content-wrap {
  width: 100%;
  padding-left: 0;
}
.feature-section .grid .small-post article .entry-title {
  font-size: 1.1112em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .feature-section .grid .small-post {
    max-width: 25.8%;
    -webkit-box-flex: 25.8%;
    -webkit-flex: 25.8%;
    -ms-flex: 25.8%;
    flex: 25.8%;
    padding-right: 30px;
    padding-left: 0;
  }
  .feature-section .grid .small-post .article .post-thumbnail {
    text-align: left;
  }
}
.feature-section .grid .large-post {
  border-left: 0;
  border-right: 0;
  padding-right: 0;
  padding-left: 0;
}
.feature-section .grid .large-post .post-thumbnail {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .feature-section .grid .large-post {
    max-width: 48.4%;
    -webkit-box-flex: 48.4%;
    -webkit-flex: 48.4%;
    -ms-flex: 48.4%;
    flex: 48.4%;
    padding-left: 30px;
    padding-right: 30px;
    border-left: 1px solid rgba(var(--font-color-rgb), 0.04);
    border-right: 1px solid rgba(var(--font-color-rgb), 0.04);
  }
  .feature-section .grid .large-post + .small-post {
    padding-right: 0;
    padding-left: 30px;
  }
}
.feature-section .grid article .post-thumbnail {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.feature-section .grid article .entry-meta {
  margin-bottom: 9px;
  line-height: 1;
}
.feature-section .grid article .entry-meta .cat-links a {
  color: var(--primary-color);
  text-transform: uppercase;
  line-height: 1;
}
.feature-section .grid article .entry-meta .cat-links a:hover {
  color: var(--secondary-color);
}
.feature-section .grid article .entry-title {
  margin-top: 0;
  font-size: 1.66em;
  font-family: var(--secondary-font);
  line-height: 1.3;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .feature-section .grid article .entry-title {
    font-size: 2.222em;
  }
}
.feature-section .grid article .entry-title a {
  color: var(--font-color);
  text-decoration: none;
}
.feature-section .grid article .entry-title a:hover {
  color: var(--primary-color);
}
.feature-section .grid article .entry-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}
.feature-section .grid article .entry-footer .byline a.fn {
  font-weight: normal;
  font-size: 0.7777em;
  color: var(--font-color);
  font-family: var(--secondary-font);
  text-transform: capitalize;
}
.feature-section .grid article .entry-footer .byline a.fn:hover {
  color: var(--primary-color);
}
.feature-section .grid article .entry-footer .byline + .posted-on {
  margin-left: 15px;
}
.feature-section .grid article .entry-footer .posted-on a {
  color: rgba(var(--font-color-rgb), 0.8);
}
.feature-section .grid article .entry-footer .posted-on a::before {
  background-color: rgba(var(--secondary-color-rgb), 0.3);
}
.feature-section .grid article .entry-footer .posted-on a:hover {
  color: var(--primary-color);
}
.feature-section .grid article .entry-footer .posted-on a:hover::before {
  background-color: var(--primary-color);
}
.feature-section .grid article .entry-content {
  margin-top: 17px;
}
.feature-section .grid article .entry-content p:last-child {
  margin-bottom: 0;
}
.feature-section .category-nav {
  margin-top: 27px;
}
@media screen and (min-width: 992px) {
  .feature-section .category-nav {
    margin-top: 58px;
  }
}
.feature-section .category-nav .nav-link {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--white-color);
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-background-size: 6px 10px;
  background-size: 6px 10px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
.feature-section .category-nav .nav-link.inactive {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.feature-section .category-nav .nav-link:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.feature-section .category-nav .nav-link.prev-nav-categories {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.096' height='16.218' viewBox='0 0 10.096 16.218'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M8.892,0,0,7.406l8.889,7.4' transform='translate(0.5 0.704)' fill='none' stroke='%23a60505' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
}
.feature-section .category-nav .nav-link.prev-nav-categories:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.096' height='16.218' viewBox='0 0 10.096 16.218'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M8.892,0,0,7.406l8.889,7.4' transform='translate(0.5 0.704)' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
}
.feature-section .category-nav .nav-link.next-nav-categories {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.096' height='16.218' viewBox='0 0 10.096 16.218'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M0,0,8.892,7.406,0,14.809' transform='translate(0.704 0.704)' fill='none' stroke='%23a60505' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E ");
}
.feature-section .category-nav .nav-link.next-nav-categories:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.096' height='16.218' viewBox='0 0 10.096 16.218'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M0,0,8.892,7.406,0,14.809' transform='translate(0.704 0.704)' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E ");
}
.feature-section .category-nav .nav-link + a {
  margin-left: 15px;
}
.feature-section.style-four .container-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.feature-section.style-four .container-row .container-column {
  -webkit-box-flex: 100%;
  -webkit-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  max-width: 100%;
  margin-top: 60px;
}
.feature-section.style-four .container-row .container-column:first-child {
  margin-top: 0px;
}
@media screen and (min-width: 768px) {
  .feature-section.style-four .container-row .container-column {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33%;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 30px;
    margin-top: 0;
  }
  .feature-section.style-four .container-row .container-column:first-child {
    padding-left: 30px;
  }
  .feature-section.style-four .container-row .container-column:last-child {
    padding-right: 30px;
  }
  .feature-section.style-four .container-row .container-column:nth-child(2) .grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 1px;
    height: 100%;
    border-left: 1px solid rgba(var(--font-color-rgb), 0.04);
  }
  .feature-section.style-four .container-row .container-column:nth-child(2) .grid::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 1px;
    height: 100%;
    border-left: 1px solid rgba(var(--font-color-rgb), 0.04);
  }
}
.feature-section.style-four .container-row .container-column .grid {
  position: relative;
}
.feature-section.style-four .container-row .container-column .grid .post .content-wrap .entry-header .entry-title {
  margin-bottom: 0;
}
.feature-section.style-four .container-row .container-column .grid .post .content-wrap .posted-on {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.feature-section.style-four .container-row .container-column .grid .post .content-wrap .posted-on a::before {
  top: 10px;
}
.feature-section.style-four .container-row .container-column .grid .post:first-child .content-wrap .entry-header .entry-title {
  font-size: 1.333em;
}
.feature-section.style-four .container-row .container-column .grid .post:not(:first-child) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.feature-section.style-four .container-row .container-column .grid .post:not(:first-child) .post-thumbnail {
  margin: 0;
  max-width: 132px;
  width: 100%;
}
.feature-section.style-four .container-row .container-column .grid .post:not(:first-child) .content-wrap {
  margin-left: 20px;
}
.feature-section.style-four .container-row .container-column .grid .post:not(:first-child) .content-wrap .entry-header .entry-title {
  font-size: 1em;
}
.feature-section.style-four .container-row .container-column .grid .post:not(:first-child) .content-wrap .entry-footer .posted-on {
  margin-left: 0;
}
.feature-section.style-four .container-row .container-column .grid .post:not(:first-child) .content-wrap .entry-footer .posted-on a {
  padding-left: 0;
}
.feature-section.style-four .container-row .container-column .grid .post:not(:first-child) .content-wrap .entry-footer .posted-on a::before {
  content: none;
}
@media (max-width: 992px) and (min-width: 767px) {
  .feature-section.style-four .container-row .container-column .grid .post:not(:first-child) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .feature-section.style-four .container-row .container-column .grid .post:not(:first-child) .content-wrap {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .feature-section.style-four.no-category-one .container-row .container-column, .feature-section.style-four.no-category-two .container-row .container-column, .feature-section.style-four.no-category-three .container-row .container-column {
    max-width: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .feature-section.style-four.no-category-one .container-row .container-column:nth-child(2) .grid::after, .feature-section.style-four.no-category-two .container-row .container-column:nth-child(2) .grid::after, .feature-section.style-four.no-category-three .container-row .container-column:nth-child(2) .grid::after {
    border-left: 0;
  }
  .feature-section.style-four.no-category-one .container-row .container-column:last-child, .feature-section.style-four.no-category-two .container-row .container-column:last-child, .feature-section.style-four.no-category-three .container-row .container-column:last-child {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .feature-section.style-four.no-category-two.no-category-three .container-row .container-column, .feature-section.style-four.no-category-one.no-category-three .container-row .container-column, .feature-section.style-four.no-category-one.no-category-two .container-row .container-column {
    max-width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .feature-section.style-four.no-category-two.no-category-three .container-row .container-column:last-child, .feature-section.style-four.no-category-one.no-category-three .container-row .container-column:last-child, .feature-section.style-four.no-category-one.no-category-two .container-row .container-column:last-child {
    padding-right: 0;
  }
}
@media screen and (min-width: 576px) {
  .feature-section.style-four.no-category-two.no-category-three .container-row .container-column .btn-wrapper,
  .feature-section.style-four.no-category-two.no-category-three .container-row .container-column .grid, .feature-section.style-four.no-category-one.no-category-three .container-row .container-column .btn-wrapper,
  .feature-section.style-four.no-category-one.no-category-three .container-row .container-column .grid, .feature-section.style-four.no-category-one.no-category-two .container-row .container-column .btn-wrapper,
  .feature-section.style-four.no-category-one.no-category-two .container-row .container-column .grid {
    max-width: 370px;
    margin: 0 auto;
  }
}

/*-----------------------------
	Newsletter section
------------------------------*/
.newsletter-section .blossomthemes-email-newsletter-wrapper {
  padding: 45px 30px;
}
@media screen and (min-width: 768px) {
  .newsletter-section .blossomthemes-email-newsletter-wrapper {
    padding: 60px 90px;
  }
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  grid-row-gap: 16px;
  grid-column-gap: 64px;
}
@media (max-width: 1100px) {
  .newsletter-section .blossomthemes-email-newsletter-wrapper .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container .text-holder {
  text-align: left;
  margin-bottom: 0;
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container .text-holder h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container .text-holder h3::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11.64' viewBox='0 0 12 11.64'%3E%3Cg id='Group_9193' data-name='Group 9193' transform='translate(0 0.001)' opacity='0.7'%3E%3Cpath id='Path_29319' data-name='Path 29319' d='M.329,5.75c-.454.233-.436.573.041.757l1.412.545a1.847,1.847,0,0,0,1.6-.224l6.13-4.716c.4-.309.446-.264.1.1L4.765,7.274A.567.567,0,0,0,5,8.266l.165.063c.478.18,1.258.484,1.733.672l1.566.622a.814.814,0,0,0,1.119-.517L11.965.55c.135-.483-.127-.688-.581-.456Z' transform='translate(0 0)' fill='%231a0101'/%3E%3Cpath id='Path_29320' data-name='Path 29320' d='M9.231,25.3c-.032.1,1.1-1.643,1.1-1.643a.849.849,0,0,0-.4-1.3l-1.238-.507c-.542-.222-.8.039-.578.58C8.116,22.429,9.264,25.2,9.231,25.3Z' transform='translate(-4.977 -13.66)' fill='%231a0101'/%3E%3C/g%3E%3C/svg%3E%0A");
  position: absolute;
  background-repeat: no-repeat;
  left: -24px;
  top: 6px;
  width: 20px;
  height: 20px;
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container .text-holder span {
  font-size: 1em;
  line-height: 1.3;
  display: inline-block;
  margin-top: 5px;
  font-family: var(--secondary-font);
  font-style: italic;
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: 12px;
}
@media screen and (min-width: 768px) {
  .newsletter-section .blossomthemes-email-newsletter-wrapper .container form {
    grid-gap: 0;
  }
}
@media screen and (min-width: 1400px) {
  .newsletter-section .blossomthemes-email-newsletter-wrapper .container form {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form .check-mark {
  border: 1px solid rgba(var(--primary-color-rgb), 0.5);
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form input:not(input[type=checkbox]) {
  height: 41px;
  min-height: 41px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form input:not(input[type=checkbox], input[type=submit]) {
  border: 1px solid rgba(var(--font-color-rgb), 0.1);
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form input[type=submit] {
  line-height: 41px;
  font-family: var(--secondary-font);
  letter-spacing: 0.6px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 0.7777777778em;
}
@media screen and (min-width: 768px) {
  .newsletter-section .blossomthemes-email-newsletter-wrapper .container form input[name=subscribe-fname] {
    margin-right: 10px;
  }
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form > label {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .newsletter-section .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    grid-gap: 2px;
  }
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap input[type=checkbox]:checked + .check-mark {
  background-color: #fff;
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap .check-mark {
  margin-top: 0px;
  margin-right: 4px;
}
.newsletter-section .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap .text {
  font-size: 0.88888889em;
  line-height: 1.2em;
  margin-left: 4px;
}
@media (min-width: 768px) {
  .newsletter-section .blossomthemes-email-newsletter-wrapper .container form input {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  .newsletter-section .blossomthemes-email-newsletter-wrapper .container form > label {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 558px) {
  .newsletter-section .blossomthemes-email-newsletter-wrapper .container form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .newsletter-section .blossomthemes-email-newsletter-wrapper .container form input:not(input[type=checkbox]) {
    width: 100%;
  }
}

/*-----------------------------
	instagram section
------------------------------*/
.instagram-section {
  margin-top: 60px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 992px) {
  .instagram-section {
    margin-top: 109px;
  }
}
.instagram-section .popup-gallery li a {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .instagram-section .popup-gallery.photos-4 li, .instagram-section .popup-gallery.photos-5 li, .instagram-section .popup-gallery.photos-6 li, .instagram-section .popup-gallery.photos-7 li, .instagram-section .popup-gallery.photos-8 li, .instagram-section .popup-gallery.photos-9 li, .instagram-section .popup-gallery.photos-10 li {
    width: 33.33%;
  }
}
@media (max-width: 558px) {
  .instagram-section .popup-gallery.photos-4 li, .instagram-section .popup-gallery.photos-5 li, .instagram-section .popup-gallery.photos-6 li, .instagram-section .popup-gallery.photos-7 li, .instagram-section .popup-gallery.photos-8 li, .instagram-section .popup-gallery.photos-9 li, .instagram-section .popup-gallery.photos-10 li {
    width: 50%;
  }
}
.instagram-section .profile-link {
  padding: 10px 30px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 0.6111111111em;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 3;
  background-color: var(--primary-color);
  color: var(--white-color);
}
@media (max-width: 767px) {
  .instagram-section .profile-link {
    bottom: -8px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: unset;
  }
}
.instagram-section .profile-link:hover {
  background-color: var(--secondary-color);
}
.instagram-section .profile-link .insta-icon {
  margin-right: 10px;
}


/* Posts and pages
--------------------------------------------- */
.related-posts .entry-header .category .tag-title,
.related-posts .entry-header .category .cat-title,
.related-posts .entry-header .cat-links .tag-title,
.related-posts .entry-header .cat-links .cat-title,
.related-posts .entry-header .cat-tags .tag-title,
.related-posts .entry-header .cat-tags .cat-title,
.single-blossom-portfolio .entry-header .category .tag-title,
.single-blossom-portfolio .entry-header .category .cat-title,
.single-blossom-portfolio .entry-header .cat-links .tag-title,
.single-blossom-portfolio .entry-header .cat-links .cat-title,
.single-blossom-portfolio .entry-header .cat-tags .tag-title,
.single-blossom-portfolio .entry-header .cat-tags .cat-title,
.entry-meta .category .tag-title,
.entry-meta .category .cat-title,
.entry-meta .cat-links .tag-title,
.entry-meta .cat-links .cat-title,
.entry-meta .cat-tags .tag-title,
.entry-meta .cat-tags .cat-title,
.entry-footer .category .tag-title,
.entry-footer .category .cat-title,
.entry-footer .cat-links .tag-title,
.entry-footer .cat-links .cat-title,
.entry-footer .cat-tags .tag-title,
.entry-footer .cat-tags .cat-title {
  font-size: 0.7222em;
  font-family: var(--secondary-font);
  margin-right: 15px;
}
.related-posts .entry-header .category a,
.related-posts .entry-header .cat-links a,
.related-posts .entry-header .cat-tags a,
.single-blossom-portfolio .entry-header .category a,
.single-blossom-portfolio .entry-header .cat-links a,
.single-blossom-portfolio .entry-header .cat-tags a,
.entry-meta .category a,
.entry-meta .cat-links a,
.entry-meta .cat-tags a,
.entry-footer .category a,
.entry-footer .cat-links a,
.entry-footer .cat-tags a {
  position: relative;
  display: inline-block;
  font-size: 0.7222em;
  font-family: var(--secondary-font);
  letter-spacing: 1.82px;
  text-transform: uppercase;
  -webkit-transition: all 0.234s ease-in-out;
  -o-transition: all 0.234s ease-in-out;
  transition: all 0.234s ease-in-out;
  color: var(--primary-color);
}
.related-posts .entry-header .category a:hover,
.related-posts .entry-header .cat-links a:hover,
.related-posts .entry-header .cat-tags a:hover,
.single-blossom-portfolio .entry-header .category a:hover,
.single-blossom-portfolio .entry-header .cat-links a:hover,
.single-blossom-portfolio .entry-header .cat-tags a:hover,
.entry-meta .category a:hover,
.entry-meta .cat-links a:hover,
.entry-meta .cat-tags a:hover,
.entry-footer .category a:hover,
.entry-footer .cat-links a:hover,
.entry-footer .cat-tags a:hover {
  color: var(--secondary-color);
}
.related-posts .entry-header .category a + a,
.related-posts .entry-header .cat-links a + a,
.related-posts .entry-header .cat-tags a + a,
.single-blossom-portfolio .entry-header .category a + a,
.single-blossom-portfolio .entry-header .cat-links a + a,
.single-blossom-portfolio .entry-header .cat-tags a + a,
.entry-meta .category a + a,
.entry-meta .cat-links a + a,
.entry-meta .cat-tags a + a,
.entry-footer .category a + a,
.entry-footer .cat-links a + a,
.entry-footer .cat-tags a + a {
  margin-left: 10px;
  padding-left: 12px;
}
.related-posts .entry-header .category a + a::before,
.related-posts .entry-header .cat-links a + a::before,
.related-posts .entry-header .cat-tags a + a::before,
.single-blossom-portfolio .entry-header .category a + a::before,
.single-blossom-portfolio .entry-header .cat-links a + a::before,
.single-blossom-portfolio .entry-header .cat-tags a + a::before,
.entry-meta .category a + a::before,
.entry-meta .cat-links a + a::before,
.entry-meta .cat-tags a + a::before,
.entry-footer .category a + a::before,
.entry-footer .cat-links a + a::before,
.entry-footer .cat-tags a + a::before {
  content: "";
  position: absolute;
  top: 4.5px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: currentColor;
  opacity: 0.4;
  -webkit-transition: all 0.234s ease-in-out;
  -o-transition: all 0.234s ease-in-out;
  transition: all 0.234s ease-in-out;
}
.related-posts .entry-header .category a + a:hover::before,
.related-posts .entry-header .cat-links a + a:hover::before,
.related-posts .entry-header .cat-tags a + a:hover::before,
.single-blossom-portfolio .entry-header .category a + a:hover::before,
.single-blossom-portfolio .entry-header .cat-links a + a:hover::before,
.single-blossom-portfolio .entry-header .cat-tags a + a:hover::before,
.entry-meta .category a + a:hover::before,
.entry-meta .cat-links a + a:hover::before,
.entry-meta .cat-tags a + a:hover::before,
.entry-footer .category a + a:hover::before,
.entry-footer .cat-links a + a:hover::before,
.entry-footer .cat-tags a + a:hover::before {
  background-color: currentColor;
}
.related-posts .entry-header .posted-on,
.single-blossom-portfolio .entry-header .posted-on,
.entry-meta .posted-on,
.entry-footer .posted-on {
  font-size: 0.7777em;
  color: rgba(var(--font-color-rgb), 0.8);
}
.related-posts .entry-header .posted-on a,
.single-blossom-portfolio .entry-header .posted-on a,
.entry-meta .posted-on a,
.entry-footer .posted-on a {
  text-decoration: none;
  position: relative;
  color: rgba(var(--font-color-rgb), 0.8);
  padding-left: 8px;
  font-family: var(--secondary-font);
}
.related-posts .entry-header .posted-on a::before,
.single-blossom-portfolio .entry-header .posted-on a::before,
.entry-meta .posted-on a::before,
.entry-footer .posted-on a::before {
  content: "";
  position: absolute;
  top: 7.5px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: currentColor;
  opacity: 0.8;
}
.related-posts .entry-header .posted-on a:hover,
.single-blossom-portfolio .entry-header .posted-on a:hover,
.entry-meta .posted-on a:hover,
.entry-footer .posted-on a:hover {
  color: var(--primary-color);
}
.related-posts .entry-header .posted-on a:hover::before,
.single-blossom-portfolio .entry-header .posted-on a:hover::before,
.entry-meta .posted-on a:hover::before,
.entry-footer .posted-on a:hover::before {
  background-color: var(--primary-color);
}
.related-posts .entry-header .cat-links,
.single-blossom-portfolio .entry-header .cat-links,
.entry-meta .cat-links,
.entry-footer .cat-links {
  line-height: 1.8;
}

.post-read-time {
  font-family: var(--secondary-font);
  font-size: 0.777em;
  color: rgba(var(--font-color-rgb), 0.8);
}

span + .post-read-time {
  margin-left: 17px;
  padding-left: 14px;
  position: relative;
}
span + .post-read-time::before {
  content: "";
  width: 4px;
  height: 4px;
  background: rgba(var(--font-color-rgb), 0.3);
  position: absolute;
  top: 7px;
  left: 0;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.blog .site-content .section-header,
.home .site-content .section-header,
.archive .site-content .section-header,
.search-results .site-content .section-header {
  margin-bottom: 30px;
  text-align: center;
}
.blog .site-main article,
.home .site-main article,
.archive .site-main article,
.search-results .site-main article {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .blog .site-main article,
  .home .site-main article,
  .archive .site-main article,
  .search-results .site-main article {
    margin-bottom: 60px;
  }
}
.blog .site-main article:last-child,
.home .site-main article:last-child,
.archive .site-main article:last-child,
.search-results .site-main article:last-child {
  margin-bottom: 0;
}
.blog .site-main article .post-thumbnail,
.home .site-main article .post-thumbnail,
.archive .site-main article .post-thumbnail,
.search-results .site-main article .post-thumbnail {
  display: block;
  margin-top: 0;
  margin-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .blog .site-main article .post-thumbnail,
  .home .site-main article .post-thumbnail,
  .archive .site-main article .post-thumbnail,
  .search-results .site-main article .post-thumbnail {
    margin-bottom: 30px;
  }
}
.blog .site-main article .entry-meta,
.home .site-main article .entry-meta,
.archive .site-main article .entry-meta,
.search-results .site-main article .entry-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: var(--primary-color);
  font-size: 1em;
}
.blog .site-main article .entry-meta .cat-links a,
.home .site-main article .entry-meta .cat-links a,
.archive .site-main article .entry-meta .cat-links a,
.search-results .site-main article .entry-meta .cat-links a {
  font-size: 0.667em;
  color: var(--primary-color);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.blog .site-main article .entry-meta .cat-links a::before,
.home .site-main article .entry-meta .cat-links a::before,
.archive .site-main article .entry-meta .cat-links a::before,
.search-results .site-main article .entry-meta .cat-links a::before {
  top: 8px;
}
@media screen and (min-width: 768px) {
  .blog .site-main article .entry-meta .cat-links a,
  .home .site-main article .entry-meta .cat-links a,
  .archive .site-main article .entry-meta .cat-links a,
  .search-results .site-main article .entry-meta .cat-links a {
    font-size: 0.722em;
  }
}
.blog .site-main article .entry-meta .byline,
.home .site-main article .entry-meta .byline,
.archive .site-main article .entry-meta .byline,
.search-results .site-main article .entry-meta .byline {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.blog .site-main article .entry-meta .byline > span,
.home .site-main article .entry-meta .byline > span,
.archive .site-main article .entry-meta .byline > span,
.search-results .site-main article .entry-meta .byline > span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.blog .site-main article .entry-meta .byline a,
.home .site-main article .entry-meta .byline a,
.archive .site-main article .entry-meta .byline a,
.search-results .site-main article .entry-meta .byline a {
  font-size: 0.778em;
}
.blog .site-main article .entry-meta .byline a.fn,
.home .site-main article .entry-meta .byline a.fn,
.archive .site-main article .entry-meta .byline a.fn,
.search-results .site-main article .entry-meta .byline a.fn {
  letter-spacing: 0.2px;
  color: var(--font-color);
  text-transform: capitalize;
}
.blog .site-main article .entry-meta .byline a.fn:hover,
.home .site-main article .entry-meta .byline a.fn:hover,
.archive .site-main article .entry-meta .byline a.fn:hover,
.search-results .site-main article .entry-meta .byline a.fn:hover {
  color: var(--primary-color);
}
.blog .site-main article .entry-meta .posted-on,
.home .site-main article .entry-meta .posted-on,
.archive .site-main article .entry-meta .posted-on,
.search-results .site-main article .entry-meta .posted-on {
  margin-left: 8px;
}
.blog .site-main article .entry-title,
.home .site-main article .entry-title,
.archive .site-main article .entry-title,
.search-results .site-main article .entry-title {
  font-size: 1.667em;
  line-height: 1.222277;
  color: var(--font-color);
  margin: 14px 0 12px;
}
@media screen and (min-width: 768px) {
  .blog .site-main article .entry-title,
  .home .site-main article .entry-title,
  .archive .site-main article .entry-title,
  .search-results .site-main article .entry-title {
    font-size: 2.222em;
    line-height: 1.225em;
    margin: 16px 0 15px;
  }
}
.blog .site-main article .entry-title a,
.home .site-main article .entry-title a,
.archive .site-main article .entry-title a,
.search-results .site-main article .entry-title a {
  color: rgba(var(--font-color-rgb), 0.8);
}
.blog .site-main article .entry-title a:hover,
.home .site-main article .entry-title a:hover,
.archive .site-main article .entry-title a:hover,
.search-results .site-main article .entry-title a:hover {
  color: var(--primary-color);
}
.blog .site-main article .entry-content,
.home .site-main article .entry-content,
.archive .site-main article .entry-content,
.search-results .site-main article .entry-content {
  margin-top: 0;
}
.blog .site-main article .entry-content p:last-of-type,
.home .site-main article .entry-content p:last-of-type,
.archive .site-main article .entry-content p:last-of-type,
.search-results .site-main article .entry-content p:last-of-type {
  letter-spacing: 0.2px;
  line-height: 1.8889;
  color: rgba(var(--font-color-rgb), 0.8);
  margin-bottom: 0;
}
.blog .site-main article .entry-content .entry-meta,
.home .site-main article .entry-content .entry-meta,
.archive .site-main article .entry-content .entry-meta,
.search-results .site-main article .entry-content .entry-meta {
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .blog .site-main article .entry-content .entry-meta,
  .home .site-main article .entry-content .entry-meta,
  .archive .site-main article .entry-content .entry-meta,
  .search-results .site-main article .entry-content .entry-meta {
    margin-top: 10px;
  }
}
.blog .site-main article .content-wrap,
.home .site-main article .content-wrap,
.archive .site-main article .content-wrap,
.search-results .site-main article .content-wrap {
  position: relative;
}
.blog .site-main article .content-wrap .entry-header .entry-title,
.home .site-main article .content-wrap .entry-header .entry-title,
.archive .site-main article .content-wrap .entry-header .entry-title,
.search-results .site-main article .content-wrap .entry-header .entry-title {
  font-size: 1.6666666667em;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 400;
}
.blog .site-main article .content-wrap .entry-header .entry-title a,
.home .site-main article .content-wrap .entry-header .entry-title a,
.archive .site-main article .content-wrap .entry-header .entry-title a,
.search-results .site-main article .content-wrap .entry-header .entry-title a {
  color: rgba(var(--font-color-rgb), 0.9);
}
.blog .site-main article .content-wrap .entry-header .entry-title a:hover,
.home .site-main article .content-wrap .entry-header .entry-title a:hover,
.archive .site-main article .content-wrap .entry-header .entry-title a:hover,
.search-results .site-main article .content-wrap .entry-header .entry-title a:hover {
  color: var(--primary-color);
}
.blog .site-main article .content-wrap .entry-content,
.home .site-main article .content-wrap .entry-content,
.archive .site-main article .content-wrap .entry-content,
.search-results .site-main article .content-wrap .entry-content {
  margin-bottom: 0;
  margin-top: 0;
}
.blog .site-main article .content-wrap .entry-content p:last-child,
.home .site-main article .content-wrap .entry-content p:last-child,
.archive .site-main article .content-wrap .entry-content p:last-child,
.search-results .site-main article .content-wrap .entry-content p:last-child {
  margin-bottom: 0;
}
.blog .site-main article .post-footer,
.home .site-main article .post-footer,
.archive .site-main article .post-footer,
.search-results .site-main article .post-footer {
  margin-top: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blog .site-main article .post-footer .btn-link,
.home .site-main article .post-footer .btn-link,
.archive .site-main article .post-footer .btn-link,
.search-results .site-main article .post-footer .btn-link {
  color: var(--font-color);
  background: none;
  padding: 0;
}
.blog .site-main article .post-footer .btn-link::before,
.home .site-main article .post-footer .btn-link::before,
.archive .site-main article .post-footer .btn-link::before,
.search-results .site-main article .post-footer .btn-link::before {
  right: -27px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.19' height='14.27' viewBox='0 0 14.19 14.27'%3E%3Cg id='Group_5482' data-name='Group 5482' transform='translate(-216.737 -1581.109)'%3E%3Cpath id='Path_26475' data-name='Path 26475' d='M0,0H12.821' transform='translate(217.445 1594.672) rotate(-45)' fill='none' stroke='%2301BFBF' stroke-linecap='round' stroke-width='1'/%3E%3Cpath id='Path_26476' data-name='Path 26476' d='M0,0,5.1,5.1,0,10.193' transform='translate(219.262 1585.567) rotate(-45)' fill='none' stroke='%2301BFBF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
}
.blog .site-main article .post-footer .button-wrap,
.home .site-main article .post-footer .button-wrap,
.archive .site-main article .post-footer .button-wrap,
.search-results .site-main article .post-footer .button-wrap {
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(var(--secondary-color-rgb), 0.1);
}
.blog .site-main article .post-share,
.home .site-main article .post-share,
.archive .site-main article .post-share,
.search-results .site-main article .post-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 20px;
}
.blog .site-main article .post-share .social-networks,
.home .site-main article .post-share .social-networks,
.archive .site-main article .post-share .social-networks,
.search-results .site-main article .post-share .social-networks {
  grid-gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.blog .site-main article .post-share .post-share-title,
.home .site-main article .post-share .post-share-title,
.archive .site-main article .post-share .post-share-title,
.search-results .site-main article .post-share .post-share-title {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.blog .site-main article .post-share .post-share-title svg,
.home .site-main article .post-share .post-share-title svg,
.archive .site-main article .post-share .post-share-title svg,
.search-results .site-main article .post-share .post-share-title svg {
  fill: #001a1a;
}
.blog .site-main article .post-share .post-share-title svg:hover,
.home .site-main article .post-share .post-share-title svg:hover,
.archive .site-main article .post-share .post-share-title svg:hover,
.search-results .site-main article .post-share .post-share-title svg:hover {
  fill: var(--primary-color);
}

/* Search and Archive heading
--------------------------------------------- */
.page-header__content-wrapper {
  margin-bottom: 50px;
  margin-top: 39px;
  max-width: 750px;
}
@media screen and (min-width: 992px) {
  .page-header__content-wrapper {
    margin-bottom: 60px;
    margin-top: 70px;
  }
}
.page-header__content-wrapper .sub-title {
  display: inline-block;
  font-size: 1.1em;
  margin-bottom: 26px;
  font-family: var(--secondary-font);
  color: var(--primary-color);
}
.page-header__content-wrapper .search-form {
  margin-bottom: 43px;
  position: relative;
}
.page-header__content-wrapper .search-form .search-field {
  font-size: 1.111em;
  padding: 22px 60px 22px 30px;
  height: 60px;
}
.page-header__content-wrapper .page-title {
  margin: 0;
  font-size: 0.888em;
  color: rgba(var(--primary-color-rgb), 0.8);
  margin-bottom: 20px;
  font-family: var(--primary-font);
}
.page-header__content-wrapper .section-desc {
  margin-top: 37px;
}
.page-header__content-wrapper .section-desc p:last-child {
  margin-bottom: 0;
}
.page-header__content-wrapper .result-count {
  font-size: 0.888em;
  color: rgba(var(--font-color-rgb), 1);
  padding: 23px 0;
  display: block;
  font-weight: 500;
  border-top: 1px solid rgba(var(--font-color-rgb), 0.06);
  border-bottom: 1px solid rgba(var(--font-color-rgb), 0.06);
}

/* Search and Archive
--------------------------------------------- */
.search.search-results .page-header__content-wrapper .page-title,
.archive .page-header__content-wrapper .page-title {
  display: block;
  font-size: 1.66em;
  color: rgba(var(--font-color-rgb), 0.8);
  font-family: var(--secondary-font);
}
@media screen and (min-width: 768px) {
  .search.search-results .page-header__content-wrapper .page-title,
  .archive .page-header__content-wrapper .page-title {
    font-size: 2.66em;
  }
}
.search.search-results .page-header__content-wrapper .page-title::before, .search.search-results .page-header__content-wrapper .page-title::after,
.archive .page-header__content-wrapper .page-title::before,
.archive .page-header__content-wrapper .page-title::after {
  content: none;
}
.search.search-results .page-header .breadcrumb-wrapper > div,
.archive .page-header .breadcrumb-wrapper > div {
  padding-left: 0;
}
.search.search-results.author .author-content,
.archive.author .author-content {
  margin-bottom: 37px;
}

/* Author section
--------------------------------------------- */
.author-section .inner-author-section {
  background-color: rgba(var(--primary-color-rgb), 0.03);
  padding: 45px 40px;
}
.author-section .result-count {
  margin-top: 50px;
  display: block;
}
.author-section .author-img-title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .author-section .author-img-title-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: left;
  }
}
.author-section .author-img-title-wrap .author-img {
  margin: 0;
}
.author-section .author-img-title-wrap .author-img img {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100px;
}
.author-section .author-img-title-wrap .author-title-wrap .author-name {
  font-size: 1.3333333333em;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 15px;
}
.author-section .author-img-title-wrap .author-title-wrap .social-list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 25px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 576px) {
  .author-section .author-img-title-wrap .author-title-wrap .social-list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.author-section .author-content p:last-child {
  margin-bottom: 0;
}

/* Error 404
--------------------------------------------- */
.error-404 {
  margin: 50px 0;
}
@media screen and (min-width: 992px) {
  .error-404 {
    margin: 100px 0;
  }
}
.error-404 .error404-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .error-404 .error404-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .error-404 .error404-grid .error-img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 42.8%;
    -ms-flex: 0 0 42.8%;
    flex: 0 0 42.8%;
  }
}
.error-404 .error-404-content-wrapper {
  background: rgba(var(--primary-color-rgb), 0.05);
  position: relative;
  z-index: 1;
}
.error-404 .error-404-content-wrapper .error-img {
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .error-404 .error-404-content-wrapper .error-img {
    text-align: left;
  }
}
.error-404 .error-404-content-wrapper .page-content {
  text-align: center;
  padding: 55px 20px;
  margin: 0;
}
@media screen and (min-width: 992px) {
  .error-404 .error-404-content-wrapper .page-content {
    padding: 35px 81px 45px 81px;
  }
  .error-404 .error-404-content-wrapper .page-content .wc-btn {
    font-size: 0.844em;
  }
  .error-404 .error-404-content-wrapper .page-content h1 + p {
    padding: 0 43px;
  }
}
.error-404 .error-404-content-wrapper .page-content .error404-text {
  color: var(--primary-color);
  font-size: 0.8333333333em;
  letter-spacing: 0.02499em;
  text-transform: capitalize;
  display: block;
}
.error-404 .error-404-content-wrapper .page-content .page-title {
  font-size: 2.66em;
  line-height: 1.3;
  font-weight: 500;
  font-style: normal;
}
.error-404 .error-404-content-wrapper .page-content .page-title::before, .error-404 .error-404-content-wrapper .page-content .page-title::after {
  content: none;
}
.error-404 .error-404-content-wrapper .page-content .page-title {
  margin-bottom: 20px;
}
.error-404 .error-404-content-wrapper .error-404-search {
  margin-top: 79px;
  padding-top: 30px;
  border-top: 1px solid rgba(var(--font-color-rgb), 0.06);
}
.error-404 .error-404-content-wrapper .error-404-search .search-form {
  margin-bottom: 0px;
  position: relative;
}
.error-404 .error-404-content-wrapper .error-404-search .search-form .search-field {
  font-size: 0.888em;
  padding: 22px 60px 22px 30px;
  height: 60px;
}
.error-404 .error-404-content-wrapper .error-404-search .search-form .search-field::-webkit-input-placeholder {
  color: rgba(var(--font-color-rgb), 0.4);
}
.error-404 .error-404-content-wrapper .error-404-search .search-form .search-field::-moz-placeholder {
  color: rgba(var(--font-color-rgb), 0.4);
}
.error-404 .error-404-content-wrapper .error-404-search .search-form .search-field:-ms-input-placeholder {
  color: rgba(var(--font-color-rgb), 0.4);
}
.error-404 .error-404-content-wrapper .error-404-search .search-form .search-field::placeholder {
  color: rgba(var(--font-color-rgb), 0.4);
}

.page-header__content-wrapper .search-form .search-submit,
.error-404 .error-404-content-wrapper .error-404-search .search-form .search-submit {
  background-color: var(--secondary-color);
  outline: none;
  border-radius: 0;
  font-size: 0;
  width: 60px;
  height: 60px;
  padding: 17px 24px;
  -webkit-transition: all 0.234s ease-in-out;
  -o-transition: all 0.234s ease-in-out;
  transition: all 0.234s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath id='Path_24900' data-name='Path 24900' d='M11.572,19.163a7.532,7.532,0,0,0,4.676-1.624L20.709,22,22,20.709l-4.461-4.461a7.57,7.57,0,1,0-5.967,2.915Zm0-13.363A5.782,5.782,0,1,1,5.8,11.572,5.782,5.782,0,0,1,11.572,5.8Z' transform='translate(-4 -4)' fill='%23fff'/%3E%3C/svg%3E%0A");
  -webkit-background-size: 16px 16px;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
}
.page-header__content-wrapper .search-form .search-submit:hover,
.error-404 .error-404-content-wrapper .error-404-search .search-form .search-submit:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath id='Path_24900' data-name='Path 24900' d='M11.572,19.163a7.532,7.532,0,0,0,4.676-1.624L20.709,22,22,20.709l-4.461-4.461a7.57,7.57,0,1,0-5.967,2.915Zm0-13.363A5.782,5.782,0,1,1,5.8,11.572,5.782,5.782,0,0,1,11.572,5.8Z' transform='translate(-4 -4)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-color: var(--primary-color);
}

/* portfolio
--------------------------------------------- */
.portfolio-sorting .button:hover,
.portfolio-sorting .button.is-checked,
.portfolio-item .portfolio-cat a:hover,
.portfolio-item .portfolio-img-title a:hover {
  color: var(--primary-color);
}


/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*   ==================================================
                comment /custom code
    ================================================== */
.comments-area {
  max-width: 755px;
  margin: 80px auto 0;
  position: relative;
  padding: 45px 15px 0;
  border-top: 4px solid rgba(var(--primary-color-rgb), 0.1);
  background: var(--white-color);
}
@media screen and (min-width: 768px) {
  .comments-area {
    padding: 45px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  }
}
.comments-area .comments-title {
  font-size: 1.2222222222em;
  margin-bottom: 29px;
  font-weight: 500;
}
.comments-area .comment-list-wrapper {
  margin-bottom: 40px;
}
.comments-area .comment-list {
  margin-bottom: 0;
}
.comments-area .comment-list,
.comments-area ol {
  list-style: none;
  margin-left: 0;
}
.comments-area .comment-list .comment .children,
.comments-area ol .comment .children {
  margin-left: 68px;
}
.comments-area .comment-list .comment .comment-body,
.comments-area ol .comment .comment-body {
  border-top: 1px solid rgba(var(--primary-color-rgb), 0.2);
  padding-bottom: 30px;
  padding-top: 30px;
  position: relative;
  padding-left: 68px;
}
.comments-area .comment-list .comment .comment-body .comment-meta,
.comments-area ol .comment .comment-body .comment-meta {
  margin-bottom: 10px;
}
.comments-area .comment-list .comment .comment-body .comment-meta a,
.comments-area ol .comment .comment-body .comment-meta a {
  text-decoration: none;
}
.comments-area .comment-list .comment .comment-body .comment-meta .comment-author img,
.comments-area ol .comment .comment-body .comment-meta .comment-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  background: rgba(var(--primary-color-rgb), 0.23);
  position: absolute;
  top: 43px;
  left: 0;
}
.comments-area .comment-list .comment .comment-body .text-holder .fn a,
.comments-area ol .comment .comment-body .text-holder .fn a {
  font-size: 1.1em;
  color: rgba(var(--font-color-rgb), 0.9);
  font-family: var(--secondary-font);
  font-weight: 500;
}
.comments-area .comment-list .comment .comment-body .text-holder .says,
.comments-area ol .comment .comment-body .text-holder .says {
  display: none;
}
.comments-area .comment-list .comment .comment-body .text-holder .comment-metadata,
.comments-area ol .comment .comment-body .text-holder .comment-metadata {
  font-size: 0.888em;
  line-height: 1.5;
  font-family: var(--secondary-font);
}
.comments-area .comment-list .comment .comment-body .text-holder .comment-metadata a,
.comments-area ol .comment .comment-body .text-holder .comment-metadata a {
  color: rgba(var(--font-color-rgb), 0.9);
}
.comments-area .comment-list .comment .comment-body .comment-awaiting-moderation,
.comments-area ol .comment .comment-body .comment-awaiting-moderation {
  color: red;
  font-size: 0.7777777778em;
  margin-bottom: 0;
}
.comments-area .comment-list .comment .comment-body .comment-content,
.comments-area ol .comment .comment-body .comment-content {
  margin-top: 20px;
  margin-bottom: 10px;
}
.comments-area .comment-list .comment .comment-body .comment-content p:last-child,
.comments-area ol .comment .comment-body .comment-content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list .comment .comment-body .reply .comment-reply-link,
.comments-area ol .comment .comment-body .reply .comment-reply-link {
  color: rgba(var(--primary-color-rgb), 0.9);
  font-size: 0.888em;
  padding-right: 16px;
  position: relative;
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
  font-family: var(--secondary-font);
}
.comments-area .comment-list .comment .comment-body .reply .comment-reply-link::before,
.comments-area ol .comment .comment-body .reply .comment-reply-link::before {
  content: "";
  width: 5px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.106' height='9.573' viewBox='0 0 6.106 9.573'%3E%3Cpath id='Path_29322' data-name='Path 29322' d='M4.9,0,0,4.083,4.9,8.165' transform='translate(0.5 0.704)' fill='none' stroke='%23a60505' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 7px;
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
  right: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.comments-area .comment-list .comment .comment-body .reply .comment-reply-link:hover,
.comments-area ol .comment .comment-body .reply .comment-reply-link:hover {
  color: var(--primary-color);
}
.comments-area .comment-list .comment .comment-body .reply .comment-reply-link:hover::before,
.comments-area ol .comment .comment-body .reply .comment-reply-link:hover::before {
  right: -2px;
}
.comments-area .comment-list .comment.bypostauthor > .comment-body .comment-meta .comment-author::after,
.comments-area ol .comment.bypostauthor > .comment-body .comment-meta .comment-author::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" width="17.96" height="17.96" viewBox="0 0 17.96 17.96"><g transform="translate(-584 -10824)"><rect width="17.96" height="17.96" rx="8.98" transform="translate(584 10824)" fill="%2300ab0b"/><path d="M5058.939,3595.743l2.417,2.418,5.32-5.32" transform="translate(-4469.439 7237.66)" fill="none" stroke="%23fff" stroke-linecap="round" stroke-width="2"/></g></svg>');
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  position: absolute;
  top: 32px;
  left: 36px;
}
.comments-area .comment-list .alt.bypostauthor > .comment-body .comment-meta .comment-author::after,
.comments-area .comment-list .children .bypostauthor > .comment-body .comment-meta .comment-author::after,
.comments-area ol .alt.bypostauthor > .comment-body .comment-meta .comment-author::after,
.comments-area ol .children .bypostauthor > .comment-body .comment-meta .comment-author::after {
  top: 73px;
}
.comments-area .comment-list:not(.children) > .comment:first-child > .comment-body,
.comments-area ol:not(.children) > .comment:first-child > .comment-body {
  padding-top: 0;
  border-top: none;
}
.comments-area .comment-list:not(.children) > .comment:first-child > .comment-body .comment-meta .comment-author img,
.comments-area ol:not(.children) > .comment:first-child > .comment-body .comment-meta .comment-author img {
  top: 0;
}
.comments-area .comment-respond {
  background: rgba(var(--primary-color-rgb), 0.05);
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}
@media screen and (min-width: 576px) {
  .comments-area .comment-respond {
    padding: 45px;
  }
}
.comments-area .comment-respond a {
  color: var(--secondary-color);
}
.comments-area .comment-respond a:hover {
  text-decoration: underline;
}
.comments-area .comment-respond .comment-reply-title {
  font-size: 1.2222222222em;
}
.comments-area .comment-respond .comment-reply-title a {
  margin-left: 10px;
  font-weight: 400;
}
.comments-area .comment-respond form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 20px;
}
.comments-area .comment-respond form p {
  margin: 0;
}
.comments-area .comment-respond form input,
.comments-area .comment-respond form textarea {
  margin-bottom: 0;
}
.comments-area .comment-respond form label {
  display: none;
}
.comments-area .comment-respond form .comment-form-cookies-consent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 10px;
  margin-bottom: 10px;
}
.comments-area .comment-respond form .comment-form-cookies-consent label {
  display: inline-block;
  font-size: 0.7777777778em;
  line-height: 1.25em;
}
.comments-area .comment-respond form .submit,
.comments-area .comment-respond form input[type=submit] {
  outline: none;
  background: var(--secondary-color);
  color: var(--white-color);
  width: 100%;
}
.comments-area .comment-respond form .submit:hover,
.comments-area .comment-respond form input[type=submit]:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/*   ==================================================
				   Comment
		================================================== */

/* pagination
--------------------------------------------- */
nav.post-navigation {
  max-width: 755px;
  margin: 45px auto;
}
nav.post-navigation .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-row-gap: 45px;
  width: 100%;
}
nav.post-navigation .nav-links .nav-next, nav.post-navigation .nav-links .nav-previous {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
nav.post-navigation .nav-links .nav-next .post-thumbnail, nav.post-navigation .nav-links .nav-previous .post-thumbnail {
  width: 90px;
  height: 90px;
  margin: 0 20px 0 0;
}
nav.post-navigation .nav-links .nav-next .post-thumbnail img, nav.post-navigation .nav-links .nav-previous .post-thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
nav.post-navigation .nav-links .nav-next a, nav.post-navigation .nav-links .nav-previous a {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (min-width: 768px) {
  nav.post-navigation .nav-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  nav.post-navigation .nav-links .nav-next, nav.post-navigation .nav-links .nav-previous {
    max-width: 50%;
  }
}
nav.post-navigation .nav-links .nav-next {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-align: right;
}
nav.post-navigation .nav-links .nav-next .post-thumbnail {
  margin: 0 0 0 20px;
}
nav.post-navigation .nav-links .nav-next .post .entry-header {
  text-align: right;
}
nav.post-navigation .nav-next {
  text-align: start;
}
nav.post-navigation .post {
  margin-bottom: 0;
}
nav.post-navigation .post .entry-meta .cat-links a {
  color: var(--primary-color);
}
nav.post-navigation .post .entry-header {
  margin: 0;
  text-align: left;
}
nav.post-navigation .post .entry-header .entry-title {
  margin: 0;
  font-size: 1.16em;
  font-weight: normal;
}
nav.post-navigation .meta-nav {
  font-family: var(--secondary-font);
  font-size: 0.777em;
  line-height: 1.1;
  display: inline-block;
  color: rgba(var(--primary-color-rgb), 0.9);
  text-decoration: none;
  position: relative;
  letter-spacing: 1.08px;
  padding-left: 17px;
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
}
nav.post-navigation .meta-nav::before {
  content: "";
  width: 5px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.106' height='9.573' viewBox='0 0 6.106 9.573'%3E%3Cpath id='Path_29322' data-name='Path 29322' d='M4.9,0,0,4.083,4.9,8.165' transform='translate(0.5 0.704)' fill='none' stroke='%23a60505' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  top: 2px;
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
}
nav.post-navigation .meta-nav:hover {
  color: var(--primary-color);
}
nav.post-navigation .meta-nav:hover::before {
  left: -2px;
}
nav.post-navigation .nav-next .meta-nav {
  padding-left: 0;
  padding-right: 17px;
}
nav.post-navigation .nav-next .meta-nav::before {
  left: unset;
  right: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
nav.post-navigation .nav-next .meta-nav:hover::before {
  right: -2px;
}
nav.post-navigation a {
  text-decoration: none;
  color: var(--font-color);
}
nav.post-navigation a:hover {
  color: var(--primary-color);
}
@media screen and (min-width: 768px) {
  nav.post-navigation .nav-next {
    max-width: 363px;
    margin-left: auto;
    padding-left: 15px;
  }
}
@media screen and (min-width: 768px) {
  nav.post-navigation .nav-previous {
    padding-right: 15px;
    max-width: 363px;
  }
}

.pagination {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 767px) {
  .pagination {
    margin-top: 80px;
  }
}
.pagination .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 13px;
}
.pagination .nav-links a {
  color: var(--font-color);
}
.pagination .nav-links .page-numbers {
  width: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 30px;
  background: none;
  color: var(--font-color);
  font-family: var(--secondary-font);
  font-size: 0.8888888889em;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pagination .nav-links .page-numbers:hover {
  color: var(--primary-color);
}
.pagination .nav-links .page-numbers.current {
  padding: 15px 17.71px;
  background: var(--primary-color);
  color: var(--white-color);
}
.pagination .nav-links .page-numbers.prev svg {
  margin-right: 10px;
}
.pagination .nav-links .page-numbers.next svg {
  margin-left: 10px;
}
.pagination .nav-links .page-numbers.next, .pagination .nav-links .page-numbers.prev {
  background: none;
  font-size: 0;
  font-family: var(--primary-font);
}
.pagination .nav-links .page-numbers.next:hover, .pagination .nav-links .page-numbers.prev:hover {
  color: var(--secondary-color);
}
.pagination .nav-links .page-numbers.next:hover svg path, .pagination .nav-links .page-numbers.prev:hover svg path {
  stroke: var(--secondary-color);
}

.navigation.pagination {
  padding-top: 30px;
  margin-top: 45px;
  border-top: 1px solid rgba(var(--font-color-rgb), 0.05);
}
.navigation.pagination .nav-links .prev, .navigation.pagination .nav-links .next {
  position: relative;
  border: 1px solid rgba(var(--secondary-color-rgb), 0.05);
}
.navigation.pagination .nav-links .prev::after, .navigation.pagination .nav-links .prev::before, .navigation.pagination .nav-links .next::after, .navigation.pagination .nav-links .next::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.204' height='11.402' viewBox='0 0 7.204 11.402'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M0,0,6,5l-6,5' transform='translate(0.704 0.704)' fill='none' stroke='%23a60505' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  width: 7px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navigation.pagination .nav-links .prev:hover, .navigation.pagination .nav-links .next:hover {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}
.navigation.pagination .nav-links .prev:hover::after, .navigation.pagination .nav-links .prev:hover::before, .navigation.pagination .nav-links .next:hover::after, .navigation.pagination .nav-links .next:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.204' height='11.402' viewBox='0 0 7.204 11.402'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M0,0,6,5l-6,5' transform='translate(0.704 0.704)' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
}
.navigation.pagination .nav-links .prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  -o-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}
.navigation.pagination .nav-links .prev::after {
  content: none;
}
.navigation.pagination .nav-links .next::before {
  content: none;
}
.navigation.posts-navigation {
  margin-top: 50px;
}
.navigation.posts-navigation .nav-links a {
  color: var(--primary-color);
}

.custom-post-pagination .nav-links a {
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.custom-post-pagination .nav-links a:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.custom-post-pagination .nav-links a:hover svg path {
  stroke: var(--white-color);
}
.custom-post-pagination .nav-links a + a {
  margin-left: 14px;
}


/* Widgets
--------------------------------------------- */
.search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}
.search-form label {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.search-form .search-field {
  margin: 0;
  padding-right: 42px;
}
.search-form .search-submit {
  width: 20px;
  font-size: 0;
  -webkit-background-size: 18.16px 18.16px;
  background-size: 18.16px;
  background-color: unset;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath id='Path_24900' data-name='Path 24900' d='M11.572,19.163a7.532,7.532,0,0,0,4.676-1.624L20.709,22,22,20.709l-4.461-4.461a7.57,7.57,0,1,0-5.967,2.915Zm0-13.363A5.782,5.782,0,1,1,5.8,11.572,5.782,5.782,0,0,1,11.572,5.8Z' transform='translate(-4 -4)' fill='%23001A1ACC'/%3E%3C/svg%3E%0A");
  position: absolute;
  background-repeat: no-repeat;
  right: 17px;
  padding: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-form .search-submit:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath id='Path_24900' data-name='Path 24900' d='M11.572,19.163a7.532,7.532,0,0,0,4.676-1.624L20.709,22,22,20.709l-4.461-4.461a7.57,7.57,0,1,0-5.967,2.915Zm0-13.363A5.782,5.782,0,1,1,5.8,11.572,5.782,5.782,0,0,1,11.572,5.8Z' transform='translate(-4 -4)' fill='%23A60505'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-color: unset;
}

.wp-block-search .wp-block-search__label {
  font-weight: normal !important;
}
.wp-block-search .wp-block-search__inside-wrapper {
  position: relative;
}
.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
  margin-bottom: 0;
}
.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button {
  width: 20px;
  border: 0;
  font-size: 0;
  -webkit-background-size: 18.16px 18.16px;
  background-size: 18.16px;
  background-color: unset;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath id='Path_24900' data-name='Path 24900' d='M11.572,19.163a7.532,7.532,0,0,0,4.676-1.624L20.709,22,22,20.709l-4.461-4.461a7.57,7.57,0,1,0-5.967,2.915Zm0-13.363A5.782,5.782,0,1,1,5.8,11.572,5.782,5.782,0,0,1,11.572,5.8Z' transform='translate(-4 -4)' fill='%23001A1ACC'/%3E%3C/svg%3E%0A");
  position: absolute;
  background-repeat: no-repeat;
  right: 17px;
  padding: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath id='Path_24900' data-name='Path 24900' d='M11.572,19.163a7.532,7.532,0,0,0,4.676-1.624L20.709,22,22,20.709l-4.461-4.461a7.57,7.57,0,1,0-5.967,2.915Zm0-13.363A5.782,5.782,0,1,1,5.8,11.572,5.782,5.782,0,0,1,11.572,5.8Z' transform='translate(-4 -4)' fill='%23A60505'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-color: unset;
}

.widget_block .wp-block-group__inner-container > h2 {
  margin-bottom: 32px;
  font-size: 1.111em;
  line-height: 1;
  color: rgba(var(--font-color-rgb), 1);
  display: inline-block;
  position: relative;
}
.widget_block .wp-block-group__inner-container .wp-block-latest-comments li {
  font-size: 16px;
}
.widget_block .wp-block-group__inner-container .wp-block-latest-comments li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(var(--font-color-rgb), 0.05);
}
.widget_block .wp-block-group__inner-container .wp-block-latest-comments li .wp-block-latest-comments__comment-meta {
  color: rgba(var(--font-color-rgb), 1);
}
.widget_block .wp-block-group__inner-container .wp-block-latest-comments li .wp-block-latest-comments__comment-meta a {
  color: rgba(var(--font-color-rgb), 1);
  line-height: 1.9;
}
.widget_block .wp-block-group__inner-container .wp-block-latest-comments li .wp-block-latest-comments__comment-meta a:hover {
  color: var(--primary-color);
}

.widget {
  margin: 0 0 60px;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget.widget_block .wp-block-search__label,
.widget .wp-block-group__inner-container > h2,
.widget .widget-title {
  margin-bottom: 32px;
  font-size: 1.111em;
  line-height: 1;
  color: rgba(var(--font-color-rgb), 1);
  display: inline-block;
  position: relative;
  font-family: var(--secondary-font);
}
.widget.widget_bttk_author_bio .widget-title {
  display: none;
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder {
  text-align: center;
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .image-holder {
  margin-bottom: 20px;
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .image-holder img {
  width: 190px;
  height: 190px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100px;
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .text-holder .title-holder {
  display: block;
  font-size: 1.111em;
  line-height: 1.75;
  font-family: var(--secondary-font);
  margin-bottom: 15px;
  color: rgba(var(--font-color-rgb), 0.9);
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .text-holder .text-signature {
  display: inline-block;
  max-width: 100%;
  font-size: 1.7em;
  line-height: 1.8;
  font-family: var(--signature-font-two);
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  transform: rotate(-5deg);
  position: relative;
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .text-holder .text-signature::after {
  content: "";
  width: 136.97px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138.645' height='25.039' viewBox='0 0 138.645 25.039'%3E%3Cpath id='Path_336' data-name='Path 336' d='M443.439,487.565s138.8-18.617,136.948-9.467' transform='matrix(0.996, -0.087, 0.087, 0.996, -482.596, -422.631)' fill='none' stroke='%23171717' stroke-linecap='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -5px;
  left: -4px;
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
  transform: rotate(5deg);
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .text-holder .readmore {
  display: none;
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .text-holder .author-bio-socicons {
  margin-top: 30px;
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .text-holder .author-bio-socicons .author-socicons {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 11px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .text-holder .author-bio-socicons .author-socicons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  color: var(--primary-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget.widget_bttk_author_bio .bttk-author-bio-holder .text-holder .author-bio-socicons .author-socicons a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.widget.widget_text .textwidget a {
  text-decoration: underline;
}
.widget.widget_blossomthemes_email_newsletter_widget .widget-title {
  display: none;
}
.widget.widget_blossomthemes_email_newsletter_widget .blossomthemes-email-newsletter-wrapper {
  color: var(--white-color);
  padding: 45px 15px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.widget.widget_blossomthemes_email_newsletter_widget .blossomthemes-email-newsletter-wrapper .img-holder {
  margin: 0 auto 20px auto;
}
@media screen and (min-width: 768px) {
  .widget.widget_blossomthemes_email_newsletter_widget .blossomthemes-email-newsletter-wrapper {
    padding: 45px 20px;
  }
}
.widget.widget_blossomthemes_email_newsletter_widget .blossomthemes-email-newsletter-wrapper .text-holder {
  margin-bottom: 20px;
}
.widget.widget_blossomthemes_email_newsletter_widget .blossomthemes-email-newsletter-wrapper .text-holder h3 {
  font-size: 1.7em;
  line-height: 1.333;
  margin-bottom: 16px;
}
.widget.widget_blossomthemes_email_newsletter_widget .blossomthemes-email-newsletter-wrapper form input[type=submit] {
  width: 100%;
}
.widget.widget_bttk_pro_recent_post ul {
  list-style: none;
  margin-left: 0;
}
.widget.widget_bttk_pro_recent_post ul li {
  margin-bottom: 35px;
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .cat-links {
  margin-bottom: 10px;
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .cat-links a {
  font-size: 15px;
  letter-spacing: 1.42px;
  line-height: 32px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-left: 20px;
  position: relative;
  margin-right: 10px;
  color: var(--primary-color);
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .cat-links a:hover {
  color: var(--secondary-color);
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .entry-title {
  line-height: 24px;
  letter-spacing: 0.21px;
  font-weight: 400;
  font-family: var(--secondary-font);
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .entry-title a {
  color: var(--font-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .entry-title a:hover {
  color: var(--primary-color);
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .entry-meta {
  margin-top: 11px;
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .entry-meta a {
  color: rgba(var(--font-color-rgb), 0.8);
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.63;
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .entry-meta .posted-on a {
  padding-left: 0;
}
.widget.widget_bttk_pro_recent_post ul li .entry-header .entry-meta .posted-on a::before {
  content: none;
}
.widget.widget_bttk_pro_recent_post ul.style-one li .post-thumbnail {
  margin-right: 15px;
}
.widget.widget_bttk_pro_recent_post ul.style-one li .entry-header .entry-meta {
  margin-top: 4px;
}
.widget.widget_bttk_pro_recent_post ul.style-three li .entry-header {
  padding: 13px 15px;
}
.widget.widget_bttk_pro_recent_post .post {
  grid-gap: 15px;
}
.widget.widget_bttk_pro_recent_post .post.horizontal .entry-title {
  margin-top: 0;
}
.widget.widget_bttk_pro_recent_post .post-thumbnail {
  margin: 0;
}
.widget.widget_bttk_pro_recent_post .entry-header {
  margin-bottom: 0;
}
.widget.widget_bttk_pro_recent_post .entry-title {
  font-size: 1em;
  line-height: 1.25;
  font-weight: 600;
  font-family: var(--secondary-font);
  letter-spacing: 0;
}
.widget.widget_media_gallery a {
  display: inline-block;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-wrap ul {
  list-style: none;
  margin-left: 0;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-wrap ul li {
  position: relative;
  height: 120px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  margin-bottom: 57px;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-wrap ul li::after {
  content: none;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-wrap ul li a {
  border-radius: 5px;
  padding: 15px;
  min-width: 246px;
  position: absolute;
  bottom: 28px;
  left: 0;
  max-width: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -o-transform: translate(0, 50%);
  transform: translate(0, 50%);
  background: var(--white-color);
  color: var(--font-color);
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-wrap ul li a .post-count {
  height: 26px;
  width: auto;
  font-size: 0.7777777778em;
  line-height: 0.78125em;
  padding: 8px 8px;
  background: var(--primary-color);
  border-radius: 3px;
  color: var(--white-color);
  margin-left: 10px;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-wrap ul li a:hover {
  color: var(--primary-color);
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-wrap ul li a:hover .post-count {
  width: auto;
  background: var(--secondary-color);
}
.widget.widget_bttk_popular_post ul.style-one .post-thumbnail {
  width: 105px;
  height: 65px;
}
.widget.widget_bttk_popular_post ul.style-one .entry-header .entry-meta {
  margin-top: 4px;
}
.widget.widget_bttk_popular_post ul.style-two .entry-header {
  text-align: center;
  padding: 0;
}
.widget.widget_bttk_popular_post ul.style-three li .entry-header {
  padding: 13px 15px;
}
.widget.widget_bttk_popular_post ul li {
  margin-bottom: 32px;
}
.widget.widget_bttk_popular_post ul li:last-child {
  margin-bottom: 0;
}
.widget.widget_bttk_popular_post ul li .entry-header .cat-links {
  margin-bottom: 10px;
}
.widget.widget_bttk_popular_post ul li .entry-header .cat-links a {
  font-size: 15px;
  letter-spacing: 1.42px;
  line-height: 32px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-left: 20px;
  position: relative;
  margin-right: 10px;
  text-decoration: none;
  color: var(--primary-color);
}
.widget.widget_bttk_popular_post ul li .entry-header .cat-links a:hover {
  color: var(--secondary-color);
}
.widget.widget_bttk_popular_post ul li .entry-header .entry-title {
  line-height: 24px;
  letter-spacing: 0.21px;
  font-weight: 400;
  font-family: var(--secondary-font);
}
.widget.widget_bttk_popular_post ul li .entry-header .entry-title a {
  color: var(--font-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.widget.widget_bttk_popular_post ul li .entry-header .entry-title a:hover {
  color: var(--primary-color);
}
.widget.widget_bttk_popular_post ul li .entry-header .entry-meta {
  margin-top: 11px;
}
.widget.widget_bttk_popular_post ul li .entry-header .entry-meta a {
  color: rgba(var(--font-color-rgb), 0.8);
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.63;
}
.widget.widget_bttk_popular_post ul li .entry-header .entry-meta .posted-on a {
  padding-left: 0;
}
.widget.widget_bttk_popular_post ul li .entry-header .entry-meta .posted-on a::before {
  content: none;
}
.widget.widget_categories ul, .widget.widget_Archive ul {
  list-style: none;
  margin: 0;
}
.widget.widget_categories ul li, .widget.widget_Archive ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: var(--secondary-font);
}
.widget.widget_categories ul li:not(:last-child), .widget.widget_Archive ul li:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(var(--font-color-rgb), 0.05);
}
.widget.widget_categories ul li:last-child a, .widget.widget_Archive ul li:last-child a {
  text-decoration: none;
  color: var(--font-color);
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.widget.widget_categories ul li:last-child a:hover, .widget.widget_Archive ul li:last-child a:hover {
  color: var(--primary-color);
}
.widget.widget_categories select, .widget.widget_Archive select {
  margin-bottom: 0;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
}
.widget.widget_tag_cloud .tagcloud {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: 12.5px;
  grid-row-gap: 20px;
}
.widget.widget_tag_cloud .tagcloud a {
  display: inline-block;
  font-size: 0.777em !important;
  line-height: 1;
  font-family: var(--secondary-font);
  color: var(--primary-color);
  text-transform: uppercase;
  -webkit-text-decoration-style: dotted;
  -moz-text-decoration-style: dotted;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
  -webkit-text-decoration-color: var(--secondary-color);
  -moz-text-decoration-color: var(--secondary-color);
  text-decoration-color: var(--secondary-color);
}
.widget.widget_tag_cloud .tagcloud a:hover {
  color: var(--primary-color);
}
.widget.widget_tag_cloud .tagcloud a:not(:first-child) {
  padding-left: 12.5px;
  position: relative;
}
.widget.widget_tag_cloud .tagcloud a:not(:first-child)::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--secondary-color);
  position: absolute;
  top: 50%;
  left: -1.5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widget.widget_bttk_social_links {
  position: relative;
}
.widget.widget_bttk_social_links .social-networks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 11px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.widget.widget_bttk_social_links .social-networks a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  color: var(--primary-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget.widget_bttk_social_links .social-networks a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.widget.widget_bttk_posts_category_slider_widget .item {
  padding: 0;
  margin: 0;
}
.widget.widget_bttk_posts_category_slider_widget .item .carousel-title {
  text-align: center;
  padding-top: 24px;
}
@media screen and (min-width: 1200px) {
  .widget.widget_bttk_posts_category_slider_widget .item .carousel-title {
    padding-left: 35px;
    padding-right: 35px;
  }
}
.widget.widget_bttk_posts_category_slider_widget .item .carousel-title .title {
  font-size: 1.111em;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 8px;
}
.widget.widget_bttk_posts_category_slider_widget .item .carousel-title .title a {
  text-decoration: none;
  color: rgba(var(--font-color-rgb), 0.9);
}
.widget.widget_bttk_posts_category_slider_widget .item .carousel-title .title a:hover {
  color: var(--primary-color);
}
.widget.widget_bttk_posts_category_slider_widget .item .entry-meta {
  text-align: center;
}
.widget.widget_bttk_posts_category_slider_widget .owl-carousel .owl-nav button.owl-prev,
.widget.widget_bttk_posts_category_slider_widget .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 23%;
  width: 33px;
  height: 33px;
  -webkit-background-size: 20.65px 4.88px;
  background-size: 20.65px 4.88px;
  background-color: transparent;
  border-color: var(--white-color);
  background-position: center;
}
.widget.widget_bttk_posts_category_slider_widget .owl-carousel .owl-nav button.owl-prev:hover,
.widget.widget_bttk_posts_category_slider_widget .owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--primary-color);
}
.widget.widget_bttk_posts_category_slider_widget .owl-carousel .owl-nav button.owl-prev {
  left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.649' height='4.881' viewBox='0 0 20.649 4.881'%3E%3Cg id='Group_1293' data-name='Group 1293' transform='translate(-0.748 -3.864)'%3E%3Cpath id='Path_24928' data-name='Path 24928' d='M3089.528,1523h17.035' transform='translate(-3085.166 -1516.502)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Cpath id='path5019' d='M133.249-4.237,137.476-1.8V-6.678Z' transform='translate(-132.501 10.542)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.widget.widget_bttk_posts_category_slider_widget .owl-carousel .owl-nav button.owl-next {
  right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg id='Group_1471' data-name='Group 1471' xmlns='http://www.w3.org/2000/svg' width='20.649' height='4.881' viewBox='0 0 20.649 4.881'%3E%3Cpath id='Path_24928' data-name='Path 24928' d='M3106.563,1523h-17.035' transform='translate(-3089.528 -1520.366)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Cpath id='path5019' d='M137.476-4.237,133.249-1.8V-6.678Z' transform='translate(-116.827 6.678)' fill='%23fff'/%3E%3C/svg%3E%0A");
}
.widget.widget_bttk_posts_category_slider_widget .owl-carousel .owl-dots {
  margin-top: 20px;
}
.widget.widget_bttk_posts_category_slider_widget .owl-carousel .owl-dots button span {
  display: none;
}
.widget.widget_calendar .calendar_wrap {
  padding: 0;
  position: relative;
  background: var(--white-color);
  border: 1px solid rgba(var(--font-color-rgb), 0.05);
  overflow: hidden;
  border-radius: 4px;
}
.widget.widget_calendar .calendar_wrap .wp-calendar-nav .pad {
  display: none;
}
.widget.widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-prev,
.widget.widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-next {
  position: absolute;
  top: 12px;
  width: 20px;
  height: 20px;
  -webkit-background-size: 15.75px 11.12px;
  background-size: 15.75px 11.12px;
  background-repeat: no-repeat;
  background-position: center;
}
.widget.widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-prev a,
.widget.widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-next a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
}
.widget.widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-prev {
  left: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.562' height='13.244' viewBox='0 0 17.562 13.244'%3E%3Cg id='Group_762' data-name='Group 762' transform='matrix(-1, 0, 0, 1, 16.812, 1.061)'%3E%3Cpath id='Path_4' data-name='Path 4' d='M3290.465,368.331l5.561,5.561-5.561,5.561' transform='translate(-3280.275 -368.331)' fill='none' stroke='%231e1e1e' stroke-linecap='round' stroke-width='1.5'/%3E%3Cline id='Line_5' data-name='Line 5' x2='14.523' transform='translate(0 6)' fill='none' stroke='%231e1e1e' stroke-linecap='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.widget.widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.562' height='13.244' viewBox='0 0 17.562 13.244'%3E%3Cg id='Group_762' data-name='Group 762' transform='matrix(-1, 0, 0, 1, 16.812, 1.061)'%3E%3Cpath id='Path_4' data-name='Path 4' d='M3290.465,368.331l5.561,5.561-5.561,5.561' transform='translate(-3280.275 -368.331)' fill='none' stroke='%2317BE8A' stroke-linecap='round' stroke-width='1.5'/%3E%3Cline id='Line_5' data-name='Line 5' x2='14.523' transform='translate(0 6)' fill='none' stroke='%2317BE8A' stroke-linecap='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.widget.widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-next {
  right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.562' height='13.244' viewBox='0 0 17.562 13.244'%3E%3Cg id='Group_762' data-name='Group 762' transform='translate(0.75 1.061)'%3E%3Cpath id='Path_4' data-name='Path 4' d='M3290.465,368.331l5.561,5.561-5.561,5.561' transform='translate(-3280.275 -368.331)' fill='none' stroke='%231e1e1e' stroke-linecap='round' stroke-width='1.5'/%3E%3Cline id='Line_5' data-name='Line 5' x2='14.523' transform='translate(0 6)' fill='none' stroke='%231e1e1e' stroke-linecap='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.widget.widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.562' height='13.244' viewBox='0 0 17.562 13.244'%3E%3Cg id='Group_762' data-name='Group 762' transform='translate(0.75 1.061)'%3E%3Cpath id='Path_4' data-name='Path 4' d='M3290.465,368.331l5.561,5.561-5.561,5.561' transform='translate(-3280.275 -368.331)' fill='none' stroke='%2317BE8A' stroke-linecap='round' stroke-width='1.5'/%3E%3Cline id='Line_5' data-name='Line 5' x2='14.523' transform='translate(0 6)' fill='none' stroke='%2317BE8A' stroke-linecap='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.widget.widget_calendar .calendar_wrap table {
  font-family: var(--secondary-font);
  text-align: center;
  border-collapse: collapse;
  margin: 0;
}
.widget.widget_calendar .calendar_wrap table caption {
  font-size: 0.888em;
  line-height: 1.3;
  background: rgba(var(--primary-color-rgb), 0.1);
  padding: 12px;
  margin: 0 -22px;
}
.widget.widget_calendar .calendar_wrap table thead tr {
  border-bottom: 1px solid rgba(var(--font-color-rgb), 0.2);
}
.widget.widget_calendar .calendar_wrap table thead th {
  font-size: 0.777em;
  font-weight: normal;
  text-transform: uppercase;
}
.widget.widget_calendar .calendar_wrap table tbody td {
  font-size: 0.833em;
  color: rgba(var(--font-color-rgb), 0.9);
}
.widget.widget_calendar .calendar_wrap table tbody td a,
.widget.widget_calendar .calendar_wrap table tbody td span {
  color: var(--font-color);
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
}
.widget.widget_calendar .calendar_wrap table tbody td a:hover {
  text-decoration: underline;
}
.widget.widget_calendar .calendar_wrap table tbody td#today span {
  background: var(--secondary-color);
  color: var(--white-color);
}
.widget.widget_calendar .calendar_wrap table td,
.widget.widget_calendar .calendar_wrap table th {
  padding: 5px !important;
  text-align: center;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-meta-wrap {
  list-style: none;
  margin: 0;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-meta-wrap li {
  padding-top: 90px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-meta-wrap li a {
  display: inline-block;
  margin-bottom: -26px;
  background: var(--white-color);
  padding: 15px;
  min-width: 228px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1em;
  color: var(--font-color);
  font-family: var(--secondary-font);
  text-align: center;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-meta-wrap li a:hover {
  color: var(--primary-color);
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-meta-wrap li a .post-count {
  display: inline-block;
  padding: 6px 9px 3px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 15px;
  line-height: 1;
  font-family: var(--primary-font);
  margin-left: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.widget.widget_bttk_custom_categories .blossomthemes-custom-categories-meta-wrap li a:hover .post-count {
  background: var(--font-color);
}
.widget.widget_custom_blog_banner {
  background: rgba(var(--secondary-color-rgb), 0.1);
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .widget.widget_custom_blog_banner {
    padding: 60px 40px;
  }
}
.widget.widget_custom_blog_banner::before {
  content: "";
  width: 370px;
  height: 245.51px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='370' height='345.508' viewBox='0 0 370 345.508'%3E%3Cg id='Path_24952' data-name='Path 24952' fill='%23ffdf00' opacity='0.04'%3E%3Cpath d='M370,0V345.508H0Z' stroke='none'/%3E%3Cpath d='M 369 2.302032470703125 L 2.536102294921875 344.5077819824219 L 369 344.5077819824219 L 369 2.302032470703125 M 370 0 L 370 345.5077819824219 L 0 345.5077819824219 L 370 0 Z' stroke='none' fill='rgba(136,238,191,0.3)'/%3E%3C/g%3E%3C/svg%3E%0A");
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .widget.widget_custom_blog_banner .banner-text-holder {
    padding: 0 30px;
  }
}
.widget.widget_custom_blog_banner .banner-title {
  font-size: 1.666em;
  line-height: 1.333;
  margin-bottom: 20px;
}
.widget.widget_custom_blog_banner .banner-desc {
  margin-bottom: 20px;
}
.widget.widget_custom_blog_banner .button-wrapper .wc-btn {
  width: 100%;
}
@media (max-width: 1199px) {
  .widget.widget_custom_blog_banner .button-wrapper .wc-btn {
    padding: 17px;
  }
}

#secondary,
.footer-t {
  /*==========================
  WIDGET social Icon
  ==========================*/
  /*==========================
  WIDGET client logo 
  ==========================*/
  /*==========================
  WIDGET TEAM
  ==========================*/
  /*==============================
  WIDGET TESTIMONIAL
  ==============================*/
  /*===============================
  WIDGET POST CATEGORY SLIDER
  ===============================*/
  /*===================================
  feature page
  ===================================*/
  /*===================================
  Product list
  ===================================*/
  /*===========================================
  Sidebar product search form
  ==========================================*/
  /*=================================
  Product categories list
  =================================*/
  /*===================================
  Widget rating filter
  ===================================*/
  /*===================================
  Sidebar layered nav dropdown
  ===================================*/
  /*=============================
  Sidebar price filter
  ============================*/
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul {
  list-style: none;
  margin: 0;
  list-style: none;
  margin: 0;
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li {
  color: rgba(var(--font-color-rgb), 1);
  padding-left: 0;
  list-style: none;
  margin-bottom: 15px;
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li:not(:last-child),
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(var(--font-color-rgb), 0.05);
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li:last-child,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li:last-child {
  margin-bottom: 0;
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li > a,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li > a {
  position: relative;
  padding-left: 0px;
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li a,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li a {
  color: rgba(var(--font-color-rgb), 1);
  font-size: 16px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li a:hover,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li a:hover {
  color: rgba(var(--primary-color-rgb), 1);
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu).widget_recent_entries .post-date,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu).widget_recent_entries .post-date {
  font-size: 14px;
  color: rgba(var(--font-color-rgb), 0.8);
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu).widget_recent_comments ul li,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu).widget_recent_comments ul li {
  position: relative;
  padding-left: 0px;
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu).widget_recent_comments ul li > a::before,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu).widget_recent_comments ul li > a::before {
  content: none;
}
#secondary .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu).widget_btif_instagram_widget ul li a::before,
.footer-t .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu).widget_btif_instagram_widget ul li a::before {
  content: none;
}
#secondary .widget_nav_menu ul,
.footer-t .widget_nav_menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-column-gap: 20px;
}
#secondary .widget_nav_menu ul li,
.footer-t .widget_nav_menu ul li {
  display: inline-block;
}
#secondary .widget_nav_menu ul li .submenu-toggle-btn,
.footer-t .widget_nav_menu ul li .submenu-toggle-btn {
  display: none;
}
#secondary .widget_nav_menu ul li a,
.footer-t .widget_nav_menu ul li a {
  color: rgba(var(--font-color-rgb), 1);
  font-size: 18px;
  letter-spacing: 1.42px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
#secondary .widget_nav_menu ul li a:hover,
.footer-t .widget_nav_menu ul li a:hover {
  color: rgba(var(--primary-color-rgb), 1);
}
#secondary .widget_nav_menu ul li ul,
.footer-t .widget_nav_menu ul li ul {
  margin-left: 20px;
}
#secondary .widget .cat-links a,
.footer-t .widget .cat-links a {
  position: relative;
  text-transform: uppercase;
}
#secondary .widget .cat-links a:hover,
.footer-t .widget .cat-links a:hover {
  color: var(--secondary-color);
}
#secondary .widget .cat-links a:hover::before,
.footer-t .widget .cat-links a:hover::before {
  background-color: currentColor;
}
#secondary .widget .cat-links a + a,
.footer-t .widget .cat-links a + a {
  margin-left: 10px;
  padding-left: 12px;
}
#secondary .widget .cat-links a + a::before,
.footer-t .widget .cat-links a + a::before {
  content: "";
  position: absolute;
  top: 4.5px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: currentcolor;
  opacity: 0.4;
  -webkit-transition: all 0.234s ease-in-out;
  -o-transition: all 0.234s ease-in-out;
  transition: all 0.234s ease-in-out;
}
#secondary .widget_media_image a,
.footer-t .widget_media_image a {
  display: block;
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list .contact-title,
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list .address-title,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list .contact-title,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list .address-title {
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 400;
  font-family: var(--secondary-font);
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li {
  list-style: none;
  margin-bottom: 8px;
  font-weight: 400;
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li a,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li a {
  color: rgba(var(--font-color-rgb), 1);
  font-weight: 400;
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li a::before,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li a::before {
  content: none;
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li .fa-phone,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li .fa-phone {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li svg,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li svg {
  margin-right: 20px;
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li svg path,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li svg path {
  fill: var(--primary-color);
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list-title,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list-title {
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
  font-weight: 400;
  font-family: var(--secondary-font);
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .social-networks li,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .social-networks li {
  margin-bottom: 4px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 11px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .social-networks li a,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .social-networks li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  color: var(--primary-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#secondary .widget_bttk_contact_social_links .bttk-contact-widget-wrap .social-networks li a:hover,
.footer-t .widget_bttk_contact_social_links .bttk-contact-widget-wrap .social-networks li a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
#secondary .widget_bttk_social_links .social-networks li,
.footer-t .widget_bttk_social_links .social-networks li {
  margin-bottom: 4px;
}
#secondary .widget_bttk_social_links .social-networks li a,
.footer-t .widget_bttk_social_links .social-networks li a {
  padding-left: 0;
  background: unset;
}
#secondary .widget_bttk_social_links .social-networks li a::before,
.footer-t .widget_bttk_social_links .social-networks li a::before {
  content: none;
}
#secondary .widget_bttk_social_links .social-networks li a:hover,
.footer-t .widget_bttk_social_links .social-networks li a:hover {
  color: #fff;
  background: var(--primary-color);
}
#secondary .widget_blossom_client_logo_widget .blossom-iw-holder .blossom-iw-inner-holder .blossom-inner-wrap,
.footer-t .widget_blossom_client_logo_widget .blossom-iw-holder .blossom-iw-inner-holder .blossom-inner-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
#secondary .widget_blossom_client_logo_widget .blossom-iw-holder .blossom-iw-inner-holder .blossom-inner-wrap .image-holder img,
.footer-t .widget_blossom_client_logo_widget .blossom-iw-holder .blossom-iw-inner-holder .blossom-inner-wrap .image-holder img {
  max-width: 100%;
}
#secondary .widget_btif_instagram_widget ul,
.footer-t .widget_btif_instagram_widget ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}
#secondary .widget_btif_instagram_widget ul li,
.footer-t .widget_btif_instagram_widget ul li {
  margin: 0;
  width: 100%;
}
#secondary .widget_btif_instagram_widget ul li a,
.footer-t .widget_btif_instagram_widget ul li a {
  display: block;
  padding-left: 0;
}
#secondary .widget_btif_instagram_widget .profile-link,
.footer-t .widget_btif_instagram_widget .profile-link {
  padding: 10px 30px;
  max-width: 261px;
  margin: 0 auto;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  display: block;
  margin-top: 20px;
  text-decoration: none;
  text-align: center;
}
#secondary .widget_btif_instagram_widget .profile-link:hover,
.footer-t .widget_btif_instagram_widget .profile-link:hover {
  background-color: var(--primary-color);
  color: #fff;
}
#secondary .widget_btif_instagram_widget .profile-link .insta-icon,
.footer-t .widget_btif_instagram_widget .profile-link .insta-icon {
  margin-right: 10px;
}
#secondary .widget_bttk_author_bio .bttk-author-bio-holder .readmore,
.footer-t .widget_bttk_author_bio .bttk-author-bio-holder .readmore {
  line-height: 1.3;
  color: var(--white-color);
  background: var(--primary-color);
  display: block;
  font-size: 0.8888em;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 12px 30px;
  margin-top: 40px;
}
#secondary .widget_bttk_author_bio .bttk-author-bio-holder .readmore:hover,
.footer-t .widget_bttk_author_bio .bttk-author-bio-holder .readmore:hover {
  background: var(--secondary-color);
}
#secondary .widget_bttk_author_bio .bttk-author-bio-holder .author-bio-socicons,
.footer-t .widget_bttk_author_bio .bttk-author-bio-holder .author-bio-socicons {
  margin-top: 25px;
}
#secondary .widget_blossomtheme_companion_cta_widget,
.footer-t .widget_blossomtheme_companion_cta_widget {
  margin: 0 0 60px;
}
#secondary .widget_blossomtheme_companion_cta_widget .bttk-cta-bg,
.footer-t .widget_blossomtheme_companion_cta_widget .bttk-cta-bg {
  padding: 0;
}
#secondary .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container,
.footer-t .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container {
  padding: 40px 20px;
  text-align: left;
}
#secondary .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .button-wrap,
.footer-t .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .button-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 1em;
}
#secondary .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .button-wrap .btn-2,
.footer-t .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .button-wrap .btn-2 {
  border: 1px solid var(--primary-color);
  color: var(--white-color);
}
#secondary .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .button-wrap .btn-2:hover,
.footer-t .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .button-wrap .btn-2:hover {
  color: var(--white-color);
}
#secondary .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .widget-subtitle,
#secondary .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .text-holder,
#secondary .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .widget-title,
.footer-t .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .widget-subtitle,
.footer-t .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .text-holder,
.footer-t .widget_blossomtheme_companion_cta_widget .blossomtheme-cta-container .widget-title {
  color: var(--white-color);
}
#secondary .widget_blossomtheme_companion_cta_widget .bttk-cta-bg,
.footer-t .widget_blossomtheme_companion_cta_widget .bttk-cta-bg {
  padding: 0;
  position: relative;
  z-index: 2;
}
#secondary .widget_blossomtheme_companion_cta_widget .bttk-cta-bg::before,
.footer-t .widget_blossomtheme_companion_cta_widget .bttk-cta-bg::before {
  content: "";
  position: absolute;
  background: rgba(var(--black-color-rgb), 0.6);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}
#secondary .widget_blossomtheme_companion_cta_widget .bttk-cta-bg .blossomtheme-cta-container .text-holder,
#secondary .widget_blossomtheme_companion_cta_widget .bttk-cta-bg .blossomtheme-cta-container .widget-title,
.footer-t .widget_blossomtheme_companion_cta_widget .bttk-cta-bg .blossomtheme-cta-container .text-holder,
.footer-t .widget_blossomtheme_companion_cta_widget .bttk-cta-bg .blossomtheme-cta-container .widget-title {
  color: var(--white-color);
}
#secondary .widget_blossomtheme_companion_cta_widget .right .blossomtheme-cta-container,
.footer-t .widget_blossomtheme_companion_cta_widget .right .blossomtheme-cta-container {
  padding: 40px 20px;
  text-align: right;
}
#secondary .widget_blossomtheme_companion_cta_widget .right .blossomtheme-cta-container .button-wrap,
.footer-t .widget_blossomtheme_companion_cta_widget .right .blossomtheme-cta-container .button-wrap {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#secondary .widget_blossomtheme_companion_cta_widget .centered .blossomtheme-cta-container,
.footer-t .widget_blossomtheme_companion_cta_widget .centered .blossomtheme-cta-container {
  padding: 40px 20px;
  text-align: center;
}
#secondary .widget_blossomtheme_companion_cta_widget .centered .blossomtheme-cta-container .button-wrap,
.footer-t .widget_blossomtheme_companion_cta_widget .centered .blossomtheme-cta-container .button-wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#secondary .widget_bttk_icon_text_widget .rtc-itw-holder .rtc-itw-inner-holder,
.footer-t .widget_bttk_icon_text_widget .rtc-itw-holder .rtc-itw-inner-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  grid-gap: 1.5em;
}
#secondary .widget_bttk_icon_text_widget .rtc-itw-holder .rtc-itw-inner-holder .widget-title,
.footer-t .widget_bttk_icon_text_widget .rtc-itw-holder .rtc-itw-inner-holder .widget-title {
  margin-bottom: 15px;
}
#secondary .widget_bttk_icon_text_widget .rtc-itw-holder .rtc-itw-inner-holder .icon-holder,
.footer-t .widget_bttk_icon_text_widget .rtc-itw-holder .rtc-itw-inner-holder .icon-holder {
  font-size: 3em;
  color: var(--primary-color);
}
#secondary .widget_bttk_image_text_widget .bttk-itw-holder li,
.footer-t .widget_bttk_image_text_widget .bttk-itw-holder li {
  margin-bottom: 42px;
  list-style: none;
}
#secondary .widget_bttk_image_text_widget .bttk-itw-holder li .btn-readmore,
.footer-t .widget_bttk_image_text_widget .bttk-itw-holder li .btn-readmore {
  top: auto;
  bottom: -19px;
  min-height: 45px;
  background: var(--white-color);
  color: var(--black-color);
  left: 50%;
  width: auto;
  min-width: 62%;
  max-width: -webkit-calc(100% - 30px);
  max-width: calc(100% - 30px);
  padding: 7px 20px;
  text-transform: none;
  font-style: italic;
  font-size: 1em;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  line-height: 1.4em;
  width: 100%;
}
#secondary .widget_bttk_image_text_widget .bttk-itw-holder li .btn-readmore::before,
.footer-t .widget_bttk_image_text_widget .bttk-itw-holder li .btn-readmore::before {
  content: none;
}
#secondary .widget_bttk_image_text_widget .bttk-itw-holder li .btn-readmore:hover,
.footer-t .widget_bttk_image_text_widget .bttk-itw-holder li .btn-readmore:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
#secondary .widget_bttk_image_text_widget .bttk-itw-holder li .btn-readmore::after,
.footer-t .widget_bttk_image_text_widget .bttk-itw-holder li .btn-readmore::after {
  content: none;
}
#secondary .widget_blossomthemes_stat_counter_widget .col,
.footer-t .widget_blossomthemes_stat_counter_widget .col {
  width: 100%;
  padding: 0;
}
#secondary .widget_blossomthemes_stat_counter_widget .blossomthemes-sc-holder,
.footer-t .widget_blossomthemes_stat_counter_widget .blossomthemes-sc-holder {
  position: relative;
  padding-left: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
#secondary .widget_blossomthemes_stat_counter_widget .blossomthemes-sc-holder .icon-holder,
.footer-t .widget_blossomthemes_stat_counter_widget .blossomthemes-sc-holder .icon-holder {
  font-size: 3em;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 1;
  color: var(--primary-color);
}
#secondary .widget_blossomthemes_stat_counter_widget .blossomthemes-sc-holder .hs-counter,
.footer-t .widget_blossomthemes_stat_counter_widget .blossomthemes-sc-holder .hs-counter {
  font-size: 2.6665em;
  font-weight: 700;
  line-height: 1;
}
#secondary .widget_blossomthemes_stat_counter_widget .widget-title,
.footer-t .widget_blossomthemes_stat_counter_widget .widget-title {
  background: none;
  padding: 0;
  font-size: 1.112em;
  margin-bottom: 0;
  text-align: left;
}
#secondary .widget_blossomthemes_stat_counter_widget .widget-title::after,
.footer-t .widget_blossomthemes_stat_counter_widget .widget-title::after {
  content: none;
}
#secondary .widget_blossomthemes_stat_counter_widget .widget-title > span,
.footer-t .widget_blossomthemes_stat_counter_widget .widget-title > span {
  background: none;
  padding: 0;
}
#secondary .widget_bttk_description_widget .bttk-team-holder-modal,
.footer-t .widget_bttk_description_widget .bttk-team-holder-modal {
  display: none !important;
}
#secondary .widget_bttk_description_widget .bttk-team-inner-holder,
.footer-t .widget_bttk_description_widget .bttk-team-inner-holder {
  text-align: center;
}
#secondary .widget_bttk_description_widget .image-holder,
.footer-t .widget_bttk_description_widget .image-holder {
  margin-bottom: 30px;
}
#secondary .widget_bttk_description_widget .name,
.footer-t .widget_bttk_description_widget .name {
  display: block;
  font-weight: 700;
  line-height: 1.5;
}
#secondary .widget_bttk_description_widget .designation,
.footer-t .widget_bttk_description_widget .designation {
  display: block;
  font-size: 0.7778em;
  color: rgba(var(--black-color-rgb), 0.5);
  margin-top: 0;
}
#secondary .widget_bttk_description_widget .description,
.footer-t .widget_bttk_description_widget .description {
  margin-top: 0;
  margin-bottom: 20px;
}
#secondary .widget_bttk_description_widget .description p:last-child,
.footer-t .widget_bttk_description_widget .description p:last-child {
  margin-bottom: 0;
}
#secondary .widget_bttk_description_widget .social-profile,
.footer-t .widget_bttk_description_widget .social-profile {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 11px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
#secondary .widget_bttk_description_widget .social-profile li a,
.footer-t .widget_bttk_description_widget .social-profile li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  color: var(--primary-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#secondary .widget_bttk_description_widget .social-profile li a:hover,
.footer-t .widget_bttk_description_widget .social-profile li a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
#secondary .widget_bttk_testimonial_widget .bttk-testimonial-inner-holder,
.footer-t .widget_bttk_testimonial_widget .bttk-testimonial-inner-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* align-items: center; */
}
#secondary .widget_bttk_testimonial_widget .bttk-testimonial-inner-holder .testimonial-heading,
.footer-t .widget_bttk_testimonial_widget .bttk-testimonial-inner-holder .testimonial-heading {
  margin-bottom: 32px;
  font-size: 1.111em;
  line-height: 1;
  color: rgba(var(--font-color-rgb), 0.9);
  font-weight: 500;
  display: inline-block;
  position: relative;
  font-family: var(--secondary-font);
}
#secondary .widget_bttk_testimonial_widget .bttk-testimonial-inner-holder .img-holder,
.footer-t .widget_bttk_testimonial_widget .bttk-testimonial-inner-holder .img-holder {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-top: -44px;
}
#secondary .widget_bttk_testimonial_widget .bttk-testimonial-inner-holder .img-holder img,
.footer-t .widget_bttk_testimonial_widget .bttk-testimonial-inner-holder .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
#secondary .widget_bttk_testimonial_widget .text-holder,
.footer-t .widget_bttk_testimonial_widget .text-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
#secondary .widget_bttk_testimonial_widget .testimonial-content,
.footer-t .widget_bttk_testimonial_widget .testimonial-content {
  font-size: 1em;
  font-family: var(--secondary-font);
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
#secondary .widget_bttk_testimonial_widget .testimonial-content p,
.footer-t .widget_bttk_testimonial_widget .testimonial-content p {
  margin-top: 0;
  margin-bottom: 20px;
}
#secondary .widget_bttk_testimonial_widget .testimonial-content p:last-child::after, #secondary .widget_bttk_testimonial_widget .testimonial-content p:first-child::before,
.footer-t .widget_bttk_testimonial_widget .testimonial-content p:last-child::after,
.footer-t .widget_bttk_testimonial_widget .testimonial-content p:first-child::before {
  content: "";
  background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" width="16.139" height="12.576" viewBox="0 0 16.139 12.576"><path d="M154.714,262.991c-.462.312-.9.614-1.343.9-.3.2-.612.375-.918.56a2.754,2.754,0,0,1-2.851.133,1.764,1.764,0,0,1-.771-.99,6.549,6.549,0,0,1-.335-1.111,5.386,5.386,0,0,1-.219-1.92,16.807,16.807,0,0,1,.3-1.732,2.392,2.392,0,0,1,.424-.8c.394-.534.808-1.053,1.236-1.56a3.022,3.022,0,0,1,.675-.61,2.962,2.962,0,0,0,.725-.749c.453-.576.923-1.137,1.38-1.71a3.035,3.035,0,0,0,.208-.35c.023-.038.044-.09.079-.107.391-.185.777-.383,1.179-.54.284-.11.5.141.739.234a.316.316,0,0,1-.021.2c-.216.411-.442.818-.663,1.226-.5.918-1.036,1.817-1.481,2.761a7.751,7.751,0,0,0-.915,3.069c-.009.326.038.653.053.98.009.2.143.217.288.2a1.678,1.678,0,0,0,1.006-.491c.2-.2.316-.207.537-.027.283.23.552.479.825.723a.174.174,0,0,1,.06.116,1.424,1.424,0,0,1-.327,1C154.281,262.714,154.285,262.755,154.714,262.991Z" transform="translate(-139.097 -252.358)" fill="%23ff5000"/><path d="M222.24,262.76a5.243,5.243,0,0,1-2.138,1.427,1.623,1.623,0,0,0-.455.26,3.112,3.112,0,0,1-2.406.338,1.294,1.294,0,0,1-1.021-1.2,6.527,6.527,0,0,1,.449-2.954c.015-.043.04-.083.053-.127a13.25,13.25,0,0,1,1.295-2.632,14.155,14.155,0,0,1,1.224-1.677c.084.14.132.238.2.324.133.176.3.121.414-.06a1.248,1.248,0,0,0,.1-.23c.055-.149.143-.214.315-.111-.029-.308,0-.607.3-.727.114-.045.295.079.463.131.093-.161.227-.372.335-.6.029-.06-.012-.16-.033-.238-.042-.154-.1-.3-.137-.458a1.117,1.117,0,0,1,.27-.933c.154-.207.286-.431.431-.646a.586.586,0,0,1,1.008-.108,2.225,2.225,0,0,0,.336.306.835.835,0,0,0,.356.087,1.242,1.242,0,0,0,.294-.052c-.067.145-.114.257-.17.364-.7,1.34-1.422,2.665-2.082,4.023-.488,1.005-.891,2.052-1.332,3.08a.628.628,0,0,0-.032.11c-.091.415.055.542.478.461.365-.07.607-.378.949-.463a2.8,2.8,0,0,1,.823-.064c.174.01.366.451.317.687a2.48,2.48,0,0,1-.607,1.26C222.081,262.492,222.011,262.615,222.24,262.76Z" transform="translate(-216.183 -252.301)" fill="%23ff5000"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 0;
}
#secondary .widget_bttk_testimonial_widget .testimonial-content p:last-child::after,
.footer-t .widget_bttk_testimonial_widget .testimonial-content p:last-child::after {
  position: relative;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  display: inline-block;
  vertical-align: 10px;
  margin-left: 15px;
}
#secondary .widget_bttk_testimonial_widget .testimonial-meta,
.footer-t .widget_bttk_testimonial_widget .testimonial-meta {
  padding-left: 53px;
  line-height: 1.3;
  width: -webkit-calc(100% - 76px);
  width: calc(100% - 76px);
}
#secondary .widget_bttk_testimonial_widget .testimonial-meta .name,
.footer-t .widget_bttk_testimonial_widget .testimonial-meta .name {
  display: block;
  font-family: var(--secondary-font);
  font-size: 1em;
  /* font-weight: 600; */
}
#secondary .widget_bttk_testimonial_widget .testimonial-meta .designation,
.footer-t .widget_bttk_testimonial_widget .testimonial-meta .designation {
  display: block;
  font-size: 1em;
  font-family: var(--primary-font);
  letter-spacing: 0.1px;
}
#secondary .widget_bttk_posts_category_slider_widget .owl-nav button,
.footer-t .widget_bttk_posts_category_slider_widget .owl-nav button {
  background-repeat: no-repeat !important;
}
#secondary .widget_bttk_posts_category_slider_widget .owl-nav button::after,
.footer-t .widget_bttk_posts_category_slider_widget .owl-nav button::after {
  content: none;
}
#secondary .widget_bttk_posts_category_slider_widget .owl-dot span,
.footer-t .widget_bttk_posts_category_slider_widget .owl-dot span {
  display: none;
}
#secondary .widget_bttk_posts_category_slider_widget .carousel-title .cat-links,
.footer-t .widget_bttk_posts_category_slider_widget .carousel-title .cat-links {
  margin-bottom: 10px;
}
#secondary .widget_bttk_posts_category_slider_widget .carousel-title .cat-links a,
.footer-t .widget_bttk_posts_category_slider_widget .carousel-title .cat-links a {
  font-size: 15px;
  letter-spacing: 1.42px;
  line-height: 32px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-left: 20px;
  position: relative;
  margin-right: 10px;
  color: var(--primary-color);
}
#secondary .widget_bttk_posts_category_slider_widget .carousel-title .cat-links a:hover,
.footer-t .widget_bttk_posts_category_slider_widget .carousel-title .cat-links a:hover {
  color: var(--primary-color);
}
#secondary .widget_bttk_posts_category_slider_widget .carousel-title .title,
.footer-t .widget_bttk_posts_category_slider_widget .carousel-title .title {
  line-height: 24px;
  letter-spacing: 0.21px;
  font-weight: 400;
  font-family: var(--secondary-font);
}
#secondary .widget_bttk_posts_category_slider_widget .carousel-title .title a,
.footer-t .widget_bttk_posts_category_slider_widget .carousel-title .title a {
  color: var(--font-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
#secondary .widget_bttk_posts_category_slider_widget .carousel-title .title a:hover,
.footer-t .widget_bttk_posts_category_slider_widget .carousel-title .title a:hover {
  color: var(--primary-color);
}
#secondary .widget_blossomtheme_featured_page_widget .widget-featured-alignment,
.footer-t .widget_blossomtheme_featured_page_widget .widget-featured-alignment {
  position: relative;
}
#secondary .widget_blossomtheme_featured_page_widget .widget-featured-alignment .about-bg-img,
.footer-t .widget_blossomtheme_featured_page_widget .widget-featured-alignment .about-bg-img {
  position: absolute;
  top: -27px;
  left: 152px;
}
#secondary .widget_blossomtheme_featured_page_widget .widget-featured-alignment .img-holder,
.footer-t .widget_blossomtheme_featured_page_widget .widget-featured-alignment .img-holder {
  margin-bottom: 29px;
}
#secondary .widget_blossomtheme_featured_page_widget .right,
.footer-t .widget_blossomtheme_featured_page_widget .right {
  text-align: right;
}
#secondary .widget_blossomtheme_featured_page_widget .right .wp-block-buttons,
.footer-t .widget_blossomtheme_featured_page_widget .right .wp-block-buttons {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#secondary .widget_blossomtheme_featured_page_widget .centered,
.footer-t .widget_blossomtheme_featured_page_widget .centered {
  text-align: center;
}
#secondary .widget_blossomtheme_featured_page_widget .centered .wp-block-buttons,
.footer-t .widget_blossomtheme_featured_page_widget .centered .wp-block-buttons {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#secondary .widget_blossomtheme_featured_page_widget .featured_page_content,
.footer-t .widget_blossomtheme_featured_page_widget .featured_page_content {
  margin-top: 20px;
}
#secondary .woocommerce ul.product_list_widget li img,
.footer-t .woocommerce ul.product_list_widget li img {
  float: left;
  width: 75px;
  margin-left: 0;
  margin-right: 15px;
}
#secondary .woocommerce ul.product_list_widget li,
.footer-t .woocommerce ul.product_list_widget li {
  padding-top: 0;
  padding-left: 0;
  margin: 0 0 10px;
  text-transform: none;
  font-weight: 400;
  font-size: 0.8888em;
}
#secondary .woocommerce ul.product_list_widget li::before,
.footer-t .woocommerce ul.product_list_widget li::before {
  display: none;
}
#secondary .woocommerce ul.product_list_widget li a,
.footer-t .woocommerce ul.product_list_widget li a {
  font-weight: 400;
  text-decoration: none;
}
#secondary .woocommerce ul.product_list_widget li .product-title,
.footer-t .woocommerce ul.product_list_widget li .product-title {
  color: var(--black-color);
  font-family: var(--primary-font);
}
#secondary .woocommerce ul.product_list_widget li .product-title:hover,
#secondary .woocommerce ul.product_list_widget li .product-title:focus,
.footer-t .woocommerce ul.product_list_widget li .product-title:hover,
.footer-t .woocommerce ul.product_list_widget li .product-title:focus {
  color: var(--primary-color);
}
#secondary .woocommerce ul.product_list_widget li .amount,
.footer-t .woocommerce ul.product_list_widget li .amount {
  font-weight: 500;
}
#secondary .woocommerce ul.product_list_widget del,
.footer-t .woocommerce ul.product_list_widget del {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
#secondary .woocommerce ul.product_list_widget li ins,
#secondary .woocommerce ul.product_list_widget li ins .amount,
.footer-t .woocommerce ul.product_list_widget li ins,
.footer-t .woocommerce ul.product_list_widget li ins .amount {
  background: none;
  color: var(--black-color);
}
#secondary .woocommerce ul.product_list_widget li ins,
.footer-t .woocommerce ul.product_list_widget li ins {
  margin-left: 10px;
}
#secondary .woocommerce ul.product_list_widget li .star-rating,
.footer-t .woocommerce ul.product_list_widget li .star-rating {
  margin: 0 0 5px;
}
#secondary .woocommerce.widget_product_search .woocommerce-product-search,
.footer-t .woocommerce.widget_product_search .woocommerce-product-search {
  background: none;
  border-radius: 0;
  margin: 0 3px 0 0;
  width: 100%;
  padding: 0;
  border: 1px solid #e5e5e5;
}
#secondary .woocommerce.widget_product_search .woocommerce-product-search:after,
.footer-t .woocommerce.widget_product_search .woocommerce-product-search:after {
  content: "";
  display: block;
  clear: both;
}
#secondary .woocommerce.widget_product_search .woocommerce-product-search input[type=search],
.footer-t .woocommerce.widget_product_search .woocommerce-product-search input[type=search] {
  background: none;
  border: 0;
  border-radius: 0;
  float: left;
  margin: 0;
  padding: 10px 15px;
  font-size: 0.8888em;
  width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);
  height: 50px;
  font-weight: 400;
}
#secondary .woocommerce-product-search button[type=submit],
.footer-t .woocommerce-product-search button[type=submit] {
  width: 50px;
  border-radius: 0;
  padding: 0;
  height: 50px;
  background-color: var(--black-color);
  background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23fff" d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"></path></svg>');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: 20px 20px;
  background-size: 20px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-indent: 55px;
  white-space: nowrap;
  overflow: hidden;
}
#secondary .woocommerce-product-search button[type=submit]:hover,
.footer-t .woocommerce-product-search button[type=submit]:hover {
  background-color: var(--primary-color);
}
#secondary .woocommerce-cart .cart-collaterals .cross-sells .products,
.footer-t .woocommerce-cart .cart-collaterals .cross-sells .products {
  grid-template-columns: repeat(1, 1fr);
}
#secondary .woocommerce .cart-collaterals .cross-sells ul.products li,
#secondary .woocommerce-page .cart-collaterals .cross-sells ul.products li,
.footer-t .woocommerce .cart-collaterals .cross-sells ul.products li,
.footer-t .woocommerce-page .cart-collaterals .cross-sells ul.products li {
  width: 100%;
}
#secondary .woocommerce-page .site-main article,
.footer-t .woocommerce-page .site-main article {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  border-radius: 0;
}
#secondary #add_payment_method .checkout .col-2 h3#ship-to-different-address,
#secondary .woocommerce-cart .checkout .col-2 h3#ship-to-different-address,
#secondary .woocommerce-checkout .checkout .col-2 h3#ship-to-different-address,
.footer-t #add_payment_method .checkout .col-2 h3#ship-to-different-address,
.footer-t .woocommerce-cart .checkout .col-2 h3#ship-to-different-address,
.footer-t .woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
  font-size: 0.8888em;
  font-weight: 600;
}
#secondary #ship-to-different-address-checkbox,
.footer-t #ship-to-different-address-checkbox {
  margin-right: 5px;
}
#secondary .woocommerce-checkout-payment button.button,
.footer-t .woocommerce-checkout-payment button.button {
  margin-top: 30px;
}
#secondary .woocommerce.widget_product_categories .select2-container--default .select2-selection--single,
.footer-t .woocommerce.widget_product_categories .select2-container--default .select2-selection--single {
  height: 54px;
}
#secondary .woocommerce.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__rendered,
.footer-t .woocommerce.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 54px;
}
#secondary .woocommerce.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__arrow,
.footer-t .woocommerce.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 13px;
}
#secondary .woocommerce.widget_product_categories ul li.cat-parent,
.footer-t .woocommerce.widget_product_categories ul li.cat-parent {
  position: relative;
}
#secondary .woocommerce.widget_product_categories ul li.cat-parent .cat-toggle,
.footer-t .woocommerce.widget_product_categories ul li.cat-parent .cat-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  cursor: pointer;
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
#secondary .woocommerce.widget_product_categories ul li.cat-parent .cat-toggle:hover,
.footer-t .woocommerce.widget_product_categories ul li.cat-parent .cat-toggle:hover {
  color: var(--primary-color);
}
#secondary .woocommerce.widget_product_categories ul li.cat-parent .cat-toggle.active,
.footer-t .woocommerce.widget_product_categories ul li.cat-parent .cat-toggle.active {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#secondary .woocommerce.widget_product_categories ul li.cat-parent ul,
.footer-t .woocommerce.widget_product_categories ul li.cat-parent ul {
  display: none;
}
#secondary .woocommerce.widget_rating_filter ul li .star-rating,
.footer-t .woocommerce.widget_rating_filter ul li .star-rating {
  vertical-align: top;
  margin-top: 7px;
}
#secondary .woocommerce .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.footer-t .woocommerce .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 5px;
}
#secondary #secondary .woocommerce.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-dropdown ul li.select2-selection__choice,
#secondary .woocommerce.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-dropdown ul li.select2-selection__choice,
.footer-t #secondary .woocommerce.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-dropdown ul li.select2-selection__choice,
.footer-t .woocommerce.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-dropdown ul li.select2-selection__choice {
  margin: 5px;
  padding: 0 10px;
  border-bottom: 1px solid #aaa;
}
#secondary .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item,
.footer-t .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
  position: relative;
  padding-bottom: 10px;
}
#secondary .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item:last-child,
.footer-t .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item:last-child {
  padding-bottom: 0;
}
#secondary .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before,
.footer-t .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before {
  width: auto;
  height: auto;
  position: static;
  background: none;
}
#secondary .woocommerce.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-dropdown ul li.select2-search--inline,
.footer-t .woocommerce.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-dropdown ul li.select2-search--inline {
  border-bottom: none;
}
#secondary .woocommerce.woocommerce-widget-layered-nav ul li input[type=text],
.footer-t .woocommerce.woocommerce-widget-layered-nav ul li input[type=text] {
  width: 100% !important;
}
#secondary .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,
#secondary .woocommerce.widget_layered_nav_filters ul li a,
.footer-t .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,
.footer-t .woocommerce.widget_layered_nav_filters ul li a {
  position: relative;
  padding-left: 30px;
}
#secondary .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a::before,
#secondary .woocommerce.widget_layered_nav_filters ul li a:before,
.footer-t .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a::before,
.footer-t .woocommerce.widget_layered_nav_filters ul li a:before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 0;
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23fff" d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"></path></svg>');
  background-repeat: no-repeat;
  -webkit-background-size: 0px 0px;
  background-size: 0px;
  background-position: center;
  -webkit-transition: all ease 0.35s;
  -o-transition: all ease 0.35s;
  transition: all ease 0.35s;
}
#secondary .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:hover:before,
#secondary .woocommerce.widget_layered_nav_filters ul li a:hover:before,
.footer-t .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:hover:before,
.footer-t .woocommerce.widget_layered_nav_filters ul li a:hover:before {
  border-color: var(--primary-color);
}
#secondary .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a::before,
#secondary .woocommerce.widget_layered_nav_filters ul li.chosen a:before,
.footer-t .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a::before,
.footer-t .woocommerce.widget_layered_nav_filters ul li.chosen a:before {
  -webkit-background-size: 10px 10px;
  background-size: 10px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
#secondary .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item .count,
.footer-t .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item .count {
  display: inline-block;
  float: right;
  line-height: 1.3;
  border-radius: 0;
  color: #999596;
}
#secondary .woocommerce.widget_price_filter .ui-slider-horizontal,
.footer-t .woocommerce.widget_price_filter .ui-slider-horizontal {
  height: 5px;
  background: #eee;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  margin-bottom: 25px;
}
#secondary .woocommerce.widget_price_filter .ui-slider .ui-slider-handle,
.footer-t .woocommerce.widget_price_filter .ui-slider .ui-slider-handle {
  background: var(--white-color);
  width: 15px;
  height: 15px;
  top: -5px;
  border-radius: 100%;
  -webkit-box-shadow: 5px 0px 15px rgba(136, 206, 208, 0.3);
  box-shadow: 5px 0px 15px rgba(136, 206, 208, 0.3);
  border: 3px solid var(--primary-color);
}
#secondary .woocommerce.widget_price_filter .ui-slider .ui-slider-handle.ui-state-hover,
#secondary .woocommerce.widget_price_filter .ui-slider .ui-slider-handle.ui-state-focus,
#secondary .woocommerce.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active,
.footer-t .woocommerce.widget_price_filter .ui-slider .ui-slider-handle.ui-state-hover,
.footer-t .woocommerce.widget_price_filter .ui-slider .ui-slider-handle.ui-state-focus,
.footer-t .woocommerce.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
  width: 22px;
  height: 22px;
  top: -8px;
}
#secondary .woocommerce.widget_price_filter .ui-slider .ui-slider-range,
.footer-t .woocommerce.widget_price_filter .ui-slider .ui-slider-range {
  background: var(--primary-color);
}
#secondary .woocommerce.widget_price_filter .price_slider_amount,
.footer-t .woocommerce.widget_price_filter .price_slider_amount {
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#secondary .woocommerce.widget_price_filter .price_slider_amount .button,
.footer-t .woocommerce.widget_price_filter .price_slider_amount .button {
  font-size: 0.7778em;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 0;
  border: 2px solid var(--primary-color);
  text-transform: capitalize;
  padding: 10px 20px;
  -webkit-transition: linear 0.2s;
  -o-transition: linear 0.2s;
  transition: linear 0.2s;
  position: relative;
  min-height: auto;
  line-height: 1.3;
}

.last-widget-sticky .widget-area .widget:last-child {
  -webkit-transition: top ease 0.35s;
  -o-transition: top ease 0.35s;
  transition: top ease 0.35s;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}


/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}


/* image overlay
--------------------------------------------- */

/* scroll up
--------------------------------------------- */
.back-to-top {
  background: var(--black-color);
  border-radius: 100%;
  border: 0;
  position: fixed;
  bottom: 3%;
  right: 5px;
  padding: 0;
  width: 35px;
  height: 35px;
  min-height: auto;
  line-height: 1;
  color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  cursor: pointer;
  -webkit-transition: all 0.234s ease-in-out;
  -o-transition: all 0.234s ease-in-out;
  transition: all 0.234s ease-in-out;
}
.back-to-top svg {
  width: 15px;
  height: 15px;
  font-size: 15px;
  display: inline-block;
  stroke: var(--white-color);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.back-to-top:hover {
  background: var(--primary-color);
}
.back-to-top.active {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
@media screen and (min-width: 767px) {
  .back-to-top {
    width: 45px;
    height: 45px;
  }
  .back-to-top svg {
    width: 18px;
    height: 18px;
    font-size: 22px;
  }
}


/* scroll bar
--------------------------------------------- */
/*   ==================================================
              Scroll bar
    ================================================== */
/*   ==================================================
              Scroll bar
    ================================================== */

/* scroll bar
--------------------------------------------- */
/*   ==================================================
              BreadCrumbs
    ================================================== */
.breadcrumb-wrapper {
  padding-top: 20px;
}
.breadcrumb-wrapper > div {
  font-size: 0.7777777778em;
  padding: 5px 13px 5px 0;
}
.breadcrumb-wrapper > div a {
  text-decoration: none;
  letter-spacing: 0.36px;
  color: rgba(var(--font-color-rgb), 0.4);
}
.breadcrumb-wrapper > div a:hover {
  color: var(--primary-color);
}
.breadcrumb-wrapper > div > span:last-child {
  color: var(--font-color);
}
.breadcrumb-wrapper > div > span:last-child a {
  color: inherit;
  pointer-events: none;
}
.breadcrumb-wrapper > div > span:last-child a:hover {
  text-decoration: underline;
}
.breadcrumb-wrapper > div > span + span {
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
}
.breadcrumb-wrapper > div > span + span::before {
  content: "";
  width: 5px;
  height: 8.5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.971' height='8.528' viewBox='0 0 4.971 8.528'%3E%3Cpath id='Path_24885' data-name='Path 24885' d='M183.152,7972.6l3.557,3.557-3.557,3.558' transform='translate(-182.445 -7971.891)' fill='none' stroke='%237d6a91' stroke-linecap='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  position: absolute;
  top: 2px;
  left: -2.5px;
}

/*   ==================================================
              BreadCrumbs
    ================================================== */

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

.dropcap {
  font-size: 3.3333333333em;
  line-height: 0.95;
  float: left;
  margin-right: 10px;
  margin-top: 5px;
  font-family: var(--secondary-font);
}


/* Galleries
--------------------------------------------- */
/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
  height: 100%;
  margin: 0;
}
.gallery-item .gallery-icon.landscape {
  height: 100%;
}
.gallery-item a {
  display: block;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}



/*--------------------------------------------------------------
# layouts
--------------------------------------------------------------*/
/*==========================================
Footer
==========================================*/
.site-footer {
  background-color: rgba(var(--secondary-color-rgb), 0.8);
  overflow: hidden;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .site-footer {
    margin-top: 100px;
  }
}
.site-footer .footer-t {
  padding: 44px 0 60px;
}
@media screen and (min-width: 768px) {
  .site-footer .footer-t {
    padding: 80px 0 120px;
  }
}
.site-footer .footer-t .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 30px;
  margin: 0;
}
.site-footer .footer-t .grid .col ul {
  margin-left: 0;
}
.site-footer .footer-t .grid .col .widget-title {
  color: var(--footer-text-color);
}
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget) p,
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget) span,
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget) li,
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget) h1, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget) h2, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget) h3, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget) h4, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget) h5, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget) strong, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_author_bio .text-signature, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_author_bio .bttk-author-bio-holder .text-holder .title-holder {
  color: rgba(var(--footer-text-color-rgb), 0.9);
}
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li a, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_custom_categories .blossomthemes-custom-categories-wrap ul li a, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_posts_category_slider_widget .item .carousel-title .title a, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_popular_post ul:not(.style-three) li .entry-header .entry-title a, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_pro_recent_post ul:not(.style-three) li .entry-header .entry-title a {
  color: rgba(var(--footer-text-color-rgb), 0.9);
}
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_contact_social_links .bttk-contact-widget-wrap .contact-list li a:hover, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_custom_categories .blossomthemes-custom-categories-wrap ul li a:hover, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_posts_category_slider_widget .item .carousel-title .title a:hover, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_popular_post ul:not(.style-three) li .entry-header .entry-title a:hover, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_pro_recent_post ul:not(.style-three) li .entry-header .entry-title a:hover {
  color: var(--primary-color);
}
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_text .textwidget a, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_posts_category_slider_widget .carousel-title .cat-links a, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_popular_post ul:not(.style-three) li .entry-header .cat-links a, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_popular_post ul:not(.style-three) li .entry-header .entry-meta a, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_pro_recent_post ul:not(.style-three) li .entry-header .cat-links a, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_pro_recent_post ul:not(.style-three) li .entry-header .entry-meta a {
  color: rgba(var(--footer-text-color-rgb), 0.8);
}
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_text .textwidget a:hover, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_posts_category_slider_widget .carousel-title .cat-links a:hover, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_popular_post ul:not(.style-three) li .entry-header .cat-links a:hover, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_popular_post ul:not(.style-three) li .entry-header .entry-meta a:hover, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_pro_recent_post ul:not(.style-three) li .entry-header .cat-links a:hover, .site-footer .footer-t .grid .col .widget:not(.widget_bttk_custom_categories, .widget_bttk_image_text_widget, .widget_blossomthemes_email_newsletter_widget).widget_bttk_pro_recent_post ul:not(.style-three) li .entry-header .entry-meta a:hover {
  color: var(--primary-color);
}
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(var(--footer-text-color-rgb), 0.05);
}
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li a {
  color: rgba(var(--footer-text-color-rgb), 0.9);
}
.site-footer .footer-t .grid .col .widget:not(.widget_bttk_author_bio, .widget_bttk_popular_post, .widget_bttk_custom_categories, .widget_bttk_pro_recent_post, .widget_btif_instagram_widget, .widget_bttk_image_text_widget, .widget_bttk_description_widget, .widget_top_rated_products, .widget_products, .widget_bttk_social_links, .widget_bttk_contact_social_links, .widget_nav_menu) ul li a:hover {
  color: var(--primary-color);
}
.site-footer .footer-t .grid .col .widget_btif_instagram_widget .profile-link {
  border: 1px solid var(--footer-text-color);
  color: var(--footer-text-color);
}
.site-footer .footer-t .grid .col .widget_btif_instagram_widget .profile-link svg {
  fill: var(--footer-text-color);
}
.site-footer .footer-t .grid .col .widget_btif_instagram_widget .profile-link:hover {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}
.site-footer .footer-b .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 27px;
  border-top: 1px solid rgba(var(--footer-text-color-rgb), 0.06);
  padding: 20px 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .site-footer .footer-b .container {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.site-footer .footer-b .site-info {
  font-size: 0.777em;
  line-height: 2;
  color: rgba(var(--footer-text-color-rgb), 0.7);
}
.site-footer .footer-b .site-info .copyright,
.site-footer .footer-b .site-info .author-link,
.site-footer .footer-b .site-info .wp-link {
  color: rgba(var(--footer-text-color-rgb), 0.7);
  letter-spacing: 0.2px;
}
.site-footer .footer-b .site-info .copyright a,
.site-footer .footer-b .site-info .author-link a,
.site-footer .footer-b .site-info .wp-link a {
  text-decoration: none;
  color: rgba(var(--footer-text-color-rgb), 0.7);
  letter-spacing: 0.2px;
}
.site-footer .footer-b .site-info .copyright a:hover,
.site-footer .footer-b .site-info .author-link a:hover,
.site-footer .footer-b .site-info .wp-link a:hover {
  color: var(--primary-color);
}
.site-footer .footer-b .site-info .btn-link {
  font-size: inherit;
  color: var(--font-color);
  -webkit-text-decoration-color: var(--primary-color);
  -moz-text-decoration-color: var(--primary-color);
  text-decoration-color: var(--primary-color);
  letter-spacing: 1px;
}
.site-footer .footer-b .site-info .btn-link:hover {
  color: var(--primary-color);
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu ul {
  margin: 0;
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu ul li {
  width: 200px;
  padding: 16px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu > li {
  padding: 0 4px;
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu > li > a {
  color: rgba(var(--footer-text-color-rgb), 0.7);
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu > li > a:hover {
  color: var(--primary-color);
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu > li > .submenu-toggle-btn {
  color: rgba(var(--footer-text-color-rgb), 0.7);
  margin-left: 4px;
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu > li > .sub-menu {
  top: unset;
  bottom: 100%;
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu > li + li a {
  border-left: 1px solid rgba(var(--footer-text-color-rgb), 0.7);
  padding-left: 8px;
}
@media screen and (min-width: 768px) {
  .site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu li {
    padding: 0 4px;
  }
}
.site-footer .footer-b .footer-bottom-right .footer-navigation .nav-menu a {
  font-size: 0.777em;
  font-family: var(--primary-font);
}

.instagram-section + .site-footer {
  margin-top: 0;
}


body.blog .site-content,
body.home .site-content {
  padding: 60px 0 0;
}
@media screen and (min-width: 768px) {
  body.blog .site-content,
  body.home .site-content {
    padding: 120px 0 0;
  }
}

.leftsidebar .page-grid #secondary,
.rightsidebar .page-grid #secondary {
  margin-top: 75px;
}
@media screen and (min-width: 992px) {
  .leftsidebar .page-grid,
  .rightsidebar .page-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    grid-gap: 50px;
  }
  .leftsidebar .page-grid .content-area,
  .rightsidebar .page-grid .content-area {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
  }
  .leftsidebar .page-grid #secondary,
  .rightsidebar .page-grid #secondary {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25.77%;
    -ms-flex: 0 0 25.77%;
    flex: 0 0 25.77%;
    max-width: 25.77%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .leftsidebar .page-grid,
  .rightsidebar .page-grid {
    grid-gap: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .leftsidebar .widget-area,
  .rightsidebar .widget-area {
    min-width: 300px;
  }
}

@media screen and (min-width: 992px) {
  .leftsidebar .page-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 992px) {
  .full-width:not(.home, .blog):not(.single-post) .page-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.full-width:not(.home, .blog).centered .post-thumbnail {
  text-align: center;
}

/* Blog Layout
--------------------------------------------- */
.blog,
.home,
.archive,
.search-results {
  /* Grid Layout
  --------------------------------------------- */
}
.blog.list .content-area .site-main article .entry-meta .cat-links a,
.home.list .content-area .site-main article .entry-meta .cat-links a,
.archive.list .content-area .site-main article .entry-meta .cat-links a,
.search-results.list .content-area .site-main article .entry-meta .cat-links a {
  font-size: 0.667em;
}
.blog.list .content-area .site-main article .post-thumbnail,
.home.list .content-area .site-main article .post-thumbnail,
.archive.list .content-area .site-main article .post-thumbnail,
.search-results.list .content-area .site-main article .post-thumbnail {
  margin-bottom: 0;
}
.blog.list .content-area .site-main article h2,
.home.list .content-area .site-main article h2,
.archive.list .content-area .site-main article h2,
.search-results.list .content-area .site-main article h2 {
  font-size: 1.167em;
  line-height: 1.4285;
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .blog.list .content-area .site-main article h2,
  .home.list .content-area .site-main article h2,
  .archive.list .content-area .site-main article h2,
  .search-results.list .content-area .site-main article h2 {
    font-size: 1.333em;
    line-height: 1.375;
  }
}
.blog.grid-layout .page-grid .content-area .site-main,
.home.grid-layout .page-grid .content-area .site-main,
.archive.grid-layout .page-grid .content-area .site-main,
.search-results.grid-layout .page-grid .content-area .site-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .blog.grid-layout .page-grid .content-area .site-main,
  .home.grid-layout .page-grid .content-area .site-main,
  .archive.grid-layout .page-grid .content-area .site-main,
  .search-results.grid-layout .page-grid .content-area .site-main {
    margin: 0 -15px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.blog.grid-layout .page-grid .content-area .site-main article:first-of-type,
.home.grid-layout .page-grid .content-area .site-main article:first-of-type,
.archive.grid-layout .page-grid .content-area .site-main article:first-of-type,
.search-results.grid-layout .page-grid .content-area .site-main article:first-of-type {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .blog.grid-layout .page-grid .content-area .site-main article:first-of-type,
  .home.grid-layout .page-grid .content-area .site-main article:first-of-type,
  .archive.grid-layout .page-grid .content-area .site-main article:first-of-type,
  .search-results.grid-layout .page-grid .content-area .site-main article:first-of-type {
    border-bottom: 1px solid rgba(var(--font-color-rgb), 0.06);
    padding-bottom: 35px;
    margin: 0 15px 45px;
  }
}
.blog.grid-layout .page-grid .content-area .site-main article:first-of-type .post-thumbnail,
.home.grid-layout .page-grid .content-area .site-main article:first-of-type .post-thumbnail,
.archive.grid-layout .page-grid .content-area .site-main article:first-of-type .post-thumbnail,
.search-results.grid-layout .page-grid .content-area .site-main article:first-of-type .post-thumbnail {
  margin-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .blog.grid-layout .page-grid .content-area .site-main article:first-of-type .post-thumbnail,
  .home.grid-layout .page-grid .content-area .site-main article:first-of-type .post-thumbnail,
  .archive.grid-layout .page-grid .content-area .site-main article:first-of-type .post-thumbnail,
  .search-results.grid-layout .page-grid .content-area .site-main article:first-of-type .post-thumbnail {
    margin-bottom: 30px;
  }
}
.blog.grid-layout .page-grid .content-area .site-main article:first-of-type .entry-meta .cat-links a,
.home.grid-layout .page-grid .content-area .site-main article:first-of-type .entry-meta .cat-links a,
.archive.grid-layout .page-grid .content-area .site-main article:first-of-type .entry-meta .cat-links a,
.search-results.grid-layout .page-grid .content-area .site-main article:first-of-type .entry-meta .cat-links a {
  font-size: 0.667em;
}
@media screen and (min-width: 768px) {
  .blog.grid-layout .page-grid .content-area .site-main article:first-of-type .entry-meta .cat-links a,
  .home.grid-layout .page-grid .content-area .site-main article:first-of-type .entry-meta .cat-links a,
  .archive.grid-layout .page-grid .content-area .site-main article:first-of-type .entry-meta .cat-links a,
  .search-results.grid-layout .page-grid .content-area .site-main article:first-of-type .entry-meta .cat-links a {
    font-size: 0.722em;
  }
}
.blog.grid-layout .page-grid .content-area .site-main article:first-of-type h2,
.home.grid-layout .page-grid .content-area .site-main article:first-of-type h2,
.archive.grid-layout .page-grid .content-area .site-main article:first-of-type h2,
.search-results.grid-layout .page-grid .content-area .site-main article:first-of-type h2 {
  font-size: 1.667em;
  line-height: 1.26667;
}
@media screen and (min-width: 768px) {
  .blog.grid-layout .page-grid .content-area .site-main article:first-of-type h2,
  .home.grid-layout .page-grid .content-area .site-main article:first-of-type h2,
  .archive.grid-layout .page-grid .content-area .site-main article:first-of-type h2,
  .search-results.grid-layout .page-grid .content-area .site-main article:first-of-type h2 {
    font-size: 2.222em;
    line-height: 1.225;
  }
}
.blog.grid-layout .page-grid .content-area .site-main article:not(:first-of-type),
.home.grid-layout .page-grid .content-area .site-main article:not(:first-of-type),
.archive.grid-layout .page-grid .content-area .site-main article:not(:first-of-type),
.search-results.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) {
  margin: 0 0 30px 0;
}
@media screen and (min-width: 768px) {
  .blog.grid-layout .page-grid .content-area .site-main article:not(:first-of-type),
  .home.grid-layout .page-grid .content-area .site-main article:not(:first-of-type),
  .archive.grid-layout .page-grid .content-area .site-main article:not(:first-of-type),
  .search-results.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0 15px 60px;
  }
}
.blog.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) .post-thumbnail,
.home.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) .post-thumbnail,
.archive.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) .post-thumbnail,
.search-results.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) .post-thumbnail {
  margin-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .blog.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) .post-thumbnail,
  .home.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) .post-thumbnail,
  .archive.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) .post-thumbnail,
  .search-results.grid-layout .page-grid .content-area .site-main article:not(:first-of-type) .post-thumbnail {
    margin-bottom: 28px;
  }
}
.blog.full-width:not(.masonry-layout).centered .site-content .section-header,
.home.full-width:not(.masonry-layout).centered .site-content .section-header,
.archive.full-width:not(.masonry-layout).centered .site-content .section-header,
.search-results.full-width:not(.masonry-layout).centered .site-content .section-header {
  text-align: center;
}
.blog.full-width:not(.masonry-layout).centered .site-content .content-area .site-main,
.home.full-width:not(.masonry-layout).centered .site-content .content-area .site-main,
.archive.full-width:not(.masonry-layout).centered .site-content .content-area .site-main,
.search-results.full-width:not(.masonry-layout).centered .site-content .content-area .site-main {
  max-width: 755px;
  margin: 0 auto;
}

.popular-posts .section-header {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .popular-posts .section-header {
    text-align: center;
  }
}
.popular-posts .section-header .sub-title {
  font-size: 1em;
}

/* Single Post & page
    --------------------------------------------- */
.single .page-header .posted-on,
.single .site-main .posted-on {
  font-family: var(--secondary-font);
  text-transform: capitalize;
}
.single .advertisement-single {
  margin-top: 40px;
}
.single .advertisement-single + .site-main {
  margin-top: 30px;
}
.single .page-header {
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .single .page-header {
    margin-bottom: 47px;
  }
}
.single .page-header .entry-header {
  padding-top: 49px;
  margin-bottom: 50px;
}
@media screen and (min-width: 992px) {
  .single .page-header .entry-header {
    padding-top: 80px;
  }
}
.single .page-header .entry-header .entry-meta {
  margin-bottom: 13px;
}
.single .page-header .entry-header .entry-meta:last-child {
  margin-bottom: 0;
}
.single .page-header .entry-header .entry-title {
  font-size: 1.666em;
  line-height: 1.3;
}
@media screen and (min-width: 992px) {
  .single .page-header .entry-header .entry-title {
    font-size: 2.66em;
  }
}
.single .page-header .posted-on a {
  padding-left: 0;
}
.single .page-header .posted-on a::before {
  content: none;
}
@media screen and (min-width: 1200px) {
  .single.leftsidebar .site-main .container, .single.rightsidebar .site-main .container {
    max-width: 1170px;
  }
}
.single.leftsidebar .site-main .popular-posts,
.single.leftsidebar .site-main .related-posts,
.single.leftsidebar .site-main .additional-post, .single.rightsidebar .site-main .popular-posts,
.single.rightsidebar .site-main .related-posts,
.single.rightsidebar .site-main .additional-post {
  max-width: 100%;
}
.single.leftsidebar .site-main .post .entry-header, .single.rightsidebar .site-main .post .entry-header {
  text-align: start;
}
@media screen and (min-width: 1200px) {
  .single .site-content .site-main .container {
    max-width: 1000px;
  }
}
.single .site-content .site-main .content-wrap .entry-content {
  margin-top: 0;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header, .single .site-content .site-main .entry-header, .single .site-content .page-header .entry-header {
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .single .site-content .content-header-wrap .entry-header-wrapper .entry-header, .single .site-content .site-main .entry-header, .single .site-content .page-header .entry-header {
    text-align: center;
  }
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title, .single .site-content .site-main .entry-header .entry-title, .single .site-content .page-header .entry-header .entry-title {
  font-size: 1.666em;
  margin-bottom: 12px;
  line-height: 1.3;
  margin-top: 15px;
}
@media screen and (min-width: 992px) {
  .single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title, .single .site-content .site-main .entry-header .entry-title, .single .site-content .page-header .entry-header .entry-title {
    font-size: 2.666em;
  }
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta, .single .site-content .site-main .entry-header .entry-title + .entry-meta, .single .site-content .page-header .entry-header .entry-title + .entry-meta {
  display: inline-block;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta .posted-on, .single .site-content .site-main .entry-header .entry-title + .entry-meta .posted-on, .single .site-content .page-header .entry-header .entry-title + .entry-meta .posted-on {
  margin-left: 0;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta .posted-on a, .single .site-content .site-main .entry-header .entry-title + .entry-meta .posted-on a, .single .site-content .page-header .entry-header .entry-title + .entry-meta .posted-on a {
  padding-left: 0;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta .posted-on a::before, .single .site-content .site-main .entry-header .entry-title + .entry-meta .posted-on a::before, .single .site-content .page-header .entry-header .entry-title + .entry-meta .posted-on a::before {
  content: none;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta .single .site-main .post .entry-header .entry-title + .entry-meta .byline, .single .site-content .site-main .entry-header .entry-title + .entry-meta .single .site-main .post .entry-header .entry-title + .entry-meta .byline, .single .site-content .page-header .entry-header .entry-title + .entry-meta .single .site-main .post .entry-header .entry-title + .entry-meta .byline {
  display: inline-block;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta .byline, .single .site-content .site-main .entry-header .entry-title + .entry-meta .byline, .single .site-content .page-header .entry-header .entry-title + .entry-meta .byline {
  display: inline-block;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta .byline .fn, .single .site-content .site-main .entry-header .entry-title + .entry-meta .byline .fn, .single .site-content .page-header .entry-header .entry-title + .entry-meta .byline .fn {
  font-size: 0.7777em;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta .byline + .posted-on, .single .site-content .site-main .entry-header .entry-title + .entry-meta .byline + .posted-on, .single .site-content .page-header .entry-header .entry-title + .entry-meta .byline + .posted-on {
  margin-left: 8px;
  padding-left: 8px;
  position: relative;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta .byline + .posted-on::before, .single .site-content .site-main .entry-header .entry-title + .entry-meta .byline + .posted-on::before, .single .site-content .page-header .entry-header .entry-title + .entry-meta .byline + .posted-on::before {
  content: "";
  position: absolute;
  top: 6.5px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(var(--font-color-rgb), 0.3);
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .entry-title + .entry-meta .byline + .posted-on:hover::before, .single .site-content .site-main .entry-header .entry-title + .entry-meta .byline + .posted-on:hover::before, .single .site-content .page-header .entry-header .entry-title + .entry-meta .byline + .posted-on:hover::before {
  background-color: var(--primary-color);
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .cat-links a, .single .site-content .site-main .entry-header .cat-links a, .single .site-content .page-header .entry-header .cat-links a {
  color: var(--primary-color);
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .cat-links a::before, .single .site-content .site-main .entry-header .cat-links a::before, .single .site-content .page-header .entry-header .cat-links a::before {
  top: 8.5px;
}
.single .site-content .content-header-wrap .entry-header-wrapper .entry-header .cat-links a:hover, .single .site-content .site-main .entry-header .cat-links a:hover, .single .site-content .page-header .entry-header .cat-links a:hover {
  color: var(--secondary-color);
}
.single .site-content .content-header-wrap .entry-header-wrapper .post-thumbnail, .single .site-content .site-main .post-thumbnail, .single .site-content .page-header .post-thumbnail {
  margin: 35px 0;
  text-align: center;
}
.single.style-one .page-header {
  margin-bottom: 0;
}
.single.style-one .page-header .breadcrumb-wrapper {
  position: relative;
}
.single.style-one .page-grid {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .single.style-one .page-grid {
    margin-top: 77px;
  }
}
@media screen and (min-width: 768px) {
  .single.style-one .page-grid .post.has-meta {
    padding-left: 0;
  }
}
.single.style-one .page-grid .post.has-meta .outer-content-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .single.style-one .page-grid .post.has-meta .outer-content-wrap {
    padding-left: 125px;
  }
}
@media screen and (min-width: 1400px) {
  .single.style-one .page-grid .post.has-meta .outer-content-wrap {
    padding: 0;
  }
}
.single.style-one .page-grid .site-main .post .entry-header .entry-title {
  line-height: 1.2;
  margin-top: 13px;
}
.single.style-one.single .site-content .site-main .content-wrap .advertisement-single + .entry-content {
  margin-top: 30px;
}
.single.full-width .page-header {
  position: relative;
}
.single.full-width .page-header .post-thumbnail {
  text-align: center;
}
.single.full-width .page-grid .content-area .newsletter {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.single.full-width .page-grid .content-area .content-wrap {
  max-width: 100%;
  margin-left: 0;
}
.single.full-width.style-two .post .entry-header {
  text-align: left;
}
.single.full-width.centered .page-header .entry-header {
  text-align: center;
}
.single.full-width.centered .page-header .entry-header .entry-title {
  margin-top: 0;
  margin-bottom: 21px;
}
.single.full-width.centered .page-grid .content-area article > .content-wrap,
.single.full-width.centered .page-grid .content-area .newsletter {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.single.full-width.centered.style-two .post .entry-header {
  text-align: center;
}
.single.full-width.centered.style-five .site-main .post .entry-header {
  max-width: 700px;
  margin: 0 auto 10px;
  text-align: left;
  width: 100%;
}
.single.full-width.centered.style-five .site-main .post .post-thumbnail {
  text-align: left;
  max-width: 700px;
  margin: 50px auto;
}
.single .single-button-wrapper {
  text-align: center;
  margin-top: 60px;
}
.single .single-button-wrapper .wc-btn {
  outline: none;
}
.single .popular-posts,
.single .related-posts,
.single .additional-post {
  margin: 50px auto 0;
  padding-top: 50px;
}
.single .page-grid .content-area .newsletter {
  margin-top: 66px;
}
.single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper {
  padding: 40px;
}
@media (min-width: 768px) {
  .single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper {
    padding: 70px 60px;
  }
}
.single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper .container {
  padding: 0;
}
.single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper .container .text-holder {
  text-align: center;
}
.single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper .container .text-holder span {
  font-size: 1em;
}
.single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper .container form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 17px;
}
.single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper .container form > label {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 10px 0;
}
.single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap .check-mark {
  margin-top: 5px;
}
.single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap .text {
  font-size: 0.777777778em;
  line-height: 1.8em;
}
.single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper .container form > label .subscribe-inner-wrap input[type=checkbox]:checked + .check-mark {
  background-color: #fff;
}
@media (min-width: 768px) {
  .single .page-grid .content-area .newsletter .blossomthemes-email-newsletter-wrapper .container form input:not(input[type=checkbox]) {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 370px;
  }
}
.single .author-signature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-row-gap: 1em;
  grid-column-gap: 2em;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-top: 45px;
}
.single .author-signature .social-networks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: 0;
  opacity: 0.8;
}
.single .author-signature .social-networks li {
  margin: 5px;
  padding-left: 0;
}
.single .author-signature .social-networks li::before {
  content: none;
}
.single .author-signature .social-networks li a {
  display: inline-block;
  line-height: 1.3;
  padding: 5px 7px;
  text-decoration: none;
  color: var(--font-color);
  font-size: 16px;
}
.single .author-signature .social-networks li a:hover {
  color: var(--primary-color);
}
.single .author-signature.center {
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.single .author-signature.right {
  text-align: right;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.site-main .entry-content .highlight {
  background-color: rgba(var(--primary-color-rgb), 0.2);
}
.site-main .entry-content p + ul, .site-main .entry-content p + ol {
  margin-top: -15px;
}

.page .site-main .entry-footer,
.single .site-main .entry-footer {
  margin-top: 50px;
}
.page .site-main .entry-footer .tags > span,
.single .site-main .entry-footer .tags > span {
  font-size: 0.777em;
}
.page .site-main .entry-footer .tags a,
.single .site-main .entry-footer .tags a {
  color: var(--primary-color);
  font-size: 0.722em;
  display: inline-block;
  margin: 0 5px;
  font-family: var(--secondary-font);
}
.page .author-section,
.single .author-section {
  max-width: 755px;
  margin: 0 auto;
  margin-top: 40px;
}
.page .author-section .inner-author-section,
.single .author-section .inner-author-section {
  background-color: rgba(var(--primary-color-rgb), 0.03);
  padding: 45px 40px;
}
.page .author-section .result-count,
.single .author-section .result-count {
  margin-top: 50px;
  display: inline-block;
}
.page .author-section .author-img-title-wrap,
.single .author-section .author-img-title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 20px;
  text-align: left;
  margin-bottom: 18px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (min-width: 576px) {
  .page .author-section .author-img-title-wrap,
  .single .author-section .author-img-title-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 35px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.page .author-section .author-img-title-wrap .author-img,
.single .author-section .author-img-title-wrap .author-img {
  margin: 0;
}
.page .author-section .author-img-title-wrap .author-img img,
.single .author-section .author-img-title-wrap .author-img img {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100px;
}
.page .author-section .author-img-title-wrap .author-title-wrap .title,
.single .author-section .author-img-title-wrap .author-title-wrap .title {
  font-size: 0.8888888889em;
  letter-spacing: 0.2px;
  font-family: var(--primary-font);
  margin-bottom: 8px;
  line-height: 1;
}
.page .author-section .author-img-title-wrap .author-title-wrap .byline .fn,
.page .author-section .author-img-title-wrap .author-title-wrap .author-name,
.single .author-section .author-img-title-wrap .author-title-wrap .byline .fn,
.single .author-section .author-img-title-wrap .author-title-wrap .author-name {
  font-size: 1.3333333333em;
  line-height: 1.75;
  font-family: var(--secondary-font);
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.page .author-section .author-img-title-wrap .author-title-wrap .social-networks,
.single .author-section .author-img-title-wrap .author-title-wrap .social-networks {
  margin-top: 15px;
}
.page .author-section .author-content p:last-child,
.single .author-section .author-content p:last-child {
  margin-bottom: 0;
}

.popular-posts,
.related-posts,
.additional-post {
  max-width: 755px;
  border-top: 1px solid rgba(var(--font-color-rgb), 0.05);
}
.popular-posts .title,
.related-posts .title,
.additional-post .title {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 1.66em;
}
@media screen and (min-width: 768px) {
  .popular-posts .title,
  .related-posts .title,
  .additional-post .title {
    font-size: 1.94em;
    margin-bottom: 45px;
  }
}
.popular-posts .article-wrap,
.related-posts .article-wrap,
.additional-post .article-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-row-gap: 45px;
}
@media screen and (min-width: 576px) {
  .popular-posts .article-wrap,
  .related-posts .article-wrap,
  .additional-post .article-wrap {
    margin: 0 -15px;
  }
}
.popular-posts .article-wrap .post,
.related-posts .article-wrap .post,
.additional-post .article-wrap .post {
  margin: 0;
}
.popular-posts .article-wrap .post .post-thumbnail,
.related-posts .article-wrap .post .post-thumbnail,
.additional-post .article-wrap .post .post-thumbnail {
  display: block;
  margin-bottom: 24px;
}
.popular-posts .article-wrap .post .entry-header,
.related-posts .article-wrap .post .entry-header,
.additional-post .article-wrap .post .entry-header {
  text-align: left;
}
.popular-posts .article-wrap .post .entry-header .cat-links a::before,
.related-posts .article-wrap .post .entry-header .cat-links a::before,
.additional-post .article-wrap .post .entry-header .cat-links a::before {
  top: 8px;
}
.popular-posts .article-wrap .post .entry-header .entry-title,
.related-posts .article-wrap .post .entry-header .entry-title,
.additional-post .article-wrap .post .entry-header .entry-title {
  font-size: 1.166em;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: normal;
}
.popular-posts .article-wrap .post .entry-header .entry-title a,
.related-posts .article-wrap .post .entry-header .entry-title a,
.additional-post .article-wrap .post .entry-header .entry-title a {
  color: rgba(var(--font-color-rgb), 0.9);
  -webkit-transition: all 0.235s ease-in-out;
  -o-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
}
.popular-posts .article-wrap .post .entry-header .entry-title a:hover,
.related-posts .article-wrap .post .entry-header .entry-title a:hover,
.additional-post .article-wrap .post .entry-header .entry-title a:hover {
  color: var(--primary-color);
}
.popular-posts .article-wrap .post .entry-header .entry-footer .byline + .posted-on,
.related-posts .article-wrap .post .entry-header .entry-footer .byline + .posted-on,
.additional-post .article-wrap .post .entry-header .entry-footer .byline + .posted-on {
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .popular-posts .article-wrap,
  .related-posts .article-wrap,
  .additional-post .article-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 -22.5px;
  }
  .popular-posts .article-wrap .post,
  .related-posts .article-wrap .post,
  .additional-post .article-wrap .post {
    padding: 0 22.5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.popular-posts .section-button-wrapper,
.related-posts .section-button-wrapper,
.additional-post .section-button-wrapper {
  margin-top: 80px;
  text-align: center;
}

.error404 .page-grid .additional-post {
  max-width: 100%;
  border-top: 0;
}
@media screen and (min-width: 992px) {
  .error404 .page-grid .additional-post .article-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 -22.5px;
  }
  .error404 .page-grid .additional-post .article-wrap .post {
    padding: 0 22.5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33%;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.page:not(.home).full-width:not(.woocommerce-account, .woocommerce-checkout, .woocommerce-cart, .error404).centered .content-area .site-main article.page {
  max-width: 755px;
  margin-left: auto;
  margin-right: auto;
}
.page:not(.home) .page-header {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 50px;
}
@media screen and (min-width: 992px) {
  .page:not(.home) .page-header {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .single-post.leftsidebar:not(.error404) .popular-posts .article-wrap .post,
  .single-post.leftsidebar:not(.error404) .related-posts .article-wrap .post,
  .single-post.leftsidebar:not(.error404) .additional-post .article-wrap .post, .single-post.rightsidebar:not(.error404) .popular-posts .article-wrap .post,
  .single-post.rightsidebar:not(.error404) .related-posts .article-wrap .post,
  .single-post.rightsidebar:not(.error404) .additional-post .article-wrap .post {
    padding: 0 22.5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.single-post.leftsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .container, .single-post.rightsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .container, .single-post.full-width .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .single-post.leftsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper, .single-post.rightsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper, .single-post.full-width .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper {
    padding: 60px 40px;
  }
  .single-post.leftsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .text-holder, .single-post.rightsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .text-holder, .single-post.full-width .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .text-holder {
    text-align: center;
  }
  .single-post.leftsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .text-holder h3, .single-post.rightsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .text-holder h3, .single-post.full-width .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .text-holder h3 {
    display: inline-block;
  }
  .single-post.leftsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper form > label, .single-post.rightsidebar .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper form > label, .single-post.full-width .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper form > label {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.single-post.full-width .content-area .newsletter-section {
  max-width: 785px;
  margin-left: auto;
  margin-right: auto;
}
.single-post .content-area .newsletter-section {
  margin-top: 50px;
}
.single-post .content-area .newsletter-section .blossomthemes-email-newsletter-wrapper .container form input[name=subscribe-fname] {
  margin-right: 0;
}


/* share article
--------------------------------------------- */
.single .post.has-meta {
  position: relative;
}
.single .post.has-meta .article-meta .article-meta-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .single .post.has-meta .article-meta .article-meta-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 55px;
  }
}
.single .post.has-meta .article-meta .author-img {
  margin: 0;
}
.single .post.has-meta .article-meta .author-img img {
  width: 57px;
  height: 57px;
  border-radius: 50%;
}
.single .post.has-meta .article-meta .byline {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.single .post.has-meta .article-meta .byline a {
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
  font-size: 1em;
  font-family: var(--secondary-font);
  color: rgba(var(--font-color-rgb), 0.9);
}
.single .post.has-meta .article-meta .byline a:hover {
  color: var(--primary-color);
}
.single .post.has-meta .article-meta .byline .fn {
  font-family: var(--secondary-font);
  font-size: 0.888em;
  color: var(--font-color);
  font-weight: normal;
  line-height: 1.75;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.single .post.has-meta .article-meta .byline .fn:hover {
  color: var(--primary-color);
}
.single .post.has-meta .article-meta .post-share {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 40px;
}
.single .post.has-meta .article-meta .post-share .social-networks {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 0;
  margin-top: 15px;
}
.single .post.has-meta .article-meta .post-share .social-networks li {
  width: 44px;
  border: 1px solid rgba(var(--font-color-rgb), 0.05);
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
}
.single .post.has-meta .article-meta .post-share .social-networks li:last-child {
  margin-bottom: 0;
}
.single .post.has-meta .article-meta .post-share .social-networks li a {
  line-height: 1;
}
.single .post.has-meta .article-meta .post-share .post-share-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.single .post.has-meta .article-meta .post-share .post-share-title > svg {
  margin-bottom: 10px;
}
.single .post.has-meta .article-meta .post-share .post-share-title span {
  font-size: 0.8888888889em;
  font-family: var(--secondary-font);
  color: rgba(var(--font-color-rgb), 0.9);
  line-height: 1;
  display: block;
}
.single .post.has-meta .article-meta .article-views {
  padding-top: 12px;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  font-size: 0.777em;
}
.single .post.has-meta .article-meta .article-views svg {
  fill: var(--font-color);
  margin-right: 6px;
}
.single .post.has-meta .article-meta .article-views:hover {
  color: var(--primary-color);
}
.single .post.has-meta .article-meta .article-views:hover svg {
  fill: var(--primary-color);
}
.single .post.has-meta .article-meta .comments {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.single .post.has-meta .article-meta .comments svg {
  margin-bottom: 5px;
}
.single .post.has-meta .article-meta .comments svg path {
  fill: var(--font-color);
}
.single .post.has-meta .article-meta .comments a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
  text-decoration: none;
  font-size: 0.8888888889em;
  font-family: var(--secondary-font);
  line-height: 1.5;
  color: rgba(var(--font-color-rgb), 0.9);
}
.single .post.has-meta .article-meta .comments a:hover {
  color: var(--primary-color);
}
@media screen and (min-width: 768px) {
  .single .post.has-meta {
    padding-left: 125px;
  }
  .single .post.has-meta .article-meta {
    width: 64px;
    text-align: center;
    position: absolute;
    height: 100%;
    left: 0px;
    top: 0;
  }
  .single .post.has-meta .article-meta .article-meta-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .single .post.has-meta .article-meta .byline {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 14px;
    display: inline-block;
  }
  .single .post.has-meta .article-meta .byline a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .single .post.has-meta .article-meta .post-share {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .single .post.has-meta .article-meta .post-share .social-networks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .single .post.has-meta .article-meta .comments {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .single .post.has-meta .article-meta .comments a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (min-width: 1400px) {
  .single .post.has-meta {
    padding-left: 0;
  }
  .single .post.has-meta .article-meta {
    left: -110px;
  }
}
@media (min-width: 1550px) {
  .single .post.has-meta .article-meta {
    left: -178px;
  }
}
@media screen and (max-width: 767px) {
  .single .post.has-meta .article-meta {
    position: fixed;
    bottom: 0;
    top: unset !important;
    left: 0;
    z-index: 8888;
    width: 100%;
    padding: 0;
    background: var(--white-color);
    -webkit-box-shadow: -4px -4px 10px rgba(var(--black-color-rgb), 0.17);
    box-shadow: -4px -4px 10px rgba(var(--black-color-rgb), 0.17);
  }
  .single .post.has-meta .article-meta .article-meta-inner {
    align-self: center;
    position: unset;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 10px 15px;
    max-width: 500px;
    margin: 0 auto;
  }
  .single .post.has-meta .article-meta .article-meta-inner .author-img {
    display: none;
  }
  .single .post.has-meta .article-meta .article-meta-inner .byline {
    margin-bottom: 0;
    font-weight: 400;
    margin-top: -18px;
  }
  .single .post.has-meta .article-meta .article-meta-inner .post-share {
    position: relative;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -webkit-flex-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .single .post.has-meta .article-meta .article-meta-inner .post-share .post-share-title svg path {
    fill: var(--font-color);
  }
  .single .post.has-meta .article-meta .article-meta-inner .post-share .post-share-title:hover svg path, .single .post.has-meta .article-meta .article-meta-inner .post-share .post-share-title:focus svg path {
    fill: var(--primary-color);
  }
  .single .post.has-meta .article-meta .article-meta-inner .post-share .social-networks {
    display: none;
    position: absolute;
    bottom: 105%;
    background: #fff;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 20px 10px 5px 10px;
    border-radius: 50px 50px 0 0;
  }
  .single .post.has-meta .article-meta .article-meta-inner .comments {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 0;
    text-align: center;
    color: rgba(var(--primary-color-rgb), 0.6);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .single .post.has-meta .article-meta .article-meta-inner .comments svg {
    height: 24px;
    width: 1em;
  }
  .single .post.has-meta .article-meta .article-meta-inner .comments a {
    display: block;
    line-height: 1.2;
  }
  .single .post.has-meta .article-meta .article-meta-inner .comments:hover, .single .post.has-meta .article-meta .article-meta-inner .comments:focus {
    color: rgba(var(--primary-color-rgb), 1);
  }
  .single .post.has-meta .article-meta .article-meta-inner .article-views {
    padding-top: 0;
    text-align: center;
  }
  .single .post.has-meta .article-meta .article-meta-inner .article-views svg {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 6px;
  }
}
.single.leftsidebar .site-main .post.has-meta {
  position: relative;
}
@media screen and (min-width: 992px) {
  .single.leftsidebar .site-main .post.has-meta {
    padding-left: 0;
    padding-right: 100px;
  }
  .single.leftsidebar .site-main .post.has-meta .article-meta {
    right: 0;
    left: auto;
  }
}
@media screen and (min-width: 1400px) {
  .single.leftsidebar .site-main .post.has-meta {
    padding-right: 0;
  }
  .single.leftsidebar .site-main .post.has-meta .article-meta {
    left: auto;
    right: -110px;
  }
}
@media (min-width: 1550px) {
  .single.leftsidebar .site-main .post.has-meta .article-meta {
    left: auto;
    right: -178px;
  }
}
@media (min-width: 1550px) {
  .single.full-width:not(.style-one).centered .post.has-meta .article-meta {
    left: -80px;
  }
}
.single .fn {
  font-family: var(--secondary-font);
  font-size: 0.888em;
  color: var(--font-color);
  font-weight: normal;
  text-transform: capitalize;
  line-height: 1.75;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.single .fn:hover {
  color: var(--primary-color);
}
.single .entry-meta .byline a {
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 10px;
  font-size: 1em;
  font-family: var(--secondary-font);
  color: rgba(var(--font-color-rgb), 0.9);
}
.single .entry-meta .byline a:hover {
  color: var(--primary-color);
}


/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}


/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes slideDown {
  from {
    opacity: 0;
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes likeAnimate {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  90% {
    display: none;
  }
  100% {
    display: none;
  }
}
@-o-keyframes likeAnimate {
  0% {
    -o-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -o-transform: scale(1);
    transform: scale(1);
  }
  90% {
    display: none;
  }
  100% {
    display: none;
  }
}
@keyframes likeAnimate {
  0% {
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  10% {
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  90% {
    display: none;
  }
  100% {
    display: none;
  }
}
@-webkit-keyframes loveAnimate {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-o-keyframes loveAnimate {
  0% {
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes loveAnimate {
  0% {
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* -------------accessibility------------ */
.keyboard-nav-on .site input:active, .keyboard-nav-on .site input:focus, .keyboard-nav-on .site input:hover, .keyboard-nav-on .site a:active, .keyboard-nav-on .site a:focus, .keyboard-nav-on .site a:hover, .keyboard-nav-on .site button:active, .keyboard-nav-on .site button:focus, .keyboard-nav-on .site button:hover, .keyboard-nav-on .site textarea:active, .keyboard-nav-on .site textarea:focus, .keyboard-nav-on .site textarea:hover, .keyboard-nav-on .site select:active, .keyboard-nav-on .site select:focus, .keyboard-nav-on .site select:hover {
  outline: #000 dashed 3px !important;
}

/* ---------------------------------------------------- */

.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

@media screen and (min-width: 64em) {
  .entry-content blockquote.alignleft, .entry-content blockquote.alignright {
    width: 52%;
  }
}
@media screen and (max-width: 64em) {
  .entry-content blockquote.alignleft, .entry-content blockquote.alignright {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.wp-caption {
  margin: 50px 0;
}
.wp-caption figcaption {
  color: rgba(var(--font-color-rgb), 0.5);
  font-size: 0.833em;
}


ul.social-list, ul.author-socicons, .social-networks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.social-list a, ul.author-socicons a, .social-networks a {
  color: rgba(var(--font-color-rgb), 0.7);
  display: block;
}
ul.social-list a:hover, ul.author-socicons a:hover, .social-networks a:hover {
  color: var(--primary-color);
}


* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.skip-link,
.skip-link:hover,
.skip-link:visited {
  position: absolute;
  top: -999px;
  left: 20px;
  background: #f7f7f7;
  border: 1px solid rgba(var(--black-color-rgb), 0.1);
  font-size: 0.8888em;
  font-weight: 600;
  padding: 10px 20px;
  color: var(--black-color);
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 20px rgba(var(--black-color-rgb), 0.1);
  box-shadow: 0 2px 20px rgba(var(--black-color-rgb), 0.1);
  z-index: 999;
  text-decoration: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

label {
  font-size: 0.833em;
  line-height: 1.3;
}

.owl-carousel .owl-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 15px;
}
.owl-carousel .owl-nav button {
  background-repeat: no-repeat;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--white-color);
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-background-size: 11.41px 14.81px;
  background-size: 11.41px 14.81px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
@media screen and (min-width: 768px) {
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
    -webkit-background-size: 13.41px 18.05px;
    background-size: 13.41px 18.05px;
  }
}
.owl-carousel .owl-nav button.owl-next.disabled, .owl-carousel .owl-nav button.owl-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
  display: none;
}
.owl-carousel .owl-nav button.owl-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.096' height='16.218' viewBox='0 0 10.096 16.218'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M8.892,0,0,7.406l8.889,7.4' transform='translate(0.5 0.704)' fill='none' stroke='%23a60505' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
}
.owl-carousel .owl-nav button.owl-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.096' height='16.218' viewBox='0 0 10.096 16.218'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M8.892,0,0,7.406l8.889,7.4' transform='translate(0.5 0.704)' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
}
.owl-carousel .owl-nav button.owl-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.096' height='16.218' viewBox='0 0 10.096 16.218'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M0,0,8.892,7.406,0,14.809' transform='translate(0.704 0.704)' fill='none' stroke='%23a60505' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E ");
}
.owl-carousel .owl-nav button.owl-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.096' height='16.218' viewBox='0 0 10.096 16.218'%3E%3Cpath id='Path_26478' data-name='Path 26478' d='M0,0,8.892,7.406,0,14.809' transform='translate(0.704 0.704)' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E ");
}
.owl-carousel .owl-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 15px;
}
.owl-carousel .owl-dots .owl-dot {
  display: block;
  width: 11px;
  height: 11px;
  background: var(--primary-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0.1;
}
.owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot.active {
  opacity: 1;
}

.section-subtitle {
  max-width: 100%;
  display: inline-block;
  font-size: 3.3333333333em;
  line-height: 1;
  font-family: var(--signature-font-one);
  -webkit-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  -o-transform: rotate(-8deg);
  transform: rotate(-8deg);
  margin-bottom: 45px;
}

.page-title {
  font-size: 2.5em;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: normal;
  position: relative;
  display: inline-block;
}

.section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .section {
    margin-top: 100px;
  }
}
.section .section-header {
  margin-bottom: 30px;
  text-align: center;
}

.section-title {
  font-family: var(--secondary-font);
  font-size: 1.3333em;
  line-height: 1;
  padding: 23px 0;
  font-weight: 500;
  border-top: 1px solid rgba(var(--font-color-rgb), 0.06);
  border-bottom: 1px solid rgba(var(--font-color-rgb), 0.06);
  margin-bottom: 0;
}

.section-desc {
  max-width: 555px;
  font-size: 1.2222222222em;
  line-height: 1.8;
}
.section-desc p {
  margin-bottom: 0;
}

section .widget {
  margin-bottom: 0;
}




/*# sourceMappingURL=style.css.map */
/* =Tiled Gallery Default Styles
-------------------------------------------------------------- */

.tiled-gallery {
	clear: both;
	margin: 0 0 20px;
	overflow: hidden;
}

.tiled-gallery img {
	margin: 2px !important; /* Ensure that this value isn't overridden by themes that give content images blanket margins */
}

.tiled-gallery .gallery-group {
	float: left;
	position: relative;
}

.tiled-gallery .tiled-gallery-item {
	float: left;
	margin: 0;
	position: relative;
	width: inherit; /* prevents ie8 bug with inline width styles */
}

.tiled-gallery .gallery-row {
	overflow: hidden;
}

.tiled-gallery .tiled-gallery-item a { /* Needs to reset some properties for theme compatibility */
	background: transparent;
	border: none;
	color: inherit;
	margin: 0;
	padding: 0;
	text-decoration: none;
	width: auto;
}

.tiled-gallery .tiled-gallery-item img,
.tiled-gallery .tiled-gallery-item img:hover { /* Needs to reset some properties for theme compatibility */
	background: none;
	border: none;
	box-shadow: none;
	max-width: 100%;
	padding: 0;
	vertical-align: middle;
}

.tiled-gallery-caption { /* Captions */
	background: #f0f0f1;
	background: rgba(255, 255, 255, 0.8);
	color: #333;
	font-size: 13px;
	font-weight: 400;
	overflow: hidden;
	padding: 10px 0;
	position: absolute;
	bottom: 0;
	text-indent: 10px;
	text-overflow: ellipsis;
	width: 100%;
	white-space: nowrap;
}

.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption { /* Smaller captions */
	font-size: 11px;
}

/* Hide galleries in widgets until they've been resized to fit.
   Gallery widgets are almost guaranteed to need resizing, and
   the jump is a little more obvious than galleries in content. */
.widget-gallery .tiled-gallery-unresized {
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

/* =Greyscale
-------------------------------------------------------------- */

.tiled-gallery .tiled-gallery-item img.grayscale {
	-webkit-filter: grayscale(1);
	-ms-filter: grayscale(1);
	-o-filter: grayscale(1);
	filter: grayscale(1);
}

.tiled-gallery .tiled-gallery-item:hover img.grayscale {
	-webkit-filter: none;
	-ms-filter: none;
	-o-filter: none;
	filter: none;
}


/* =Circles Layout
-------------------------------------------------------------- */

.tiled-gallery.type-circle .tiled-gallery-item img {
	border-radius: 50% !important; /* Ensure that circles are displayed in themes that add border-radius to all images as a default */
	object-fit: cover;
}

.tiled-gallery.type-circle .tiled-gallery-caption {
	display: none;
}


/* =Square Layout
-------------------------------------------------------------- */
.tiled-gallery.type-square .tiled-gallery-item img {
	object-fit: cover;
}
/**
 * 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;
	}
}
#subscribe-email input{width:95%}.comment-subscription-form{margin-bottom:1em}.comment-subscription-form .subscribe-label{display:inline!important}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}/**
 * Sharedaddy Base Styles
 *
 * Contains styles for modules, containers, buttons
 */


/* 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;
}

body.highlander-light h3.sd-title::before {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}

body.highlander-dark h3.sd-title::before {
	border-top: 1px solid rgba(255, 255, 255, 0.4);
}


/* Sharing services list */
.sd-sharing {
	margin-bottom: 1em;
}

.sd-content ul {
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
}

.sd-content ul li {
	display: inline-block;
	margin: 0 8px 12px 0;
	padding: 0;
}

.sd-content ul li.share-deprecated {
	opacity: 0.5;
}

.sd-content ul li.share-deprecated a span {
	text-decoration: line-through;
}

.sd-block.sd-gplus {
	margin: 0 0 0.5em 0;
}

.sd-gplus .sd-content {
	font-size: 12px;
}

/* Sharing email errors */
.sd-content .share-email-error .share-email-error-title {
	margin: 0.5em 0;
}

.sd-content .share-email-error .share-email-error-text {
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	margin: 0.5em 0;
}


/* Buttons */
.sd-social-icon .sd-content ul li a.sd-button,
.sd-social-text .sd-content ul li a.sd-button,
.sd-content ul li a.sd-button,
.sd-content ul li .option a.share-ustom,	/* Ugh. */
.sd-content ul li.preview-item div.option.option-smart-off a,
.sd-content ul li.advanced a.share-more,
.sd-social-icon-text .sd-content ul li a.sd-button,
.sd-social-official .sd-content > ul > li > a.sd-button,
#sharing_email .sharing_send,
.sd-social-official .sd-content > ul > li .digg_button > a {		/* official Digg button no longer works, needs cleaning */
	text-decoration: none !important;
	display: inline-block;
	font-size: 13px;
	font-family: "Open Sans", sans-serif;
	font-weight: 500;
	border-radius: 4px;
	color: #2c3338 !important;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.12);
	text-shadow: none;
	line-height: 23px;
	padding: 4px 11px 3px 9px;
}

.sd-social-official .sd-content ul li a.sd-button,
.sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a {
	align-items: center;
	display: flex;
	font-size: 12px;
	line-height: 12px;
	padding: 1px 6px 0 5px;
	min-height: 20px;
}

.sd-social-official .sd-content ul.preview li a.sd-button,
.sd-social-official .sd-content ul.preview li.preview-item div.option.option-smart-off a {
	position: relative;
	top: 2px;
}

.sd-content ul li a.sd-button > span,
.sd-content ul li .option a.share-ustom span,	/* Ugh. */
.sd-content ul li.preview-item div.option.option-smart-off a span,
.sd-content ul li.advanced a.share-more span,
.sd-social-icon-text .sd-content ul li a.sd-button > span,
.sd-social-official .sd-content > ul > li > a.sd-button span,
.sd-social-official .sd-content > ul > li .digg_button > a span {		/* official Digg button no longer works, needs cleaning */
	line-height: 23px;
	margin-left: 6px;
}

/* Icon Only */
.sd-social-icon .sd-content ul li a.sd-button > span {
	margin-left: 0;
}

body .sd-social-icon .sd-content ul li[class*="share-"] a.sd-button.share-icon.no-text span:not(.custom-sharing-span) {
	display: none;
}

/* Text Only */
.sd-social-text .sd-content ul li a.sd-button span {
	margin-left: 3px;
}

.sd-social-official .sd-content ul li a.sd-button > span,
.sd-social-official .sd-content ul li.preview-item div.option.option-smart-off a span {
	line-height: 12px;
	margin-left: 3px;
}


.sd-social-official .sd-content > ul > li > a.sd-button::before,
.sd-social-official .sd-content > ul > li .digg_button > a::before,
.sd-social-official .sd-content .sharing-hidden .inner > ul > li > a.sd-button::before,
.sd-social-official .sd-content .sharing-hidden .inner > ul > li .digg_button > a::before {
	margin-bottom: -1px;
}

.sd-social-icon .sd-content ul li a.sd-button:hover,
.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:hover,
.sd-social-text .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:hover,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-official .sd-content > ul > li > a.sd-button:hover,
.sd-social-official .sd-content > ul > li > a.sd-button:active,
.sd-social-official .sd-content > ul > li .digg_button > a:hover,
.sd-social-official .sd-content > ul > li .digg_button > a:active {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-official .sd-content > ul > li > a.sd-button:active,
.sd-social-official .sd-content > ul > li .digg_button > a:active {
	box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.16);
}

/* All icons */
.sd-content ul li a.sd-button::before {
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font: 400 18px/1 social-logos;
	vertical-align: top;
	text-align: center;
}

/* text + icon styles should have relative and top position */
.sd-social-icon-text ul li a.sd-button::before {
	position: relative;
	top: 2px;
}

/* Make it look great in Chrome and Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

	.sd-content ul li a.sd-button::before {
		position: relative;
		top: 2px;
	}
}

.sd-social-official ul li a.sd-button::before {
	position: relative;
	top: -2px;
}

/* Make it look great in Chrome and Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

	.sd-social-official ul li a.sd-button::before {
		top: 0;
	}
}

/* Add more pading on touch devices */
.jp-sharing-input-touch .sd-content ul li {
	padding-left: 10px;
}

.sd-content ul li.preview-item.no-icon a.sd-button span {
	margin-left: 0;
}

/* Text only */
.sd-social-text .sd-content ul li a::before,
.sd-content ul li.no-icon a::before {
	display: none;
}

body .sd-social-text .sd-content ul li.share-custom a span,
body .sd-content ul li.share-custom.no-icon a span {
	background-image: none;
	background-position: -500px -500px !important;	/* hack to work around !important inline style */
	background-repeat: no-repeat !important;
	padding-left: 0;
	height: 0;
	line-height: inherit;
}

.sd-social-icon .sd-content ul li a.share-more {
	position: relative;
	top: -4px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	.sd-social-icon .sd-content ul li a.share-more {
		top: 2px;
	}
}

/* Hack to make the share more button look better on Firefox. */
@-moz-document url-prefix() {

	.sd-social-icon .sd-content ul li a.share-more {
		top: 2px;
	}
}

.sd-social-icon .sd-content ul li a.share-more span {
	margin-left: 3px;
}


/* Individual icons */
.sd-social-icon .sd-content ul li.share-print a::before,
.sd-social-text .sd-content ul li.share-print a::before,
.sd-content ul li.share-print div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-print a::before,
.sd-social-official .sd-content li.share-print a::before {
	content: "\f469";
}

.sd-social-icon .sd-content ul li.share-email a::before,
.sd-social-text .sd-content ul li.share-email a::before,
.sd-content ul li.share-email div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-email a::before,
.sd-social-official .sd-content li.share-email a::before {
	content: "\f410";
}

.sd-social-icon .sd-content ul li.share-linkedin a::before,
.sd-social-text .sd-content ul li.share-linkedin a::before,
.sd-content ul li.share-linkedin div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-linkedin a::before {
	content: "\f207";
}

.sd-social-icon .sd-content ul li.share-twitter a::before,
.sd-social-text .sd-content ul li.share-twitter a::before,
.sd-content ul li.share-twitter div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-twitter a::before,
.sd-social-icon .sd-content ul li.share-x a::before,
.sd-social-text .sd-content ul li.share-x a::before,
.sd-content ul li.share-x div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-x a::before {
	content: "\f10e";
}

.sd-social-icon .sd-content ul li.share-reddit a::before,
.sd-social-text .sd-content ul li.share-reddit a::before,
.sd-content ul li.share-reddit div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-reddit a::before,
.sd-social-official .sd-content li.share-reddit a::before {
	content: "\f222";
}

.sd-social-icon .sd-content ul li.share-tumblr a::before,
.sd-social-text .sd-content ul li.share-tumblr a::before,
.sd-content ul li.share-tumblr div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-tumblr a::before {
	content: "\f607";
}

.sd-social-icon .sd-content ul li.share-pocket a::before,
.sd-social-text .sd-content ul li.share-pocket a::before,
.sd-content ul li.share-pocket div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-pocket a::before {
	content: "\f224";
}

.sd-social-icon .sd-content ul li.share-pinterest a::before,
.sd-social-text .sd-content ul li.share-pinterest a::before,
.sd-content ul li.share-pinterest div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-pinterest a::before {
	content: "\f210";
}

.sd-social-icon .sd-content ul li.share-facebook a::before,
.sd-social-text .sd-content ul li.share-facebook a::before,
.sd-content ul li.share-facebook div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-facebook a::before {
	content: "\f203";
}

.sd-social-icon .sd-content ul li.share-press-this a::before,
.sd-social-text .sd-content ul li.share-press-this a::before,
.sd-content ul li.share-press-this div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-press-this a::before,
.sd-social-official .sd-content li.share-press-this a::before {
	content: "\f205";
}

.sd-social-official .sd-content li.share-press-this a::before {
	color: #2ba1cb;
}

.sd-social-icon .sd-content ul li.share-telegram a::before,
.sd-social-text .sd-content ul li.share-telegram a::before,
.sd-content ul li.share-telegram div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-telegram a::before,
.sd-social-official .sd-content li.share-telegram a::before {
	content: "\f606";
}

.sd-social-official .sd-content li.share-telegram a::before {
	color: #08c;
}

.sd-social-icon .sd-content ul li.share-threads a::before,
.sd-social-text .sd-content ul li.share-threads a::before,
.sd-content ul li.share-threads div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-threads a::before,
.sd-social-official .sd-content li.share-threads a::before {
	content: "\f10d";
}

.sd-social-official .sd-content li.share-threads a::before {
	color: #000;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-threads a.sd-button {
	background: #000;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li.share-mastodon a::before,
.sd-social-text .sd-content ul li.share-mastodon a::before,
.sd-content ul li.share-mastodon div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-mastodon a::before,
.sd-social-official .sd-content li.share-mastodon a::before {
	content: "\f10a";
}

.sd-social-official .sd-content li.share-mastodon a::before {
	color: #563acc;
}

.sd-social-icon .sd-content ul a.share-more::before,
.sd-social-text .sd-content ul a.share-more::before,
.sd-content ul li.advanced a.share-more::before,
.sd-social-icon-text .sd-content a.share-more::before,
.sd-social-official .sd-content a.share-more::before {
	content: "\f415";
}

.sd-social-official .sd-content a.share-more::before {
	color: #2ba1cb;
}

.sd-social-icon .sd-content ul li.share-jetpack-whatsapp a::before,
.sd-social-text .sd-content ul li.share-jetpack-whatsapp a::before,
.sd-content ul li.share-jetpack-whatsapp div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-jetpack-whatsapp a::before,
.sd-social-official .sd-content li.share-jetpack-whatsapp a::before {
	content: "\f608";
}

.sd-social-official .sd-content li.share-jetpack-whatsapp a::before {
	color: #43d854;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-jetpack-whatsapp a.sd-button {
	background: #43d854;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li.share-nextdoor a::before,
.sd-social-text .sd-content ul li.share-nextdoor a::before,
.sd-content ul li.share-nextdoor div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-nextdoor a::before,
.sd-social-official .sd-content li.share-nextdoor a::before {
	content: "\f10c";
}

.sd-social-official .sd-content li.share-nextdoor a::before {
	color: #8ed500;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-nextdoor a.sd-button {
	background: #8ed500;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li.share-bluesky a::before,
.sd-social-text .sd-content ul li.share-bluesky a::before,
.sd-content ul li.share-bluesky div.option.option-smart-off a::before,
.sd-social-icon-text .sd-content li.share-bluesky a::before,
.sd-social-official .sd-content li.share-bluesky a::before {
	content: "\f10f";
}

.sd-social-official .sd-content li.share-bluesky a::before {
	color: #0085ff;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-bluesky a.sd-button {
	background: #0085ff;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li.share-deprecated a::before,
.sd-social-icon-text .sd-content li.share-deprecated a::before,
.sd-social-official .sd-content li.share-deprecated a::before,
.sd-content ul li.share-deprecated div.option.option-smart-off a::before {
	width: 1em;
	height: 1em;
	content: "\1F6AB";
}

/* Share count */
.sd-social .sd-button .share-count {
	background: #2ea2cc;
	color: #fff;
	border-radius: 10px;
	display: inline-block;
	text-align: center;
	font-size: 10px;
	padding: 1px 3px;
	line-height: 1;
}

.sd-social-official .sd-content > ul > li > a.sd-button span {
	line-height: 1;
}

.sd-social-official .sd-content ul {
	display: flex;
	flex-wrap: wrap;
}

.sd-social-official .sd-content ul::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.sd-social-official .sd-content li.share-press-this a {
	margin: 0 0 5px 0;
}

.sd-social-official .sd-content ul > li {
	display: flex;
	max-height: 18px;
}

.sd-social-official .sd-content ul > li .option-smart-off {
	margin-right: 8px;
}

.sd-social-official .fb-share-button > span {
	vertical-align: top !important;
}

.sd-social-official .sd-content .pocket_button iframe {
	width: 98px;
}


/* Individual official buttons */
.pocket_button iframe,
.pinterest_button,
.twitter_button,
.linkedin_button > span {
	margin: 0 !important;
}

.linkedin_button > span,
.pinterest_button a {
	display: block !important;
}

.sd-social-official .sd-content .share-tumblr iframe {
	max-width: 53px;
	width: unset;
}

body .sd-social-official li.share-print,
body .sd-social-official li.share-email a,
body .sd-social-official li.share-custom a,
body .sd-social-official li a.share-more,
body .sd-social-official li.share-digg a,
body .sd-social-official li.share-press-this a {
	position: relative;
	top: 0;
}


/* Custom icons */
body .sd-social-icon .sd-content li.share-custom > a {
	padding: 2px 3px 0 3px;
	position: relative;
	top: 4px;
}

body .sd-social-icon .sd-content li.share-custom a span,
body .sd-social-icon-text .sd-content li.share-custom a span,
body .sd-social-text .sd-content li.share-custom a span,
body .sd-social-official .sd-content li.share-custom a span,
body .sd-content ul li.share-custom a.share-icon span {
	background-size: 16px 16px;
	background-repeat: no-repeat;
	margin-left: 0;
	padding: 0 0 0 19px;
	display: inline-block;
	height: 21px;
	line-height: 16px;
}

body .sd-content ul li.share-custom a span[hidden] {
	display: none;
}

body .sd-social-icon .sd-content ul li[class*="share-"] a.sd-button.share-icon.no-text .custom-sharing-span {
	color: transparent;
}

body .sd-social-icon .sd-content li.share-custom a span {
	width: 0;
	padding-left: 16px !important;
}


/* Overflow Sharing dialog */
.sharing-hidden .inner {
	position: absolute;
	z-index: 2;
	border: 1px solid #ccc;
	padding: 10px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	margin-top: 5px;
	max-width: 400px;
}

.sharing-hidden .inner ul {
	margin: 0 !important;
}

.sd-social-official .sd-content .sharing-hidden ul > li.share-end {
	clear: both;
	margin: 0 !important;
	height: 0 !important;
}

.sharing-hidden .inner::before,
.sharing-hidden .inner::after {
	position: absolute;
	z-index: 1;
	top: -8px;
	left: 20px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 8px solid #ccc;
	content: "";
	display: block;
}

.sharing-hidden .inner::after {
	z-index: 2;
	top: -7px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 8px solid #fff;
}

.sharing-hidden ul {
	margin: 0;
}


/**
 * Special colorful look for "Icon Only" option
 */

.sd-social-icon .sd-content ul li[class*="share-"] a,
.sd-social-icon .sd-content ul li[class*="share-"] a:hover,
.sd-social-icon .sd-content ul li[class*="share-"] div.option a {
	border-radius: 50%;
	border: 0;
	box-shadow: none;
	padding: 7px;
	position: relative;
	top: -2px;
	line-height: 1;
	width: auto;
	height: auto;
	margin-bottom: 0;
	max-width: 32px;
}

.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button > span,
.sd-social-icon .sd-content ul li[class*="share-"] div.option a span {
	line-height: 1;
}

.sd-social-icon .sd-content ul li[class*="share-"] a:hover,
.sd-social-icon .sd-content ul li[class*="share-"] div.option a:hover {
	border: none;
	opacity: 0.6;
}


.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button::before {
	top: 0;
}

.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button.share-custom {
	padding: 8px 8px 6px 8px;
}

.sd-social-icon .sd-content ul li a.sd-button.share-more {
	margin-left: 10px;
}

.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more {
	margin-left: 0;
}


.sd-social-icon .sd-button span.share-count {
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 0;
	background: #555;
	font-size: 9px;
}

/* Special look colors */
.sd-social-icon .sd-content ul li[class*="share-"] a.sd-button {
	background: #e9e9e9;
	margin-top: 2px;
	text-indent: 0;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-tumblr a.sd-button {
	background: #2c4762;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-facebook a.sd-button {
	background: #0866ff;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-twitter a.sd-button {
	background: #000;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-x a.sd-button {
	background: #000;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-pinterest a.sd-button {
	background: #ca1f27;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-digg a.sd-button {
	color: #555 !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-press-this a.sd-button {
	background: #4f94d4;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-telegram a.sd-button {
	background: #08c;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-linkedin a.sd-button {
	background: #0077b5;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-pocket a.sd-button {
	background: #ee4056;
	color: #fff !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-reddit a.sd-button {
	background: #cee3f8;
	color: #555 !important;
}

.sd-social-icon .sd-content ul li[class*="share-"].share-mastodon a.sd-button {
	background: linear-gradient(to top, #563acc 0%, #6364ff 100%);
	color: #fff !important;
}

#jetpack-source_f_name {
	display: none !important;
	position: absolute !important;
	left: -9000px;
}

.sd-content .share-customize-link {
	margin-top: 8px;
	line-height: 11px;
}

.sd-content .share-customize-link a {
	font-size: 11px;
	font-family: "Open Sans", sans-serif;
}

@media print {

	.sharedaddy.sd-sharing-enabled {
		display: none;
	}
}
@font-face{font-family:social-logos;src:url(data:application/octet-stream;base64,d09GMgABAAAAAB2IAAsAAAAANSAAAB05AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACKAArQCL9RATYCJAOBaAt2AAQgBYRGB4UBG60rRUaGjQMQAvmaIio2tYhqTZr9Xx9wcj1WMEGJoo6qrgODWGccXRNTYYue4+Oz39Vk4Ms+2MVqxDJYsAcLqX50bj3CPJ2YsN8PJUh46Pfrd649sb3rX81C/eCNjIcOIRG6J4bW1xOzPPBc7t9t6nnkRWNiOMZ0nICRHtXy9hmQ951v9pukyd0GaNBYv/Aev+P7ccVWHF9sy5PkthlAYARt3nTWS5mbNLnZMoTpDwIJU3pf2Z597K9buFylq3S1JcpMx9SUCqRPLzYUQIBhbuYQ0ce9Sqetw9M2/x0VendEGUTZCBYYlIBiJNpTnDMLv3/mSl2Xuvibq3CtyzYW+iNL+CeuxkvLC9xkXyGS7tfxpsDC0tNugczT+AZJOFJsaE21/2OWBXQDYTYh59zfU3v5XKB8+RIlxc8wnxFmE4ZIVVUOKM0o3E8H+XEZ7FBOkQMUdkbOqtoRuBz+6eDSQhL1RWwHEYciHcZmEbpdlBXYnMNIUDHu8xMECMzYImuNXl/pMH2clGlxKXCsisN2PZVPE/qiEryhc/dm0BBnIGrBCMfbz2vMZ0gmIu64eVJf+BbrlwBT4dSTO65LYIACE382lbXrmahS+3yCEpx9Lw4yYEAPTRe2rLh8LeWe8lDVVrPVfPV5jdRVfrbeUe9vNikJMDcKW/Y1mHUy58W2MGCPFr0sBuWituLA4295kNJyFnVqM2FSQatQh3HLjCGWa1ZgSVZRty6xeaum5Tl6ZQzqN6qHJ9EiMqDPsBmCovlGjJmyYMWclHaIFMsRQD7HxSpKYq4jUQrSKCnJvdBkEYZ0wiFtcMkEPDIJnxQQkFaEemxEpAMxGUdClpEiBlYwhDKBRVkELsoymEVZSQBDluCQLFxShE+6YUkX0iRGhswjS1aRI9PI64GCHs9RJL1o0eNX9JBB9JF+TTKKAT3uMUg8DAkSVG3Qgmo2iFDNBwOoPg/6UMvL8EZBMIM6IjSJgiQaivgwZAQOGYNLpuCRBfhkBZbMoYOk0C+YHe0A1lZYXt6A74grSN19pYkfLkJzVr87weMyJCFHwWjJEKQSDAVL0JYgNCzxaMxKdEGjyZLPoS1B0GuNofRMysqh1LA90J1BFEe2Rc/AaaWBTeyHie/H+ivas5Ny/AIvcBa4rr9SlPhx3NKPa9RDTDpocWvU18uj+75uaYFxEeX4xU567OtBG+hlPiVZeudlj+7SOppmCr4ddq4fq4yZXUUFgmB6Kp3mMRCOF0xvO42NAZk3LNCEwJuwPiIGO4gRgHcWgjhyagpxVZnyeWHMGZVkJVMHbKSB5VLW9LXlLdjKak6IUgEhJ6VRNVxF4nB3i+ebF7S2yi0sA5pGAepVkGhCnq5hwAzP7p5/3bqsd1Jp80OEpav9jZ6y4GzpPBLK0mkd+AWjkJNBUGT1ZDAOWKE+h9A6W9YgV5EAIWBLjSFv+mG7PpY1C9/vItFuPuSPWp2UXBh/EEOs6CokPOoBLjkYojyCQhHIX35FSHx+DmAvvmAsv72CDM0OlsVCGi6V7QYYuX7N95n3Z+lRGGRjzZVq6zHfHWB1tL4/dut4Cw/KBk2kGcNVBS4rcEVp1BrMK6OS6R5fjpVOrh5tDivDy/GWbXxiPjgQHHqdqd9ZSdd2lTdb5oN4MRWcWoPl0erB+XRns978CHKi8pAQRwmDGgYwHb60XMuxrzsOoDc3HDlsO7fsrOPaFLo3Nh895opej/f7MopYGLpquL0/2tp6RXsOCqPqsS9YOuXsq2uWIu/pHLofOTL97tLM2W7ovtjTyWprsWd7yfrhYrxzIEjxmRx1XGq7jm1Q3FKb0qPAduHh/P/FMhjo2rQ/a6CrMup5yNmAJTfQPbNGaItbi3kepDMuIcpytaV1s2lL38+JMATvo+gCRBBDvoZlygRIGB4AeAsC7/p9yHu9nGfY6ZHkHW25l+OuotQ3a9eOYPfnHI8gW5v4hG8ww1aQgs40KqeEqC0nkNoeIXZqexGz6TgMqGLiQIzuNk7QetRs1+83bHc2lUnJSdCYAwNpBiF3elo1kHZkEx/rnqizhmzxZk68n2LTH+SnWT7zEStCvk8FA8z0u25xLYylk1JuDpYUCQ8A5sezfWMLWWlQD67jMjeGiyDGCGC4Hgw6DnQNbtisbF9DWFluiJgmbuGV6NkspnyrbLVHm5BnFSwlpiMrVZMFrQc2VIwxowFYpr7frxRZgwzYgZnAst8PPd498fUlf/UNyxPHm0gssxWZ1QkEsQ9YmLO0IXdxufO+sx9E6539iSACCGCAIX6Y3U/+S45kFBoo0HOWUcGyiwA9hLS3AzgHcCFWSFZQzcVHfvuJGECsuod8KCdTQdAoxossVijUt6DuFcPVarM0VOKJcrlVS9duiddz9fuP2ZMHjfk38l2n9egZf/qw2X5LRXeMjS/IpUk+sUjFKl+TK1gUheIqBo1Wh10kujEsGwCwOkLFBYzlLwj5z/8C9iNIWUrIrCzIW+aVFlHh9/x6MZ+KfDwoNVzH1T0E8ahQimvNoJDVbbRkGW4GqQUAa+uG40VQhqyTDbIlb1LqwMFceHi19FSsAAAD0Y7pC28O1dLa2pSsDLdJdUhBOH8guNT5lihvLkPId5YIXHSojMcTZSxXmB/BkbC3WMvJLy/Y88/j2Oy2HJ9mU2NiYobPTtryCXssnvJnuYHBdTTjAcDMEYBgVkNIkQM8cwfRmF2aQE5GIbZdnHsdhlvCKIi+fa/nKFv+AMjCeiDkTVEPqSbtoRJUGh+QoGj6WFpWeSnPR5sH2+Hh7vaxLZud2/j4AZnVm8tWOa3TnV/5A8IcgvfxhrhGJDRRD1XOpltYRuB9iEQzoROPeBOJMcBMkxY2FuPK+joxmdjnLwgEK7Zy8D668jDhEjU7GskdEsNrYPlq8lKQOKhAU57EiHmkOgP5q+wSlh9esKnPSFTJlsL2APNoYV5V0cyEB+K7oyPmwoH5Q7hzzFrqb05ATqkniKOUjov6pu1q2WD87eX4fDTim82eCDNGfWw3aXaZrvS+vuz1f/Xt0su3n6emP3yanRlWlbpRGPEDqzY5pBSpGl7BhH6APUK0fqk1P36/2554tPRm5cnY+7erT2c/vRkJxuOQTb1HYjhId15R0etB3u9fMubCcEaa9Ku/qbQ6/ObECmCxsdDFAP2JBJgWVgHdGZPmbBpa/o8hsjcSa66U8Dwgu7bM82bb+Oq49kbmBYmK4SjPoHNhUomxAzTwR0cb+gU50WVHFwuI0zX/HWupWY8pW/T4DPdlxHOW0C2N6lqs2H9Fk7eWQrJbrN9m1GdGHUExqrQ2ixjKhJZ/ioyjOXEbco2vimXATNqUOdCuUbOSoixnmRSYTg4hoRJg7LKx5e5oRGBiVpLwp2qbMAkoQT65NrXOUgYmsIY70Y/o3ScxYdHhQ6WDB6tE8Zo8saRgeWXQtkVDYhYPXAhAAxk5mqLEiOBUgGWakBd06fMkcJD4+azsF7ZFBRRSps8EMWK+rMHS8CMl0rQSCievwabyciQMwysLUQohpwGCjDgwqRbkUsEx8A8uiZbb3z2P9KinlLb6tu/vC4uLvfOq7FN0xfe3fXSg57LV6V94c8RnlXxTZKjHLgkyXQv8YsGgH6YWpxeIFE/078LMbMisq7lDt540/Vr5en5hk1vue2E9WoloTDnxfZ2bhYIQCQKzOUq19AFIhS8yRKMgua5KFcL9bYfGvfDmYeQdVNP2XtWoHVCufZBX5OnPi5L3RR9pYTwf9+PV/XPfNxYbqcahd7tam4PxWGH5PeqZXvJzr+SZxsZDT3f2HBhm5jwYOe4KZT+7tvnRpglaWXxo6bQ6UvczXk7CZiOKJ9yUAmR6VdhsrPt29eHkEsZAVQqsGNTKMI/NonnxKj8AUHU49UB2ggK4OlffUVR0WvBPD1WIghBDBJEA92Nj+wEG7MJWZwPXOtbWXnhvbrS0ALNqCZ3zMAZOECimpbXRq+TfNI5hpANpNr9hF9Lb6DZdrcF8JdlKDM6bb99Pxd/2ThbYeEo0pXwlVRkuLu95GQnyBctb3/bNQtg6SpqPARZmuuJo0LFEk/hWtQmhj9VDq/Ehpcq1ebNmFQxtefnR84yE4/SQyIwuZdfS7+wovs+6SjxCItm3o1PuzPHOrB9XYYigOLrZXMBwyzXO/CxDv8p2mPRPRUh1n6MSuAWLQ8qaVqokZJNSiPA5rrORQQXSXRKkda2sW8udiVPsvc/0ufERC1sex5nhCdJ0poxC3RCKzDhca0uCaKu7n1riT+L9XYIpZX/SD9eIs9mXOGP/4xcfWrYByQua85DbsUynpe+hpO06ikChNE4Fcdt9j1wfsA10qf0H3Tsjh5h3EXWQTbFrY2fIwb+jHAboFwVoG+QASQGnaksXLav2xYvnX+/vL5WpsdihXbjRLDauXrLgwoVL7w5ZGpkSVuKw/p8aotB2/YlSCUOMn29y35J40oBtK5TCkf6wjpDyC6WLwLI0MVkSsktRgFRKgnLh+dojT41uXYd3qA6qHDjhCErl7BHg3aiD1QvoiIIpuZanhNk87x2duhi6ytjif09tCaa1eEXnZojTK9vFagxQTYRBWJzonuanm2XRdY3gwDLGZwsuyPnEthIe89v1XKSb0FzpHoOQ88+9IIbHRNeRPx6robCKGfq4X8Fltnu9MnB4TsgJ2DnpO7kjxcANbtjCHqAuNBbuYNL+OBpFdKCFmdX8anDAnwUos2Qg5vaI9KIerrjfm7D8BjmU738LsLpNz7gtLu7e2TG2mjzLmCWrtYF2kuAiZM8CDX7IUoMf0UV3Ef0IK+grfmz3RftRmCB+O6GfQE+AB8JH3orpwkwyfViCmxfPTJg/JSfwvp9vSVR+rj51e2kUl+Nv4I14z2X+xe6u6f+iVbr5IYi+2DvPfzfFehDXFS4qmfVen5sSAdOUUWDKBMnQO0vVNPXNXnHYyog7S3xnt/vibny+tujvlBDJr1Trhvz90fvv7+klTd4GXy09cChpczDvq3NGRDhbKs8Z0eIN4XfGfk0vjeVZdn66pqyUYhTYIAP7SvkBgl52JOrV9p9OO+u7esx4sQDDMaJLOT/vL/xcXRJi6nSmz6yd+W+lp4O50rbK66/hXmfpzT6GMB7ML36b5IhdnLb47WzIjntTSa3UnuKIjTMkUZif49FpT2ceOaDnCMTgx/IxRvNAjCEN/w1fo85RLqM7wS4jPa2Rg+NE9xrJCetLQDFKrHOqpE0Th9xYQQS++ACPmTuS9mEFoE15gvnJXoWpCwnMS4vkbA6NCQ1SXJa5Qx+FeqCDFe7yqNXBmzmnhYF5IbrudgNYbKy5U1d/7NGx9trp5G0/RNukhxeJNyXsCFxlC5mxrYpN3PTRogMS68c73FKyDkzgmCtM9y4cjhLXz8TiyRENG2M6Pho17lJ0oXbaWVxz52J9R/SOwNZ8o0bGgQkVxXJrIW//gZMGzs5bRhyeEmehvGl7sJ+Hw5Ej2ovh9xgdwcB8ehh+D/XWw1Y6HqEH48ueSOCtySIF7yAfwNYWwVsYHcDXauuZAluS3Cg1GKRGeeJqW3F6UEqQ7j292NaiLQkvLg4v0cbo2d/7a97BYJUnbUI3QdPRTupO0h572oIuOmJA2+SnrKMdblWMKWPxOktNlwhrRXdaA5QP8iiBddjluFziNhKVuJ2YQGjHr8OWEaLJzVZ7LoD4BBd+DO9igdf6HUk7Pjdu1JPYs/2zz5M+356YFElTMOasqXUGprMMLzV/fGNFaZhcVx5qUrcSDPiepRlW6S3jsynx4bPpX4WLsiOoSBOBtO8zvy3hy/0+20ciNCHUiCxx+Fcl+9966PBljQZmSr1lwjjGu+LdF63LlAzzrfxhiVplVnsKHxseG8XfS6xB7QG0cLMFjDJXe1D9JEaDNCNWoTCnF9U399FtWd4mUWQlp9SFyDL1ar8vwpdGe1KD0xJfCcaKsbSumGWwhta336Pt/ipRGo8ke3+bhS8QCnTFfDAvT22TnJquGZdJRvxsfiMSldelgxnMCC2p/bJ0UQUh6gVRTBuY37XYYzgs3oEjVZFwO8SHDT1VpB9TWHDd498ZNYzfH9UH1wTTPp+1Dy0QPDgadvRBmFXBHxHEhmn3a79Kv3vHjTzHmANVX0/7TjMdLP75T6rkkvOqT87zWRJE6itFXA7zUJKM+sG+8TjafGT0z/+Gdkx7j/TnGnTNn6RE7CH+5Kk2l60tUnTmsfO0Y2E8KP/uXwzlX6f9wOhoFtKPArQfcfLhvNHyHEKqLPD/4zzQt2nrjvHmfi9EwoCSKZV1tBcTK86UILGbig2/74gmEEDc82ehmWOhiQI8AsJvfjQFNuSBKIvoz+HhP0UeclGNX2VX4q3U+mqV3h6iSr8akRzs7pasn/fU9RZr1W8IyATBRJgQS5to5Cd5T1AjH+jHe6Ln9XlmEXYDVqTBleEyEVyLdgPJvKGEEDKES8QNxRKa8Jp3cQnaTnVnHPj3p4kKrWlhIt4Y1lxh76M2h9krqH3BPRrwE9h+36XyaowI44/HLURX+axCF6o3KsYbwm8PySAx5ll7XSF2JBUrBTfvgFGnpLNKsMqJLdmfzCH4qEv/t6oE8mO/PF55XXv7fAcV4Cd151t94/28v3MfXMjuwooHTyFen12bUGiMUaqw4Fg5a5fZt23Mm4WwpgTu0XbhMoeMKcSooIrbKod7jZHlY/SXJQT6B1iTFasvDLO9eizcwq1U+NLYhTD9GW+PiauXw55ZfssvofC7MiCnD5ajmBxcmrKBJ6E8gwKk4wrbFYk3fC3+hcX4pVD8QwcvD+qi6YVwGdzD0/nadaL8e2OHoItaEW4cr4dY0L2wyMV1lRZZkmNGP/0kMyUxz2c5B+IsonHWnGoRdw6+22kW2o1eHRqMJ1fqd1qKYmfNmA01JCsnVmMV1Jx33/e6gbwlwyZev/SXvyPcCXCZY32GYtj21zrhCSusAD6e1KFNzXuI4iO9je+UjbavWqxhWi6Zk2O01ws+7Y1ZxQPeL2K82Mrz75G3LNgZmqPR5ISqAx3podjGg9ZgnzhMlshuCkmmJfNz4JRbq3ZfGggrj/D+YG2BDoyP9vj1MJkGA9KPTBvYYDgizCLbFw1j1JdtGvW+K2soTI1P90zrH5BXf4l82UmmowIxmMQyLxfPwRYMN9nsDpeJ2kQumO5vt8PCdIxHnsqA7n2ouMyknzvAJkp0WaKKegE6CYFw4I55dOKLL+jrHjEeJ+ymi+mU1nNHDt3cEpTi+VH0RwNa4EgGVu0830rN60YYF0BDuDAXcKH1njSIB3EBD3AzUCJiUQGVRczrVf/oA3x+FBFA9ygP2ZLNpXE3Z4tCLKEbhEFAOHCWMMRLHCLcnM0mChoVagEzt2F4eC8GGrRBAMLsG4Hi8bDHyzgC6BTXexxrgDGwT7x3mVe8DyKCsJivvVOHudduGAcDMaMh3svlHe+DqjE4zNe1MG/il/CvGc13uEWKmebBrOAMIvUbivv9p2yfoU/knOOfKH5oZdKb/F617KpQZzJmKW7VOQPi4AMbwTujsixFocg5U1Sfv13uN5MiS+ZeDAfRQE5TGpm1TKjeIkmmQ+FNJSSkGTZufgzraUhc3+tym2HTQUkMHSWayCXPXURuFolQBLDOkbBDLoQI2DAlAuFBKhykIFHgQDgNCTgfJBj9WVSHjEItHVEnBNRzDZv4OcYOQYbG5Lso9Eb6aBs9KO18VL5z/RJ3ekYUi5aAt+BTRv63juQvwpDtjs1cO7iidcW6+vocyGXE0RW5LJZ5+uDq7rksvlyy0BVrQh1oEr4ivpJpRh2u2BXFctDgfhddzrC4WrNMjrLVl8Uu8eVbBTDNn4VtI8D8vpEyZT95Fp0lR8fplW0pX9+WQfIcOkf2mN3loSyDj0Qr2pLbFFFxUfSaGnr0rk7eiKiFIHFfek4QBo6hhLIC04NNRJMIfpNpbMKDdlQoku2EIa8/P9f6yyHw85XwW8jPTSxsEOVmCTJiz+3018Z8t9QnH9zbfGfzvQtfVh8efXEzMr4BgEqoi1cbQROgukYX+wLUcYJHokLHR/zhTKeE8fa7n2BuRlTwHKgav0R3OTqg9ydR4vLHXqf6r6Pt+/UCyOVeuEFC9wYMcmn+p7Necl+Ulb2kAdxkPB3p2hzVHRwHq2RbYzbLol/GfxJtX/94MoZdVlBPrM/Pr2eC0lXTjNTdlUhPekx6ZRQWp3oVuyfUdzlv7M3a576px7PBpvFzfLOsCFKF/sxN5nm33+pCIUgSrZKqEoiptOZh6TZQlC6pkBSVm38HB57xLJzikBBzckXFr+KPHxVrQlL+E4LXvR0bTu7Zczv0UEJrjakwiHs2wCpg8SFh/WehmoHrJ3+Npqy7E5943vT13ShqX81DxLYGhxUJDS9xmTJ13jdwX/LwCDYPgTbT/l62V26f0L//Pu4I5pXxz2dTe8BcGcaQXZ/bqlfwbeI+ho2Dn7TT/jmXJqX2F5RmdjOjbuHZ7FAxTBBW5WNiIXDJs2aiKaLYGaH1TfIe9U7y1X0QxaGBsK8s6dtUQJUSGJSqkpyADHyJ6oLZzSrNaChioDVC6aInI3hJ6DVziSjH87bU0Y4yIIb0d5YJN9TgAKi6ANz4Ye67qS9FjV2pnmDTpK+HxuNro9LRrU+pCl7J6KLvM7YFUBkRjP7vGaa+Nb1MJ77MBtBOAt56i4GSDDOaInkrAZasO0rODK9yW5LlDjDfRxwc3o/+dypcV0jM+xu34wUn+dSIO+V2Cp3pJjxk4klVjoBtNLoKwdvC8WmWpz6dnmnr1gG8woZHVLykz/Bx0KS8iksVfqI7fF+dowkexy8D9cDHY+WIqH1V8aqG9ZPrR0Xdm8o21d869GnrIc1XyRowrj9LGLu7zQnzuh63DcGzTA7X6Bq46RwSGk+qVCeNwiHnzQGXUcXksYWSYL0ROtN4KtX448nkqFv97Ua9Czbv/7b2pijQPf9l/wUAgL6App2FM9CKhePQ9bTrUB6aJtE0zQ7Y0V3IpiV/mzujhR9B1WiIdDRBy6Mjv4G2IMdPEKqui28LOoInPjnyQ6gHL/wDqiw8Ar1yfLbth3MdoTMseXzwVF07wMmjBx/AR85iwJhMPoM6WPBpCyegq2u/hU4s/Bi66XiqrSzS3yzLjwna+n9UNwMDL+q8ityjfiOF9Z/xMW1fl5MK/ZGWHuJpHuJyYUf//5Li/kPgX0caqYie5n2RGwwYaHnQhDnWv7HJESJqGkGXYG9QeSgLST25O9YIjcc6IkswSEF70H8o6zUREfsILd6DWCnxFar3yd+ghpP/xBoFh/gPVnDy/9h29fvuo3Wrb/9CxkM4BnIk39GVABzdCb3Nb2TxlPrr1ExSeB+YkEHR9sPSy93dVMd+ZIr9O6V2XyFQn5k+0ehpUs1v5+knWMXJUFwJYnggOAqIQ7fE3yGnHB9gij1C4m9YAvr7lUt6VycXSvJDSNSJgUIWDxZkK+6cG9XwqDfsGYl670xpSiEwEXs5HX6+QXMTT6YS5uzNWXM00oonhgm7yNj/Pdztl/c7BRoMWHDgIUD8B/BLrUCFBh1Gs9XudHv9wXA0TibT2XyxXK03293+cDydL9fb/fF8fXx+ff/8vv9UEOEvpXrACZLBbgjkHPIRgtYBcBpRUOalNmQxY2os+2EciQFry5QHerZ4x6QDe8VmBIMD0XwY0fo7suBuRLTVGLyZuR2psPwpwLh3E4lWzutUhtYRuYA1oq9+YQ5FyNU7bfXq8eCTKDiGuAs+zY0JaqqddhF8aNiIkqXUxnhKieW1lf8oTcKnWiKuMygjpdfskyKjKIX+8CmpMpkZn51RCBasXfaZ04nK2lqve5naDkbDV8atRKklk/px6TqFJcMYFoiWODzykik1igFbeuNaJ0aw0qqfFdMq1hdaSi3HGCSr9OHVTJ2NdC64IKz93Uek5jGBCuTcPYgMxYhs8NAw21x/KLJ+7p+QHNQLFS0DrlYA) format('woff2');display:inline-block;vertical-align:middle;line-height:1;font-weight:400;font-style:normal;speak:none;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.social-logo__amazon:before{content:"\f600"}.social-logo__behance:before{content:"\f101"}.social-logo__blogger-alt:before{content:"\f601"}.social-logo__blogger:before{content:"\f602"}.social-logo__bluesky:before{content:"\f10f"}.social-logo__codepen:before{content:"\f216"}.social-logo__dribbble:before{content:"\f201"}.social-logo__dropbox:before{content:"\f225"}.social-logo__eventbrite:before{content:"\f603"}.social-logo__facebook:before{content:"\f203"}.social-logo__fediverse:before{content:"\f10b"}.social-logo__feed:before{content:"\f413"}.social-logo__flickr:before{content:"\f211"}.social-logo__foursquare:before{content:"\f226"}.social-logo__ghost:before{content:"\f61c"}.social-logo__github:before{content:"\f200"}.social-logo__google-alt:before{content:"\f102"}.social-logo__google-plus-alt:before{content:"\f218"}.social-logo__google-plus:before{content:"\f206"}.social-logo__google:before{content:"\f103"}.social-logo__instagram:before{content:"\f215"}.social-logo__link:before{content:"\f109"}.social-logo__linkedin:before{content:"\f207"}.social-logo__mail:before{content:"\f410"}.social-logo__mastodon:before{content:"\f10a"}.social-logo__medium-alt:before{content:"\f106"}.social-logo__medium:before{content:"\f623"}.social-logo__nextdoor:before{content:"\f10c"}.social-logo__patreon:before{content:"\f105"}.social-logo__pinterest-alt:before{content:"\f210"}.social-logo__pinterest:before{content:"\f209"}.social-logo__pocket:before{content:"\f224"}.social-logo__polldaddy:before{content:"\f217"}.social-logo__print:before{content:"\f469"}.social-logo__reddit:before{content:"\f222"}.social-logo__share:before{content:"\f415"}.social-logo__skype:before{content:"\f220"}.social-logo__sms:before{content:"\f110"}.social-logo__spotify:before{content:"\f515"}.social-logo__squarespace:before{content:"\f605"}.social-logo__stumbleupon:before{content:"\f223"}.social-logo__telegram:before{content:"\f606"}.social-logo-threads:before{content:"\f10d"}.social-logo__tiktok-alt:before{content:"\f107"}.social-logo__tiktok:before{content:"\f108"}.social-logo__tumblr-alt:before{content:"\f607"}.social-logo__tumblr:before{content:"\f214"}.social-logo__twitch:before{content:"\f516"}.social-logo__twitter-alt:before{content:"\f10e"}.social-logo__twitter:before{content:"\f610"}.social-logo__vimeo:before{content:"\f212"}.social-logo__whatsapp:before{content:"\f608"}.social-logo__woocommerce:before{content:"\f104"}.social-logo__wordpress:before{content:"\f205"}.social-logo__x:before{content:"\f10e"}.social-logo__xanga:before{content:"\f609"}.social-logo__youtube:before{content:"\f213"}
