/* Grid
------------------------------------------------------ */

.ba-cheetah-content *,
.ba-cheetah-content *:before,
.ba-cheetah-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.ba-cheetah-row:before,
.ba-cheetah-row:after,
.ba-cheetah-row-content:before,
.ba-cheetah-row-content:after,
.ba-cheetah-col-group:before,
.ba-cheetah-col-group:after,
.ba-cheetah-col:before,
.ba-cheetah-col:after,
.ba-cheetah-module:before,
.ba-cheetah-module:after,
.ba-cheetah-module-content:before,
.ba-cheetah-module-content:after {
	display: table;
	content: " ";
}
.ba-cheetah-row:after,
.ba-cheetah-row-content:after,
.ba-cheetah-col-group:after,
.ba-cheetah-col:after,
.ba-cheetah-module:after,
.ba-cheetah-module-content:after {
	clear: both;
}
.ba-cheetah-row,
.ba-cheetah-row-content,
.ba-cheetah-col-group,
.ba-cheetah-col,
.ba-cheetah-module,
.ba-cheetah-module-content {
	zoom:1;
}
.ba-cheetah-clear {
	clear: both;
}

/* Utilities
------------------------------------------------------ */

.ba-cheetah-clearfix:before,
.ba-cheetah-clearfix:after {
	display: table;
	content: " ";
}
.ba-cheetah-clearfix:after {
	clear: both;
}
.ba-cheetah-clearfix {
	zoom:1;
}

/* Responsive Utilities
------------------------------------------------------ */

.ba-cheetah-visible-medium,
.ba-cheetah-visible-medium-mobile,
.ba-cheetah-visible-mobile,
.ba-cheetah-col-group .ba-cheetah-visible-medium.ba-cheetah-col,
.ba-cheetah-col-group .ba-cheetah-visible-medium-mobile.ba-cheetah-col,
.ba-cheetah-col-group .ba-cheetah-visible-mobile.ba-cheetah-col {
	display: none;
}

/* Rows
------------------------------------------------------ */

.ba-cheetah-row,
.ba-cheetah-row-content {
	margin-left: auto;
	margin-right: auto;
}
.ba-cheetah-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.ba-cheetah-mobile .ba-cheetah-row-bg-photo .ba-cheetah-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.ba-cheetah-row-bg-video,
.ba-cheetah-row-bg-video .ba-cheetah-row-content,
.ba-cheetah-row-bg-embed,
.ba-cheetah-row-bg-embed .ba-cheetah-row-content {
	position: relative;
}

.ba-cheetah-row-bg-video .ba-cheetah-bg-video,
.ba-cheetah-row-bg-embed .ba-cheetah-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.ba-cheetah-row-bg-video .ba-cheetah-bg-video video,
.ba-cheetah-row-bg-embed .ba-cheetah-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.ba-cheetah-row-bg-video .ba-cheetah-bg-video iframe,
.ba-cheetah-row-bg-embed .ba-cheetah-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
}
.ba-cheetah-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.ba-cheetah-row-bg-slideshow,
.ba-cheetah-row-bg-slideshow .ba-cheetah-row-content {
	position: relative;
}
.ba-cheetah-row .ba-cheetah-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.ba-cheetah-edit .ba-cheetah-row .ba-cheetah-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.ba-cheetah-row-bg-overlay .ba-cheetah-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.ba-cheetah-row-bg-overlay .ba-cheetah-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.ba-cheetah-row-full-height .ba-cheetah-row-content-wrap,
.ba-cheetah-row-custom-height .ba-cheetah-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;

}
.ba-cheetah-row-overlap-top .ba-cheetah-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.ba-cheetah-row-custom-height .ba-cheetah-row-content-wrap {
	min-height: 0;
}
.ba-cheetah-edit .ba-cheetah-row-full-height .ba-cheetah-row-content-wrap {
	min-height: calc( 100vh - 48px );
}
.ba-cheetah-row-full-height .ba-cheetah-row-content,
.ba-cheetah-row-custom-height .ba-cheetah-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.ba-cheetah-row-full-height .ba-cheetah-row-full-width.ba-cheetah-row-content,
.ba-cheetah-row-custom-height .ba-cheetah-row-full-width.ba-cheetah-row-content {
	max-width: 100%;
	width: 100%;
}

.ba-cheetah-row-full-height .ba-cheetah-photo-content, 
.ba-cheetah-row-custom-height .ba-cheetah-photo-content  {
	display: inline;
}

/* IE 11 - Row full height - vertical alignment center/bottom fix */
.ba-cheetah-ie-11 .ba-cheetah-row.ba-cheetah-row-full-height:not(.ba-cheetah-visible-medium):not(.ba-cheetah-visible-medium-mobile):not(.ba-cheetah-visible-mobile),
.ba-cheetah-ie-11 .ba-cheetah-row.ba-cheetah-row-custom-height:not(.ba-cheetah-visible-medium):not(.ba-cheetah-visible-medium-mobile):not(.ba-cheetah-visible-mobile) {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Stupid IE Full Height Row Fixes */
.ba-cheetah-ie-11 .ba-cheetah-row-full-height .ba-cheetah-row-content-wrap,
.ba-cheetah-ie-11 .ba-cheetah-row-custom-height .ba-cheetah-row-content-wrap {
	height: auto;
}

.ba-cheetah-ie-11 .ba-cheetah-row-full-height .ba-cheetah-row-content,
.ba-cheetah-ie-11 .ba-cheetah-row-custom-height .ba-cheetah-row-content {
	flex: 0 0 auto;
	flex-basis: 100%;
	margin: 0;
}

.ba-cheetah-ie-11 .ba-cheetah-row-full-height.ba-cheetah-row-align-top .ba-cheetah-row-content,
.ba-cheetah-ie-11 .ba-cheetah-row-full-height.ba-cheetah-row-align-bottom .ba-cheetah-row-content,
.ba-cheetah-ie-11 .ba-cheetah-row-custom-height.ba-cheetah-row-align-top .ba-cheetah-row-content,
.ba-cheetah-ie-11 .ba-cheetah-row-custom-height.ba-cheetah-row-align-bottom .ba-cheetah-row-content {
    margin: 0 auto;
}

.ba-cheetah-ie-11 .ba-cheetah-row-full-height.ba-cheetah-row-align-center .ba-cheetah-col-group:not(.ba-cheetah-col-group-equal-height),
.ba-cheetah-ie-11 .ba-cheetah-row-custom-height.ba-cheetah-row-align-center .ba-cheetah-col-group:not(.ba-cheetah-col-group-equal-height) {
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

/* Full height align center */
.ba-cheetah-row-full-height.ba-cheetah-row-align-center .ba-cheetah-row-content-wrap,
.ba-cheetah-row-custom-height.ba-cheetah-row-align-center .ba-cheetah-row-content-wrap {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

/* Full height align bottom */
.ba-cheetah-row-full-height.ba-cheetah-row-align-bottom .ba-cheetah-row-content-wrap,
.ba-cheetah-row-custom-height.ba-cheetah-row-align-bottom .ba-cheetah-row-content-wrap {
	align-items: flex-end;
	justify-content: flex-end;
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
}

/* IE 11 - height bottom > row align bottom - center fix */
.ba-cheetah-ie-11 .ba-cheetah-row-full-height.ba-cheetah-row-align-bottom .ba-cheetah-row-content-wrap,
.ba-cheetah-ie-11 .ba-cheetah-row-custom-height.ba-cheetah-row-align-bottom .ba-cheetah-row-content-wrap {
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
  .ba-cheetah-row-full-height .ba-cheetah-row-content-wrap{
    min-height: 1024px;
  }
}

/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
  .ba-cheetah-row-full-height .ba-cheetah-row-content-wrap{
    min-height: 768px;
  }
}

/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (device-aspect-ratio: 40/71) {
  .ba-cheetah-row-full-height .ba-cheetah-row-content-wrap {
    min-height: 500px;
  }
}

/* Column Groups
------------------------------------------------------ */

.ba-cheetah-col-group-equal-height,
.ba-cheetah-col-group-equal-height .ba-cheetah-col,
.ba-cheetah-col-group-equal-height .ba-cheetah-col-content{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.ba-cheetah-col-group-equal-height{
    -webkit-flex-wrap: wrap;
    	-ms-flex-wrap: wrap;
    		flex-wrap: wrap;
			    width: 100%;
}
.ba-cheetah-col-group-equal-height.ba-cheetah-col-group-has-child-loading {
    -webkit-flex-wrap: nowrap;
    	-ms-flex-wrap: nowrap;
    		flex-wrap: nowrap;
}
.ba-cheetah-col-group-equal-height .ba-cheetah-col,
.ba-cheetah-col-group-equal-height .ba-cheetah-col-content{
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.ba-cheetah-col-group-equal-height .ba-cheetah-col-content{
	    -webkit-box-orient: vertical;
	 -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
			   flex-shrink: 1;
			     min-width: 1px;
            	 max-width: 100%;
            	 	 width: 100%;
}
.ba-cheetah-col-group-equal-height:before,
.ba-cheetah-col-group-equal-height .ba-cheetah-col:before,
.ba-cheetah-col-group-equal-height .ba-cheetah-col-content:before,
.ba-cheetah-col-group-equal-height:after,
.ba-cheetah-col-group-equal-height .ba-cheetah-col:after,
.ba-cheetah-col-group-equal-height .ba-cheetah-col-content:after{
	content: none;
}

/* Equal height align center */
.ba-cheetah-col-group-equal-height.ba-cheetah-col-group-align-center .ba-cheetah-col-content {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

/* Equal height align bottom */
.ba-cheetah-col-group-equal-height.ba-cheetah-col-group-align-bottom .ba-cheetah-col-content {
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
}

.ba-cheetah-col-group-equal-height.ba-cheetah-col-group-align-center .ba-cheetah-module,
.ba-cheetah-col-group-equal-height.ba-cheetah-col-group-align-center .ba-cheetah-col-group {
	width: 100%;
}

/* IE11 fix for images with height:auto in equal height columns. */
.ba-cheetah-ie-11 .ba-cheetah-col-group-equal-height,
.ba-cheetah-ie-11 .ba-cheetah-col-group-equal-height .ba-cheetah-col,
.ba-cheetah-ie-11 .ba-cheetah-col-group-equal-height .ba-cheetah-col-content,
.ba-cheetah-ie-11 .ba-cheetah-col-group-equal-height .ba-cheetah-module,
.ba-cheetah-col-group-equal-height.ba-cheetah-col-group-align-center .ba-cheetah-col-group {
	min-height: 1px;
}

/* Columns
------------------------------------------------------ */

.ba-cheetah-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.ba-cheetah-col-bg-overlay .ba-cheetah-col-content {
	position: relative;
}
.ba-cheetah-col-bg-overlay .ba-cheetah-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.ba-cheetah-col-bg-overlay .ba-cheetah-module {
	position: relative;
	z-index: 2;
}

/* Modules
------------------------------------------------------ */

.ba-cheetah-module img {
	max-width: 100%;
}

/* Module Templates
------------------------------------------------------ */

.ba-cheetah-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

/* Buttons
------------------------------------------------------ */

.ba-cheetah-content a.ba-cheetah-button,
.ba-cheetah-content a.ba-cheetah-button:visited {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.ba-cheetah-content .ba-cheetah-button:hover {
	text-decoration: none;
}
.ba-cheetah-content .ba-cheetah-button:active {
	position: relative;
	top: 1px;
}
.ba-cheetah-content .ba-cheetah-button-width-full .ba-cheetah-button {
	display: block;
	text-align: center;
}
.ba-cheetah-content .ba-cheetah-button-width-custom .ba-cheetah-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.ba-cheetah-content .ba-cheetah-button-left {
	text-align: left;
}
.ba-cheetah-content .ba-cheetah-button-center {
	text-align: center;
}
.ba-cheetah-content .ba-cheetah-button-right {
	text-align: right;
}
.ba-cheetah-content .ba-cheetah-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.ba-cheetah-content .ba-cheetah-button i.ba-cheetah-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.ba-cheetah-content .ba-cheetah-button-has-icon .ba-cheetah-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.ba-cheetah-icon-wrap {
	display: inline-block;
}
.ba-cheetah-icon {
	display: table-cell;
	vertical-align: middle;
}
.ba-cheetah-icon a {
	text-decoration: none;
}
.ba-cheetah-icon i {
	float: left;
	height: auto;
	width: auto;
}
.ba-cheetah-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.ba-cheetah-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.ba-cheetah-icon-text-empty {
	display: none;
}
.ba-cheetah-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.ba-cheetah-icon-text a {
	text-decoration: none;
}
.ba-cheetah-icon-text span {
	display: block;
}
.ba-cheetah-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.ba-cheetah-photo {
	line-height: 0;
	position: relative;
}
.ba-cheetah-photo-align-left {
	text-align: left;
}
.ba-cheetah-photo-align-center {
	text-align: center;
}
.ba-cheetah-photo-align-right {
	text-align: right;
}
.ba-cheetah-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.ba-cheetah-photo-img-svg {
	width: 100%;
}
.ba-cheetah-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.ba-cheetah-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.ba-cheetah-photo-caption {
	font-size: 13px;
	line-height: 18px;
}
.ba-cheetah-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.ba-cheetah-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.ba-cheetah-photo-content:hover .ba-cheetah-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.ba-cheetah-pagination,
.ba-cheetah-pagination-load-more {
	padding: 40px 0;
}
.ba-cheetah-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.ba-cheetah-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ba-cheetah-pagination li a.page-numbers,
.ba-cheetah-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.ba-cheetah-pagination li a.page-numbers:hover,
.ba-cheetah-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.ba-cheetah-slideshow,
.ba-cheetah-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.ba-cheetah-slideshow .ba-cheetah-slideshow-image img {
	max-width: none !important;
}
.ba-cheetah-slideshow-social {
	line-height: 0 !important;
}
.ba-cheetah-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.ba-cheetah-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.ba-cheetah-form-field {
	margin-bottom: 15px;
}
.ba-cheetah-form-field input.ba-cheetah-form-error {
	border-color: #DD6420;
}
.ba-cheetah-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.ba-cheetah-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.ba-cheetah-animation {
	opacity: 0;
}
.ba-cheetah-preview .ba-cheetah-animation,
.ba-cheetah-edit .ba-cheetah-animation,
.ba-cheetah-animated {
	opacity: 1;
}
.ba-cheetah-animated {
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
}

/* Button Icon Animation */
.ba-cheetah-button.ba-cheetah-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.ba-cheetah-button.ba-cheetah-button-icon-animation:hover i {
	opacity: 1! important;
    -ms-filter: "alpha(opacity=100)";
}
.ba-cheetah-button.ba-cheetah-button-icon-animation i.ba-cheetah-button-icon-after {
	margin-left: 0px !important;
}
.ba-cheetah-button.ba-cheetah-button-icon-animation:hover i.ba-cheetah-button-icon-after {
	margin-left: 10px !important;
}
.ba-cheetah-button.ba-cheetah-button-icon-animation i.ba-cheetah-button-icon-before {
	margin-right: 0 !important;
}
.ba-cheetah-button.ba-cheetah-button-icon-animation:hover i.ba-cheetah-button-icon-before {
	margin-right: 20px !important;
    margin-left: -10px;
}

/* Templates
------------------------------------------------------ */


/* Shapes & Patterns
------------------------------------------------------- */
.ba-cheetah-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.ba-cheetah-shape-layer {
	z-index: 0;
}
.ba-cheetah-shape-layer.ba-cheetah-bottom-edge-layer {
	z-index: 1;
}
.ba-cheetah-row-bg-overlay .ba-cheetah-shape-layer {
	z-index: 1;
}
.ba-cheetah-row-bg-overlay .ba-cheetah-shape-layer.ba-cheetah-bottom-edge-layer {
	z-index: 2;
}
.ba-cheetah-row-has-layers .ba-cheetah-row-content {
	z-index: 1;
}
.ba-cheetah-row-bg-overlay .ba-cheetah-row-content {
	z-index: 2;
}

.ba-cheetah-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.ba-cheetah-layer + .ba-cheetah-row-content {
	position: relative;
}
.ba-cheetah-layer .ba-cheetah-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/*
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .ba-cheetah-row.ba-cheetah-row-bg-parallax .ba-cheetah-row-content-wrap,
  .ba-cheetah-row.ba-cheetah-row-bg-fixed .ba-cheetah-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.ba-cheetah-row.ba-cheetah-row-bg-fixed .ba-cheetah-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}

/* Sweet alert 2
------------------------------------------------------ */
.swal2-html-container {
	padding: 0 !important;
}

/* Post edit link
------------------------------------------------------ */
.ba-cheetahpost-edit-link-container {
	position: absolute;
    margin-top: -40px;
    margin-left: 10px;
}

a.ba-cheetahpost-edit-link {
    color: grey;
    font-size: 15px;
	display: flex;
    align-items: center;
    text-decoration: none;
    gap: 5px;
}

/* Fixed header
------------------------------------------------------ */
.ba-cheetah-fixed {
	position: fixed;
	width: 100%;
	z-index: 999;
}

.admin-bar .ba-cheetah-fixed {
	top: 32px;
}

/* Popup video
------------------------------------------------------ */

.ba-cheetah-popup-video .ba-cheetah-module-content{
	margin: 0;
}

/* Watermark
------------------------------------------------------ */

.ba-cheetah-watermark {
	z-index: 90;
	position: fixed;
	bottom: 5px;
}

.ba-cheetah-watermark img{
	display: table;
	position: relative;
	margin: auto;
	width: 120px !important;
}

.ba-cheetah-watermark.left {
	left: 5px;
}

.ba-cheetah-watermark.right {
	right: 5px;
}
/* Default button colors for non Cheetah Builder themes.
------------------------------------------------------ */

.ba-cheetah-content a.ba-cheetah-button,
.ba-cheetah-content a.ba-cheetah-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.ba-cheetah-content a.ba-cheetah-button *,
.ba-cheetah-content a.ba-cheetah-button:visited * {
	color: #333;
}
/* Global body Styles
------------------------------------------------------ */

.ba-cheetah-row-content-wrap { margin: 0px; }.ba-cheetah-row-content-wrap { padding: 20px; }.ba-cheetah-row-fixed-width { max-width: 992px; }.ba-cheetah-col-content { margin: 0px; }.ba-cheetah-col-content { padding: 0px; }.ba-cheetah-module-content { margin: 20px; }@media (max-width: 992px) { /* Responsive Utilities
------------------------------------------------------ */

.ba-cheetah-visible-desktop,
.ba-cheetah-visible-mobile,
.ba-cheetah-col-group .ba-cheetah-visible-desktop.ba-cheetah-col,
.ba-cheetah-col-group .ba-cheetah-visible-mobile.ba-cheetah-col {
	display: none;
}
.ba-cheetah-visible-desktop-medium,
.ba-cheetah-visible-medium,
.ba-cheetah-visible-medium-mobile,
.ba-cheetah-col-group .ba-cheetah-visible-desktop-medium.ba-cheetah-col,
.ba-cheetah-col-group .ba-cheetah-visible-medium.ba-cheetah-col,
.ba-cheetah-col-group .ba-cheetah-visible-medium-mobile.ba-cheetah-col {
	display: block;
}
.ba-cheetah-col-group-equal-height .ba-cheetah-visible-desktop-medium.ba-cheetah-col,
.ba-cheetah-col-group-equal-height .ba-cheetah-visible-medium.ba-cheetah-col,
.ba-cheetah-col-group-equal-height .ba-cheetah-visible-medium-mobile.ba-cheetah-col {
	display: flex;
}
 }@media (max-width: 768px) { /* Responsive Utilities
------------------------------------------------------ */

.ba-cheetah-visible-desktop,
.ba-cheetah-visible-desktop-medium,
.ba-cheetah-visible-medium,
.ba-cheetah-col-group .ba-cheetah-visible-desktop.ba-cheetah-col,
.ba-cheetah-col-group .ba-cheetah-visible-desktop-medium.ba-cheetah-col,
.ba-cheetah-col-group .ba-cheetah-visible-medium.ba-cheetah-col,
.ba-cheetah-col-group-equal-height .ba-cheetah-visible-desktop-medium.ba-cheetah-col,
.ba-cheetah-col-group-equal-height .ba-cheetah-visible-medium.ba-cheetah-col {
	display: none;
}

.ba-cheetah-visible-medium-mobile,
.ba-cheetah-visible-mobile,
.ba-cheetah-col-group .ba-cheetah-visible-medium-mobile.ba-cheetah-col,
.ba-cheetah-col-group .ba-cheetah-visible-mobile.ba-cheetah-col {
	display: block;
}

/* Rows
------------------------------------------------------ */

.ba-cheetah-row-content-wrap {
	background-attachment: scroll !important;
}
.ba-cheetah-row-bg-parallax .ba-cheetah-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.ba-cheetah-col-group.ba-cheetah-col-group-equal-height {
	display: block;
}
.ba-cheetah-col-group.ba-cheetah-col-group-equal-height.ba-cheetah-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* Reversed and Set Responsive Stacking */
.ba-cheetah-col-group.ba-cheetah-col-group-responsive-set,
.ba-cheetah-col-group.ba-cheetah-col-group-responsive-reversed {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	-ms-box-orient: horizontal;
	-webkit-flex-flow: row wrap;
}
.ba-cheetah-col-group.ba-cheetah-col-group-responsive-set .ba-cheetah-col,
.ba-cheetah-col-group.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col {
	-webkit-box-flex: 0 0 100%;
  	 -moz-box-flex: 0 0 100%;
  	  -webkit-flex: 0 0 100%;
  		  -ms-flex: 0 0 100%;
  			  flex: 0 0 100%;
		 min-width: 0;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(1) {
	-webkit-box-ordinal-group: 12;   /* OLD - iOS 6-, Safari 3.1-6 */
  	-moz-box-ordinal-group: 12;      /* OLD - Firefox 19- */
  	-ms-flex-order: 12;              /* TWEENER - IE 10 */
  	-webkit-order: 12;               /* NEW - Chrome */
	order: 12;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(2) {
	-webkit-box-ordinal-group: 11;
  	-moz-box-ordinal-group: 11;
  	-ms-flex-order: 11;
  	-webkit-order: 11;
	order: 11;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(3) {
	-webkit-box-ordinal-group: 10;
  	-moz-box-ordinal-group: 10;
  	-ms-flex-order: 10;
  	-webkit-order: 10;
	order: 10;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(4) {
	-webkit-box-ordinal-group: 9;
  	-moz-box-ordinal-group: 9;
  	-ms-flex-order: 9;
  	-webkit-order: 9;
	order: 9;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(5) {
	-webkit-box-ordinal-group: 8;
  	-moz-box-ordinal-group: 8;
  	-ms-flex-order: 8;
  	-webkit-order: 8;
	order: 8;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(6) {
	-webkit-box-ordinal-group: 7;
  	-moz-box-ordinal-group: 7;
  	-ms-flex-order: 7;
  	-webkit-order: 7;
	order: 7;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(7) {
	-webkit-box-ordinal-group: 6;
  	-moz-box-ordinal-group: 6;
  	-ms-flex-order: 6;
  	-webkit-order: 6;
	order: 6;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(8) {
	-webkit-box-ordinal-group: 5;
  	-moz-box-ordinal-group: 5;
  	-ms-flex-order: 5;
  	-webkit-order: 5;
	order: 5;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(9) {
	-webkit-box-ordinal-group: 4;
  	-moz-box-ordinal-group: 4;
  	-ms-flex-order: 4;
  	-webkit-order: 4;
	order: 4;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(10) {
	-webkit-box-ordinal-group: 3;
  	-moz-box-ordinal-group: 3;
  	-ms-flex-order: 3;
  	-webkit-order: 3;
	order: 3;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(11) {
	-webkit-box-ordinal-group: 2;
  	-moz-box-ordinal-group: 2;
  	-ms-flex-order: 2;
  	-webkit-order: 2;
	order: 2;
}
.ba-cheetah-col-group-responsive-reversed .ba-cheetah-col:nth-of-type(12) {
	-webkit-box-ordinal-group: 1;
  	-moz-box-ordinal-group: 1;
  	-ms-flex-order: 1;
  	-webkit-order: 1;
  	order: 1;
}

/* Columns
------------------------------------------------------ */

.ba-cheetah-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.ba-cheetah-col-small:not(.ba-cheetah-col-small-full-width) {
	max-width: 400px;
}
.ba-cheetah-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.ba-cheetah-row[data-node] .ba-cheetah-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.ba-cheetah-row[data-node] .ba-cheetah-bg-video,
.ba-cheetah-row[data-node] .ba-cheetah-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.ba-cheetah-col[data-node] .ba-cheetah-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }




.ba-cheetah-node-681f718ef33cc .ba-cheetah-row-content {
	max-width: 992px;
}





.ba-cheetah-node-681f71ff08bf7 .ba-cheetah-row-content {
	max-width: 992px;
}





.ba-cheetah-node-681fc68f523ca .ba-cheetah-row-content {
	max-width: 992px;
}





.ba-cheetah-node-681fd48bd73a4 .ba-cheetah-row-content {
	max-width: 992px;
}





.ba-cheetah-node-681f7199446cc .ba-cheetah-row-content {
	max-width: 992px;
}




.ba-cheetah-node-681f718f017ce {
	width: 78%;
}




.ba-cheetah-node-681f718f017d5 {
	width: 22%;
}




.ba-cheetah-node-681f71ff12024 {
	width: 78%;
}




.ba-cheetah-node-681fd16b5bdfc {
	width: 22%;
}




.ba-cheetah-node-681fc68f5260f {
	width: 78%;
}




.ba-cheetah-node-681fc6bd62314 {
	width: 22%;
}




.ba-cheetah-node-681fd48bd76f3 {
	width: 78%;
}




.ba-cheetah-node-681fd48bd76ff {
	width: 22%;
}




.ba-cheetah-node-681f7199a1b89 {
	width: 78%;
}




.ba-cheetah-node-681f7199a1b95 {
	width: 22%;
}
.ba-cheetah-module-heading .ba-cheetah-heading {
	padding: 0 !important;
	margin: 0 !important;
}
.ba-cheetah-module-heading .ba-cheetah-heading::before,
.ba-cheetah-module-heading .ba-cheetah-heading::after {
	content: unset;
}.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681f71b87e9d7 h1.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681f71b87e9d7 h1.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681f71b87e9d7 h1.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681f71b87e9d7 h1.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #acc931;
}


.ba-cheetah-node-681f71b87e9d7.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 32px;
	text-align: center;
}
.ba-cheetah-content .ba-cheetah-rich-text strong {
	font-weight: bold !important;
}

.ba-cheetah-content .ba-cheetah-rich-text em {
	font-style: italic !important;
}

.ba-cheetah-content .ba-cheetah-rich-text a {
	text-decoration: initial !important;
}
	.ba-cheetah-content .ba-cheetah-node-681f71c2d4b72 .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-681f71c2d4b72 .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-681f71c2d4b72 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681f71c2d4b72 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681f71ff0870d h2.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681f71ff0870d h2.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681f71ff0870d h2.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681f71ff0870d h2.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #80cef4;
}


.ba-cheetah-node-681f71ff0870d.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 24px;
	text-align: left;
}
	.ba-cheetah-content .ba-cheetah-node-681f7204e4196 .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-681f7204e4196 .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-681f7204e4196 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681f7204e4196 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681f7255e28bb h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681f7255e28bb h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681f7255e28bb h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681f7255e28bb h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-681f7255e28bb.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
.ba-cheetah-content .ba-cheetah-node-681f725a84dde .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681f725a84dde .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f40ace03c h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f40ace03c h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f40ace03c h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-6821f40ace03c h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-6821f40ace03c.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
.ba-cheetah-content .ba-cheetah-node-6821f41e10fe8 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-6821f41e10fe8 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f44c23ea0 h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f44c23ea0 h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f44c23ea0 h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-6821f44c23ea0 h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-6821f44c23ea0.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
.ba-cheetah-content .ba-cheetah-node-6821f4466b042 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-6821f4466b042 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f441e494b h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f441e494b h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f441e494b h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-6821f441e494b h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-6821f441e494b.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
.ba-cheetah-content .ba-cheetah-node-6821f485e2777 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-6821f485e2777 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fc296e7f71 h2.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fc296e7f71 h2.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fc296e7f71 h2.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681fc296e7f71 h2.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #80cef4;
}


.ba-cheetah-node-681fc296e7f71.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 24px;
	text-align: left;
}
.ba-cheetah-content .ba-cheetah-node-6821f49c6ee53 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-6821f49c6ee53 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
	.ba-cheetah-content .ba-cheetah-node-681fc29dbf38b .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-681fc29dbf38b .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-681fc29dbf38b .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681fc29dbf38b .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fc68f52626 h2.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fc68f52626 h2.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fc68f52626 h2.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681fc68f52626 h2.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #80cef4;
}


.ba-cheetah-node-681fc68f52626.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 24px;
	text-align: left;
}
	.ba-cheetah-content .ba-cheetah-node-681fc68f52628 .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-681fc68f52628 .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-681fc68f52628 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681fc68f52628 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fc68f52629 h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fc68f52629 h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fc68f52629 h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681fc68f52629 h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-681fc68f52629.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
.ba-cheetah-content .ba-cheetah-node-681fc68f5262a .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681fc68f5262a .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76f4 h2.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76f4 h2.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76f4 h2.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681fd48bd76f4 h2.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #80cef4;
}


.ba-cheetah-node-681fd48bd76f4.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 24px;
	text-align: left;
}
	.ba-cheetah-content .ba-cheetah-node-681fd48bd76f5 .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-681fd48bd76f5 .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-681fd48bd76f5 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681fd48bd76f5 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76f6 h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76f6 h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76f6 h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681fd48bd76f6 h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-681fd48bd76f6.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
	.ba-cheetah-content .ba-cheetah-node-6821f7a94a787 .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-6821f7a94a787 .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-6821f7a94a787 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-6821f7a94a787 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f76396d69 h2.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f76396d69 h2.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f76396d69 h2.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-6821f76396d69 h2.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #80cef4;
}


.ba-cheetah-node-6821f76396d69.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 24px;
	text-align: left;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f7972193d h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f7972193d h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f7972193d h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-6821f7972193d h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-6821f7972193d.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
.ba-cheetah-content .ba-cheetah-node-681fd48bd76f7 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681fd48bd76f7 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76f8 h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76f8 h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76f8 h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681fd48bd76f8 h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-681fd48bd76f8.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
	.ba-cheetah-content .ba-cheetah-node-681fd48bd76f9 .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-681fd48bd76f9 .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-681fd48bd76f9 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681fd48bd76f9 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76fa h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76fa h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-681fd48bd76fa h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-681fd48bd76fa h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-681fd48bd76fa.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
	.ba-cheetah-content .ba-cheetah-node-681fd48bd76fc .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-681fd48bd76fc .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-681fd48bd76fc .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-681fd48bd76fc .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f87784bbb h2.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f87784bbb h2.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821f87784bbb h2.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-6821f87784bbb h2.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #80cef4;
}


.ba-cheetah-node-6821f87784bbb.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 24px;
	text-align: left;
}
	.ba-cheetah-content .ba-cheetah-node-6821f8a39738f .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-6821f8a39738f .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-6821f8a39738f .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-6821f8a39738f .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
	.ba-cheetah-content .ba-cheetah-node-6821eace0ab95 .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-6821eace0ab95 .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-6821eace0ab95 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-6821eace0ab95 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821eabad40c3 h3.ba-cheetah-heading a,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821eabad40c3 h3.ba-cheetah-heading .ba-cheetah-heading-text,
.ba-cheetah-row .ba-cheetah-col .ba-cheetah-node-6821eabad40c3 h3.ba-cheetah-heading .ba-cheetah-heading-text *,
.ba-cheetah-node-6821eabad40c3 h3.ba-cheetah-heading .ba-cheetah-heading-text {
    color: #ff8ec6;
}


.ba-cheetah-node-6821eabad40c3.ba-cheetah-module-heading .ba-cheetah-heading {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: left;
}
	.ba-cheetah-content .ba-cheetah-node-6821eaf5df3b2 .ba-cheetah-module-content .ba-cheetah-rich-text,
	.ba-cheetah-content .ba-cheetah-node-6821eaf5df3b2 .ba-cheetah-module-content .ba-cheetah-rich-text * {
		color: #333333;
	}
	.ba-cheetah-content .ba-cheetah-node-6821eaf5df3b2 .ba-cheetah-rich-text, .ba-cheetah-content .ba-cheetah-node-6821eaf5df3b2 .ba-cheetah-rich-text * {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 16px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

