/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(241, 238, 233);
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
	line-height: 1.5em;
}

.container-fluid {
	max-width: 1140px;
}

h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
	margin: 0 0 25px 0;
}

p {
	line-height: 1.5em;
	margin: 0 0 15px 0;
}

a,
.btn-link {
	color: rgb(229, 123, 99);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(225, 181, 178);
}

/* General Component Styles */
section[class^="component"] {
	padding: 60px 0;
}

section.headline {
	margin-bottom: 15px;
}

/* Utility Classes */
.hidden {
	display: none;
}

.text-center {
	text-align: center;
}

.flex-center {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.row-reverse {
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.square-img-container {
	padding: 0;
	position: relative;

	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
}

/* Magical CSS hack to maintain 1:1 Aspect Ratio */
.square-img-container::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.square-img-container .square-img-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
.square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	.square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	.square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	.square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	.square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	.square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	.square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/* Other bootstrap overrides
------------------------------*/
.dropdown-menu {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(229, 123, 99);
}

.panel {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	margin: 0 0 20px 0;
}

.panel-body {
	padding: 15px;
}

.panel-heading {
	border-bottom: 1px solid transparent;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	padding: 10px 15px;
}

.panel-heading > .dropdown .dropdown-toggle {
	color: inherit;
}

.panel-title {
	color: inherit;
	font-size: 16px;
	margin: 0;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
	color: inherit;
}

.panel-footer {
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	padding: 10px 15px;
}

/* Buttons */
.btn {
	border-radius: 0;
	border: none;
	font-size: 14px;
	letter-spacing: 0.077em;
	padding: 1em 3em;
}

.btn-small {
	border: 2px solid rgb(6, 56, 31);
	color: rgb(6, 56, 31);
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(229, 123, 99);
	border-color: rgb(229, 123, 99);
}

.btn-link {
	padding: 1.2em 0;
}

.btn-primary {
	background-color: rgb(229, 123, 99);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

.btn-secondary {
	background-color: rgb(6, 56, 31);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(53, 119, 102);
	color: rgb(241, 238, 233);
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(6, 56, 31);
	color: rgb(6, 56, 31);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: rgb(229, 123, 99);
}

/* Index
------------------------------*/

/* Subscribe Flow
------------------------------*/
.sf-grid {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.sf-grid__container {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	padding: .9375rem 0;
}

.sf-item {
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;

	border: 1px solid #E1E1E1;
	margin: 20px;
	text-align: center;
	padding: 20px;
}

.sf-item, .sf-item__content {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.sf-item__content {
	-webkit-flex: 1 1 auto;
	-moz-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.sf-item__name {
	margin: 1em 0;
}

.sf-item * {
	max-width: 100%;
}

/* Survey Forms
------------------------------*/
.survey h2 {
	margin: 0 0 1em 0;
}

.survey .radio input[type="radio"],
.survey .checkbox input[type="checkbox"] {
	margin: 0 0.5em 0 0;
}

/* Sold Out
------------------------------*/
.sold-out-image {
	height: 171px;
	width: 195px;
	margin: auto;
	margin-bottom: 38px;
}

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(6, 56, 31);
}
.orders-list .panel {
	width: 100%;
}

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
}

.checkout_content #add_coupon_code {
	padding: .375rem 1rem;
	width: auto;
}

.checkout_content #checkout_button {
	background-color: rgb(229, 123, 99);
	border: none;
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

/* Thank You
------------------------------*/
.checkout_content section {
	border-color: #F5F5F5;
}

.checkout_content h1 {
	margin: 0 0 25px 0;
	text-align: center;
}

.cart_listing table {
	border-color: #F5F5F5;
}

/* Account
------------------------------*/
.account-header h1,
.account-header h2 {
	margin: 0 0 15px 0;
}

.account-header .gift-card-container {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.account-header .gift-card-balance {
	margin: 0 0 15px 0;
}

.my-account {
	margin: 25px 0;
}

.address-container {
	width: 100%;
}

.address-panel .inner-address-row {
	padding: 0;
}

.address-panel .address-edit-btn {
	min-width: auto;
	padding: 10px;
}

.address-info #is_primary {
	margin: 0;
	width: auto;
}

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(6, 56, 31);
}

.skip-dialog .row {
	display: block;
	text-align: center;
}

.skip-dialog h4 {
	margin: 0 0 22px 0;
}

.panel-sub-confirm {
	box-shadow: none;
}

.panel-sub-confirm form div:last-child {
	display: block;
}

#skip_button,
input[type="radio"] + label.cj-btn {
	background-color: transparent;
	border: 1px solid rgb(229, 123, 99);
	color: rgb(229, 123, 99);
	letter-spacing: 1px;
	text-transform: uppercase;
}

#skip_button:hover,
#skip_button:focus,
#skip_button:active,
input[type="radio"]:checked + label.cj-btn, #skip_button.skipped {
	background-color: rgb(225, 181, 178);
	border-color: rgb(225, 181, 178);
	text-decoration: none;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	section[class^="component"] {
		padding: 40px 0;
	}
	/* Used to reverse a row when it wraps on smaller screens */
	.row-sm-reverse {
		-webkit-flex-wrap: wrap-reverse;
		-moz-flex-wrap: wrap-reverse;
		-ms-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	.panel-cratejoy .pull-right,
	.panel-cratejoy .pull-left,
	.skip-dialog .pull-right,
	.skip-dialog .pull-left,
	.subscription_cancel .pull-right,
	.subscription_cancel .pull-left,
	#edit-subscription-form .pull-right,
	#edit-subscription-form .pull-left {
		float: none;
		width: 100%;
		margin: 10px 0;
	}
}

@media (min-width: 768px) {
	.account-header .gift-card-container {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.account-header .gift-card-balance {
		margin: 0;
	}
}

@media (min-width: 992px) {
	.account-header h1,
	.account-header h2 {
		margin: 0;
	}
}

/*
 * components/832024/cmp_0a917291-3908-49c7-aaaa-9bc0daa50c6f/component.css
 */
#cmp_0a917291-3908-49c7-aaaa-9bc0daa50c6f {
	background-color: rgb(241, 238, 233);
}

#cmp_0a917291-3908-49c7-aaaa-9bc0daa50c6f h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_0a917291-3908-49c7-aaaa-9bc0daa50c6f h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_0a917291-3908-49c7-aaaa-9bc0daa50c6f h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_0a917291-3908-49c7-aaaa-9bc0daa50c6f p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0a917291-3908-49c7-aaaa-9bc0daa50c6f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0a917291-3908-49c7-aaaa-9bc0daa50c6f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0a917291-3908-49c7-aaaa-9bc0daa50c6f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/832024/cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91/component.css
 */
#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 {
	padding: 0;
}

#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_0cda9bd0-2218-4774-afa4-dc8b22d3de91 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/832024/cmp_15c72a18-0133-447e-bd15-352e4107d6aa/component.css
 */
#cmp_15c72a18-0133-447e-bd15-352e4107d6aa {
	padding: 0;
}

#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_15c72a18-0133-447e-bd15-352e4107d6aa .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/832024/cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56/component.css
 */
#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 {
	padding: 0;
}

#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_2e547ae8-08d9-44ca-81b6-693abbcfaf56 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/832024/cmp_429a8321-4a34-476e-9887-2ba884584849/component.css
 */
#cmp_429a8321-4a34-476e-9887-2ba884584849 {
	padding: 0;
}

#cmp_429a8321-4a34-476e-9887-2ba884584849 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_429a8321-4a34-476e-9887-2ba884584849 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_429a8321-4a34-476e-9887-2ba884584849 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_429a8321-4a34-476e-9887-2ba884584849 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_429a8321-4a34-476e-9887-2ba884584849 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_429a8321-4a34-476e-9887-2ba884584849 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_429a8321-4a34-476e-9887-2ba884584849 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_429a8321-4a34-476e-9887-2ba884584849 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_429a8321-4a34-476e-9887-2ba884584849 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_429a8321-4a34-476e-9887-2ba884584849 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_429a8321-4a34-476e-9887-2ba884584849 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_429a8321-4a34-476e-9887-2ba884584849 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_429a8321-4a34-476e-9887-2ba884584849 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_429a8321-4a34-476e-9887-2ba884584849 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/832024/cmp_dae11916-81ee-4b48-ae66-f8fca37494c8/component.css
 */
#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 {
	padding: 0;
}

#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_dae11916-81ee-4b48-ae66-f8fca37494c8 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/832024/cmp_ff095ff0-f565-42cf-be59-4df42f1779af/component.css
 */
#cmp_ff095ff0-f565-42cf-be59-4df42f1779af {
	padding: 0;
}

#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_ff095ff0-f565-42cf-be59-4df42f1779af .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/842024/cmp_f6944371-3e33-4a4e-8140-0f797fbf7c42/component.css
 */
#cmp_f6944371-3e33-4a4e-8140-0f797fbf7c42 {
	background-color: rgb(241, 238, 233);
}

#cmp_f6944371-3e33-4a4e-8140-0f797fbf7c42 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_f6944371-3e33-4a4e-8140-0f797fbf7c42 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_f6944371-3e33-4a4e-8140-0f797fbf7c42 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_f6944371-3e33-4a4e-8140-0f797fbf7c42 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f6944371-3e33-4a4e-8140-0f797fbf7c42 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f6944371-3e33-4a4e-8140-0f797fbf7c42 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_f6944371-3e33-4a4e-8140-0f797fbf7c42 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/852024/cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965/component.css
 */
#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 {
	padding: 0;
}

#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_05916c5f-1f8d-44fb-890a-2f8b2fc02965 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/852024/cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a/component.css
 */
#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a {
	padding: 0;
}

#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_25298d40-1199-4ddf-a25c-bf6e15c7622a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/852024/cmp_57c75d7b-3f2c-4528-8367-72e58179c6a1/component.css
 */
#cmp_57c75d7b-3f2c-4528-8367-72e58179c6a1 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_57c75d7b-3f2c-4528-8367-72e58179c6a1 .content {
	padding: 0;
}

#cmp_57c75d7b-3f2c-4528-8367-72e58179c6a1 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_57c75d7b-3f2c-4528-8367-72e58179c6a1 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/852024/cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288/component.css
 */
#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 {
	padding: 0;
}

#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6c9d55d6-ba0a-4e14-adec-1e1e9e51b288 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/852024/cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828/component.css
 */
#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 {
	padding: 0;
}

#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_85da1fdf-3c20-40cf-910a-84cbd2a37828 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/852024/cmp_a822b578-f187-4497-99b7-46c9c9b943c9/component.css
 */
#cmp_a822b578-f187-4497-99b7-46c9c9b943c9 {
	background-color: rgb(241, 238, 233);
}

#cmp_a822b578-f187-4497-99b7-46c9c9b943c9 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_a822b578-f187-4497-99b7-46c9c9b943c9 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_a822b578-f187-4497-99b7-46c9c9b943c9 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_a822b578-f187-4497-99b7-46c9c9b943c9 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a822b578-f187-4497-99b7-46c9c9b943c9 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a822b578-f187-4497-99b7-46c9c9b943c9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_a822b578-f187-4497-99b7-46c9c9b943c9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/852024/cmp_c198a759-a6a1-484f-884b-38c8d7a88d00/component.css
 */
#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 {
	padding: 0;
}

#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_c198a759-a6a1-484f-884b-38c8d7a88d00 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/862025/cmp_5375df88-08ce-4836-86e2-cd856c398e6a/component.css
 */
#cmp_5375df88-08ce-4836-86e2-cd856c398e6a {
	padding: 0;
}

#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_5375df88-08ce-4836-86e2-cd856c398e6a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/862025/cmp_69b28341-96b5-4a7a-91a0-6726ccb18b4b/component.css
 */
#cmp_69b28341-96b5-4a7a-91a0-6726ccb18b4b {
	background-color: rgb(241, 238, 233);
}

#cmp_69b28341-96b5-4a7a-91a0-6726ccb18b4b h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_69b28341-96b5-4a7a-91a0-6726ccb18b4b h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_69b28341-96b5-4a7a-91a0-6726ccb18b4b h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_69b28341-96b5-4a7a-91a0-6726ccb18b4b p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_69b28341-96b5-4a7a-91a0-6726ccb18b4b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_69b28341-96b5-4a7a-91a0-6726ccb18b4b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_69b28341-96b5-4a7a-91a0-6726ccb18b4b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/862025/cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8/component.css
 */
#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 {
	padding: 0;
}

#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_774067fb-a4a7-4b61-8b8b-e1e8a6c9abe8 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/862025/cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c/component.css
 */
#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c {
	padding: 0;
}

#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_87c3ea38-a22d-4adf-b88e-78779a8c488c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/862025/cmp_9d057554-ae62-402a-9dcd-b49e77c9e81d/component.css
 */
#cmp_9d057554-ae62-402a-9dcd-b49e77c9e81d {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_9d057554-ae62-402a-9dcd-b49e77c9e81d .content {
	padding: 0;
}

#cmp_9d057554-ae62-402a-9dcd-b49e77c9e81d .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_9d057554-ae62-402a-9dcd-b49e77c9e81d .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/862025/cmp_b7fd229f-faa8-44f8-9428-43253c784c96/component.css
 */
#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 {
	padding: 0;
}

#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b7fd229f-faa8-44f8-9428-43253c784c96 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/862025/cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae/component.css
 */
#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae {
	padding: 0;
}

#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f77e8746-cc1f-4b3d-a354-91ddcb93b8ae .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/872025/cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c/component.css
 */
#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c {
	padding: 0;
}

#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_04b2aaad-9db9-4eec-b3d4-07bd93d1584c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/872025/cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a/component.css
 */
#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a {
	padding: 0;
}

#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_1d1ac2bb-1e0f-40fb-9ebd-b62c94a0667a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/872025/cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5/component.css
 */
#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 {
	padding: 0;
}

#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_3c93b1ef-f729-40f4-9949-917a3331d3b5 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/872025/cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f/component.css
 */
#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f {
	padding: 0;
}

#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_573d4b11-afcf-48c4-9d7f-1134e85fc27f .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/872025/cmp_6db934bc-9b28-4c45-a191-c992c1b2d41a/component.css
 */
#cmp_6db934bc-9b28-4c45-a191-c992c1b2d41a {
	background-color: rgb(241, 238, 233);
}

#cmp_6db934bc-9b28-4c45-a191-c992c1b2d41a h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_6db934bc-9b28-4c45-a191-c992c1b2d41a h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6db934bc-9b28-4c45-a191-c992c1b2d41a h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6db934bc-9b28-4c45-a191-c992c1b2d41a p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6db934bc-9b28-4c45-a191-c992c1b2d41a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_6db934bc-9b28-4c45-a191-c992c1b2d41a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_6db934bc-9b28-4c45-a191-c992c1b2d41a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/872025/cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22/component.css
 */
#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 {
	padding: 0;
}

#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_9d42e789-d8ad-4990-8e87-dbecbb0a6b22 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/872025/cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f/component.css
 */
#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f {
	padding: 0;
}

#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_deec6bda-2b54-4ec4-af24-5ed9a4dd3e1f .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/882025/cmp_6034d06c-0e2f-49a0-a195-33966e00addf/component.css
 */
#cmp_6034d06c-0e2f-49a0-a195-33966e00addf {
	padding: 0;
}

#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6034d06c-0e2f-49a0-a195-33966e00addf .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/882025/cmp_69588305-a6ca-4551-b65a-07a3deea573d/component.css
 */
#cmp_69588305-a6ca-4551-b65a-07a3deea573d {
	padding: 0;
}

#cmp_69588305-a6ca-4551-b65a-07a3deea573d .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_69588305-a6ca-4551-b65a-07a3deea573d .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_69588305-a6ca-4551-b65a-07a3deea573d .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_69588305-a6ca-4551-b65a-07a3deea573d .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_69588305-a6ca-4551-b65a-07a3deea573d .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_69588305-a6ca-4551-b65a-07a3deea573d .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_69588305-a6ca-4551-b65a-07a3deea573d .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_69588305-a6ca-4551-b65a-07a3deea573d .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_69588305-a6ca-4551-b65a-07a3deea573d .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_69588305-a6ca-4551-b65a-07a3deea573d .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_69588305-a6ca-4551-b65a-07a3deea573d .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_69588305-a6ca-4551-b65a-07a3deea573d .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_69588305-a6ca-4551-b65a-07a3deea573d .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_69588305-a6ca-4551-b65a-07a3deea573d .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/882025/cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a/component.css
 */
#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a {
	padding: 0;
}

#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_76be7187-e27c-4cda-b17f-86acf87e3f8a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/882025/cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94/component.css
 */
#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 {
	padding: 0;
}

#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_93ee1495-65cf-4a97-bb62-5a8ea3924d94 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/882025/cmp_c7b53ad0-285e-49dd-9351-ee395aae45ad/component.css
 */
#cmp_c7b53ad0-285e-49dd-9351-ee395aae45ad {
	background-color: rgb(241, 238, 233);
}

#cmp_c7b53ad0-285e-49dd-9351-ee395aae45ad h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_c7b53ad0-285e-49dd-9351-ee395aae45ad h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_c7b53ad0-285e-49dd-9351-ee395aae45ad h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_c7b53ad0-285e-49dd-9351-ee395aae45ad p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c7b53ad0-285e-49dd-9351-ee395aae45ad .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c7b53ad0-285e-49dd-9351-ee395aae45ad ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_c7b53ad0-285e-49dd-9351-ee395aae45ad ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/882025/cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7/component.css
 */
#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 {
	padding: 0;
}

#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f35005ca-8ecc-40a8-b548-51ea581f82a7 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/882025/cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5/component.css
 */
#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 {
	padding: 0;
}

#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_fc9a60a0-9d3a-4c26-908d-7e1358e89ae5 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/892025/cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe/component.css
 */
#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe {
	padding: 0;
}

#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_5a9be4c1-e4f1-4f66-ad6b-557b90ce5bfe .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/892025/cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701/component.css
 */
#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 {
	padding: 0;
}

#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_67d57e9e-67f5-423f-bcbb-19cfe21a4701 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/892025/cmp_7861a26c-ded5-40a2-a005-a61c43452bd4/component.css
 */
#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 {
	padding: 0;
}

#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_7861a26c-ded5-40a2-a005-a61c43452bd4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/892025/cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37/component.css
 */
#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 {
	padding: 0;
}

#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_9f356c74-fa36-4da2-be97-aa0a64eeec37 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/892025/cmp_bda11417-9a55-4dc0-a010-990d1140651a/component.css
 */
#cmp_bda11417-9a55-4dc0-a010-990d1140651a {
	padding: 0;
}

#cmp_bda11417-9a55-4dc0-a010-990d1140651a .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_bda11417-9a55-4dc0-a010-990d1140651a .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_bda11417-9a55-4dc0-a010-990d1140651a .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_bda11417-9a55-4dc0-a010-990d1140651a .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_bda11417-9a55-4dc0-a010-990d1140651a .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_bda11417-9a55-4dc0-a010-990d1140651a .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_bda11417-9a55-4dc0-a010-990d1140651a .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_bda11417-9a55-4dc0-a010-990d1140651a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_bda11417-9a55-4dc0-a010-990d1140651a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_bda11417-9a55-4dc0-a010-990d1140651a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_bda11417-9a55-4dc0-a010-990d1140651a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_bda11417-9a55-4dc0-a010-990d1140651a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_bda11417-9a55-4dc0-a010-990d1140651a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_bda11417-9a55-4dc0-a010-990d1140651a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/892025/cmp_c7931be7-022e-4b83-98df-690c90a44192/component.css
 */
#cmp_c7931be7-022e-4b83-98df-690c90a44192 {
	background-color: rgb(241, 238, 233);
}

#cmp_c7931be7-022e-4b83-98df-690c90a44192 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_c7931be7-022e-4b83-98df-690c90a44192 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_c7931be7-022e-4b83-98df-690c90a44192 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_c7931be7-022e-4b83-98df-690c90a44192 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c7931be7-022e-4b83-98df-690c90a44192 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c7931be7-022e-4b83-98df-690c90a44192 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_c7931be7-022e-4b83-98df-690c90a44192 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/892025/cmp_ce330b58-0277-4728-b3d0-0ca8240480ae/component.css
 */
#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae {
	padding: 0;
}

#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_ce330b58-0277-4728-b3d0-0ca8240480ae .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/902026/cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2/component.css
 */
#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 {
	padding: 0;
}

#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_0e6f9106-7600-4eac-a564-b7e3058ff1f2 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/902026/cmp_4e09998d-5302-4943-81f0-ea758c172a60/component.css
 */
#cmp_4e09998d-5302-4943-81f0-ea758c172a60 {
	padding: 0;
}

#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_4e09998d-5302-4943-81f0-ea758c172a60 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/902026/cmp_75559fc6-7212-4b82-a514-e7496cf222db/component.css
 */
#cmp_75559fc6-7212-4b82-a514-e7496cf222db {
	background-color: rgb(241, 238, 233);
}

#cmp_75559fc6-7212-4b82-a514-e7496cf222db h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_75559fc6-7212-4b82-a514-e7496cf222db h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_75559fc6-7212-4b82-a514-e7496cf222db h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_75559fc6-7212-4b82-a514-e7496cf222db p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_75559fc6-7212-4b82-a514-e7496cf222db .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_75559fc6-7212-4b82-a514-e7496cf222db ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_75559fc6-7212-4b82-a514-e7496cf222db ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/902026/cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e/component.css
 */
#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e {
	padding: 0;
}

#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_a56ad6e7-cc15-4a35-8a34-a1b3784a6f3e .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/902026/cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3/component.css
 */
#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 {
	padding: 0;
}

#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_d9dd2003-0314-4fec-9fd9-37382f6726b3 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/902026/cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c/component.css
 */
#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c {
	padding: 0;
}

#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_e24d2e07-2cfc-499d-a78a-ba54e85ea67c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/902026/cmp_f1913b72-5947-4be8-b079-7125caa1fd2b/component.css
 */
#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b {
	padding: 0;
}

#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f1913b72-5947-4be8-b079-7125caa1fd2b .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/912025/cmp_f1ff0244-edce-4a56-b604-c9f3a3ae330b/component.css
 */
#cmp_f1ff0244-edce-4a56-b604-c9f3a3ae330b {
	background-color: rgb(241, 238, 233);
}

#cmp_f1ff0244-edce-4a56-b604-c9f3a3ae330b h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_f1ff0244-edce-4a56-b604-c9f3a3ae330b h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_f1ff0244-edce-4a56-b604-c9f3a3ae330b h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_f1ff0244-edce-4a56-b604-c9f3a3ae330b p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f1ff0244-edce-4a56-b604-c9f3a3ae330b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f1ff0244-edce-4a56-b604-c9f3a3ae330b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_f1ff0244-edce-4a56-b604-c9f3a3ae330b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/922025/cmp_280129f7-a7f4-404d-ae50-e19bed61c520/component.css
 */
#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 {
	padding: 0;
}

#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_280129f7-a7f4-404d-ae50-e19bed61c520 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/922025/cmp_368fd34e-38d8-46e4-988e-ee45857337ef/component.css
 */
#cmp_368fd34e-38d8-46e4-988e-ee45857337ef {
	background-color: rgb(241, 238, 233);
}

#cmp_368fd34e-38d8-46e4-988e-ee45857337ef h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_368fd34e-38d8-46e4-988e-ee45857337ef h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_368fd34e-38d8-46e4-988e-ee45857337ef h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_368fd34e-38d8-46e4-988e-ee45857337ef p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_368fd34e-38d8-46e4-988e-ee45857337ef .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_368fd34e-38d8-46e4-988e-ee45857337ef ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_368fd34e-38d8-46e4-988e-ee45857337ef ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/922025/cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8/component.css
 */
#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 {
	padding: 0;
}

#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6a1be9f3-78f6-451f-b7cc-f1911876d9c8 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/922025/cmp_74739ebe-77a8-4304-963a-250a84e9723f/component.css
 */
#cmp_74739ebe-77a8-4304-963a-250a84e9723f {
	padding: 0;
}

#cmp_74739ebe-77a8-4304-963a-250a84e9723f .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_74739ebe-77a8-4304-963a-250a84e9723f .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_74739ebe-77a8-4304-963a-250a84e9723f .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_74739ebe-77a8-4304-963a-250a84e9723f .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_74739ebe-77a8-4304-963a-250a84e9723f .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_74739ebe-77a8-4304-963a-250a84e9723f .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_74739ebe-77a8-4304-963a-250a84e9723f .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_74739ebe-77a8-4304-963a-250a84e9723f .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_74739ebe-77a8-4304-963a-250a84e9723f .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_74739ebe-77a8-4304-963a-250a84e9723f .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_74739ebe-77a8-4304-963a-250a84e9723f .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_74739ebe-77a8-4304-963a-250a84e9723f .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_74739ebe-77a8-4304-963a-250a84e9723f .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_74739ebe-77a8-4304-963a-250a84e9723f .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/922025/cmp_85d13119-ae8f-4114-a986-42a4a2f8d994/component.css
 */
#cmp_85d13119-ae8f-4114-a986-42a4a2f8d994 {
	background-color: rgb(241, 238, 233);
}

#cmp_85d13119-ae8f-4114-a986-42a4a2f8d994 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_85d13119-ae8f-4114-a986-42a4a2f8d994 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_85d13119-ae8f-4114-a986-42a4a2f8d994 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_85d13119-ae8f-4114-a986-42a4a2f8d994 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_85d13119-ae8f-4114-a986-42a4a2f8d994 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_85d13119-ae8f-4114-a986-42a4a2f8d994 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_85d13119-ae8f-4114-a986-42a4a2f8d994 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/922025/cmp_93384609-804d-4062-adef-fbd0a887b780/component.css
 */
#cmp_93384609-804d-4062-adef-fbd0a887b780 {
	padding: 0;
}

#cmp_93384609-804d-4062-adef-fbd0a887b780 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_93384609-804d-4062-adef-fbd0a887b780 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_93384609-804d-4062-adef-fbd0a887b780 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_93384609-804d-4062-adef-fbd0a887b780 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_93384609-804d-4062-adef-fbd0a887b780 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_93384609-804d-4062-adef-fbd0a887b780 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_93384609-804d-4062-adef-fbd0a887b780 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_93384609-804d-4062-adef-fbd0a887b780 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_93384609-804d-4062-adef-fbd0a887b780 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_93384609-804d-4062-adef-fbd0a887b780 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_93384609-804d-4062-adef-fbd0a887b780 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_93384609-804d-4062-adef-fbd0a887b780 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_93384609-804d-4062-adef-fbd0a887b780 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_93384609-804d-4062-adef-fbd0a887b780 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/922025/cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d/component.css
 */
#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d {
	padding: 0;
}

#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_be397942-a1de-40c3-80c4-6e7acde4ba9d .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/932025/cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c/component.css
 */
#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c {
	padding: 0;
}

#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_00fc37c3-7402-41dd-87b2-b1ea0c1e121c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/932025/cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998/component.css
 */
#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 {
	padding: 0;
}

#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_5ce18d21-f008-4e09-9bdc-a37c3a6b8998 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/932025/cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9/component.css
 */
#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 {
	padding: 0;
}

#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6e3c8699-eb9c-4ad4-993c-d158d04c6db9 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/932025/cmp_79b7423c-1afc-4682-b515-cda041be011c/component.css
 */
#cmp_79b7423c-1afc-4682-b515-cda041be011c {
	background-color: rgb(241, 238, 233);
}

#cmp_79b7423c-1afc-4682-b515-cda041be011c h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_79b7423c-1afc-4682-b515-cda041be011c h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_79b7423c-1afc-4682-b515-cda041be011c h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_79b7423c-1afc-4682-b515-cda041be011c p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_79b7423c-1afc-4682-b515-cda041be011c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_79b7423c-1afc-4682-b515-cda041be011c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_79b7423c-1afc-4682-b515-cda041be011c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/932025/cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e/component.css
 */
#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e {
	padding: 0;
}

#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_7f978f09-3cef-47e2-8648-cc2a2e23334e .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/932025/cmp_d2010af2-612d-4ee9-a741-9b68812da458/component.css
 */
#cmp_d2010af2-612d-4ee9-a741-9b68812da458 {
	padding: 0;
}

#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_d2010af2-612d-4ee9-a741-9b68812da458 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/94/cmp_1e1b366d-4dbf-4bfe-aae4-95dd9a1ce486/component.css
 */
#cmp_1e1b366d-4dbf-4bfe-aae4-95dd9a1ce486 {
	background-color: rgb(241, 238, 233);
}

#cmp_1e1b366d-4dbf-4bfe-aae4-95dd9a1ce486 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_1e1b366d-4dbf-4bfe-aae4-95dd9a1ce486 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_1e1b366d-4dbf-4bfe-aae4-95dd9a1ce486 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_1e1b366d-4dbf-4bfe-aae4-95dd9a1ce486 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_1e1b366d-4dbf-4bfe-aae4-95dd9a1ce486 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1e1b366d-4dbf-4bfe-aae4-95dd9a1ce486 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_1e1b366d-4dbf-4bfe-aae4-95dd9a1ce486 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/94/cmp_3c5747fd-2e39-47d9-aad1-e8278864ae69/component.css
 */
#cmp_3c5747fd-2e39-47d9-aad1-e8278864ae69 {
	background-color: rgb(241, 238, 233);
}

#cmp_3c5747fd-2e39-47d9-aad1-e8278864ae69 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_3c5747fd-2e39-47d9-aad1-e8278864ae69 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_3c5747fd-2e39-47d9-aad1-e8278864ae69 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_3c5747fd-2e39-47d9-aad1-e8278864ae69 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3c5747fd-2e39-47d9-aad1-e8278864ae69 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3c5747fd-2e39-47d9-aad1-e8278864ae69 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_3c5747fd-2e39-47d9-aad1-e8278864ae69 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/94/cmp_763b3cff-8b72-4d42-ad04-da6973b2d580/component.css
 */
#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 {
	padding: 0;
}

#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_763b3cff-8b72-4d42-ad04-da6973b2d580 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/94/cmp_7f8e65ab-e83a-4376-ba76-304f020e61de/component.css
 */
#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de {
	padding: 0;
}

#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_7f8e65ab-e83a-4376-ba76-304f020e61de .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/94/cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908/component.css
 */
#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 {
	padding: 0;
}

#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b17d4f8a-b7f0-40d9-a581-ee0d1b814908 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/94/cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66/component.css
 */
#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 {
	padding: 0;
}

#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_bd95ae7b-8fe3-4401-a0d0-237906d42d66 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/94/cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d/component.css
 */
#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d {
	padding: 0;
}

#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f117ab93-5f01-4aa3-92d3-3a08f35fa55d .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/95/cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca/component.css
 */
#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca {
	padding: 0;
}

#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_079c40ff-baa9-4372-9e80-62093ab3a4ca .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/95/cmp_22f4b742-35d9-4027-8028-a1e620e35151/component.css
 */
#cmp_22f4b742-35d9-4027-8028-a1e620e35151 {
	background-color: rgb(241, 238, 233);
}

#cmp_22f4b742-35d9-4027-8028-a1e620e35151 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_22f4b742-35d9-4027-8028-a1e620e35151 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_22f4b742-35d9-4027-8028-a1e620e35151 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_22f4b742-35d9-4027-8028-a1e620e35151 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_22f4b742-35d9-4027-8028-a1e620e35151 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_22f4b742-35d9-4027-8028-a1e620e35151 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_22f4b742-35d9-4027-8028-a1e620e35151 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/95/cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb/component.css
 */
#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb {
	padding: 0;
}

#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_2eeb2b56-e338-4f34-a15b-60ebd92945fb .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/95/cmp_766f1ee9-e829-4528-b508-805e3b6709ec/component.css
 */
#cmp_766f1ee9-e829-4528-b508-805e3b6709ec {
	padding: 0;
}

#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_766f1ee9-e829-4528-b508-805e3b6709ec .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/95/cmp_b43a1169-16f4-434e-9095-d00aaf4399e7/component.css
 */
#cmp_b43a1169-16f4-434e-9095-d00aaf4399e7 {
	background-color: rgb(241, 238, 233);
}

#cmp_b43a1169-16f4-434e-9095-d00aaf4399e7 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_b43a1169-16f4-434e-9095-d00aaf4399e7 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_b43a1169-16f4-434e-9095-d00aaf4399e7 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_b43a1169-16f4-434e-9095-d00aaf4399e7 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b43a1169-16f4-434e-9095-d00aaf4399e7 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b43a1169-16f4-434e-9095-d00aaf4399e7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_b43a1169-16f4-434e-9095-d00aaf4399e7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/95/cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5/component.css
 */
#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 {
	padding: 0;
}

#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_be1579ed-b4da-40e9-be3f-2aaf5a0bedd5 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/96/cmp_65a19885-c29a-479a-930a-936ec05a95a8/component.css
 */
#cmp_65a19885-c29a-479a-930a-936ec05a95a8 {
	background-color: rgb(241, 238, 233);
}

#cmp_65a19885-c29a-479a-930a-936ec05a95a8 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_65a19885-c29a-479a-930a-936ec05a95a8 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_65a19885-c29a-479a-930a-936ec05a95a8 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_65a19885-c29a-479a-930a-936ec05a95a8 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_65a19885-c29a-479a-930a-936ec05a95a8 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_65a19885-c29a-479a-930a-936ec05a95a8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_65a19885-c29a-479a-930a-936ec05a95a8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/97/cmp_d96ea716-a5d9-4968-b185-778b75949a1d/component.css
 */
#cmp_d96ea716-a5d9-4968-b185-778b75949a1d {
	background-color: rgb(241, 238, 233);
}

#cmp_d96ea716-a5d9-4968-b185-778b75949a1d h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_d96ea716-a5d9-4968-b185-778b75949a1d h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_d96ea716-a5d9-4968-b185-778b75949a1d h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_d96ea716-a5d9-4968-b185-778b75949a1d p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d96ea716-a5d9-4968-b185-778b75949a1d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d96ea716-a5d9-4968-b185-778b75949a1d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_d96ea716-a5d9-4968-b185-778b75949a1d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/98/cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26/component.css
 */
#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 {
	padding: 0;
}

#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_04caf9a9-c0e3-419d-b514-8bc5eac98a26 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/98/cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a/component.css
 */
#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a {
	padding: 0;
}

#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_1ab1eebc-371b-4704-91fb-7f2af9e6294a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/98/cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def/component.css
 */
#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def {
	padding: 0;
}

#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b5d7cf05-bab5-4b21-bf23-e4ef11977def .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/98/cmp_bf411c28-db29-4955-8860-333003750a35/component.css
 */
#cmp_bf411c28-db29-4955-8860-333003750a35 {
	background-color: rgb(241, 238, 233);
}

#cmp_bf411c28-db29-4955-8860-333003750a35 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_bf411c28-db29-4955-8860-333003750a35 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_bf411c28-db29-4955-8860-333003750a35 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_bf411c28-db29-4955-8860-333003750a35 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_bf411c28-db29-4955-8860-333003750a35 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_bf411c28-db29-4955-8860-333003750a35 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_bf411c28-db29-4955-8860-333003750a35 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/98/cmp_c506b88d-d536-43df-8b78-aa0d1cfba5e8/component.css
 */
#cmp_c506b88d-d536-43df-8b78-aa0d1cfba5e8 {
	background-color: rgb(241, 238, 233);
}

#cmp_c506b88d-d536-43df-8b78-aa0d1cfba5e8 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_c506b88d-d536-43df-8b78-aa0d1cfba5e8 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_c506b88d-d536-43df-8b78-aa0d1cfba5e8 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_c506b88d-d536-43df-8b78-aa0d1cfba5e8 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c506b88d-d536-43df-8b78-aa0d1cfba5e8 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c506b88d-d536-43df-8b78-aa0d1cfba5e8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_c506b88d-d536-43df-8b78-aa0d1cfba5e8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/98/cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39/component.css
 */
#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 {
	padding: 0;
}

#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_fc00fff9-6feb-452d-90c8-94bc9b095f39 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/99/cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1/component.css
 */
#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 {
	padding: 0;
}

#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_1f981699-3c9e-4ade-9638-7ee80b6418b1 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/99/cmp_4db15b82-f1f4-49ae-be47-36524eb71239/component.css
 */
#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 {
	padding: 0;
}

#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_4db15b82-f1f4-49ae-be47-36524eb71239 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/99/cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322/component.css
 */
#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 {
	padding: 0;
}

#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_85d1be22-aaf9-4541-b4e2-7b1488c9c322 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/99/cmp_876d1301-d825-4b0e-a483-9249d4786dc8/component.css
 */
#cmp_876d1301-d825-4b0e-a483-9249d4786dc8 {
	background-color: rgb(241, 238, 233);
}

#cmp_876d1301-d825-4b0e-a483-9249d4786dc8 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_876d1301-d825-4b0e-a483-9249d4786dc8 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_876d1301-d825-4b0e-a483-9249d4786dc8 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_876d1301-d825-4b0e-a483-9249d4786dc8 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_876d1301-d825-4b0e-a483-9249d4786dc8 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_876d1301-d825-4b0e-a483-9249d4786dc8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_876d1301-d825-4b0e-a483-9249d4786dc8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/99/cmp_fe1f4187-20f6-417a-a111-fabff1341e8f/component.css
 */
#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f {
	padding: 0;
}

#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_fe1f4187-20f6-417a-a111-fabff1341e8f .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/april_24/cmp_00121308-c32d-4d6e-b8fb-408c974ed15c/component.css
 */
#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c {
	padding: 0;
}

#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_00121308-c32d-4d6e-b8fb-408c974ed15c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/april_24/cmp_25ed255b-7032-4de4-90f7-63de17b9c85c/component.css
 */
#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c {
	padding: 0;
}

#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_25ed255b-7032-4de4-90f7-63de17b9c85c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/april_24/cmp_2f73b829-f33f-4d2b-ae95-cca15e7834f2/component.css
 */
#cmp_2f73b829-f33f-4d2b-ae95-cca15e7834f2 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_2f73b829-f33f-4d2b-ae95-cca15e7834f2 .content {
	padding: 0;
}

#cmp_2f73b829-f33f-4d2b-ae95-cca15e7834f2 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_2f73b829-f33f-4d2b-ae95-cca15e7834f2 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/april_24/cmp_3f7efee7-0d81-4461-bbb2-d9daa4cc8b17/component.css
 */
#cmp_3f7efee7-0d81-4461-bbb2-d9daa4cc8b17 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_3f7efee7-0d81-4461-bbb2-d9daa4cc8b17 .content {
	padding: 0;
}

#cmp_3f7efee7-0d81-4461-bbb2-d9daa4cc8b17 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_3f7efee7-0d81-4461-bbb2-d9daa4cc8b17 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/april_24/cmp_420a3be4-0571-43fa-9b78-5c97802f7028/component.css
 */
#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 {
	padding: 0;
}

#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_420a3be4-0571-43fa-9b78-5c97802f7028 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/april_24/cmp_74155c1d-1056-4640-94bb-627555c5eea9/component.css
 */
#cmp_74155c1d-1056-4640-94bb-627555c5eea9 {
	padding: 0;
}

#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_74155c1d-1056-4640-94bb-627555c5eea9 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/april_24/cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4/component.css
 */
#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 {
	padding: 0;
}

#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_850409c6-1f07-4c64-a11e-fdbd8e1147f4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/april_24/cmp_8760481a-d32e-4adf-8046-2239c64def81/component.css
 */
#cmp_8760481a-d32e-4adf-8046-2239c64def81 {
	background-color: rgb(241, 238, 233);
}

#cmp_8760481a-d32e-4adf-8046-2239c64def81 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_8760481a-d32e-4adf-8046-2239c64def81 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_8760481a-d32e-4adf-8046-2239c64def81 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_8760481a-d32e-4adf-8046-2239c64def81 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8760481a-d32e-4adf-8046-2239c64def81 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8760481a-d32e-4adf-8046-2239c64def81 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_8760481a-d32e-4adf-8046-2239c64def81 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/april_24/cmp_a1820233-72f1-47ba-9d47-c25a0ee40435/component.css
 */
#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 {
	padding: 0;
}

#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_a1820233-72f1-47ba-9d47-c25a0ee40435 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/april_24/cmp_a8dd397e-a2d9-43c4-ac2c-42536d85bedd/component.css
 */
#cmp_a8dd397e-a2d9-43c4-ac2c-42536d85bedd {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_a8dd397e-a2d9-43c4-ac2c-42536d85bedd .content {
	padding: 0;
}

#cmp_a8dd397e-a2d9-43c4-ac2c-42536d85bedd .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_a8dd397e-a2d9-43c4-ac2c-42536d85bedd .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/april_24/cmp_dd24494e-5ecb-4287-8f41-074bc6a9818a/component.css
 */
#cmp_dd24494e-5ecb-4287-8f41-074bc6a9818a {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_dd24494e-5ecb-4287-8f41-074bc6a9818a .content {
	padding: 0;
}

#cmp_dd24494e-5ecb-4287-8f41-074bc6a9818a .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_dd24494e-5ecb-4287-8f41-074bc6a9818a .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/august_24/cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3/component.css
 */
#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 {
	padding: 0;
}

#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_160b85a7-53d4-4b70-96a9-c1850cea38d3 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/august_24/cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4/component.css
 */
#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 {
	padding: 0;
}

#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6c4cc90b-6049-42ec-ae14-0b69dc116ca4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/august_24/cmp_750abca0-d91f-4a1f-a4e4-0b7841381989/component.css
 */
#cmp_750abca0-d91f-4a1f-a4e4-0b7841381989 {
	background-color: rgb(241, 238, 233);
}

#cmp_750abca0-d91f-4a1f-a4e4-0b7841381989 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_750abca0-d91f-4a1f-a4e4-0b7841381989 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_750abca0-d91f-4a1f-a4e4-0b7841381989 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_750abca0-d91f-4a1f-a4e4-0b7841381989 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_750abca0-d91f-4a1f-a4e4-0b7841381989 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_750abca0-d91f-4a1f-a4e4-0b7841381989 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_750abca0-d91f-4a1f-a4e4-0b7841381989 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/august_24/cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596/component.css
 */
#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 {
	padding: 0;
}

#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_a67906c3-bd7c-4f42-afb9-f4b2bb95d596 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/august_24/cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6/component.css
 */
#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 {
	padding: 0;
}

#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f69017c4-a0e9-4fd8-bc35-d9a0c4db41b6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/august_24/cmp_ff7da3b1-9129-4d73-b883-4ff01918feff/component.css
 */
#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff {
	padding: 0;
}

#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_ff7da3b1-9129-4d73-b883-4ff01918feff .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/checkout/cmp_e2e18c44-0bbc-45e4-9db5-b66251e75093/component.css
 */
#cmp_e2e18c44-0bbc-45e4-9db5-b66251e75093 .checkout_content {
	overflow: auto;
}

#cmp_e2e18c44-0bbc-45e4-9db5-b66251e75093 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_e2e18c44-0bbc-45e4-9db5-b66251e75093 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/currentbox/cmp_112597e9-dde3-43ad-b501-5f55acc8fa30/component.css
 */
#cmp_112597e9-dde3-43ad-b501-5f55acc8fa30 {
	background-color: rgb(241, 238, 233);
}

#cmp_112597e9-dde3-43ad-b501-5f55acc8fa30 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_112597e9-dde3-43ad-b501-5f55acc8fa30 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_112597e9-dde3-43ad-b501-5f55acc8fa30 h3 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_112597e9-dde3-43ad-b501-5f55acc8fa30 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_112597e9-dde3-43ad-b501-5f55acc8fa30 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_112597e9-dde3-43ad-b501-5f55acc8fa30 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 16px;
}

#cmp_112597e9-dde3-43ad-b501-5f55acc8fa30 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/currentbox/cmp_ebd6d70c-16dc-44c1-a8d1-d90d35955ffd/component.css
 */
#cmp_ebd6d70c-16dc-44c1-a8d1-d90d35955ffd {
	background-color: rgb(6, 56, 31);
}

#cmp_ebd6d70c-16dc-44c1-a8d1-d90d35955ffd h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_ebd6d70c-16dc-44c1-a8d1-d90d35955ffd h2 {
	color: rgb(225, 181, 178);
	font-family: Belleza;
	font-size: 36px;
}

#cmp_ebd6d70c-16dc-44c1-a8d1-d90d35955ffd h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_ebd6d70c-16dc-44c1-a8d1-d90d35955ffd p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ebd6d70c-16dc-44c1-a8d1-d90d35955ffd .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ebd6d70c-16dc-44c1-a8d1-d90d35955ffd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_ebd6d70c-16dc-44c1-a8d1-d90d35955ffd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/account/cmp_699e2fec-c6ef-47cb-b6fc-906ee8e679f3/component.css
 */

/*
 * components/customer/edit/cmp_cf22c3d5-e4b9-4bd3-b34d-e04eff9bc683/component.css
 */

/*
 * components/customer/forgot_password/cmp_09e8978f-56cf-4345-8822-c1a066d01f91/component.css
 */
#cmp_09e8978f-56cf-4345-8822-c1a066d01f91 {
	background-color: rgb(241, 238, 233);
}

#cmp_09e8978f-56cf-4345-8822-c1a066d01f91 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_09e8978f-56cf-4345-8822-c1a066d01f91 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_09e8978f-56cf-4345-8822-c1a066d01f91 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_09e8978f-56cf-4345-8822-c1a066d01f91 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_09e8978f-56cf-4345-8822-c1a066d01f91 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_09e8978f-56cf-4345-8822-c1a066d01f91 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_09e8978f-56cf-4345-8822-c1a066d01f91 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/forgot_password/cmp_b06c8472-176c-4063-b5f8-b1f14aa708d3/component.css
 */
#cmp_b06c8472-176c-4063-b5f8-b1f14aa708d3 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_6abde322-474c-4db0-8281-db5670c942d6/component.css
 */
#cmp_6abde322-474c-4db0-8281-db5670c942d6 {
	background-color: rgb(241, 238, 233);
}

#cmp_6abde322-474c-4db0-8281-db5670c942d6 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_6abde322-474c-4db0-8281-db5670c942d6 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6abde322-474c-4db0-8281-db5670c942d6 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6abde322-474c-4db0-8281-db5670c942d6 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6abde322-474c-4db0-8281-db5670c942d6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_6abde322-474c-4db0-8281-db5670c942d6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_6abde322-474c-4db0-8281-db5670c942d6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/login/cmp_bc1d9b4e-39c7-4b12-95cf-4dcaf1423239/component.css
 */
#cmp_bc1d9b4e-39c7-4b12-95cf-4dcaf1423239 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/orders/cmp_963b7f42-62bc-472b-91c5-0bd9a2e73a0c/component.css
 */

/*
 * components/customer/password_reset/cmp_376b66b8-25de-49e0-8054-7f86c44867d5/component.css
 */
#cmp_376b66b8-25de-49e0-8054-7f86c44867d5 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_dc835fe4-d03c-4cde-84bc-d4e3c042451d/component.css
 */
#cmp_dc835fe4-d03c-4cde-84bc-d4e3c042451d {
	background-color: rgb(241, 238, 233);
}

#cmp_dc835fe4-d03c-4cde-84bc-d4e3c042451d h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_dc835fe4-d03c-4cde-84bc-d4e3c042451d h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_dc835fe4-d03c-4cde-84bc-d4e3c042451d h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_dc835fe4-d03c-4cde-84bc-d4e3c042451d p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_dc835fe4-d03c-4cde-84bc-d4e3c042451d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_dc835fe4-d03c-4cde-84bc-d4e3c042451d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_dc835fe4-d03c-4cde-84bc-d4e3c042451d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/thank_you/cmp_47d773ef-99c7-4c5f-a151-8a6a1303dd2e/component.css
 */

/*
 * components/global/cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2/component.css
 */
#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2.footer {
	background-color: rgb(6, 56, 31);
	color: rgb(241, 238, 233);
	font-family: Lato;
	padding: 25px 0;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2.footer p {
	color: rgb(241, 238, 233);
}

#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-subscribe {
	padding: 15px 0;
}

#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-social {
	padding: 15px 0;
}

#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-social svg path {
	fill: rgb(241, 238, 233);
}

#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-social a:hover svg path,
#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-social a:focus svg path,
#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-social a:active svg path {
	fill: rgb(225, 181, 178);
}

#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-contact {
	padding: 15px 0;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_8fcc122a-ecd8-47c8-b848-1f3486373da2.footer {
		padding: 40px 0;

		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

/*
 * components/global/cmp_a245e510-56c0-46d2-a0de-647b9f1750b8/component.css
 */
#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 {
	border-bottom: 4px solid rgb(229, 123, 99);
	padding: 0;
}

#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar {
	background-color: rgb(241, 238, 233);
	border-radius: 0;
	padding: 0;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar a:hover,
#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar a:focus,
#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar a:active {
	color: rgb(229, 123, 99);
}

#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-brand {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;

	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
}

#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-brand img {
	max-width: 100%;
}

#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar .navbar-toggler {
	background-color: rgb(229, 123, 99);
	border-radius: 0;
	color: rgb(241, 238, 233);
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar .navbar-toggler:hover,
#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar .navbar-toggler:focus,
#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar .navbar-toggler:active {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-nav {
	background-color: rgb(229, 123, 99);
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-nav .nav-link {
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;;
	padding: 15px;
	text-align: center;
}

@media (max-width: 767px) {
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 {
		border-width: 0;
	}
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .dropdown-menu {
		background-color: rgb(229, 123, 99);
	}
}

@media (min-width: 768px) {
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar {
		padding: 15px;
		padding-bottom: 0;

		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-toggleable-sm {
		-webkit-flex-shrink: 1;
		-moz-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;
	}
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-nav {
		background-color: rgb(241, 238, 233);
		padding: 0;
		padding-bottom: 15px;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		-webkit-justify-content: space-around;
		-moz-justify-content: space-around;
		-ms-justify-content: space-around;
		justify-content: space-around;
	}
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-nav li {
		padding: 0;
	}
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar-nav .nav-link {
		color: rgb(6, 56, 31);
	}
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar a:hover,
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar a:focus,
	#cmp_a245e510-56c0-46d2-a0de-647b9f1750b8 .navbar a:active {
		color: rgb(6, 56, 31);
	}
}

/*
 * components/global/cmp_beed85e1-237e-4946-acbc-fe1bc6a52328/component.css
 */
#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 {
	background-color: rgb(241, 238, 233);
}

#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}


#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 .btn {
	background-color: rgb(229, 123, 99);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 .btn:hover {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 .component-rich-text-with-button__content-row,
#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 .component-rich-text-with-button__content-row,
	#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_beed85e1-237e-4946-acbc-fe1bc6a52328  {
	padding-top: 0;
}
/*
 * components/howitworks/cmp_367123a0-827d-408b-9cc6-f804604fcd6e/component.css
 */
#cmp_367123a0-827d-408b-9cc6-f804604fcd6e {
	background-color: #D5CEC2;
}

#cmp_367123a0-827d-408b-9cc6-f804604fcd6e h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_367123a0-827d-408b-9cc6-f804604fcd6e h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_367123a0-827d-408b-9cc6-f804604fcd6e h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_367123a0-827d-408b-9cc6-f804604fcd6e p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_367123a0-827d-408b-9cc6-f804604fcd6e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_367123a0-827d-408b-9cc6-f804604fcd6e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_367123a0-827d-408b-9cc6-f804604fcd6e ul {
	list-style: disc;
	list-style-position: inside;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_367123a0-827d-408b-9cc6-f804604fcd6e  {
	padding-bottom: 0;
}
/*
 * components/howitworks/cmp_4e037608-801f-4812-b020-730ce095a381/component.css
 */
#cmp_4e037608-801f-4812-b020-730ce095a381 {
	background-color: #D5CEC2;
}

#cmp_4e037608-801f-4812-b020-730ce095a381 .content-row {
	margin: 0;

	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

#cmp_4e037608-801f-4812-b020-730ce095a381 .content {
	background-color: #FFFFFF;
	border: 5px solid rgb(229, 123, 99);
	margin: 15px 0;
	padding: 25px;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_4e037608-801f-4812-b020-730ce095a381 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
	margin-bottom: 0;
}

#cmp_4e037608-801f-4812-b020-730ce095a381 h2 {
	color: #C7C3C2;
	font-family: Belleza;
	font-size: 32px;
	margin-bottom: 0;
}

#cmp_4e037608-801f-4812-b020-730ce095a381 h3 {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
	margin-bottom: 15px;
}

#cmp_4e037608-801f-4812-b020-730ce095a381 p {
	color: #C7C3C2;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4e037608-801f-4812-b020-730ce095a381 hr {
	border-top: 1px solid #EEE;
	width: 100%;
}

@media (min-width: 768px) {
	#cmp_4e037608-801f-4812-b020-730ce095a381 .content {
		margin: 15px;
	}
}
#cmp_4e037608-801f-4812-b020-730ce095a381  {
	padding-top: 0;
}
/*
 * components/howitworks/cmp_68145802-a2a6-41da-86eb-7858b2fcc085/component.css
 */
#cmp_68145802-a2a6-41da-86eb-7858b2fcc085 {
	background-color: rgb(241, 238, 233);
	padding: 0;
}

#cmp_68145802-a2a6-41da-86eb-7858b2fcc085 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_68145802-a2a6-41da-86eb-7858b2fcc085 .content .cta {
	border: 5px solid rgb(6, 56, 31);
	padding: 45px;
}

#cmp_68145802-a2a6-41da-86eb-7858b2fcc085 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_68145802-a2a6-41da-86eb-7858b2fcc085 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_68145802-a2a6-41da-86eb-7858b2fcc085 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_68145802-a2a6-41da-86eb-7858b2fcc085 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_0ba1e300-1f61-43af-967c-d318061cc005/component.css
 */
#cmp_0ba1e300-1f61-43af-967c-d318061cc005 {
	background-color: rgb(6, 56, 31);
}

#cmp_0ba1e300-1f61-43af-967c-d318061cc005 h1 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 28px;
}

#cmp_0ba1e300-1f61-43af-967c-d318061cc005 h2 {
	color: rgb(255, 255, 255);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_0ba1e300-1f61-43af-967c-d318061cc005 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_0ba1e300-1f61-43af-967c-d318061cc005 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}


#cmp_0ba1e300-1f61-43af-967c-d318061cc005 .btn {
	background-color: rgb(229, 123, 99);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0ba1e300-1f61-43af-967c-d318061cc005 .btn:hover {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

#cmp_0ba1e300-1f61-43af-967c-d318061cc005 .component-rich-text-with-button__content-row,
#cmp_0ba1e300-1f61-43af-967c-d318061cc005 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_0ba1e300-1f61-43af-967c-d318061cc005 .component-rich-text-with-button__content-row,
	#cmp_0ba1e300-1f61-43af-967c-d318061cc005 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0ba1e300-1f61-43af-967c-d318061cc005 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0ba1e300-1f61-43af-967c-d318061cc005 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb/component.css
 */
#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb {
	background-color: rgb(6, 56, 31);
}

#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb h1 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 28px;
}

#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 8px;
}

#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 8px;
}

#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb p {
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 16px;
}


#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb .btn {
	background-color: rgb(229, 123, 99);
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 14px;
}

#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb .btn:hover {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb .component-rich-text-with-button__content-row,
#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb .component-rich-text-with-button__content-row,
	#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 16px;
}

#cmp_377bca1b-bb45-4c3a-a210-55d6232e31fb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_4d62fbd2-f3ab-49fc-bba9-4185510a2358/component.css
 */
#cmp_4d62fbd2-f3ab-49fc-bba9-4185510a2358 img {
	max-width: 100%;
}

/*
 * components/index/cmp_576ae3e3-f047-465c-a417-587aa3c2a26d/component.css
 */
#cmp_576ae3e3-f047-465c-a417-587aa3c2a26d img {
	max-width: 100%;
}

/*
 * components/index/cmp_827243f1-4319-47fb-88f6-6f0086ca73b5/component.css
 */
#cmp_827243f1-4319-47fb-88f6-6f0086ca73b5 img {
	max-width: 100%;
}

/*
 * components/index/cmp_835e7622-981a-4eda-97d1-06e0fbf3424c/component.css
 */
#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c {
	background-color: rgb(6, 56, 31);
}

#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c h1 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 30px;
}

#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c h3 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 20px;
}

#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c p {
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}


#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c .btn {
	background-color: rgb(229, 123, 99);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c .btn:hover {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c .component-rich-text-with-button__content-row,
#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c .component-rich-text-with-button__content-row,
	#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_835e7622-981a-4eda-97d1-06e0fbf3424c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d/component.css
 */
#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d {
	background-position: right bottom !important;
	background-repeat: no-repeat !important;
	margin: 0;
	min-height: calc(100vh - 100px);
	padding: 0;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .container-fluid {
	width: 100%;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-row {
	margin: 0;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content h1 {
	color: rgb(233, 234, 241);
	font-family: Amiri;
	font-size: 56px;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Belleza;
	font-size: 18px;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content p {
	color: rgb(240, 208, 230);
	font-family: Rubik Mono One;
	font-size: 16px;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .button-container {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn-primary {
	background-color: rgb(229, 123, 99);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 16px;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn-primary:hover,
#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn-primary:focus,
#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn-primary:active {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn-secondary {
	background-color: rgb(6, 56, 31);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 16px;
}

#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn-secondary:hover,
#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn-secondary:focus,
#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn-secondary:active {
	background-color: rgb(53, 119, 102);
	color: rgb(241, 238, 233);
}

@media (min-width: 768px) {
	#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d {
		min-height: 40vw;
	}
	#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_956250e9-73e4-4e47-a8a1-f9ff3373cb4d {
		min-height: 533px;
	}
}

/*
 * components/index/cmp_99228faf-29c3-4ee3-bf0e-814ee701922a/component.css
 */
#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a {
	background-color: rgb(6, 56, 31);
}

#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a h1 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 28px;
}

#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a h2 {
	color: rgb(241, 238, 233);
	font-family: Belleza;
	font-size: 20px;
}

#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a h3 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 20px;
}

#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a p {
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}


#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a .btn {
	background-color: rgb(229, 123, 99);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a .btn:hover {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a .component-rich-text-with-button__content-row,
#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a .component-rich-text-with-button__content-row,
	#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_99228faf-29c3-4ee3-bf0e-814ee701922a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_a3076ed9-1f1f-47cf-9824-f53603879782/component.css
 */
#cmp_a3076ed9-1f1f-47cf-9824-f53603879782 img {
	max-width: 100%;
}

/*
 * components/index/cmp_bf5935d1-d269-4bf0-b318-b2028cde227e/component.css
 */
#cmp_bf5935d1-d269-4bf0-b318-b2028cde227e img {
	max-width: 100%;
}

/*
 * components/index/cmp_d51ebedb-760e-454b-8db4-f42e44a5f643/component.css
 */
#cmp_d51ebedb-760e-454b-8db4-f42e44a5f643 img {
	max-width: 100%;
}

/*
 * components/index/cmp_e99653cb-7539-4dcb-adff-c72fd6d2781c/component.css
 */
#cmp_e99653cb-7539-4dcb-adff-c72fd6d2781c img {
	max-width: 100%;
}

/*
 * components/index/cmp_ea83f36f-4f03-4e5f-bf4c-a497e7385b2b/component.css
 */
#cmp_ea83f36f-4f03-4e5f-bf4c-a497e7385b2b {
	background-color: rgb(241, 238, 233);
}

#cmp_ea83f36f-4f03-4e5f-bf4c-a497e7385b2b h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_ea83f36f-4f03-4e5f-bf4c-a497e7385b2b h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_ea83f36f-4f03-4e5f-bf4c-a497e7385b2b h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_ea83f36f-4f03-4e5f-bf4c-a497e7385b2b p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ea83f36f-4f03-4e5f-bf4c-a497e7385b2b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ea83f36f-4f03-4e5f-bf4c-a497e7385b2b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_ea83f36f-4f03-4e5f-bf4c-a497e7385b2b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_f837ba8b-abc3-43af-9ff7-4cc22122951b/component.css
 */
#cmp_f837ba8b-abc3-43af-9ff7-4cc22122951b img {
	max-width: 100%;
}

/*
 * components/index/cmp_fa2a548e-c908-4fbf-a062-d684bc59e873/component.css
 */
#cmp_fa2a548e-c908-4fbf-a062-d684bc59e873 img {
	max-width: 100%;
}

/*
 * components/index/cmp_fb792730-9910-461b-ab25-fa3fda0b3072/component.css
 */
#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 {
	background-color: rgb(241, 238, 233);
}

#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 28px;
}

#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 28px;
}

#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}


#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 .btn {
	background-color: rgb(6, 56, 31);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 .btn:hover {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 .component-rich-text-with-button__content-row,
#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 .component-rich-text-with-button__content-row,
	#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_fb792730-9910-461b-ab25-fa3fda0b3072 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/july_24/cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b/component.css
 */
#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b {
	padding: 0;
}

#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_1ed7ce59-0fe7-4e88-8836-6c7ca0d6606b .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/july_24/cmp_39ba4748-cb3b-4148-b2aa-701f1538f624/component.css
 */
#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 {
	padding: 0;
}

#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_39ba4748-cb3b-4148-b2aa-701f1538f624 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/july_24/cmp_40e7ae9d-b749-4749-afb2-1e14f7fb2633/component.css
 */
#cmp_40e7ae9d-b749-4749-afb2-1e14f7fb2633 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_40e7ae9d-b749-4749-afb2-1e14f7fb2633 .content {
	padding: 0;
}

#cmp_40e7ae9d-b749-4749-afb2-1e14f7fb2633 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_40e7ae9d-b749-4749-afb2-1e14f7fb2633 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/july_24/cmp_45251907-43b6-4322-989b-bcd52e656d43/component.css
 */
#cmp_45251907-43b6-4322-989b-bcd52e656d43 {
	padding: 0;
}

#cmp_45251907-43b6-4322-989b-bcd52e656d43 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_45251907-43b6-4322-989b-bcd52e656d43 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_45251907-43b6-4322-989b-bcd52e656d43 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_45251907-43b6-4322-989b-bcd52e656d43 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_45251907-43b6-4322-989b-bcd52e656d43 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_45251907-43b6-4322-989b-bcd52e656d43 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_45251907-43b6-4322-989b-bcd52e656d43 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_45251907-43b6-4322-989b-bcd52e656d43 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_45251907-43b6-4322-989b-bcd52e656d43 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_45251907-43b6-4322-989b-bcd52e656d43 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_45251907-43b6-4322-989b-bcd52e656d43 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_45251907-43b6-4322-989b-bcd52e656d43 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_45251907-43b6-4322-989b-bcd52e656d43 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_45251907-43b6-4322-989b-bcd52e656d43 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/july_24/cmp_4b9e8df8-5283-4249-8a1d-bca0c55c11cc/component.css
 */
#cmp_4b9e8df8-5283-4249-8a1d-bca0c55c11cc {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_4b9e8df8-5283-4249-8a1d-bca0c55c11cc .content {
	padding: 0;
}

#cmp_4b9e8df8-5283-4249-8a1d-bca0c55c11cc .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_4b9e8df8-5283-4249-8a1d-bca0c55c11cc .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/july_24/cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6/component.css
 */
#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 {
	padding: 0;
}

#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6a75d230-a352-4553-92e4-80a7c9bd14f6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/july_24/cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a/component.css
 */
#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a {
	padding: 0;
}

#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_84a46be2-fe66-4439-bb49-f3fe8896cb4a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/july_24/cmp_865105e0-5a17-47ab-82cd-baadce9c9bae/component.css
 */
#cmp_865105e0-5a17-47ab-82cd-baadce9c9bae {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_865105e0-5a17-47ab-82cd-baadce9c9bae .content {
	padding: 0;
}

#cmp_865105e0-5a17-47ab-82cd-baadce9c9bae .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_865105e0-5a17-47ab-82cd-baadce9c9bae .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/july_24/cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549/component.css
 */
#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 {
	padding: 0;
}

#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_c33b46a1-50d0-4d1b-8306-c09bc6a08549 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/july_24/cmp_d683157c-f5a7-44bd-a83f-75b848aa67b6/component.css
 */
#cmp_d683157c-f5a7-44bd-a83f-75b848aa67b6 {
	background-color: rgb(241, 238, 233);
}

#cmp_d683157c-f5a7-44bd-a83f-75b848aa67b6 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_d683157c-f5a7-44bd-a83f-75b848aa67b6 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_d683157c-f5a7-44bd-a83f-75b848aa67b6 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_d683157c-f5a7-44bd-a83f-75b848aa67b6 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d683157c-f5a7-44bd-a83f-75b848aa67b6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d683157c-f5a7-44bd-a83f-75b848aa67b6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_d683157c-f5a7-44bd-a83f-75b848aa67b6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/july_24/cmp_e3bc9781-8daf-450e-af83-7b586ba9c12e/component.css
 */
#cmp_e3bc9781-8daf-450e-af83-7b586ba9c12e {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_e3bc9781-8daf-450e-af83-7b586ba9c12e .content {
	padding: 0;
}

#cmp_e3bc9781-8daf-450e-af83-7b586ba9c12e .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_e3bc9781-8daf-450e-af83-7b586ba9c12e .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/june_24/cmp_1c630773-cba0-43a6-81d0-c91ccda26907/component.css
 */
#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 {
	padding: 0;
}

#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_1c630773-cba0-43a6-81d0-c91ccda26907 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/june_24/cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3/component.css
 */
#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 {
	padding: 0;
}

#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_316b62e9-cc92-42a0-96cb-747f27ba83a3 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/june_24/cmp_3c37aaec-cb2c-41b1-a701-77454e53be80/component.css
 */
#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 {
	padding: 0;
}

#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_3c37aaec-cb2c-41b1-a701-77454e53be80 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/june_24/cmp_4b88aab5-0785-4df1-8934-291a392202c1/component.css
 */
#cmp_4b88aab5-0785-4df1-8934-291a392202c1 {
	background-color: rgb(241, 238, 233);
}

#cmp_4b88aab5-0785-4df1-8934-291a392202c1 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_4b88aab5-0785-4df1-8934-291a392202c1 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_4b88aab5-0785-4df1-8934-291a392202c1 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_4b88aab5-0785-4df1-8934-291a392202c1 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4b88aab5-0785-4df1-8934-291a392202c1 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4b88aab5-0785-4df1-8934-291a392202c1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_4b88aab5-0785-4df1-8934-291a392202c1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/june_24/cmp_7d4086a0-f150-4d44-99ea-b4fe8fdefb11/component.css
 */
#cmp_7d4086a0-f150-4d44-99ea-b4fe8fdefb11 {
	background-color: rgb(241, 238, 233);
}

#cmp_7d4086a0-f150-4d44-99ea-b4fe8fdefb11 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_7d4086a0-f150-4d44-99ea-b4fe8fdefb11 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_7d4086a0-f150-4d44-99ea-b4fe8fdefb11 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_7d4086a0-f150-4d44-99ea-b4fe8fdefb11 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_7d4086a0-f150-4d44-99ea-b4fe8fdefb11 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7d4086a0-f150-4d44-99ea-b4fe8fdefb11 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_7d4086a0-f150-4d44-99ea-b4fe8fdefb11 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/june_24/cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22/component.css
 */
#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 {
	padding: 0;
}

#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_88d0898b-ed1f-49ce-ad57-835c0ee24d22 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/june_24/cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97/component.css
 */
#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 {
	padding: 0;
}

#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_8ad26cdf-007b-4e3c-ad22-a1f581522a97 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/june_24/cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978/component.css
 */
#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 {
	padding: 0;
}

#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b3aa8eec-6242-4608-9621-18d9cb9a1978 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/june_24/cmp_b3d59ae9-e9b5-4de7-8178-704a89517624/component.css
 */
#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 {
	padding: 0;
}

#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b3d59ae9-e9b5-4de7-8178-704a89517624 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/june_24/cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11/component.css
 */
#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 {
	padding: 0;
}

#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_c97547a8-09b1-4cbe-9ea2-35b8edaa6b11 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/may-24/cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb/component.css
 */
#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb {
	padding: 0;
}

#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_368edf57-cc0d-4b0a-b296-d77cb076fadb .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/may-24/cmp_56d1e593-cc73-492c-9316-5aef1306d14b/component.css
 */
#cmp_56d1e593-cc73-492c-9316-5aef1306d14b {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_56d1e593-cc73-492c-9316-5aef1306d14b .content {
	padding: 0;
}

#cmp_56d1e593-cc73-492c-9316-5aef1306d14b .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_56d1e593-cc73-492c-9316-5aef1306d14b .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/may-24/cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb/component.css
 */
#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb {
	padding: 0;
}

#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6bcd8cc5-68bf-4b62-ba08-c3a728bb48cb .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/may-24/cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d/component.css
 */
#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d {
	padding: 0;
}

#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_a67ecc1c-4ec1-42fa-8130-2aad28b14b3d .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/may-24/cmp_cc86b46c-d4ba-4fd5-86f6-a0de5967c46f/component.css
 */
#cmp_cc86b46c-d4ba-4fd5-86f6-a0de5967c46f {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_cc86b46c-d4ba-4fd5-86f6-a0de5967c46f .content {
	padding: 0;
}

#cmp_cc86b46c-d4ba-4fd5-86f6-a0de5967c46f .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_cc86b46c-d4ba-4fd5-86f6-a0de5967c46f .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/may-24/cmp_cd494c48-b490-4275-9556-4acec4bb83f4/component.css
 */
#cmp_cd494c48-b490-4275-9556-4acec4bb83f4 {
	background-color: rgb(241, 238, 233);
}

#cmp_cd494c48-b490-4275-9556-4acec4bb83f4 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_cd494c48-b490-4275-9556-4acec4bb83f4 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_cd494c48-b490-4275-9556-4acec4bb83f4 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_cd494c48-b490-4275-9556-4acec4bb83f4 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_cd494c48-b490-4275-9556-4acec4bb83f4 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_cd494c48-b490-4275-9556-4acec4bb83f4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_cd494c48-b490-4275-9556-4acec4bb83f4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/may-24/cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48/component.css
 */
#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 {
	padding: 0;
}

#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_e36f19f9-aff3-427a-8b3d-ff9e037fbe48 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/may-24/cmp_e7f7dc18-82c2-4c53-9fda-ae38b365ca74/component.css
 */
#cmp_e7f7dc18-82c2-4c53-9fda-ae38b365ca74 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_e7f7dc18-82c2-4c53-9fda-ae38b365ca74 .content {
	padding: 0;
}

#cmp_e7f7dc18-82c2-4c53-9fda-ae38b365ca74 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_e7f7dc18-82c2-4c53-9fda-ae38b365ca74 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/may-24/cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c/component.css
 */
#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c {
	padding: 0;
}

#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f1b80975-5b4f-4621-a9dc-9cde2a6a681c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/may-24/cmp_fafff101-827c-4892-9658-59fa2582aca9/component.css
 */
#cmp_fafff101-827c-4892-9658-59fa2582aca9 {
	padding: 0;
}

#cmp_fafff101-827c-4892-9658-59fa2582aca9 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_fafff101-827c-4892-9658-59fa2582aca9 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_fafff101-827c-4892-9658-59fa2582aca9 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_fafff101-827c-4892-9658-59fa2582aca9 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_fafff101-827c-4892-9658-59fa2582aca9 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fafff101-827c-4892-9658-59fa2582aca9 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fafff101-827c-4892-9658-59fa2582aca9 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_fafff101-827c-4892-9658-59fa2582aca9 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_fafff101-827c-4892-9658-59fa2582aca9 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_fafff101-827c-4892-9658-59fa2582aca9 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_fafff101-827c-4892-9658-59fa2582aca9 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_fafff101-827c-4892-9658-59fa2582aca9 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_fafff101-827c-4892-9658-59fa2582aca9 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_fafff101-827c-4892-9658-59fa2582aca9 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/oct_24/cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa/component.css
 */
#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa {
	padding: 0;
}

#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_199ed3fa-bdc8-4e08-9382-dbf51446c3aa .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/oct_24/cmp_54c5ee37-c721-40d6-a438-0569dc2246b8/component.css
 */
#cmp_54c5ee37-c721-40d6-a438-0569dc2246b8 {
	background-color: rgb(241, 238, 233);
}

#cmp_54c5ee37-c721-40d6-a438-0569dc2246b8 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_54c5ee37-c721-40d6-a438-0569dc2246b8 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_54c5ee37-c721-40d6-a438-0569dc2246b8 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_54c5ee37-c721-40d6-a438-0569dc2246b8 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_54c5ee37-c721-40d6-a438-0569dc2246b8 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_54c5ee37-c721-40d6-a438-0569dc2246b8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_54c5ee37-c721-40d6-a438-0569dc2246b8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/oct_24/cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4/component.css
 */
#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 {
	padding: 0;
}

#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_82e9cd6b-dc44-4a30-a1e9-dd22f54731b4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/oct_24/cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463/component.css
 */
#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 {
	padding: 0;
}

#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_c706f91d-6c39-4def-ba9c-c661b1c7e463 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/oct_24/cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba/component.css
 */
#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba {
	padding: 0;
}

#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_cad2d7b1-cbe3-480a-9cb4-08875bb362ba .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/oct_24/cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b/component.css
 */
#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b {
	padding: 0;
}

#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_ffe84a47-fb7f-4f50-899e-039f06fdce0b .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/pastboxes/cmp_20d45784-5975-4a07-856b-6632df9118df/component.css
 */
#cmp_20d45784-5975-4a07-856b-6632df9118df img {
	max-width: 100%;
}

/*
 * components/pastboxes/cmp_fe23eed1-cec2-4513-b59d-eeeb712f1c10/component.css
 */
#cmp_fe23eed1-cec2-4513-b59d-eeeb712f1c10 {
	background-color: rgb(241, 238, 233);
}

#cmp_fe23eed1-cec2-4513-b59d-eeeb712f1c10 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_fe23eed1-cec2-4513-b59d-eeeb712f1c10 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_fe23eed1-cec2-4513-b59d-eeeb712f1c10 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_fe23eed1-cec2-4513-b59d-eeeb712f1c10 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_fe23eed1-cec2-4513-b59d-eeeb712f1c10 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_fe23eed1-cec2-4513-b59d-eeeb712f1c10 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_fe23eed1-cec2-4513-b59d-eeeb712f1c10 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/september_24/cmp_453c28e4-e30f-4b96-8f88-9751e7eb2da7/component.css
 */
#cmp_453c28e4-e30f-4b96-8f88-9751e7eb2da7 {
	background-color: rgb(241, 238, 233);
}

#cmp_453c28e4-e30f-4b96-8f88-9751e7eb2da7 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_453c28e4-e30f-4b96-8f88-9751e7eb2da7 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_453c28e4-e30f-4b96-8f88-9751e7eb2da7 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_453c28e4-e30f-4b96-8f88-9751e7eb2da7 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_453c28e4-e30f-4b96-8f88-9751e7eb2da7 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_453c28e4-e30f-4b96-8f88-9751e7eb2da7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_453c28e4-e30f-4b96-8f88-9751e7eb2da7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/september_24/cmp_575617d5-f1ac-4791-bed5-c75580853971/component.css
 */
#cmp_575617d5-f1ac-4791-bed5-c75580853971 {
	padding: 0;
}

#cmp_575617d5-f1ac-4791-bed5-c75580853971 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_575617d5-f1ac-4791-bed5-c75580853971 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_575617d5-f1ac-4791-bed5-c75580853971 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_575617d5-f1ac-4791-bed5-c75580853971 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_575617d5-f1ac-4791-bed5-c75580853971 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_575617d5-f1ac-4791-bed5-c75580853971 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_575617d5-f1ac-4791-bed5-c75580853971 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_575617d5-f1ac-4791-bed5-c75580853971 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_575617d5-f1ac-4791-bed5-c75580853971 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_575617d5-f1ac-4791-bed5-c75580853971 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_575617d5-f1ac-4791-bed5-c75580853971 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_575617d5-f1ac-4791-bed5-c75580853971 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_575617d5-f1ac-4791-bed5-c75580853971 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_575617d5-f1ac-4791-bed5-c75580853971 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/september_24/cmp_627586a8-6687-4b56-8d11-dd938fbd60ca/component.css
 */
#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca {
	padding: 0;
}

#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_627586a8-6687-4b56-8d11-dd938fbd60ca .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/september_24/cmp_6d20a944-6512-447a-99e3-01ea8921fac7/component.css
 */
#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 {
	padding: 0;
}

#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6d20a944-6512-447a-99e3-01ea8921fac7 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/september_24/cmp_9902aa80-01fd-461a-a55f-447bbc6b7326/component.css
 */
#cmp_9902aa80-01fd-461a-a55f-447bbc6b7326 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_9902aa80-01fd-461a-a55f-447bbc6b7326 .content {
	padding: 0;
}

#cmp_9902aa80-01fd-461a-a55f-447bbc6b7326 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_9902aa80-01fd-461a-a55f-447bbc6b7326 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/september_24/cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191/component.css
 */
#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 {
	padding: 0;
}

#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_ae286f8e-1fb3-468b-bd6d-b92f0e862191 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/september_24/cmp_fc11d44a-1e94-4711-9209-79afb8f9075b/component.css
 */
#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b {
	padding: 0;
}

#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .hero-content {
	background-color: rgb(229, 123, 99);
	padding: 20px;
}

#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .hero-content h1 {
	color: rgb(6, 56, 31);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .hero-content h2 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 32px;
}

#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .hero-content h3 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 24px;
}

#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .hero-content .btn {
	background-color: rgb(6, 56, 31);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .hero-content .btn:hover {
	background-color: rgb(53, 119, 102);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_fc11d44a-1e94-4711-9209-79afb8f9075b .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/shop/listing/cmp_21c8451c-e727-4b5f-bebb-98a6d0c7ecb3/component.css
 */
#cmp_21c8451c-e727-4b5f-bebb-98a6d0c7ecb3 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_21c8451c-e727-4b5f-bebb-98a6d0c7ecb3 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_459033b9-eb28-49d3-b2ee-5806b0139880/component.css
 */
.shop-listing-item {
	color: rgb(6, 56, 31);
}

.shop-listing-item:hover,
.shop-listing-item:focus {
	text-decoration: none;
}

.shop-listing-item__image {
	background-position: center center;
	background-size: cover;
}

.shop-listing-item__name {
	margin: 10px 0;
}

.shop-listing-item__price {
	margin: 10px 0 30px;
}

.product_paging {
	margin: 20px 0;

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.product_page a,
.next_page a,
.prev_page a {
	border: 1px solid #E0E0E0;
	border-radius: 5px;
	display: block;
	margin: 0 2px;
	padding: 12px 15px;
}

.product_page.active a,
.product_page a:hover, .product_page a:focus,
.next_page a:hover, .next_page a:focus,
.prev_page a:hover, .prev_page a:focus {
	background-color: #F9F9F9;
	text-decoration: none;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_9c2760d5-2884-406f-b145-76e168d7fd96/component.css
 */
#cmp_9c2760d5-2884-406f-b145-76e168d7fd96 {
	padding: 20px 0;
}

#cmp_9c2760d5-2884-406f-b145-76e168d7fd96 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_d7a7b291-0bde-48f5-9566-73da920e8c15/component.css
 */
#cmp_d7a7b291-0bde-48f5-9566-73da920e8c15 {
	background-color: rgb(6, 56, 31);
}

#cmp_d7a7b291-0bde-48f5-9566-73da920e8c15 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_d7a7b291-0bde-48f5-9566-73da920e8c15 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 20px;
}

#cmp_d7a7b291-0bde-48f5-9566-73da920e8c15 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_d7a7b291-0bde-48f5-9566-73da920e8c15 p {
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d7a7b291-0bde-48f5-9566-73da920e8c15 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d7a7b291-0bde-48f5-9566-73da920e8c15 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_d7a7b291-0bde-48f5-9566-73da920e8c15 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca/component.css
 */
#cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca {
	background-color: rgb(6, 56, 31);
}

#cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca h1 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 40px;
}

#cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca h3 {
	color: rgb(198, 208, 2);
	font-family: Lato;
	font-size: 16px;
}

#cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca p {
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 16px;
}

#cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 16px;
}

#cmp_ee5ad023-83a2-40f5-ade1-56d19e28fdca  {
	padding-bottom: 20px;
}
/*
 * components/shop/product/cmp_3c1b47ad-48e6-4e4f-b27d-37b42b55f181/component.css
 */
#cmp_3c1b47ad-48e6-4e4f-b27d-37b42b55f181.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/shop/product/cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8/component.css
 */
#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8 .shop-product select {
	width: auto;
}

#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8 .shop-product__name {
	margin-bottom: 20px;
}

#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8 .shop-product__review-share-desktop .rating,
#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8 .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8 .shop-product__review-share-desktop h3,
#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8 .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_d040b88c-6e3d-4f76-a718-ef9c6feb89d8  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_161c7635-6fbb-4c20-a0f2-271235f32f02/component.css
 */
#cmp_161c7635-6fbb-4c20-a0f2-271235f32f02 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee/component.css
 */
#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee {
	background-color: rgb(241, 238, 233);
}

#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 30px;
}

#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 28px;
}

#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee h3 {
	color: rgb(6, 14, 56);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 16px;
}


#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee .btn {
	background-color: rgb(229, 123, 99);
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee .btn:hover {
	background-color: rgb(225, 181, 178);
	color: rgb(241, 238, 233);
}

#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee .component-rich-text-with-button__content-row,
#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee .component-rich-text-with-button__content-row,
	#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 16px;
}

#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 16px;
}

#cmp_89e51c83-f26c-464f-ac89-b6ddfa027bee  {
	padding-top: 0;
}
/*
 * components/specials__savings/cmp_71dd4c7b-54d9-4f8c-87e4-1e77c1f3befc/component.css
 */
#cmp_71dd4c7b-54d9-4f8c-87e4-1e77c1f3befc img {
	max-width: 100%;
}

/*
 * components/specials__savings/cmp_fc94155b-af5a-48f8-8166-dbc68d7f3cdf/component.css
 */
#cmp_fc94155b-af5a-48f8-8166-dbc68d7f3cdf {
	background-color: rgb(241, 238, 233);
}

#cmp_fc94155b-af5a-48f8-8166-dbc68d7f3cdf h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_fc94155b-af5a-48f8-8166-dbc68d7f3cdf h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_fc94155b-af5a-48f8-8166-dbc68d7f3cdf h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_fc94155b-af5a-48f8-8166-dbc68d7f3cdf p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_fc94155b-af5a-48f8-8166-dbc68d7f3cdf .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_fc94155b-af5a-48f8-8166-dbc68d7f3cdf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_fc94155b-af5a-48f8-8166-dbc68d7f3cdf ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_18524965-66c2-40eb-8da4-5e6f01c93185/component.css
 */
#cmp_18524965-66c2-40eb-8da4-5e6f01c93185 {
	background-color: rgb(241, 238, 233);
}

#cmp_18524965-66c2-40eb-8da4-5e6f01c93185 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_18524965-66c2-40eb-8da4-5e6f01c93185 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_18524965-66c2-40eb-8da4-5e6f01c93185 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_18524965-66c2-40eb-8da4-5e6f01c93185 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_18524965-66c2-40eb-8da4-5e6f01c93185 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_18524965-66c2-40eb-8da4-5e6f01c93185 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_18524965-66c2-40eb-8da4-5e6f01c93185 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_18524965-66c2-40eb-8da4-5e6f01c93185  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9/component.css
 */
#cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9 {
	background-color: rgb(241, 238, 233);
}

#cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9 h1 {
	color: rgb(229, 123, 99);
	font-family: Lato;
	font-size: 48px;
}

#cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 16px;
}

#cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 16px;
}

#cmp_393dc783-60f0-4017-9a04-c1c55d5f9af9  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_4f1fdaf4-d3bd-46ce-871f-8a4309b8fcde/component.css
 */
#cmp_4f1fdaf4-d3bd-46ce-871f-8a4309b8fcde {
	background-color: rgb(241, 238, 233);
}

#cmp_4f1fdaf4-d3bd-46ce-871f-8a4309b8fcde h3 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_4f1fdaf4-d3bd-46ce-871f-8a4309b8fcde p {
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 14px;
}

#cmp_4f1fdaf4-d3bd-46ce-871f-8a4309b8fcde .sf-item {
	background-color: rgb(6, 56, 31);
}
#cmp_4f1fdaf4-d3bd-46ce-871f-8a4309b8fcde  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_c3b1e028-ce3a-4afa-a7cc-85d1b8ee2df5/component.css
 */
#cmp_c3b1e028-ce3a-4afa-a7cc-85d1b8ee2df5 {
	background-color: rgb(241, 238, 233);
	padding-bottom: 0;
}

#cmp_c3b1e028-ce3a-4afa-a7cc-85d1b8ee2df5 .progress-bar-container {
	position: relative;
}

#cmp_c3b1e028-ce3a-4afa-a7cc-85d1b8ee2df5 .progress-bar-filler {
	background: rgb(6, 56, 31);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_c3b1e028-ce3a-4afa-a7cc-85d1b8ee2df5 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_c3b1e028-ce3a-4afa-a7cc-85d1b8ee2df5 .progress-bar .step {
	color: rgb(229, 123, 99);

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

#cmp_c3b1e028-ce3a-4afa-a7cc-85d1b8ee2df5 .progress-bar .step .point {
	background-color: rgb(241, 238, 233);
	border: 4px solid rgb(6, 56, 31);
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_c3b1e028-ce3a-4afa-a7cc-85d1b8ee2df5 .progress-bar .step.active .point {
	background-color: rgb(6, 56, 31);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_c3b1e028-ce3a-4afa-a7cc-85d1b8ee2df5 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_e3e59307-8db3-496b-812d-42ebb47b4d03/component.css
 */
#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03 {
	background-color: #FFFFFF;
}

#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03 .content-row {
	margin: 0;

	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03 .content {
	background-color: #FFFFFF;
	border: 5px solid rgb(229, 123, 99);
	margin: 15px 0;
	padding: 25px;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03 .content {
		margin: 15px;
	}
}
#cmp_e3e59307-8db3-496b-812d-42ebb47b4d03  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-products-row {
	border: 1px solid rgb(6, 56, 31);

	padding-left: 40px;
	padding-right: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	padding-top: 40px;
	padding-bottom: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product + .addons-product {
	border-top: 1px solid rgb(6, 56, 31);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
	padding-right: 30px;

	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-image {
	width: 100%;
	height: 100%;
	min-height: 275px;

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	margin-bottom: 15px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top-right {
	text-align: right;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart {
	padding: 7px 12px;

	font-family: ;
	font-size: 12px;

	color: rgb(6, 56, 31);
	background-color: rgb(225, 181, 178);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: ;
	background-color: rgb(229, 123, 99);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-name {
	font-size: 20px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-price {
	margin-bottom: 20px;

	font-size: 16px;
	color: rgb(229, 123, 99);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group .control-label {
	font-size: 12px;
	color: rgb(6, 56, 31);

	margin-bottom: 2px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group select {
	height: 30px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-cta-row {
	margin-top: 40px;

	text-align: center;
}


#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn {
	font-family: ;
	font-size: 16px;

	color: ;
	background-color: rgb(6, 56, 31);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: ;
	background-color: rgb(229, 123, 99);
}

@media only screen and (max-width : 768px) {
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left,
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
		-webkit-box-flex: 1 0 100%;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
	}

	.addons-product-right {
		margin-top: 40px;
	}

	 #cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
		padding-right: 0;
	}
}

/*
 * components/subscribe_flow/addons_step/cmp_e6d52030-570e-46f7-9d8e-aa865cc90a0f/component.css
 */
#cmp_e6d52030-570e-46f7-9d8e-aa865cc90a0f {
	background-color: rgb(241, 238, 233);
}

#cmp_e6d52030-570e-46f7-9d8e-aa865cc90a0f h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_e6d52030-570e-46f7-9d8e-aa865cc90a0f h2 {
	color: ;
	font-family: ;
	font-size: 20px;
}

#cmp_e6d52030-570e-46f7-9d8e-aa865cc90a0f h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_e6d52030-570e-46f7-9d8e-aa865cc90a0f p {
	color: rgb(6, 56, 31);
	font-family: ;
	font-size: ;
}

@media (min-width: 768px) {
	#cmp_e6d52030-570e-46f7-9d8e-aa865cc90a0f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e6d52030-570e-46f7-9d8e-aa865cc90a0f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: ;
	font-size: ;
}

#cmp_e6d52030-570e-46f7-9d8e-aa865cc90a0f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: ;
	font-size: ;
}

/*
 * components/subscribe_flow/survey_step/cmp_268a2d29-e596-4922-bbdf-091df8126738/component.css
 */
#cmp_268a2d29-e596-4922-bbdf-091df8126738 {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_268a2d29-e596-4922-bbdf-091df8126738 .progress-bar-container {
	position: relative;
}

#cmp_268a2d29-e596-4922-bbdf-091df8126738 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_268a2d29-e596-4922-bbdf-091df8126738 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_268a2d29-e596-4922-bbdf-091df8126738 .progress-bar .step {
	color: rgb(229, 123, 99);

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

#cmp_268a2d29-e596-4922-bbdf-091df8126738 .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_268a2d29-e596-4922-bbdf-091df8126738 .progress-bar .step.active .point {
	background-color: rgb(6, 56, 31);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_268a2d29-e596-4922-bbdf-091df8126738 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_34cbe69d-e102-434f-8a13-6188d7325582/component.css
 */
#cmp_34cbe69d-e102-434f-8a13-6188d7325582 {
	background-color: #D5CEC2;
}

#cmp_34cbe69d-e102-434f-8a13-6188d7325582 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_34cbe69d-e102-434f-8a13-6188d7325582 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_34cbe69d-e102-434f-8a13-6188d7325582  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335/component.css
 */
#cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335 {
	background-color: rgb(241, 238, 233);
}

#cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_4cb5d123-38f3-4e8e-8b6f-4f4c75e8c335  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_622746a9-376c-4880-b491-71ef4d312dbf/component.css
 */
#cmp_622746a9-376c-4880-b491-71ef4d312dbf {
	background-color: #FFFFFF;
}

#cmp_622746a9-376c-4880-b491-71ef4d312dbf .content-row {
	margin: 0;

	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

#cmp_622746a9-376c-4880-b491-71ef4d312dbf .content {
	background-color: #FFFFFF;
	border: 5px solid rgb(229, 123, 99);
	margin: 15px 0;
	padding: 25px;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_622746a9-376c-4880-b491-71ef4d312dbf .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_622746a9-376c-4880-b491-71ef4d312dbf h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_622746a9-376c-4880-b491-71ef4d312dbf h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_622746a9-376c-4880-b491-71ef4d312dbf h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_622746a9-376c-4880-b491-71ef4d312dbf p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_622746a9-376c-4880-b491-71ef4d312dbf .content {
		margin: 15px;
	}
}
#cmp_622746a9-376c-4880-b491-71ef4d312dbf  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_6e9d6ac1-1cb3-4dba-911f-a053288824e7/component.css
 */
#cmp_6e9d6ac1-1cb3-4dba-911f-a053288824e7 {
	background-color: #D5CEC2;
}

#cmp_6e9d6ac1-1cb3-4dba-911f-a053288824e7 h1 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 48px;
}

#cmp_6e9d6ac1-1cb3-4dba-911f-a053288824e7 p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}
#cmp_6e9d6ac1-1cb3-4dba-911f-a053288824e7  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_242b9f6f-b8a5-442f-88e3-e282b819b379/component.css
 */
#cmp_242b9f6f-b8a5-442f-88e3-e282b819b379 {
	background-color: rgb(241, 238, 233);
}

#cmp_242b9f6f-b8a5-442f-88e3-e282b819b379 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_242b9f6f-b8a5-442f-88e3-e282b819b379 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 20px;
}

#cmp_242b9f6f-b8a5-442f-88e3-e282b819b379 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_242b9f6f-b8a5-442f-88e3-e282b819b379 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_242b9f6f-b8a5-442f-88e3-e282b819b379 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_242b9f6f-b8a5-442f-88e3-e282b819b379 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_242b9f6f-b8a5-442f-88e3-e282b819b379 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/terms_step/cmp_4977bd3a-331b-4a37-ba75-21d8ee30b663/component.css
 */
#cmp_4977bd3a-331b-4a37-ba75-21d8ee30b663 {
	background-color: rgb(6, 56, 31);
}

#cmp_4977bd3a-331b-4a37-ba75-21d8ee30b663 h1 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 36px;
}

#cmp_4977bd3a-331b-4a37-ba75-21d8ee30b663 p {
	color: rgb(241, 238, 233);
	font-family: Lato;
	font-size: 16px;
}
#cmp_4977bd3a-331b-4a37-ba75-21d8ee30b663  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_6119bc78-c98c-4159-8de7-be48a6946917/component.css
 */
#cmp_6119bc78-c98c-4159-8de7-be48a6946917 {
	background-color: rgb(6, 56, 31);
}

#cmp_6119bc78-c98c-4159-8de7-be48a6946917 h2 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 22px;
}

#cmp_6119bc78-c98c-4159-8de7-be48a6946917 h3 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 25px;
}

#cmp_6119bc78-c98c-4159-8de7-be48a6946917 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_6119bc78-c98c-4159-8de7-be48a6946917 .sf-item {
	background-color: rgb(241, 238, 233);
}
#cmp_6119bc78-c98c-4159-8de7-be48a6946917  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_0f74d866-181f-4586-904a-dadefd1e25ab/component.css
 */
#cmp_0f74d866-181f-4586-904a-dadefd1e25ab {
	background-color: #D5CEC2;
}

#cmp_0f74d866-181f-4586-904a-dadefd1e25ab h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_0f74d866-181f-4586-904a-dadefd1e25ab p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0f74d866-181f-4586-904a-dadefd1e25ab .sf-item {
	background-color: rgb(241, 238, 233);
}
#cmp_0f74d866-181f-4586-904a-dadefd1e25ab  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_2c814b9a-45e7-4088-bca3-2db44669b1e6/component.css
 */
#cmp_2c814b9a-45e7-4088-bca3-2db44669b1e6 {
	background-color: #D5CEC2;
}

#cmp_2c814b9a-45e7-4088-bca3-2db44669b1e6 h1 {
	color: #FFFFFF;
	font-family: Belleza;
	font-size: 48px;
}

#cmp_2c814b9a-45e7-4088-bca3-2db44669b1e6 p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}
#cmp_2c814b9a-45e7-4088-bca3-2db44669b1e6  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190/component.css
 */
#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190 {
	background-color: #FFFFFF;
}

#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190 .content-row {
	margin: 0;

	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190 .content {
	background-color: #FFFFFF;
	border: 5px solid rgb(229, 123, 99);
	margin: 15px 0;
	padding: 25px;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190 .content {
		margin: 15px;
	}
}
#cmp_5bc5ebaa-16de-4d65-932f-1dffc7c49190  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_b318c3b0-b28a-4a54-a242-489b85dadbf0/component.css
 */
#cmp_b318c3b0-b28a-4a54-a242-489b85dadbf0 {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_b318c3b0-b28a-4a54-a242-489b85dadbf0 .progress-bar-container {
	position: relative;
}

#cmp_b318c3b0-b28a-4a54-a242-489b85dadbf0 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_b318c3b0-b28a-4a54-a242-489b85dadbf0 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_b318c3b0-b28a-4a54-a242-489b85dadbf0 .progress-bar .step {
	color: rgb(229, 123, 99);

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

#cmp_b318c3b0-b28a-4a54-a242-489b85dadbf0 .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_b318c3b0-b28a-4a54-a242-489b85dadbf0 .progress-bar .step.active .point {
	background-color: rgb(6, 56, 31);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_b318c3b0-b28a-4a54-a242-489b85dadbf0 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59/component.css
 */
#cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59 {
	background-color: rgb(241, 238, 233);
}

#cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_bb1552ce-67a0-4f9a-9a72-9cc6ca9c6e59  {
	padding-bottom: 0;
}
/*
 * components/view-cart/cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198/component.css
 */
#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 {
	padding: 15px 15px 100px 15px;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .product-main {
	margin: 0 0 15px 0;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .product-label p {
	margin: 0;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .product-label .info {
	color: rgb(229, 123, 99);
	text-align: right;
	text-transform: uppercase;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .product-label .meta {
	color: rgb(6, 56, 31);
	font-size: 14px;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 figure {
	margin: 0 0 15px 0;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 .product-rem-btn {
		top: 40%;
	}
	#cmp_911fae1a-0000-4a9f-bed0-1ce1105a6198 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_e90ff2c5-50b1-4192-9494-016364ba0fb9/component.css
 */
#cmp_e90ff2c5-50b1-4192-9494-016364ba0fb9 {
	background-color: rgb(241, 238, 233);
}

#cmp_e90ff2c5-50b1-4192-9494-016364ba0fb9 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 40px;
}

#cmp_e90ff2c5-50b1-4192-9494-016364ba0fb9 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_e90ff2c5-50b1-4192-9494-016364ba0fb9 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_e90ff2c5-50b1-4192-9494-016364ba0fb9 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e90ff2c5-50b1-4192-9494-016364ba0fb9 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e90ff2c5-50b1-4192-9494-016364ba0fb9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_e90ff2c5-50b1-4192-9494-016364ba0fb9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/99/cmp_0bf18710-5279-40a2-990f-2c0e1a9589e8/component.css
 */
#cmp_0bf18710-5279-40a2-990f-2c0e1a9589e8 {
	background-color: rgb(241, 238, 233);
}

#cmp_0bf18710-5279-40a2-990f-2c0e1a9589e8 h1 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 48px;
}

#cmp_0bf18710-5279-40a2-990f-2c0e1a9589e8 h2 {
	color: rgb(229, 123, 99);
	font-family: Belleza;
	font-size: 32px;
}

#cmp_0bf18710-5279-40a2-990f-2c0e1a9589e8 h3 {
	color: rgb(6, 56, 31);
	font-family: Belleza;
	font-size: 24px;
}

#cmp_0bf18710-5279-40a2-990f-2c0e1a9589e8 p {
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0bf18710-5279-40a2-990f-2c0e1a9589e8 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0bf18710-5279-40a2-990f-2c0e1a9589e8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0bf18710-5279-40a2-990f-2c0e1a9589e8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(6, 56, 31);
	font-family: Lato;
	font-size: 14px;
}