/*
Theme Name: HeightFit
Theme URI: https://height.fit
Author: HeightFit Team
Author URI: https://height.fit
Description: A modern WordPress theme for height maximization website with custom post types for FAQ, Articles, Workouts, and Nutrition
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: heightfit
Tags: fitness, health, custom-post-types, responsive, modern
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.site-header {
    background: white;
    padding: 1.5rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2563eb;
    text-decoration: none;
}

.site-tagline {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.main-navigation ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #2563eb;
}

.cta-button {
    background: #ef4444;
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 5% 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #667eea;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid white;
    transition: background 0.3s;
    display: inline-block;
}

.features-section {
    padding: 6rem 5%;
    background: #f8fafc;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

.content-section {
    --max-width: 1200px;
    margin: 0 auto;
    --padding: 4rem 5%;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.post-excerpt {
    color: #64748b;
    margin-bottom: 1rem;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.site-footer {
    background: #1e293b;
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

.footer-content p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@font-face {
    font-family: 'Roobert';
    font-weight: 800;
    font-display: swap;
    src: url('assets/fonts/Roobert-Heavy.woff2') format('woff2'),
         url('assets/fonts/Roobert-Heavy.woff') format('woff'),
         url('assets/fonts/Roobert-Heavy.ttf') format('truetype'),
         url('assets/fonts/Roobert-Heavy.eot?#iefix') format('embedded-opentype'),
         url('assets/fonts/Roobert-Heavy.otf') format('opentype');
}

@font-face {
    font-family: 'Roobert';
    font-weight: 900;
    font-display: swap;
    src: url('/wp-content/themes/heightfit/assets/fonts/Roobert-HeavyItalic.woff2') format('woff2'),
         url('/wp-content/themes/heightfit/assets/fonts/Roobert-HeavyItalic.woff') format('woff'),
         url('/wp-content/themes/heightfit/assets/fonts/Roobert-HeavyItalic.ttf') format('truetype'),
         url('/wp-content/themes/heightfit/assets/fonts/Roobert-HeavyItalic.eot?#iefix') format('embedded-opentype'),
         url('/wp-content/themes/heightfit/assets/fonts/Roobert-HeavyItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Akkurat';
    font-weight: 400;
    font-display: swap;
    src: url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Regular.woff2') format('woff2'),
         url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Regular.woff') format('woff'),
         url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Regular.ttf') format('truetype'),
         url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Regular.eot?#iefix') format('embedded-opentype'),
         url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Akkurat';
    font-weight: 700;
    font-display: swap;
    src: url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Bold.woff2') format('woff2'),
         url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Bold.woff') format('woff'),
         url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Bold.ttf') format('truetype'),
         url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Bold.eot?#iefix') format('embedded-opentype'),
         url('/wp-content/themes/heightfit/assets/fonts/AkkuratStd-Bold.otf') format('opentype');
}
		.ast-no-sidebar .entry-content .alignfull {
			margin-left: calc(-50vw + 50%);
			margin-right: calc(-50vw + 50%);
			max-width: 100vw;
			width: 100vw
		}

		.ast-no-sidebar .entry-content .alignwide {
			margin-left: calc(-41vw + 50%);
			margin-right: calc(-41vw + 50%);
			max-width: unset;
			width: unset
		}

		.ast-no-sidebar .entry-content .alignfull .alignfull,
		.ast-no-sidebar .entry-content .alignfull .alignwide,
		.ast-no-sidebar .entry-content .alignwide .alignfull,
		.ast-no-sidebar .entry-content .alignwide .alignwide,
		.ast-no-sidebar .entry-content .wp-block-column .alignfull,
		.ast-no-sidebar .entry-content .wp-block-column .alignwide {
			width: 100%;
			margin-left: auto;
			margin-right: auto
		}

		.wp-block-gallery,
		.blocks-gallery-grid {
			margin: 0
		}

		.wp-block-separator {
			max-width: 100px
		}

		.wp-block-separator.is-style-wide,
		.wp-block-separator.is-style-dots {
			max-width: none
		}

		.entry-content .has-2-columns .wp-block-column:first-child {
			padding-right: 10px
		}

		.entry-content .has-2-columns .wp-block-column:last-child {
			padding-left: 10px
		}

		@media (max-width:782px) {
			.entry-content .wp-block-columns .wp-block-column {
				flex-basis: 100%
			}

			.entry-content .has-2-columns .wp-block-column:first-child {
				padding-right: 0
			}

			.entry-content .has-2-columns .wp-block-column:last-child {
				padding-left: 0
			}
		}

		body .entry-content .wp-block-latest-posts {
			margin-left: 0
		}

		body .entry-content .wp-block-latest-posts li {
			list-style: none
		}

		.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts {
			margin-left: 0
		}

		.ast-header-break-point .entry-content .alignwide {
			margin-left: auto;
			margin-right: auto
		}

		.entry-content .blocks-gallery-item img {
			margin-bottom: auto
		}

		.wp-block-pullquote {
			border-top: 4px solid #555d66;
			border-bottom: 4px solid #555d66;
			color: #40464d
		}

		:root {
			--ast-post-nav-space: 0;
			--ast-container-default-xlg-padding: 6.67em;
			--ast-container-default-lg-padding: 5.67em;
			--ast-container-default-slg-padding: 4.34em;
			--ast-container-default-md-padding: 3.34em;
			--ast-container-default-sm-padding: 6.67em;
			--ast-container-default-xs-padding: 2.4em;
			--ast-container-default-xxs-padding: 1.4em;
			--ast-code-block-background: #EEEEEE;
			--ast-comment-inputs-background: #FAFAFA;
			--ast-normal-container-width: 1740px;
			--ast-narrow-container-width: 750px;
			--ast-blog-title-font-weight: normal;
			--ast-blog-meta-weight: inherit;
			--ast-global-color-primary: var(--ast-global-color-5);
			--ast-global-color-secondary: var(--ast-global-color-4);
			--ast-global-color-alternate-background: var(--ast-global-color-7);
			--ast-global-color-subtle-background: var(--ast-global-color-6);
			--ast-bg-style-guide: #F8FAFC;
			--ast-shadow-style-guide: 0px 0px 4px 0 #00000057;
			--ast-global-dark-bg-style: #fff;
			--ast-global-dark-lfs: #fbfbfb;
			--ast-widget-bg-color: #fafafa;
			--ast-wc-container-head-bg-color: #fbfbfb;
			--ast-title-layout-bg: #eeeeee;
			--ast-search-border-color: #e7e7e7;
			--ast-lifter-hover-bg: #e6e6e6;
			--ast-gallery-block-color: #000;
			--srfm-color-input-label: var(--ast-global-color-2)
		}

		html {
			font-size: 93.75%
		}

		a,
		.page-title {
			color: #f2305a
		}

		a:hover,
		a:focus {
			color: #e81845
		}

		body,
		button,
		input,
		select,
		textarea,
		.ast-button,
		.ast-custom-button {
			font-family: Akkurat, Roboto, Helvetica, Arial;
			font-weight: 400;
			font-size: 15px;
			font-size: 1rem;
			line-height: var(--ast-body-line-height, 1.65em)
		}

		blockquote {
			color: #b4b4b4
		}

		h1,
		h2,
		h3,
		h4,
		h5,
		h6,
		.entry-content:where(h1, h2, h3, h4, h5, h6),
		.site-title,
		.site-title a {
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif;
			font-weight: 800;
			line-height: 1.2em
		}

		.ast-site-identity .site-title a {
			color: var(--ast-global-color-2)
		}

		.site-title {
			font-size: 35px;
			font-size: 2.3333333333333rem;
			display: none
		}

		header .custom-logo-link img {
			max-width: 218px;
			width: 218px
		}

		.astra-logo-svg {
			width: 218px
		}

		.site-header .site-description {
			font-size: 15px;
			font-size: 1rem;
			display: none
		}

		.entry-title {
			font-size: 22px;
			font-size: 1.4666666666667rem
		}

		.archive .ast-article-post .ast-article-inner,
		.blog .ast-article-post .ast-article-inner,
		.archive .ast-article-post .ast-article-inner:hover,
		.blog .ast-article-post .ast-article-inner:hover {
			overflow: hidden
		}

		h1,
		.entry-content:where(h1) {
			font-size: 44px;
			font-size: 2.9333333333333rem;
			font-weight: 900;
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif;
			line-height: 1.4em
		}

		h2,
		.entry-content:where(h2) {
			font-size: 30px;
			font-size: 2rem;
			font-weight: 900;
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif;
			line-height: 1.3em
		}

		h3,
		.entry-content:where(h3) {
			font-size: 25px;
			font-size: 1.6666666666667rem;
			font-weight: 900;
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif;
			line-height: 1.3em
		}

		h4,
		.entry-content:where(h4) {
			font-size: 24px;
			font-size: 1.6rem;
			line-height: 1.2em;
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif
		}

		h5,
		.entry-content:where(h5) {
			font-size: 20px;
			font-size: 1.3333333333333rem;
			line-height: 1.2em;
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif
		}

		h6,
		.entry-content:where(h6) {
			font-size: 16px;
			font-size: 1.0666666666667rem;
			line-height: 1.25em;
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif
		}

		::selection {
			background-color: #f2305a;
			color: #ffffff
		}

		body,
		h1,
		h2,
		h3,
		h4,
		h5,
		h6,
		.entry-title a,
		.entry-content:where(h1, h2, h3, h4, h5, h6) {
			color: #ffffff
		}

		.tagcloud a:hover,
		.tagcloud a:focus,
		.tagcloud a.current-item {
			color: #ffffff;
			border-color: #f2305a;
			background-color: #f2305a
		}

		input:focus,
		input[type="text"]:focus,
		input[type="email"]:focus,
		input[type="url"]:focus,
		input[type="password"]:focus,
		input[type="reset"]:focus,
		input[type="search"]:focus,
		textarea:focus {
			border-color: #f2305a
		}

		input[type="radio"]:checked,
		input[type=reset],
		input[type="checkbox"]:checked,
		input[type="checkbox"]:hover:checked,
		input[type="checkbox"]:focus:checked,
		input[type=range]::-webkit-slider-thumb {
			border-color: #f2305a;
			background-color: #f2305a;
			box-shadow: none
		}

		.site-footer a:hover+.post-count,
		.site-footer a:focus+.post-count {
			background: #f2305a;
			border-color: #f2305a
		}

		.single .nav-links .nav-previous,
		.single .nav-links .nav-next {
			color: #f2305a
		}

		.entry-meta,
		.entry-meta * {
			line-height: 1.45;
			color: #f2305a
		}

		.entry-meta a:not(.ast-button):hover,
		.entry-meta a:not(.ast-button):hover *,
		.entry-meta a:not(.ast-button):focus,
		.entry-meta a:not(.ast-button):focus *,
		.page-links>.page-link,
		.page-links .page-link:hover,
		.post-navigation a:hover {
			color: #e81845
		}

		#cat option,
		.secondary .calendar_wrap thead a,
		.secondary .calendar_wrap thead a:visited {
			color: #f2305a
		}

		.secondary .calendar_wrap #today,
		.ast-progress-val span {
			background: #f2305a
		}

		.secondary a:hover+.post-count,
		.secondary a:focus+.post-count {
			background: #f2305a;
			border-color: #f2305a
		}

		.calendar_wrap #today>a {
			color: #ffffff
		}

		.page-links .page-link,
		.single .post-navigation a {
			color: #f2305a
		}

		.ast-search-menu-icon .search-form button.search-submit {
			padding: 0 4px
		}

		.ast-search-menu-icon form.search-form {
			padding-right: 0
		}

		.ast-search-menu-icon.slide-search input.search-field {
			width: 0
		}

		.ast-header-search .ast-search-menu-icon.ast-dropdown-active .search-form,
		.ast-header-search .ast-search-menu-icon.ast-dropdown-active .search-field:focus {
			transition: all 0.2s
		}

		.search-form input.search-field:focus {
			outline: none
		}

		.widget-title,
		.widget .wp-block-heading {
			font-size: 21px;
			font-size: 1.4rem;
			color: #ffffff
		}

		.single .ast-author-details .author-title {
			color: #e81845
		}

		.ast-search-menu-icon.slide-search a:focus-visible:focus-visible,
		.astra-search-icon:focus-visible,
		#close:focus-visible,
		a:focus-visible,
		.ast-menu-toggle:focus-visible,
		.site .skip-link:focus-visible,
		.wp-block-loginout input:focus-visible,
		.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper,
		.ast-header-navigation-arrow:focus-visible,
		.ast-orders-table__row .ast-orders-table__cell:focus-visible,
		a#ast-apply-coupon:focus-visible,
		#ast-apply-coupon:focus-visible,
		#close:focus-visible,
		.button.search-submit:focus-visible,
		#search_submit:focus,
		.normal-search:focus-visible,
		.ast-header-account-wrap:focus-visible,
		.astra-cart-drawer-close:focus,
		.ast-single-variation:focus,
		.ast-button:focus {
			outline-style: dotted;
			outline-color: inherit;
			outline-width: thin
		}

		input:focus,
		input[type="text"]:focus,
		input[type="email"]:focus,
		input[type="url"]:focus,
		input[type="password"]:focus,
		input[type="reset"]:focus,
		input[type="search"]:focus,
		input[type="number"]:focus,
		textarea:focus,
		.wp-block-search__input:focus,
		[data-section="section-header-mobile-trigger"] .ast-button-wrap .ast-mobile-menu-trigger-minimal:focus,
		.ast-mobile-popup-drawer.active .menu-toggle-close:focus,
		#ast-scroll-top:focus,
		#coupon_code:focus,
		#ast-coupon-code:focus {
			border-style: dotted;
			border-color: inherit;
			border-width: thin
		}

		input {
			outline: none
		}

		.ast-logo-title-inline .site-logo-img {
			padding-right: 1em
		}

		.site-logo-img img {
			transition: all 0.2s linear
		}

		body .ast-oembed-container * {
			position: absolute;
			top: 0;
			width: 100%;
			height: 100%;
			left: 0
		}

		body .wp-block-embed-pocket-casts .ast-oembed-container * {
			position: unset
		}

		.ast-single-post-featured-section+article {
			margin-top: 2em
		}

		.site-content .ast-single-post-featured-section img {
			width: 100%;
			overflow: hidden;
			object-fit: cover
		}

		.site>.ast-single-related-posts-container {
			margin-top: 0
		}

		@media (min-width:922px) {
			.ast-desktop .ast-container--narrow {
				max-width: var(--ast-narrow-container-width);
				margin: 0 auto
			}
		}

		@media (max-width:921.9px) {
			#ast-desktop-header {
				display: none
			}
		}

		@media (min-width:922px) {
			#ast-mobile-header {
				display: none
			}
		}

		.wp-block-buttons.aligncenter {
			justify-content: center
		}

		@media (max-width:921px) {

			.ast-theme-transparent-header #primary,
			.ast-theme-transparent-header #secondary {
				padding: 0
			}
		}

		@media (max-width:921px) {
			.ast-plain-container.ast-no-sidebar #primary {
				padding: 0
			}
		}

		.ast-plain-container.ast-no-sidebar #primary {
			margin-top: 0;
			margin-bottom: 0
		}

		@media (min-width:1200px) {
			.wp-block-group .has-background {
				padding: 20px
			}
		}

		@media (min-width:1200px) {

			.ast-plain-container.ast-no-sidebar .entry-content .alignwide .wp-block-cover__inner-container,
			.ast-plain-container.ast-no-sidebar .entry-content .alignfull .wp-block-cover__inner-container {
				width: 1780px
			}
		}

		@media (min-width:1200px) {

			.wp-block-cover-image.alignwide .wp-block-cover__inner-container,
			.wp-block-cover.alignwide .wp-block-cover__inner-container,
			.wp-block-cover-image.alignfull .wp-block-cover__inner-container,
			.wp-block-cover.alignfull .wp-block-cover__inner-container {
				width: 100%
			}
		}

		.wp-block-columns {
			margin-bottom: unset
		}

		.wp-block-image.size-full {
			margin: 2rem 0
		}

		.wp-block-separator.has-background {
			padding: 0
		}

		.wp-block-gallery {
			margin-bottom: 1.6em
		}

		.wp-block-group {
			padding-top: 4em;
			padding-bottom: 4em
		}

		.wp-block-group__inner-container .wp-block-columns:last-child,
		.wp-block-group__inner-container:last-child,
		.wp-block-table table {
			margin-bottom: 0
		}

		.blocks-gallery-grid {
			width: 100%
		}

		.wp-block-navigation-link__content {
			padding: 5px 0
		}

		.wp-block-group .wp-block-group .has-text-align-center,
		.wp-block-group .wp-block-column .has-text-align-center {
			max-width: 100%
		}

		.has-text-align-center {
			margin: 0 auto
		}

		@media (min-width:1200px) {

			.wp-block-cover__inner-container,
			.alignwide .wp-block-group__inner-container,
			.alignfull .wp-block-group__inner-container {
				max-width: 1200px;
				margin: 0 auto
			}

			.wp-block-group.alignnone,
			.wp-block-group.aligncenter,
			.wp-block-group.alignleft,
			.wp-block-group.alignright,
			.wp-block-group.alignwide,
			.wp-block-columns.alignwide {
				margin: 2rem 0 1rem 0
			}
		}

		@media (max-width:1200px) {
			.wp-block-group {
				padding: 3em
			}

			.wp-block-group .wp-block-group {
				padding: 1.5em
			}

			.wp-block-columns,
			.wp-block-column {
				margin: 1rem 0
			}
		}

		@media (min-width:921px) {
			.wp-block-columns .wp-block-group {
				padding: 2em
			}
		}

		@media (max-width:544px) {

			.wp-block-cover-image .wp-block-cover__inner-container,
			.wp-block-cover .wp-block-cover__inner-container {
				width: unset
			}

			.wp-block-cover,
			.wp-block-cover-image {
				padding: 2em 0
			}

			.wp-block-group,
			.wp-block-cover {
				padding: 2em
			}

			.wp-block-media-text__media img,
			.wp-block-media-text__media video {
				width: unset;
				max-width: 100%
			}

			.wp-block-media-text.has-background .wp-block-media-text__content {
				padding: 1em
			}
		}

		.wp-block-image.aligncenter {
			margin-left: auto;
			margin-right: auto
		}

		.wp-block-table.aligncenter {
			margin-left: auto;
			margin-right: auto
		}

		@media (min-width:544px) {
			.entry-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
				padding: 0 8% 0 0
			}

			.entry-content .wp-block-media-text .wp-block-media-text__content {
				padding: 0 0 0 8%
			}

			.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-left>*,
			.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-bottom-right>*,
			.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-left>*,
			.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-top-right>*,
			.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-right>*,
			.ast-plain-container .site-content .entry-content .has-custom-content-position.is-position-center-left>* {
				margin: 0
			}
		}

		@media (max-width:544px) {
			.entry-content .wp-block-media-text .wp-block-media-text__content {
				padding: 8% 0
			}

			.wp-block-media-text .wp-block-media-text__media img {
				width: auto;
				max-width: 100%
			}
		}

		.wp-block-button.is-style-outline .wp-block-button__link {
			border-color: #f2305a;
			border-top-width: 2px;
			border-right-width: 2px;
			border-bottom-width: 2px;
			border-left-width: 2px
		}

		div.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color),
		div.wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color) {
			color: #f2305a
		}

		.wp-block-button.is-style-outline .wp-block-button__link:hover,
		.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:focus,
		.wp-block-buttons .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color):hover,
		.wp-block-buttons .wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color):hover {
			color: #ffffff;
			background-color: #e81845;
			border-color: #e81845
		}

		.post-page-numbers.current .page-link,
		.ast-pagination .page-numbers.current {
			color: #ffffff;
			border-color: #f2305a;
			background-color: #f2305a
		}

		@media (max-width:921px) {
			.wp-block-button.is-style-outline .wp-block-button__link {
				padding-top: calc(15px - 2px);
				padding-right: calc(30px - 2px);
				padding-bottom: calc(15px - 2px);
				padding-left: calc(30px - 2px)
			}
		}

		@media (max-width:544px) {
			.wp-block-button.is-style-outline .wp-block-button__link {
				padding-top: calc(15px - 2px);
				padding-right: calc(30px - 2px);
				padding-bottom: calc(15px - 2px);
				padding-left: calc(30px - 2px)
			}
		}

		@media (min-width:544px) {
			.entry-content>.alignleft {
				margin-right: 20px
			}

			.entry-content>.alignright {
				margin-left: 20px
			}

			.wp-block-group.has-background {
				padding: 20px
			}
		}

		.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link.wp-element-button,
		.ast-outline-button,
		.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button {
			border-color: #f2305a;
			border-top-width: 2px;
			border-right-width: 2px;
			border-bottom-width: 2px;
			border-left-width: 2px;
			font-family: inherit;
			font-weight: inherit;
			line-height: 1em
		}

		.wp-block-buttons .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color),
		.wp-block-buttons .wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color),
		.ast-outline-button {
			color: #f2305a
		}

		.wp-block-button.is-style-outline .wp-block-button__link:hover,
		.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:focus,
		.wp-block-buttons .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color):hover,
		.wp-block-buttons .wp-block-button.wp-block-button__link.is-style-outline:not(.has-text-color):hover,
		.ast-outline-button:hover,
		.ast-outline-button:focus,
		.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button:hover,
		.wp-block-uagb-buttons-child .uagb-buttons-repeater.ast-outline-button:focus {
			color: #ffffff;
			background-color: #e81845;
			border-color: #e81845
		}

		.wp-block-button .wp-block-button__link.wp-element-button.is-style-outline:not(.has-background),
		.wp-block-button.is-style-outline>.wp-block-button__link.wp-element-button:not(.has-background),
		.ast-outline-button {
			background-color: transparent
		}

		.entry-content[data-ast-blocks-layout]>figure {
			margin-bottom: 1em
		}

		.elementor-widget-container .elementor-loop-container .e-loop-item[data-elementor-type="loop-item"] {
			width: 100%
		}

		@media (max-width:921px) {
			.ast-left-sidebar #content>.ast-container {
				display: flex;
				flex-direction: column-reverse;
				width: 100%
			}

			.ast-separate-container .ast-article-post,
			.ast-separate-container .ast-article-single {
				padding: 1.5em 2.14em
			}

			.ast-author-box img.avatar {
				margin: 20px 0 0 0
			}
		}

		@media (min-width:922px) {

			.ast-separate-container.ast-right-sidebar #primary,
			.ast-separate-container.ast-left-sidebar #primary {
				border: 0
			}

			.search-no-results.ast-separate-container #primary {
				margin-bottom: 4em
			}
		}

		.elementor-widget-button .elementor-button {
			border-style: solid;
			text-decoration: none;
			border-top-width: 0;
			border-right-width: 0;
			border-left-width: 0;
			border-bottom-width: 0
		}

		body .elementor-button.elementor-size-sm,
		body .elementor-button.elementor-size-xs,
		body .elementor-button.elementor-size-md,
		body .elementor-button.elementor-size-lg,
		body .elementor-button.elementor-size-xl,
		body .elementor-button {
			padding-top: 10px;
			padding-right: 40px;
			padding-bottom: 10px;
			padding-left: 40px
		}

		.wp-block-button .wp-block-button__link {
			color: #ffffff
		}

		.elementor-widget-button .elementor-button {
			line-height: 1em
		}

		.wp-block-button .wp-block-button__link:hover,
		.wp-block-button .wp-block-button__link:focus {
			color: #ffffff;
			background-color: #e81845;
			border-color: #e81845
		}

		.elementor-widget-heading h1.elementor-heading-title {
			line-height: 1.4em
		}

		.elementor-widget-heading h2.elementor-heading-title {
			line-height: 1.3em
		}

		.elementor-widget-heading h3.elementor-heading-title {
			line-height: 1.3em
		}

		.elementor-widget-heading h4.elementor-heading-title {
			line-height: 1.2em
		}

		.elementor-widget-heading h5.elementor-heading-title {
			line-height: 1.2em
		}

		.elementor-widget-heading h6.elementor-heading-title {
			line-height: 1.25em
		}

		.wp-block-button .wp-block-button__link {
			border: none;
			background-color: #f2305a;
			color: #ffffff;
			font-family: inherit;
			font-weight: inherit;
			line-height: 1em;
			padding: 15px 30px
		}

		.wp-block-button.is-style-outline .wp-block-button__link {
			border-style: solid;
			border-top-width: 2px;
			border-right-width: 2px;
			border-left-width: 2px;
			border-bottom-width: 2px;
			border-color: #f2305a;
			padding-top: calc(15px - 2px);
			padding-right: calc(30px - 2px);
			padding-bottom: calc(15px - 2px);
			padding-left: calc(30px - 2px)
		}

		@media (max-width:921px) {
			.wp-block-button .wp-block-button__link {
				border: none;
				padding: 15px 30px
			}

			.wp-block-button.is-style-outline .wp-block-button__link {
				padding-top: calc(15px - 2px);
				padding-right: calc(30px - 2px);
				padding-bottom: calc(15px - 2px);
				padding-left: calc(30px - 2px)
			}
		}

		@media (max-width:544px) {
			.wp-block-button .wp-block-button__link {
				border: none;
				padding: 15px 30px
			}

			.wp-block-button.is-style-outline .wp-block-button__link {
				padding-top: calc(15px - 2px);
				padding-right: calc(30px - 2px);
				padding-bottom: calc(15px - 2px);
				padding-left: calc(30px - 2px)
			}
		}

		.menu-toggle,
		button,
		.ast-button,
		.ast-custom-button,
		.button,
		input#submit,
		input[type="button"],
		input[type="submit"],
		input[type="reset"] {
			border-style: solid;
			border-top-width: 0;
			border-right-width: 0;
			border-left-width: 0;
			border-bottom-width: 0;
			color: #ffffff;
			border-color: #f2305a;
			background-color: #f2305a;
			padding-top: 10px;
			padding-right: 40px;
			padding-bottom: 10px;
			padding-left: 40px;
			font-family: inherit;
			font-weight: inherit;
			line-height: 1em
		}

		button:focus,
		.menu-toggle:hover,
		button:hover,
		.ast-button:hover,
		.ast-custom-button:hover .button:hover,
		.ast-custom-button:hover,
		input[type=reset]:hover,
		input[type=reset]:focus,
		input#submit:hover,
		input#submit:focus,
		input[type="button"]:hover,
		input[type="button"]:focus,
		input[type="submit"]:hover,
		input[type="submit"]:focus {
			color: #ffffff;
			background-color: #e81845;
			border-color: #e81845
		}

		@media (max-width:921px) {
			.ast-mobile-header-stack .main-header-bar .ast-search-menu-icon {
				display: inline-block
			}

			.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-stack .main-header-bar .ast-search-icon {
				margin: 0
			}

			.ast-comment-avatar-wrap img {
				max-width: 2.5em
			}

			.ast-comment-meta {
				padding: 0 1.8888em 1.3333em
			}

			.ast-separate-container .ast-comment-list li.depth-1 {
				padding: 1.5em 2.14em
			}

			.ast-separate-container .comment-respond {
				padding: 2em 2.14em
			}
		}

		@media (min-width:544px) {
			.ast-container {
				max-width: 100%
			}
		}

		@media (max-width:544px) {

			.ast-separate-container .ast-article-post,
			.ast-separate-container .ast-article-single,
			.ast-separate-container .comments-title,
			.ast-separate-container .ast-archive-description {
				padding: 1.5em 1em
			}

			.ast-separate-container #content .ast-container {
				padding-left: 0.54em;
				padding-right: 0.54em
			}

			.ast-separate-container .ast-comment-list .bypostauthor {
				padding: .5em
			}

			.ast-search-menu-icon.ast-dropdown-active .search-field {
				width: 170px
			}
		}

		#ast-mobile-header .ast-site-header-cart-li a {
			pointer-events: none
		}

		body,
		.ast-separate-container {
			background-color: #2b2b2a;
			background-image: none
		}

		.ast-no-sidebar.ast-separate-container .entry-content .alignfull {
			margin-left: -6.67em;
			margin-right: -6.67em;
			width: auto
		}

		@media (max-width:1200px) {
			.ast-no-sidebar.ast-separate-container .entry-content .alignfull {
				margin-left: -2.4em;
				margin-right: -2.4em
			}
		}

		@media (max-width:768px) {
			.ast-no-sidebar.ast-separate-container .entry-content .alignfull {
				margin-left: -2.14em;
				margin-right: -2.14em
			}
		}

		@media (max-width:544px) {
			.ast-no-sidebar.ast-separate-container .entry-content .alignfull {
				margin-left: -1em;
				margin-right: -1em
			}
		}

		.ast-no-sidebar.ast-separate-container .entry-content .alignwide {
			margin-left: -20px;
			margin-right: -20px
		}

		.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignfull,
		.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignwide {
			margin-left: auto;
			margin-right: auto;
			width: 100%
		}

		@media (max-width:921px) {
			.widget-title {
				font-size: 20px;
				font-size: 1.4285714285714rem
			}

			body,
			button,
			input,
			select,
			textarea,
			.ast-button,
			.ast-custom-button {
				font-size: 14px;
				font-size: 0.93333333333333rem
			}

			#secondary,
			#secondary button,
			#secondary input,
			#secondary select,
			#secondary textarea {
				font-size: 14px;
				font-size: 0.93333333333333rem
			}

			.site-title {
				display: none
			}

			.site-header .site-description {
				display: none
			}

			h1,
			.entry-content:where(h1) {
				font-size: 30px
			}

			h2,
			.entry-content:where(h2) {
				font-size: 32px
			}

			h3,
			.entry-content:where(h3) {
				font-size: 25px
			}

			.astra-logo-svg {
				width: 218px
			}

			header .custom-logo-link img,
			.ast-header-break-point .site-logo-img .custom-mobile-logo-link img {
				max-width: 218px;
				width: 218px
			}
		}

		@media (max-width:544px) {
			.widget-title {
				font-size: 20px;
				font-size: 1.4285714285714rem
			}

			body,
			button,
			input,
			select,
			textarea,
			.ast-button,
			.ast-custom-button {
				font-size: 14px;
				font-size: 0.93333333333333rem
			}

			#secondary,
			#secondary button,
			#secondary input,
			#secondary select,
			#secondary textarea {
				font-size: 14px;
				font-size: 0.93333333333333rem
			}

			.site-title {
				display: none
			}

			.site-header .site-description {
				display: none
			}

			.entry-title {
				font-size: 18px;
				font-size: 1.2rem
			}

			h1,
			.entry-content:where(h1) {
				font-size: 34px
			}

			h2,
			.entry-content:where(h2) {
				font-size: 32px
			}

			h3,
			.entry-content:where(h3) {
				font-size: 25px
			}

			header .custom-logo-link img,
			.ast-header-break-point .site-branding img,
			.ast-header-break-point .custom-logo-link img {
				max-width: 150px;
				width: 150px
			}

			.astra-logo-svg {
				width: 218px
			}

			.ast-header-break-point .site-logo-img .custom-mobile-logo-link img {
				max-width: 218px
			}
		}

		@media (max-width:544px) {
			html {
				font-size: 93.75%
			}
		}

		@media (min-width:922px) {
			.ast-container {
				max-width: 1780px
			}
		}

		

		@media (max-width:921px) {
			.site-content .ast-container {
				flex-direction: column
			}
		}

		@media (min-width:922px) {

			.blog .site-content>.ast-container,
			.archive .site-content>.ast-container,
			.search .site-content>.ast-container {
				max-width: 1170px
			}
		}

		@media (min-width:922px) {

			.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover>.sub-menu,
			.main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus>.sub-menu {
				margin-left: -0px
			}
		}

		.site .comments-area {
			padding-bottom: 3em
		}

		blockquote {
			padding: 1.2em
		}

		:root .has-ast-global-color-0-color {
			color: var(--ast-global-color-0)
		}

		:root .has-ast-global-color-0-background-color {
			background-color: var(--ast-global-color-0)
		}

		:root .wp-block-button .has-ast-global-color-0-color {
			color: var(--ast-global-color-0)
		}

		:root .wp-block-button .has-ast-global-color-0-background-color {
			background-color: var(--ast-global-color-0)
		}

		:root .has-ast-global-color-1-color {
			color: var(--ast-global-color-1)
		}

		:root .has-ast-global-color-1-background-color {
			background-color: var(--ast-global-color-1)
		}

		:root .wp-block-button .has-ast-global-color-1-color {
			color: var(--ast-global-color-1)
		}

		:root .wp-block-button .has-ast-global-color-1-background-color {
			background-color: var(--ast-global-color-1)
		}

		:root .has-ast-global-color-2-color {
			color: var(--ast-global-color-2)
		}

		:root .has-ast-global-color-2-background-color {
			background-color: var(--ast-global-color-2)
		}

		:root .wp-block-button .has-ast-global-color-2-color {
			color: var(--ast-global-color-2)
		}

		:root .wp-block-button .has-ast-global-color-2-background-color {
			background-color: var(--ast-global-color-2)
		}

		:root .has-ast-global-color-3-color {
			color: var(--ast-global-color-3)
		}

		:root .has-ast-global-color-3-background-color {
			background-color: var(--ast-global-color-3)
		}

		:root .wp-block-button .has-ast-global-color-3-color {
			color: var(--ast-global-color-3)
		}

		:root .wp-block-button .has-ast-global-color-3-background-color {
			background-color: var(--ast-global-color-3)
		}

		:root .has-ast-global-color-4-color {
			color: var(--ast-global-color-4)
		}

		:root .has-ast-global-color-4-background-color {
			background-color: var(--ast-global-color-4)
		}

		:root .wp-block-button .has-ast-global-color-4-color {
			color: var(--ast-global-color-4)
		}

		:root .wp-block-button .has-ast-global-color-4-background-color {
			background-color: var(--ast-global-color-4)
		}

		:root .has-ast-global-color-5-color {
			color: var(--ast-global-color-5)
		}

		:root .has-ast-global-color-5-background-color {
			background-color: var(--ast-global-color-5)
		}

		:root .wp-block-button .has-ast-global-color-5-color {
			color: var(--ast-global-color-5)
		}

		:root .wp-block-button .has-ast-global-color-5-background-color {
			background-color: var(--ast-global-color-5)
		}

		:root .has-ast-global-color-6-color {
			color: var(--ast-global-color-6)
		}

		:root .has-ast-global-color-6-background-color {
			background-color: var(--ast-global-color-6)
		}

		:root .wp-block-button .has-ast-global-color-6-color {
			color: var(--ast-global-color-6)
		}

		:root .wp-block-button .has-ast-global-color-6-background-color {
			background-color: var(--ast-global-color-6)
		}

		:root .has-ast-global-color-7-color {
			color: var(--ast-global-color-7)
		}

		:root .has-ast-global-color-7-background-color {
			background-color: var(--ast-global-color-7)
		}

		:root .wp-block-button .has-ast-global-color-7-color {
			color: var(--ast-global-color-7)
		}

		:root .wp-block-button .has-ast-global-color-7-background-color {
			background-color: var(--ast-global-color-7)
		}

		:root .has-ast-global-color-8-color {
			color: var(--ast-global-color-8)
		}

		:root .has-ast-global-color-8-background-color {
			background-color: var(--ast-global-color-8)
		}

		:root .wp-block-button .has-ast-global-color-8-color {
			color: var(--ast-global-color-8)
		}

		:root .wp-block-button .has-ast-global-color-8-background-color {
			background-color: var(--ast-global-color-8)
		}

		:root {
			--ast-global-color-0: #0170B9;
			--ast-global-color-1: #3a3a3a;
			--ast-global-color-2: #3a3a3a;
			--ast-global-color-3: #4B4F58;
			--ast-global-color-4: #F5F5F5;
			--ast-global-color-5: #FFFFFF;
			--ast-global-color-6: #E5E5E5;
			--ast-global-color-7: #424242;
			--ast-global-color-8: #000000
		}

		:root {
			--ast-border-color: #dddddd
		}

		.ast-single-entry-banner {
			-js-display: flex;
			display: flex;
			flex-direction: column;
			justify-content: center;
			text-align: center;
			position: relative;
			background: var(--ast-title-layout-bg)
		}

		.ast-single-entry-banner[data-banner-layout="layout-1"] {
			max-width: 1740px;
			background: inherit;
			padding: 20px 0
		}

		.ast-single-entry-banner[data-banner-width-type="custom"] {
			margin: 0 auto;
			width: 100%
		}

		.ast-single-entry-banner+.site-content .entry-header {
			margin-bottom: 0
		}

		.site .ast-author-avatar {
			--ast-author-avatar-size:
		}

		a.ast-underline-text {
			text-decoration: underline
		}

		.ast-container>.ast-terms-link {
			position: relative;
			display: block
		}

		a.ast-button.ast-badge-tax {
			padding: 4px 8px;
			border-radius: 3px;
			font-size: inherit
		}

		header.entry-header:not(.related-entry-header) {
			text-align: left
		}

		header.entry-header:not(.related-entry-header) .entry-title {
			color: #000000;
			font-weight: 700;
			font-size: 30px;
			font-size: 2rem
		}

		header.entry-header:not(.related-entry-header)>*:not(:last-child) {
			margin-bottom: 10px
		}

		@media (max-width:921px) {
			header.entry-header:not(.related-entry-header) {
				text-align: left
			}
		}

		@media (max-width:544px) {
			header.entry-header:not(.related-entry-header) {
				text-align: left
			}

			header.entry-header:not(.related-entry-header) .entry-title {
				font-size: 22px;
				font-size: 1.4666666666667rem
			}
		}

		.ast-archive-entry-banner {
			-js-display: flex;
			display: flex;
			flex-direction: column;
			justify-content: center;
			text-align: center;
			position: relative;
			background: var(--ast-title-layout-bg)
		}

		.ast-archive-entry-banner[data-banner-width-type="custom"] {
			margin: 0 auto;
			width: 100%
		}

		.ast-archive-entry-banner[data-banner-layout="layout-1"] {
			background: inherit;
			padding: 20px 0;
			text-align: left
		}

		body.archive .ast-archive-description {
			max-width: 1740px;
			width: 100%;
			text-align: left;
			padding-top: 3em;
			padding-right: 3em;
			padding-bottom: 3em;
			padding-left: 3em
		}

		body.archive .ast-archive-description * {
			color: #000000
		}

		body.archive .ast-archive-description .ast-archive-title,
		body.archive .ast-archive-description .ast-archive-title * {
			color: #000000;
			font-weight: 800;
			font-size: 40px;
			font-size: 2.6666666666667rem
		}

		body.archive .ast-archive-description>*:not(:last-child) {
			margin-bottom: 10px
		}

		.archive section.ast-archive-description {
			background-color: #ffffff
		}

		@media (max-width:921px) {
			body.archive .ast-archive-description {
				text-align: left
			}
		}

		@media (max-width:544px) {
			body.archive .ast-archive-description {
				text-align: left
			}

			body.archive .ast-archive-description .ast-archive-title {
				font-size: 28px;
				font-size: 1.8666666666667rem
			}
		}

		.ast-breadcrumbs .trail-browse,
		.ast-breadcrumbs .trail-items,
		.ast-breadcrumbs .trail-items li {
			display: inline-block;
			margin: 0;
			padding: 0;
			border: none;
			background: inherit;
			text-indent: 0;
			text-decoration: none
		}

		.ast-breadcrumbs .trail-browse {
			font-size: inherit;
			font-style: inherit;
			font-weight: inherit;
			color: inherit
		}

		.ast-breadcrumbs .trail-items {
			list-style: none
		}

		.trail-items li::after {
			padding: 0 0.3em;
			content: "\00bb"
		}

		.trail-items li:last-of-type::after {
			display: none
		}

		h1,
		h2,
		h3,
		h4,
		h5,
		h6,
		.entry-content:where(h1, h2, h3, h4, h5, h6) {
			color: #ffffff
		}

		@media (max-width:921px) {

			.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-firstrow .ast-builder-grid-row>*:first-child,
			.ast-builder-grid-row-container.ast-builder-grid-row-tablet-3-lastrow .ast-builder-grid-row>*:last-child {
				grid-column: 1 / -1
			}
		}

		@media (max-width:544px) {

			.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-firstrow .ast-builder-grid-row>*:first-child,
			.ast-builder-grid-row-container.ast-builder-grid-row-mobile-3-lastrow .ast-builder-grid-row>*:last-child {
				grid-column: 1 / -1
			}
		}

		.ast-builder-layout-element[data-section="title_tagline"] {
			display: flex
		}

		@media (max-width:921px) {
			.ast-header-break-point .ast-builder-layout-element[data-section="title_tagline"] {
				display: flex
			}
		}

		@media (max-width:544px) {
			.ast-header-break-point .ast-builder-layout-element[data-section="title_tagline"] {
				display: flex
			}
		}

		.ast-builder-menu-1 {
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif;
			font-weight: normal
		}

		.ast-builder-menu-1 .menu-item>.menu-link {
			font-size: 20px;
			font-size: 1.3333333333333rem;
			color: #ffffff;
			padding-top: 15px;
			padding-bottom: 15px;
			padding-left: 15px;
			padding-right: 15px
		}

		.ast-builder-menu-1 .menu-item>.ast-menu-toggle {
			color: #ffffff
		}

		.ast-builder-menu-1 .sub-menu,
		.ast-builder-menu-1 .inline-on-mobile .sub-menu {
			border-top-width: 2px;
			border-bottom-width: 0;
			border-right-width: 0;
			border-left-width: 0;
			border-color: #f2305a;
			border-style: solid
		}

		.ast-builder-menu-1 .sub-menu .sub-menu {
			top: -2px
		}

		.ast-builder-menu-1 .main-header-menu>.menu-item>.sub-menu,
		.ast-builder-menu-1 .main-header-menu>.menu-item>.astra-full-megamenu-wrapper {
			margin-top: 0
		}

		.ast-desktop .ast-builder-menu-1 .main-header-menu>.menu-item>.sub-menu:before,
		.ast-desktop .ast-builder-menu-1 .main-header-menu>.menu-item>.astra-full-megamenu-wrapper:before {
			height: calc(0px + 2px + 5px)
		}

		.ast-builder-menu-1 .menu-item.menu-item-has-children>.ast-menu-toggle {
			top: 15px;
			right: calc(15px - 0.907em)
		}

		.ast-builder-menu-1 .main-header-menu,
		.ast-builder-menu-1 .main-header-menu .sub-menu {
			background-color: #2b2b2a;
			background-image: none
		}

		.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu .menu-link {
			border-style: none
		}

		@media (max-width:921px) {
			.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children>.ast-menu-toggle {
				top: 0
			}

			.ast-builder-menu-1 .inline-on-mobile .menu-item.menu-item-has-children>.ast-menu-toggle {
				right: -15px
			}

			.ast-builder-menu-1 .menu-item-has-children>.menu-link:after {
				content: unset
			}

			.ast-builder-menu-1 .main-header-menu>.menu-item>.sub-menu,
			.ast-builder-menu-1 .main-header-menu>.menu-item>.astra-full-megamenu-wrapper {
				margin-top: 0
			}
		}

		@media (max-width:544px) {
			.ast-header-break-point .ast-builder-menu-1 .menu-item.menu-item-has-children>.ast-menu-toggle {
				top: 0
			}

			.ast-builder-menu-1 .main-header-menu>.menu-item>.sub-menu,
			.ast-builder-menu-1 .main-header-menu>.menu-item>.astra-full-megamenu-wrapper {
				margin-top: 0
			}
		}

		.ast-builder-menu-1 {
			display: flex
		}

		@media (max-width:921px) {
			.ast-header-break-point .ast-builder-menu-1 {
				display: flex
			}
		}

		@media (max-width:544px) {
			.ast-header-break-point .ast-builder-menu-1 {
				display: flex
			}
		}

		.site-above-footer-wrap {
			padding-top: 20px;
			padding-bottom: 20px
		}

		.site-above-footer-wrap[data-section="section-above-footer-builder"] {
			background-color: #212220;
			background-image: none;
			min-height: 60px
		}

		.site-above-footer-wrap[data-section="section-above-footer-builder"] .ast-builder-grid-row {
			max-width: 1740px;
			min-height: 60px;
			margin-left: auto;
			margin-right: auto
		}

		.site-above-footer-wrap[data-section="section-above-footer-builder"] .ast-builder-grid-row,
		.site-above-footer-wrap[data-section="section-above-footer-builder"] .site-footer-section {
			align-items: flex-start
		}

		.site-above-footer-wrap[data-section="section-above-footer-builder"].ast-footer-row-inline .site-footer-section {
			display: flex;
			margin-bottom: 0
		}

		.ast-builder-grid-row-full .ast-builder-grid-row {
			grid-template-columns: 1fr
		}

		@media (max-width:921px) {
			.site-above-footer-wrap[data-section="section-above-footer-builder"].ast-footer-row-tablet-inline .site-footer-section {
				display: flex;
				margin-bottom: 0
			}

			.site-above-footer-wrap[data-section="section-above-footer-builder"].ast-footer-row-tablet-stack .site-footer-section {
				display: block;
				margin-bottom: 10px
			}

			.ast-builder-grid-row-container.ast-builder-grid-row-tablet-full .ast-builder-grid-row {
				grid-template-columns: 1fr
			}
		}

		@media (max-width:544px) {
			.site-above-footer-wrap[data-section="section-above-footer-builder"].ast-footer-row-mobile-inline .site-footer-section {
				display: flex;
				margin-bottom: 0
			}

			.site-above-footer-wrap[data-section="section-above-footer-builder"].ast-footer-row-mobile-stack .site-footer-section {
				display: block;
				margin-bottom: 10px
			}

			.ast-builder-grid-row-container.ast-builder-grid-row-mobile-full .ast-builder-grid-row {
				grid-template-columns: 1fr
			}
		}

		.site-above-footer-wrap[data-section="section-above-footer-builder"] {
			display: grid
		}

		@media (max-width:921px) {
			.ast-header-break-point .site-above-footer-wrap[data-section="section-above-footer-builder"] {
				display: grid
			}
		}

		@media (max-width:544px) {
			.ast-header-break-point .site-above-footer-wrap[data-section="section-above-footer-builder"] {
				display: grid
			}
		}

		.elementor-posts-container [CLASS*="ast-width-"] {
			width: 100%
		}

		.elementor-template-full-width .ast-container {
			display: block
		}

		.elementor-screen-only,
		.screen-reader-text,
		.screen-reader-text span,
		.ui-helper-hidden-accessible {
			top: 0 !important
		}

		@media (max-width:544px) {
			.elementor-element .elementor-wc-products .woocommerce[class*="columns-"] ul.products li.product {
				width: auto;
				margin: 0
			}

			.elementor-element .woocommerce .woocommerce-result-count {
				float: none
			}
		}

		.ast-desktop .ast-mega-menu-enabled .ast-builder-menu-1 div:not(.astra-full-megamenu-wrapper) .sub-menu,
		.ast-builder-menu-1 .inline-on-mobile .sub-menu,
		.ast-desktop .ast-builder-menu-1 .astra-full-megamenu-wrapper,
		.ast-desktop .ast-builder-menu-1 .menu-item .sub-menu {
			box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.1)
		}

		.ast-desktop .ast-mobile-popup-drawer.active .ast-mobile-popup-inner {
			max-width: 35%
		}

		@media (max-width:921px) {
			.ast-mobile-popup-drawer.active .ast-mobile-popup-inner {
				max-width: 90%
			}
		}

		@media (max-width:544px) {
			.ast-mobile-popup-drawer.active .ast-mobile-popup-inner {
				max-width: 90%
			}
		}

		.ast-header-break-point .main-header-bar {
			border-bottom-width: 1px
		}

		@media (min-width:922px) {
			.main-header-bar {
				border-bottom-width: 1px
			}
		}

		.main-header-menu .menu-item,
		#astra-footer-menu .menu-item,
		.main-header-bar .ast-masthead-custom-menu-items {
			-js-display: flex;
			display: flex;
			-webkit-box-pack: center;
			-webkit-justify-content: center;
			-moz-box-pack: center;
			-ms-flex-pack: center;
			justify-content: center;
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			-webkit-flex-direction: column;
			-moz-box-orient: vertical;
			-moz-box-direction: normal;
			-ms-flex-direction: column;
			flex-direction: column
		}

		.main-header-menu>.menu-item>.menu-link,
		#astra-footer-menu>.menu-item>.menu-link {
			height: 100%;
			-webkit-box-align: center;
			-webkit-align-items: center;
			-moz-box-align: center;
			-ms-flex-align: center;
			align-items: center;
			-js-display: flex;
			display: flex
		}

		.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg {
			top: .2em;
			margin-top: 0px;
			margin-left: 0px;
			width: .65em;
			transform: translate(0, -2px) rotateZ(270deg)
		}

		.ast-mobile-popup-content .ast-submenu-expanded>.ast-menu-toggle {
			transform: rotateX(180deg);
			overflow-y: auto
		}

		@media (min-width:922px) {
			.ast-builder-menu .main-navigation>ul>li:last-child a {
				margin-right: 0
			}
		}

		.ast-separate-container .ast-article-inner {
			background-color: #ffffff;
			background-image: none
		}

		@media (max-width:921px) {
			.ast-separate-container .ast-article-inner {
				background-color: #ffffff;
				background-image: none
			}
		}

		@media (max-width:544px) {
			.ast-separate-container .ast-article-inner {
				background-color: #ffffff;
				background-image: none
			}
		}

		.ast-separate-container .ast-article-single:not(.ast-related-post),
		.ast-separate-container .error-404,
		.ast-separate-container .no-results,
		.single.ast-separate-container.ast-author-meta,
		.ast-separate-container .related-posts-title-wrapper,
		.ast-separate-container .comments-count-wrapper,
		.ast-box-layout.ast-plain-container .site-content,
		.ast-padded-layout.ast-plain-container .site-content,
		.ast-separate-container .ast-archive-description,
		.ast-separate-container .comments-area .comment-respond,
		.ast-separate-container .comments-area .ast-comment-list li,
		.ast-separate-container .comments-area .comments-title {
			background-color: #ffffff;
			background-image: none
		}

		@media (max-width:921px) {

			.ast-separate-container .ast-article-single:not(.ast-related-post),
			.ast-separate-container .error-404,
			.ast-separate-container .no-results,
			.single.ast-separate-container.ast-author-meta,
			.ast-separate-container .related-posts-title-wrapper,
			.ast-separate-container .comments-count-wrapper,
			.ast-box-layout.ast-plain-container .site-content,
			.ast-padded-layout.ast-plain-container .site-content,
			.ast-separate-container .ast-archive-description {
				background-color: #ffffff;
				background-image: none
			}
		}

		@media (max-width:544px) {

			.ast-separate-container .ast-article-single:not(.ast-related-post),
			.ast-separate-container .error-404,
			.ast-separate-container .no-results,
			.single.ast-separate-container.ast-author-meta,
			.ast-separate-container .related-posts-title-wrapper,
			.ast-separate-container .comments-count-wrapper,
			.ast-box-layout.ast-plain-container .site-content,
			.ast-padded-layout.ast-plain-container .site-content,
			.ast-separate-container .ast-archive-description {
				background-color: #ffffff;
				background-image: none
			}
		}

		.ast-separate-container.ast-two-container #secondary .widget {
			background-color: #ffffff;
			background-image: none
		}

		@media (max-width:921px) {
			.ast-separate-container.ast-two-container #secondary .widget {
				background-color: #ffffff;
				background-image: none
			}
		}

		@media (max-width:544px) {
			.ast-separate-container.ast-two-container #secondary .widget {
				background-color: #ffffff;
				background-image: none
			}
		}

		.ast-mobile-header-content>*,
		.ast-desktop-header-content>* {
			padding: 10px 0;
			height: auto
		}

		.ast-mobile-header-content>*:first-child,
		.ast-desktop-header-content>*:first-child {
			padding-top: 10px
		}

		.ast-mobile-header-content>.ast-builder-menu,
		.ast-desktop-header-content>.ast-builder-menu {
			padding-top: 0
		}

		.ast-mobile-header-content>*:last-child,
		.ast-desktop-header-content>*:last-child {
			padding-bottom: 0
		}

		.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search label,
		.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search label {
			width: 100%
		}

		.ast-desktop-header-content .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before {
			transform: rotateX(180deg)
		}

		#ast-desktop-header .ast-desktop-header-content,
		.ast-mobile-header-content .ast-search-icon,
		.ast-desktop-header-content .ast-search-icon,
		.ast-mobile-header-wrap .ast-mobile-header-content,
		.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content,
		.ast-main-header-nav-open.ast-popup-nav-open .ast-desktop-header-content {
			display: none
		}

		.ast-main-header-nav-open.ast-header-break-point #ast-desktop-header .ast-desktop-header-content,
		.ast-main-header-nav-open.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content {
			display: block
		}

		.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up>.menu-item>.sub-menu,
		.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-up>.menu-item .menu-item>.sub-menu,
		.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down>.menu-item>.sub-menu,
		.ast-desktop .ast-desktop-header-content .astra-menu-animation-slide-down>.menu-item .menu-item>.sub-menu,
		.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade>.menu-item>.sub-menu,
		.ast-desktop .ast-desktop-header-content .astra-menu-animation-fade>.menu-item .menu-item>.sub-menu {
			opacity: 1;
			visibility: visible
		}

		.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation {
			width: unset;
			margin: unset
		}

		.ast-mobile-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle,
		.ast-desktop-header-content.content-align-flex-end .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle {
			left: calc(20px - 0.907em);
			right: auto
		}

		.ast-mobile-header-content .ast-search-menu-icon,
		.ast-mobile-header-content .ast-search-menu-icon.slide-search,
		.ast-desktop-header-content .ast-search-menu-icon,
		.ast-desktop-header-content .ast-search-menu-icon.slide-search {
			width: 100%;
			position: relative;
			display: block;
			right: auto;
			transform: none
		}

		.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,
		.ast-mobile-header-content .ast-search-menu-icon .search-form,
		.ast-desktop-header-content .ast-search-menu-icon.slide-search .search-form,
		.ast-desktop-header-content .ast-search-menu-icon .search-form {
			right: 0;
			visibility: visible;
			opacity: 1;
			position: relative;
			top: auto;
			transform: none;
			padding: 0;
			display: block;
			overflow: hidden
		}

		.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,
		.ast-mobile-header-content .ast-search-menu-icon .search-field,
		.ast-desktop-header-content .ast-search-menu-icon.ast-inline-search .search-field,
		.ast-desktop-header-content .ast-search-menu-icon .search-field {
			width: 100%;
			padding-right: 5.5em
		}

		.ast-mobile-header-content .ast-search-menu-icon .search-submit,
		.ast-desktop-header-content .ast-search-menu-icon .search-submit {
			display: block;
			position: absolute;
			height: 100%;
			top: 0;
			right: 0;
			padding: 0 1em;
			border-radius: 0
		}

		.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link {
			padding-left: 30px
		}

		.ast-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link {
			padding-left: 40px
		}

		.ast-mobile-popup-drawer.active .ast-mobile-popup-inner {
			background-color: #ffffff;
		}

		.ast-mobile-header-wrap .ast-mobile-header-content,
		.ast-desktop-header-content {
			background-color: #ffffff;
		}

		.ast-mobile-popup-content>*,
		.ast-mobile-header-content>*,
		.ast-desktop-popup-content>*,
		.ast-desktop-header-content>* {
			padding-top: 0;
			padding-bottom: 0
		}

		.content-align-flex-start .ast-builder-layout-element {
			justify-content: flex-start
		}

		.content-align-flex-start .main-header-menu {
			text-align: left
		}

		.ast-mobile-popup-drawer.active .menu-toggle-close {
			color: #3a3a3a
		}

		.ast-mobile-header-wrap .ast-primary-header-bar,
		.ast-primary-header-bar .site-primary-header-wrap {
			min-height: 70px
		}

		.ast-desktop .ast-primary-header-bar .main-header-menu>.menu-item {
			line-height: 70px
		}

		.ast-header-break-point #masthead .ast-mobile-header-wrap .ast-primary-header-bar,
		.ast-header-break-point #masthead .ast-mobile-header-wrap .ast-below-header-bar,
		.ast-header-break-point #masthead .ast-mobile-header-wrap .ast-above-header-bar {
			padding-left: 20px;
			padding-right: 20px
		}

		.ast-header-break-point .ast-primary-header-bar {
			border-bottom-width: 1px;
			border-bottom-color: #2b2b2a;
			border-bottom-style: solid
		}

		@media (min-width:922px) {
			.ast-primary-header-bar {
				border-bottom-width: 1px;
				border-bottom-color: #2b2b2a;
				border-bottom-style: solid
			}
		}

		.ast-primary-header-bar {
			background-color: #2b2b2a;
			background-image: none
		}

		.ast-primary-header-bar {
			display: block
		}

		@media (max-width:921px) {
			.ast-header-break-point .ast-primary-header-bar {
				display: grid
			}
		}

		@media (max-width:544px) {
			.ast-header-break-point .ast-primary-header-bar {
				display: grid
			}
		}

		[data-section="section-header-mobile-trigger"] .ast-button-wrap .ast-mobile-menu-trigger-minimal {
			color: #f2305a;
			border: none;
			background: transparent
		}

		[data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg {
			width: 20px;
			height: 20px;
			fill: #f2305a
		}

		[data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-wrap .mobile-menu {
			color: #f2305a
		}

		.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children>.ast-menu-toggle {
			top: 0
		}

		.ast-builder-menu-mobile .main-navigation .menu-item-has-children>.menu-link:after {
			content: unset
		}

		.ast-hfb-header .ast-builder-menu-mobile .main-header-menu,
		.ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link,
		.ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link {
			border-style: none
		}

		.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children>.ast-menu-toggle {
			top: 0
		}

		@media (max-width:921px) {
			.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children>.ast-menu-toggle {
				top: 0
			}

			.ast-builder-menu-mobile .main-navigation .menu-item-has-children>.menu-link:after {
				content: unset
			}
		}

		@media (max-width:544px) {
			.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children>.ast-menu-toggle {
				top: 0
			}
		}

		.ast-builder-menu-mobile .main-navigation {
			display: block
		}

		@media (max-width:921px) {
			.ast-header-break-point .ast-builder-menu-mobile .main-navigation {
				display: block
			}
		}

		@media (max-width:544px) {
			.ast-header-break-point .ast-builder-menu-mobile .main-navigation {
				display: block
			}
		}

		.footer-nav-wrap .astra-footer-vertical-menu {
			display: grid
		}

		@media (min-width:769px) {
			.footer-nav-wrap .astra-footer-horizontal-menu li {
				margin: 0
			}

			.footer-nav-wrap .astra-footer-horizontal-menu a {
				padding: 0 0.5em
			}
		}

		@media (min-width:769px) {
			.footer-nav-wrap .astra-footer-horizontal-menu li:first-child a {
				padding-left: 0
			}

			.footer-nav-wrap .astra-footer-horizontal-menu li:last-child a {
				padding-right: 0
			}
		}

		.footer-widget-area[data-section="section-footer-menu"] .astra-footer-horizontal-menu {
			justify-content: flex-start
		}

		.footer-widget-area[data-section="section-footer-menu"] .astra-footer-vertical-menu .menu-item {
			align-items: flex-start
		}

		@media (max-width:921px) {
			.footer-widget-area[data-section="section-footer-menu"] .astra-footer-tablet-horizontal-menu {
				justify-content: center;
				display: flex
			}

			.footer-widget-area[data-section="section-footer-menu"] .astra-footer-tablet-vertical-menu {
				display: grid;
				justify-content: center
			}

			.footer-widget-area[data-section="section-footer-menu"] .astra-footer-tablet-vertical-menu .menu-item {
				align-items: center
			}

			#astra-footer-menu .menu-item>a {
				padding-top: 0px;
				padding-bottom: 0px;
				padding-left: 20px;
				padding-right: 20px
			}
		}

		@media (max-width:544px) {
			.footer-widget-area[data-section="section-footer-menu"] .astra-footer-mobile-horizontal-menu {
				justify-content: center;
				display: flex
			}

			.footer-widget-area[data-section="section-footer-menu"] .astra-footer-mobile-vertical-menu {
				display: grid;
				justify-content: center
			}

			.footer-widget-area[data-section="section-footer-menu"] .astra-footer-mobile-vertical-menu .menu-item {
				align-items: center
			}
		}

		.footer-widget-area[data-section="section-footer-menu"] {
			display: block
		}

		@media (max-width:921px) {
			.ast-header-break-point .footer-widget-area[data-section="section-footer-menu"] {
				display: block
			}
		}

		@media (max-width:544px) {
			.ast-header-break-point .footer-widget-area[data-section="section-footer-menu"] {
				display: block
			}
		}

		:root {
			--e-global-color-astglobalcolor0: #0170B9;
			--e-global-color-astglobalcolor1: #3a3a3a;
			--e-global-color-astglobalcolor2: #3a3a3a;
			--e-global-color-astglobalcolor3: #4B4F58;
			--e-global-color-astglobalcolor4: #F5F5F5;
			--e-global-color-astglobalcolor5: #FFFFFF;
			--e-global-color-astglobalcolor6: #E5E5E5;
			--e-global-color-astglobalcolor7: #424242;
			--e-global-color-astglobalcolor8: #000000
		}
		img.wp-smiley,
		img.emoji {
			display: inline !important;
			border: none !important;
			box-shadow: none !important;
			height: 1em !important;
			width: 1em !important;
			margin: 0 0.07em !important;
			vertical-align: -0.1em !important;
			background: none !important;
			padding: 0 !important
		}
		:root {
			--wp--preset--aspect-ratio--square: 1;
			--wp--preset--aspect-ratio--4-3: 4/3;
			--wp--preset--aspect-ratio--3-4: 3/4;
			--wp--preset--aspect-ratio--3-2: 3/2;
			--wp--preset--aspect-ratio--2-3: 2/3;
			--wp--preset--aspect-ratio--16-9: 16/9;
			--wp--preset--aspect-ratio--9-16: 9/16;
			--wp--preset--color--black: #000000;
			--wp--preset--color--cyan-bluish-gray: #abb8c3;
			--wp--preset--color--white: #ffffff;
			--wp--preset--color--pale-pink: #f78da7;
			--wp--preset--color--vivid-red: #cf2e2e;
			--wp--preset--color--luminous-vivid-orange: #ff6900;
			--wp--preset--color--luminous-vivid-amber: #fcb900;
			--wp--preset--color--light-green-cyan: #7bdcb5;
			--wp--preset--color--vivid-green-cyan: #00d084;
			--wp--preset--color--pale-cyan-blue: #8ed1fc;
			--wp--preset--color--vivid-cyan-blue: #0693e3;
			--wp--preset--color--vivid-purple: #9b51e0;
			--wp--preset--color--ast-global-color-0: var(--ast-global-color-0);
			--wp--preset--color--ast-global-color-1: var(--ast-global-color-1);
			--wp--preset--color--ast-global-color-2: var(--ast-global-color-2);
			--wp--preset--color--ast-global-color-3: var(--ast-global-color-3);
			--wp--preset--color--ast-global-color-4: var(--ast-global-color-4);
			--wp--preset--color--ast-global-color-5: var(--ast-global-color-5);
			--wp--preset--color--ast-global-color-6: var(--ast-global-color-6);
			--wp--preset--color--ast-global-color-7: var(--ast-global-color-7);
			--wp--preset--color--ast-global-color-8: var(--ast-global-color-8);
			--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
			--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
			--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
			--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
			--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
			--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
			--wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
			--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
			--wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
			--wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
			--wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
			--wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
			--wp--preset--font-size--small: 13px;
			--wp--preset--font-size--medium: 20px;
			--wp--preset--font-size--large: 36px;
			--wp--preset--font-size--x-large: 42px;
			--wp--preset--spacing--20: 0.44rem;
			--wp--preset--spacing--30: 0.67rem;
			--wp--preset--spacing--40: 1rem;
			--wp--preset--spacing--50: 1.5rem;
			--wp--preset--spacing--60: 2.25rem;
			--wp--preset--spacing--70: 3.38rem;
			--wp--preset--spacing--80: 5.06rem;
			--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
			--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
			--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
			--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
			--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1)
		}

		:root {
			--wp--style--global--content-size: var(--wp--custom--ast-content-width-size);
			--wp--style--global--wide-size: var(--wp--custom--ast-wide-width-size)
		}

		:where(body) {
			margin: 0
		}

		.wp-site-blocks>.alignleft {
			float: left;
			margin-right: 2em
		}

		.wp-site-blocks>.alignright {
			float: right;
			margin-left: 2em
		}

		.wp-site-blocks>.aligncenter {
			justify-content: center;
			margin-left: auto;
			margin-right: auto
		}

		:where(.wp-site-blocks)>* {
			margin-block-start: 24px;
			margin-block-end: 0
		}

		:where(.wp-site-blocks)>:first-child {
			margin-block-start: 0
		}

		:where(.wp-site-blocks)>:last-child {
			margin-block-end: 0
		}

		:root {
			--wp--style--block-gap: 24px
		}

		:root:where(.is-layout-flow)>:first-child {
			margin-block-start: 0
		}

		:root:where(.is-layout-flow)>:last-child {
			margin-block-end: 0
		}

		:root:where(.is-layout-flow)>* {
			margin-block-start: 24px;
			margin-block-end: 0
		}

		:root:where(.is-layout-constrained)>:first-child {
			margin-block-start: 0
		}

		:root:where(.is-layout-constrained)>:last-child {
			margin-block-end: 0
		}

		:root:where(.is-layout-constrained)>* {
			margin-block-start: 24px;
			margin-block-end: 0
		}

		:root:where(.is-layout-flex) {
			gap: 24px
		}

		:root:where(.is-layout-grid) {
			gap: 24px
		}

		.is-layout-flow>.alignleft {
			float: left;
			margin-inline-start: 0;
			margin-inline-end: 2em
		}

		.is-layout-flow>.alignright {
			float: right;
			margin-inline-start: 2em;
			margin-inline-end: 0
		}

		.is-layout-flow>.aligncenter {
			margin-left: auto !important;
			margin-right: auto !important
		}

		.is-layout-constrained>.alignleft {
			float: left;
			margin-inline-start: 0;
			margin-inline-end: 2em
		}

		.is-layout-constrained>.alignright {
			float: right;
			margin-inline-start: 2em;
			margin-inline-end: 0
		}

		.is-layout-constrained>.aligncenter {
			margin-left: auto !important;
			margin-right: auto !important
		}

		.is-layout-constrained>:where(:not(.alignleft):not(.alignright):not(.alignfull)) {
			max-width: var(--wp--style--global--content-size);
			margin-left: auto !important;
			margin-right: auto !important
		}

		.is-layout-constrained>.alignwide {
			max-width: var(--wp--style--global--wide-size)
		}

		body .is-layout-flex {
			display: flex
		}

		.is-layout-flex {
			flex-wrap: wrap;
			align-items: center
		}

		.is-layout-flex>:is(*, div) {
			margin: 0
		}

		body .is-layout-grid {
			display: grid
		}

		.is-layout-grid>:is(*, div) {
			margin: 0
		}

		body {
			padding-top: 0px;
			padding-right: 0px;
			padding-bottom: 0px;
			padding-left: 0px
		}

		a:where(:not(.wp-element-button)) {
			text-decoration: none
		}

		:root:where(.wp-element-button, .wp-block-button__link) {
			background-color: #32373c;
			border-width: 0;
			color: #fff;
			font-family: inherit;
			font-size: inherit;
			line-height: inherit;
			padding: calc(0.667em + 2px) calc(1.333em + 2px);
			text-decoration: none
		}

		.has-black-color {
			color: var(--wp--preset--color--black) !important
		}

		.has-cyan-bluish-gray-color {
			color: var(--wp--preset--color--cyan-bluish-gray) !important
		}

		.has-white-color {
			color: var(--wp--preset--color--white) !important
		}

		.has-pale-pink-color {
			color: var(--wp--preset--color--pale-pink) !important
		}

		.has-vivid-red-color {
			color: var(--wp--preset--color--vivid-red) !important
		}

		.has-luminous-vivid-orange-color {
			color: var(--wp--preset--color--luminous-vivid-orange) !important
		}

		.has-luminous-vivid-amber-color {
			color: var(--wp--preset--color--luminous-vivid-amber) !important
		}

		.has-light-green-cyan-color {
			color: var(--wp--preset--color--light-green-cyan) !important
		}

		.has-vivid-green-cyan-color {
			color: var(--wp--preset--color--vivid-green-cyan) !important
		}

		.has-pale-cyan-blue-color {
			color: var(--wp--preset--color--pale-cyan-blue) !important
		}

		.has-vivid-cyan-blue-color {
			color: var(--wp--preset--color--vivid-cyan-blue) !important
		}

		.has-vivid-purple-color {
			color: var(--wp--preset--color--vivid-purple) !important
		}

		.has-ast-global-color-0-color {
			color: var(--wp--preset--color--ast-global-color-0) !important
		}

		.has-ast-global-color-1-color {
			color: var(--wp--preset--color--ast-global-color-1) !important
		}

		.has-ast-global-color-2-color {
			color: var(--wp--preset--color--ast-global-color-2) !important
		}

		.has-ast-global-color-3-color {
			color: var(--wp--preset--color--ast-global-color-3) !important
		}

		.has-ast-global-color-4-color {
			color: var(--wp--preset--color--ast-global-color-4) !important
		}

		.has-ast-global-color-5-color {
			color: var(--wp--preset--color--ast-global-color-5) !important
		}

		.has-ast-global-color-6-color {
			color: var(--wp--preset--color--ast-global-color-6) !important
		}

		.has-ast-global-color-7-color {
			color: var(--wp--preset--color--ast-global-color-7) !important
		}

		.has-ast-global-color-8-color {
			color: var(--wp--preset--color--ast-global-color-8) !important
		}

		.has-black-background-color {
			background-color: var(--wp--preset--color--black) !important
		}

		.has-cyan-bluish-gray-background-color {
			background-color: var(--wp--preset--color--cyan-bluish-gray) !important
		}

		.has-white-background-color {
			background-color: var(--wp--preset--color--white) !important
		}

		.has-pale-pink-background-color {
			background-color: var(--wp--preset--color--pale-pink) !important
		}

		.has-vivid-red-background-color {
			background-color: var(--wp--preset--color--vivid-red) !important
		}

		.has-luminous-vivid-orange-background-color {
			background-color: var(--wp--preset--color--luminous-vivid-orange) !important
		}

		.has-luminous-vivid-amber-background-color {
			background-color: var(--wp--preset--color--luminous-vivid-amber) !important
		}

		.has-light-green-cyan-background-color {
			background-color: var(--wp--preset--color--light-green-cyan) !important
		}

		.has-vivid-green-cyan-background-color {
			background-color: var(--wp--preset--color--vivid-green-cyan) !important
		}

		.has-pale-cyan-blue-background-color {
			background-color: var(--wp--preset--color--pale-cyan-blue) !important
		}

		.has-vivid-cyan-blue-background-color {
			background-color: var(--wp--preset--color--vivid-cyan-blue) !important
		}

		.has-vivid-purple-background-color {
			background-color: var(--wp--preset--color--vivid-purple) !important
		}

		.has-ast-global-color-0-background-color {
			background-color: var(--wp--preset--color--ast-global-color-0) !important
		}

		.has-ast-global-color-1-background-color {
			background-color: var(--wp--preset--color--ast-global-color-1) !important
		}

		.has-ast-global-color-2-background-color {
			background-color: var(--wp--preset--color--ast-global-color-2) !important
		}

		.has-ast-global-color-3-background-color {
			background-color: var(--wp--preset--color--ast-global-color-3) !important
		}

		.has-ast-global-color-4-background-color {
			background-color: var(--wp--preset--color--ast-global-color-4) !important
		}

		.has-ast-global-color-5-background-color {
			background-color: var(--wp--preset--color--ast-global-color-5) !important
		}

		.has-ast-global-color-6-background-color {
			background-color: var(--wp--preset--color--ast-global-color-6) !important
		}

		.has-ast-global-color-7-background-color {
			background-color: var(--wp--preset--color--ast-global-color-7) !important
		}

		.has-ast-global-color-8-background-color {
			background-color: var(--wp--preset--color--ast-global-color-8) !important
		}

		.has-black-border-color {
			border-color: var(--wp--preset--color--black) !important
		}

		.has-cyan-bluish-gray-border-color {
			border-color: var(--wp--preset--color--cyan-bluish-gray) !important
		}

		.has-white-border-color {
			border-color: var(--wp--preset--color--white) !important
		}

		.has-pale-pink-border-color {
			border-color: var(--wp--preset--color--pale-pink) !important
		}

		.has-vivid-red-border-color {
			border-color: var(--wp--preset--color--vivid-red) !important
		}

		.has-luminous-vivid-orange-border-color {
			border-color: var(--wp--preset--color--luminous-vivid-orange) !important
		}

		.has-luminous-vivid-amber-border-color {
			border-color: var(--wp--preset--color--luminous-vivid-amber) !important
		}

		.has-light-green-cyan-border-color {
			border-color: var(--wp--preset--color--light-green-cyan) !important
		}

		.has-vivid-green-cyan-border-color {
			border-color: var(--wp--preset--color--vivid-green-cyan) !important
		}

		.has-pale-cyan-blue-border-color {
			border-color: var(--wp--preset--color--pale-cyan-blue) !important
		}

		.has-vivid-cyan-blue-border-color {
			border-color: var(--wp--preset--color--vivid-cyan-blue) !important
		}

		.has-vivid-purple-border-color {
			border-color: var(--wp--preset--color--vivid-purple) !important
		}

		.has-ast-global-color-0-border-color {
			border-color: var(--wp--preset--color--ast-global-color-0) !important
		}

		.has-ast-global-color-1-border-color {
			border-color: var(--wp--preset--color--ast-global-color-1) !important
		}

		.has-ast-global-color-2-border-color {
			border-color: var(--wp--preset--color--ast-global-color-2) !important
		}

		.has-ast-global-color-3-border-color {
			border-color: var(--wp--preset--color--ast-global-color-3) !important
		}

		.has-ast-global-color-4-border-color {
			border-color: var(--wp--preset--color--ast-global-color-4) !important
		}

		.has-ast-global-color-5-border-color {
			border-color: var(--wp--preset--color--ast-global-color-5) !important
		}

		.has-ast-global-color-6-border-color {
			border-color: var(--wp--preset--color--ast-global-color-6) !important
		}

		.has-ast-global-color-7-border-color {
			border-color: var(--wp--preset--color--ast-global-color-7) !important
		}

		.has-ast-global-color-8-border-color {
			border-color: var(--wp--preset--color--ast-global-color-8) !important
		}

		.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
			background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important
		}

		.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
			background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important
		}

		.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
			background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important
		}

		.has-luminous-vivid-orange-to-vivid-red-gradient-background {
			background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important
		}

		.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
			background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important
		}

		.has-cool-to-warm-spectrum-gradient-background {
			background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important
		}

		.has-blush-light-purple-gradient-background {
			background: var(--wp--preset--gradient--blush-light-purple) !important
		}

		.has-blush-bordeaux-gradient-background {
			background: var(--wp--preset--gradient--blush-bordeaux) !important
		}

		.has-luminous-dusk-gradient-background {
			background: var(--wp--preset--gradient--luminous-dusk) !important
		}

		.has-pale-ocean-gradient-background {
			background: var(--wp--preset--gradient--pale-ocean) !important
		}

		.has-electric-grass-gradient-background {
			background: var(--wp--preset--gradient--electric-grass) !important
		}

		.has-midnight-gradient-background {
			background: var(--wp--preset--gradient--midnight) !important
		}

		.has-small-font-size {
			font-size: var(--wp--preset--font-size--small) !important
		}

		.has-medium-font-size {
			font-size: var(--wp--preset--font-size--medium) !important
		}

		.has-large-font-size {
			font-size: var(--wp--preset--font-size--large) !important
		}

		.has-x-large-font-size {
			font-size: var(--wp--preset--font-size--x-large) !important
		}

		:root:where(.wp-block-pullquote) {
			font-size: 1.5em;
			line-height: 1.6
		}
	
	
		#content:before {
			content: "921";
			position: absolute;
			overflow: hidden;
			opacity: 0;
			visibility: hidden
		}

		.blog-layout-2 {
			position: relative
		}

		.single .ast-author-details .author-title {
			color: #f2305a
		}

		@media (max-width:921px) {
			.single.ast-separate-container .ast-author-meta {
				padding: 1.5em 2.14em
			}

			.single .ast-author-meta .post-author-avatar {
				margin-bottom: 1em
			}

			.ast-separate-container .ast-grid-2 .ast-article-post,
			.ast-separate-container .ast-grid-3 .ast-article-post,
			.ast-separate-container .ast-grid-4 .ast-article-post {
				width: 100%
			}

			.ast-separate-container .ast-grid-md-1 .ast-article-post {
				width: 100%
			}

			.ast-separate-container .ast-grid-md-2 .ast-article-post.ast-separate-posts,
			.ast-separate-container .ast-grid-md-3 .ast-article-post.ast-separate-posts,
			.ast-separate-container .ast-grid-md-4 .ast-article-post.ast-separate-posts {
				padding: 0 .75em 0
			}

			.blog-layout-1 .post-content,
			.blog-layout-1 .ast-blog-featured-section {
				float: none
			}

			.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .square .posted-on {
				margin-top: 0
			}

			.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on {
				margin-top: 1em
			}

			.ast-separate-container .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content {
				margin-top: -1.5em
			}

			.ast-separate-container .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content {
				margin-left: -2.14em;
				margin-right: -2.14em
			}

			.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child {
				margin-top: -1.5em
			}

			.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .post-thumb-img-content {
				margin-left: -2.14em;
				margin-right: -2.14em
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on {
				margin-left: -1.5em;
				margin-right: -1.5em
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on {
				margin-left: -0.5em;
				margin-right: -0.5em
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .square .posted-on,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .square .posted-on,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .square .posted-on {
				margin-top: 0
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on {
				margin-top: 1em
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content {
				margin-top: -1.5em
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content {
				margin-left: -1.5em;
				margin-right: -1.5em
			}

			.blog-layout-2 {
				display: flex;
				flex-direction: column-reverse
			}

			.ast-separate-container .blog-layout-3,
			.ast-separate-container .blog-layout-1 {
				display: block
			}

			.ast-plain-container .ast-grid-2 .ast-article-post,
			.ast-plain-container .ast-grid-3 .ast-article-post,
			.ast-plain-container .ast-grid-4 .ast-article-post,
			.ast-page-builder-template .ast-grid-2 .ast-article-post,
			.ast-page-builder-template .ast-grid-3 .ast-article-post,
			.ast-page-builder-template .ast-grid-4 .ast-article-post {
				width: 100%
			}

			.ast-separate-container .ast-blog-layout-4-grid .ast-article-post {
				display: flex
			}
		}

		@media (max-width:921px) {
			.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on {
				margin-top: 0;
				margin-left: -2.14em
			}

			.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on {
				margin-top: 0;
				margin-left: -1.14em
			}
		}

		@media (min-width:922px) {

			.ast-separate-container.ast-blog-grid-2 .ast-archive-description,
			.ast-separate-container.ast-blog-grid-3 .ast-archive-description,
			.ast-separate-container.ast-blog-grid-4 .ast-archive-description {
				margin-bottom: 1.33333em
			}

			.blog-layout-2.ast-no-thumb .post-content,
			.blog-layout-3.ast-no-thumb .post-content {
				width: calc(100% - 5.714285714em)
			}

			.blog-layout-2.ast-no-thumb.ast-no-date-box .post-content,
			.blog-layout-3.ast-no-thumb.ast-no-date-box .post-content {
				width: 100%
			}

			.ast-separate-container .ast-grid-2 .ast-article-post.ast-separate-posts,
			.ast-separate-container .ast-grid-3 .ast-article-post.ast-separate-posts,
			.ast-separate-container .ast-grid-4 .ast-article-post.ast-separate-posts {
				border-bottom: 0
			}

			.ast-separate-container .ast-grid-2>.site-main>.ast-row:before,
			.ast-separate-container .ast-grid-2>.site-main>.ast-row:after,
			.ast-separate-container .ast-grid-3>.site-main>.ast-row:before,
			.ast-separate-container .ast-grid-3>.site-main>.ast-row:after,
			.ast-separate-container .ast-grid-4>.site-main>.ast-row:before,
			.ast-separate-container .ast-grid-4>.site-main>.ast-row:after {
				flex-basis: 0;
				width: 0
			}

			.ast-separate-container .ast-grid-2 .ast-article-post,
			.ast-separate-container .ast-grid-3 .ast-article-post,
			.ast-separate-container .ast-grid-4 .ast-article-post {
				display: flex;
				padding: 0
			}

			.ast-plain-container .ast-grid-2>.site-main>.ast-row,
			.ast-plain-container .ast-grid-3>.site-main>.ast-row,
			.ast-plain-container .ast-grid-4>.site-main>.ast-row,
			.ast-page-builder-template .ast-grid-2>.site-main>.ast-row,
			.ast-page-builder-template .ast-grid-3>.site-main>.ast-row,
			.ast-page-builder-template .ast-grid-4>.site-main>.ast-row {
				margin-left: -1em;
				margin-right: -1em;
				display: flex;
				flex-flow: row wrap;
				align-items: stretch
			}

			.ast-plain-container .ast-grid-2>.site-main>.ast-row:before,
			.ast-plain-container .ast-grid-2>.site-main>.ast-row:after,
			.ast-plain-container .ast-grid-3>.site-main>.ast-row:before,
			.ast-plain-container .ast-grid-3>.site-main>.ast-row:after,
			.ast-plain-container .ast-grid-4>.site-main>.ast-row:before,
			.ast-plain-container .ast-grid-4>.site-main>.ast-row:after,
			.ast-page-builder-template .ast-grid-2>.site-main>.ast-row:before,
			.ast-page-builder-template .ast-grid-2>.site-main>.ast-row:after,
			.ast-page-builder-template .ast-grid-3>.site-main>.ast-row:before,
			.ast-page-builder-template .ast-grid-3>.site-main>.ast-row:after,
			.ast-page-builder-template .ast-grid-4>.site-main>.ast-row:before,
			.ast-page-builder-template .ast-grid-4>.site-main>.ast-row:after {
				flex-basis: 0;
				width: 0
			}

			.ast-plain-container .ast-grid-2 .ast-article-post,
			.ast-plain-container .ast-grid-3 .ast-article-post,
			.ast-plain-container .ast-grid-4 .ast-article-post,
			.ast-page-builder-template .ast-grid-2 .ast-article-post,
			.ast-page-builder-template .ast-grid-3 .ast-article-post,
			.ast-page-builder-template .ast-grid-4 .ast-article-post {
				display: flex
			}

			.ast-plain-container .ast-grid-2 .ast-article-post:last-child,
			.ast-plain-container .ast-grid-3 .ast-article-post:last-child,
			.ast-plain-container .ast-grid-4 .ast-article-post:last-child,
			.ast-page-builder-template .ast-grid-2 .ast-article-post:last-child,
			.ast-page-builder-template .ast-grid-3 .ast-article-post:last-child,
			.ast-page-builder-template .ast-grid-4 .ast-article-post:last-child {
				margin-bottom: 1.5em
			}

			.ast-separate-container .ast-grid-2>.site-main>.ast-row,
			.ast-separate-container .ast-grid-3>.site-main>.ast-row,
			.ast-separate-container .ast-grid-4>.site-main>.ast-row {
				margin-left: 0;
				margin-right: 0;
				display: flex;
				flex-flow: row wrap;
				align-items: stretch
			}

			.single .ast-author-meta .ast-author-details {
				display: flex
			}
		}

		@media (min-width:922px) {

			.single .post-author-avatar,
			.single .post-author-bio {
				float: left;
				clear: right
			}

			.single .ast-author-meta .post-author-avatar {
				margin-right: 1.33333em
			}

			.single .ast-author-meta .about-author-title-wrapper,
			.single .ast-author-meta .post-author-bio {
				text-align: left
			}

			.blog-layout-2 .post-content {
				padding-right: 2em
			}

			.blog-layout-2.ast-no-date-box.ast-no-thumb .post-content {
				padding-right: 0
			}

			.blog-layout-3 .post-content {
				padding-left: 2em
			}

			.blog-layout-3.ast-no-date-box.ast-no-thumb .post-content {
				padding-left: 0
			}

			.ast-separate-container .ast-grid-2 .ast-article-post.ast-separate-posts:nth-child(2n+0),
			.ast-separate-container .ast-grid-2 .ast-article-post.ast-separate-posts:nth-child(2n+1),
			.ast-separate-container .ast-grid-3 .ast-article-post.ast-separate-posts:nth-child(2n+0),
			.ast-separate-container .ast-grid-3 .ast-article-post.ast-separate-posts:nth-child(2n+1),
			.ast-separate-container .ast-grid-4 .ast-article-post.ast-separate-posts:nth-child(2n+0),
			.ast-separate-container .ast-grid-4 .ast-article-post.ast-separate-posts:nth-child(2n+1) {
				padding: 0 1em 0
			}
		}

		@media (max-width:544px) {
			.ast-separate-container .ast-grid-sm-1 .ast-article-post {
				width: 100%
			}

			.ast-separate-container .ast-grid-sm-2 .ast-article-post.ast-separate-posts,
			.ast-separate-container .ast-grid-sm-3 .ast-article-post.ast-separate-posts,
			.ast-separate-container .ast-grid-sm-4 .ast-article-post.ast-separate-posts {
				padding: 0 .5em 0
			}

			.ast-separate-container .ast-grid-sm-1 .ast-article-post.ast-separate-posts {
				padding: 0
			}

			.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on {
				margin-top: 0.5em
			}

			.ast-separate-container .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,
			.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .post-thumb-img-content,
			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on {
				margin-left: -1em;
				margin-right: -1em
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on {
				margin-left: -0.5em;
				margin-right: -0.5em
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on {
				margin-top: 0.5em
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content {
				margin-top: -1.33333em
			}

			.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,
			.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,
			.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content {
				margin-left: -1em;
				margin-right: -1em
			}

			.ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-1,
			.ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-2,
			.ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-3 {
				padding: 1.33333em 1em
			}

			.ast-separate-container .ast-grid-3 .ast-article-post .blog-layout-1,
			.ast-separate-container .ast-grid-4 .ast-article-post .blog-layout-1 {
				padding: 1.33333em 1em
			}

			.single.ast-separate-container .ast-author-meta {
				padding: 1.5em 1em
			}
		}

		@media (max-width:544px) {
			.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on {
				margin-left: -1em
			}

			.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on {
				margin-left: -0.5em
			}
		}

		@media (min-width:922px) {
			.ast-hide-display-device-desktop {
				display: none
			}

			[class^="astra-advanced-hook-"] .wp-block-query .wp-block-post-template .wp-block-post {
				width: 100%
			}
		}

		@media (min-width:545px) and (max-width:921px) {
			.ast-hide-display-device-tablet {
				display: none
			}
		}

		@media (max-width:544px) {
			.ast-hide-display-device-mobile {
				display: none
			}
		}

		.ast-article-post .ast-date-meta .posted-on,
		.ast-article-post .ast-date-meta .posted-on * {
			background: #f2305a;
			color: #ffffff
		}

		.ast-article-post .ast-date-meta .posted-on .date-month,
		.ast-article-post .ast-date-meta .posted-on .date-year {
			color: #ffffff
		}

		.ast-loader>div {
			background-color: #f2305a
		}

		.ast-pagination .page-numbers {
			color: #ffffff;
			border-color: #f2305a
		}

		.ast-pagination .page-numbers.current,
		.ast-pagination .page-numbers:focus,
		.ast-pagination .page-numbers:hover {
			color: #ffffff;
			background-color: #f2305a;
			border-color: #f2305a
		}

		.ast-load-more {
			cursor: pointer;
			display: none;
			border: 2px solid var(--ast-border-color);
			transition: all 0.2s linear;
			color: #000
		}

		.ast-load-more.active {
			display: inline-block;
			padding: 0 1.5em;
			line-height: 3em
		}

		.ast-load-more.no-more:hover {
			border-color: var(--ast-border-color);
			color: #000
		}

		.ast-load-more.no-more:hover {
			background-color: inherit
		}

		h1,
		.entry-content:where(h1) {
			color: #000000
		}

		h2,
		.entry-content:where(h2) {
			color: #000000
		}

		h3,
		.entry-content:where(h3) {
			color: #000000
		}

		h4,
		.entry-content:where(h4) {
			color: #000000
		}

		h5,
		.entry-content:where(h5) {
			color: #000000
		}

		h6,
		.entry-content:where(h6) {
			color: #000000
		}

		.widget-area.secondary .sidebar-main .wp-block-heading {
			color: #000000
		}

		.entry-title a {
			color: #000000
		}

		.ast-header-search .ast-search-menu-icon .search-field {
			border-radius: 2px
		}

		.ast-header-search .ast-search-menu-icon .search-submit {
			border-radius: 2px
		}

		.ast-header-search .ast-search-menu-icon .search-form {
			border-top-width: 1px;
			border-bottom-width: 1px;
			border-left-width: 1px;
			border-right-width: 1px;
			border-color: #ddd;
			border-radius: 2px
		}

		.ast-separate-container.ast-single-post .ast-article-post,
		.ast-separate-container.ast-single-post .ast-article-single,
		.ast-separate-container.ast-single-post .ast-comment-list li.depth-1,
		.ast-separate-container.ast-single-post .comment-respond,
		.ast-separate-container.ast-single-post .ast-related-posts-wrap,
		.single.ast-separate-container.ast-single-post .ast-author-meta {
			padding-top: 0em;
			padding-bottom: 5em
		}

		.ast-narrow-container.ast-single-post .ast-article-post,
		.ast-narrow-container.ast-single-post .ast-article-single,
		.ast-narrow-container.ast-single-post .ast-comment-list li.depth-1,
		.ast-narrow-container.ast-single-post .comment-respond,
		.ast-narrow-container.ast-single-post .ast-related-posts-wrap,
		.ast-narrow-container.ast-single-post .ast-single-related-posts-container,
		.single.ast-narrow-container.ast-single-post .ast-author-meta {
			padding-top: 0em;
			padding-bottom: 5em
		}

		.ast-separate-container.ast-single-post .ast-article-post,
		.ast-separate-container.ast-single-post .ast-article-single,
		.ast-separate-container.ast-single-post .comments-count-wrapper,
		.ast-separate-container.ast-single-post .ast-comment-list li.depth-1,
		.ast-separate-container.ast-single-post .comment-respond,
		.ast-separate-container.ast-single-post .related-posts-title-wrapper,
		.ast-separate-container.ast-single-post .related-posts-title-wrapper,
		.ast-separate-container.ast-single-post .ast-related-posts-wrap,
		.single.ast-separate-container.ast-single-post .ast-author-meta {
			padding-right: 5em;
			padding-left: 5em
		}

		.ast-narrow-container.ast-single-post .ast-article-post,
		.ast-narrow-container.ast-single-post .ast-article-single,
		.ast-narrow-container.ast-single-post .comments-count-wrapper,
		.ast-narrow-container.ast-single-post .ast-comment-list li.depth-1,
		.ast-narrow-container.ast-single-post .comment-respond,
		.ast-narrow-container.ast-single-post .related-posts-title-wrapper,
		.ast-narrow-container.ast-single-post .related-posts-title-wrapper,
		.ast-narrow-container.ast-single-post .ast-related-posts-wrap,
		.ast-narrow-container.ast-single-post .ast-single-related-posts-container,
		.single.ast-narrow-container.ast-single-post .ast-author-meta {
			padding-right: 5em;
			padding-left: 5em
		}

		.ast-plain-container #secondary,
		.ast-separate-container #secondary,
		.ast-page-builder-template #secondary {
			margin-top: 0em;
			margin-bottom: 0em
		}

		.ast-right-sidebar #secondary,
		.ast-left-sidebar #secondary,
		.ast-separate-container.ast-two-container.ast-left-sidebar #secondary,
		.ast-separate-container.ast-two-container.ast-right-sidebar #secondary,
		.ast-separate-container.ast-right-sidebar #secondary,
		.ast-separate-container.ast-left-sidebar #secondary {
			padding-left: 1em;
			padding-right: 1em
		}

		.ast-separate-container.ast-two-container #secondary .widget,
		.ast-separate-container #secondary .widget,
		.ast-plain-container #secondary .widget {
			padding-top: 0em;
			padding-bottom: 0em
		}

		.ast-two-container.ast-right-sidebar #secondary .widget,
		.ast-two-container.ast-left-sidebar #secondary .widget,
		.ast-separate-container #secondary .widget,
		.ast-plain-container #secondary .widget {
			padding-left: 1em;
			padding-right: 1em
		}

		.ast-separate-container .primary:not(.ast-grid-1) .ast-article-post.ast-separate-posts:nth-child(2n+0),
		.ast-separate-container .primary:not(.ast-grid-1) .ast-article-post.ast-separate-posts:nth-child(2n+1),
		.ast-narrow-container .primary:not(.ast-grid-1) .ast-article-post.ast-separate-posts:nth-child(2n+0),
		.ast-narrow-container .primary:not(.ast-grid-1) .ast-article-post.ast-separate-posts:nth-child(2n+1) {
			padding-top: 10px;
			padding-right: 10px;
			padding-bottom: 10px;
			padding-left: 10px
		}

		.ast-separate-container .primary:not(.ast-grid-1) .ast-article-inner,
		.ast-narrow-container .primary:not(.ast-grid-1) .ast-article-inner {
			padding-top: 10px;
			padding-right: 10px;
			padding-bottom: 10px;
			padding-left: 10px
		}

		@media (max-width:921px) {

			.ast-separate-container .ast-article-post,
			.ast-separate-container .ast-article-single,
			.ast-separate-container .ast-comment-list li.depth-1,
			.ast-separate-container .comment-respond .ast-separate-container .ast-related-posts-wrap,
			.single.ast-separate-container .ast-author-details {
				padding-top: 1.5em;
				padding-bottom: 1.5em
			}

			.ast-separate-container .ast-article-post,
			.ast-separate-container .ast-article-single,
			.ast-separate-container .comments-count-wrapper,
			.ast-separate-container .ast-comment-list li.depth-1,
			.ast-separate-container .comment-respond,
			.ast-separate-container .related-posts-title-wrapper,
			.ast-separate-container .related-posts-title-wrapper .single.ast-separate-container .about-author-title-wrapper,
			.ast-separate-container .ast-related-posts-wrap,
			.single.ast-separate-container .ast-author-details,
			.ast-separate-container .ast-single-related-posts-container {
				padding-right: 2.14em;
				padding-left: 2.14em
			}

			.ast-narrow-container .ast-article-post,
			.ast-narrow-container .ast-article-single,
			.ast-narrow-container .ast-comment-list li.depth-1,
			.ast-narrow-container .comment-respond,
			.ast-narrow-container .ast-related-posts-wrap,
			.ast-narrow-container .ast-single-related-posts-container,
			.single.ast-narrow-container .ast-author-details {
				padding-top: 1.5em;
				padding-bottom: 1.5em
			}

			.ast-narrow-container .ast-article-post,
			.ast-narrow-container .ast-article-single,
			.ast-narrow-container .comments-count-wrapper,
			.ast-narrow-container .ast-comment-list li.depth-1,
			.ast-narrow-container .comment-respond,
			.ast-narrow-container .related-posts-title-wrapper,
			.ast-narrow-container .related-posts-title-wrapper,
			.single.ast-narrow-container .about-author-title-wrapper,
			.ast-narrow-container .ast-related-posts-wrap,
			.ast-narrow-container .ast-single-related-posts-container,
			.single.ast-narrow-container .ast-author-details {
				padding-right: 2.14em;
				padding-left: 2.14em
			}

			.ast-separate-container.ast-right-sidebar #primary,
			.ast-separate-container.ast-left-sidebar #primary,
			.ast-separate-container #primary,
			.ast-plain-container #primary,
			.ast-narrow-container #primary {
				margin-top: 1.5em;
				margin-bottom: 1.5em
			}

			.ast-left-sidebar #primary,
			.ast-right-sidebar #primary,
			.ast-separate-container.ast-right-sidebar #primary,
			.ast-separate-container.ast-left-sidebar #primary,
			.ast-separate-container #primary,
			.ast-narrow-container #primary {
				padding-left: 0em;
				padding-right: 0em
			}

			.ast-separate-container.ast-single-post .ast-article-post,
			.ast-separate-container.ast-single-post .ast-article-single,
			.ast-separate-container.ast-single-post .ast-comment-list li.depth-1,
			.ast-separate-container.ast-single-post .comment-respond,
			.ast-separate-container.ast-single-post .ast-related-posts-wrap,
			.single.ast-narrow-container.ast-single-post .ast-author-meta {
				padding-top: 0px;
				padding-bottom: 5px
			}

			.ast-narrow-container.ast-single-post .ast-article-post,
			.ast-narrow-container.ast-single-post .ast-article-single,
			.ast-narrow-container.ast-single-post .ast-comment-list li.depth-1,
			.ast-narrow-container.ast-single-post .comment-respond,
			.ast-narrow-container.ast-single-post .ast-related-posts-wrap,
			.ast-narrow-container.ast-single-post .ast-single-related-posts-container,
			.single.ast-separate-container.ast-single-post .ast-author-meta {
				padding-top: 0px;
				padding-bottom: 5px
			}

			.ast-separate-container.ast-single-post .ast-article-post,
			.ast-separate-container.ast-single-post .ast-article-single,
			.ast-separate-container.ast-single-post .comments-count-wrapper,
			.ast-separate-container.ast-single-post .ast-comment-list li.depth-1,
			.ast-separate-container.ast-single-post .comment-respond,
			.ast-separate-container.ast-single-post .related-posts-title-wrapper,
			.ast-separate-container.ast-single-post .related-posts-title-wrapper,
			.ast-separate-container.ast-single-post .ast-related-posts-wrap,
			.single.ast-separate-container.ast-single-post .ast-author-meta {
				padding-right: 5px;
				padding-left: 5px
			}

			.ast-narrow-container.ast-single-post .ast-article-post,
			.ast-narrow-container.ast-single-post .ast-article-single,
			.ast-narrow-container.ast-single-post .comments-count-wrapper,
			.ast-narrow-container.ast-single-post .ast-comment-list li.depth-1,
			.ast-narrow-container.ast-single-post .comment-respond,
			.ast-narrow-container.ast-single-post .related-posts-title-wrapper,
			.ast-narrow-container.ast-single-post .related-posts-title-wrapper,
			.ast-narrow-container.ast-single-post .ast-related-posts-wrap,
			.ast-narrow-container.ast-single-post .ast-single-related-posts-container,
			.single.ast-narrow-container.ast-single-post .ast-author-meta {
				padding-right: 5px;
				padding-left: 5px
			}

			.ast-no-sidebar.ast-separate-container .entry-content .alignfull,
			.ast-no-sidebar.ast-narrow-container .entry-content .alignfull {
				margin-right: -2.14em;
				margin-left: -2.14em
			}
		}

		@media (max-width:544px) {

			.ast-separate-container .ast-article-post,
			.ast-separate-container .ast-article-single,
			.ast-separate-container .ast-comment-list li.depth-1,
			.ast-separate-container .comment-respond,
			.ast-separate-container .ast-related-posts-wrap,
			.single.ast-separate-container .ast-author-details {
				padding-top: 1.5em;
				padding-bottom: 1.5em
			}

			.ast-narrow-container .ast-article-post,
			.ast-narrow-container .ast-article-single,
			.ast-narrow-container .ast-comment-list li.depth-1,
			.ast-narrow-container .comment-respond,
			.ast-narrow-container .ast-related-posts-wrap,
			.ast-narrow-container .ast-single-related-posts-container,
			.single.ast-narrow-container .ast-author-details {
				padding-top: 1.5em;
				padding-bottom: 1.5em
			}

			.ast-separate-container .ast-article-post,
			.ast-separate-container .ast-article-single,
			.ast-separate-container .comments-count-wrapper,
			.ast-separate-container .ast-comment-list li.depth-1,
			.ast-separate-container .comment-respond,
			.ast-separate-container .related-posts-title-wrapper,
			.ast-separate-container .related-posts-title-wrapper,
			.single.ast-separate-container .about-author-title-wrapper,
			.ast-separate-container .ast-related-posts-wrap,
			.single.ast-separate-container .ast-author-details {
				padding-right: 1em;
				padding-left: 1em
			}

			.ast-narrow-container .ast-article-post,
			.ast-narrow-container .ast-article-single,
			.ast-narrow-container .comments-count-wrapper,
			.ast-narrow-container .ast-comment-list li.depth-1,
			.ast-narrow-container .comment-respond,
			.ast-narrow-container .related-posts-title-wrapper,
			.ast-narrow-container .related-posts-title-wrapper,
			.single.ast-narrow-container .about-author-title-wrapper,
			.ast-narrow-container .ast-related-posts-wrap,
			.ast-narrow-container .ast-single-related-posts-container,
			.single.ast-narrow-container .ast-author-details {
				padding-right: 1em;
				padding-left: 1em
			}

			.ast-separate-container.ast-single-post .ast-article-post,
			.ast-separate-container.ast-single-post .ast-article-single,
			.ast-separate-container.ast-single-post .comments-count-wrapper,
			.ast-separate-container.ast-single-post .ast-comment-list li.depth-1,
			.ast-separate-container.ast-single-post .comment-respond,
			.ast-separate-container.ast-single-post .related-posts-title-wrapper,
			.ast-separate-container.ast-single-post .ast-related-posts-wrap,
			.single.ast-separate-container.ast-single-post .ast-author-meta {
				padding-right: 1em;
				padding-left: 1em;
				padding-top: 0em;
				padding-bottom: 1em
			}

			.ast-narrow-container.ast-single-post .ast-article-post,
			.ast-narrow-container.ast-single-post .ast-article-single,
			.ast-narrow-container.ast-single-post .comments-count-wrapper,
			.ast-narrow-container.ast-single-post .ast-comment-list li.depth-1,
			.ast-narrow-container.ast-single-post .comment-respond,
			.ast-narrow-container.ast-single-post .related-posts-title-wrapper,
			.ast-narrow-container.ast-single-post .ast-related-posts-wrap,
			.single.ast-narrow-container.ast-single-post .ast-author-meta {
				padding-right: 1em;
				padding-left: 1em;
				padding-top: 0em;
				padding-bottom: 1em
			}

			.ast-no-sidebar.ast-separate-container .entry-content .alignfull,
			.ast-no-sidebar.ast-narrow-container .entry-content .alignfull {
				margin-right: -1em;
				margin-left: -1em
			}
		}

		.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle {
			top: 0;
			right: calc(20px - 0.907em)
		}

		.ast-flyout-menu-enable.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu>.menu-item-has-children>.ast-menu-toggle {
			right: calc(20px - 0.907em)
		}

		@media (max-width:544px) {

			.ast-header-break-point .header-main-layout-2 .site-branding,
			.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons {
				padding-bottom: 0
			}
		}

		.ast-separate-container.ast-two-container #secondary .widget,
		.ast-separate-container #secondary .widget {
			margin-bottom: 0em
		}

		@media (max-width:921px) {

			.ast-separate-container.ast-two-container #secondary .widget,
			.ast-separate-container #secondary .widget {
				margin-bottom: 1.5em
			}
		}

		@media (max-width:921px) {

			.ast-separate-container #primary,
			.ast-narrow-container #primary {
				padding-top: 0
			}
		}

		@media (max-width:921px) {

			.ast-separate-container #primary,
			.ast-narrow-container #primary {
				padding-bottom: 0
			}
		}

		.ast-separate-container .ast-separate-posts.ast-article-post,
		.ast-narrow-container .ast-separate-posts.ast-article-post {
			margin-bottom: 0
		}

		@media (max-width:921px) {
			.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child {
				margin-top: -1.5em
			}

			.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child,
			.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .post-thumb-img-content {
				margin-left: -2.14em;
				margin-right: -2.14em
			}
		}

		@media (max-width:544px) {
			.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child {
				margin-top: -1.5em
			}

			.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child,
			.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .post-thumb-img-content {
				margin-left: -1em;
				margin-right: -1em
			}
		}

		.ast-separate-container.ast-single-post .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child {
			margin-top: -0em
		}

		.ast-separate-container.ast-single-post .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child,
		.ast-separate-container.ast-single-post .ast-article-single.remove-featured-img-padding .single-layout-1 .post-thumb-img-content {
			margin-left: -5em;
			margin-right: -5em
		}

		@media (max-width:921px) {
			.ast-separate-container.ast-single-post .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child {
				margin-top: -0px
			}

			.ast-separate-container.ast-single-post .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child,
			.ast-separate-container.ast-single-post .ast-article-single.remove-featured-img-padding .single-layout-1 .post-thumb-img-content {
				margin-left: -5px;
				margin-right: -5px
			}
		}

		@media (max-width:544px) {
			.ast-separate-container.ast-single-post .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child {
				margin-top: -0em
			}

			.ast-separate-container.ast-single-post .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child,
			.ast-separate-container.ast-single-post .ast-article-single.remove-featured-img-padding .single-layout-1 .post-thumb-img-content {
				margin-left: -1em;
				margin-right: -1em
			}
		}

		.ast-builder-menu-1 .main-header-menu.submenu-with-border .astra-megamenu,
		.ast-builder-menu-1 .main-header-menu.submenu-with-border .astra-full-megamenu-wrapper {
			border-top-width: 2px;
			border-bottom-width: 0;
			border-right-width: 0;
			border-left-width: 0;
			border-style: solid
		}

		@media (max-width:921px) {
			.ast-header-break-point .ast-builder-menu-1 .main-header-menu .sub-menu>.menu-item>.menu-link {
				padding-top: 0px;
				padding-bottom: 0px;
				padding-left: 30px;
				padding-right: 20px
			}

			.ast-header-break-point .ast-builder-menu-1 .sub-menu .menu-item.menu-item-has-children>.ast-menu-toggle {
				top: 0px;
				right: calc(20px - 0.907em)
			}
		}

		@media (max-width:544px) {
			.ast-header-break-point .ast-builder-menu-1 .sub-menu .menu-item.menu-item-has-children>.ast-menu-toggle {
				top: 0px
			}
		}

		.site-title,
		.site-title a {
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif;
			line-height: 1.23em
		}

		.widget-area.secondary .sidebar-main .wp-block-heading,
		#secondary .widget-title {
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif;
			line-height: 1.23em
		}

		.ast-single-post .entry-title,
		.page-title {
			font-weight: 700
		}

		.ast-archive-description .ast-archive-title {
			font-weight: 800
		}

		.blog .entry-title,
		.blog .entry-title a,
		.archive .entry-title,
		.archive .entry-title a,
		.search .entry-title,
		.search .entry-title a {
			font-family: Roobert, Roboto, Helvetica, Arial, San-Serif;
			font-weight: 700;
			line-height: 1.23em
		}

		.elementor-widget-heading h4.elementor-heading-title {
			line-height: 1.2em
		}

		.elementor-widget-heading h5.elementor-heading-title {
			line-height: 1.2em
		}

		.elementor-widget-heading h6.elementor-heading-title {
			line-height: 1.25em
		}

		.ast-hfb-header.ast-desktop .ast-builder-menu-1 .main-header-menu .menu-item.menu-item-heading>.menu-link {
			font-weight: 700
		}

		.ast-desktop .ast-mm-widget-content .ast-mm-widget-item {
			padding: 0
		}

		.ast-header-break-point .menu-text+.icon-arrow,
		.ast-desktop .menu-link>.icon-arrow:first-child,
		.ast-header-break-point .main-header-menu>.menu-item>.menu-link .icon-arrow,
		.ast-header-break-point .astra-mm-highlight-label+.icon-arrow {
			display: none
		}
		#qrcode canvas {
			display: none
		}

		:root {
			--background-color: #393F43;
			--button-color: #F2305A;
			--button-hover-color: #F26A5D;
			--font-family: 'Roobert', Roboto, Helvetica, Arial, San-Serif
		}

		.heightfit-qr-popup-container-outer img {
			align-self: center
		}

		.heightfit-qr-popup-container-outer {
			top: 0;
			font-family: var(--font-family);
			position: fixed;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.8);
			backdrop-filter: blur(3px);
			-webkit-backdrop-filter: blur(3px);
			display: flex;
			align-items: center;
			justify-content: center;
			z-index: 9999999;
			display: none
		}

		.heightfit-qr-popup-container {
			position: relative;
			display: flex;
			align-items: center;
			height: max-content
		}

		.heightfit-qr-popup-left {
			background: var(--background-color);
			height: max-content;
			padding: 20px
		}

		.heightfit-qr-popup-left-inner {
			border: 1px solid #666;
			height: 300px;
			max-width: 500px;
			justify-content: center;
			text-align: center;
			display: flex;
			flex-direction: column;
			padding: 50px 90px 50px 40px
		}

		.heightfit-qr-popup-right {
			background: #fff;
			z-index: 999;
			margin-left: -120px;
			padding: 20px;
			text-align: left;
			display: flex;
			-webkit-box-shadow: 2px 3px 10px 0px rgba(0, 0, 0, 0.4);
			-moz-box-shadow: 2px 3px 10px 0px rgba(0, 0, 0, 0.4);
			box-shadow: 2px 3px 20px 2px rgba(0, 0, 0, 0.4)
		}

		.heightfit-qr-popup-right img {
			max-width: 200px
		}

		.heightfit-qr-popup-logo {
			text-align: left;
			margin: 0;
			display: flex;
			margin-bottom: 10px
		}

		.heightfit-qr-popup-logo img {
			max-width: 150px;
			margin: 0
		}

		.heightfit-qr-popup-subtitle {
			color: #fff !important;
			letter-spacing: .5px;
			text-align: left;
			max-width: 400px;
			line-height: 1.3em;
			font-weight: 900;
			margin: 0
		}

		.heightfit-qr-popup-closeright {
			content: '';
			background: #fff;
			width: 20px;
			height: 20px;
			cursor: pointer;
			margin-right: -0px;
			margin-top: -40px;
			float: right;
			-webkit-clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
			clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
			position: absolute;
			right: 0;
			top: 0;
			transition: all .2s
		}

		.heightfit-qr-popup-closeright:hover {
			transform: scale(1.1);
			transition: all .2s
		}

		p.heightfit-qr-popup-download img {
			max-height: 45px
		}

		.heightfit-qr-popup-download {
			display: flex;
			margin-top: 10px;
			grid-gap: 5px 5px;
			margin: 10px 0;
			grid-template-columns: 40% 55%
		}
		.rll-youtube-player {
			position: relative;
			padding-bottom: 56.23%;
			height: 0;
			overflow: hidden;
			max-width: 100%
		}

		.rll-youtube-player:focus-within {
			outline: 2px solid currentColor;
			outline-offset: 5px
		}

		.rll-youtube-player iframe {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 100;
			background: 0 0
		}

		.rll-youtube-player img {
			bottom: 0;
			display: block;
			left: 0;
			margin: auto;
			max-width: 100%;
			width: 100%;
			position: absolute;
			right: 0;
			top: 0;
			border: none;
			height: auto;
			-webkit-transition: .4s all;
			-moz-transition: .4s all;
			transition: .4s all
		}

		.rll-youtube-player img:hover {
			-webkit-filter: brightness(75%)
		}

		.rll-youtube-player .play {
			height: 100%;
			width: 100%;
			left: 0;
			top: 0;
			position: absolute;
			background: url(https://heightfit.me/wp-content/plugins/wp-rocket/assets/img/youtube.png) no-repeat center;
			background-color: transparent !important;
			cursor: pointer;
			border: none
		}

		.wp-embed-responsive .wp-has-aspect-ratio .rll-youtube-player {
			position: absolute;
			padding-bottom: 0;
			width: 100%;
			height: 100%;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0
		}
		@import url(https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp);

		:root {
			--background-color: #393f43;
			--button-color: #f26a5d;
			--button-hover-color: #f26a5d
		}

		body.single-post,
		html {
			overflow-x: hidden
		}

		.heightfit-fs-Container {
			display: block;
			background: var(--background-color);
			max-width: 650px;
			margin: auto;
			border-radius: 15px;
			padding: 45px 20px;
			display: flex;
			color: #fff;
			justify-content: center;
			align-content: center;
			align-items: center;
			position: relative;
			margin-top: 50px
		}

		.heightfit-fs-left {
			width: 45%;
			height: max-content
		}

		.heightfit-fs-Right {
			width: 55%;
			height: max-content;
			padding: 0 0 0 30px
		}

		.heightfit-fs-img img {
			max-width: 160px !important;
			margin: 20px auto;
			display: block
		}

		.heightfit-fs-CTA a {
			text-decoration: none;
			text-align: center;
			font-weight: 700;
			background: var(--button-color);
			display: block;
			padding: 10px 0;
			border-radius: 50px;
			max-width: 100%;
			margin: 10px auto;
			font-size: 18px;
			color: #fff;
			transition: all ease 0.2s
		}

		.heightfit-fs-CTA a:hover {
			background: var(--button-hover-color);
			opacity: 0.8
		}

		.heightfit-fs-Right span {
			font-style: italic;
			font-size: 16px;
			line-height: 1.3em;
			text-align: center;
			font-weight: 200;
			max-width: 300px;
			margin: auto;
			display: block;
			letter-spacing: 0
		}

		.heightfit-fs-Right i b {
			font-weight: 400 !important
		}

		.heightfit-fs-Right-review {
			margin-top: 0;
			padding-top: 20px
		}

		.heightfit-fs-Right-review p {
			font-weight: 300;
			text-align: center;
			font-size: 16px;
			margin: 0;
			font-style: italic;
			line-height: 1.3em;
			letter-spacing: 0;
			max-width: 300px;
			margin: auto
		}

		.heightfit-fs-Right-review span {
			font-size: 14px
		}

		@media screen and (max-width:768px) {
			.heightfit-fs-Container {
				flex-direction: column;
				padding: 10px 20px 40px
			}

			.heightfit-fs-Container>div {
				width: 100%
			}

			.heightfit-fs-Container::after {
				right: 0;
				transform: scale(0.6);
				margin-top: -20px
			}

			.heightfit-fs-Right-review {
				float: unset;
				text-align: center;
				display: block;
				margin: auto
			}

			.heightfit-fs-Right {
				padding: 0 !important
			}

			.heightfit-fs-CTA a {
				font-size: 23px
			}

			.heightfit-fs-Right span {
				font-size: 16px
			}

			.heightfit-fs-Right-review p {
				font-size: 18px;
				max-width: 250px;
				margin: auto
			}
		}

		.single-post footer>div {
			padding-bottom: 120px
		}

		.heightfit-st-container {
			display: flex;
			z-index: 1999;
			width: 100%;
			position: fixed;
			left: 0;
			background-color: #353442 !important;
			height: 70px;
			transition: all 0.3s ease-in-out;
			padding-top: 5px;
			-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
			-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
			box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
			overflow: hidden
		}

		.heightfit-st-container__outer {
			display: flex;
			margin: auto;
			height: 100%;
			justify-content: center;
			align-items: center;
			z-index: 99999
		}

		.heightfit-st-container__inner {
			display: flex;
			flex-direction: row;
			padding: 0px 0px;
			text-align: center
		}

		.heightfit-st-container__inner div {
			display: flex;
			flex-direction: column;
			margin-top: -5px
		}

		.heightfit-st-item__copy p {
			font-size: 18px !important;
			line-height: 1.3em !important;
			display: block;
			margin: auto;
			margin-top: 20px !important;
			max-width: 400px;
			margin: auto !important;
			text-align: center;
			color: #fff !important;
			font-weight: 300;
			letter-spacing: 0.3px;
			color: #000;
			margin-top: 20px;
			padding: 0 1px;
			font-weight: 600
		}

		a.heightfit-st-item__button {
			background-color: var(--button-color);
			color: #fff;
			font-size: 18px;
			padding: 10px 10px !important;
			display: block;
			min-width: 200px;
			text-decoration: none;
			margin: auto;
			border-radius: 50px;
			font-weight: 700;
			cursor: pointer;
			transition: 0.2s ease-in-out;
			line-height: 1.3em;
			background: #F2305A;
			box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
			border-radius: 6px
		}

		a.heightfit-st-item__button:hover {
			background-color: var(--button-hover-color);
			color: #fff !important;
			opacity: 0.8
		}

		.heightfit-st-item_column__button {
			margin-left: 15px;
			z-index: 99999999 !important
		}

		@media screen and (max-width:768px) {
			div.heightfit-st-item__copy p {
				font-size: 17px !important
			}

			.heightfit-st-container {
				z-index: 1999;
				padding-top: 5px;
				position: fixed;
				height: 85px
			}

			.heightfit-st-container__inner {
				display: flex;
				flex-direction: column;
				padding: 0px 0px;
				text-align: center;
				margin: auto;
				margin-top: 5px;
				height: 100%
			}

			a.heightfit-st-item__button {
				padding: 10px 10px !important;
				background-size: contain !important;
				background-position: 5px 0px;
				display: block;
				width: 200px;
				width: 90%;
				text-decoration: none;
				margin: auto;
				line-height: 1em;
				font-size: 22px
			}

			.heightfit-st-item_column__button {
				margin-left: 0px;
				margin-top: 5px !important
			}

			.heightfit-st-container__outer {
				display: block;
				margin: auto;
				height: 100%;
				width: 90%
			}
		}

		.heightfit-exit-container {
			min-height: 200px;
			max-width: 700px;
			display: flex;
			margin: auto;
			border-radius: 10px;
			flex-direction: row;
			justify-content: center
		}

		.heightfit-exit-closeright-contaier {
			height: 0px;
			width: 0px;
			z-index: 999999999
		}

		.heightfit-exit-closeright:before {
			content: "\e5cd";
			font-weight: 900;
			color: #fff;
			display: block;
			font-size: 26px;
			font-family: 'Material Icons'
		}

		.heightfit-exit-closeright {
			content: "";
			width: 50px;
			height: 50px;
			cursor: pointer;
			margin-right: -0px;
			margin-top: -60px;
			float: right
		}

		.heightfit-exit-bg {
			display: flex;
			justify-content: center;
			background-repeat: no-repeat;
			background-position: -250px;
			flex-direction: row-reverse;
			position: relative
		}

		.heightfit-exit-left {
			width: 30%;
			height: 100%;
			display: flex;
			z-index: 2;
			align-items: center;
			text-align: center;
			margin: auto;
			justify-content: center;
			background-size: cover;
			background-position: center
		}

		.heightfit-exit-left img {
			width: 400px;
			margin-bottom: -0;
			transform: scale(1.4);
			transform-origin: center;
			margin: auto;
			display: flex
		}

		.heightfit-exit-right {
			z-index: 1;
			width: 70%;
			padding: 60px 40px 50px 50px;
			background: var(--background-color);
			display: block;
			margin: auto;
			border-radius: 10px
		}

		.heightfit-exit-header {
			font-size: 26px;
			padding-bottom: 0px;
			line-height: 1.1em;
			color: #fff;
			font-weight: 700;
			padding-right: 50px
		}

		.heightfit-exit-subtext {
			font-size: 18px
		}

		.heightfit-exit-Bullet span {
			color: #4b4b4b;
			font-size: 15px;
			line-height: 1.3em;
			display: block
		}

		.heightfit-exit-BulletHeader {
			font-size: 18px;
			padding-top: 10px;
			padding-bottom: 10px;
			color: #fff;
			line-height: 1.3em;
			font-weight: 600;
			letter-spacing: 0
		}

		.heightfit-exit-BulletHeader b {
			font-size: 16px
		}

		.heightfit-exit-subtext span {
			font-weight: bold;
			color: #4ba86d
		}

		.heightfit-exit-buttons {
			display: flex;
			flex-direction: column
		}

		.heightfit-exit-CTA {
			background: var(--button-color);
			padding: 10px 10px;
			border-radius: 50px;
			color: #fff !important;
			margin: auto 0;
			width: 80%;
			font-weight: 400;
			cursor: pointer;
			text-align: center;
			font-size: 20px;
			text-shadow: 0px -2px rgba(0, 0, 0, 0.2);
			margin: 10px 0px;
			text-decoration: none;
			letter-spacing: 0;
			font-weight: 700;
			box-sizing: border-box
		}

		.heightfit-exit-buttons p {
			color: #fff;
			text-align: left;
			display: block;
			font-size: 18px;
			margin: 0;
			font-weight: 300
		}

		.heightfit-exit-buttons>p>b {
			display: block
		}

		.heightfit-exit-CTA:hover {
			background: var(--button-hover-color);
			transition: all 0.3s;
			text-decoration: none;
			opacity: 0.8
		}

		.heightfit-exit-Button {
			text-align: center;
			margin: 30px 0px 10px
		}

		.heightfit-exit-lightbox {
			display: none;
			position: fixed;
			z-index: 20000;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			color: #333333;
			backdrop-filter: blur(3px);
			-webkit-backdrop-filter: blur(3px)
		}

		.heightfit-exit-lightbox:after {
			content: "";
			display: table;
			clear: both
		}

		.heightfit-exit-lightbox .heightfit-exit-box {
			width: -webkit-min-content;
			width: -moz-min-content;
			width: min-content;
			min-width: max-content;
			display: flex;
			margin: -50px auto;
			background-color: rgba(0, 0, 0, 0.7);
			box-shadow: 0px 0px 0px 10000px rgba(0, 0, 0, 0.7);
			border-radius: 20px;
			padding-bottom: 0
		}

		.heightfit-exit-lightbox .heightfit-exit-open {
			display: block;
			outline: none
		}

		.heightfit-Animation-001 {
			transform: translate(300px, 0px);
			animation: fitbodAnim 1s 1;
			animation-fill-mode: forwards;
			animation-delay: 0.2s
		}

		.heightfit-Animation-002 {
			transform: scale(7);
			animation: fitbodAnim2 0.5s 1;
			animation-fill-mode: forwards
		}

		@keyframes fitbodAnim2 {
			0% {
				transform: scale(7)
			}

			70% {
				transform: scale(0.8)
			}

			100% {
				transform: scale(1)
			}
		}

		@keyframes fitbodAnim {
			0% {
				transform: translate(300px, 0px)
			}

			100% {
				transform: translate(0, 0px)
			}
		}

		@media screen and (max-width:768px) {
			.heightfit-exit-lightbox {
				overflow: scroll
			}

			.heightfit-exit-container {
				transform: scale(1);
				margin-top: 150px
			}

			.heightfit-exit-Top {
				flex-direction: column;
				text-align: center
			}

			.heightfit-exit-Top>div {
				width: 100%
			}

			.heightfit-exit-Image img {
				width: 200%;
				margin: auto;
				margin-top: -40px
			}

			.heightfit-exit-lightbox,
			.heightfit-exit-box {
				width: 100% !important;
				min-width: min-content !important
			}

			.heightfit-exit-closeright-contaier {
				width: unset
			}

			.heightfit-exit-bg {
				max-width: 400px;
				flex-direction: column
			}

			.heightfit-exit-container {
				max-width: 400px;
				max-width: 400px;
				flex-direction: column-reverse;
				width: 90%;
				background-position: -30% -40%;
				background-size: 89%;
				justify-content: center
			}

			.heightfit-exit-right {
				padding: 10px;
				width: 100%;
				margin: auto;
				text-align: center;
				box-sizing: border-box
			}

			.heightfit-exit-left {
				width: 100%;
				text-align: center;
				margin: auto;
				height: 250px;
				flex-direction: column
			}

			.heightfit-exit-left img {
				width: 100%
			}

			.heightfit-exit-header {
				font-size: 27px;
				padding-bottom: 0;
				padding: 0
			}

			.heightfit-exit-buttons a,
			.heightfit-exit-buttons span {
				width: 100%;
				padding: 10px;
				margin: 0px auto 15px
			}

			.heightfit-exit-container hr {
				margin: 0px auto 10px;
				max-width: 80%
			}

			.heightfit-exit-buttons a {
				margin-top: 10px;
				font-size: 20px
			}

			.heightfit-exit-BulletHeader b {
				font-size: 18px
			}

			.heightfit-exit-Bullet {
				margin-bottom: 0px
			}

			.heightfit-exit-right {
				padding: 80px 10px 10px;
				margin-top: -70px
			}

			.heightfit-Animation-001 {
				transform: translate(0, 400px);
				animation: fitbodAnim 1s 1;
				animation-fill-mode: forwards;
				animation-delay: 0.3s
			}

			.heightfit-Animation-002 {
				transform: translate(0px, -300px);
				animation: fitbodAnim2 1s 1;
				animation-fill-mode: forwards
			}

			.heightfit-exit-bg:before {
				margin-top: -400px
			}

			.heightfit-exit-buttons p {
				text-align: center;
				margin-top: 20px
			}

			.heightfit-exit-left img {
				width: 200px;
				margin-bottom: -0;
				transform: scale(1.1);
				transform-origin: bottom;
				margin: auto;
				display: flex
			}
		}
	</style>
	<style>
		.heightfit-st-container {
			background: #353442 !important;
			backdrop-filter: blur(10px);
			-webkit-backdrop-filter: blur(10px)
		}

		.heightfit-st-container {
			height: 240px !important;
			bottom: -300px
		}

		.heightfit-st-container__inner {
			flex-direction: column !important
		}

		.heightfit-st-item__copy {
			margin-bottom: 20px !important
		}

		.heightfit-st-item__copy p {
			font-size: 28px !important;
			font-weight: 900;
			max-width: 100%
		}

		a.heightfit-st-item__button {
			min-width: 250px !important
		}

		.Footer-inner {
			padding-bottom: 200px
		}

		.heightfit-st-close {
			position: absolute;
			top: 10px;
			right: 20px;
			width: 50px;
			text-align: center;
			height: 50px;
			z-index: 999999999999;
			cursor: pointer
		}

		.heightfit-st-close:before {
			content: "\e5cd";
			font-weight: 900;
			color: #fff;
			display: block;
			font-size: 26px;
			font-family: 'Material Icons'
		}

		@media screen and (max-width:768px) {
			.heightfit-st-item__copy {
				margin: 10px auto !Important
			}

			.heightfit-st-container {
				height: 200px
			}

			.heightfit-st-container__inner {
				justify-content: center;
				margin-top: -10px
			}

			a.heightfit-st-item__button {
				padding: 20px 0px !important
			}
		}
		:root {
			--background-color-exit: #434648;
			--font-family: Roobert, Roboto, Helvetica, Arial
		}

		.heightfit-exit-container {
			max-width: 1200px !important
		}

		.heightfit-qrcode-st-ext .heightfit-exit-left,
		.heightfit-qrcode-st-ext .heightfit-exit-right {
			display: none !Important
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-container-outer {
			font-family: var(--font-family);
			width: 100%;
			height: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
			width: max-content;
			margin: auto;
			border-radius: 10px;
			margin-bottom: 30px
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-container {
			position: relative;
			display: flex;
			align-items: center;
			height: max-content
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-left {
			background: var(--background-color-exit);
			height: max-content;
			padding: 20px 100px 20px 50px;
			border-radius: 10px;
			position: relative;
			-webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, .27);
			-moz-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, .27);
			box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, .27);
			min-height: 350px;
			display: flex
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-left-inner {
			padding: 20px;
			max-width: 450px;
			justify-content: center;
			text-align: center;
			display: flex;
			flex-direction: column
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-right-container {
			margin-left: -150px;
			z-index: 999
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-right-container p {
			text-align: center;
			font-size: 14px;
			color: #fff !important;
			margin: 0;
			font-weight: 300
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-right {
			background: #fff;
			z-index: 999;
			padding: 20px;
			text-align: left;
			height: 100%;
			margin: 0 50px;
			;
			-webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, .27);
			-moz-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, .27);
			box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, .27)
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-right span {
			display: block
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-right img {
			max-width: 180px
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-logo {
			text-align: left;
			margin: auto auto 20px;
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-logo img {
			max-width: 150px;
			margin: 0
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-title {
			color: #fff !important;
			font-size: 32px;
			line-height: 1.3em;
			text-align: left;
			margin: 0;
			font-weight: 600
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-subtitle {
			font-weight: 500;
			line-height: 1.3em;
			letter-spacing: 1px;
			text-align: left;
			font-size: 26px;
			max-width: 400px;
			margin: 10px 0;
			text-align: left;
			color: #F2305A !important
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-scantxt:after {
			content: url(https://heightfit.me/wp-content/uploads/2022/09/arrow-control-1.png);
			position: absolute;
			right: 120px;
			transform: translate(0px, 10px)
		}

		.heightfit-qr-exit-scantxt {
			margin: 0;
			color: #fff !important;
			font-weight: 500;
			text-align: left;
			font-size: 18px
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-closeright {
			content: '';
			background: #fff;
			width: 20px;
			height: 20px;
			cursor: pointer;
			margin-right: -0px;
			margin-top: -40px;
			float: right;
			-webkit-clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
			clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
			position: absolute;
			right: 0;
			top: 0;
			transition: all .2s
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-closeright:hover {
			transform: scale(1.1);
			transition: all .2s
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-download {
			display: inline-grid;
			grid-gap: 5px 5px;
			grid-template-columns: 45% 55%
		}

		.heightfit-qrcode-st-ext .heightfit-qr-st-container-outer {
			display: flex;
			margin: auto;
			align-items: center;
			justify-content: center;
			font-family: var(--font-family)
		}

		.heightfit-qrcode-st-ext .heightfit-qr-st-title {
			color: #fff !important;
			font-size: 24px;
			margin: 5px 0 0;
			line-height: 1.3em
		}

		.heightfit-qrcode-st-ext .heightfit-qr-st-right {
			background: #fff;
			z-index: 999;
			padding: 10px;
			text-align: left;
			height: 100%;
			margin: 0 50px;
			-webkit-box-shadow: 0px 0px 20px 10px rgb(0 0 0 / 27%);
			-moz-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, .27);
			box-shadow: 0px 0px 20px 10px rgb(0 0 0 / 27%)
		}

		.heightfit-qr-st-right img {
			width: 120px
		}

		.heightfit-qrcode-st-ext #fitbodstQrcode {
			margin: 0
		}

		.heightfit-qrcode-st-ext .heightfit-qr-st-subtitle {
			margin: 0;
			color: #fff !important;
			font-weight: 300;
			text-align: left;
			font-size: 18px
		}

		.heightfit-qrcode-st-ext .heightfit-qr-st-img {
			max-width: 120px
		}

		.heightfit-qrcode-st-ext .heightfit-qr-st-left {
			position: relative
		}

		.heightfit-qrcode-st-ext .heightfit-qr-st-subtitle:after {
			content: url(https://heightfit.me/wp-content/uploads/2022/09/arrow-control-1.png);
			position: absolute;
			right: -40px
		}
		:root {
			--background-color: #393F43;
			--button-color: #F26A5D;
			--button-hover-color: #F26A5D
		}

		.heightfit-fs-amim-body .entry-content>hr:nth-of-type(1),
		.heightfit-fs-amim-body .entry-content>hr:nth-of-type(2) {
			display: none
		}

		.heightfit-fs-anim-container {
			background: #f6f6f6;
			min-height: 200px;
			border-radius: 10px;
			display: flex;
			flex-direction: column;
			text-align: center;
			margin: 30px 0;
			justify-content: center;
			align-items: center
		}

		.heightfit-fs-anim-header {
			width: 90%;
			margin: auto;
			font-size: 20px !important;
			margin: 0;
			padding-bottom: 0 !important
		}

		.heightfit-fs-anim-CTA a {
			text-decoration: none;
			text-align: center;
			width: 100%;
			background: #F2305A;
			;
			display: block;
			padding: 15px 0;
			border-radius: 50px;
			max-width: 90%;
			margin: 10px auto;
			min-width: 350px;
			color: #fff;
			transition: all ease .2s;
			max-width: 400px;
			-webkit-box-shadow: 2px 3px 2px 0px rgba(0, 0, 0, .17);
			-moz-box-shadow: 2px 3px 2px 0px rgba(0, 0, 0, .17);
			box-shadow: 2px 3px 2px 0px rgba(0, 0, 0, .17);
			transition: all ease .2s;
			position: relative;
			overflow: hidden;
			font-weight: 700
		}

		.heightfit-fs-anim-CTA a:after {
			content: "";
			width: 30px;
			height: 200px;
			;
			background: #fff;
			position: absolute;
			left: 0;
			top: 0;
			opacity: .6;
			filter: blur(20px);
			animation: heightfit-anim-cta 3s;
			animation-fill-mode: forwards;
			margin-top: -20px;
			animation-delay: 0s;
			transform: rotate(45deg);
			transform-origin: top;
			animation-iteration-count: infinite
		}

		.heightfit-fs-anim-CTA a:hover {
			background-color: var(--cta-background-hover-color);
			opacity: .8;
			-webkit-box-shadow: 2px 3px 7px 2px rgba(0, 0, 0, 0.3);
			-moz-box-shadow: 2px 3px 7px 2px rgba(0, 0, 0, 0.3);
			box-shadow: 2px 3px 7px 2px rgba(0, 0, 0, 0.3)
		}

		@keyframes heightfit-anim-cta {
			0% {
				margin-left: -100px
			}

			100% {
				margin-left: 120%
			}
		}

		@media screen and (max-width:768px) {
			.heightfit-fs-anim-header {
				font-size: 18px !important;
				padding-bottom: 0 !Important
			}

			.heightfit-fs-anim-CTA a {
				max-width: 320px;
				padding: 10px 0
			}
		}

		div.heightfit-fs-anim-CTA a {
			border-radius: 6px;
			background: #F2305A;
			box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
			border-radius: 6px
		}

		#fitbodSBQR {
			margin-bottom: 0
		}

		#heightfit-slide-st-containerID:not(.heightfit-slidein-show #heightfit-slide-st-containerID) {
			opacity: 0;
			visibility: 0;
			right: -700px !important
		}

		.heightfit-sidebar-body .sidebar-main #media_image-5,
		.heightfit-sidebar-body .sidebar-main #text-2,
		.heightfit-sidebar-body .sidebar-main #media_image-4,
		.heightfit-sidebar-body .sidebar-main #media_image-6 {}

		.heightfit-slidein-show #heightfit-slide-st-containerID {
			opacity: 1;
			visibility: visible
		}

		.heightfit-sidebar-content {
			display: flex;
			flex-direction: column
		}

		.heightfit-sidebar {
			display: none;
			max-width: 400px;
			position: sticky;
			top: 75px;
			margin: 50px auto;
			background: #353442;
			border-top: 15px solid #f2305a;
			font-family: Akkurat, Roboto, Helvetica, Arial;
			text-align: center;
			padding-bottom: 30px;
			filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.3))
		}

		.heightfit-sidebar:after {
			position: absolute;
			width: 100%;
			height: 70px;
			bottom: -69px;
			background: #353442;
			left: 0;
			clip-path: polygon(100% 0%, 100% 100%, 50% 10%, 0 100%, 0 0, 50% 1%)
		}

		.heightfit-sidebar-subtitle {
			color: #fff !important;
			font-size: 16px;
			margin: 20px 0 0
		}

		.heightfit-sidebar-title {
			color: #f2305a !important;
			font-size: 32px;
			font-weight: 600;
			margin: 0px 0 0;
			line-height: 1em
		}

		.heightfit-sidebar-qr {
			max-width: 150px;
			margin: 10px auto;
			background: #fff;
			width: 80%
		}

		.heightfit-sidebar-qr img {
			transform: scale(0.9);
			max-width: 100%
		}

		.heightfit-sidebar-qrsubtitle {
			color: #fff;
			margin: 0 auto 10px;
			display: block;
			font-size: 14px
		}

		.heightfit-sidebar-stores {
			width: 80%;
			display: flex;
			justify-content: space-around;
			max-width: 320px;
			margin: 0 auto 20px
		}

		.heightfit-sidebar-stores img {
			max-width: 150px;
			width: 90%
		}

		.heightfit-sidebar-awards {
			width: 80%;
			display: flex;
			justify-content: space-around;
			max-width: 320px;
			margin: 0 auto 20px
		}

		.heightfit-sidebar-awards img {
			max-width: 150px;
			align-self: center;
			width: 60%
		}

		@media screen and (max-width:768px) {
			.heightfit-sidebar {
				display: none
			}
		}

		@media screen and (min-width:900px) {
			html {
				overflow: unset !important
			}
		}

		.heightfit-noCRO #heightfit-st-containerIDv2,
		.heightfit-noCRO #heightfit-exit-text,
		.heightfit-noCRO .heightfit-sidebar {
			opacity: 0;
			display: none
		}
		.heightfit-qr-exit-title:before {
			content: "";
			width: 120px;
			height: 40px;
			display: block;
			position: relative;
			background: url(https://heightfit.me/wp-content/uploads/2021/12/Logo-Heightfit.svg);
			background-size: contain;
			background-repeat: no-repeat
		}

		#heightfit-exit-text p.heightfit-qr-exit-title,
		#heightfit-exit-text p.heightfit-qr-exit-scantxt {
			font-family: 'Akkurat';
			font-style: normal;
			font-weight: 500;
			font-size: 22px;
			letter-spacing: 1.38462px;
			color: #FFFFFF
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-left {
			min-height: 300px !important
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-left-inner {
			padding: 0 !Important
		}

		.heightfit-qr-exit-subtitle {
			text-transform: uppercase;
			font-size: 26px !important
		}

		.heightfit-exit-left.heightfit-Animation-002 {
			display: none
		}

		.heightfit-exit-right.heightfit-Animation-001 {
			padding-top: 30px !important;
			;
			margin-top: 0 !important;
			padding-bottom: 30px !important
		}

		.heightfit-exit-header {
			font-family: 'Akkurat';
			font-style: normal;
			font-weight: 400;
			font-size: 19px;
			line-height: 28px;
			text-align: center;
			letter-spacing: 1.38462px;
			color: #FFFFFF
		}

		.heightfit-exit-header:before {
			content: "";
			width: 120px;
			height: 35px;
			margin: auto;
			display: block;
			position: relative;
			background: url(https://heightfit.me/wp-content/uploads/2021/12/Logo-Heightfit.svg);
			background-size: contain;
			background-repeat: no-repeat
		}

		.heightfit-exit-BulletHeader {
			display: none
		}

		.heightfit-exit-right.heightfit-Animation-001 {
			background: #353442;
			box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.5);
			border-radius: 8px
		}

		.heightfit-exit-CTA {
			background: #F2305A;
			box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
			border-radius: 6px
		}

		#heightfit-exit-text .heightfit-qr-exit-left {
			background: #353442;
			box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.5);
			border-radius: 8px
		}

		@media screen and (max-width:768px) {
			.heightfit-exit-container {
				margin-top: auto !Important
			}
		}

		.heightfit-qr-exit-title:before {
			content: "";
			width: 120px;
			height: 40px;
			display: block;
			position: relative;
			background: url(https://heightfit.me/wp-content/uploads/2021/12/Logo-Heightfit.svg);
			background-size: contain;
			background-repeat: no-repeat
		}

		#heightfit-exit-text p.heightfit-exit-copy {
			font-family: 'Akkurat';
			font-style: normal;
			font-weight: 500;
			font-size: 22px;
			letter-spacing: 1.38462px;
			color: #FFFFFF
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-left {
			min-height: 300px !important
		}

		.heightfit-qrcode-st-ext .heightfit-qr-exit-left-inner {
			padding: 0 !Important
		}

		.heightfit-qr-exit-subtitle {
			text-transform: uppercase;
			font-size: 26px !important
		}

		.heightfit-qr-exit-scantxt:after {
			content: "" !important;
			background: url(https://heightfit.me/wp-content/uploads/2022/08/heightfit-arrow-new.png) no-repeat;
			width: 56px;
			height: 30px;
			right: 0;
			background-size: cover;
			margin-left: 10px;
			transform: translateY(10px);
			display: inline-block;
			right: 0 !important;
			;
			position: relative !important
		}

		.heightfit-exit-left.heightfit-Animation-002 {
			display: none
		}

		.heightfit-exit-right.heightfit-Animation-001 {
			padding-top: 30px !important;
			;
			margin-top: 0 !important;
			padding-bottom: 30px !important
		}

		.heightfit-exit-header {
			font-family: 'Akkurat';
			font-style: normal;
			font-weight: 400;
			font-size: 19px;
			line-height: 28px;
			text-align: center;
			letter-spacing: 1.38462px;
			color: #FFFFFF
		}

		.heightfit-exit-header:before {
			content: "";
			width: 120px;
			height: 35px;
			margin: auto;
			display: block;
			position: relative;
			background: url(https://heightfit.me/wp-content/uploads/2021/12/Logo-Heightfit.svg);
			background-size: contain;
			background-repeat: no-repeat
		}

		.heightfit-exit-BulletHeader {
			display: none
		}

		.heightfit-exit-right.heightfit-Animation-001 {
			background: #353442;
			box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.5);
			border-radius: 8px
		}

		.heightfit-exit-CTA {
			background: #F2305A;
			box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
			border-radius: 6px
		}

		#heightfit-exit-text .heightfit-qr-exit-left {
			background: #353442;
			box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.5);
			border-radius: 8px
		}

		@media screen and (max-width:768px) {
			.heightfit-exit-container {
				margin-top: auto !Important;
				max-width: max-content !important
			}
		}
		.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
		.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
			background-image: none !important
		}

		@media screen and (max-height:1024px) {

			.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
			.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
				background-image: none !important
			}
		}

		@media screen and (max-height:640px) {

			.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
			.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
				background-image: none !important
			}
		}
		@media (min-width:922px).ast-container {
			max-width:1070px
		}

		body.ast-blog-grid-3 {
			background-color: #ffffff
		}

		div.image-block-wrapper.has-aspect-ratio {
			padding-bottom: 10px !important
		}

		.ast-blog-layout-1 .entry-content p {
			color: #000000
		}

		.single-post .entry-content p {
			margin-bottom: 0px
		}

		body.single-post {
			background-color: #ffffff
		}

		body.single-post p {
			color: #000000
		}

		body.single-post ol,
		body.single-post ul {
			color: #000000;
			margin: 0 0 1.5em 1.5em
		}

		body.single-post .tg-wrap {
			color: #000000
		}

		body.single-post p:empty {
			display: none
		}

		body.single-post p[data-rte-preserve-empty="true"] {
			white-space: inherit;
			height: auto;
			min-height: 12px
		}

		body.single-post .entry-content p:first-of-type {}

		body.single-post h3,
		body.single-post h2 {
			margin-top: 40px
		}

		body .image-block-outer-wrapper {
			line-height: 0px
		}

		.page-id-2452 {
			color: #000000
		}

		.blog .widget-title {
			color: #000000
		}

		.sqs-block-button-container--center {
			text-align: center
		}

		.sqs-block-button-element {
			font-family: "Roobert", Sans-serif;
			fill: #FFFFFF;
			color: #FFFFFF;
			background-color: #F26A5E;
			border-radius: 40px 40px 40px 40px;
			box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
			padding: 18px 18px 18px 18px;
			margin: 30px 0 30px 0;
			display: inline-block;
			width: auto;
			height: auto
		}

		.ast-separate-container.ast-two-container #secondary .widget,
		.ast-separate-container #secondary .widget {
			margin-bottom: 1.5em
		}

		.ast-blog-layout-1 article {
			position: relative;
			min-height: 1px;
			padding-left: 20px;
			padding-right: 20px
		}

		.post p {
			line-height: 1.5em;
			padding-bottom: 20px
		}

		p.block-editor-block-list__block {
			color: #000
		}

		.elementor-1012770 .elementor-heading-title .elementor-size-default {
			color: #191923 !important
		}

		.archive .entry-content {
			display: none
		}

		.ast-post-format- {
			padding-bottom: 0px
		}

		.page-id-1034903 .subscription {
			background-color: #Ffdd00 !important
		}

		.page-id-1034903 .subscription .content .title {
			color: #000000 !important
		}

		.page-id-1034903.subscription .content .plan--selected .top {
			background: #02C3F4 !important
		}

		.page-id-1034903.subscription .content .plan--selected {
			border-color: #02C3F4 !important
		}

		.page-id-1034903 .subscription .content .text {
			color: #222230 !important
		}

		.page-id-1034903 .subscription .content .subtitle {
			color: #343542 !important
		}

		.page-id-1034986 .subscription {
			background-color: #Ffdd00 !important
		}

		.page-id-1034986 .subscription .content .title {
			color: #000000 !important
		}

		.page-id-1034986 .subscription .content .plan--selected .top {
			background: #02C3F4 !important
		}

		.page-id-1034986 .subscription .content .plan--selected {
			border-color: #02C3F4 !important
		}

		.page-id-1034986 .subscription .content .text {
			color: #222230 !important
		}

		.page-id-1034986 .subscription .content .subtitle {
			color: #343542 !important
		}

		.page-id-1035002 .subscription {
			background-color: #26D3FF !important
		}

		.page-id-1035002 .subscription {
			background-color: #6CE9FF !important
		}

		.page-id-1035002 .subscription .content .title {
			color: #000000 !important
		}

		.page-id-1035002 .subscription .content .plan--selected .top {
			background: #F7FF00 !important
		}

		.page-id-1035002 .subscription .content .plan--selected {
			border-color: #F7FF00 !important
		}

		.page-id-1035002 .subscription .content .text {
			color: #222230 !important
		}

		.page-id-1035002 .subscription .content .subtitle {
			color: #343542 !important
		}